HTML Entity for Ballot Box with X (☒)

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

What You'll Learn

How to display the ballot box with X (☒) in HTML using numeric character references and CSS. This symbol is U+2612 in the Miscellaneous Symbols block (roughly U+2600–U+26FF). It reads as a negated, rejected, or disabled ballot-style mark in forms, surveys, and lists.

There is no named HTML entity for this character. Use ☒ or ☒ in markup, or \2612 in stylesheet content on pseudo-elements.

⚡ Quick Reference — Ballot Box with X

Unicode U+2612

Miscellaneous Symbols

Hex Code ☒

Hexadecimal reference

HTML Code ☒

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2612
Hex code       ☒
HTML code      ☒
Named entity   —
CSS code       \2612
1

Complete HTML Example

This example demonstrates the ballot box with X using hexadecimal code, decimal HTML code, and a CSS content escape on a pseudo-element:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2612";
  }
 </style>
</head>
<body>
<p>Ballot Box X using Hexa Decimal: &#x2612;</p>
<p>Ballot Box X using HTML Code: &#9746;</p>
<p id="point">Ballot Box X using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2612 is widely supported wherever Unicode Miscellaneous Symbols render correctly:

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

👀 Live Preview

See the ballot box with X rendered live and compared to related ballot glyphs:

Inline label Rejected ☒   Approved ☑
Large glyph
Three ballot states ☐ empty   ☑ check   ☒ X
Survey row Vote against: ☒   Vote for: ☑
Note ☐ = U+2610, ☑ = U+2611, ☒ = U+2612 — common trio for empty / yes / no-dingbat rows.

🧠 How It Works

1

Hexadecimal Code

&#x2612; references code point U+2612 using hex digits 2612 after the #x prefix.

HTML markup
2

Decimal HTML Code

&#9746; is the decimal equivalent (9746) for the same ballot-box-with-X glyph.

HTML markup
3

CSS Entity

\2612 is the CSS escape for U+2612, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

Hex, decimal, and CSS escapes all produce . There is no named HTML entity. For real toggles, expose state with native inputs or ARIA—use ☒ only where a static dingbat is appropriate.

Use Cases

The ballot box with X (☒) is commonly used for:

❌ Negated / disabled

Options that are off, rejected, or unavailable in read-only summaries.

📋 Cancelled tasks

To-do lists where an item is struck from scope without a bitmap icon.

🗳 Polls & ballots

No / against / veto styling in mockups or static results.

🖥 Custom UI

Decorative rejected state on styled rows (always mirror real state for AT).

📖 Docs & email

Exclusion lists and “do not” callouts in plaintext-heavy HTML.

💾 Print / PDF HTML

Simple ballot trio with ☐ and ☑ in exported layouts.

♿ Accessibility

Pair ☒ with visible text or aria-checked / labels—never rely on the symbol alone for meaning.

💡 Best Practices

Do

  • Use real <input type="checkbox"> (with disabled / aria-disabled) for interactive rejection states
  • Pair ☒ with words like “No,” “Rejected,” or “Disabled”
  • Keep ☐ (U+2610), ☑ (U+2611), and ☒ (U+2612) visually consistent in the same form
  • Stick to one numeric style (hex or decimal) per document
  • Test at small sizes in tables and dense lists

Don’t

  • Use only ☒ to convey disabled form state without programmatic disabled semantics
  • Assume screen readers announce ☒ as “rejected” without context
  • Use CSS escapes inside HTML text nodes
  • Confuse ☒ with generic multiplication × or the heavy ballot X variant fonts may offer
  • Overload one screen with competing dingbat marks

Key Takeaways

1

Two numeric references render the same glyph

&#x2612; &#9746;
2

In CSS content, use the escape

\2612
3

Unicode U+2612 is ballot box with X; no standard named entity

4

Combine with U+2610 / U+2611 when you need empty, checked, and X ballot marks

5

Prefer native controls plus text for anything users must toggle or submit

❓ Frequently Asked Questions

Use &#x2612; (hex), &#9746; (decimal), or \2612 in CSS content. There is no named entity; all valid methods render ☒.
U+2612 (hex 2612, decimal 9746). It lives in the Miscellaneous Symbols block.
For static rejected, disabled, or negative indicators; cancelled tasks; and survey mockups—not as the only signal for real form rejection without accessible controls.
Numeric references belong in HTML. The \2612 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2612;, &#9746;, or \2612 in CSS depending on whether you are authoring markup or styles.

Explore More HTML Entities!

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