Smile

Shortcodes

Copy useful codes for smile symbol ⌣ to use in websites, apps, blogs, and docs.

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

Customize Smile

Customize ⌣, download it as SVG or PNG, or copy the generated HTML snippet.

  

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

Insert in HTML

1. Direct symbol:
<span>⌣</span>
HTML Code:
<span>&#8995;</span>
HEX Code:
<span>&#x2323;</span>

Add with CSS

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

Set it in JavaScript

document.querySelector('.smile').textContent = '⌣';
copied