How do you split a text string into individual alphabets or characters?

Hi, is there a way to dplit a text string into individual alphabets? For example, to split text string "wisdom" into a list of " w i, s, d, o, m" ?

Splitting by an empty character ("") will return a list with each character as a separate element.