HTML Entity for Multiplication X (✕)

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

What You'll Learn

How to display the Multiplication X symbol (✕) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2715 (MULTIPLICATION X) in the Dingbats block (U+2700–U+27BF)—a lightweight cross glyph often used for close buttons, dismiss icons, and dingbat typography.

Render it with ✕, ✕, or CSS escape \2715. There is no named HTML entity. Do not confuse ✕ with the multiplication sign × (U+00D7, ×) used for math and dimensions—they are different Unicode characters.

⚡ Quick Reference — Multiplication X

Unicode U+2715

Dingbats

Hex Code ✕

Hexadecimal reference

HTML Code ✕

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2715
Hex code       ✕
HTML code      ✕
Named entity   (none)
CSS code       \2715
Meaning        Multiplication X (dingbat cross)
Related        U+00D7 = multiplication sign (×, ×)
               U+2716 = heavy multiplication x (✖)
1

Complete HTML Example

This example demonstrates the Multiplication X symbol (✕) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2715";
  }
 </style>
</head>
<body>
<p>Multiplication X using Hexadecimal: &#x2715;</p>
<p>Multiplication X using HTML Code: &#10005;</p>
<p id="point">Multiplication X using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2715 is supported in modern browsers; use a font with Dingbats coverage for consistent glyphs:

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

👀 Live Preview

See the Multiplication X symbol (✕) in UI and typography contexts:

Close button ✕ Close
Dismiss icon
Large glyph
vs multiplication sign ✕ Multiplication X   × times sign
Numeric refs &#x2715; &#10005; \2715

🧠 How It Works

1

Hexadecimal Code

&#x2715; uses the Unicode hexadecimal value 2715 to display Multiplication X. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2715 in Dingbats. For the math times operator, use Multiplication Sign (×, &times;).

Use Cases

The Multiplication X symbol (✕) is commonly used in:

✖ Close / dismiss

Modal close buttons, toast dismiss icons, and panel toggles.

📱 UI design

Lightweight X markers in menus, tags, and chip remove buttons.

📄 Typography

Dingbat crosses in decorative or symbolic text layouts.

🎨 Icons

Simple cancel or remove glyphs without image assets.

📚 Reference

Unicode charts and HTML entity documentation.

🌐 Symbol guides

Character pickers and special-symbol cheat sheets.

💡 Best Practices

Do

  • Use numeric codes &#x2715; or &#10005; in HTML markup
  • Add aria-label="Close" when ✕ acts as a dismiss control
  • Use &times; (×) for math and dimensions instead
  • Ensure sufficient touch target size for interactive close icons
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ✕ (Multiplication X) with × (multiplication sign)
  • Use ✕ alone as a close button without accessible label or text
  • Put CSS escape \2715 in HTML text nodes
  • Assume every X-shaped glyph is U+2715 across fonts
  • Rely on color alone to convey dismiss meaning

Key Takeaways

1

Hex, decimal, and CSS all render ✕

&#x2715; &#10005;
2

For CSS stylesheets, use the escape in the content property

\2715
3

Unicode U+2715 — MULTIPLICATION X

4

No named HTML entity—use numeric references

5

Math times: Multiplication Sign (×, &times;)

❓ Frequently Asked Questions

Use &#x2715; (hex), &#10005; (decimal), or \2715 in CSS content. All produce ✕. There is no named entity.
U+2715 (MULTIPLICATION X). Dingbats block (U+2700–U+27BF). Hex 2715, decimal 10005.
For close/dismiss UI icons, lightweight cancel markers, dingbat crosses, and symbol reference content. For math equations, use the multiplication sign (×) instead.
✕ (U+2715) is Multiplication X in Dingbats—often used as a close icon. × (U+00D7, &times;) is the multiplication sign for math and dimensions. Different code points and typical usage.
HTML references (&#10005; or &#x2715;) go directly in markup. The CSS escape \2715 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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