http://www.perlmonks.org?node_id=1047374


in reply to Re: printing Chinese, Japanese, french Text in excel using perl
in thread printing Chinese, Japanese, french Text in excel using perl

@All : Thank you! I just did it by using the decode function in Encode module.
use Encode qw(decode encode); $str = decode("utf8",$str);
This did it all! Thanks again!