URL Decode
Decode percent-encoded URL text back to readable form.
Runs in your browser — your data never leaves it
Paste, type, or drop a file. Runs as you type.
Output appears here as you type.
Worked example
a%20b%26ca b&cThis example is one of URL Decode's test cases — if the tool stopped producing this output, the build would fail.
Questions
- Does it handle + as a space?
- Yes — query strings commonly encode a space as +, so both + and %20 decode to a space.
- What if the input is malformed?
- It tells you a % isn't followed by two hex digits, rather than silently returning the input unchanged.
Related tools
Base64 EncodeEncoders
Encode text to Base64 — payloads, certificates, attachments.
Base64 DecodeEncoders
Decode Base64 back to text, UTF-8 safe.
URL EncodeEncoders
Percent-encode text for URLs and query strings.
JWT DecoderEncoders
Read a JWT's header and claims — it never leaves your browser, and we never verify the signature.