Nauseated Face

๐Ÿคข

Shortcodes

Copy useful codes for nauseated face symbol ๐Ÿคข to use in websites, apps, blogs, and docs.

Unicode
U+1F922
HTML Code
🤢
HEX Code
🤢
CSS Code
\1F922
JS/JSON
\u1F922
Unix/C/PHP/JAVA
0x1F922
URL-encode
%F0%9F%A4%A2

Customize Nauseated Face

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

๐Ÿคข
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿคข</span>
HTML Code:
<span>&#129314;</span>
HEX Code:
<span>&#x1F922;</span>

Add with CSS

.nauseated-face::before {
  content: '\\1F922';
}

Set it in JavaScript

document.querySelector('.nauseated-face').textContent = '๐Ÿคข';
copied