LaTeX Degree (°) - Complete Guide

The degree symbol (°) is used for angles and temperatures.

Symbol Preview

°

Degree

LaTeX Code

No package required

Recommended
^\circ

Degree in math mode

Requires: \usepackage{cmd.package}

Recommended
\degree

Degree symbol

What is the LaTeX Degree?

Represents 1/360 of a full rotation for angles, or temperature measurements.

How to Use Degree in LaTeX

Method 1: Using ^\circ

No package required

Degree in math mode

Example: Using ^\circ

latex
\documentclass{article}

\begin{document}

% Using the Degree
Text with ^\circ

\end{document}

Method 2: Using \degree

⚠️Required Package:

\usepackage{cmd.package}

Degree symbol

Example: Using \degree

latex
\documentclass{article}
\usepackage{gensymb}
\begin{document}

% Using the Degree
Text with \degree

\end{document}

Common Use Cases

The Degree symbol is commonly used in the following contexts:

Temperature

Temperature measurements.

Code

$25^\circ C$

Output

25° C

Angle

Angle measurements.

Code

$90^\circ$

Output

90°

Complete Examples

Using Caret Notation

Degree symbol using caret notation (no packages needed)

latex
\documentclass{article}
\begin{document}

Water boils at $100^\circ C$ or $212^\circ F$.

Right angle: $90^\circ$

\end{document}

Using gensymb Package

Degree symbol using \degree command (requires gensymb package)

latex
\documentclass{article}
\usepackage{gensymb}
\begin{document}

Water boils at 100\degree C or 212\degree F.

Right angle: $90\degree$

\end{document}

Frequently Asked Questions about Degree (°)

Which LaTeX code should I use for Degree?

For the Degree symbol (°), we recommend using the method marked as "Recommended" above. However, the best method depends on your specific needs:

  • ^\circ: Degree in math mode
  • \degree: Degree symbol

Where can I use the Degree symbol?

The Degree symbol (°) is typically used:

  • In mathematical equations (math mode)
  • In regular text (if supported)
  • In various LaTeX environments

Can I use the Degree symbol in display mode?

Yes, the Degree symbol (°) works in display mode (between $$ $$). This allows you to render the symbol on its own line with better visibility.

🔗 Related Symbols You May Need

View all symbols →

🎯 Need to Convert PDF to LaTeX?

Our free PDF to LaTeX converter preserves all mathematical symbols and formatting.

Fast & accurate

Preserves symbols

Free online

No registration

Try Converter Now →