Help for this page

Select Code to Download


  1. or download this
    $string =~ '0x0102';
    $output = hex($string);
    print($output);  # 258 (0x0102)
    
  2. or download this
    $string =~ '0x0102';
    $output = pack('H*', substr($string, 2));
    print($output);  # "\x01\x02"