please tell me how to use language like “HINDI” in xml.
my current xml is like:
<?xml version="1.0" encoding="utf-8" ?>
<costs>
<cost>text in hindi</cost>
</costs>
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.
Pick a character encoding (UTF-8 is the default for XML) that includes the characters you wish to use (UTF-8 covers pretty much everything, including everything you need for Hindi).
Then just use it.
You may need to configure your editor to save source files in UTF-8, but beyond that everything should Just Work.