Help for this page

Select Code to Download


  1. or download this
    $ perl -e 'printf "$_ => %b\n", ord($_) for qw( A B C @ )'
    A => 1000001
    B => 1000010
    C => 1000011
    @ => 1000000
    
  2. or download this
    "ABC" & "ABA" => "ABA"
    "ABB" & "ABA" => "AB@"
    ...
    # were truncated to the length of the shorter"
    # so the strings don't have to be equal length
    # for that to work