2011/12/11

utf8 big5

big5 >> utf-8
//PHP
$str=iconv("big5","UTF-8",$str);

utf-8 >> big5
//PHP
$str=iconv("UTF-8","big5",$str);