<!DOCTYPE html>
<html>
<head>
<title>Currency filter example</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.6/angular.min.js"></script>
</head>
<body>
<div ng-app="">
<h1>currency filter with example</h1>
<p>The value is $ Symbol: {{ 200*50 | currency : $}}</p>
<p>The value in "Nok" Symbol : {{ 105+10 |currency : "NOK" }} </p>
</div>
</body>
</html>