in reply to How do I convert each character in a string to its ASCII value ?
my @ascii = map { ord } split //, $string; [download]