Say, when I convert a string into a byte array using single-byte encoding, some characters will be replaced with '?':
string strData="©";
byte[] bytesData = Encoding.ASCII.GetBytes(strData);
Is there any way to find out if a string will lose some of it's data if I convert it to ANSI?
PS. I'm not inquiring about benefits of Unicode encodings, such as UTF-8.