Full URL
Input: https://x.test/?q=hello+world
Output: q = hello world
Encoding
Parse full URLs or query strings into decoded rows and JSON without fetching the URL.
Runs in your browser. Input is not uploaded or sent to an external API.
Inspect query parameters, duplicate keys, encoded values, and rebuilt query strings without making any network request.
Input: https://x.test/?q=hello+world
Output: q = hello world
Input: tag=a&tag=b
Output: tag[1] = a, tag[2] = b
Input: b=2&a=1
Output: a=1&b=2
Decode redirect query values before editing one component with URL Encode/Decode.
Copy encoded fields into JWT Decoder or Base64 when needed.
Pair query parsing with JSON formatting for request and response inspection.
The parser never opens or validates the pasted URL.
URLSearchParams treats plus as space in query strings, matching common form encoding.
Yes. The page extracts the query string locally and does not request the URL.
Yes. Rows include an occurrence index and JSON groups duplicates into arrays.
Yes, query parsing follows URLSearchParams behavior for plus signs.