Print ASCII table in Perl Posted on 2012-08-07 by Spider Simple code snippet for printing out ASCII table: for $chr (0..255) { print "$chr\t".chr($chr)."\n"; } Share it with your friends:PrintEmailTweetMoreShare on TumblrPocketReddit Related