URL Encoder
Percent-encode text so it's safe to use in URLs and query strings.
How to use
- Paste the text or URL parameter value.
- Click URL-encode.
- Copy the encoded result.
Frequently asked questions
When do I need URL encoding?
Whenever a value contains spaces, &, ?, = or non-ASCII characters and needs to go inside a URL or query string.
What does a space become?
%20. (Some form encodings use +, which our decoder also understands.)