Persevering Face

๐Ÿ˜ฃ

Shortcodes

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

Unicode
U+1F623
HTML Code
😣
HEX Code
😣
CSS Code
\1F623
JS/JSON
\u1F623
Unix/C/PHP/JAVA
0x1F623
URL-encode
%F0%9F%98%A3

Customize Persevering Face

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

๐Ÿ˜ฃ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ฃ</span>
HTML Code:
<span>&#128547;</span>
HEX Code:
<span>&#x1F623;</span>

Add with CSS

.persevering-face::before {
  content: '\\1F623';
}

Set it in JavaScript

document.querySelector('.persevering-face').textContent = '๐Ÿ˜ฃ';
copied