Smiling Face With Open Mouth

๐Ÿ˜ƒ

Shortcodes

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

Unicode
U+1F603
HTML Code
😃
HEX Code
😃
CSS Code
\1F603
JS/JSON
\u1F603
Unix/C/PHP/JAVA
0x1F603
URL-encode
%F0%9F%98%83

Customize Smiling Face With Open Mouth

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

๐Ÿ˜ƒ
  

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

Insert in HTML

1. Direct symbol:
<span>๐Ÿ˜ƒ</span>
HTML Code:
<span>&#128515;</span>
HEX Code:
<span>&#x1F603;</span>

Add with CSS

.smiling-face-with-open-mouth::before {
  content: '\\1F603';
}

Set it in JavaScript

document.querySelector('.smiling-face-with-open-mouth').textContent = '๐Ÿ˜ƒ';
copied