HTML Entity for Squared Plus (⊞)

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

What You'll Learn

How to display the Squared Plus (⊞) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+229E (SQUARED PLUS) in the Mathematical Operators block (U+2200–U+22FF)—a boxed plus sign used in mathematical notation.

Render it with ⊞, ⊞, ⊞, or CSS \229E. For complex formulas, consider MathML or LaTeX renderers; for inline operator symbols, HTML entities work well.

⚡ Quick Reference — Squared Plus

Unicode U+229E

Mathematical Operators

Hex Code ⊞

Hexadecimal reference

HTML Code ⊞

Decimal reference

Named Entity ⊞

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+229E
Hex code       ⊞
HTML code      ⊞
Named entity   ⊞
CSS code       \229E
Meaning        Squared plus
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ⊞ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\229E";
  }
 </style>
</head>
<body>
<p>Squared plus (named): &plusb;</p>
<p>Squared plus (hex): &#x229E;</p>
<p>Squared plus (decimal): &#8862;</p>
<p id="point">Squared plus (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Squared Plus (⊞) is supported in all modern browsers when fonts include Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the squared plus operator in mathematical contexts:

Single symbol
Named entity &plusb; renders as ⊞
In notation A ⊞ B
Related operator ⊞ (plus)  |  ⊟ (minus, &minusb;)
Numeric refs &plusb; &#x229E; &#8862; \229E

🧠 How It Works

1

Named HTML Entity

&plusb; is the semantic named entity for the squared plus operator—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x229E; uses Unicode hexadecimal 229E to display ⊞ in HTML markup.

HTML markup
3

Decimal HTML Code

&#8862; uses decimal Unicode value 8862 for the same character.

HTML markup
4

CSS Entity

\229E is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+229E in Mathematical Operators (U+2200–U+22FF).

Use Cases

Squared Plus (⊞) commonly appears in:

📐 Mathematical notation

Equations and formulas using boxed plus operators.

📄 Technical documentation

API references and developer guides with math operator notation.

📚 Academic papers

Research documents and scholarly publications on mathematical concepts.

🏫 Educational content

Tutorials and instructional materials about mathematical operators.

🔬 Scientific publications

Technical reports requiring precise mathematical notation.

🛠 Formula editors

Web-based math tools and interactive learning applications.

💡 Best Practices

Do

  • Use &plusb; for readable source markup
  • Provide context when using ⊞ in mathematical expressions
  • Use MathML or dedicated math renderers for complex nested formulas
  • Pick one entity style (named, hex, or decimal) per project
  • Test rendering with math-friendly fonts

Don’t

  • Use padded Unicode notation like U+0229E—the correct value is U+229E
  • Use CSS \0229E with a leading zero—prefer \229E
  • Confuse ⊞ with regular plus + (&plus;, U+002B)
  • Expect HTML entities alone to handle full equation layout
  • Put CSS escape \229E in HTML text nodes

Key Takeaways

1

Four HTML/CSS references all render ⊞

&plusb; &#x229E; &#8862;
2

For CSS stylesheets, use \229E in the content property

3

Unicode U+229E — SQUARED PLUS (⊞)

4

&plusb; is the standard named entity for this operator

5

Previous: Squared Minus   Next: Squared Times

❓ Frequently Asked Questions

Use &plusb; (named), &#x229E; (hex), &#8862; (decimal), or \229E in CSS content. All four render ⊞.
U+229E (SQUARED PLUS). Mathematical Operators (U+2200–U+22FF). Hex 229E, decimal 8862, named &plusb;.
For mathematical notation, technical documentation, academic papers, educational content, scientific publications, and any content requiring precise mathematical operator representation.
The named entity &plusb; is more readable and easier to remember. Numeric codes (&#8862; or &#x229E;) are explicit and work in all contexts. Both produce ⊞; prefer the named entity for readability.
HTML references (&plusb;, &#8862;, or &#x229E;) go in markup. The CSS escape \229E is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — math operators, symbols, 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