URL Decode

Decode percent-encoded URLs

Input
0 words·0 chars·0 lines

Quick Access

About URL Decode

Decodes percent-encoded URL strings back to their original readable form. Handles %20, %2F, and all other encoded characters.

Use cases

  • Read encoded URLs from logs or analytics
  • Decode query strings from browser address bars
  • Debug encoded API endpoint paths
  • Inspect redirect URLs

FAQ

What if decoding throws an error?
The input contains a malformed percent sequence (e.g. % not followed by two hex digits).

Related tools