URL Encode
Encode URLs and query strings for safe transmission
urlencodepercent encodinguri
encodeURIComponent encodes everything except A-Z a-z 0-9 - _ . ! ~ * ' ( ) and is best used for query string values.
encodeURI preserves the URL structure and is best used for full URLs.
Learn more
Step-by-step guide
How to URL Encode Text
Convert special characters in your URLs to safe percent encoded format using the DevHexLab URL Encoder.
In-depth article
What Is URL Encoding and Why You Need It
URLs cannot contain spaces, accents, or many symbols. URL encoding is how the web safely carries any text inside a web address. Here is what it does and when to use it.