Circled Division Slash

Shortcodes

Copy useful codes for circled division slash symbol ⊘ to use in websites, apps, blogs, and docs.

Unicode
U+2298
HTML Code
⊘
HEX Code
⊘
CSS Code
\2298
JS/JSON
\u2298
Unix/C/PHP/JAVA
0x2298
URL-encode
%E2%8A%98

Customize Circled Division Slash

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

  

How to use Circled Division Slash Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊘</span>
HTML Code:
<span>&#8856;</span>
HEX Code:
<span>&#x2298;</span>

Add with CSS

.circled-division-slash::before {
  content: '\\2298';
}

Set it in JavaScript

document.querySelector('.circled-division-slash').textContent = '⊘';
copied