I am trying to print Urdu words using python. I read about Unicode but the [problem I face is that python tries to print the Urdu just like English, that is, from left to right and character by character. In Urdu characters] cannot be printed like those in English. I have already tried few solutions like the one mentioned here but they didn't work for me. I have been trying to print my Urdu string with the following code.
text_string = "آکاش کمار".decode('utf-8')
print text_string
the output I get on Ubuntu terminal is like English from left to right instead of right to left and that too character by character.