csv2json
csv2json copied to clipboard
UTF-8 support
Hello,
I try to use csv2json to convert an UTF-8 csv to JSON. But special characters seems not supported.
An example:
postalcode;city
13220;Châteauneuf-les-Martigues
gives
[
{
"postalcode": "13220",
"city": "Ch\u00e2teauneuf-les-Martigues"
}
]
instead of
[
{
"postalcode": "13220",
"city": "Châteauneuf-les-Martigues"
}
]
@Salokyn have you solved it? Would you consider submitting a pull request?
Well, I used a npm package csvtojson instead. Sorry.