I have a dbf file which has MONTRÉAL
as one of the entires. I have to convert this dbf file into a csv file.
For this I am reading this dbf file using Microsoft Visual FoxPro Driver driver, then converting converting each rows to comma separated, and then writing all lines into a file named "ASD.csv".
But in CSV file MONTRÉAL
is displayed as MONTR?AL
i.e in place of É
a ?
character appears. I tried using UTF8 encoding while writing the rows to csv file but even this did not work.
Please help.