Click here to Skip to main content
15,911,132 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to write font in hindi language in my asp.net website .
Posted
Comments
Prasad Khandekar 23-Mar-13 8:01am    
In HTML you don't write font, you rather output the text usually in UTF-8 encoded form. The browser after decodeing this text back it renders it using either the default font or font specified in CSS. If font does not contain the rendering information for the character then you see garbage. (As per Unicode standard every character has a unique value also called a CodePoint) The font file generally contains the rendering information for these code points.
Sandeep Mewara 23-Mar-13 15:04pm    
Elaborate 'write font'.

See Below useful link:-

Using Hindi fonts in ASP.NET Page[^]
 
Share this answer
 
Do you think of the encoding used in your page? That's a meta tag:
HTML
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

Instead of utf-8 (which is actually appropriate for Devanagari also, but I do not know how you encoded your site), use your desired encoding.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900