http://qs321.pair.com?node_id=906546


in reply to Re^2: Simplest Possible Way To Disable Unicode
in thread Simplest Possible Way To Disable Unicode

I don't see when use bytes; would possibly be useful to solve this issue.
Agreed. It’s not even clear to me what sort of problem it would solve.

I’ve never been fond of od output myself. And you shouldn’t need it, either. This tells the story clearly enough:

% perl -wle 'print ord do { use bytes; chr(1000) }' 232 % perl -wle 'print ord do { use bytes; chr(232) }' 232 % perl -wle 'print ord do { no bytes; chr(1000) }' 1000