(You\'ll need Firefox or Safari to see the emoji in the code.)
I want to take a string of emoji and do something with the individual characters.
In JavaScript
The modern / proper way to split a UTF8 string is using Array.from(str) instead of str.split('')
Array.from(str)
str.split('')