Guides

QueryString debugging: repeated params & encoding

How a=1&a=2 is parsed, and how to debug %20/+ and double-encoding.

Related tools

Tip: open the tool page to see Pro batch/advanced modes.

Repeated params (a=1&a=2)

Frameworks handle repeated keys differently: first, last, or array.

Print the parsed structure first, then decide server-side behavior.

Encoding pitfalls

`%20` is a space; `+` can also mean space in form-encoding.

`%2520` is often double-encoding: decode once to `%20`, decode again to a space.