Circled Dot Operator

Shortcodes

Copy useful codes for circled dot operator symbol ⊙ to use in websites, apps, blogs, and docs.

Unicode
U+2299
HTML Code
⊙
HEX Code
⊙
CSS Code
\2299
JS/JSON
\u2299
Unix/C/PHP/JAVA
0x2299
URL-encode
%E2%8A%99

Customize Circled Dot Operator

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

  

How to use Circled Dot Operator Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊙</span>
HTML Code:
<span>&#8857;</span>
HEX Code:
<span>&#x2299;</span>

Add with CSS

.circled-dot-operator::before {
  content: '\\2299';
}

Set it in JavaScript

document.querySelector('.circled-dot-operator').textContent = '⊙';
copied