Circled Asterisk Operator

Shortcodes

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

Unicode
U+229B
HTML Code
⊛
HEX Code
⊛
CSS Code
\229B
JS/JSON
\u229B
Unix/C/PHP/JAVA
0x229B
URL-encode
%E2%8A%9B

Customize Circled Asterisk Operator

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

  

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

Insert in HTML

1. Direct symbol:
<span>⊛</span>
HTML Code:
<span>&#8859;</span>
HEX Code:
<span>&#x229B;</span>

Add with CSS

.circled-asterisk-operator::before {
  content: '\\229B';
}

Set it in JavaScript

document.querySelector('.circled-asterisk-operator').textContent = '⊛';
copied