Ice Cube

๐ŸงŠ

Shortcodes

Copy useful codes for ice cube symbol ๐ŸงŠ to use in websites, apps, blogs, and docs.

Unicode
U+1F9CA
HTML Code
🧊
HEX Code
🧊
CSS Code
\1F9CA
JS/JSON
\u1F9CA
Unix/C/PHP/JAVA
0x1F9CA
URL-encode
%F0%9F%A7%8A

Customize Ice Cube

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

๐ŸงŠ
  

How to use Ice Cube Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐ŸงŠ</span>
HTML Code:
<span>&#129482;</span>
HEX Code:
<span>&#x1F9CA;</span>

Add with CSS

.ice-cube::before {
  content: '\\1F9CA';
}

Set it in JavaScript

document.querySelector('.ice-cube').textContent = '๐ŸงŠ';
copied