COVERT STRING TO CHAR code example
Example 1: string to char in java
// getting single character from string..
String str="abcd";
char c=str.toChar(0);
System.out.println("output is "+c); // output is a
Example 2: convert char to string
char c = 'a';
String s = Character.toString(c);