Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use Test::More tests => 1;
    
    is(chr(hex('62')), 'b', 'hex -> char worked');
    
  2. or download this
    1..1
    ok 1 - hex -> char worked