0x01 escape/unescape
escape不编码的字符有69个
1 | *、+、-、.、/、@、_、0~9、a~z、A~Z |
escape对0~255以外的unicode值进行编码的时候输出%u**格式
0x02 encodeURI
编码结果
encodeURI不编码字符有82个
1 | !、#、$、&、'、(、)、*、+、-、,、.、/、@、_、~、:、;、=、?、0~9、a~z、A~Z |
0x03 encodeURIComponent
编码结果
encodeURIComponent不编码字符有71个
1 | !、'、(、)、*、-、.、_、~、0~9、a~z、A~Z |