Checks if the character is an uppercase letter (A-Z).
bool isupper(String c) { int code = _getCode(c); return code >= 65 && code <= 90; }