[]

Allows you access to the individual characters of a String. char thisChar = myString1[n]
thisChar: Allowed data types: char. myString1: Allowed data types: String. n: a numeric variable. The nth char of the String. Same as charAt().