10 lines
233 B
Python
10 lines
233 B
Python
|
#!\bin\env python3
|
||
|
|
||
|
umlauts='äöüÄÖÜàéè\' ÉéÀàÈèÙùÂâÊêÎîÔôÛûÇçËëÏïÜüÆæ'
|
||
|
|
||
|
for c in set(umlauts):
|
||
|
hex=c.encode('utf8').hex().upper()
|
||
|
print(f"Case \"{c}\"")
|
||
|
print(f"umlautUtf8ToInt = &H{hex}")
|
||
|
|