Help for this page

Select Code to Download


  1. or download this
      my $h = unpack( 'H*', $bitstring ) ;
    
  2. or download this
      my $h = unpack( 'H*', scalar reverse $bitstring ) ;
    
  3. or download this
      my $h = unpack( 'H*', pack('b*', unpack('B*', $bitstring)) ) ;
    
  4. or download this
      my $h = unpack( 'H*', pack('b*', unpack('B*', scalar reverse $bitstr
    +ing)) ) ;