HTML Entity for Circled Plus (⊕)

What You'll Learn
How to display the Circled Plus (⊕) in HTML using numeric references, named entities, and CSS escapes. This character is U+2295 (CIRCLED PLUS) in the Mathematical Operators block (U+2200–U+22FF). It denotes circled addition and the direct sum in formal math notation.
You can use the named entity ⊕, hex ⊕, decimal ⊕, or CSS \2295. Do not confuse ⊕ with Circled Minus U+2296 (⊖, ⊖), Circled Times U+2297 (⊗, ⊗), or plain Plus Sign U+002B (+).
⚡ Quick Reference — Circled Plus
U+2295Mathematical Operators block
⊕Hexadecimal reference
⊕Decimal reference
⊕Standard HTML entity
Name Value
──────────── ──────────
Unicode U+2295
Hex code ⊕
HTML code ⊕
Named entity ⊕
CSS code \2295Complete HTML Example
This example demonstrates the Circled Plus (⊕) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2295";
}
</style>
</head>
<body>
<p class="math">Circled Plus using Hexa Decimal: ⊕</p>
<p class="math">Circled Plus using HTML Code: ⊕</p>
<p class="math">Circled Plus using HTML Entity: ⊕</p>
<p class="math" id="point">Circled Plus using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Circled Plus entity is universally supported in all modern browsers:
👀 Live Preview
See the Circled Plus in math and notation contexts:
🧠 How It Works
Hexadecimal Code
⊕ uses the Unicode hexadecimal value 2295 to display the Circled Plus.
Decimal HTML Code
⊕ uses the decimal Unicode value 8853 to display the same character.
Named HTML Entity
⊕ is the standard named entity for U+2295—short for “operator plus.”
CSS Entity
\2295 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the Circled Plus glyph: ⊕. Unicode U+2295 sits in Mathematical Operators (U+2200–U+22FF).
Use Cases
The Circled Plus (⊕) commonly appears in:
Vector space direct sums and circled addition in algebra.
Disjoint union and formal set notation using circled plus.
Technical papers and research content with operator symbols.
Math tutorials, textbooks, and e-learning platforms.
Documentation referencing this symbol in formal specifications.
Unicode tables and math operator glossaries.
Use MathML or aria-label="circled plus operator" for screen readers.
💡 Best Practices
Do
- Prefer
⊕for readable math HTML source - Use math-friendly fonts (Cambria Math, STIX Two Math, serif)
- Keep entity style consistent within a document
- Consider MathML for complex equations
- Distinguish U+2295 from U+2296 Circled Minus in explanatory text
Don’t
- Confuse U+2295 (⊕) with U+2296 Circled Minus (⊖)
- Put CSS escape
\2295inside HTML text nodes - Assume every font renders Mathematical Operators identically
- Use ⊕ decoratively where a plain plus (+) is intended
- Mix entity styles randomly in one file
Key Takeaways
Named entity is the easiest option
⊕Numeric references also render ⊕
⊕ ⊕For CSS stylesheets, use the escape in the content property
\2295U+2295 CIRCLED PLUS — direct sum operator
Four methods, one glyph — all widely supported
❓ Frequently Asked Questions
⊕ (named entity), ⊕ (hex), ⊕ (decimal), or \2295 in CSS content. All produce ⊕.U+2295 (CIRCLED PLUS). Mathematical Operators block (U+2200–U+22FF). Hex 2295, decimal 8853.⊕, ⊕, or ⊕) go directly in markup. The CSS escape \2295 is used in stylesheets, typically in the content property of pseudo-elements.⊕ is the named entity for U+2295. Circled Minus is a different character: U+2296 (⊖) with ⊖.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, symbols, arrows, and more.
8 people found this page helpful
