After doing some more research on this subject, I discovered that
Excel on the Mac will not export CSV files with UTF-8 encoding - it
will only save with MacRoman or Latin encoding. So, with a Mac, one
has to either not use Excel, or use iconv to convert the Excel CSV
file. The command I used (if anyone else is looking for a solution to
this problem) was:
iconv -f MacRoman -t UTF-8 oldfile.csv > newfile.csv
Is there any plan to support other encodings so that we don't have to
use such a workaround?
Thanks,
Jason