@BRT.Raw()

Converts encoded text to unencoded text.

Fields retrieved from Views may contain encoded text.  For example, the Body field in all tables contains HTML encoded text.
If you compose this in a Body field in the Web Console:
When you drop this code in a page:
<div>
  <b> @item["Title"] </b>
</div>
<div>
  @item["Body"]
</div>
You get this in a browser:
When you use @BRT.Raw():
<div>
  <b> @item["Title"] </b>
</div>
<div>
  @BRT.Raw(@item["Body"])
</div>
You get this:
oh yeah...