2008年7月5日 星期六

iconv轉碼範例

  1. 把繁體中文 Big5(big5) 轉換成 Unicode(utf8):

    iconv -f big5 -t utf8 big5_file.txt > utf8_file.txt

  2. 把 Unicode(utf8)轉換成繁體中文 Big5(big5) :

    iconv -f utf8 -t big5 utf8_file.txt > big5_file.txt

  3. 把繁體中文 Big5(big5) 轉換成簡體中文 GB-2312(hp15CN):

    iconv -f big5 -t hp15CN big5_file.txt > gb_file.txt

沒有留言: