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

To add Hindi text in the existing PDF without invalidating its digital signature in iText 7

I need to add hindi text with Kruti dev font in digitally signed PDF using itext 7. But instead of Hindi text only boxes are coming. Anyone please suggest sample code. Is Kruti dev font supported for Hindi in iText 7? Which font is best supported by…
0
votes
1 answer

Unable to read Hindi/Devanagari with Python requests / urllib modules

I'm trying to scrape this NREGA Website which contains data in Hindi i.e. Devanagari script. The structure is pretty easy to scrape. But when I use requests/urllib to get the html code, the Hindi text is getting converted to some gibberish. The text…
0
votes
2 answers

I want to kown how many unicode make one hindi character

I used python: for m in regex.findall(r"\X", 'ल्लील्ली', regex.UNICODE): for i in m: print(i, i.encode('unicode-escape')) print('--------') the results show ल्ली has 2 hindi characters: ल b'\\u0932' ् b'\\u094d' -------- ल…
GGS of Future
  • 73
  • 1
  • 1
  • 4
0
votes
0 answers

How to Send Hindi Message in java to an api

HttpClient client = new HttpClient(); PostMethod method = new PostMethod(SMS_SERVICE_URL); String dataParameter = getDataParameter(from, toList, text, userName, password); Above is the code for which iam able to send sms message in english using a…
Nitin T
  • 140
  • 1
  • 10
0
votes
1 answer

Converting Local language(Hindi) Name to English

Problem- I have this Data Frame in Hindi and I want to convert it to English(But not a translation) 0 मोहनलाल 1 श्री बजरंग बाडी उधान रर्सरी फार्म कारी 2 श्री बालाजी कन्‍ट्रक्‍शन 3 श्री राम ईट उदयोग 4 साहिल पैड स्‍टोर What I have…
ETWAS
  • 83
  • 1
  • 6
0
votes
1 answer

Flutter: How should I go about adding gujarati support?

I am building an app for a grocery store, their main customers are Gujarati speaking, so they want their app in Gujarati too, so how should I go about doing that?
0
votes
1 answer

MySql utf8 not saving Hindi and other languages

I am having issue saving Hindi and other languages text in MYSQL. CharSet of Table is set to utf8, with Collation utf8_unicode_ci (I even tried utf8_general_ci) I can save Hindi or any language if I use MySQL Workbench. And when I fetch data from my…
0
votes
1 answer

Resolved: Unable to display Hindi characters in a BIRT PDF report

I am unable to see Hindi characters in my BIRT generated pdf files. The way I am trying to accomplish this is as follows: I created a rptdesign file. You can download it from here. The file contains just 2 labels - name and class. Associated the…
Anisha
  • 36
  • 6
0
votes
0 answers

Not able to display Hindi Fonts in JSP

I am trying to display Hindi fonts on JSP through property file. My property file named as Messages.properties contains following key-value pairs: basic.title = कृषि ऋण basic.menu1 = ये आपके लिए क्यूँ सही हैं basic.menu2 = ब्लॉग basic.menu3 =…
Nishral
  • 25
  • 5
0
votes
1 answer

Copy-pasting Hindi from a correctly rendering PDF pastes only certain characters correctly

I have a PDF that renders correctly ([0]). If I try and copy-paste from it the words that paste are a little off. It doesn't happen with all of the text - only some of the words. The font (Devanagari MT) is embedded in the PDF; in one case I have…
jayce
  • 293
  • 2
  • 9
0
votes
0 answers

I am writing Hindi font/language in java and xml file but it showing boxes

I want to write some hindi data in my java and xml file but i paste it showing boxes boxes in file. Help me I have traied with Textview but its not working
0
votes
0 answers

Why Kruti dev font is smaller then other fonts

I added kruti dev font in my project with other fonts like latto. in one line when we use both font, kruti is smaller then other. Below is the image, I don't have any element selector for kruti, is there any way, so we can fix this.
VISHAL SINGH
  • 651
  • 1
  • 8
  • 20
0
votes
0 answers

itext 7 throwing Corrupted Licence key error

I need to use Hindi and Marathi language for creating pdfs using itext5. loading some indian fonts(ttf) help me, but could not satisfy exact alphabet rendering.
0
votes
0 answers

json doesnt show hindi text

I have the following User classin my android app public class User { @SerializedName("activity_name") @Expose private String activityName; @SerializedName("id") @Expose private Integer id; @SerializedName("image_url") @Expose private String…
amit jain
  • 55
  • 1
  • 12
0
votes
0 answers

Python dict mapping from hindi characters to unicode characters

Where can I get a Dictionary in python which contains mappings from Hindi characters to unicode characters? (Getting unicode characters corresponding to Hindi text character by character)