HTML Entity for Ballot Box with Check (☑)

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

What You'll Learn

How to display the ballot box with check (☑) in HTML using numeric character references and CSS. This symbol is U+2611 in the Miscellaneous Symbols block (roughly U+2600–U+26FF) and reads as a checked ballot or checkbox-style mark in forms, surveys, and lists.

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

⚡ Quick Reference — Ballot Box with Check

Unicode U+2611

Miscellaneous Symbols

Hex Code ☑

Hexadecimal reference

HTML Code ☑

Decimal reference

Named Entity

None (use numeric refs)

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

Complete HTML Example

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

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

🌐 Browser Support

U+2611 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 check rendered live in different contexts:

Inline label Option A ☑ selected
Large glyph
List row ☑ Ship feature ☑ Write docs ☑ Same via decimal
Survey choice Yes ☑    No ☐
Note ☐ is U+2610 ballot box (empty); pair with ☑ for unchecked vs checked.

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2611 is the CSS escape for U+2611, 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 form semantics prefer <input type="checkbox"> plus accessible labels, and use ☑ only where a static dingbat is appropriate.

Use Cases

The ballot box with check (☑) is commonly used for:

✅ Forms & surveys

Showing a checked choice when the UI is read-only or print-friendly.

📋 To-do lists

Marking completed tasks next to plain text without image sprites.

🗳 Polls & ballots

Indicating a selected option in mockups or results summaries.

🖥 Custom checkbox UI

Decorative checked state on styled rows (always expose real state to AT).

📖 Docs & email

Static “done” markers in guides or plaintext-heavy HTML.

💾 Export / PDF-style HTML

Checklist previews that must match a simple Unicode glyph set.

♿ Accessibility

Pair ☑ with visible text or aria-checked on real controls—never rely on the symbol alone for state.

💡 Best Practices

Do

  • Use <input type="checkbox"> (or role="checkbox") for interactive forms
  • Pair ☑ with words like “Yes” or “Selected” for clarity
  • Use (U+2610) for empty ballot box next to when showing both states
  • Stick to one numeric style (hex or decimal) per document
  • Verify fonts render U+2611 crisply at small sizes in tables

Don’t

  • Replace accessible native checkboxes with only a Unicode glyph
  • Assume screen readers announce ☑ as “checked” without context
  • Use CSS escapes inside HTML text nodes
  • Mix many different check dingbats in one form (confusing visually)
  • Forget keyboard focus styles when building custom checkbox patterns

Key Takeaways

1

Two numeric references render the same glyph

&#x2611; &#9745;
2

In CSS content, use the escape

\2611
3

Unicode U+2611 is ballot box with check; no standard named entity

4

For real toggles, expose state with native inputs or ARIA—use ☑ as decoration or static copy

5

Pair with U+2610 (☐) when you need empty vs checked ballot boxes

❓ Frequently Asked Questions

Use &#x2611; (hex), &#9745; (decimal), or \2611 in CSS content. There is no named entity; all valid methods render ☑.
U+2611 (hex 2611, decimal 9745). It lives in the Miscellaneous Symbols block.
For static checked indicators, surveys, printable lists, or alongside real controls as a visual cue—not as the sole mechanism for form state.
Numeric references belong in HTML. The \2611 escape belongs in stylesheets (for example on pseudo-elements). Do not paste CSS escapes into HTML text nodes.
No. Use &#x2611;, &#9745;, or \2611 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