Help for this page

Select Code to Download


  1. or download this
    pack('H*', '4142A0B1')
    
  2. or download this
    decode($enc, pack('H*', '4142A0B1'))
    
  3. or download this
    use strict;
    use warnings;
    ...
        my $s = decode($enc, pack('H*', '4142A0B1'), sub { "?" });
        printf("%-11s %s\n", "$enc:", $s);
    }