Character.getName(int codePoint) has the following syntax.
public static String getName(int codePoint)
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'; System.out.println(Character.getName(ch)); } }
The code above generates the following result.