General Programming Concepts
ASCII & UTF-8 & UTF-32
Developed firstly that maps characters 1 to 1 with bytes
Lowercase characters
have a higher code point than Higher case characters
Lowercase characters
have a higher code point than Higher case characters
print('a' < 'A') # prints False
print('A' < 'a') # prints True
Last updated