Freezing Face

๐Ÿฅถ

Shortcodes

Copy useful codes for freezing face symbol ๐Ÿฅถ to use in websites, apps, blogs, and docs.

Unicode
U+1F976
HTML Code
🥶
HEX Code
🥶
CSS Code
\1F976
JS/JSON
\u1F976
Unix/C/PHP/JAVA
0x1F976
URL-encode
%F0%9F%A5%B6

Customize Freezing Face

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

๐Ÿฅถ
  

How to use Freezing Face Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅถ</span>
HTML Code:
<span>&#129398;</span>
HEX Code:
<span>&#x1F976;</span>

Add with CSS

.freezing-face::before {
  content: '\\1F976';
}

Set it in JavaScript

document.querySelector('.freezing-face').textContent = '๐Ÿฅถ';
copied