Python chr() 函数

实例

获得表示 unicode 78 的字符:

  1. x = chr(78)
  2. print(x)

定义和用法

chr() 函数返回代表指定 unicode 的字符。


语法

  1. chr(number)
参数值
参数描述
number代表有效 Unicode 代码点的整数。

相关页面

参考手册:ord() 函数(通过 ord() 转换回 unicode。)

分类导航