URL Decode

Decode URL-encoded text into readable values.

Updates instantly as you type

01 / Fast steps

  1. Paste the encoded URL or value.
  2. The readable text appears as you type.
  3. Copy the decoded result.

02 / Best for

  • Read query parameters copied from long tracking links.
  • Inspect encoded values in logs, analytics and webhooks.
  • Turn %20 and friends back into readable text before editing a URL.

03 / Why here

  • Live decoding of even deeply nested, double-encoded values: run it twice for double-encoded input.
  • Runs entirely in your browser, so URLs with tokens or session data never leave your device.

04 / Keep in mind

  • Malformed sequences such as a lone % cannot be decoded and will be reported as invalid.

Good to know

Questions & answers

01

Why does my string contain %2520?

It has been encoded twice: %25 is the encoding of the % sign itself. Decode the value twice to get back the original text.

02

Is the URL I paste sent anywhere?

No. Decoding happens locally in your browser, so links containing tokens, emails or session data never leave your device.

03

Is URL Decode free to use?

Yes, URL Decode is completely free, with no sign-up and no usage limits. It runs entirely in your browser, so your data never leaves your device.