The
Character.isValidCodePoint() is an inbuilt method in java that determines whether the specified code point mentioned in the parameter is a valid Unicode code point value or not.
Syntax:
public static boolean isValidCodePoint(int codePoint)
Parameters: The parameter
codePoint is of Integer datatype and refers to the unicode code point that is to be tested.
Return Values: This method returns true if the specified code point value is between MIN_CODE_POINT and MAX_CODE_POINT inclusive, false otherwise.
Below Programs illustrates the use of Character.isValidCodePoint() method:
Program 1:
Output:
c1 is a valid Unicode code point is true
c2 is a valid Unicode code point is false
Program 2: