HTML Entity for Heavy Ballot X (✘)

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

What You'll Learn

How to display the Heavy Ballot X symbol (✘) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2718 (HEAVY BALLOT X) in the Dingbats block (U+2700–U+27BF). It is a bold X used for wrong answers, unchecked items, negative feedback, and “no” or “false” in checklists, quizzes, and forms.

Render it with ✘, ✘, or CSS escape \2718. There is no named HTML entity. Pair with U+2714 (✔, heavy check mark) for correct/incorrect UI. Do not confuse ✘ with the letter x or multiplication sign U+00D7 (×).

⚡ Quick Reference — Heavy Ballot X

Unicode U+2718

Dingbats block

Hex Code ✘

Hexadecimal reference

HTML Code ✘

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2718
Hex code       ✘
HTML code      ✘
Named entity   (none)
CSS code       \2718
Meaning        Heavy ballot X (wrong / no)
Related        U+2714 = heavy check (✔)
1

Complete HTML Example

This example demonstrates the Heavy Ballot X symbol (✘) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2718";
  }
 </style>
</head>
<body>
<p>Heavy Ballot X using Hexadecimal: &#x2718;</p>
<p>Heavy Ballot X using HTML Code: &#10008;</p>
<p id="point">Heavy Ballot X using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Ballot X symbol (✘) is widely supported in modern browsers when the font includes Dingbats:

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

👀 Live Preview

Heavy Ballot X (✘) in context, paired with the heavy check mark (✔):

Unchecked task ✘ Buy groceries
Form error Password ✘ too short
Large glyph
Yes / No pair ✔   ✘
Numeric refs &#x2718; &#10008; \2718

🧠 How It Works

1

Hexadecimal Code

&#x2718; uses the Unicode hexadecimal value 2718 to display the Heavy Ballot X. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2718 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for error or unchecked states.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2718 is in the Dingbats block. Next: Heavy Black Curved Down Right Arrow (➥).

Use Cases

The Heavy Ballot X symbol (✘) is commonly used in:

📋 Checklists

Unchecked or incomplete items; pair with ✔ for completed tasks.

📝 Quizzes

Mark wrong answers or incorrect options in assessments.

⚠ Form validation

Indicate invalid or incorrect input next to fields that fail validation.

📊 Comparison tables

Feature matrices for “no” or “not included” (✘).

🗳 Voting & polls

Ballot-style UIs for disabled or not-selected options.

🎯 Status & feedback

Error states, failed checks, or negative status in dashboards.

💡 Best Practices

Do

  • Pair ✘ with visible text or aria-label (e.g. “Incorrect”)
  • Use ✔ (U+2714) for correct and ✘ (U+2718) for incorrect
  • Declare UTF-8 with <meta charset="utf-8">
  • Use color (e.g. red) to reinforce error meaning when appropriate
  • Keep one numeric style (hex or decimal) per project
  • Test rendering across browsers and fonts

Don’t

  • Rely on ✘ alone for accessibility-critical meaning
  • Confuse U+2718 (✘) with U+00D7 (×, multiplication sign)
  • Use ✘ decoratively where it implies “wrong”
  • Expect a named HTML entity for U+2718
  • Use CSS \2718 in HTML text nodes

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2718

&#x2718; &#10008;
2

For CSS, use \2718 in the content property

3

Unicode U+2718 — HEAVY BALLOT X (✘)

4

Pair with heavy check ✔ (U+2714) for yes/no UI

❓ Frequently Asked Questions

Use &#x2718; (hex), &#10008; (decimal), or \2718 in CSS content. There is no named entity. All three methods render the Heavy Ballot X (✘) correctly.
U+2718 (HEAVY BALLOT X). Dingbats block. Hex 2718, decimal 10008. The symbol (✘) is a heavy X often used for wrong answers, unchecked items, or negative feedback.
In checklists and to-do lists, quizzes and voting systems, form validation for incorrect input, comparison tables for no or false, and any UI that needs a clear wrong or unselected indicator.
HTML references (&#10008; or &#x2718;) go in markup. The CSS escape \2718 is used in stylesheets, typically on ::before or ::after. Both produce ✘.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2718 is in the Dingbats block and uses numeric hex (&#x2718;) or decimal (&#10008;) codes, which is standard for such characters.

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