encodings/utf8: Corrected UTF-8 encoding file

This commit is contained in:
WerWolv
2023-03-14 09:36:59 +01:00
parent 2758ec8d36
commit 8e78f371f5
2 changed files with 143596 additions and 1113983 deletions

11
scripts/utf8tblgen.py Normal file
View File

@@ -0,0 +1,11 @@
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