Degree Symbol

°

Shortcodes

Copy useful codes for degree symbol ° to use in websites, apps, blogs, and docs.

Unicode
U+00B0
Alt Code
0176
HTML Code
°
HTML Entity
°
HEX Code
°
CSS Code
\00B0
JS/JSON
\u00B0
Unix/C/PHP/JAVA
0xB0
URL-encode
%C2%B0

Customize Degree Symbol

Customize °, download it as SVG or PNG, or copy the generated HTML snippet.

°
  

How to use Degree Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>°</span>
HTML Code:
<span>&#176;</span>
HTML Entity:
<span>&deg;</span>
HEX Code:
<span>&#x00B0;</span>

Add with CSS

.degree-sign::before {
  content: '\\00B0';
}

Set it in JavaScript

document.querySelector('.degree-sign').textContent = '°';
copied