I have this JavaScript for performing SpeechSynthesis
let utterance = new SpeechSynthesisUtterance("Hello world! ๐");
speechSynthesis.speak(utterance);
which works!
However, I have this slight problem that the string "Hello World! ๐" contains an emoji ๐ and when the SpeechSynthesis happens it actually speaks out the emoji, i.e. it would say "Hello world waving hand".
Is there any way for it to filter out that ๐ waving hand from its speech?
Do note that the provided string contains ๐ and I have to try my best not to filter it out of the string itself but only from the speech.