Split a query string into decoded key-value rows when a copied URL is hard to inspect.
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.
Reads a query string or full URL and outputs decoded parameters line by line.
Provide exact input, inspect deterministic output, and validate with a real endpoint or runtime.
“? q=paint+coverage&page=2” becomes readable key-value rows.
A long filtered-search URL is easier to review once each parameter is separated.
Build a cleaner query string from one key-value pair per line when manual URL assembly gets messy.
Decode percent-encoded strings back into readable text when browser debugging or query inspection needs a quick check.
Encode text for safer placement in URLs and query strings when reserved characters need escaping.