Fortune Cookie

๐Ÿฅ 

Shortcodes

Copy useful codes for fortune cookie symbol ๐Ÿฅ  to use in websites, apps, blogs, and docs.

Unicode
U+1F960
HTML Code
🥠
HEX Code
🥠
CSS Code
\1F960
JS/JSON
\u1F960
Unix/C/PHP/JAVA
0x1F960
URL-encode
%F0%9F%A5%A0

Customize Fortune Cookie

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

๐Ÿฅ 
  

How to use Fortune Cookie Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅ </span>
HTML Code:
<span>&#129376;</span>
HEX Code:
<span>&#x1F960;</span>

Add with CSS

.fortune-cookie::before {
  content: '\\1F960';
}

Set it in JavaScript

document.querySelector('.fortune-cookie').textContent = '๐Ÿฅ ';
copied