Bowl With Spoon

🥣

Shortcodes

Copy useful codes for bowl with spoon symbol 🥣 to use in websites, apps, blogs, and docs.

Unicode
U+1F963
HTML Code
🥣
HEX Code
🥣
CSS Code
\1F963
JS/JSON
\u1F963
Unix/C/PHP/JAVA
0x1F963
URL-encode
%F0%9F%A5%A3

Customize Bowl With Spoon

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

🥣
  

How to use Bowl With Spoon Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🥣</span>
HTML Code:
<span>&#129379;</span>
HEX Code:
<span>&#x1F963;</span>

Add with CSS

.bowl-with-spoon::before {
  content: '\\1F963';
}

Set it in JavaScript

document.querySelector('.bowl-with-spoon').textContent = '🥣';
copied