Online Toolbox
switching mode
tool collection
put it on the desktop
inclusion application
tool search
Escape encoding ↓ Escape decode ↑ empty

Escape encoding/decoding Introduction

About Escape encoding:

1. The Escape encoding ‌ is a way to convert non-ASCII characters in a string to %xx, where xx is the hexadecimal number encoded in the character set table. ‌

2, the Escape encoding uses the ISO Latin character set to encode the specified string. Spaces, punctuation marks, special characters, and other non-ASCII characters are converted to character encodings in %xx format, where xx is equal to the hexadecimal number encoded in the character set table.

3. The difference between ‌Escape encoding and ‌encodeURI and encodeURIComponent ‌ :

The

(1), escape encoding encodes all non-ASCII characters.

< p > (2), encodeURI/encodeURIComponent mainly aimed at ‌ encode special characters in the URL.

(3), escape encoding does not take into account the specific rules of the URL.

(4), encodeURI, and encodeURIComponent encode the URL's encoding rules to ensure that the resulting string can be used as part of the URL.

Internet Business Promoter