URL Decoder example 1
Input
hello%20world%3Fx%3D1%26y%3D2
Output
hello world?x=1&y=2
Converts percent-encoded text back into normal readable characters.
Developer Tools
Review practical URL Decoder examples so you can understand expected input, output, and common patterns faster.
Use this URL decoder to turn percent-encoded strings back into readable text. It is useful for inspecting tracking links, debugging query parameters, reviewing encoded search terms, and understanding URLs copied from browsers, logs, or analytics tools.
Example pages are especially useful for developer tools because they show what good input looks like, what kind of output to expect, and how the tool behaves in common scenarios.
Input
hello%20world%3Fx%3D1%26y%3D2
Output
hello world?x=1&y=2
Converts percent-encoded text back into normal readable characters.
Input
summer%20sale
Output
summer sale
Useful for inspecting encoded search or parameter values.
Fix: Decode only once unless you know the input was double-encoded.
Fix: Check whether the input actually contains percent-encoded characters.
Fix: Paste the full encoded value before decoding it.
After reviewing these examples, run the live tool with your own input. If your task involves a follow-up step, the related page can help you move to the next tool in the workflow.
Open the main URL Decoder page and test your own real input.