I have a C# Label and I set the text to the String "CO\u2082" (CO2 with the Unicode subscript) .
The label is displayed properly on my PC which runs Windows XP service pack 3, but not displayed properly on a PC with Windows XP service pack2.
m_labelDescCO2 = new System.Windows.Forms.Label();
m_labelDescCO2.Text = "CO\u2082";
The Label font is defined to be Microsoft Sans Serif.
Thanks for any advice!