URL Decoder

Decode percent-encoded URLs back to readable text.

💡 About URL Decoding

URL decoding converts percent-encoded text back to readable format.

Input examples:

  • Hello%20World! → Hello World!
  • user%40example.com → user@example.com
  • price%3D%2410 → price=$10

Note: Invalid percent sequences (like %XX with non-hex characters) will cause errors.

Did you find this page useful?