Help for this page

Select Code to Download


  1. or download this
    @a2 = map chr hex, @a1;
    
  2. or download this
    @a2 = map chr(hex()), @a1;
    # or
    @a2 = map chr(hex($_)), @a1;
    
  3. or download this
    $x = char hex 41; # which means $x = 'A';