Help for this page

Select Code to Download


  1. or download this
    map {printf ("%c", hex $_)} split (',', $text);
    
  2. or download this
    print map { sprintf '%c', hex $_ } split q{,}, $text;
    
  3. or download this
    printf '%c', hex $_ for split q{,}, $text;