Shortcake

๐Ÿฐ

Shortcodes

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

Unicode
U+1F370
HTML Code
🍰
HEX Code
🍰
CSS Code
\1F370
JS/JSON
\u1F370
Unix/C/PHP/JAVA
0x1F370
URL-encode
%F0%9F%8D%B0

Customize Shortcake

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

๐Ÿฐ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿฐ</span>
HTML Code:
<span>&#127856;</span>
HEX Code:
<span>&#x1F370;</span>

Add with CSS

.shortcake::before {
  content: '\\1F370';
}

Set it in JavaScript

document.querySelector('.shortcake').textContent = '๐Ÿฐ';
copied