Why convert a query string to JSON?
URL query strings are convenient to pass around but awkward to read or process in code. Paste a query string above and get a clean JSON object you can inspect, log, or feed into your application.
How it works
The converter parses your input with the browser’s URLSearchParams, so the behavior matches
exactly how the platform reads URLs. A leading ? or # is ignored, and repeated keys are
grouped into a JSON array so duplicate parameters survive the conversion. Everything runs
locally, which means your data never leaves your device.