Pouting Face

๐Ÿ˜ก

Shortcodes

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

Unicode
U+1F621
HTML Code
😡
HEX Code
😡
CSS Code
\1F621
JS/JSON
\u1F621
Unix/C/PHP/JAVA
0x1F621
URL-encode
%F0%9F%98%A1

Customize Pouting Face

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

๐Ÿ˜ก
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ก</span>
HTML Code:
<span>&#128545;</span>
HEX Code:
<span>&#x1F621;</span>

Add with CSS

.pouting-face::before {
  content: '\\1F621';
}

Set it in JavaScript

document.querySelector('.pouting-face').textContent = '๐Ÿ˜ก';
copied