On Tue, 2004-09-21 at 21:09 -0700, Bryan Boot wrote:
Stephen Liu wrote:
Hi Bryan,
Tks for your advice and links.
- snip -
I used the older perl script that is mentioned on that page to convert some Big5 files to UTF-8, which worked well for me. It should also do Big5->GB translations.
I usually use iconv:
Basic usage: iconv -f from_encoding -t to_encoding file
Big5 to UTF-8: iconv -f big5 -t utf8 input.txt > output.txt
Big5 to GB18030: iconv -f big5 -t gb18030 input.txt > output.txt