1# test builtin chr (whether or not we support unicode)
2
3print(chr(65))
4
5try:
6    chr(0x110000)
7except ValueError:
8    print("ValueError")
9
10