isUpperCase Summary Checks if the character represents an uppercase character. Usage public bool isUpperCase() Returns 'true' if the character is an uppercase character and 'false' otherwise. Description Checks if the character represents an uppercase character ranging from A-Z. Examples Check if a character is uppercase 12`A`.isUpperCase(); // true`a`.isUpperCase(); // false Share HTML | BBCode | Direct Link