Scope
Spaces
Runs entirely in your browser, nothing is uploaded.
How it works
URL Encoder and Decoder for Percent-Encoding
Percent-encode or decode text for URLs, switch between component and whole-URL escaping, or paste a full link to split its query string into readable parameters.
What this does
- encodeURIComponent for a value going inside one field, encodeURI for a whole address
- Spaces written as %20 or as +, matching HTML form encoding
- Query parser that lists one decoded row per parameter and numbers the repeated keys
- A failed decode names the line and column of the offending %
FAQ
Keep going