Hushed Face

๐Ÿ˜ฏ

Shortcodes

Copy useful codes for hushed face symbol ๐Ÿ˜ฏ to use in websites, apps, blogs, and docs.

Unicode
U+1F62F
HTML Code
😯
HEX Code
😯
CSS Code
\1F62F
JS/JSON
\u1F62F
Unix/C/PHP/JAVA
0x1F62F
URL-encode
%F0%9F%98%AF

Customize Hushed Face

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

๐Ÿ˜ฏ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ฏ</span>
HTML Code:
<span>&#128559;</span>
HEX Code:
<span>&#x1F62F;</span>

Add with CSS

.hushed-face::before {
  content: '\\1F62F';
}

Set it in JavaScript

document.querySelector('.hushed-face').textContent = '๐Ÿ˜ฏ';
copied