When I try to use one of the more "hacky" methods of getting a literal "special character" (such as backslash or a brace) then I get a different character: backslash seems to be an open quote, left brace a dash, and right brace a close quote. What happened to my special characters?
\documentclass{minimal}
\begin{document}
\char`\\
\char`\{
\char`\}
\end{document}
produces: "-" (only the two "s are different).