Soft Ice Cream

๐Ÿฆ

Shortcodes

Copy useful codes for soft ice cream symbol ๐Ÿฆ to use in websites, apps, blogs, and docs.

Unicode
U+1F366
HTML Code
🍦
HEX Code
🍦
CSS Code
\1F366
JS/JSON
\u1F366
Unix/C/PHP/JAVA
0x1F366
URL-encode
%F0%9F%8D%A6

Customize Soft Ice Cream

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

๐Ÿฆ
  

How to use Soft Ice Cream Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฆ</span>
HTML Code:
<span>&#127846;</span>
HEX Code:
<span>&#x1F366;</span>

Add with CSS

.soft-ice-cream::before {
  content: '\\1F366';
}

Set it in JavaScript

document.querySelector('.soft-ice-cream').textContent = '๐Ÿฆ';
copied