How to use GLYPHICONS Icon - bootstrap icon font hex value?
Here i shown hex value of the each icon, i don't see any page about it so i make this article here from bootstrap website and GLYPHICONS website,so here i will show you that how to embed that into project and use it. We can find these by looking at Bootstrap's stylesheet, Bootstrap.css. Each \{number} represents a hexadecimal value, so \2a is equal to 0x2a or *. You can check which icon you want to use from here: http://getbootstrap.com/components/#glyphicons and you can make css like this to use the icon: <style> .tableheaderth{ content: "\e155"; font-family:"Glyphicons Halflings"; line-height:1; margin:5px; float: left; } </style> . glyphicon-asterisk : before { content : "\2a" ; } . glyphicon-plus : before { content : "\2b" ; } . glyphicon-euro : before { content : "\20ac" ; } . glyphicon-minus : befor...