Peanuts

๐Ÿฅœ

Shortcodes

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

Unicode
U+1F95C
HTML Code
🥜
HEX Code
🥜
CSS Code
\1F95C
JS/JSON
\u1F95C
Unix/C/PHP/JAVA
0x1F95C
URL-encode
%F0%9F%A5%9C

Customize Peanuts

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

๐Ÿฅœ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅœ</span>
HTML Code:
<span>&#129372;</span>
HEX Code:
<span>&#x1F95C;</span>

Add with CSS

.peanuts::before {
  content: '\\1F95C';
}

Set it in JavaScript

document.querySelector('.peanuts').textContent = '๐Ÿฅœ';
copied