Circled Times

Shortcodes

Copy and paste codes for Circled Times symbol ⊗ to use in your websites, apps, blogs, and more.

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

Customize Circled Times Symbol

Customize ⊗ symbol as you like and download Circled Times 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 Times symbol in HTML, CSS, and JS?

Insert ⊗ Circled Times using HTML

1. Copy-paste Circled Times directly:
<span>⊗</span>
2. HTML Decimal Code:
<span>&#8855;</span>
3. Hexadecimal Code:
<span>&#x2297;</span>
Preview:

Add Circled Times symbol with CSS

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

Circled Times JavaScript Code

1. Direct Symbol:
document.querySelector('.circled-times').textContent = '⊗';
2. Unicode Escape for ⊗:
document.querySelector('.circled-times').textContent = '\u2297';
Preview: