Help for this page

Select Code to Download


  1. or download this
    perl -e'
       binmode(STDOUT, ":encoding(UTF-8)";
    ...
       say length($text);
       say $text;
    '
    
  2. or download this
    perl -MEncode -e'
       $text="\x{00fc}";
    ...
       say encode("UTF-8", length($bytes));
       say $bytes;
    '