JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app ng-controller='EscapeCtrl'>
<pre>{{text}}</pre>
<span ng-bind-html-unsafe="unsafeText">{{unsafe}}</span>
</div>
JavaScript
var EscapeCtrl = function($scope) {
$scope.text = "<div ng-app ng-controller='EscapeCtrl'></div>";
$scope.unsafeText = "<b>unsafe</b>";
}