Baguette Bread

๐Ÿฅ–

Shortcodes

Copy useful codes for baguette bread symbol ๐Ÿฅ– to use in websites, apps, blogs, and docs.

Unicode
U+1F956
HTML Code
🥖
HEX Code
🥖
CSS Code
\1F956
JS/JSON
\u1F956
Unix/C/PHP/JAVA
0x1F956
URL-encode
%F0%9F%A5%96

Customize Baguette Bread

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

๐Ÿฅ–
  

How to use Baguette Bread Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅ–</span>
HTML Code:
<span>&#129366;</span>
HEX Code:
<span>&#x1F956;</span>

Add with CSS

.baguette-bread::before {
  content: '\\1F956';
}

Set it in JavaScript

document.querySelector('.baguette-bread').textContent = '๐Ÿฅ–';
copied