Java Data Type Tutorial - 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.


public class Main{
  public static void main(String[] argv){
    System.out.println(Character.toTitleCase('t'));    

  }
}

The code above generates the following result.