Help for this page

Select Code to Download


  1. or download this
    use utf8;
    $x="\x{0103}";
    use bytes;
    print length($x);
    
  2. or download this
    use utf8;
    binmode(STDIN,":utf8");
    ...
    chomp $x;
    use bytes;
    print length($x);