You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think I am experiencing some issues with encoding.
I have this data that I pass to JsonCSV:
data = [{
order: 37
lastname: Širůčková
firstname: Tereza
}]
and I expect the downloaded csv to contain:
order,lastname,firstname
37,Širůčková,Tereza
but instead I get this output:
order,lastname,firstname
37,`iro
ková,Tereza
Encoding is set to default (utf8). I tried changing it to utf16 to no avail. Anyway I don't think that's the issue, as I use another tool to generate pdf files with encoding set to utf8 and have no problem. I did not notice similar behaviour with other characters so far. Is it a known issue? Is there a fix for this? If you could point me in the right direction it would be highly appreciated.
Thank you in advance
The text was updated successfully, but these errors were encountered:
Hi,
first of all thanks for the great work!
I think I am experiencing some issues with encoding.
I have this data that I pass to JsonCSV:
and I expect the downloaded csv to contain:
but instead I get this output:
Encoding is set to default (
utf8
). I tried changing it toutf16
to no avail. Anyway I don't think that's the issue, as I use another tool to generate pdf files with encoding set toutf8
and have no problem. I did not notice similar behaviour with other characters so far. Is it a known issue? Is there a fix for this? If you could point me in the right direction it would be highly appreciated.Thank you in advance
The text was updated successfully, but these errors were encountered: