Stuffed Flatbread

🥙

Shortcodes

Copy useful codes for stuffed flatbread symbol 🥙 to use in websites, apps, blogs, and docs.

Unicode
U+1F959
HTML Code
🥙
HEX Code
🥙
CSS Code
\1F959
JS/JSON
\u1F959
Unix/C/PHP/JAVA
0x1F959
URL-encode
%F0%9F%A5%99

Customize Stuffed Flatbread

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

🥙
  

How to use Stuffed Flatbread Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🥙</span>
HTML Code:
<span>&#129369;</span>
HEX Code:
<span>&#x1F959;</span>

Add with CSS

.stuffed-flatbread::before {
  content: '\\1F959';
}

Set it in JavaScript

document.querySelector('.stuffed-flatbread').textContent = '🥙';
copied