Math & Science
°

Degree Symbol (°)

Used for temperature measurements (e.g. 25°C, 77°F), geographic coordinates (latitude/longitude), and geometric angles (90°).

One-Click Copyable Code Formats

HTML Named Entity
°
HTML Decimal Code
°
HTML Hex Code
°
CSS content (\XXXX)
\00B0
JavaScript Unicode (\uXXXX)
\u00B0
URL Percent Encoded
%C2%B0

Real-World Implementation Snippets

HTML5 Document
<p>Example: &deg;</p>
CSS ::before / ::after
.badge::before { content: '\00B0 '; }
React JSX / TypeScript
<span>{"\u00B0"}</span>
Frequently Asked Questions

Degree Symbol (°) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&deg;". If using numeric codes, you can use the decimal code "&#176;" or hex code "&#xB0;".