Close it in Html.Raw to prevent escaping. Almost all helpers in MVC will encode HTML content to ensure that any model values ββthat could contain HTML or scripts cannot potentially include dangerous scripts. Html.Raw explicitly displays content without encoding it.
@Html.Raw( String.Format("{0} © Copyright by Nemanja", DateTime.Now.Year) )
source share