Cooking

๐Ÿณ

Shortcodes

Copy useful codes for cooking symbol ๐Ÿณ to use in websites, apps, blogs, and docs.

Unicode
U+1F373
HTML Code
🍳
HEX Code
🍳
CSS Code
\1F373
JS/JSON
\u1F373
Unix/C/PHP/JAVA
0x1F373
URL-encode
%F0%9F%8D%B3

Customize Cooking

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

๐Ÿณ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿณ</span>
HTML Code:
<span>&#127859;</span>
HEX Code:
<span>&#x1F373;</span>

Add with CSS

.cooking::before {
  content: '\\1F373';
}

Set it in JavaScript

document.querySelector('.cooking').textContent = '๐Ÿณ';
copied