Android not able to recognize different language Fonts

A

AC Question

Made an app to translate different words to different Language Using Yandex converter getting proper results on Browser
converting Kiss
RESULTS as JSON object is {"code":200,"lang":"en-hi","text":["चुम्बन"]} //proper
but while getting result on app RESULT {"code":200,"lang":"en-hi","text":["à¤à¥à¤®à¥à¤¬à¤¨"]}

JSONParser jParser = new JSONParser();
// get json string from url
JSONObject json = jParser.getJSONFromUrl(yourJsonStringUrl);
Is there any way i can get proper results?
Please Help
Regards