Python字串轉換成Unicode--比較好用的方法
將Python字串轉換成Unicode
plainstring1 = unicode(utf8string, "utf-8")
plainstring2 = unicode(asciistring, "ascii")
plainstring3 = unicode(isostring, "ISO-8859-1")
plainstring4 = unicode(utf16string, "utf-16")
先用type函式確定一下是什麼編碼的
str編碼是"utf-8"
另外,
將Unicode轉換為其他編碼
utf8string = unicodestring.encode("utf-8")
asciistring = unicodestring.encode("ascii")
isostring = unicodestring.encode("ISO-8859-1")
utf16string = unicodestring.encode("utf-16")
相關文章
- 字串大小寫轉換和字串的比較字串
- python字串比較大小Python字串
- Oracle多行轉換成字串方法總結Oracle字串
- 將字串轉換成Bitmap型別 或者 將Bitmap轉換成字串字串型別
- oracle行列轉換-多行轉換成字串Oracle字串
- 字串比較字串
- oracle行列轉換-字串轉換成多列Oracle字串
- oracle行列轉換-多列轉換成字串Oracle字串
- MySQL把字串欄位轉換為日期型別進行比較MySql字串型別
- 比較 python & perl(轉)Python
- 字串-簡單字串比較字串
- 比較字串和數字串字串
- PHP比較字串PHP字串
- JAVA字串比較Java字串
- 將整數轉換成字串字串
- shell 下的字串比較字串
- C#比較兩個字串的相似度【轉】C#字串
- oracle中字串的大小比較,字串與數字的比較和運算Oracle字串
- python網站開發哪些框架比較好用?Python網站框架
- python如何比較兩個字串是否相等Python字串
- Java™ 教程(比較字串和字串的部分)Java字串
- 分享三種jpg轉換成pdf格式的方法,每一種都好用
- 利用compareTo方法進行字串比較排序字串排序
- 比較字串和數字串(續)字串
- InputStream流轉換成String字串字串
- 一個字串比較的題字串
- 字串比較的常用函式字串函式
- Delphi中字串比較大小 VS Oracle-SQL中字串比較大小字串OracleSQL
- python清空字典的兩種方法比較Python
- Python解惑:整數比較 is ==的比較Python
- javascript如何將字串轉換成陣列JavaScript字串陣列
- 將json字串轉換成list<T>JSON字串
- 浮點數轉換成字串函式字串函式
- 學Java的軟體哪些比較好用Java
- Mysql 一個比較好用的函式MySql函式
- 字串拼接運算比較字串
- JavaScript字串如何比較大小JavaScript字串
- LintCode 字串比較字串