URLEncode and URLDecode
What is URLEncode and URLDecode?
This web page encodes or decodes a string using URL Encoding. URL Encoding is used when placing text in a query string to avoid it being confused with the URL itself. It is normally used when the browser sends form data to a web server.
URL Encoding replaces spaces with “+” signs, and unsafe ASCII characters with “%” followed by their hex equivalent. Safe characters are defined in RFC2396. They are the 7-bit ASCII alphanumerics and the mark characters “-_.!~*’()”. Note that the standard JavaScript escape and unescape functions operate slightly differently: they encode space as “%20″, and treat “+” as a safe character.
The URLEncode and URLDecode URL: http://www.albionresearch.com/misc/urlencode.php






