Query String Parser & Formatter
Parse URL parameters into structured tables or clean JSON objects, encode values, and debug parameters easily.
Parsed Parameters
0 parameters| Key | Value | Action |
|---|
JSON Representation
0 charsQuery String Encoding Guidelines
- Key-Value Pairs: Parameters are separated by ampersands (`&`) and keys are linked to values via equal signs (`=`).
- URL Encoding: Special characters, spaces, and punctuation must be percent-encoded (e.g., spaces converted to `+` or `%20`).
- Arrays: Multiple parameters sharing the same key are automatically grouped into arrays.