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.