• To replace ‘ and ’ with the more computer-like (and more visibly distinct) ` and ' within a verbatim environment, use the upquote package. Outside of verbatim, you can use \char18 and \char13 to get the modified quote characters. (The former is actually a grave accent.)
( http://mirror.ox.ac.uk/sites/ctan.org/info/symbols/comprehensive/symbols-a4.pdf )
However, pdflatex/xelatex on
\documentclass{article}
\begin{document}
\Huge \char13
\end{document}
produces

What's happening?
\texttt{\char13}, which works. But e.g.\textbf{\texttt{\char13}}produces nothing. – Mohan Nov 20 '12 at 11:29