Java Character.toTitleCase(char ch)
Syntax
Character.toTitleCase(char ch) has the following syntax.
public static char toTitleCase(char ch)
Example
In the following code shows how to use Character.toTitleCase(char ch) method.
//from w ww . jav a2s . co m
public class Main{
public static void main(String[] argv){
System.out.println(Character.toTitleCase('t'));
}
}
The code above generates the following result.