"String".charAt [1]
指定位置の1文字をcharで知らせます。指定位置は 0 から数えます。
String s1 = "Java and Python and C++."; System.out.println(s1.charAt(11));