encode和decode关系

Posted haocao-niu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了encode和decode关系相关的知识,希望对你有一定的参考价值。

过程:

将其他编码的字符解码(decode)为unicode;

将unicode编码的字符编码(encode)为另一种编码。

eg:

str.decode(‘gb2312‘)    -----将gb2312编码的字符串str转换为unicode编码

str.encode(‘GBK‘)       -----将unicode编码的字符串str转换为GBK编码

技术图片

 

以上是关于encode和decode关系的主要内容,如果未能解决你的问题,请参考以下文章

python的encode()和decode()函数

encode()和decode()编码与解码的解析常用编码与为何要encode和decode

encode 和 decode

encode和decode

python 补充-decode和encode

对于JS 中编码(encode)和解码(decode)的三种方法