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:
May be you have to look into it.
$(document).ready(function () { var sign = "\u00A3" var monthlypayment = "5000" $('#divResponse').text(sign+monthlypayment); });
here is the fiddle link : poundExampleJSFiddle
If this is helpful to you, please mark it as helpful.
Thanks