White Circle With Two Dots

Shortcodes

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

Unicode
U+2687
HTML Code
⚇
HEX Code
⚇
CSS Code
2687
JS/JSON
u2687
Unix/C/PHP/JAVA
0x2687
URL-encode
%E2%9A%87

Customize White Circle With Two Dots

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

  

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

Insert in HTML

1. Direct symbol:
<span>⚇</span>
HTML Code:
<span>&#9863;</span>
HEX Code:
<span>&#x2687;</span>

Add with CSS

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

Set it in JavaScript

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