I'm writing data into a csv that somtimes contains umlauts (äöü). I used:
header('Content-Type: text/csv;charset=UTF-8');
and added on the first line of data
chr(239).chr(187).chr(191)."SEP=\t";
and then filled in the data. However, even so the umlauts get displayed as e.g. Ü
for Ü
in excel on windows and something similar on mac.
Is there anything I need to do to get this right?