I seem to be missing something very basic, so I've simplified my code to show the issue.
In my controller I set a variable that would be a description of a product:
controller: function ($scope) {
$scope.someProduct = "someBrand ® productName";
}
In my view I then display the product with:
product: {{someProduct}}
In the browser though this appears as "product: someBrand ® productName"
Any idea why it is prepending the '®' with 'Â' and how to stop it from doing that?
I'm using UI Router, UI Utils and UI Bootstrap in addition to AngularJS if that information helps.