In order to check if a String has only Unicode letters in Java, we use the isDigit() and charAt() methods with decision-making statements . The isLetter(int codePoint) method determines whether the specific character (Unicode codePoint) is a letter. It returns a boolean value, either true or false.