Tired Face

๐Ÿ˜ซ

Shortcodes

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

Unicode
U+1F62B
HTML Code
😫
HEX Code
😫
CSS Code
\1F62B
JS/JSON
\u1F62B
Unix/C/PHP/JAVA
0x1F62B
URL-encode
%F0%9F%98%AB

Customize Tired Face

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

๐Ÿ˜ซ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ซ</span>
HTML Code:
<span>&#128555;</span>
HEX Code:
<span>&#x1F62B;</span>

Add with CSS

.tired-face::before {
  content: '\\1F62B';
}

Set it in JavaScript

document.querySelector('.tired-face').textContent = '๐Ÿ˜ซ';
copied