in reply to triyng to built a module
#!/usr/bin/perl use strict; use warnings; my $char = chr(0x394); my $code = ord($char); printf "char %s is code %d, %#04x\n", $char, $code, $code;
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|