When populating SelectList, use the text HttpUtility.HtmlDexode. Here is an example:
<% var entities = new string[] { "©", "<">", "©" }; var selectListItems = entities.Select(e => new SelectListItem { Text = HttpUtility.HtmlDecode(e), Value = "1" }); %> <%= Html.DropDownList("exampleDropDownList", selectListItems) %>
source share