Python 内建函数
获得表示 unicode 78 的字符:
x = chr(78)
x = chr(78) print(x)
chr() 函数返回代表指定 unicode 的字符。
chr(number)
参考手册:ord() 函数(通过 ord() 转换回 unicode。)