Help for this page

Select Code to Download


  1. or download this
    perl -e 'print map chr,0..255' > chars.all
    
  2. or download this
    od -t x1 chars.all
    
  3. or download this
    sub hex_it {
      return join ' ', map {sprintf '%2.2x', $_} unpack('C*', $_[0]);
    }
    
  4. or download this
    use Data::Dumper;
    $Data::Dumper::Useqq = 1;
    print Dumper $wierd;
    
  5. or download this
    tr{\x93\x94}{""}; # Translate MS Word SmartQuotes into regular quotes.