How can I split foreign characters, such as Chinese, into separate array values using JavaScript?
split() seems to work well with English, but not so m
split()
Instead of splitting on a space char (which there aren't any in the chinese string), try splitting on an empty string "", which should split each char into its own element.