What is
What is URL Decoder?
URL decoding reverses percent-encoding, converting sequences like %20 back to spaces and %E6%97%A5 back to 日. It is commonly needed when reading URL parameters from logs, analyzing redirects, or inspecting OAuth flows.
How to use
How to use URL Decoder
Paste a percent-encoded URL or query string. Click Decode to see the original text. If the string was double-encoded, click Decode again to strip the second layer.
Example
Example
Input: hello%20world%3F%20lang%3D%E6%97%A5%E6%9C%AC%E8%AA%9E
Output: hello world? lang=日本語
Double-encoded:
Input: hello%2520world
First: hello%20world
Second: hello worldCommon use cases
Common use cases
1. Reading URL parameters from access logs and analytics dashboards.
2. Debugging encoded redirect chains in OAuth and SSO flows.
3. Extracting readable data from encoded API webhook payloads.
4. Reverse-engineering encoded tracking parameters.
Frequently asked questions