UTF-16 to UTF-8 conversion
Tuesday, April 20th, 2010I have a windows application that creates text file output in UTF16. I’m needing to import this into my database that expects UTF-8. Here’s how to convert in Linux using iconv.
iconv –from-code UTF-16 –to-code UTF-8 someutf16file.csv > prettynewutf8file.csv