URL Decoder

Turn percent-encoded text (%20, %26, %E2%82%AC...) back into readable characters.

How to use

  1. Paste the encoded string.
  2. The decoded text appears live.
  3. 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.

Related tools