…
URL Encoder Tool is a Free SEO Tool allows to Encode a query string that will be part of a url. This is useful when you want to add special characters to a URL parameter.
This is a simple tool that will help you encode a URL that can be safely used for links. URL encoding replaces unsafe ASCII characters with a "%" followed by two hexadecimal digits.
URLs cannot contain spaces. URL encoding normally replaces a space with a plus (+) sign or with %20.
URL Encoding replaces “unsafe” characters with ‘%’ followed by their hex equivalent. Characters which need not be escaped are defined in RFC3986. They are the 7-bit ASCII alphanumerics and the characters “-._~”. Unicode characters and 8-bit ASCII characters are normally first encoded using UTF-8, as defined in RFC2279.
When encoding a String, the following rules apply:
a
" through "z
", "A
" through "Z
" and "0
" through "9
" remain the same..
", "-
", "*
", and "_
" remain the same.
" is converted into a plus sign "+
".%xy
", where xy is the two-digit hexadecimal representation of the byte. The recommended encoding scheme to use is UTF-8..For example using UTF-8 as the encoding scheme the string "The string ü@foo-bar" would get converted to "The+string+%C3%BC%40foo-bar" because in UTF-8 the character ü is encoded as two bytes C3 (hex) and BC (hex), and the character @ is encoded as one byte 40 (hex).
Encode URL encoded formatted string data
This is a simple tool that will help you encode text that can be safely put into URL query string values known as GET variables. URL encoded text is most commonly used in web addresses for passing URLs in querystring variables.
URL Encoding replaces “unsafe” characters with ‘%’ followed by their hex equivalent. Characters which need not be escaped are defined in RFC3986. They are the 7-bit ASCII alphanumerics and the characters “-._~”. Unicode characters and 8-bit ASCII characters are normally first encoded using UTF-8, as defined in RFC2279.
URLs can only be sent over the Internet using the ASCII character-set.
Since URLs often contain characters outside the ASCII set, the URL has to be converted into a valid ASCII format.
URL encoding replaces unsafe ASCII characters with a "%" followed by two hexadecimal digits.
URLs cannot contain spaces. URL encoding normally replaces a space with a plus (+) sign or with %20.
The encodeURIComponent() function encodes a URI by replacing each instance of certain characters by 1 to 4 escape sequences representing the UTF-8 encoding of the character.
The decodeURIComponent() function decodes a Uniform Resource Identifier (URI) component previously created by encodeURIComponent or by a similar routine.
It was a joke, okay? If we thought it would actually be used, we wouldn’t have written it!
Mark Andreesen
…
…