Decode percent-encoded URLs back to readable text. Convert encoded characters like %20, %3F, and %26 back to their original form for easy reading and debugging.
URL decoding reverses the percent-encoding process, converting encoded characters back to their original readable form. This is essential for debugging URL parameters, reading encoded query strings, and understanding data passed through URLs in web applications and APIs.
Decoded Character = Character represented by Hexadecimal value after %Each percent-encoded sequence (%XX) is replaced with the character represented by the two-digit hexadecimal value XX. For example, %20 becomes a space, %3F becomes ?, and %26 becomes &. The + character in query strings is decoded as a space.
| Input | Output |
|---|---|
| Hello%20World | Hello World |
| price%3D100%26discount%3D20%25 | price=100&discount=20% |
| https%3A%2F%2Fexample.com%2Fsearch%3Fq%3Dhello+world | https://example.com/search?q=hello world |