HTML Entity for Squared Times (⊠)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+22A0

What Is Squared Times?

Squared times (⊠) is the Unicode character at U+22A0 in Mathematical Operators. Official name: SQUARED TIMES. It is a boxed (square) multiplication operator used in specialized math notation.

Remember
Character     ⊠
Unicode       U+22A0
Named entity  ⊠
Hex entity    ⊠
Decimal       ⊠
CSS escape    \22A0
Not the same  × · ⊞ · ⊡

Prefer ⊠ in HTML markup (&BoxTimes; is an alias). You can also type ⊠ in UTF-8, or use numeric forms when needed. For an ordinary multiplication sign, use × (×) instead.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊠HTML markup (preferred)
Alias&BoxTimes;Same glyph as ⊠
Direct character⊠HTML text (UTF-8)
Hex entity⊠HTML markup
Decimal entity⊠HTML markup
CSS escape\22A0Stylesheet content
Multiplication sign (related)× (U+00D7)Named ×

When to Use Which

SituationUse
Squared / boxed times⊠ or type ⊠
Ordinary multiplication sign× (×)
Squared plus / minus⊞ · ⊟
Squared dot operator⊡ (⊡)
Generated text via ::before / ::aftercontent: "\22A0"

Live Preview

Squared times rendered alone and next to related operators.

Large glyph ⊠
Notation A ⊠ B
Compared ⊠ (timesb)  |  × (times)  |  ⊞ (plusb)
Hint Compare: Boxed ⊠ vs Times × vs Plus ⊞
With entities Named: ⊠ | Hex: ⊠ | Decimal: ⊠

Complete HTML Example

One page that shows squared times with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to produce ⊠, plus a short notation example.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Squared Times (⊠) in HTML</title>
  <style>
    #point::after {
      content: "\22A0";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &timesb;</p>
  <p>Using Hex Code: &#x22A0;</p>
  <p>Using HTML Code: &#8864;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Typed directly: ⊠</p>
  <p>Notation: A &timesb; B</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &timesb; is the HTML5 name for U+22A0 → ⊠. Best default in markup.

2. Hex: U+22A0 → &#x22A0; in HTML. Same glyph as the named form.

3. Decimal: same code point as 8864 → &#8864;. Same result as hex and named.

4. CSS: use \22A0 in content (not an HTML entity). #point::after appends that ⊠ after the paragraph text.

5. Typed / notation: paste ⊠ in UTF-8, or write A &timesb; B for a short expression.

Pitfalls & Tips

Common mistakes when working with &timesb;.

vs ×

Not an ordinary times sign

U+00D7 (×, &times;) is the common multiplication sign. U+22A0 is the squared (boxed) form.

vs ⊞

Not squared plus

⊞ (U+229E, &plusb;) is a related boxed operator, not times. Do not swap them.

Name

Remember &timesb;

The named entity is &timesb; — not &times; (that is U+00D7).

CSS vs HTML

Do not mix escapes

\22A0 belongs in CSS strings. &timesb; / &#x22A0; / &#8864; belong in HTML.

Semicolon

End named entities

Always finish with ; — write &timesb;, not &timesb.

A11y

Name the operator in context

Screen readers may announce this symbol unevenly. Prefer nearby words like “squared times” when the glyph carries meaning alone.

Browser Support

Squared times (U+22A0) and its entity forms (&timesb;, &#x22A0;, &#8864;, CSS \\22A0) are supported in all mainstream browsers. Visible glyphs depend on Mathematical Operators font coverage.

✓ Universal support

Squared Times (&#x22A0;)

Encode with named, hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+22A0 / entities Full support

Bottom line: Prefer &timesb; in HTML. Use &#x22A0; / &#8864; when numeric form is required, and \\22A0 only inside CSS content.

Key Takeaways

  • Unicode: squared times is U+22A0 (decimal 8864) — glyph ⊠.
  • HTML: prefer &timesb; — also &#x22A0; / &#8864; / type ⊠.
  • CSS: use \22A0 inside content for generated text.
  • Meaning: ⊠ is boxed times — not × (&times;), not ⊞.

One line: U+22A0 → &timesb; / &#x22A0; / &#8864; / CSS \22A0.

Frequently Asked Questions

Use &timesb; (named), &#x22A0; (hex), &#8864; (decimal), type ⊠ directly in UTF-8, or the CSS escape \22A0 in content. Prefer &timesb; in normal HTML.
U+22A0 (SQUARED TIMES). Hex 22A0, decimal 8864. It belongs to Mathematical Operators (U+2200–U+22FF).
Yes. Use &timesb; (or the alias &BoxTimes;). Numeric forms &#8864; and &#x22A0; also work.
No. ⊠ is U+22A0 (&timesb;). × is U+00D7 (&times;). ⊞ is U+229E (&plusb;, squared plus).
Use it for boxed-times / squared-times math notation in technical and academic pages — not as a substitute for an ordinary multiplication sign ×.
HTML entities (&timesb;, &#8864;, or &#x22A0;) go in markup. The CSS escape \22A0 goes in stylesheet strings (usually content on ::before/::after).

Did you know?

Squared times is Unicode U+22A0 (decimal 8864) — glyph ⊠ in Mathematical Operators (U+2200–U+22FF). HTML5 names it &timesb; (also &BoxTimes;). Official name: SQUARED TIMES. Do not confuse with multiplication sign U+00D7 (&times;, ×) or squared plus U+229E (&plusb;, ⊞).

Next: Squat Black Right Arrow

Learn the HTML entity for squat black rightwards arrowhead (U+27A7).

Continue tutorial →

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