Character(char value) constructor from Character has the following syntax.
public Character(char value)
In the following code shows how to use Character.Character(char value) constructor.
public class Main { /*from ww w . j av a 2s .c o m*/ public static void main(String args[]) { Character c = new Character('c'); System.out.println(c); } }
The code above generates the following result.