URL Decoder
Turn percent-encoded text (%20, %26, %E2%82%AC...) back into readable characters.
How to use
- Paste the encoded string.
- The decoded text appears live.
- Copy the readable result.
Examples
Simple decode
Input: a%20b%26c%3Dd
Output: a b&c=d
Frequently asked questions
Why do I get an error?
A % must be followed by two hexadecimal digits. Incomplete sequences like %2 or %zz are invalid.