Degree Fahrenheit

Shortcodes

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

Unicode
U+2109
HTML Code
℉
HTML Entity
&degF;
HEX Code
℉
CSS Code
\2109
JS/JSON
\u2109
Unix/C/PHP/JAVA
0x2109
URL-encode
%E2%84%89

Customize Degree Fahrenheit

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

  

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

Insert in HTML

1. Direct symbol:
<span>℉</span>
HTML Code:
<span>&#8457;</span>
HTML Entity:
<span>&degF;</span>
HEX Code:
<span>&#x2109;</span>

Add with CSS

.degree-fahrenheit::before {
  content: '\\2109';
}

Set it in JavaScript

document.querySelector('.degree-fahrenheit').textContent = '℉';
copied