Am 12.05.21 um 09:18 schrieb Markus Heiser:
It depends on what character set your en_US locale implements. ~> cat test.py print("↑ᛏ个")
At least the last character is a not-printable character. For the non 8bit characters I recommend to use python's unicode representation (\u): >>> print('The currency in EU is \u20AC') The currency in EU is € -- Markus --