HTML entity for check mark

Html

Html Problem Overview


Is there an HTML entity for a check mark?

green checkmark

I've searched for it in various html entities cheat sheets but didn't find it

Html Solutions


Solution 1 - Html

Something like this?

if so, type the HTML ✔

And ✓ gives a lighter one:

Solution 2 - Html

Solution 3 - Html

HTML and XML entities are just a way of referencing a Unicode code-point in a way that reliably works regardless of the encoding of the actual page, making them useful for using esoteric Unicode characters in a page using 7-bit ASCII or some other encoding scheme, ideally on a one-off basis. They're also used to escape the <, >, " and & characters as these are reserved in SGML.

Anyway, Unicode has a number of tick/check characters, as per Wikipedia ( http://en.wikipedia.org/wiki/Tick_(check_mark) ).

Ideally you should save/store your HTML in a Unicode format like UTF-8 or 16, thus obviating the need to use HTML entities to represent a Unicode character. Nonetheless use: &#x2714; ✔.

&#x2714;

> ✔

Is using hex notation and is the same as

$#10004;

(as 2714 in base 16 is the same as 10004 in base 10)

Solution 4 - Html

There is HTML entity ✓ but it doesn't work in some older browsers.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMatteo PagliazziView Question on Stackoverflow
Solution 1 - HtmlDarren WainwrightView Answer on Stackoverflow
Solution 2 - HtmlndpView Answer on Stackoverflow
Solution 3 - HtmlDaiView Answer on Stackoverflow
Solution 4 - HtmlitsbruceView Answer on Stackoverflow