In my application I have a textbox where you can enter ASCII characters that are displayed. If I type "عع" I typed the code in 1593 and 1593 is shown , but ASCII code "ﻋ" and "ﻊ" are different!!
How do I show the difference?
Thanks
my code :
byte[] asciiBytes = Encoding.UTF8.GetBytes(textBox1.Text);
string s = "";
for (int j = 0; j < asciiBytes.Length; j++)
{
s += ((int)asciiBytes[j]).ToString() + ", ";
}
MessageBox.Show(s);