Green Salad

๐Ÿฅ—

Shortcodes

Copy useful codes for green salad symbol ๐Ÿฅ— to use in websites, apps, blogs, and docs.

Unicode
U+1F957
HTML Code
🥗
HEX Code
🥗
CSS Code
\1F957
JS/JSON
\u1F957
Unix/C/PHP/JAVA
0x1F957
URL-encode
%F0%9F%A5%97

Customize Green Salad

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

๐Ÿฅ—
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅ—</span>
HTML Code:
<span>&#129367;</span>
HEX Code:
<span>&#x1F957;</span>

Add with CSS

.green-salad::before {
  content: '\\1F957';
}

Set it in JavaScript

document.querySelector('.green-salad').textContent = '๐Ÿฅ—';
copied