When i use \'currency\' in angular js, I am getting a dollar symbol. How to get required currency symbols based on the requirements. As if now i need to know how to display
The currency symbol can be changed from the default $ symbol to something else as follows:
In HTML Template Binding
 {{ currency_expression | currency[:symbol] }} 
In JavaScript
 $filter('currency')(amount[, symbol]) 
We can display rupee symbol(in this case) for example as follows:
In HTML Template Binding
Item Price{{price | currency:"₹"}} 
OR
In JavaScript
$scope.price=$filter('currency')($scope.price,"₹")
Also, we can add a text rather than a symbol if needed as follows:
Item Price{{price | currency:"rupee"}} 
Note: Copying rupee symbol directly into HTML will not work.
See AngularJS currency documentation