Face With Rolling Eyes

๐Ÿ™„

Shortcodes

Copy useful codes for face with rolling eyes symbol ๐Ÿ™„ to use in websites, apps, blogs, and docs.

Unicode
U+1F644
HTML Code
🙄
HEX Code
🙄
CSS Code
\1F644
JS/JSON
\u1F644
Unix/C/PHP/JAVA
0x1F644
URL-encode
%F0%9F%99%84

Customize Face With Rolling Eyes

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

๐Ÿ™„
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ™„</span>
HTML Code:
<span>&#128580;</span>
HEX Code:
<span>&#x1F644;</span>

Add with CSS

.face-with-rolling-eyes::before {
  content: '\\1F644';
}

Set it in JavaScript

document.querySelector('.face-with-rolling-eyes').textContent = '๐Ÿ™„';
copied