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.