White Frowning Face

Shortcodes

Copy useful codes for white frowning face symbol ☹ to use in websites, apps, blogs, and docs.

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

Customize White Frowning Face

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

  

How to use White Frowning Face Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☹</span>
HTML Code:
<span>&#9785;</span>
HEX Code:
<span>&#x2639;</span>

Add with CSS

.white-frowning-face::before {
  content: '\\2639';
}

Set it in JavaScript

document.querySelector('.white-frowning-face').textContent = '☹';
copied