i m using bullets in my string in a page of asp.net
i used code
string value="\u2736" + " Essentials of IT";
it gives bullets i want in my local host. but when i upload site on server required bullet is not displaying.
do i need some addition in config file or i have to add some library file in my page?
anyone can help me?
Loading
Muhammad younasPosted Oct 24, 2012, 1:11 AM
VulpesPosted Oct 17, 2012, 1:55 PM
I just tried it in Google Chrome and both characters seemed to display OK.
Muhammad younasPosted Oct 17, 2012, 5:35 AM
VulpesPosted Oct 4, 2012, 8:57 AM
http://www.fileformat.info/info/unicode/char/2736/index.htm
'\u2022' is the character normally used to represent a bullet:
http://en.wikipedia.org/wiki/Bullet_(typography)
However, if you want to display this in an HTML page, then you'll need to use the entity •
string value = "•" + " Essentials of IT";
If you still want to use the black star, then in HTML that'll be:
string value = "✶" + " Essentials of IT";