URL Encoder
Percent-encode text for use in URLs (encodeURIComponent).
Encode query values safely without leaving your browser.
What is URL encoding?
Special characters are replaced with %HH sequences for URL safety.
How to URL-encode text
- 1
Enter text
Paste the string for query parameters or path segments.
- 2
Encode
Uses encodeURIComponent-style escaping in the browser.
- 3
Copy
Paste the encoded value into a URL.
URL Encoder FAQ
Spaces become what?
Percent-encoding (e.g. %20), not +. Form-urlencoded + is a different convention.
Full URLs?
Encode components, not the entire URL including https://, unless you intend to.
Uploaded?
No.
Related tools?
URL Decoder; Base64 Encoder.