The decoder uses URI-safe decoding for the entire pasted string. Percent-encoded spaces and UTF-8 characters become readable, while encoded reserved delimiters can remain encoded so the structure of a full URL is not changed unexpectedly.
This page is best for full URLs, paths, and log entries. If you need to decode one query value where reserved delimiters were intentionally encoded as data, decode that individual component in code so delimiters are restored only inside that value.
Common questions and answers about this topic.
Converts URI-safe percent-encoded characters back to readable URL text. For example, percent-encoded spaces and UTF-8 text are restored, while reserved URL delimiters can stay encoded.
When reading encoded URL paths, copied links, API logs, or web traffic logs where percent escapes make the text hard to inspect.
No, URL decoding runs entirely in your browser. Your percent-encoded string is decoded locally with JavaScript and stays on your device.