split string into individual characters code example
Example 1: turn a string into a list of characters python
#Use the function list()
word = list(word)
Example 2: split every character in string into array java
String s="abcd";
char[] a=s.toCharArray();