HTML Entity for Circled Plus (⊕)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2295

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

Unicode U+2295

Mathematical Operators block

Hex Code ⊕

Hexadecimal reference

HTML Code ⊕

Decimal reference

Named Entity ⊕

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2295
Hex code       ⊕
HTML code      ⊕
Named entity   ⊕
CSS code       \2295
1

Complete HTML Example

This example demonstrates the Circled Plus (⊕) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2295";
  }
 </style>
</head>
<body>
<p class="math">Circled Plus using Hexa Decimal: &#x2295;</p>
<p class="math">Circled Plus using HTML Code: &#8853;</p>
<p class="math">Circled Plus using HTML Entity: &oplus;</p>
<p class="math" id="point">Circled Plus using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled Plus entity is universally supported in all modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Circled Plus in math and notation contexts:

Direct sum V ⊕ W
Named entity x &oplus; y
Large glyph
vs related ops Plus: ⊕ (U+2295)   Minus: ⊖ (U+2296)   Times: ⊗ (U+2297)
Monospace refs &#x2295; &#8853; &oplus; \2295

🧠 How It Works

1

Hexadecimal Code

&#x2295; uses the Unicode hexadecimal value 2295 to display the Circled Plus.

HTML markup
2

Decimal HTML Code

&#8853; uses the decimal Unicode value 8853 to display the same character.

HTML markup
3

Named HTML Entity

&oplus; is the standard named entity for U+2295—short for “operator plus.”

HTML markup
4

CSS Entity

\2295 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

∑ Direct sum

Vector space direct sums and circled addition in algebra.

∪ Set theory

Disjoint union and formal set notation using circled plus.

📐 Scientific docs

Technical papers and research content with operator symbols.

📚 Education

Math tutorials, textbooks, and e-learning platforms.

💻 Specs & APIs

Documentation referencing this symbol in formal specifications.

🔤 Symbol references

Unicode tables and math operator glossaries.

♿ Accessibility

Use MathML or aria-label="circled plus operator" for screen readers.

💡 Best Practices

Do

  • Prefer &oplus; 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 \2295 inside 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

1

Named entity is the easiest option

&oplus;
2

Numeric references also render ⊕

&#x2295; &#8853;
3

For CSS stylesheets, use the escape in the content property

\2295
4

U+2295 CIRCLED PLUS — direct sum operator

5

Four methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &oplus; (named entity), &#x2295; (hex), &#8853; (decimal), or \2295 in CSS content. All produce ⊕.
U+2295 (CIRCLED PLUS). Mathematical Operators block (U+2200–U+22FF). Hex 2295, decimal 8853.
For direct sum notation, circled addition, set theory, scientific documentation, educational math content, and operator symbol reference pages.
HTML entities (&oplus;, &#8853;, or &#x2295;) go directly in markup. The CSS escape \2295 is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &oplus; is the named entity for U+2295. Circled Minus is a different character: U+2296 (⊖) with &ominus;.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, arrows, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful