Frowning Face With Open Mouth

๐Ÿ˜ฆ

Shortcodes

Copy useful codes for frowning face with open mouth symbol ๐Ÿ˜ฆ to use in websites, apps, blogs, and docs.

Unicode
U+1F626
HTML Code
😦
HEX Code
😦
CSS Code
\1F626
JS/JSON
\u1F626
Unix/C/PHP/JAVA
0x1F626
URL-encode
%F0%9F%98%A6

Customize Frowning Face With Open Mouth

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

๐Ÿ˜ฆ
  

How to use Frowning Face With Open Mouth Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ฆ</span>
HTML Code:
<span>&#128550;</span>
HEX Code:
<span>&#x1F626;</span>

Add with CSS

.frowning-face-with-open-mouth::before {
  content: '\\1F626';
}

Set it in JavaScript

document.querySelector('.frowning-face-with-open-mouth').textContent = '๐Ÿ˜ฆ';
copied