Astonished Face

๐Ÿ˜ฒ

Shortcodes

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

Unicode
U+1F632
HTML Code
😲
HEX Code
😲
CSS Code
\1F632
JS/JSON
\u1F632
Unix/C/PHP/JAVA
0x1F632
URL-encode
%F0%9F%98%B2

Customize Astonished Face

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

๐Ÿ˜ฒ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ฒ</span>
HTML Code:
<span>&#128562;</span>
HEX Code:
<span>&#x1F632;</span>

Add with CSS

.astonished-face::before {
  content: '\\1F632';
}

Set it in JavaScript

document.querySelector('.astonished-face').textContent = '๐Ÿ˜ฒ';
copied