Bagel

🥯

Shortcodes

Copy useful codes for bagel symbol 🥯 to use in websites, apps, blogs, and docs.

Unicode
U+1F96F
HTML Code
🥯
HEX Code
🥯
CSS Code
\1F96F
JS/JSON
\u1F96F
Unix/C/PHP/JAVA
0x1F96F
URL-encode
%F0%9F%A5%AF

Customize Bagel

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

🥯
  

How to use Bagel Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🥯</span>
HTML Code:
<span>&#129391;</span>
HEX Code:
<span>&#x1F96F;</span>

Add with CSS

.bagel::before {
  content: '\\1F96F';
}

Set it in JavaScript

document.querySelector('.bagel').textContent = '🥯';
copied