URL Encoder
Convert accents and spaces into the hexadecimal percent formats of the internet.
What is URL Encode?
Normal URLs can only be sent securely over the internet using the classic set of English letters (ASCII). If the URL contains \"dirty\" or illegal characters, such as single quotes, double quotes, regular keyboard spaces, and Latin letters with accents (í, á, ã), they must be converted.
Percentage Symbol (%)
The encoding replaces what is illegal with the character \"%\" followed by two digits in a safe hexadecimal format. For example, when converting the phrase \"Hi How Are You\" from your CRM system to an HTTP route, our tool will replace the empty spaces with the code resulting in a \"Hi%20How%20Are%20You\".