Encode query values
Prepare search terms, filters, names, and other text before placing them inside URL query parameters.
URL utility
Encode strings to URL format in your browser. No coding required. Convert plain text to URL encoding.
Convert plain strings into URL-encoded form for query parameters, redirects, callbacks, and test requests that contain spaces or reserved characters.
Encoding converts spaces and reserved characters into percent-encoded form so values survive inside query strings and redirect targets without breaking the URL structure.
Reverse a value with the URL Decoder. Pair with the Base64 Encoder when a field needs both encodings. Format JSON fixtures first with the JSON Beautifier, or continue token work on the JWT Decoder / Generator.
Prepare search terms, filters, names, and other text before placing them inside URL query parameters.
Convert spaces and characters with special URL meaning instead of replacing individual characters by hand.
Create encoded values for API calls, redirects, callback URLs, and integration tests while debugging web apps.
Confirm with the URL Decoder, encode payloads via Base64, or clean JSON with the JSON Beautifier before shipping fixtures.