HTML Entity for Heavy Multiplication X (✖)

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

What You'll Learn

How to display the Heavy Multiplication X (✖) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2716 (HEAVY MULTIPLICATION X) in the Dingbats block (U+2700–U+27BF). It is a heavy or bold multiplication X—ideal for mathematical notation, close/dismiss buttons, error or invalid indicators, and lists where a strong X is needed beyond ASCII x or the multiplication sign × (U+00D7).

Render it with ✖, ✖, or CSS escape \2716. There is no named HTML entity. Do not confuse ✖ with U+271A (✚, heavy Greek cross) or U+2714 (✔, heavy check mark); each Dingbats symbol has a distinct glyph and meaning.

⚡ Quick Reference — Multiplication X

Unicode U+2716

Dingbats block

Hex Code ✖

Hexadecimal reference

HTML Code ✖

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2716
Hex code       ✖
HTML code      ✖
Named entity   (none)
CSS code       \2716
Meaning        Heavy multiplication X
Related        U+00D7 = multiplication (×)
               U+2714 = heavy check (✔)
               U+271A = Greek cross (✚)
1

Complete HTML Example

This example demonstrates the Heavy Multiplication X (✖) using hexadecimal code, decimal HTML code, and CSS content on a close button, invalid field, and math expression:

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

🌐 Browser Support

The Heavy Multiplication X (✖) is widely supported in modern browsers when the font includes Dingbats symbols:

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

👀 Live Preview

Heavy Multiplication X (✖) in context, compared with related symbols:

Close
Invalid bad@email ✖
Math 3 ✖ 4 = 12
Comparison ✖   ×   ✔
Numeric refs &#x2716; &#10006; \2716

🧠 How It Works

1

Hexadecimal Code

&#x2716; uses the Unicode hexadecimal value 2716 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2716 is used in CSS stylesheets, particularly in content on ::before or ::after for close buttons, errors, and list markers.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2716 is in the Dingbats block. Next: North East Arrow (➚).

Use Cases

The Heavy Multiplication X (✖) is commonly used in:

✖ Math

Multiplication notation in equations, formulas, and math-heavy content.

✕ Close

Modal close buttons, dismiss icons, and remove or cancel indicators.

⚠ Errors

Form validation, error messages, and not allowed or wrong indicators.

📋 Lists

Unchecked items, excluded features, and comparison tables.

🔨 CSS content

content: "\2716" on pseudo-elements without extra HTML.

🧮 Calculators

Multiplication key or result indicator in calculator-style UIs.

💡 Best Practices

Do

  • Use aria-label="Close" or visible text on close buttons with ✖
  • Set aria-invalid="true" when ✖ marks invalid fields
  • Declare UTF-8 with <meta charset="utf-8">
  • Use &times; for standard multiplication when semantics matter
  • Keep one numeric style (hex or decimal) per project
  • Prefer semantic buttons over div-only close controls

Don’t

  • Use ✖ alone on icon buttons without accessible names
  • Confuse U+2716 (✖) with U+271A (✚) or U+2714 (✔)
  • Expect a named HTML entity for U+2716
  • Use CSS \2716 in HTML text nodes
  • Rely on ✖ alone to convey errors without text or ARIA

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2716

&#x2716; &#10006;
2

For CSS, use \2716 in the content property

3

Unicode U+2716 — heavy multiplication X (✖)

4

Distinct from × (U+00D7) and heavy check U+2714 (✔)

❓ Frequently Asked Questions

Use &#x2716; (hex), &#10006; (decimal), or \2716 in CSS content. There is no named entity. All three methods render the symbol (✖) correctly.
U+2716 (HEAVY MULTIPLICATION X). Dingbats block. Hex 2716, decimal 10006. The symbol (✖) is a heavy bold multiplication X, often used for multiplication, close, or error indicators.
For mathematical expressions and equations, close or dismiss buttons in UI, error or invalid state indicators, lists and checklists, and any content that needs a bold X or multiplication symbol.
HTML references (&#10006; or &#x2716;) go in markup. The CSS escape \2716 is used in stylesheets, typically on ::before or ::after. Both produce ✖.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2716 uses numeric hex (&#x2716;) or decimal (&#10006;) codes, which is standard for Dingbats symbols.

Explore More HTML Entities!

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