
30 Jun
2017
30 Jun
'17
7:56 a.m.
http://www.tagesschau.de/inland/eszett-103.html
SuSE 42.2
python3 Python 3.4.6 (default, Mar 22 2017, 12:26:13) [GCC] on linux Type "help", "copyright", "credits" or "license" for more information.
c='ẞ' d='ß' print(ord(c),ord(d))
7838 223
print(hex(ord(c)),hex(ord(d)))
0x1e9e 0xdf
c.lower()
'ß'
ord(c.lower())
223
d.upper()
'SS'
Hermann der etwas anderes erwartet hat.