Package java.lang
Class Character
static boolean isUnicodeIdentifierPart(char ch)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Determines if the specified character may be part of a Unicode identifier as other than the first character. A character may be part of a Unicode identifier if and only if it is one of the following:
Example
if (Character.isUnicodeIdentifierPart('_'));
Logger.log("This character is a Unicode identifier part character!");
Returns true if the specified character is part of the Unicode identifier part.