HTML Entity for Circled Times (⊗)

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

What You'll Learn

How to display the Circled Times (⊗) in HTML using numeric references, named entities, and CSS escapes. This character is U+2297 (CIRCLED TIMES) in the Mathematical Operators block (U+2200–U+22FF). It denotes the tensor product and circled multiplication in formal math notation.

You can use the named entity ⊗, hex ⊗, decimal ⊗, or CSS \2297. Do not confuse ⊗ with Circled Dot Operator U+2299 (⊙, ⊙), Circled Ring Operator U+229A (⊚, ⊚), or plain Multiplication Sign U+00D7 (×).

⚡ Quick Reference — Circled Times

Unicode U+2297

Mathematical Operators block

Hex Code ⊗

Hexadecimal reference

HTML Code ⊗

Decimal reference

Named Entity ⊗

Standard HTML entity

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

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2297";
  }
 </style>
</head>
<body>
<p class="math">Circled Times using Hexa Decimal: &#x2297;</p>
<p class="math">Circled Times using HTML Code: &#8855;</p>
<p class="math">Circled Times using HTML Entity: &otimes;</p>
<p class="math" id="point">Circled Times using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Circled Times 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 Times in math and notation contexts:

Tensor product V ⊗ W
Named entity A &otimes; B
Large glyph
vs related ops Times: ⊗ (U+2297)   Dot: ⊙ (U+2299)   Plus: ⊕ (U+2295)
Monospace refs &#x2297; &#8855; &otimes; \2297

🧠 How It Works

1

Hexadecimal Code

&#x2297; uses the Unicode hexadecimal value 2297 to display the Circled Times.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&otimes; is the standard named entity for U+2297—short for “operator times.”

HTML markup
4

CSS Entity

\2297 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 Times glyph: . Unicode U+2297 sits in Mathematical Operators (U+2200–U+22FF).

Use Cases

The Circled Times (⊗) commonly appears in:

⊗ Tensor product

Vector space tensor products in linear algebra and physics.

∑ Math notation

Equations and formal notation using the circled times operator.

📐 Scientific docs

Technical papers in math, physics, and quantum mechanics.

📚 Education

Linear algebra tutorials, textbooks, and e-learning platforms.

💻 ML & libraries

Documentation for tensor and Kronecker product notation.

🔤 Symbol references

Unicode tables and math operator glossaries.

♿ Accessibility

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

💡 Best Practices

Do

  • Prefer &otimes; 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 tensor product (⊗) from Hadamard product (⊙)

Don’t

  • Confuse U+2297 (⊗) with U+2299 Circled Dot Operator (⊙)
  • Put CSS escape \2297 inside HTML text nodes
  • Assume every font renders Mathematical Operators identically
  • Use ⊗ decoratively where plain × is intended
  • Mix entity styles randomly in one file

Key Takeaways

1

Named entity is the easiest option

&otimes;
2

Numeric references also render ⊗

&#x2297; &#8855;
3

For CSS stylesheets, use the escape in the content property

\2297
4

U+2297 CIRCLED TIMES — tensor product

5

Four methods, one glyph — all widely supported

❓ Frequently Asked Questions

Use &otimes; (named entity), &#x2297; (hex), &#8855; (decimal), or \2297 in CSS content. All produce ⊗.
U+2297 (CIRCLED TIMES). Mathematical Operators block (U+2200–U+22FF). Hex 2297, decimal 8855.
For tensor product notation, circled multiplication, linear algebra, scientific documentation, educational math content, and operator symbol reference pages.
HTML entities (&otimes;, &#8855;, or &#x2297;) go directly in markup. The CSS escape \2297 is used in stylesheets, typically in the content property of pseudo-elements.
Yes. &otimes; is the named entity for U+2297. Circled Dot Operator is a different character: U+2299 (⊙) with &odot;.

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