character at index of string java

Java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
Source

Also in Java: