Help for this page

Select Code to Download


  1. or download this
    s/(\d\d)/chr(0x80+$1)/ge;
    
  2. or download this
    $_="00 01 98 99";
    s/(\d\d)/chr(0x80 + $1)/ge;
    @f= map {sprintf "%x", $_} unpack("C*", $_);
    print "@f\n";
    
  3. or download this
    80 20 81 20 e2 20 e3