I'm trying to read a file CSV with £1,000,000 in the content, however it is parsing out as �1,000,000 I believe this is due to a default behaviour and the lack of option to read as e.g. latin1 which would resolve the issue.
If there is a recommend approach for this such as reading as a Buffer then parsing, please recommend it here as a good reference for others.
I'm trying to read a file CSV with
£1,000,000in the content, however it is parsing out as�1,000,000I believe this is due to a default behaviour and the lack of option to read as e.g.latin1which would resolve the issue.If there is a recommend approach for this such as reading as a Buffer then parsing, please recommend it here as a good reference for others.