mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-28 15:57:02 -05:00
11 lines
264 B
Python
11 lines
264 B
Python
for i in range(0, 0x10FFFE):
|
|
try:
|
|
string = ""
|
|
string += chr(i)
|
|
|
|
if not string.isprintable():
|
|
continue
|
|
print(f"{string.encode('utf-8').hex().upper()}={string}")
|
|
except Exception as e:
|
|
print(e)
|
|
pass |