I'm having hard time saving some polish characters like 'Ł' to a ascii file.
const fs = require('fs');
fs.writeFileSync('ascii.txt','Ł','ascii');
I would like the output file to show 'Ł' character. I tried buffers etc no luck. Can't figure out how to do this.