Java Character.isDefined(int codePoint)
Syntax
Character.isDefined(int codePoint) has the following syntax.
public static boolean isDefined(int codePoint)
Example
In the following code shows how to use Character.isDefined(int codePoint) method.
public class Main {
public static void main(String[] args) {
int cp = 0x011111;
boolean b = Character.isDefined(cp);
System.out.println("cp has defined meaning in Unicode is " + b);
}//from w w w . j a v a 2 s . c om
}
The code above generates the following result.