JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-controller="myCtrl">
<span ng-bind-html="html|html"></span>
</div>
JavaScript
var myApp = angular.module('app',[])
.filter('html',function($sce){
return function(input){
return $sce.trustAsHtml(input);
}
})
function myCtrl($scope,$sce){
$scope.html = '♣';
}