Symbol/Unicode | Degree/U+00B0 |
---|---|
Type of symbol | Mathematics |
Package (requirement) | No |
Argument | No |
Latex command | 180^\circ |
Example | 180^\circ → 180° |
Sometimes a degree symbol is required in a latex document to write temperature and angle. You need to use the ^\circ
command for this symbol.
\documentclass{article}
\begin{document}
$$ 180^\circ,\;90^\circ,\;45^\circ $$
$$ C^\circ,\;F^\circ $$
\end{document}
Output :