Lying Face

๐Ÿคฅ

Shortcodes

Copy useful codes for lying face symbol ๐Ÿคฅ to use in websites, apps, blogs, and docs.

Unicode
U+1F925
HTML Code
🤥
HEX Code
🤥
CSS Code
\1F925
JS/JSON
\u1F925
Unix/C/PHP/JAVA
0x1F925
URL-encode
%F0%9F%A4%A5

Customize Lying Face

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

๐Ÿคฅ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿคฅ</span>
HTML Code:
<span>&#129317;</span>
HEX Code:
<span>&#x1F925;</span>

Add with CSS

.lying-face::before {
  content: '\\1F925';
}

Set it in JavaScript

document.querySelector('.lying-face').textContent = '๐Ÿคฅ';
copied