White Frowning Face

Shortcodes

Copy and paste codes for White Frowning Face symbol ☹ to use in your websites, apps, blogs, and more.

Unicode
U+2639
HTML Code
☹
HEX Code
☹
CSS Code
\2639
JS/JSON
\u2639
Unix/C/PHP/JAVA
0x2639
URL-encode
%E2%98%B9
copied

Customize White Frowning Face Symbol

Customize ☹ symbol as you like and download White Frowning Face 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 White Frowning Face symbol in HTML, CSS, and JS?

Insert ☹ White Frowning Face using HTML

1. Copy-paste White Frowning Face directly:
<span>☹</span>
2. HTML Decimal Code:
<span>&#9785;</span>
3. Hexadecimal Code:
<span>&#x2639;</span>
Preview:

Add White Frowning Face symbol with CSS

.white-frowning-face::before {
    content: '\\2639';
}
Preview: White Frowning Face

White Frowning Face JavaScript Code

1. Direct Symbol:
document.querySelector('.white-frowning-face').textContent = '☹';
2. Unicode Escape for ☹:
document.querySelector('.white-frowning-face').textContent = '\u2639';
Preview: