URL Encoder / Decoder
Percent-encode text for use in a query string, or decode %20 back into spaces. Handles full UTF-8. Free, no signup.
No signup100% in your browserFree forever
Frequently Asked Questions
- When do I need URL encoding?
- Whenever text goes into a query string, path segment or form value. Characters like spaces, & and ? have special meaning in URLs and must be encoded.
- What is the difference between + and %20?
- Both represent a space. %20 is correct in any part of a URL, while + only means space inside a query string.