Sideway
output.to from Sideway
Draft for Information Only

Content

LaTeX Font Typesetting
LaTeX Font Typesetting Example
LaTeX Code Input
  ASCII Characters
   ASCII Codes
  LaTeX Special and Reserved Characters Typesetting
   Special and Reserved Characters Typesetting
    LaTeX Special and Reserved Characters Typesetting Example
  LaTeX Command \char Typesetting
   Command \char
    LaTeX Characters Typesetting Example
  LaTeX Escape Sequence Typesetting
   LaTeX Escape Sequence Typesetting Example
  LaTeX Alt Code Characters (Code page 437) Typesetting
   Alt Code Characters (Code page 437)
   Alt Code Characters (Code page 437) Typesetting
    Alt Code Characters (Code page 437) Typesetting Example
   Package ascii Alt Code Characters (Code page 437) Typesetting
    Package ascii Alt Code Characters (Code page 437) Typesetting Example
  LaTeX Alt 0 Code Characters (Code page 1252) Typesetting
   Alt 0 Code Characters (Code page 1252)
   Alt 0 Code Characters (Code page 1252) Typesetting
    Alt 0 Code Characters (Code page 1252) Typesetting Example
LaTex Font Output
  LaTeX Font Table Attributes
Source and Reference

LaTeX Font Typesetting

The basic $\(\LaTeX\)$ font typesetting processes are to denote code input and to specify font output. In general, input to $\(\LaTeX\)$ typesetting document by keyboard is ASCII characters. Both the document text and the typesetting command of the $\(\LaTeX\)$ typesetting document are therefore ASCII characters. While font outputs by $\(\LaTeX\)$ typesetting document are specified by font tables or predefind characters accordingly.

LaTeX Font Typesetting Example

Code
\documentclass[border=1pt, varwidth=50cm]{standalone}
\begin{document}
ABCD1234\char49\char50\\
{\fontencoding{OT1}\fontfamily{cmr}\selectfont ABCD1234\char49\char50}\\
{\fontencoding{OT1}\fontfamily{cmtt}\selectfont ABCD1234\char49\char50}\\
{\fontencoding{OMS}\selectfont ABCD1234\char49\char50}\\
{\fontencoding{OMS}\fontfamily{cmsy}\selectfont ABCD1234\char49\char50}\\
$\mathcal{ABCD1234\char49\char50}$\\
{\fontencoding{OMX}\fontfamily{cmex}\selectfont ABCD1234\char49\char50}
\end{document}
Output
image

LaTeX Code Input

ASCII Characters

ASCII, abbreviated from American Standard Code for Information Interchange, is a 7-bit character encoding standard for electronic communication. ASCII characters can be divided into unprintable control characters and printable characters.

ASCII Codes

ASCII (1977/1986)
 0123456789ABCDEF
0x NUL* SOH* STX* ETX* EOT* ENQ* ACK* BEL* BS* HT* LF* VT* FF* CR* SO* SI*
1x DLE* DC1* DC2* DC3* DC4* NAK* SYN* ETB* CAN* EM* SUB* ESC* FS* GS* RS* US*
2x SP* ! " # $ % & ' ( ) * + , - . /
3x 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
4x @ A B C D E F G H I J K L M N O
5x P Q R S T U V W X Y Z [ \ ] ^ _
6x ` a b c d e f g h i j k l m n o
7x p q r s t u v w x y z { | } ~ DEL*
In $\(\LaTeX\)$, the following visible ASCII character codes have special meanings & % $ # _ { } ~ ^ \ and the following invisible ASCII codes also have special purposes.   tab enter In other words, the above ASCII codes cannot be typesetted directly in the document text. The only visible ASCII character code that can be typesetted directly in the document text are as following
@ | * + - = / ( ) [ ] < > ! ? : " ; ' , . 
0 1 2 3 4 5 6 7 8 9 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
a b c d e f g h i j k l m n o p q r s t u v w x y z 
Since some of ASCII characters have special meaning in $\(\LaTeX\)$ text typesetting and some of the ASCII unprintable control characters are reserved as control characters, these special and reserved characters cannot be used to typeset $\(\LaTeX\)$ font code.

LaTeX Special and Reserved Characters Typesetting

In order to typeset the special and reserved characters in $\(\LaTeX\)$ document, these special and reserved characters are represented by escape sequence in $\(\LaTeX\)$ text typesetting.

Special and Reserved Characters Typesetting

The $\(\LaTeX\)$ text typesetting for those printable special and reserved ASCII characters are
ASCII Character$\(\LaTeX\)$ commandRemarks SPACEspace; ASCII #x20 #\#number sign, pound; ASCII #x23 $\\$dollar sign; ASCII #x24 %\%percent sign; ASCII #x25 &\&ampersand; ASCII #x26 <\textlessless-than sign; ASCII #x3C >\textgreatergreater-than sign; ASCII #x3E \\textbackslash,$\backslash$backslash, reverse solidus; ASCII #x5C ^\textasciicircum,
\^{},
$\hat{\ }$
spacing circumflex accent; ASCII #x5E
_\_spacing underscore, low line, horizontal bar ; ASCII #x5F `\textasciigrave,
\`{},
$\grave{\ }$
spacing grave accent, back apostrophe; ASCII #x60
{\{left brace, left curly bracket; ASCII #x7B |\textbar,
$\vert$,
$\mid$
vertical bar; ASCII #x7C
}\}right brace, right curly bracket; ASCII #x7D ~\textasciitilde, \texttildelow,
\~{},
$\tilde{\ }$,
$\sim$,
$_\textrm{\symbol{126}}$
tilde accent; ASCII #x7E
LaTeX Special and Reserved Characters Typesetting Example
Code
\documentclass{standalone}
\usepackage{multirow}
\usepackage{makecell}
\def\arraystretch{1.3}
\begin{document}
\begin{tabular}{c|c|c|>{\centering\arraybackslash}p{12mm}|>{\centering\arraybackslash}p{12mm}|l}
Hex&Character&\thead{Escape\\Sequence}&\thead{text\\mode} &\thead{math\\ mode}&Remarks\\
\hline
20 & \  & ``\textbackslash\ " & ``\ " & $``\ "$\\
\hline
23 & \# & ``\textbackslash\#" & ``\#" & $``\#"$\\
\hline
24 & \$ & ``\textbackslash\$" & ``\$" & $``\$$"\\
\hline
25 & \% & ``\textbackslash\%" & ``\%" & $``\%$"\\
\hline
26 & \& & ``\textbackslash\&" & ``\&" & $``\&"$\\
\hline
3C & \textless & ``\textbackslash textless" & ``\textless" & $``\textless"$ \\
\hline
3E & \textgreater & ``\textbackslash textgreater" & ``\textgreater" & $``\textgreater"$ \\
\hline
\multirow{2}{*}{5C} & \multirow{2}{*}{\textbackslash} & ``\textbackslash textbackslash" & ``\textbackslash" & & text mode \\
 & & ``\textbackslash backslash" &  & ``$\backslash$" & math mode \\
\hline
\multirow{3}{*}{5E} & \multirow{3}{*}{\textasciicircum} & ``\textbackslash textasciicircum" & ``\textasciicircum" & & text mode\\
 &  & ``\textbackslash\^{}\{\}" & ``\^{}" & & text mode\\
 &  & ``\textbackslash hat\{\textbackslash\ \}" &  & $``\hat{\ }"$ & math mode\\
\hline
5F & \_ & ``\textbackslash\_" & ``\_"  & ``$\_$" & \\
\hline
\multirow{3}{*}{60} & \multirow{3}{*}{\`{}} & ``\textbackslash textasciigrave" & ``\textasciigrave" & & text mode\\
 &  & ``\textbackslash\`" & ``\`{}" & & text mode\\
 &  & ``\textbackslash grave\{\textbackslash\ \}" &  & $``\grave{\ }"$ & math mode \\
\hline
7B & \{ & ``\textbackslash\{" & ``\{" & $``\{"$ \\
\hline
\multirow{3}{*}{7C} & \multirow{3}{*}{\textbar} & ``\textbackslash textbar" & ``\textbar" & & text mode \\
&  & ``\textbackslash vert" &  & $``\vert"$ & math mode \\
&  & ``\textbackslash mid" &  & $``\mid"$ & math mode \\
\hline
7D & \} & ``\textbackslash\}" & ``\}" & $``\}"$ \\
\hline
\multirow{6}{*}{7E} & \multirow{3}{*}{\textasciitilde} & ``\textbackslash textasciitilde" & ``\textasciitilde" & & text mode\\
 &  & ``\textbackslash texttildelow" & ``\texttildelow" & & text mode\\
 &  & ``\textbackslash\~{}\{\}" & ``\~{}" & & text mode\\
 &  & ``\textbackslash tilde\{\textbackslash\ \}" &  & $``\tilde{\ }"$ & math mode\\
 &  & ``\textbackslash sim" &  & $``\sim"$ & math mode\\
 &  & ``\_\textbackslash textrm\{\textbackslash symbol\{126\}\}" &  & $``_\textrm{\symbol{126}}"$ & math mode\\
\end{tabular}
\end{document}
Output
image

LaTeX Command \char Typesetting

Because some of the ASCII codes are reserved as control and reserved characters, not all characters in the characters in the output typesetting font table can be typesetted by ASCII characters. The $\(\LaTeX\)$ command \char can be used to specify these unreachable characters in the output typesetting font table explicitly .

Command \char

Command \char is used to specify a character to be typeset through decimal, octal, or hexadecimal notation.
\char<decimal>
\char'<octal>
\char"<hexadecimal>
LaTeX Characters Typesetting Example
Code
\documentclass[border=1pt, varwidth=50cm]{standalone}
\usepackage{forloop}
\usepackage{calc}
\begin{document}

\begin{tabular}{
||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
|||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}||}
\hline
\rule{0pt}{3ex}&&  \multicolumn{3}{c}{Encoding}&&&  \multicolumn{3}{c}{Encoding}&&&  &  \multicolumn{3}{c}{Encoding}&&&  \multicolumn{3}{c}{Encoding}&\\
&DEC & cmr & cmss & cmtt &&DEC & cmr & cmss & cmtt &&&DEC &  cmr & cmss & cmtt &&DEC &  cmr & cmss & cmtt &\\
\hline
\newcounter{no}
\newcounter{i}
\newcounter{j}
\newcounter{k}
\newcounter{classnumber}
\newcounter{imagenumber}
\forloop{no}{0}{\value{no} < 31}{
\setcounter{i}{\value{no}+32}
\setcounter{j}{\value{no}+64}
\setcounter{k}{\value{no}+96}
&\arabic{no}  & \char\value{no} & {\fontfamily{cmss}\selectfont \char\value{no}} & {\fontfamily{cmtt}\selectfont \char\value{no}}& 
&\arabic{i} & \char\value{i} & {\fontfamily{cmss}\selectfont \char\value{i}} & {\fontfamily{cmtt}\selectfont \char\value{i}}& 
&&\arabic{j} & \char\value{j} & {\fontfamily{cmss}\selectfont \char\value{j}} & {\fontfamily{cmtt}\selectfont \char\value{j}}& 
&\arabic{k} & \char\value{k} & {\fontfamily{cmss}\selectfont \char\value{k}} & {\fontfamily{cmtt}\selectfont \char\value{k}}& \\}
&31  & \char31 & {\fontfamily{cmss}\selectfont \char'37} & {\fontfamily{cmtt}\selectfont \char"1F}& 
&63 & \char63 & {\fontfamily{cmss}\selectfont \char'77} & {\fontfamily{cmtt}\selectfont \char"3F}&
&&95 & \char95 & {\fontfamily{cmss}\selectfont \char'137} & {\fontfamily{cmtt}\selectfont \char"5F}&
&127 & \char127 & {\fontfamily{cmss}\selectfont \char'177} & {\fontfamily{cmtt}\selectfont \char"7F}&\\
\hline
\end{tabular}
\end{document}
Output
image

LaTeX Escape Sequence Typesetting

Besides using escape sequences to represent $\(\LaTeX\)$ special and reserved characters, $\(\LaTeX\)$ also provides some predefined symbols.

LaTeX Escape Sequence Typesetting Example

Code
\documentclass[border=1pt, varwidth=50cm]{standalone}
\usepackage[T1]{fontenc}
\begin{document}
\begin{tabular}{
||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
|||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}||}
\hline
\rule{0pt}{3ex}&Escape Sequence & Sym & Remarks &&DEC & alt\# & Remarks &&&DEC &  alt\# & Remarks &&DEC &  alt\# & Remarks &\\
\hline\rule{0pt}{3ex}
& \verb|\textasciicircum| & \textasciicircum & U+ &
& \verb|\textperiodcentered| & \textperiodcentered & U+ &
&& \verb|\{| & \{ & U+ &
& \verb|\DH| & \DH & U+* &\\
& \verb|\textasciitilde| & \textasciitilde & U+ &
& \verb|\textquestiondown| & \textquestiondown & U+ &
&& \verb|\}| & \} & U+ &
& \verb|\dh| & \dh & U+* &\\
& \verb|\textasteriskcentered| & \textasteriskcentered & U+ &
& \verb|\textquotedblleft| & \textquotedblleft & U+ &
&& \verb|\aa| & \aa & U+ &
& \verb|\DJ| & \DJ & U+* &\\
& \verb|\textbackslash| & \textbackslash & U+ &
& \verb|\textquotedblright| & \textquotedblright & U+ &
&& \verb|\AA| & \AA & U+ &
& \verb|\dj| & \dj & U+* &\\
& \verb|\textbar| & \textbar & U+ &
& \verb|\textquoteleft| & \textquoteleft & U+ &
&& \verb|\AE| & \AE & U+ &
& \verb|\NG| & \NG & U+* &\\
& \verb|\textbraceleft| & \textbraceleft & U+ &
& \verb|\textquoteright| & \textquoteright & U+ &
&& \verb|\ae| & \ae & U+ &
& \verb|\ng| & \ng & U+* &\\
& \verb|\textbraceright| & \textbraceright & U+ &
& \verb|\textregistered| & \textregistered & U+ &
&& \verb|\L| & \L & U+ &
& \verb|\TH| & \TH & U+* &\\
& \verb|\textbullet| & \textbullet & U+ &
& \verb|\textsection| & \textsection & U+ &
&& \verb|\l| & \l & U+ &
& \verb|\th| & \th & U+* &\\
& \verb|\textcopyright| & \textcopyright & U+ &
& \verb|\textsterling| & \textsterling & U+ &
&& \verb|\o| & \o & U+ &
& \verb|\guillemotleft| & \guillemotleft & U+* &\\
& \verb|\textdagger| & \textdagger & U+ &
& \verb|\texttrademark| & \texttrademark & U+ &
&& \verb|\O| & \O & U+ &
& \verb|\guillemotright| & \guillemotright & U+* &\\
& \verb|\textdaggerdbl| & \textdaggerdbl & U+ &
& \verb|\textunderscore| & \textunderscore & U+ &
&& \verb|\OE| & \OE & U+ &
& \verb|\guilsinglleft| & \guilsinglleft & U+* &\\
& \verb|\textdollar| & \textdollar & U+ &
& \verb|\textvisiblespace| & \textvisiblespace & U+ &
&& \verb|\oe| & \oe & U+ &
& \verb|\guilsinglright| & \guilsinglright & U+* &\\
& \verb|\textellipsis| & \textellipsis & U+ &
& \verb|\$| & \$ & U+ &
&& \verb|\ss| & \ss & U+ &
& \verb|\quotedblbase| & \quotedblbase & U+* &\\
& \verb|\textemdash| & \textemdash & U+ &
& \verb|\P| & \P & U+ &
&& \verb|\SS| & \SS & U+ &
& \verb|\quotesinglbase| & \quotesinglbase & U+* &\\
& \verb|\textendash| & \textendash & U+ &
& \verb|\S| & \S & U+ &
&& \verb|$\Downarrow$| & $\Downarrow$ & U+ &
& \verb|\textquotedbl| & \textquotedbl & U+* &\\
& \verb|\textexclamdown| & \textexclamdown & U+ &
& \verb|\_| & \_ & U+ &
&& \verb|$\downarrow$| & $\downarrow$ & U+ &
& \verb|$\sqsubseteq$| & $\sqsubseteq$ & U+ &\\
& \verb|\textgreater| & \textgreater & U+ &
& \verb|\copyright| & \copyright & U+ &
&& \verb|$\hookleftarrow$| & $\hookleftarrow$ & U+ &
& \verb|$\sqsupseteq$| & $\sqsupseteq$ & U+ &\\
& \verb|\textless| & \textless & U+ &
& \verb|\dag| & \dag & U+ &
&& \verb|$\hookrightarrow$| & $\hookrightarrow$ & U+ &
& \verb|$\subset$| & $\subset$ & U+ &\\
& \verb|\textordfeminine| & \textordfeminine & U+ &
& \verb|\ddag| & \ddag & U+ &
&& \verb|$\leftarrow$| & $\leftarrow$ & U+ &
& \verb|$\subseteq$| & $\subseteq$ & U+ &\\
& \verb|\textordmasculine| & \textordmasculine & U+ &
& \verb|\dots| & \dots & U+ &
&& \verb|$\Leftarrow$| & $\Leftarrow$ & U+ &
& \verb|$\supset$| & $\supset$ & U+ &\\
& \verb|\textparagraph| & \textparagraph & U+ &
& \verb|\pounds| & \pounds & U+ &
&& \verb|$\Leftrightarrow$| & $\Leftrightarrow$ & U+ &
& \verb|$\supseteq$| & $\supseteq$ & U+ &\\
& \verb|$\leftharpoondown$| & $\leftharpoondown$ & U+ &
& \verb|$\exp$| & $\exp$ & U+ &
&& \verb|$\leftrightarrow$| & $\leftrightarrow$ & U+ &
& \verb|$\tanh$| & $\tanh$ & U+ &\\
& \verb|$\leftharpoonup$| & $\leftharpoonup$ & U+ &
& \verb|$\gcd$| & $\gcd$ & U+ &
&& \verb|$\longleftarrow$| & $\longleftarrow$ & U+ &
& \verb|$\bot$| & $\bot$ & U+ &\\
& \verb|$\rightharpoondown$| & $\rightharpoondown$ & U+ &
& \verb|$\hom$| & $\hom$ & U+ &
&& \verb|$\Longleftarrow$| & $\Longleftarrow$ & U+ &
& \verb|$\ell$| & $\ell$ & U+ &\\
& \verb|$\rightharpoonup$| & $\rightharpoonup$ & U+ &
& \verb|$\inf$| & $\inf$ & U+ &
&& \verb|$\longleftrightarrow$| & $\longleftrightarrow$ & U+ &
& \verb|$\exists$| & $\exists$ & U+ &\\
& \verb|$\rightleftharpoons$| & $\rightleftharpoons$ & U+ &
& \verb|$\ker$| & $\ker$ & U+ &
&& \verb|$\Longleftrightarrow$| & $\Longleftrightarrow$ & U+ &
& \verb|$\forall$| & $\forall$ & U+ &\\
& \verb|$\relbar$| & $\relbar$ & U+ &
& \verb|$\lg$| & $\lg$ & U+ &
&& \verb|$\longmapsto$| & $\longmapsto$ & U+ &
& \verb|$\hbar$| & $\hbar$ & U+ &\\
& \verb|$\Relbar$| & $\Relbar$ & U+ &
& \verb|$\lim$| & $\lim$ & U+ &
&& \verb|$\Longrightarrow$| & $\Longrightarrow$ & U+ &
& \verb|$\Im$| & $\Im$ & U+ &\\
& \verb|$\arccos$| & $\arccos$ & U+ &
& \verb|$\liminf$| & $\liminf$ & U+ &
&& \verb|$\longrightarrow$| & $\longrightarrow$ & U+ &
& \verb|$\imath$| & $\imath$ & U+ &\\
& \verb|$\arcsin$| & $\arcsin$ & U+ &
& \verb|$\limsup$| & $\limsup$ & U+ &
&& \verb|$\mapsto$| & $\mapsto$ & U+ &
& \verb|$\in$| & $\in$ & U+ &\\
& \verb|$\arctan$| & $\arctan$ & U+ &
& \verb|$\ln$| & $\ln$ & U+ &
&& \verb|$\nearrow$| & $\nearrow$ & U+ &
& \verb|$\jmath$| & $\jmath$ & U+ &\\
& \verb|$\arg$| & $\arg$ & U+ &
& \verb|$\log$| & $\log$ & U+ &
&& \verb|$\nwarrow$| & $\nwarrow$ & U+ &
& \verb|$\ni$| & $\ni$ & U+ &\\
& \verb|$\cos$| & $\cos$ & U+ &
& \verb|$\max$| & $\max$ & U+ &
&& \verb|$\Rightarrow$| & $\Rightarrow$ & U+ &
& \verb|$\partial$| & $\partial$ & U+ &\\
& \verb|$\cosh$| & $\cosh$ & U+ &
& \verb|$\min$| & $\min$ & U+ &
&& \verb|$\rightarrow$| & $\rightarrow$ & U+ &
& \verb|$\Re$| & $\Re$ & U+ &\\
& \verb|$\cot$| & $\cot$ & U+ &
& \verb|$\Pr$| & $\Pr$ & U+ &
&& \verb|$\searrow$| & $\searrow$ & U+ &
& \verb|$\top$| & $\top$ & U+ &\\
& \verb|$\coth$| & $\coth$ & U+ &
& \verb|$\sec$| & $\sec$ & U+ &
&& \verb|$\swarrow$| & $\swarrow$ & U+ &
& \verb|$\wp$| & $\wp$ & U+ &\\
& \verb|$\csc$| & $\csc$ & U+ &
& \verb|$\sin$| & $\sin$ & U+ &
&& \verb|$\uparrow$| & $\uparrow$ & U+ &
& \verb|$\lgroup$| & $\lgroup$ & U+\# &\\
& \verb|$\deg$| & $\deg$ & U+ &
& \verb|$\sinh$| & $\sinh$ & U+ &
&& \verb|$\Uparrow$| & $\Uparrow$ & U+ &
& \verb|$\rgroup$| & $\rgroup$ & U+\# &\\
& \verb|$\det$| & $\det$ & U+ &
& \verb|$\sup$| & $\sup$ & U+ &
&& \verb|$\updownarrow$| & $\updownarrow$ & U+ &
& \verb|$\bracevert$| & $\bracevert$ & U+\# &\\
& \verb|$\dim$| & $\dim$ & U+ &
& \verb|$\tan$| & $\tan$ & U+ &
&& \verb|$\Updownarrow$| & $\Updownarrow$ & U+ &
& \verb|$\widetilde{abc}$| & $\widetilde{abc}$ & U+ &\\
& \verb|$\alpha$| & $\alpha$ & U+ &
& \verb|$\sigma$| & $\sigma$ & U+ &
&& \verb|$\downarrow$| & $\downarrow$ & U+\# &
& \verb|$\overleftarrow{abc}$| & $\overleftarrow{abc}$ & U+ &\\
& \verb|$\beta$| & $\beta$ & U+ &
& \verb|$\varsigma$| & $\varsigma$ & U+ &
&& \verb|$\Downarrow$| & $\Downarrow$ & U+\# &
& \verb|$\overline{abc}$| & $\overline{abc}$ & U+ &\\
& \verb|$\gamma$| & $\gamma$ & U+ &
& \verb|$\tau$| & $\tau$ & U+ &
&& \verb|$\langle$| & $\langle$ & U+\# &
& \verb|$\overbrace{abc}$| & $\overbrace{abc}$ & U+ &\\
& \verb|$\delta$| & $\delta$ & U+ &
& \verb|$\upsilon$| & $\upsilon$ & U+ &
&& \verb|$\rangle$| & $\rangle$ & U+\# &
& \verb|$\sqrt{abc}$| & $\sqrt{abc}$ & U+ &\\
& \verb|$\epsilon$| & $\epsilon$ & U+ &
& \verb|$\phi$| & $\phi$ & U+ &
&& \verb|$\lceil$| & $\lceil$ & U+\# &
& \verb|$\widehat{abc}$| & $\widehat{abc}$ & U+ &\\
& \verb|$\varepsilon$| & $\varepsilon$ & U+ &
& \verb|$\varphi$| & $\varphi$ & U+ &
&& \verb|$\rceil$| & $\rceil$ & U+\# &
& \verb|$\overrightarrow{abc}$| & $\overrightarrow{abc}$ & U+ &\\
& \verb|$\zeta$| & $\zeta$ & U+ &
& \verb|$\chi$| & $\chi$ & U+ &
&& \verb|$\lfloor$| & $\lfloor$ & U+\# &
& \verb|$\underline{abc}$| & $\underline{abc}$ & U+ &\\
& \verb|$\eta$| & $\eta$ & U+ &
& \verb|$\psi$| & $\psi$ & U+ &
&& \verb|$\rfloor$| & $\rfloor$ & U+\# &
& \verb|$\underbrace{abc}$| & $\underbrace{abc}$ & U+ &\\
& \verb|$\theta$| & $\theta$ & U+ &
& \verb|$\omega$| & $\omega$ & U+ &
&& \verb|$\backslash$| & $\backslash$ & U+\# &
& \verb|$\acute{a}$| & $\acute{a}$ & U+ &\\
& \verb|$\vartheta$| & $\vartheta$ & U+ &
& \verb|$\Gamma$| & $\Gamma$ & U+ &
&& \verb~$\|$~ & $\|$ & U+\# &
& \verb|$\bar{a}$| & $\bar{a}$ & U+ &\\
& \verb|$\iota$| & $\iota$ & U+ &
& \verb|$\Delta$| & $\Delta$ & U+ &
&& \verb|$\uparrow$| & $\uparrow$ & U+\# &
& \verb|$\breve{a}$| & $\breve{a}$ & U+ &\\
& \verb|$\kappa$| & $\kappa$ & U+ &
& \verb|$\Theta$| & $\Theta$ & U+ &
&& \verb|$\Uparrow$| & $\Uparrow$ & U+\# &
& \verb|$\check{a}$| & $\check{a}$ & U+ &\\
& \verb|$\lambda$| & $\lambda$ & U+ &
& \verb|$\Lambda$| & $\Lambda$ & U+ &
&& \verb|$\updownarrow$| & $\updownarrow$ & U+\# &
& \verb|$\ddot{a}$| & $\ddot{a}$ & U+ &\\
& \verb|$\mu$| & $\mu$ & U+ &
& \verb|$\Xi$| & $\Xi$ & U+ &
&& \verb|$\Updownarrow$| & $\Updownarrow$ & U+\# &
& \verb|$\dot{a}$| & $\dot{a}$ & U+ &\\
& \verb|$\nu$| & $\nu$ & U+ &
& \verb|$\Pi$| & $\Pi$ & U+ &
&& \verb|$\{$| & $\{$ & U+\# &
& \verb|$\grave{a}$| & $\grave{a}$ & U+ &\\
& \verb|$\xi$| & $\xi$ & U+ &
& \verb|$\Sigma$| & $\Sigma$ & U+ &
&& \verb|$\}$| & $\}$ & U+\# &
& \verb|$\hat{a}$| & $\hat{a}$ & U+ &\\
& \verb|$\pi$| & $\pi$ & U+ &
& \verb|$\Upsilon$| & $\Upsilon$ & U+ &
&& \verb|$\lmoustache$| & $\lmoustache$ & U+ \#&
& \verb|$\mathring{a}$| & $\mathring{a}$ & U+ &\\
& \verb|$\varpi$| & $\varpi$ & U+ &
& \verb|$\Phi$| & $\Phi$ & U+ &
&& \verb|$\rmoustache$| & $\rmoustache$ & U+\# &
& \verb|$\tilde{a}$| & $\tilde{a}$ & U+ &\\
& \verb|$\rho$| & $\rho$ & U+ &
& \verb|$\Psi$| & $\Psi$ & U+ &
&& \verb|$\arrowvert$| & $\arrowvert$ & U+\# &
& \verb|$\vec{a}$| & $\vec{a}$ & U+ &\\
& \verb|$\varrho$| & $\varrho$ & U+ &
& \verb|$\Omega$| & $\Omega$ & U+ &
&& \verb|$\Arrowvert$| & $\Arrowvert$ & U+\# &
& \verb|\LaTeXe| & $\LaTeXe$ & U+ \utilde{abc}&\\
\hline
\end{tabular}
\end{document}
Output
image

LaTeX Alt Code Characters (Code page 437) Typesetting

Alt codes are direct keyboard entries of characters and Symbols for persional computers. A Alt character is entered by holding down the Alt key and entering the decimal Alt keycode on the numpad. The character set of Alt code characters are named code page 437.

Alt Code Characters (Code page 437)

Code page 437 (Alt Code Characters)
0 1 2 3 4 5 6 7 8 9 A B C D E F
0x
0
NUL
1x
16
§
2x
32
 SP  ! " # $ % & ' ( ) * + , - . /
3x
48
0 1 2 3 4 5 6 7 8 9 : ; < = > ?
4x
64
@ A B C D E F G H I J K L M N O
5x
80
P Q R S T U V W X Y Z [ \ ] ^ _
6x
96
` a b c d e f g h i j k l m n o
7x
112
p q r s t u v w x y z { | } ~
8x
128
Ç ü é â ä à å ç ê ë è ï î ì Ä Å
9x
144
É æ Æ ô ö ò û ù ÿ Ö Ü ¢ £ ¥ ƒ
Ax
160
á í ó ú ñ Ñ ª º ¿ ¬ ½ ¼ ¡ « »
Bx
176
Cx
192
Dx
208
Ex
224
α ß Γ π Σ σ µ τ Φ Θ Ω δ φ ε
Fx
240
± ÷ ° · ² NBSP

Alt Code Characters (Code page 437) Typesetting

Package unicode-math and SITS font can be used to typeset the Alt code characters (code page 437), except the reserved characters, character 244, and character 245.
Alt Code Characters (Code page 437) Typesetting Example
Code
%LuaLaTeX
\documentclass[border=1pt, varwidth=50cm]{standalone}
\usepackage{biblatex}
\usepackage{unicode-math}
\setmainfont{XITS}

\begin{document}
\begin{tabular}{
||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
|||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}||}
\hline
\rule{0pt}{3ex}&DEC & alt\# & Remarks &&DEC & alt\# & Remarks &&&DEC &  alt\# & Remarks &&DEC &  alt\# & Remarks &\\
\hline\rule{0pt}{3ex}
&0 &  & U+0000 &  
&64 & @ & U+0040 &
&&128 & Ç & U+00C7 &
&192 & └ & U+2514 &\\
&1 & ☺ & U+263A & 
&65 & A & U+0041 &
&&129 & ü & U+00FC &
&193 & ┴ & U+2534 &\\
&2 & ☻ & U+263B &
&66 & B & U+0042 &
&&130 & é & U+00E9 &
&194 & ┬ & U+252C &\\
&3 & ♥ & U+2665 &
&67 & C & U+0043 &
&&131 & â & U+00E2 &
&195 & ├ & U+251C &\\
&4 & ♦ & U+2666 &
&68 & D & U+0044 &
&&132 & ä & U+00E4 &
&196 & ─ & U+2500 &\\
&5 & ♣ & U+2663 &
&69 & E & U+0045 &
&&133 & à & U+00E0 &
&197 & ┼ & U+253C &\\
&6 & ♠ & U+2660 &
&70 & F & U+0046 &
&&134 & å & U+00E5 &
&198 & ╞ & U+255E &\\
&7 & • & U+2022 &
&71 & G & U+0047 &
&&135 & ç & U+00E7 &
&199 & ╟ & U+255F &\\
&8 & ◘ & U+25D8 &
&72 & H & U+0048 &
&&136 & ê & U+00EA &
&200 & ╚ & U+255A &\\
&9 & ○ & U+25CB &
&73 & I & U+0049 &
&&137 & ë & U+00EB &
&201 & ╔ & U+2554 &\\
&10 & ◙ & U+25D9 &
&74 & J & U+004A &
&&138 & è & U+00E8 &
&202 & ╩ & U+2569 &\\
&11 & ♂ & U+2642 &
&75 & K & U+004B &
&&139 & ï & U+00EF &
&203 & ╦ & U+2566 &\\
&12 & ♀ & U+2640 &
&76 & L & U+004C &
&&140 & î & U+00EE &
&204 & ╠ & U+2560 &\\
&13 & ♪ & U+266A &
&77 & M & U+004D &
&&141 & ì & U+00EC &
&205 & ═ & U+2550 &\\
&14 & ♫ & U+266B &
&78 & N & U+004E &
&&142 & Ä & U+00C4 &
&206 & ╬ & U+256C &\\
&15 & ☼ & U+263C &
&79 & O & U+004F &
&&143 & Å & U+00C5 &
&207 & ╧ & U+2567 &\\
&16 & ► & U+25BA &
&80 & P & U+0050 &
&&144 & É & U+00C9 &
&208 & ╨ & U+2568 &\\
&17 & ◄ & U+25C4 &
&81 & Q & U+0051 &
&&145 & æ & U+00E6 &
&209 & ╤ & U+2564 &\\
&18 & ↕ & U+2195 &
&82 & R & U+0052 &
&&146 & Æ & U+00C6 &
&210 & ╥ & U+2565 &\\
&19 & ‼ & U+203C &
&83 & S & U+0053 &
&&147 & ô & U+00F4 &
&211 & ╙ & U+2559 &\\
&20 & ¶ & U+00B6 &
&84 & T & U+0054 &
&&148 & ö & U+00F6 &
&212 & ╘ & U+2558 &\\
&21 & § & U+00A7 &
&85 & U & U+0055 &
&&149 & ò & U+00F2 &
&213 & ╒ & U+2552 &\\
&22 & ▬ & U+25AC &
&86 & V & U+0056 &
&&150 & û & U+00FB &
&214 & ╓ & U+2553 &\\
&23 & ↨ & U+21A8 &
&87 & W & U+0057 &
&&151 & ù & U+00F9 &
&215 & ╫ & U+256B &\\
&24 & ↑ & U+2191 &
&88 & X & U+0058 &
&&152 & ÿ & U+00FF &
&216 & ╪ & U+256A &\\
&25 & ↓ & U+2193 &
&89 & Y & U+0059 &
&&153 & Ö & U+00D6 &
&217 & ┘ & U+2518 &\\
&26 & → & U+2192 &
&90 & Z & U+005A &
&&154 & Ü & U+00DC &
&218 & ┌ & U+250C &\\
&27 & ← & U+2190 &
&91 & [ & U+005B &
&&155 & ¢ & U+00A2 &
&219 & █ & U+2588 &\\
&28 & ∟ &  U+221F &
&92 & (\backslash) & U+005C &
&&156 & £ & U+00A3 &
&220 & ▄ & U+2584 &\\
&29 & ↔ & U+2194 &
&93 & ] & U+005D &
&&157 & ¥ & U+00A5 &
&221 & ▌ & U+258C &\\
&30 & ▲ & U+25B2 &
&94 & (\^{}) & U+005E &
&&158 & ₧ & U+20A7 &
&222 & ▐ & U+2590 &\\
&31 & ▼ & U+25BC &
&95 & (\_{}) & U+005F &
&&159 & ƒ & U+0192 &
&223 & ▀ & U+2580 &\\
&32 & . . & U+0020 &
&96 & ` & U+0060 &
&&160 & á & U+00E1 &
&224 & α & U+03B1 &\\
&33 & ! & U+0021 &
&97 & a & U+0061 &
&&161 & í & U+00ED &
&225 & ß & U+00DF &\\
&34 & " & U+0022 &
&98 & b & U+0062 &
&&162 & ó & U+00F3 &
&226 & Γ & U+0393 &\\
&35 & (\#) & U+0023 &
&99 & c & U+0063 &
&&163 & ú & U+00FA &
&227 & π & U+03C0 &\\
&36 & (\$) & U+0024 &
&100 & d & U+0064 &
&&164 & ñ & U+00F1 &
&228 & Σ & U+03A3 &\\
&37 & (\%) & U+0025 &
&101 & e & U+0065 &
&&165 & Ñ & U+00D1 &
&229 & σ & U+03C3 &\\
&38 & (\&) & U+0026 &
&102 & f & U+0066 &
&&166 & ª & U+00AA &
&230 & µ & U+00B5 &\\
&39 & ' & U+0027 &
&103 & g & U+0067 &
&&167 & º & U+00BA &
&231 & τ & U+03C4 &\\
&40 & ( & U+0028 &
&104 & h & U+0068 &
&&168 & ¿ & U+00BF &
&232 & Φ & U+03A6 &\\
&41 & ) & U+0029 &
&105 & i & U+0069 &
&&169 & ⌐ & U+2310 &
&233 & Θ & U+0398 &\\
&42 & * & U+002A &
&106 & j & U+006A &
&&170 & ¬ & U+00AC &
&234 & Ω & U+03A9 &\\
&43 & + & U+002B &
&107 & k & U+006B &
&&171 & ½ & U+00BD &
&235 & δ & U+03B4 &\\
&44 & , & U+002C &
&108 & l & U+006C &
&&172 & ¼ & U+00BC &
&236 & ∞ & U+221E &\\
&45 & - & U+002D &
&109 & m & U+006D &
&&173 & ¡ & U+00A1 &
&237 & φ & U+03C6 &\\
&46 & . & U+002E &
&110 & n & U+006E &
&&174 & « & U+00AB &
&238 & ε & U+03B5 &\\
&47 & / & U+002F &
&111 & o & U+006F &
&&175 & » & U+00BB &
&239 & ∩ & U+2229 &\\
&48 & 0 & U+0030 &
&112 & p & U+0070 &
&&176 & ░ & U+2591 &
&240 & ≡ & U+2261 &\\
&49 & 1 & U+0031 &
&113 & q & U+0071 &
&&177 & ▒ & U+2592 &
&241 & ± & U+00B1 &\\
&50 & 2 & U+0032 &
&114 & r & U+0072 &
&&178 & ▓ & U+2593 &
&242 & ≥ & U+2265 &\\
&51 & 3 & U+0033 &
&115 & s & U+0073 &
&&179 & │ & U+2502 &
&243 & ≤ & U+2264 &\\
&52 & 4 & U+0034 &
&116 & t & U+0074 &
&&180 & ┤ & U+2524 &
&244 & [⌠] & {\fontspec{XITS Math}\char"2320}U+2320 &\\
&53 & 5 & U+0035 &
&117 & u & U+0075 &
&&181 & ╡ & U+2561 &
&245 & [⌡] & {\fontspec{XITS Math}\char"2321}U+2321 &\\
&54 & 6 & U+0036 &
&118 & v & U+0076 &
&&182 & ╢ & U+2562 &
&246 & ÷ & U+00F7 &\\
&55 & 7 & U+0037 &
&119 & w & U+0077 &
&&183 & ╖ & U+2556 &
&247 & ≈ & U+2248 &\\
&56 & 8 & U+0038 &
&120 & x & U+0078 &
&&184 & ╕ & U+2555 &
&248 & ° & U+00B0 &\\
&57 & 9 & U+0039 &
&121 & y & U+0079 &
&&185 & ╣ & U+2563 &
&249 & ∙ & U+2219 &\\
&58 & : & U+003A &
&122 & z & U+007A &
&&186 & ║ & U+2551 &
&250 & · & U+00B7 &\\
&59 & ; & U+003B &
&123 & (\{) & U+007B &
&&187 & ╗ & U+2557 &
&251 & √ & U+221A &\\
&60 & < & U+003C &
&124 & | & U+007C &
&&188 & ╝ & U+255D &
&252 & ⁿ & U+207F &\\
&61 & = & U+003D &
&125 & (\}) & U+007D &
&&189 & ╜ & U+255C &
&253 & ² & U+00B2 &\\
&62 & > & U+003E &
&126 & (\~{}) & U+007E &
&&190 & ╛ & U+255B &
&254 & ■ & U+25A0 &\\
&63 & ? & U+003F &
&127 & ⌂ & U+2302 &
&&191 & ┐ & U+2510 &
&255 &   & U+00A0 &\\
\hline
\end{tabular}
\end{document}
Output
image

Package ascii Alt Code Characters (Code page 437) Typesetting

The ascii package makes available the graphical reprensentation of the ASCII characters as defined in the IBM PC Code Page 437 C0 Graphics.
Package ascii Alt Code Characters (Code page 437) Typesetting Example
Code
%LuaLaTeX
\documentclass[border=5pt,varwidth]{standalone}
\usepackage[T1]{fontenc}
\usepackage{ascii}
\usepackage{multirow}
\usepackage{fontspec}
\setmonofont{LucidaConsole}
\newcommand{\chrs}[1]{\verb~#1~}
\begin{document}

\asciifamily
\begin{tabular}{c|c|c|c|c|c|c|c|c|c}
ascii & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 &\\\hline
0x & \NUL & \SOH & \STX & \ETX & \EOT & \ENQ & \ACK & \BEL & \multirow{2}{*}{0x}\\\cline{2-9}
0 & \BS & \HT & \LF & \VT & \FF & \CR  & \SO & \SI &\\\hline
1x & \DLE & \DCa & \DCb & \DCc & \DCd & \NAK & \SYN & \ETB & \multirow{2}{*}{1x}\\\cline{2-9}
16 & \CAN & \EM & \SUB & \ESC & \FS & \GS & \RS & \US &\\\hline
2x & \asciispace & ! & \asciiquotedbl & \asciihash & \asciidollar & \asciipercent & \asciiampersand & \asciiquoteacute & \multirow{2}{*}{2x}\\\cline{2-9}
32 & ( & ) & * & + & , & - & . & / &\\\hline
3x & 0 & 1 & 2 & 3 & 4 & 5 & 6 & 7 & \multirow{2}{*}{3x}\\\cline{2-9}
48 & 8 & 9 & : & ; & < & = & > & ? &\\\hline
4x & @ & A & B & C & D & E & F & G & \multirow{2}{*}{4x}\\\cline{2-9}
64x & H & I & J & K & L & M & N & O &\\\hline
5x & P & Q & R & S & T & U & V & W & \multirow{2}{*}{5x}\\\cline{2-9}
80 & X & Y & Z & [ & \asciibackslash & ] & \asciicircum{} & \asciiunderscore &\\\hline
6x & \asciiquotegrave & a & b & c & d & e & f & g & \multirow{2}{*}{6x}\\\cline{2-9}
96 & h & i & j & k & l & m & n & o &\\\hline
7x & p & q & r & s & t & u & v & w & \multirow{2}{*}{7x}\\\cline{2-9}
112 & x & y & z & \asciilbrace & \asciivert,\splitvert & \asciirbrace & \asciitilde & \DEL &\\\hline
8x & \chrs{Ç} & \chrs{ü} & \chrs{é} & \chrs{â} & \chrs{ä} & \chrs{à} & \chrs{å} & \chrs{ç} & \multirow{2}{*}{8x}\\\cline{2-9}
128 & \chrs{ê} & \chrs{ë} & \chrs{è} & \chrs{ï} & \chrs{î} & \chrs{ì} & \chrs{Ä} & \chrs{Å} &\\\hline
9x & \chrs{É} & \chrs{æ} & \chrs{Æ} & \chrs{ô} & \chrs{ö} & \chrs{ò} & \chrs{û} & \chrs{ù} & \multirow{2}{*}{9x}\\\cline{2-9}
144 & \chrs{ÿ} & \chrs{Ö} & \chrs{Ü} & \chrs{¢} & \chrs{£} & \chrs{¥} & \chrs{₧} & \chrs{ƒ} &\\\hline
Ax & \chrs{á} & \chrs{í} & \chrs{ó} & \chrs{ú} & \chrs{ñ} & \chrs{Ñ} & \chrs{ª} & \chrs{º} & \multirow{2}{*}{Ax}\\\cline{2-9}
160 & \chrs{¿} & \chrs{⌐} & \chrs{¬} & \chrs{½} & \chrs{¼} & \chrs{¡} & \chrs{«} & \chrs{»} &\\\hline
Bx & \chrs{░} & \chrs{▒} & \chrs{▓} & \chrs{│} & \chrs{┤} & \chrs{╡} & \chrs{╢} & \chrs{╖} & \multirow{2}{*}{Bx}\\\cline{2-9}
176 & \chrs{╕} & \chrs{╣} & \chrs{║} & \chrs{╗} & \chrs{╝} & \chrs{╜} & \chrs{╛} & \chrs{┐} &\\\hline
Cx & \chrs{└} & \chrs{┴} & \chrs{┬} & \chrs{├} & \chrs{─} & \chrs{┼} & \chrs{╞} & \chrs{╟} & \multirow{2}{*}{Cx}\\\cline{2-9}
192 & \chrs{╚} & \chrs{╔} & \chrs{╩} & \chrs{╦} & \chrs{╠} & \chrs{═} & \chrs{╬} & \chrs{╧} &\\\hline
Dx & \chrs{╨} & \chrs{╤} & \chrs{╥} & \chrs{╙} & \chrs{╘} & \chrs{╒} & \chrs{╓} & \chrs{╫} & \multirow{2}{*}{Dx}\\\cline{2-9}
208 & \chrs{╪} & \chrs{┘} & \chrs{┌} & \chrs{█} & \chrs{▄} & \chrs{▌} & \chrs{▐} & \chrs{▀} &\\\hline
Ex & \chrs{α} & \chrs{ß} & \chrs{Γ} & \chrs{π} & \chrs{Σ} & \chrs{σ} & \chrs{µ} & \chrs{τ} & \multirow{2}{*}{xE}\\\cline{2-9}
224 & \chrs{Φ} & \chrs{Θ} & \chrs{Ω} & \chrs{δ} & \chrs{∞} & \chrs{φ}* & \chrs{ε}* & \chrs{∩} &\\\hline
Fx & \chrs{≡} & \chrs{±} & \chrs{≥} & \chrs{≤} & \chrs{⌠} & \chrs{⌡} & \chrs{÷} & \chrs{≈} & \multirow{2}{*}{Fx}\\\cline{2-9}
240 & \chrs{°} & \chrs{∙} & \chrs{·} & \chrs{√} & \chrs{ⁿ} & \chrs{²} & \chrs{■} & \chrs{\NBSP} &\\\hline
 & 8 & 9 & A & B & C & D & E & F &\\\hline\end{tabular}\\
\end{document}
Output
image

LaTeX Alt 0 Code Characters (Code page 1252) Typesetting

Alt 0 codes are also direct keyboard entries of characters and Symbols for persional computers. A Alt 0 character is entered by holding down the Alt key and entering the decimal Alt keycode with prefixing a leading zero (0) on the numpad. The character set of Alt code characters are named code page 1252.

Alt 0 Code Characters (Code page 1252)

Windows-1252 (CP1252)
0 1 2 3 4 5 6 7 8 9 A B C D E F
0_(0-) NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO SI
1_(16-) DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US
2_(32-)  SP  ! " # $ % & ' ( ) * + , - . /
3_(48-) 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
4_(64-) @ A B C D E F G H I J K L M N O
5_(80-) P Q R S T U V W X Y Z [ \ ] ^ _
6_(96-) ` a b c d e f g h i j k l m n o
7_(112-) p q r s t u v w x y z { | } ~ DEL
8_(128-)   ƒ ˆ Š Œ   Ž  
9_(144-)   ˜ š œ   ž Ÿ
A_(160-) NBSP ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ SHY ® ¯
B_(176-) ° ± ² ³ ´ µ · ¸ ¹ º » ¼ ½ ¾ ¿
C_(192-) À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï
D_(208-) Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß
E_(224-) à á â ã ä å æ ç è é ê ë ì í î ï
F_(240-) ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ

Alt 0 Code Characters (Code page 1252) Typesetting

Package unicode-math and SITS font can be used to typeset the Alt 0 code characters (code page 1252), except the reserved characters.
Alt 0 Code Characters (Code page 1252) Typesetting Example
Code
%LuaLaTeX
\documentclass[border=1pt, varwidth=50cm]{standalone}
\usepackage{biblatex}
\usepackage{unicode-math}
\setmainfont{XITS}

\begin{document}
\begin{tabular}{
||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
|||@{\hspace{2pt}}p{0.05mm}c     |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}
||c |c@{\hspace{2pt}}|@{\hspace{2pt}}c@{\hspace{2pt}}p{0.05mm}||}
\hline
\rule{0pt}{3ex}&DEC & alt\# & Remarks &&DEC & alt\# & Remarks &&&DEC &  alt\# & Remarks &&DEC &  alt\# & Remarks &\\
\hline\rule{0pt}{3ex}
&0 &  & NUL\ U+0000 &  
&64 & @ & U+0040 &
&&128 & € & U+20AC &
&192 & À & U+00C0 &\\
&1 &  & SOH\ U+0001 & 
&65 & A & U+0041 &
&&129 &  & unused &
&193 & Á & U+00C1 &\\
&2 &  & STX\ U+0002 &
&66 & B & U+0042 &
&&130 & ‚ & U+201A &
&194 & Â & U+00C2 &\\
&3 &  & ETX\ U+0003 &
&67 & C & U+0043 &
&&131 & ƒ & U+0192 &
&195 & Ã & U+00C3 &\\
&4 &  & EOT\ U+0004 &
&68 & D & U+0044 &
&&132 & „ & U+201E &
&196 & Ä & U+00C4 &\\
&5 &  & ENQ\ U+0005 &
&69 & E & U+0045 &
&&133 & … & U+2026 &
&197 & Å & U+00C5 &\\
&6 &  & ACK\ U+0006 &
&70 & F & U+0046 &
&&134 & † & U+2020 &
&198 & Æ & U+00C6 &\\
&7 &  & BEL\ U+0007 &
&71 & G & U+0047 &
&&135 & ‡ & U+2021 &
&199 & Ç & U+00C7 &\\
&8 &  & BS\ U+0008 &
&72 & H & U+0048 &
&&136 & ˆ & U+02C6 &
&200 & È & U+00C8 &\\
&9 & 	 & HT\ U+0009 &
&73 & I & U+0049 &
&&137 & ‰ & U+2030 &
&201 & É & U+00C9 &\\
&10 &  & LF\ U+000A &
&74 & J & U+004A &
&&138 & Š & U+0160 &
&202 & Ê & U+00CA &\\
&11 &  & VT\ U+000B &
&75 & K & U+004B &
&&139 & ‹ & U+2039 &
&203 & Ë & U+00CB &\\
&12 &  & FF\ U+000C &
&76 & L & U+004C &
&&140 & Π& U+0152 &
&204 & Ì & U+00CC &\\
&13 &  & CR\ U+000D &
&77 & M & U+004D &
&&141 &  & unused &
&205 & Í & U+00CD &\\
&14 &  & SO\ U+000E &
&78 & N & U+004E &
&&142 & Ž & U+017D &
&206 & Î & U+00CE &\\
&15 &  & SI\ U+000F &
&79 & O & U+004F &
&&143 &  & unused &
&207 & Ï & U+00CF &\\
&16 &  & DLE\ U+0010 &
&80 & P & U+0050 &
&&144 &  & unused &
&208 & Ð & U+00D0 &\\
&17 &  & DC1\ U+0011 &
&81 & Q & U+0051 &
&&145 & ‘ & U+2018 &
&209 & Ñ & U+00D1 &\\
&18 &  & DC2\ U+0012 &
&82 & R & U+0052 &
&&146 & ’ & U+2019 &
&210 & Ò & U+00D2 &\\
&19 &  & DC3\ U+0013 &
&83 & S & U+0053 &
&&147 & “ & U+201C &
&211 & Ó & U+00D3 &\\
&20 &  & DC4\ U+0014 &
&84 & T & U+0054 &
&&148 & ” & U+201D &
&212 & Ô & U+00D4  &\\
&21 &  & NAK\ U+0015 &
&85 & U & U+0055 &
&&149 & • & U+2022 &
&213 & Õ & U+00D5 &\\
&22 &  & SYN\ U+0016 &
&86 & V & U+0056 &
&&150 & – & U+2013 &
&214 & Ö & U+00D6 &\\
&23 &  & ETB\ U+0017 &
&87 & W & U+0057 &
&&151 & — & U+2014 &
&215 & × & U+00D7 &\\
&24 &  & CAN\ U+0018 &
&88 & X & U+0058 &
&&152 & ˜ & U+02DC &
&216 & Ø & U+00D8 &\\
&25 &  & EM\ U+0019 &
&89 & Y & U+0059 &
&&153 & ™ & U+2122 &
&217 & Ù & U+00D9 &\\
&26 &  & SUB\ U+001A &
&90 & Z & U+005A &
&&154 & š & U+0161 &
&218 & Ú & U+00DA &\\
&27 &  & ESC\ U+001B &
&91 & [ & U+005B &
&&155 & › & U+203A &
&219 & Û & U+00DB &\\
&28 &  & FS\ U+001C &
&92 & (\backslash) & U+005C &
&&156 & œ & U+0153 &
&220 & Ü & U+00DC &\\
&29 &  & GS\ U+001D &
&93 & ] & U+005D &
&&157 &  & unused &
&221 & Ý & U+00DD &\\
&30 &  & RS\ U+001E &
&94 & (\^{}) & U+005E &
&&158 & ž & U+017E &
&222 & Þ & U+00DE &\\
&31 &  & US\ U+001F &
&95 & (\_{}) & U+005F &
&&159 & Ÿ & U+0178 &
&223 & ß & U+00DF &\\
&32 &   & SP\ U+0020 &
&96 & ` & U+0060 &
&&160 &   & NBSP\ U+00A0 &
&224 & à & U+00E0 &\\
&33 & ! & U+0021 &
&97 & a & U+0061 &
&&161 & ¡ & U+00A1 &
&225 & á & U+00E1 &\\
&34 & " & U+0022 &
&98 & b & U+0062 &
&&162 & ¢ & U+00A2 &
&226 & â & U+00E2 &\\
&35 & (\#) & U+0023 &
&99 & c & U+0063 &
&&163 & £ & U+00A3 &
&227 & ã & U+00E3 &\\
&36 & (\$) & U+0024 &
&100 & d & U+0064 &
&&164 & ¤ & U+00A4 &
&228 & ä & U+00E4 &\\
&37 & (\%) & U+0025 &
&101 & e & U+0065 &
&&165 & ¥ & U+00A5 &
&229 & å & U+00E5 &\\
&38 & (\&) & U+0026 &
&102 & f & U+0066 &
&&166 & ¦ & U+00A6 &
&230 & æ & U+00E6 &\\
&39 & ' & U+0027 &
&103 & g & U+0067 &
&&167 & § & U+00A7 &
&231 & ç & U+00E7 &\\
&40 & ( & U+0028 &
&104 & h & U+0068 &
&&168 & ¨ & U+00A8 &
&232 & è & U+00E8 &\\
&41 & ) & U+0029 &
&105 & i & U+0069 &
&&169 & © & U+00A9 &
&233 & é & U+00E9 &\\
&42 & * & U+002A &
&106 & i & U+006A &
&&170 & ª & U+00AA &
&234 & ê & U+00EA &\\
&43 & + & U+002B &
&107 & k & U+006B &
&&171 & « & U+00AB &
&235 & ë & U+00EB &\\
&44 & , & U+002C &
&108 & l & U+006C &
&&172 & ¬ & U+00AC &
&236 & ì & U+00EC &\\
&45 & - & U+002D &
&109 & m & U+006D &
&&173 & ­ & SHY\ U+00AD &
&237 & í & U+00ED &\\
&46 & . & U+002E &
&110 & n & U+006E &
&&174 & ® & U+00AE &
&238 & î & U+00EE &\\
&47 & / & U+002F &
&111 & o & U+006F &
&&175 & ¯ & U+00AF &
&239 & ï & U+00EF &\\
&48 & 0 & U+0030 &
&112 & p & U+0070 &
&&176 & ° & U+00B0 &
&240 & ð & U+00F0 &\\
&49 & 1 & U+0031 &
&113 & q & U+0071 &
&&177 & ± & U+00B1 &
&241 & ñ & U+00F1 &\\
&50 & 2 & U+0032 &
&114 & r & U+0072 &
&&178 & ² & U+00B2 &
&242 & ò & U+00F2 &\\
&51 & 3 & U+0033 &
&115 & s & U+0073 &
&&179 & ³ & U+00B3 &
&243 & ó & U+00F3 &\\
&52 & 4 & U+0034 &
&116 & t & U+0074 &
&&180 & ´ & U+00B4 &
&244 & ô & U+00F4 &\\
&53 & 5 & U+0035 &
&117 & u & U+0075 &
&&181 & µ & U+00B5 &
&245 & õ & U+00F5 &\\
&54 & 6 & U+0036 &
&118 & v & U+0076 &
&&182 & ¶ & U+00B6 &
&246 & ö & U+00F6 &\\
&55 & 7 & U+0037 &
&119 & w & U+0077 &
&&183 & · & U+00B7 &
&247 & ÷ & U+00F7 &\\
&56 & 8 & U+0038 &
&120 & x & U+0078 &
&&184 & ¸ & U+00B8 &
&248 & ø & U+00F8 &\\
&57 & 9 & U+0039 &
&121 & y & U+0079 &
&&185 & ¹ & U+00B9 &
&249 & ù & U+00F9 &\\
&58 & : & U+003A &
&122 & z & U+007A &
&&186 & º & U+00BA &
&250 & ú & U+00FA &\\
&59 & ; & U+003B &
&123 & (\{) & U+007B &
&&187 & » & U+00BB &
&251 & û & U+00FB &\\
&60 & < & U+003C &
&124 & | & U+007C &
&&188 & ¼ & U+00BC &
&252 & ü & U+00FC &\\
&61 & = & U+003D &
&125 & (\}) & U+007D &
&&189 & ½ & U+00BD &
&253 & ý & U+00FD &\\
&62 & > & U+003E &
&126 & (\~{}) & U+007E &
&&190 & ¾ & U+00BE &
&254 & þ & U+00FE &\\
&63 & ? & U+003F &
&127 &  & DEL\ U+007F &
&&191 & ¿ & U+00BF &
&255 & ÿ & U+00FF &\\
\hline
\end{tabular}
\end{document}
Output
image

LaTex Font Output

The $\(\LaTeX\)$ font output are specified by the attributes of font.

LaTeX Font Table Attributes

The attributes of $\(\LaTeX\)$ font in $\(\LaTeX\)$ document are encoding, family, series, shape, and size.
AttributesDescription encodingThis specifies the order that characters appear in the font. The two most common text encodings used in LATEX are Knuth’s ‘TEX text’ encoding, and the ‘TEX text extended’ encoding developed by the TEX Users Group members during a TEX Conference at Cork in 1990 (hence its informal name ‘Cork encoding’). familyThe name for a collection of fonts, usually grouped under a common name by the font foundry. For example, ‘Adobe Times’, ‘ITC Garamond’, and Knuth’s ‘Computer Modern Roman’ are all font families. seriesHow heavy and/or expanded a font is. For example, ‘medium weight’, ‘narrow’ and ‘bold extended’ are all series. shapeThe form of the letters within a font family. For example, ‘italic’, ‘oblique’ and ‘upright’ (sometimes called ‘roman’) are all font shapes. sizeThe design size of the font, for example ‘10pt’. If no dimension is specified, ‘pt’ is assumed.

Source and Reference


©sideway

ID: 220500002 Last Updated: 5/2/2022 Revision: 0


Latest Updated LinksValid XHTML 1.0 Transitional Valid CSS!Nu Html Checker Firefox53 Chromena IExplorerna
IMAGE

Home 5

Business

Management

HBR 3

Information

Recreation

Hobbies 8

Culture

Chinese 1097

English 339

Reference 79

Computer

Hardware 249

Software

Application 213

Digitization 32

Latex 52

Manim 205

KB 1

Numeric 19

Programming

Web 289

Unicode 504

HTML 66

CSS 65

SVG 46

ASP.NET 270

OS 429

DeskTop 7

Python 72

Knowledge

Mathematics

Formulas 8

Algebra 84

Number Theory 206

Trigonometry 31

Geometry 34

Coordinate Geometry 2

Calculus 67

Complex Analysis 21

Engineering

Tables 8

Mechanical

Mechanics 1

Rigid Bodies

Statics 92

Dynamics 37

Fluid 5

Fluid Kinematics 5

Control

Process Control 1

Acoustics 19

FiniteElement 2

Natural Sciences

Matter 1

Electric 27

Biology 1

Geography 1


Copyright © 2000-2024 Sideway . All rights reserved Disclaimers last modified on 06 September 2019