URL Decode
Turn a percent-encoded URL string back into readable text as you type. Decodes %XX escapes, treats + as a space, and flags malformed input — ideal for query strings, server logs, and copy-pasted links.
- Published
- Last reviewed
Tool Summary Answer Block
This tool accepts structured input and returns deterministic output in the browser with no server upload.
- Tool name
- URL Decode
- Input intent
- Provide source content to transform, validate, or analyze.
- Output intent
- Receive normalized output suitable for copy, reuse, or debugging.
- Example input
- hello%20world%20%26%20friends
- Example output
- hello world & friends
Need to encode instead? Switch to URL Encode
Tool Introduction
Turn a percent-encoded URL string back into readable text as you type. Decodes %XX escapes, treats + as a space, and flags malformed input — ideal for query strings, server logs, and copy-pasted links.
Tool Overview
URL decoding reverses percent-encoding: every %XX triple is read as a byte, the bytes are interpreted as UTF-8, and the result is shown as text. This tool decodes live as you paste, converts + to a space (the convention in form-encoded data), and surfaces malformed input — a lone % or an incomplete %X sequence — as a clear error instead of silently corrupting the result. It is the fast way to read what a tracking link, redirect parameter, or logged request actually contains. Everything runs in your browser, so nothing you paste is sent anywhere.
Use Cases
- Read what a long UTM or redirect parameter actually contains
- Decode a query string captured in a server log or analytics report
- Inspect an encoded return-URL or callback parameter in an OAuth link
- Recover readable text from a copied, percent-escaped link
- Debug double-encoded values where %2520 should have been a space
Input/Output Examples
hello%20world%20%26%20friends
hello world & friends
q=caf%C3%A9s+%26+bars
q=cafés & bars
FAQ
Why does it say the encoding is invalid?+
Does it turn + into a space?+
Can it decode a whole URL at once?+
What about double-encoded values?+
Explore More Tools
Discover related utilities in the Encoding category below.
Related tools
Handpicked utilities you might find useful