Build a cleaner query string from one key-value pair per line when manual URL assembly gets messy.
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 turns plain key-value lines into a URL-encoded query string.
Provide exact input, inspect deterministic output, and validate with a real endpoint or runtime.
“q=paint coverage” becomes “q=paint%20coverage”.
A short set of filters can be turned into a clean query string in one pass.
Split a query string into decoded key-value rows when a copied URL is hard to inspect.
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.