in reply to Reading Binary
use strict; use warnings; my $byte = 'X'; my $binary = unpack('b*', $byte); print $binary; # prints 00011010 [download]