URL decoder

Decode percent-encoded URLs and query strings so you can read the real text, paths, and parameters inside them.

What URL decoding reveals

Decoding turns escaped values like %20 and %3F back into readable characters, which helps when copied URLs are difficult to inspect in raw form.

Typical decoder workflows

  • Inspect an encoded redirect destination inside a query parameter.
  • Read a copied URL from a support ticket or analytics report.
  • Break down a raw query string before rebuilding or cleaning it.

Related pages