Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi,
I am creating a website which use to display in hindi in some content. my system is not problem but i want to publish site in web then in other computer which access my site is display in hindi or not. please give answer in detail if not work then how to display content in hindi.
Posted
Comments
Sriram Chitturi 4-Feb-12 23:18pm    
Rakesh
unless you give a hint of how you are displaying the hindi characters on your page we cannot help you.
Rakesh From Patna 4-Feb-12 23:44pm    
like orkut you type and display or athoer hindi newspaper display.
Sergey Alexandrovich Kryukov 5-Feb-12 1:13am    
I don't understand. Why? Do you consider this as a problem, too? Can someone explain to me what's going on? Please see my answer...
--SA
Uday P.Singh 5-Feb-12 0:08am    
what are you using to display "hindi" on you computer?
Sergey Alexandrovich Kryukov 5-Feb-12 0:52am    
How can it be a problem?
Please see mu answer.
--SA

1 solution

Come on, there is nothing like "Hindi font". Modern Hindi or so called Standard Hindi uses Devanagari writing system, as well as many other Indian languages. See:
http://en.wikipedia.org/wiki/Hindi[^],
http://en.wikipedia.org/wiki/Devanagari[^].

In this way, when it comes to support of one of those languages, this is a matter of support Devanagari, more exactly, the corresponding Unicode subset.

Please see:
http://www.unicode.org/charts/[^],
http://www.unicode.org/charts/PDF/U0900.pdf[^],
http://www.unicode.org/charts/PDF/UA8E0.pdf[^].

(I've never been to India and maybe I'm not familiar well enough with Indian culture, but I think it deserves much more respect. Why should I explain these basic facts to a software developer living in India?!)

Now, Devanagari popular enough, so the corresponding Unicode subset it is supported by default by nearly all modern systems. There is nothing special you should do. Basically, you need to write the Web pages using UTF-8 and prescribe it in HTTP-EQUIV:

HTML
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />


HTTP-EQUIV is very important even if the site is tuned to support UTF-8 by default. If a users saves a file with a Web page and view it locally, the charset information is lost unless it is prescribed in HTTP-EQUIV.

—SA
 
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