10.05.2009, 23:48
Lower case characters is range 0x61 - 0x7A, and upper case characters is range 0x41 - 0x5A. This is only for characters a-z and A-Z, not а or А or whatever. To convert a upper character to a lower character, add 0x20, and, as you already guessed i think, for lower to upper, substract 0x20.

