JS: Encode URL, Escape String
- JS: encodeURI, decodeURI
- Percent encode URL.
- JS: encodeURIComponent, decodeURIComponent
- Like
encodeURI
but changes more chars, including slash and colon inhttp://
.
- JS: escape, unescape
- deprecated
encodeURI
but changes more chars, including slash and colon in http://
.