in reply to Regex question: How do I remove an escape code from text?

I have both of the following work.

tr/\005//d; tr/\x05//d;

This will remove control-E from the variable ($_ in this case) but not the 2 character sequence '^' . 'e'