Face With Pleading Eyes

๐Ÿฅบ

Shortcodes

Copy useful codes for face with pleading eyes symbol ๐Ÿฅบ to use in websites, apps, blogs, and docs.

Unicode
U+1F97A
HTML Code
🥺
HEX Code
🥺
CSS Code
\1F97A
JS/JSON
\u1F97A
Unix/C/PHP/JAVA
0x1F97A
URL-encode
%F0%9F%A5%BA

Customize Face With Pleading Eyes

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

๐Ÿฅบ
  

How to use Face With Pleading Eyes Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅบ</span>
HTML Code:
<span>&#129402;</span>
HEX Code:
<span>&#x1F97A;</span>

Add with CSS

.face-with-pleading-eyes::before {
  content: '\\1F97A';
}

Set it in JavaScript

document.querySelector('.face-with-pleading-eyes').textContent = '๐Ÿฅบ';
copied