Help for this page

Select Code to Download


  1. or download this
    my $x = "abcd";                 # String? yes. Text?
    my $host = inet_ntoa($x);       # No, "packed" IP address
    
  2. or download this
    my $x = "abcd";                 # String? yes. Text?
    print("The password is $x\n");  # Yes.
    
  3. or download this
    chr(0x65).chr(0x301)
    
  4. or download this
    chr(0x65).chr(0x301)