I'm parsing a CSV file with spanish accents, I set the encoding to UTF-8 however it's not parsing correctly
Here is what I'm getting back in the results object
name: "GREGORIO BERNABE �LVAREZ"
and I have the following config setup
Papa.parse(evt.target.files[0], {
header: true,
dynamicTyping: true,
encoding: "utf-8",
}
I'm parsing a CSV file with spanish accents, I set the encoding to UTF-8 however it's not parsing correctly
Here is what I'm getting back in the results object
name: "GREGORIO BERNABE �LVAREZ"
and I have the following config setup
Papa.parse(evt.target.files[0], {
header: true,
dynamicTyping: true,
encoding: "utf-8",
}