I can not retrieve a text with a tilde in StringBuilder
of c #
The silly example would be this:
System.Text.StringBuilder sbEx = new System.Text.StringBuilder();
sbEx.Append("<br />Hoy es día " + dia.ToShortDateString() + ".");
return sbEx.ToString();
This code returns "Hoy es dÃa 03/07/2017"
.
How can I retrieve the tilde?