在 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