在 Python 3 打印 unicode 字符可以这样打印:
print('\uFFFF')
但是如何打印更高的 unicode 字符,例如 001FFFFF?print('\u001FFFFF') 只会将 001F 打印为 unicode 字符,然后打印 4 次 F。尝试使用 print('\u001F\uFFFF') 将导致 2 个 unicode 字符而不是想要的字符。是否可以在 Python 3 中以某种方式打印 unicode 字符 001FFFFF?
在 Python 3 打印 unicode 字符可以这样打印:
print('\uFFFF')
但是如何打印更高的 unicode 字符,例如 001FFFFF?print('\u001FFFFF') 只会将 001F 打印为 unicode 字符,然后打印 4 次 F。尝试使用 print('\u001F\uFFFF') 将导致 2 个 unicode 字符而不是想要的字符。是否可以在 Python 3 中以某种方式打印 unicode 字符 001FFFFF?