Black Smiling Face

Shortcodes

Copy useful codes for black smiling face symbol ☻ to use in websites, apps, blogs, and docs.

Unicode
U+263B
Alt Code
2
HTML Code
☻
HEX Code
☻
CSS Code
\263B
JS/JSON
\u263B
Unix/C/PHP/JAVA
0x263B
URL-encode
%E2%98%BB

Customize Black Smiling Face

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

  

How to use Black Smiling Face Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>☻</span>
HTML Code:
<span>&#9787;</span>
HEX Code:
<span>&#x263B;</span>

Add with CSS

.black-smiling-face::before {
  content: '\\263B';
}

Set it in JavaScript

document.querySelector('.black-smiling-face').textContent = '☻';
copied