IsUpper
# define IsUpper(c) (c>=0xC0 ? c<=0xDE && c!=0xD7 : c>=0x41 && c<=0x5A)
BUnicodeChar::IsUpper(uint32 c)