Java Data Type Tutorial - Java Character .isUnicodeIdentifierPart ( char ch)








Syntax

Character.isUnicodeIdentifierPart(char ch) has the following syntax.

public static boolean isUnicodeIdentifierPart(char ch)

Example

In the following code shows how to use Character.isUnicodeIdentifierPart(char ch) method.

// w ww.  ja v  a 2s  .  c  o m
public class Main {
   public static void main(String[] args) {
      char ch1 = '~', ch2 = '1';

      boolean b1 = Character.isUnicodeIdentifierPart(ch1);
      boolean b2 = Character.isUnicodeIdentifierPart(ch2);

      System.out.println( b1 );
      System.out.println( b2 );
   }
}

The code above generates the following result.