URL Decoder
Decode percent-encoded URL text in your browser.
Also treats + as space for query-string compatibility.
What is URL decoding?
Percent sequences are converted back to characters.
How to URL-decode text
- 1
Paste encoded text
Provide a percent-encoded string.
- 2
Decode
Invalid sequences show an error; valid input becomes plain text.
- 3
Copy
Copy the decoded result.
URL Decoder FAQ
Plus signs?
decodeURIComponent does not treat + as space. Replace + with %20 first if needed.
Double encoding?
Run decode once per encoding layer.
Uploaded?
No.
Related tools?
URL Encoder; JSON Formatter for encoded payloads.