OK or ACCEPTED symbol in HTML?

27,380

Solution 1

There is a Unicode character that looks like a check mark:

To use it in HTML, you'll probably want to escape it. The code looks like this:

&#10003; <!-- in decimal -->
&#x2713; <!-- in hex     -->

There is also a "heavier" (bold) version of this same symbol:

Again, the escapes are:

&#10004; <!-- in decimal -->
&#x2714; <!-- in hex     -->

But definitely pay attention to the concerns expressed by the other answers regarding the inclusion of this character with the font(s) you're intending to use, and the possibility that the character may not display correctly on client machines.

Solution 2

As I understand, you want to put the Unicode CHECK MARK (U+2713) symbol on your page. However, I'm not fully sure that this character is implemented in most fonts, so it is possible that the character will not appear on some client browsers.

Solution 3

If you want to use the CHECK MARK character, it’s U+2713. The way to enter it depends on your authoring environment; the character reference &#x2173; can be used instead, but it reduces source legibility.

The CHECK MARK character is present in many fonts, but not all. Its font support does not include any font that is available in Windows PCs, unless Microsoft Office has been installed. In addition to this primary concern, some browsers may fail to display the character even if it is available in some font; using CSS you can increase the odds.

The two-letter abbreviation “OK” works much more reliably. Though originally an English abbreviation of obscure origin, it is widely recognized. The CHECK MARK is more questionable, even though people usually know it from web page forms where it appears in checked checkboxes. But it’s not really universal; when I was at school, a symbol like CHECK MARK indicated an error, not acceptance.

Share:
27,380
Alexandru Vlas
Author by

Alexandru Vlas

Updated on November 17, 2020

Comments

  • Alexandru Vlas
    Alexandru Vlas over 3 years

    Can somebody please help me, I want to put the "OK" symbol throw HTML not as image, by saying "OK" symbol I mean this symbol (http://awesomescreenshot.com/0272k1125) Can somebody help me and tell me what code is this in html please ?

    Thanks

  • Lonely
    Lonely almost 4 years
    see for using it in pseudo css classes (e.g. content): toptal.com/designers/htmlarrows/symbols/heavy-check-mark