In python, I am having other languages text as,
import json
name = "அரவிந்த்"
result = {"Name": name}
j_res = json.dumps(result)
print j_res
Output:
{"Name": "\u0b85\u0bb0\u0bb5\u0bbf\u0ba8\u0bcd\u0ba4\u0bcd"}
Is there any ways to get the name of அரவிந்த் from \u0b85\u0bb0\u0bb5\u0bbf\u0ba8\u0bcd\u0ba4\u0bcd this text.?