Java Character.getName(int codePoint)
Syntax
Character.getName(int codePoint) has the following syntax.
public static String getName(int codePoint)
Example
In the following code shows how to use Character.getName(int codePoint) method.
public class Main {
public static void main(String[] args) {
int ch = '\u06aa';
/*from ww w . j a v a 2s . c om*/
System.out.println(Character.getName(ch));
}
}
The code above generates the following result.