Help for this page

Select Code to Download


  1. or download this
    sub ords{ sprintf "%02x " x length($_[0]), unpack 'C*', $_[0]; }
    
  2. or download this
    {
        my $t = '%02x ' x 1000; 
    ...
            sprintf substr( $t, 0, length $_[0]*5 ), unpack 'C*', $_[0]; 
        }
    }