Degree Celsius

Shortcodes

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

Unicode
U+2103
HTML Code
℃
HTML Entity
&degC;
HEX Code
℃
CSS Code
\2103
JS/JSON
\u2103
Unix/C/PHP/JAVA
0x2103
URL-encode
%E2%84%83

Customize Degree Celsius

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

  

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

Insert in HTML

1. Direct symbol:
<span>℃</span>
HTML Code:
<span>&#8451;</span>
HTML Entity:
<span>&degC;</span>
HEX Code:
<span>&#x2103;</span>

Add with CSS

.degree-celsius::before {
  content: '\\2103';
}

Set it in JavaScript

document.querySelector('.degree-celsius').textContent = '℃';
copied