String a = "A quick bronze fox lept a lazy bovine"; for (int i=0; i < a.length(); i++) System.out.println("Char " + i + " is " + a.charAt(i));