Python - Unicode 转换器
Python - Unicode Converter
我正在寻找将十进制 unicode 转换为字符串的简单方法。
例如:
我需要将数字 76 转换为符号 "L"。
我需要像这个页面那样的东西:https://www.branah.com/unicode-converter
感谢您的帮助
chr
函数是您在 Python3、unichr
和 Python2 上寻找的函数。
>>> u''.join(unichr(x) for x in [77,65,82,75])
u'MARK'
我正在寻找将十进制 unicode 转换为字符串的简单方法。
例如:
我需要将数字 76 转换为符号 "L"。 我需要像这个页面那样的东西:https://www.branah.com/unicode-converter
感谢您的帮助
chr
函数是您在 Python3、unichr
和 Python2 上寻找的函数。
>>> u''.join(unichr(x) for x in [77,65,82,75])
u'MARK'