Why can't I HtmlDecode in ASP.NET MVC 3
By default everything is encoded when you use razor. I think you're looking for the Raw method.
It would also be a good idea to check the response using Fiddler or Firebug.
Try this:
@Html.DisplayTextFor(modelItem => item.Note)
You can also use HtmlString("")