Degree Fahrenheit

Shortcodes

Copy and paste codes for Degree Fahrenheit symbol ℉ to use in your websites, apps, blogs, and more.

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
copied

Customize Degree Fahrenheit Symbol

Customize ℉ symbol as you like and download Degree Fahrenheit as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Degree Fahrenheit symbol in HTML, CSS, and JS?

Insert ℉ Degree Fahrenheit using HTML

1. Copy-paste Degree Fahrenheit directly:
<span>℉</span>
2. HTML Decimal Code:
<span>&#8457;</span>
3. HTML Entity:
<span>&degF;</span>
4. Hexadecimal Code:
<span>&#x2109;</span>
Preview:

Add Degree Fahrenheit symbol with CSS

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

Degree Fahrenheit JavaScript Code

1. Direct Symbol:
document.querySelector('.degree-fahrenheit').textContent = '℉';
2. Unicode Escape for ℉:
document.querySelector('.degree-fahrenheit').textContent = '\u2109';
Preview: