โœ˜
Web logo  UseSymbol

โœ“ Check Mark Symbol

โœ“
Click above button to copy โœ“ symbol
Shortcodes

Copy and paste shortcodes for โœ“ Check Mark.

Unicode U+2713
Alt Code 10003
HTML Code ✓
CSS Code \2713
HTML Entity ✓
HEX Code ✓

How to type โœ“ Check Mark?

To type the โœ“ using the keyboard you can the Alt code from the shortcode section. Here are the two simple steps to type the โœ“ using Alt code from your keyboard. Make sure you switch on the Num Lock from the keyboard and you type the number from the Numpad and not from the top row of the keyboard.

  1. Hold down the left Alt Key from your keyboard.
  2. Type the Alt code number 10003 and release the Alt key.

Once you release the Alt key, the โœ“ symbol will be displayed. This trick will work for other special characters also.


How to add Check Mark Symbol in HTML?

To add the โœ“ Check Mark Symbol in HTML, you can use an HTML entity, an HTML code(decimal), and a Hex code. Use the shortcode section to copy the various shortcodes for the Check Mark. Here is the example:

// HTML entity example
<span>I am &check; Symbol</span>
// HTML code example
<span>I am &#10003; Symbol</span>
// HEX code example
<span>I am &#x2713; Symbol</span>

All the above example will display the Check Mark symbol as below.

I am โœ“ symbol.

How to add Check Mark Symbol in CSS?

To display the Check Mark Symbol from CSS, you can use a CSS shortcode or CSS entity. Use the shortcode section to copy the CSS entity code for the Check Mark. You can only add content :before or :after an element: Here is the example:

// CSS entity code example
.useSymbol:after {
  content: ' \2713';
}

// The HTML
<div class="useSymbol">Check Mark</div>

The above example for CSS entiry for Check Mark symbol will display the result as below.

Check Mark โœ“