my %int_to_char; @int_to_char{ 1 .. 26} = (a..z); # get @array my @chars = map { $int_to_char{$_} } @array;