I have an CSV file with city names stored, some of these city name contain special charactors such as "São Paulo".
I use an AJAX call to access the CSV as follows:
$.ajax({
url: 'LIST-char2.csv',
dataType: "html",
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
success: function(data){
alert(data)
}
});
Alerted data returns the "?" symbol for the "ã" charactor.
I've tried saving the CSV as UTF-8 in Excel and setting the page meta tag to charset=UTF-8.
Any help greatly appeciated