10 print ord($a) == 0x100 ? "ok 1\n" : "not ok 1\n";
11 print length($a) == 1 ? "ok 2\n" : "not ok 2\n";
16 print ord($b) == 0 ? "ok 3\n" : "not ok 3\n";
21 print ord($c) == 0x100 ? "ok 4\n" : "not ok 4\n";
25 print ord($c) == 0xc4 ? "ok 5\n" : "not ok 5\n";
26 print length($c) == 2 ? "ok 6\n" : "not ok 6\n";