Circled Plus

Shortcodes

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

Unicode
U+2295
HTML Code
⊕
HEX Code
⊕
CSS Code
\2295
JS/JSON
\u2295
Unix/C/PHP/JAVA
0x2295
URL-encode
%E2%8A%95
copied

Customize Circled Plus Symbol

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

Insert ⊕ Circled Plus using HTML

1. Copy-paste Circled Plus directly:
<span>⊕</span>
2. HTML Decimal Code:
<span>&#8853;</span>
3. Hexadecimal Code:
<span>&#x2295;</span>
Preview:

Add Circled Plus symbol with CSS

.circled-plus::before {
    content: '\\2295';
}
Preview: Circled Plus

Circled Plus JavaScript Code

1. Direct Symbol:
document.querySelector('.circled-plus').textContent = '⊕';
2. Unicode Escape for ⊕:
document.querySelector('.circled-plus').textContent = '\u2295';
Preview: