Symbols & Shapes

Heavy Checkmark ()

Bold / heavy checkmark glyph for high-contrast UI status indicators and success alerts.

One-Click Copyable Code Formats

HTML Named Entity
✔
HTML Decimal Code
✔
HTML Hex Code
✔
CSS content (\XXXX)
\2714
JavaScript Unicode (\uXXXX)
\u2714
URL Percent Encoded
%E2%9C%94

Real-World Implementation Snippets

HTML5 Document
<p>Example: &#10004;</p>
CSS ::before / ::after
.badge::before { content: '\2714 '; }
React JSX / TypeScript
<span>{"\u2714"}</span>
Frequently Asked Questions

Heavy Checkmark (✔) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&#10004;". If using numeric codes, you can use the decimal code "&#10004;" or hex code "&#x2714;".