I'm having trouble using characters like, è, in a label. The problems isn't NGUI, but the way that character is being stored. The line of code is...
mainLabel.GetComponent<UILabel>().text = "Sysètme Circulatoire";
...but when I log what is being stored (and displayed) it comes out as...
I also tried storing that as a string first, with the same results. It seems the è in the quotes is not being interpreted correctly. Is there some trick I'm missing for these special characters in C#?