in java string characters \ / : * ? " < > | code example
Example: character at index of string java
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G
String str = "Grepper";
char ch = str.charAt(0);
//ch is assigned the value of G