PHP | IntlChar::isJavaIDPart() Function Last Updated : 11 Jul, 2025 Summarize Comments Improve Suggest changes Share Like Article Like Report The IntlChar::isJavaIDPart() function is an inbuilt function in PHP which is used to check whether the input code point is permissible in a Java identifier character or not. Specified code point to be determined whether the code point is Java identifier. It is True for general category “Sc” (Currency Symbols) where added isIDPart() function.Syntax: bool IntlChar::isJavaIDPart( $codepoint ) Parameters: This function accepts a single parameter $codepoint which is mandatory. The input parameter $codepoint is a character or integer value, which is encoded as UTF-8 string.Return Value: Returns True if $codepoint is Java identifier character, otherwise return False.Below programs illustrate the IntlChar::isJavaIDPart() Function in PHP:Program 1: php <?php // PHP function to illustrate the // use of IntlChar::isJavaIDPart() // Input control character codepoint value var_dump(IntlChar::isJavaIDPart("\n")); // Input string codepoint value var_dump(IntlChar::isJavaIDPart("Report Bug")); // Input int codepoint value var_dump(IntlChar::isJavaIDPart("3 ")); // Input string codepoint value var_dump(IntlChar::isJavaIDPart("R")); // Input floating codepoint value var_dump(IntlChar::isJavaIDPart("33.44")); // Input int char an identifier // of codepoint value var_dump(IntlChar::isJavaIDPart("\u{007F}")); // Input symbolic codepoint value var_dump(IntlChar::isJavaIDPart(" @ ")); var_dump(IntlChar::isJavaIDPart(" $ ")); ?> Output: bool(false) NULL NULL bool(true) NULL bool(true) NULL NULL Program 2: php <?php // PHP function to illustrate the // use of IntlChar::isJavaIDPart() // Declare an array with // different codepoint value $arr = array("\r", "R", " ", "\u", " 5", "\t", "Geeks", ); // For loop condition to check // each character through function foreach ($arr as $val) { // Check each element as code point data var_dump(IntlChar::isJavaIDPart($val)); } ?> Output: bool(false) bool(true) bool(false) NULL NULL bool(false) NULL Related Articles: IntlChar::isIDIgnorable() FunctionIntlChar::isIDStart() FunctionIntlChar::isIDPart() Function Reference: https://www.php.net/manual/en/intlchar.isjavaidpart.php Comment More infoAdvertise with us Next Article PHP | IntlChar::isJavaIDStart() Function J jit_t Follow Improve Article Tags : PHP PHP-Intl Similar Reads PHP | IntlChar::isJavaIDStart() Function The IntlChar::isJavaIDStart() function is an inbuilt function in PHP which is used to check whether the input character code point is permissible since the first character is a java identifier or not. It is True for characters with general category "Sc" (Currency Symbols), and "Pc" (Connecting Punct 2 min read PHP | IntlChar::isJavaIDStart() Function The IntlChar::isJavaIDStart() function is an inbuilt function in PHP which is used to check whether the input character code point is permissible since the first character is a java identifier or not. It is True for characters with general category "Sc" (Currency Symbols), and "Pc" (Connecting Punct 2 min read PHP | IntlChar::isIDPart() Function The IntlChar::isIDPart() function is an inbuilt function in PHP which is used to check whether the given input character is permissible in an identifier or not. It is True for characters with general category "L" (Letters), "Nd" (Decimal digits), "Nl" (letters numbers), "Mc" and "Mn"(Combining marks 2 min read PHP | IntlChar::isIDPart() Function The IntlChar::isIDPart() function is an inbuilt function in PHP which is used to check whether the given input character is permissible in an identifier or not. It is True for characters with general category "L" (Letters), "Nd" (Decimal digits), "Nl" (letters numbers), "Mc" and "Mn"(Combining marks 2 min read PHP | IntlChar::isIDStart() Function The IntlChar::isIDStart() function is an inbuilt function in PHP which is used to check whether the given input character code point is permissible since the first character is an identifier or not. It is True for characters with general category "L" (Letters), and "Nl" (letters numbers). Syntax: bo 2 min read PHP | IntlChar::isIDStart() Function The IntlChar::isIDStart() function is an inbuilt function in PHP which is used to check whether the given input character code point is permissible since the first character is an identifier or not. It is True for characters with general category "L" (Letters), and "Nl" (letters numbers). Syntax: bo 2 min read Like