Ring Operator

Shortcodes

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

Unicode
U+2218
HTML Code
∘
HEX Code
∘
CSS Code
\2218
JS/JSON
\u2218
Unix/C/PHP/JAVA
0x2218
URL-encode
%E2%88%A8

Customize Ring Operator

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

  

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

Insert in HTML

1. Direct symbol:
<span>∘</span>
HTML Code:
<span>&#8728;</span>
HEX Code:
<span>&#x2218;</span>

Add with CSS

.ring-operator::before {
  content: '\\2218';
}

Set it in JavaScript

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