/** The zero-width space character is encoded in Unicode as U+200B ZERO WIDTH SPACE (HTML ​) */ function insertSpaces(string){ return Array.from(string).join('\u200b'); } // see more at https://en.wikipedia.org/wiki/Zero-width_space