Help for this page

Select Code to Download


  1. or download this
    perl -pe"s/0x((?:[0-9a-fA-F]{2})+)/pack 'H*', $1/ge" file
    
  2. or download this
    while (<>) {
       s/0x((?:[0-9a-fA-F]{2})+)/pack 'H*', $1/ge;
       print;
    }