1# anything above 0xa0 is printed as Unicode by CPython
2# the abobe is CPython implementation detail, stick to ASCII
3for c in range(0x80):
4    print("0x{:02x}: {}".format(c, repr(chr(c))))
5