How URL parameters are structured
The Query String Format
Query components begin with a `?` symbol and contain `key=value` pairs separated by `&` signs. Every parameter `key` and `value` must be isolated and encoded to prevent parser confusion.
URL Safe Character Set
According to RFC 3986, characters like letters, numbers, and `-`, `.`, `_`, `~` are unreserved and do not need encoding. All other characters must be escaped.
โก How It Works
Get started in 4 simple steps
โ FAQ
Frequently asked questions
๐ Related Tools