Symbols & Shapes

Checkmark / Tick ()

Visual checkmark symbol used to represent verification, task completion, and active options.

One-Click Copyable Code Formats

HTML Named Entity
✓
HTML Decimal Code
✓
HTML Hex Code
✓
CSS content (\XXXX)
\2713
JavaScript Unicode (\uXXXX)
\u2713
URL Percent Encoded
%E2%9C%93

Real-World Implementation Snippets

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

Checkmark / Tick (✓) HTML Entity FAQ

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

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