Character.isUnicodeIdentifierStart(char ch) has the following syntax.
public static boolean isUnicodeIdentifierStart(char ch)
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); // ww w .jav a 2 s .c om System.out.println( b1 ); System.out.println( b2 ); } }
The code above generates the following result.