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

Which method should I use?

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 do I use this symbol?

This symbol can be used:

  • In mathematical equations (math mode)
  • In regular text (if using text mode)
  • In various document environments

Can I use this in display mode?

Yes, symbols that work in math mode (between $ $) also work in display mode (between $$ $$). This allows you to display the symbol on its own line with larger formatting.

🔗 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 →