Developer Utilities
URL encoder and decoder
Switch between whole URL escaping and component escaping, then use the query inspector to see each key and value decoded into a readable table.
Frequently asked questions
- encodeURI or encodeURIComponent?
- Use encodeURI for a complete address and encodeURIComponent for a single parameter value.
- Why did my plus sign become a space?
- Legacy form encoding treats + as a space. Toggle the form encoding option to reproduce it.