Help for this page

Select Code to Download


  1. or download this
    $s=chr(192);
    printf "%vd\n", $s;
    utf8::upgrade($s);
    printf "%vd\n", $s;
    
  2. or download this
    use bytes;
    
    ...
    printf "%vd\n", $s;
    utf8::upgrade($s);
    printf "%vd\n", $s;