Smiling Face With Sunglasses

๐Ÿ˜Ž

Shortcodes

Copy useful codes for smiling face with sunglasses symbol ๐Ÿ˜Ž to use in websites, apps, blogs, and docs.

Unicode
U+1F60E
HTML Code
😎
HEX Code
😎
CSS Code
\1F60E
JS/JSON
\u1F60E
Unix/C/PHP/JAVA
0x1F60E
URL-encode
%F0%9F%98%8E

Customize Smiling Face With Sunglasses

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

๐Ÿ˜Ž
  

How to use Smiling Face With Sunglasses Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜Ž</span>
HTML Code:
<span>&#128526;</span>
HEX Code:
<span>&#x1F60E;</span>

Add with CSS

.smiling-face-with-sunglasses::before {
  content: '\\1F60E';
}

Set it in JavaScript

document.querySelector('.smiling-face-with-sunglasses').textContent = '๐Ÿ˜Ž';
copied