reads a single unicode character from the specified handle
$handle - the handle to read from (defaults to stdin/stdout)
a scalar string with the character read. If no character is read then $null is returned instead.
$handle = openf("data.cp437.txt"); setEncoding($handle, "cp437"); println("Read: " . readc($handle));
Read: a