Questions tagged [hindi]

Hindi is the most spoken language of India, the world's second-most populated country. The script which is used to write Hindi is called "Devanagari".

Hindi (हिन्दी), or more precisely Modern Standard Hindi (मानक हिन्दी), is a standardized and Sanskritised register of the Hindustani language. Hindustani is the native language of people living in Delhi, Haryana, Uttar Pradesh, Bihar, Jharkhand, Madhya Pradesh and parts of Rajasthan. Hindi is one of the official languages of India and predominantly spoken by people in the Northern India.

Know more about Hindi, See Hindi Language wiki.

280 questions
0
votes
0 answers

How to display Hindi Fonts in a pdf which is generated from Jsp page?

In my project I have Report Module in which we need to generate pdf File for the dynamic data fetched from database . I can able to show it in English . But I also should display the same content in Hindi Language .In the grid ( jsp page ) it is…
0
votes
1 answer

Digital Substitution in CultureInfo for Arabic Hindi numbers

I want to display Hindi numeric for Arabic culture "ar-EG". It is not totally configured by cultureInfo Digital Substitution/ Number Format APIs. In "Control Panel -> Region and Language", the format is English(US). It would not be updated to…
James063
  • 83
  • 6
0
votes
1 answer

Displaying Hindi data stored in MS Access Database in PHP/HTML

There's been a lot of help on the web about displaying Hindi text in PHP/HTML from a database, but none of it worked for me. I have the data stored in MS Access [SAP.mdb], and I want that the data [already in Hindi in the db] to be displayed in…
mastero
  • 21
  • 1
  • 1
  • 4
0
votes
1 answer

Hindi Font on android Motorola droidx

I am developing an app in Hindi font. My app showing perfect Hindi results on Galaxy S3 (OS 4.1.1) and Galaxy S (OS 2.3.3) but there is some issue with Droidx (OS 2.3.3) There i found some character mistakes. What are the reasons?? How i can show…
Zahid Naqvi
  • 536
  • 1
  • 5
  • 18
0
votes
1 answer

Qt: display dynamically composed non-English text on Labels or buttons

I am trying to display some dynamically generated hindi text on a QPushbutton. Please have a look at the following code: char nam[] = { 40, 9, 62, 9, 46, 9 }; QString nameStringInHindi(QString::fromRawData((QChar *)nam, 3)); qDebug() <<…
jestin
  • 15
  • 3
0
votes
1 answer

Display Hindi language in flex mobile application

I want to display Hindi language as a Label text in flex mobile application. I am using adobe flash builder 4.5
Naveed Mansuri
  • 439
  • 1
  • 5
  • 13
0
votes
3 answers

Ruby print text, characters in Hindi, Sanskrit etc languages

I want to print text/characters in Hindi/Sanskrit language.Can anybody guide me using Ruby language how can I achieve this? Are there any libraries/gems available to achieve this? I tried searching for this but could not find desired…
Jignesh Gohel
  • 6,236
  • 6
  • 53
  • 89
0
votes
1 answer

How to add native language support in website for different mobile operators?

It is already very tough to show native language support (Hindi, Bengali, Urdu etc) in web browsers like Internet Explorer. But how do we give support in mobile browsers like opera mini, windows browser? If there is no possible way, then what can be…
Ratul Saha
  • 402
  • 2
  • 9
0
votes
2 answers

UTF-8 weird behaviour between HTML/PHP forms and MySQL (Hindi)

I have all my database/tables and columns set to UTF-8_general_ci collation set. Conditions that I Faced :- When I insert hindi data manually by phpmyadmin, I can see the the hindi characters in phpmyadmin, while question marks when seen on…
Sanuj
  • 1,077
  • 1
  • 11
  • 23
0
votes
2 answers

How to create Hindi website in codeigniter?

I need create a website which should available to the users in Hindi as well as in English. Any suggestions? EDIT When I try to save hindi_lang.php it's not saving just giving unicode error..
0
votes
1 answer

Hindi Unicode supported by Mobile phones

I'm currently doing a project on Language translation where I'm converting an English text to Hindi. I'm trying to send the converted Hindi text to a mobile phone, but the message could not be displayed on my phone as there is no hindi font. But I…
sree127
  • 421
  • 3
  • 9
  • 25
0
votes
1 answer

Store hindi words in MYSQL using JAVA web crawler

I want to store some Hindi words in a MySQL database. For that I wrote a web crawler. I am able to read those words successfully from HTML page and display them in the NetBeans console. But when I insert them in MySQL they change to ???????. Also if…
Abhinav
  • 722
  • 2
  • 11
  • 27
0
votes
2 answers

How to add Kruti Dev 010 font in ckeditor?

Hi I need to add Kruti Dev 010 font to my CKEditor. I have downloaded font and added its font face to my content.css file of ckeditor. In ckeditor.config.js file, I have added this line : config.font_names = 'Kruti Dev 010/"Kruti_Dev_010";' +…
subu.purohit
  • 33
  • 1
  • 9
0
votes
1 answer

Hindi font support for android 2.2 version and below

I am working on a app,which has to display hindi font, but the same is not happening when I try to do that in android 2.2 and below versions. Can anyone help me to solve this problem. Thanks in advance.
Deep
  • 121
  • 1
  • 6
-1
votes
2 answers

Hindi words length

I am trying to find out the length of Hindi words in Python, like 'प्रवीण' has length of 3 as per my knowledge. w1 = 'प्रवीण' print(len(w1)) I tried this code but it didn't work.