1 2 3 4 5 6 7 8 9 10 11
while(<>) { for(split('')) { $n = ord($_); if ($n & 0x80) { printf("\\%.3o", $n); } else { print $_; } } }