If I have a letter/character, I can output its ASCII value using \number and backtick command:
*\typeout{\number`a}
97
What do I do if I have "97", and I want to show "a" in terminal? I have thought of \char - but note that \char typesets, it doesn't output to terminal (removed \char"97 hex usage as per comment):
*\typeout{\char97}
\char 97
What is the right command to use here?
\char"97doesn't give anaeven in a document."91is a hex-value, you would need either\char"61or\char91. – Ulrike Fischer Jun 23 '12 at 14:21