i am trying to display a pound sign in my html page.i want to display it through a variable because i am getting the values of sign from an xml file.
Here is Code:
It is:
£
or
You can check other encodings here:
http://www.w3schools.com/html/html_entities.asp
And here is a demo on how to do it: Online Demo
var sign = "£"; $('#demo').html(sign+124.5);