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