Fire Extinguisher

🧯

Shortcodes

Copy useful codes for fire extinguisher symbol 🧯 to use in websites, apps, blogs, and docs.

Unicode
U+1F9EF
HTML Code
🧯
HEX Code
🧯
CSS Code
\1F9EF
JS/JSON
\u1F9EF
Unix/C/PHP/JAVA
0x1F9EF
URL-encode
%F0%9F%A7%AF

Customize Fire Extinguisher

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

🧯
  

How to use Fire Extinguisher Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🧯</span>
HTML Code:
<span>&#129519;</span>
HEX Code:
<span>&#x1F9EF;</span>

Add with CSS

.fire-extinguisher::before {
  content: '\\1F9EF';
}

Set it in JavaScript

document.querySelector('.fire-extinguisher').textContent = '🧯';
copied