PHP | IntlChar::isUUppercase() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The IntlChar::isUUppercase() function is an inbuilt function in PHP which is used to check whether the given input character is an Uppercase Unicode character or not. Syntax: bool IntlChar::isUUppercase( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter is a character value, which is encoded as a UTF-8 string. Return Value: If $codepoint is an UpperCase Unicode character then it returns True, otherwise return False. Note:The function is different from IntlChar::isupper() function. Below programs illustrate the IntlChar::isUUppercase() Function in PHP: Program 1: PHP <?php // PHP code to illustrate IntlChar::isUUppercase // function // Input data is Capital letter or character var_dump(IntlChar::isUUppercase("M")); // Input data is small letter or character var_dump(IntlChar::isUUppercase("m")); // Input data is Capital letter string var_dump(IntlChar::isUUppercase("GEEKS")); // Input data is small letter string var_dump(IntlChar::isUUppercase("geeks")); // Input data is integer value var_dump(IntlChar::isUUppercase("7")); ?> Output: bool(true) bool(false) NULL NULL bool(false) Program 2: PHP <?php // PHP code to IntlChar::isUUppercase // function // Declare an array $arr $arr = array("X", "ReportBug", "^", "c", "\t"); // Loop run for every array element foreach ($arr as $val) { // Check each element of array var_dump(IntlChar::isUUppercase($val)); } ?> Output: bool(true) NULL bool(false) bool(false) bool(false) Related Articles: PHP | IntlChar::isupper() FunctionPHP | IntlChar::isxdigit() FunctionPHP | IntlChar::islower() Function Reference: https://www.php.net/manual/en/intlchar.isuuppercase Comment More infoAdvertise with us Next Article PHP | IntlChar::isULowercase() Function J jit_t Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Intl Similar Reads PHP | IntlChar::isupper() Function The IntlChar::isupper() function is an inbuilt function in PHP which is used to check whether the given input character is an uppercase character or not. Syntax: bool IntlChar::isupper( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input paramet 2 min read PHP | IntlChar::isULowercase() Function The IntlChar::isULowercase() function is an inbuilt function in PHP that is used to check whether the given input character is a Lowercase character or not. Syntax: bool IntlChar::isULowercase( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input 3 min read PHP IntlChar::isbase() Function PHP IntlChar::isbase() function is an inbuilt function in PHP that is used to check whether the given input data is a base character or not. If the specified code point is a base character then it returns TRUE for general categories "L" (Letters), "N" (numbers), "Mc" (spacing combining marks), and " 2 min read PHP | IntlChar::isspace() Function The IntlChar::isspace() function is an inbuilt function in PHP which is used to check whether the given input character is a space character or not. Syntax: bool IntlChar::isspace( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter is 2 min read PHP | IntlChar::islower() Function The IntlChar::islower() function is an inbuilt function in PHP which is used to check whether the given input character is a lowercase character or not. Syntax: bool IntlChar::islower( $codepoint ) Parameter: This function accepts a single parameter $codepoint which is mandatory. The input parameter 2 min read PHP | IntlChar::isalpha() Function The IntlChar::isalpha() function is an inbuilt function in PHP which is used to check the given input is an alphanumeric character or not. Syntax: bool IntlChar::isalpha( $codepoint ) Parameters: The IntlChar::isalpha() function accept single parameter $codepoint which is mandatory. The input parame 1 min read Like