in reply to Re: Tk hidden binding
in thread Tk hidden binding

It's amazing how things can get complicated quickly. I get \x{1b} and \x{1d}. Thank you for the various informations in your answer.

Replies are listed 'Best First'.
Re^3: Tk hidden binding
by Anonymous Monk on Jul 24, 2011 at 13:06 UTC
    Hey, thats almost the same thing ;)
    $ perl -le " print qq[\033\035] " |od -tacx1 0000000 esc gs cr nl 033 035 \r \n 1b 1d 0d 0a 0000004

      huh? far beyond my skills!

      Ah ok, yes almost the same, just an openness detail:
      perl -le " print qq[\033\035] " |od -tacx1 0000000 esc gs nl 033 035 \n 1b 1d 0a 0000003