HEX to ASCII in PERL Posted on 2012-08-07 by Spider Reply Continue reading → Share it with your friends:PrintEmailTweetMoreShare on TumblrPocketReddit
Encrypt – decrypt data in PERL Posted on 2012-08-07 by Spider Reply Continue reading → Share it with your friends:PrintEmailTweetMoreShare on TumblrPocketReddit
Print ASCII table in Perl Posted on 2012-08-07 by Spider Reply 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