Custard

๐Ÿฎ

Shortcodes

Copy useful codes for custard symbol ๐Ÿฎ to use in websites, apps, blogs, and docs.

Unicode
U+1F36E
HTML Code
🍮
HEX Code
🍮
CSS Code
\1F36E
JS/JSON
\u1F36E
Unix/C/PHP/JAVA
0x1F36E
URL-encode
%F0%9F%8D%AE

Customize Custard

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

๐Ÿฎ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿฎ</span>
HTML Code:
<span>&#127854;</span>
HEX Code:
<span>&#x1F36E;</span>

Add with CSS

.custard::before {
  content: '\\1F36E';
}

Set it in JavaScript

document.querySelector('.custard').textContent = '๐Ÿฎ';
copied