Help for this page

Select Code to Download


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