Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print(Dumper(pack('V/a*', $s)), "\n");
    
    print(Dumper(pack('V/a*', "\x{C9}\x{2660}")), "\n");
    
  2. or download this
    "\1\0\0\0\311"             # Ok
    "\1\0\0\0\x{c9}"           # Ok
    "\2\0\0\0\x{c9}\x{2660}"   # Does this make sense???
    
  3. or download this
    "\1\0\0\0\311"             # Ok
    "\1\0\0\0\303"             # XXX
    "\2\0\0\0\303\242"         # XXX