Web search tool
query string parser
Paste a full URL or a raw query string to inspect parameters, duplicate keys, encoded values, and nested redirect targets.
Examples for this search
Parse UTM parameters.
Inspect OAuth callback values.
Check whether a parameter is missing or double-encoded.
Component mode uses encodeURIComponent and decodeURIComponent. Full URL mode tries to preserve the URL structure while encoding or decoding path and query values.
What this url encoder decoder does
Use this URL encoder decoder when query parameters, OAuth callbacks, redirect URLs, or copied request strings contain spaces, percent escapes, plus signs, or double-encoded values.
Common use cases
- Encode a single query parameter value before adding it to a URL.
- Decode an OAuth redirect URL to inspect nested callback parameters.
- Parse a query string into a key/value table.
- Spot values that appear to be encoded more than once.
Accepted input formats
hello world
https://example.com/callback?next=%2Fapp
?utm_source=docs&redirect=%2Fapp
How it works
Component mode uses encodeURIComponent and decodeURIComponent. Full URL mode tries to preserve the URL structure while encoding or decoding path and query values.
Common mistakes
- Encode query parameter values, not an entire URL, when building a query string.
- A plus sign is a literal plus in many contexts; form encoding may treat it as a space.
- If decoding once still leaves percent escapes, the value may be double-encoded.
Frequently asked questions
Should I use encodeURI or encodeURIComponent?
Use component mode for query parameter values. Full URL mode is for already assembled URLs.
Can this parse query strings?
Yes. Paste a URL or query string and Toolvert shows the parsed parameters.
Does it send URLs to a server?
No. Encoding, decoding, and parsing happen locally.