Wednesday, October 7, 2015

How to convert Japanese character set to UTF-8

Using iconv, try one of these below:

iconv -f SHIFT-JIS -t UTF-8 input_file.txt > output_file.txt

or

iconv -f ISO-2022-JP -t UTF-8 input_file.txt > output_file.txt


No comments:

Post a Comment