Crying Face

๐Ÿ˜ข

Shortcodes

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

Unicode
U+1F622
HTML Code
😢
HEX Code
😢
CSS Code
\1F622
JS/JSON
\u1F622
Unix/C/PHP/JAVA
0x1F622
URL-encode
%F0%9F%98%A2

Customize Crying Face

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

๐Ÿ˜ข
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ข</span>
HTML Code:
<span>&#128546;</span>
HEX Code:
<span>&#x1F622;</span>

Add with CSS

.crying-face::before {
  content: '\\1F622';
}

Set it in JavaScript

document.querySelector('.crying-face').textContent = '๐Ÿ˜ข';
copied