Example:: // Unicode For Uppercase Greek Omega Character
Example:: // Unicode For Uppercase Greek Omega Character
char ch = 'a';
// an array of chars
char[] charArray ={ 'a', 'b', 'c', 'd', 'e' };
However in development, we come across situations where we need to use objects instead of primitive data types. In
order to achieve this, Java provides wrapper class Character for primitive data type char.
The Character class offers a number of useful class (i.e., static) methods for manipulating characters. You can create
a Character object with the Character constructor:
The Java compiler will also create a Character object for you under some circumstances. For example, if you pass a
primitive char into a method that expects an object, the compiler automatically converts the char to a Character for
you. This feature is called autoboxing or unboxing, if the conversion goes the other way.
Example:
// Here following primitive char 'a'
// is boxed into the Character object ch
Character ch = 'a';
Escape Sequences:
A character preceded by a backslash (\) is an escape sequence and has special meaning to the compiler.
The newline character (\n) has been used frequently in this tutorial in System.out.println() statements to advance to
the next line after the string is printed.
When an escape sequence is encountered in a print statement, the compiler interprets it accordingly.
Example:
If you want to put quotes within quotes you must use the escape sequence, \", on the interior quotes:
Character Methods:
Here is the list of the important instance methods that all the subclasses of the Character class implement:
isLetter()
1
Determines whether the specified char value is a letter.
isDigit()
2
Determines whether the specified char value is a digit.
isWhitespace()
3
Determines whether the specified char value is white space.
isUpperCase()
4
Determines whether the specified char value is uppercase.
isLowerCase()
5
Determines whether the specified char value is lowercase.
toUpperCase()
6
Returns the uppercase form of the specified char value.
toLowerCase()
7
Returns the lowercase form of the specified char value.
toString()
8
Returns a String object representing the specified character valuethat is, a one-character string.
For a complete list of methods, please refer to the java.lang.Character API specification.