Input
Output
public class Charatmethod{ public static void main(String args[]){ String s1="Welcome to Programtpoint"; char ch=s1.charAt(8);//returns the char value of index number System.out.println(ch); } }