Smile

Shortcodes

Copy and paste codes for Smile symbol ⌣ to use in your websites, apps, blogs, and more.

Unicode
U+2323
HTML Code
⌣
HEX Code
⌣
CSS Code
\2323
JS/JSON
\u2323
Unix/C/PHP/JAVA
0x2323
URL-encode
%E2%8C%A3
copied

Customize Smile Symbol

Customize ⌣ symbol as you like and download Smile as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Smile symbol in HTML, CSS, and JS?

Insert ⌣ Smile using HTML

1. Copy-paste Smile directly:
<span>⌣</span>
2. HTML Decimal Code:
<span>&#8995;</span>
3. Hexadecimal Code:
<span>&#x2323;</span>
Preview:

Add Smile symbol with CSS

.smile::before {
    content: '\\2323';
}
Preview: Smile

Smile JavaScript Code

1. Direct Symbol:
document.querySelector('.smile').textContent = '⌣';
2. Unicode Escape for ⌣:
document.querySelector('.smile').textContent = '\u2323';
Preview: