in reply to How to convert a binary character to readable ASCII Integers

78 hex is lower-case 'X'. When you write out "\x" you're asking to explicitly have lower-case 'X' written.
  • Comment on Re: How to convert a binary character to readable ASCII Integers

Replies are listed 'Best First'.
Re^2: How to convert a binary character to readable ASCII Integers
by Fletch (Bishop) on Feb 12, 2008 at 22:34 UTC

    ORLY?

    $ perl -MO=Deparse -e 'print "\x"' print "\000";

    The cake is a lie.
    The cake is a lie.
    The cake is a lie.

      I followed the link, and I thank you for it. Nonetheless, 78 hex is lower-case 'X'. They got into the file somehow. (I'd like to see a little more of the code, myself.)