I am parsing a csv that i downloaded from Google (i tried from gmail and from Drive), and i have encoding issues. I have done as @samliew mentioned and use the encoding text module, but i still have problems with special characters.
For now I am using after the encoding module a csv parser, which then does the job for whatever I have to do. My problem is in the encoding of data (I want it in UTF 8 so that my special characters are correctly encoded - as you can see from the ? on the screenshot)
That would not work as those special characters are actually letters but in German (ü ä or ö) for example
From what I understand from the „convert“ module that should exactly do that but for some reason it is failing to convert correctly…
I first had to verify the original encoding of the file :
i downloaded it on my MAC and check with terminal command the encoding of the file : file -I (thats an upper case i ) nameofthefile.csv
and i modified in my encoding module the input data codepage (in my case ISO -8859-1)