Circled Ring Operator

Shortcodes

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

Unicode
U+229A
HTML Code
⊚
HEX Code
⊚
CSS Code
\229A
JS/JSON
\u229A
Unix/C/PHP/JAVA
0x229A
URL-encode
%E2%8A%9A

Customize Circled Ring Operator

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊚</span>
HTML Code:
<span>&#8858;</span>
HEX Code:
<span>&#x229A;</span>

Add with CSS

.circled-ring-operator::before {
  content: '\\229A';
}

Set it in JavaScript

document.querySelector('.circled-ring-operator').textContent = '⊚';
copied