Circled Times

Shortcodes

Copy useful codes for circled times symbol ⊗ to use in websites, apps, blogs, and docs.

Unicode
U+2297
HTML Code
⊗
HEX Code
⊗
CSS Code
\2297
JS/JSON
\u2297
Unix/C/PHP/JAVA
0x2297
URL-encode
%E2%8A%97

Customize Circled Times

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

  

How to use Circled Times Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊗</span>
HTML Code:
<span>&#8855;</span>
HEX Code:
<span>&#x2297;</span>

Add with CSS

.circled-times::before {
  content: '\\2297';
}

Set it in JavaScript

document.querySelector('.circled-times').textContent = '⊗';
copied