Character.isDefined(int codePoint) has the following syntax.
public static boolean isDefined(int codePoint)
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); } }
The code above generates the following result.