在 Python 中列印 Unicode 字元

Lakshay Kapoor 2022年1月22日 2021年7月10日
在 Python 中列印 Unicode 字元

Unicode 字元是分配給使用者在人類語言中使用的唯一字元的指定字元,它給出了自己的唯一字元。Unicode 字元在程式設計領域被廣泛接受。

每個人類價值字元的指定程式碼或唯一字元稱為程式碼點。從 U+0000U+10FFFF,程式碼點採用十六進位制數字的形式。每個十六進位制數字都有自己的 Unicode 字元。

在 Python 中,Unicode 字元表示為字串型別。這些字元使用 print 命令列印。

在給出十六進位制值作為輸入值之前,在每個十六進位制值之前使用轉義序列\u

例子:

unicode_character = "\u2612\u7687\u00C9\u00C9"
print(unicode_character)

輸出:

☒皇ÉÉ

請注意,儲存在變數中的十六進位制值被視為字串。

Lakshay Kapoor avatar Lakshay Kapoor avatar

Lakshay Kapoor is a final year B.Tech Computer Science student at Amity University Noida. He is familiar with programming languages and their real-world applications (Python/R/C++). Deeply interested in the area of Data Sciences and Machine Learning.

LinkedIn

相關文章 - Python Unicode