URL Decoder
Decode percent-encoded URL strings back into readable text.
What is this tool?
A URL Decoder reverses percent-encoding, turning sequences like %20 back into readable characters such as spaces.
How does it work?
The tool applies decodeURIComponent to your input in the browser.
How to use URL Decoder
- Paste the encoded URL or value.
- Copy the decoded text.
Common Use Cases
- Reading tracking links
- Debugging query strings
- Inspecting redirects
Pro Tips
- If decoding fails, the string may be double-encoded — decode it twice.
Frequently Asked Questions
Can it decode a full URL?
Yes, it decodes percent-encoded sequences anywhere in the input string.