Problem with Escape Code for HEX characters
843810Mar 11 2004 — edited Mar 11 2004All the tutorials say that the escape code for HEX characters is \x but when I try to compile the following, I get 'illegal escape code' errors.
String mystring2 = "\x02" + mystring + "\x03";
Any other escape codes I try (like \002 for octal or \u2202 for unicode) work fine.
Help please.