N
nebiyou1
When I execute the following program, I get garbage for the ethiopic
character whereas I get the right ones for the arabic characters. I
have the ethiopic fonts installed. Any ideas why I am getting garbage
instead of the right charcter for the ethiopic character? Do I need to
set something in visual studio?
private void button1_Click(object sender, System.EventArgs e)
{
char ha;
char ra;
char dal;
char wao;
string word;
ha = '\u1200'; //ethiopic
ra = '\u0631'; //arabic
dal = '\u062F'; //arabic
wao = '\u0648'; //arabic
word = ha.ToString() + ra.ToString()+dal.ToString()+
wao.ToString();
MessageBox.Show(word);
}
character whereas I get the right ones for the arabic characters. I
have the ethiopic fonts installed. Any ideas why I am getting garbage
instead of the right charcter for the ethiopic character? Do I need to
set something in visual studio?
private void button1_Click(object sender, System.EventArgs e)
{
char ha;
char ra;
char dal;
char wao;
string word;
ha = '\u1200'; //ethiopic
ra = '\u0631'; //arabic
dal = '\u062F'; //arabic
wao = '\u0648'; //arabic
word = ha.ToString() + ra.ToString()+dal.ToString()+
wao.ToString();
MessageBox.Show(word);
}