Java Character .isUnicodeIdentifierStart ( char ch)

Syntax

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

public static boolean isUnicodeIdentifierStart(char ch)

Example

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


public class Main {
   public static void main(String[] args) {
      char ch1 = '_', ch2 = 'p';
      boolean b1 = Character.isUnicodeIdentifierStart(ch1);
      boolean b2 = Character.isUnicodeIdentifierStart(ch2);
/*w  w  w.  j a va  2s .  c om*/
      System.out.println( b1 );
      System.out.println( b2 );
   }
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable