Goggles

๐Ÿฅฝ

Shortcodes

Copy useful codes for goggles symbol ๐Ÿฅฝ to use in websites, apps, blogs, and docs.

Unicode
U+1F97D
HTML Code
🥽
HEX Code
🥽
CSS Code
\1F97D
JS/JSON
\u1F97D
Unix/C/PHP/JAVA
0x1F97D
URL-encode
%F0%9F%A5%BD

Customize Goggles

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

๐Ÿฅฝ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿฅฝ</span>
HTML Code:
<span>&#129405;</span>
HEX Code:
<span>&#x1F97D;</span>

Add with CSS

.goggles::before {
  content: '\\1F97D';
}

Set it in JavaScript

document.querySelector('.goggles').textContent = '๐Ÿฅฝ';
copied