If you split a string on an empty string, it will split that string on characters:

String sb = "ABCDE";
String[] s = sb.split("");
for (String st : s ){
System.out.println(st);
}