A summary of the encoding method of JS string

Source: Internet
Author: User

Tag: equals COM CTI%x method cannot http charset receive page

In encoding URL strings with JavaScript, although escape (), encodeURI (), and encodeURIComponent () Three methods can filter some special characters that affect URL integrity. But the latter two is the way to convert the string to UTF-8, which solves the problem of garbled page encoding. For example: The sending page is inconsistent with the encoding format (Charset) of the Accept page (assuming that the sending page is GB2312 and the receiving page encoding is UTF-8), and using the escape () conversion will cause garbled problems with the text string in transit.

Here are the various ways to encode/decode URLs under JS:
1. Escape method: Returns an encoded String object that can be read on all computers.
function Escape (charstring:string): String
Characters that are not encoded by this method: @ */+
Description: The Escape method returns a string value (in Unicode format) that contains charstring content. All spaces, punctuation,
Accented symbols and any other non-ASCII characters are replaced with%XX encoding, where xx equals the hexadecimal number that represents the character.
For example, a space is returned as "%20". (characters with a character value greater than 255 are stored in%uxxxx format.) )
Note: The escape method cannot be used to encode a Uniform Resource Identifier (URI). The encoding should use the encodeURI and encodeURIComponent methods.

2. encodeURI method: Returns a string encoded as a valid Uniform Resource Identifier (URI).
function encodeURI (uristring:string): String
Characters that will not be encoded by this method:! @ # $ & * () =:/;? +
Description: The encodeURI method returns an encoded URI. If the encoding result is passed to decodeURI, the initial string is returned. encodeURI does not encode the following characters: ":", "/", ";" and "?". Please use
These characters are encoded by the encodeuricomponent.

3. encodeURIComponent method: Returns a string of valid components encoded as a Uniform Resource Identifier (URI).
function encodeURIComponent (encodeduristring:string): String
Characters that will not be encoded by this method:! * ( ) ‘
Description: The encodeURIComponent method returns an encoded URI. If the encoding result is passed to decodeURIComponent, the initial string is returned. Because the encodeURIComponent method encodes all characters,
Note that if the string represents a path, such as/folder1/folder2/default.html, the slash in it will also be encoded so that it will be invalid when the string is sent as a request to the WEB server. If the string contains more than one URI component, use the encodeURI method to encode it.

4. Unescape method: Returns the decoded string from a string object encoded with the escape method.
function unescape (charstring:string): String
Description: The Unescape method returns a string value that contains the contents of the charstring. All encoded in%XX 16 binary form
Characters are replaced by the equivalent characters in the ASCII character set. (characters encoded in%uxxxx format (Unicode characters) with 16
The Unicode character of the binary code xxxx is replaced. )
Note: The Unescape method should not be used to decode the Uniform Resource Identifier (URI). Use the decodeURI and decodeURIComponent methods instead.

5. decodeURI method: Returns the non-encoded form of a coded Uniform Resource Identifier (URI).
function decodeURI (uristring:string): String
decodeURIComponent method: Returns the non-encoded form of an encoded component of a Uniform Resource Identifier (URI).
function decodeURIComponent (encodeduristring:string): String
How to encode URLs in btw:c# ...
Code: Server.URLEncode (String)

Decoding: Server.urldecode (String) the previous three kinds of client code can be decoded in the background with this method.

Reprinted from: http://www.cnblogs.com/Miton/archive/2011/07/25/2116292.html

A summary of the encoding method of JS string

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.