URL Encode
Percent-encode text for URLs and query strings.
Runs in your browser — your data never leaves it
Paste, type, or drop a file. Runs as you type.
Output appears here as you type.
Worked example
a b&ca%20b%26cThis example is one of URL Encode's test cases — if the tool stopped producing this output, the build would fail.
Questions
- Which encoding does it use?
- Percent-encoding via encodeURIComponent — safe for query-string values and path segments.
- Does it encode spaces as + or %20?
- %20. The decoder accepts + as a space too, since query strings in the wild use both.
Related tools
Base64 EncodeEncoders
Encode text to Base64 — payloads, certificates, attachments.
Base64 DecodeEncoders
Decode Base64 back to text, UTF-8 safe.
URL DecodeEncoders
Decode percent-encoded URL text back to readable form.
JWT DecoderEncoders
Read a JWT's header and claims — it never leaves your browser, and we never verify the signature.