Thermometer

๐ŸŒก

Shortcodes

Copy useful codes for thermometer symbol ๐ŸŒก to use in websites, apps, blogs, and docs.

Unicode
U+1F321
HTML Code
🌡
HEX Code
🌡
CSS Code
\1F321
JS/JSON
\u1F321
Unix/C/PHP/JAVA
0x1F321
URL-encode
%F0%9F%8C%A1

Customize Thermometer

Customize ๐ŸŒก, download it as SVG or PNG, or copy the generated HTML snippet.

๐ŸŒก
  

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

Insert in HTML

1. Direct symbol:
<span>๐ŸŒก</span>
HTML Code:
<span>&#127777;</span>
HEX Code:
<span>&#x1F321;</span>

Add with CSS

.thermometer::before {
  content: '\\1F321';
}

Set it in JavaScript

document.querySelector('.thermometer').textContent = '๐ŸŒก';
copied