Given this input
FullForm[ToString[TraditionalForm[x]]]
Mathematica outputs
"\!\(TraditionalForm\`x\)"
It seems like \! at the beginning of the string indicates that the following is to be interpreted as an expression. But this can't be quite right, because
"\!\(Minus\`x\)"
displays as simply x, rather than -x.
How should the escape characters \!, \(, \`, \) be understood?
\!on Google and in the documentation brought up nothing relevant.) – Stephen Powell Jan 30 '15 at 12:48