Java Data Type Tutorial - 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';


      System.out.println(Character.getName(ch));
      
   }
}

The code above generates the following result.