Frown

Shortcodes

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

Unicode
U+2322
HTML Code
⌢
HEX Code
⌢
CSS Code
\2322
JS/JSON
\u2322
Unix/C/PHP/JAVA
0x2322
URL-encode
%E2%8C%A2
copied

Customize Frown Symbol

Customize ⌢ symbol as you like and download Frown 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 Frown symbol in HTML, CSS, and JS?

Insert ⌢ Frown using HTML

1. Copy-paste Frown directly:
<span>⌢</span>
2. HTML Decimal Code:
<span>&#8994;</span>
3. Hexadecimal Code:
<span>&#x2322;</span>
Preview:

Add Frown symbol with CSS

.frown::before {
    content: '\\2322';
}
Preview: Frown

Frown JavaScript Code

1. Direct Symbol:
document.querySelector('.frown').textContent = '⌢';
2. Unicode Escape for ⌢:
document.querySelector('.frown').textContent = '\u2322';
Preview: