码迷,mamicode.com
首页 > 其他好文 > 详细

字符编码

时间:2016-10-29 11:54:28      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:blog   strong   www   alt   size   img   分享   代码   src   

我实在不想说什么了,这个写的太详细了明确了,跪了的感觉,大王完全不在了

http://www.cnblogs.com/linhaifeng/articles/5950339.html

 

仅仅补充一下

查看python 字符编码
import sys
print(sys.getdefaultencoding())

查看window系统字符编码

技术分享

linux

[xxxxxx@sso ~]$ echo $LANG
zh_CN.UTF-8

  

最后加上大王的代码

import sys
print(sys.getdefaultencoding())


msg = "我爱北京天安门"
#msg_gb2312 = msg.decode("utf-8").encode("gb2312")
msg_gb2312 = msg.encode("gb2312") #默认就是unicode,不用再decode,喜大普奔
gb2312_to_unicode = msg_gb2312.decode("gb2312")
gb2312_to_utf8 = msg_gb2312.decode("gb2312").encode("utf-8")

print(msg)
print(msg_gb2312)
print(gb2312_to_unicode)
print(gb2312_to_utf8)

 

字符编码

标签:blog   strong   www   alt   size   img   分享   代码   src   

原文地址:http://www.cnblogs.com/fengdao/p/6010114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!