Help for this page

Select Code to Download


  1. or download this
    $g = "0110110001101101";
    $bob = pack("B*", $g);
    print $g . "\n";
    print unpack("B*", $bob);
    
  2. or download this
    open(FH, ">fh");
    $g = "0110110001101101";
    ...
    
    print $g . "\n";
    print unpack("B*", $from_file), "\n";