Decode percent-encoded strings back into readable text when browser debugging or query inspection needs a quick check.
Browser-side developer helper only. Verify output against a real environment, and do not paste secrets, regulated personal data, private keys, tokens, or confidential client material unless you have permission and an approved workflow.
This page reverses URL encoding so reserved characters and spaces become readable again. It is for inspecting copied query strings or encoded fragments without leaving the browser.
Provide exact input, inspect deterministic output, and validate with a real endpoint or runtime.
“hello%20world” becomes “hello world”.
A hard-to-read query fragment becomes easier to debug after one decode step.
Encode text for safer placement in URLs and query strings when reserved characters need escaping.
Split a query string into decoded key-value rows when a copied URL is hard to inspect.
Build a cleaner query string from one key-value pair per line when manual URL assembly gets messy.