Leafy Green

🥬

Shortcodes

Copy useful codes for leafy green symbol 🥬 to use in websites, apps, blogs, and docs.

Unicode
U+1F96C
HTML Code
🥬
HEX Code
🥬
CSS Code
\1F96C
JS/JSON
\u1F96C
Unix/C/PHP/JAVA
0x1F96C
URL-encode
%F0%9F%A5%AC

Customize Leafy Green

Customize 🥬, download it as SVG or PNG, or copy the generated HTML snippet.

🥬
  

How to use Leafy Green Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🥬</span>
HTML Code:
<span>&#129388;</span>
HEX Code:
<span>&#x1F96C;</span>

Add with CSS

.leafy-green::before {
  content: '\\1F96C';
}

Set it in JavaScript

document.querySelector('.leafy-green').textContent = '🥬';
copied