Help for this page

Select Code to Download


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