// getting single character from string.. String str="abcd"; char c=str.toChar(0); System.out.println("output is "+c); // output is a