use strict; #Experiment with commenting out the next line! binmode STDIN, ":raw"; print "Just hit the enter key!\n"; my $char = ; my $bits = unpack "B*", $char; print "[Enter]'ed bits: $bits \n"; my $bits = unpack "B*", '\n'; print "The literal bits: $bits \n";