@HttpUtility.HtmlEncode("<i>test</i>"): | <i>test</i> |
@HttpUtility.HtmlDecode("<i>test</i>"): | <i>test</i> |
@HttpUtility.HtmlDecode(HttpUtility.HtmlEncode("<i>test</i>")): | <i>test</i> |
<i>test</i>: | test |
@("<i>test</i>"): | <i>test</i> |
@Html.Raw("<i>test</i>"): | test |