ToolboxToolbox/UnfortunateChars.py

5 lines
137 B
Python
Raw Permalink Normal View History

2021-09-19 11:34:25 +00:00
#!/usr/bin/env/python3
for i in range(128, 256):
print('%02x' % i, bytes([i]).decode('mac_roman').encode('utf-8').decode('mac_roman'))