HTML Entity for Heavy Check Mark (✔)

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

What You'll Learn

How to display the Heavy Check Mark symbol (✔) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2714 (HEAVY CHECK MARK) in the Dingbats block (U+2700–U+27BF). It is a bold tick widely used for success states, completed tasks, checklists, form validation, and confirmation in web and app UI.

Render it with ✔, ✔, or CSS escape \2714. There is no named HTML entity. Do not confuse ✔ with U+2713 (✓, lighter CHECK MARK) or U+2718 (✘, heavy ballot X for errors).

⚡ Quick Reference — Heavy Check Mark

Unicode U+2714

Dingbats block

Hex Code ✔

Hexadecimal reference

HTML Code ✔

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2714
Hex code       ✔
HTML code      ✔
Named entity   (none)
CSS code       \2714
Meaning        Heavy check mark
Related        U+2713 = check mark (✓)
1

Complete HTML Example

This example demonstrates the Heavy Check Mark (✔) 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: "\2714";
  }
 </style>
</head>
<body>
<p>Heavy Check Mark using Hexadecimal: &#x2714;</p>
<p>Heavy Check Mark using HTML Code: &#10004;</p>
<p id="point">Heavy Check Mark using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Heavy Check Mark (✔) 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 Check Mark (✔) in context, compared with the lighter check mark (✓):

Success ✔ Payment successful
Checklist ✔ Task complete
Large glyph
U+2714 vs U+2713 ✔   ✓
Numeric refs &#x2714; &#10004; \2714

🧠 How It Works

1

Hexadecimal Code

&#x2714; uses the Unicode hexadecimal value 2714 to display the check mark. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2714 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after for success messages and checklist bullets.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2714 is in the Dingbats block. Next: Heavy Chevron Snowflake (❆).

Use Cases

The Heavy Check Mark (✔) is commonly used in:

✔ Success & completion

Successful actions, completed steps, or “done” states in forms and workflows.

📋 Checklists

Completed items in task lists, project trackers, and checklist UIs.

📝 Form validation

Valid or verified fields, confirmation messages, and submission success.

📊 Feature lists

Included features, supported options, or “yes” in comparison grids.

📈 Progress & status

Step completion in wizards, progress indicators, and status dashboards.

🔒 Verification

Verified accounts, certified items, or approved content badges.

💡 Best Practices

Do

  • Pair ✔ with text or aria-label (e.g. “Completed”, “Success”)
  • Use content: "\2714" on list items via ::before or ::after
  • Declare UTF-8 with <meta charset="utf-8">
  • Test tick glyph weight across fonts and platforms
  • Keep one numeric style (hex or decimal) per project
  • Use visible labels on status and validation messages

Don’t

  • Rely on ✔ alone for accessibility-critical status
  • Confuse U+2714 (✔) with U+2713 (✓, lighter check mark)
  • Expect a named HTML entity for U+2714
  • Use CSS \2714 in HTML text nodes
  • Use ✔ for errors when ✘ (ballot X) is clearer

Key Takeaways

1

Two HTML numeric references plus CSS insert U+2714

&#x2714; &#10004;
2

For CSS, use \2714 in the content property

3

Unicode U+2714 — HEAVY CHECK MARK (✔)

4

Not the same as light check mark U+2713 (✓)

❓ Frequently Asked Questions

Use &#x2714; (hex), &#10004; (decimal), or \2714 in CSS content. There is no named entity. All three methods render the Heavy Check Mark (✔) correctly.
U+2714 (HEAVY CHECK MARK). Dingbats block. Hex 2714, decimal 10004. The symbol (✔) is widely used for success, completion, and confirmation.
For success and completion indicators, to-do lists and checklists, form validation and confirmation messages, feature lists and comparison tables, progress and status indicators, and any UI that needs a clear “done” or “verified” symbol.
HTML references (&#10004; or &#x2714;) go in markup. The CSS escape \2714 is used in stylesheets, typically on ::before or ::after. Both produce ✔.
Named entities cover common ASCII, Latin-1, and widely used symbols. U+2714 uses numeric hex (&#x2714;) or decimal (&#10004;) codes, which is standard for characters in the Dingbats block.

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