- or download this
$bob=pack("B*",11101100);
print DATAFILE $bob;
- or download this
$bobagain=unpack("B*",$stufffromfile);
$bobunpacked=unpack("B*",$bob);
print $bobagain;
print "\n$bobunpacked";
- or download this
$bob = pack("B*",1110110010010000);
print DATAFILE $bob;
- or download this
$bobagain=unpack("B*",$stufffromfile);
$bobunpacked=unpack("B*",$bob);
print $bobagain;
print "\n$bobunpacked";
- or download this
from file: 111000111000010010000111
from $bobunpacked: 101101100100111110000000