General Programming Concepts
ASCII & UTF-8 & UTF-32
Lowercase characters have a higher code point than Higher case characters
Lowercase characters have a higher code point than Higher case charactersprint('a' < 'A') # prints False
print('A' < 'a') # prints TrueLast updated