Circled Ring Operator

Shortcodes

Copy and paste codes for Circled Ring Operator symbol ⊚ to use in your websites, apps, blogs, and more.

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

Customize Circled Ring Operator Symbol

Customize ⊚ symbol as you like and download Circled Ring Operator as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Circled Ring Operator symbol in HTML, CSS, and JS?

Insert ⊚ Circled Ring Operator using HTML

1. Copy-paste Circled Ring Operator directly:
<span>⊚</span>
2. HTML Decimal Code:
<span>&#8858;</span>
3. Hexadecimal Code:
<span>&#x229A;</span>
Preview:

Add Circled Ring Operator symbol with CSS

.circled-ring-operator::before {
    content: '\\229A';
}
Preview: Circled Ring Operator

Circled Ring Operator JavaScript Code

1. Direct Symbol:
document.querySelector('.circled-ring-operator').textContent = '⊚';
2. Unicode Escape for ⊚:
document.querySelector('.circled-ring-operator').textContent = '\u229A';
Preview: