PHP | IntlChar getUnicodeVersion() Function Last Updated : 27 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The IntlChar::getUnicodeVersion() function is an inbuilt function in PHP which is used to get the Unicode version. The Unicode standard version information is filled into an array. For example, Unicode version 2.2.1 is represented as an array with the values [2, 2, 1, 0]. Syntax: array IntlChar::getUnicodeVersion ( void ) Parameters: This function does not accept any parameters. Return Value: This function returns an array containing the Unicode version number. Below programs illustrate the IntlChar::getUnicodeVersion() function in PHP: Program: php <?php var_dump(IntlChar::getUnicodeVersion()); ?> Output: array(4) { [0]=> int(7) [1]=> int(0) [2]=> int(0) [3]=> int(0) } Related Articles: PHP | IntlChar::iscntrl() Function PHP | IntlChar charType() Function PHP | IntlChar::ord() Function PHP | IntlChar toupper() Function Reference: http://php.net/manual/en/intlchar.getunicodeversion.php Comment More infoAdvertise with us Next Article PHP | IntlChar getUnicodeVersion() Function V vijay_raj Follow Improve Article Tags : Misc Web Technologies PHP PHP-function PHP-Intl +1 More Practice Tags : Misc Similar Reads PHP | IntlChar getNumericValue() Function The IntlChar::getNumericValue() function is an inbuilt function in PHP which is used to get the numeric value for a Unicode code point as defined in the Unicode Character Database. Syntax: float IntlChar::getNumericValue( $codepoint ) Parameters: This function accepts a single parameter $codepoint w 2 min read PHP | IntlChar getBlockCode() Function The IntlChar::getBlockCode() function is an inbuilt function in PHP which is used to get the Unicode allocation block containing the code point. This function returns the Unicode allocation block that contains the character. Syntax: int IntlChar::getBlockCode ( $codepoint ) Parameters: This function 2 min read PHP | IntlChar getPropertyName() Function The IntlChar::getPropertyName() function is an inbuilt function in PHP which is used to get the Unicode name for a given property which is given in the Unicode database file PropertyAliases.txt. This function maps the property IntlChar::PROPERTY_GENERAL_CATEGORY_MASK to the synthetic names "gcm" / " 2 min read PHP | IntlChar getPropertyEnum() Function The IntlChar::getPropertyEnum() function is an inbuilt function in PHP which is used to get the property constant value for a given property name. The property name is going to be specified in PropertyAliases.txt, which is a Unicode Database file. All types of variants are recognized in this, be it 2 min read PHP | IntlChar getIntPropertyValue() Function The IntlChar::getIntPropertyValue() function is an inbuilt function in PHP which is used to get the value for Unicode property for a code point.Syntax: int IntlChar::getIntPropertyValue( $codepoint, $property ) Parameter: This function accepts two parameters as mentioned above and described below: $ 2 min read Like