I am developing android app to send pre-defined sms in urdu. I successfully send in english but I need to know that how can i write urdu string in C#
I know a way to convert each urdu character UTF_8 to string, e.g.
char aleph ;
char ra;
char dal;
char wao;
string word;
aleph = '\u0627';
ra = '\u0631';
dal = '\u062F';
wao = '\u0648';
word = aleph.ToString() + ra.ToString()+dal.ToString()+ wao.ToString();
As described Here But its a very hectic way, is there another way around?
Or is there a way to translate English string to Urdu in C#?