This is the code:
#!/usr/bin/perl
use strict;
use warnings;
$char = chr(0x394);
$code = ord($char);
printf "char %s is code %d, %#04x\n", $char, $code, $code;
and the output should be:
char "delta simbol" is code 916, 0x394
But the code has a bug, and I can't fix it; help.
Best Reagrds
Ray