Black Circle With Two White Dots

Shortcodes

Copy useful codes for black circle with two white dots symbol ⚉ to use in websites, apps, blogs, and docs.

Unicode
U+2689
HTML Code
⚉
HEX Code
⚉
CSS Code
2689
JS/JSON
u2689
Unix/C/PHP/JAVA
0x2689
URL-encode
%E2%9A%89

Customize Black Circle With Two White Dots

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

  

How to use Black Circle With Two White Dots Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⚉</span>
HTML Code:
<span>&#9865;</span>
HEX Code:
<span>&#x2689;</span>

Add with CSS

.black-circle-with-two-white-dots::before {
  content: '2689';
}

Set it in JavaScript

document.querySelector('.black-circle-with-two-white-dots').textContent = '⚉';
copied