G.V.S Akhil

Results 2 issues of G.V.S Akhil

## Steps to Reproduce 1. When we print the following words its throwing an error saying - Contains Invalid Characters 2. This is because of following string: Konaseema Paneer Biryani...

My code ``` startMicrophone() { this.service .listen() .pipe(resultList, takeUntil(this.stop)) .subscribe((list: SpeechRecognitionResultList) => { this.voiceMessage = list.item(0).item(0).transcript; console.log('RxComponent:onresult', this.voiceMessage); }); } ``` I want to raise an event here when listening...