- or download this
$r->print($strA); # XXX
$r->print($strB); # XXX
- or download this
$r->print(Encode::encode_utf8($strA));
$r->print(Encode::encode_utf8($strB));
- or download this
utf8::encode my $strA_utf8 = $strA;
utf8::encode my $strB_utf8 = $strB;
$r->print($strA);
$r->print($strB);