- How are nested objects encoded?
- Bracket notation: `user[name]=alice&user[age]=30`. Alternative styles (dot notation, JSON-encoded values) are toggleable.
- What about arrays?
- Three modes: repeated key (`tag=a&tag=b`), bracket with index (`tag[0]=a&tag[1]=b`), or comma-separated (`tag=a,b`). Default matches standard URL encoding.
- Are values URL-encoded?
- Yes — automatically percent-encoded. Spaces become `%20` (default) or `+` (form mode).
- Does the output start with `?`?
- Toggle — include the leading `?` for appending to a base URL, or omit it when the context already has one.