Sneezing Face

🤧

Shortcodes

Copy useful codes for sneezing face symbol 🤧 to use in websites, apps, blogs, and docs.

Unicode
U+1F927
HTML Code
🤧
HEX Code
🤧
CSS Code
\1F927
JS/JSON
\u1F927
Unix/C/PHP/JAVA
0x1F927
URL-encode
%F0%9F%A4%A7

Customize Sneezing Face

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

🤧
  

How to use Sneezing Face Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>🤧</span>
HTML Code:
<span>&#129319;</span>
HEX Code:
<span>&#x1F927;</span>

Add with CSS

.sneezing-face::before {
  content: '\\1F927';
}

Set it in JavaScript

document.querySelector('.sneezing-face').textContent = '🤧';
copied