我正在使用 Ubuntu。我的控制台(使用 Python 或 bash)不打印 4 个字节的 utf8 字符,仅打印 3 个字节或更少。
示例(bash):
eran@eran-MS-7788:~/Dropbox/help$ echo -e "\xee\x8c\xb0"
# This prints the v sign
eran@eran-MS-7788:~/Dropbox/help$ echo -e "\xf0\x9f\x8f\x80"
# This should print the basketball sign but does not print so
我从 Python 控制台得到了同样的结果。
有什么办法可以解决这个问题?