当前位置:   article > 正文

python Unicode编码字符串转中文_python unicode字符串转中文

python unicode字符串转中文

 

  1. #content 是 Unicode编码字符串
  2. content = r'\u201c\u5fc3\u8df3\u52a0\u901f\u201d\u7b49\u3002\u6b64\u5916\uff0c\u4f60\u8fd8\u53ef\u4ee5\u4f7f'
  3. z1= content.encode('utf-8',errors='ignore').decode('unicode_escape',errors='ignore')
  4. z2=content.encode('utf-8',errors='ignore').decode('unicode_escape',errors='ignore').encode('utf-8',errors='ignore').decode('utf-8',errors='ignore')
  5. #z1 和z2 区别
  6. z1 可能包含非utf-8字符,显示保存到文件时就需要用z2
  7. print(z1,'\n',z2)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/924825
推荐阅读
相关标签
  

闽ICP备14008679号