JS: Encode URL, Escape String
encodeURI
/decodeURI
-
Percent encode URL.
〔see encodeURI〕
encodeURIComponent
/decodeURIComponent
-
Like
encodeURI
but changes more chars, including slash and colon inhttp://
.〔see encodeURIComponent〕
escape
/unescape
-
deprecated. Changes some characters to a percent encoded form of the char's Unicode codepoint.
〔see escape〕
Note: these functions are properties of the Global Object .