Home › Dev & Data › Query String Parser
Dev & Data
Query String Parser
Break a URL's query string into a readable key = value list, with percent-escapes decoded. Paste a full URL or just the part after the '?'.
Try it now
Worked example
q = gg
page = 2
sort = new
Learn the method
Frequently asked
Does it decode escapes?
Yes — %20 becomes a space and + is treated as a space.
Full URL or just the query?
Either works; everything before the '?' is ignored.