Get started
HomeEncoding & SecurityURL Decode
Encoding & SecurityRuns in your browser · files never uploaded

URL Decode

Decode URL encoding

4.7· 84 votes
Your file never leaves this browser. Everything runs on your device — no uploads, no server storage, no retention.How it works →
✓ DecodedDecodes percent-encoded sequences back to their original characters.
Encoded input55 chars
Decoded31 chars
search?q=hello world & emoji 🚀

What is URL Decode?

Decode a percent-encoded URL string back to the original text. Useful for reading obfuscated URLs, extracting actual parameter values from a logged request, or sanity-checking that a URL you're about to share decodes to something you recognise.

How do I use URL Decode?

  1. Paste an encoded URL or URL fragment into the input.
  2. Copy the decoded text.

When should I use URL Decode?

URL Decode is the inverse of URL Encode. If what you're decoding is a Base64 token rather than percent-escapes, use Base64 Decode instead.

Frequently asked
Can it handle double-encoded URLs?

Yes. Toggle "Decode repeatedly" and the tool will keep decoding until no %xx sequences remain. Use with care — sometimes literal percent signs are intentional.

Why does my plus sign become a space?

Because query strings encode spaces as + (per HTML form rules), while paths encode them as %20. The tool picks the right rule based on whether the input looks like a query string.

Is it safe for URLs copied from browsers?

Yes. Browsers often display decoded URLs but copy them encoded — paste the copied URL and the decoder shows the original text.

Is my file uploaded anywhere?

No. Everything runs in your browser. Your files never leave your device, and there is no server component for this tool.

Related in Encoding & Security
Base64 Encode
Base64 Decode
URL Encode
JWT Decoder
Hash Generator
Password Generator
Strength Checker
HMAC Generator