unicode_chr.py 98 B

12345
  1. # test builtin chr with unicode characters
  2. print(chr(945))
  3. print(chr(0x800))
  4. print(chr(0x10000))