Selfie

๐Ÿคณ

Shortcodes

Copy useful codes for selfie symbol ๐Ÿคณ to use in websites, apps, blogs, and docs.

Unicode
U+1F933
HTML Code
🤳
HEX Code
🤳
CSS Code
\1F933
JS/JSON
\u1F933
Unix/C/PHP/JAVA
0x1F933
URL-encode
%F0%9F%A4%B3

Customize Selfie

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

๐Ÿคณ
  

How to use Selfie Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿคณ</span>
HTML Code:
<span>&#129331;</span>
HEX Code:
<span>&#x1F933;</span>

Add with CSS

.selfie::before {
  content: '\\1F933';
}

Set it in JavaScript

document.querySelector('.selfie').textContent = '๐Ÿคณ';
copied