say.js
say.js copied to clipboard
Change powershell encoding to utf-8
In Japan, the default encoding of Powershell is Shift-JIS, but node passes characters in utf-8, so the correct characters were not read out.
I added chcp 65001;
to change the character encoding of powershell from default to utf-8.
Now it is able to read out the characters correctly.