Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OK or ACCEPTED symbol in HTML?

Tags:

html

symbols

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

like image 960
Alexandru Vlas Avatar asked Apr 01 '12 10:04

Alexandru Vlas


2 Answers

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.

like image 69
Cody Gray Avatar answered Oct 13 '22 21:10

Cody Gray


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.

like image 40
GergelyPolonkai Avatar answered Oct 13 '22 22:10

GergelyPolonkai