I’m trying to display the symbol below ad html for my website, does anyone know how to find this one as it doesn’t show in dreamweaver and is proving to be a nightmare to find.
‘ş’
the ascii for it is html 350-0
Any help would be great thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The character you included in your question (ş) is U+015E LATIN SMALL LETTER S WITH CEDILLA. Its Unicode number is 015F in hexadecimal, 351 in decimal, so it can be included in HTML using the reference
şor, equivalently,ş.As you mention the number 350 (which cannot possibly be an ASCII number for anything, since ASCII ends at 127), you might actually mean “Ş”, U+015E LATIN CAPITAL LETTER S WITH CEDILLA, representable as
Şor, equivalently,Ş.If you need numbers for other characters, check out http://www.alanwood.net/unicode/#links (not authoritative, but reliable and handy).