Anguished Face

๐Ÿ˜ง

Shortcodes

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

Unicode
U+1F627
HTML Code
😧
HEX Code
😧
CSS Code
\1F627
JS/JSON
\u1F627
Unix/C/PHP/JAVA
0x1F627
URL-encode
%F0%9F%98%A7

Customize Anguished Face

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

๐Ÿ˜ง
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ง</span>
HTML Code:
<span>&#128551;</span>
HEX Code:
<span>&#x1F627;</span>

Add with CSS

.anguished-face::before {
  content: '\\1F627';
}

Set it in JavaScript

document.querySelector('.anguished-face').textContent = '๐Ÿ˜ง';
copied