URL Decode
Decode percent-encoded URL text back into readable content for inspection and debugging.
Decode a percent-encoded URL or parameter fragment into readable text for inspection and troubleshooting.
Useful for callback URLs, API parameters, logs, and browser address strings that contain encoded values.
Useful for full URLs, query parameters, callback links, and encoded text found in logs. Copy the result directly after conversion.
Was this tool helpful?
Your feedback helps us decide which tools to improve first.
If you can, tell us the main reason:
Common use cases
- Use this page when a long string full of `%2F` or `%E4%BD%A0%E5%A5%BD` needs to be turned back into readable text.
- It is useful for callback URLs, redirect chains, request logs, and landing-page parameters where the real payload is hidden behind percent encoding.
- If you want to edit a link safely, decoding first so you can read the actual values is usually the fastest way to avoid mistakes.