I have a database configuration table that holds the rupee symbol ₹
.
when my page loads a java class reads this value using jdbc from the sql server database and using xslt transformation displayed in a table.
there are no issues with the $ UK pound symbol etc, but rupee will not display. In the table I see that the value ₹
is displayed and when I view the source I see that the text has been escaped to &#8377
.
If I edit the source in chrome and change &#8377
back to ₹ it displays fine, I'm trying to work out how to prevent this escaping from occurring.
I have tried to escape the & with \₹
however this is still encoded to\&#8377.
I have also tried directly sticking the ₹
into the xslt sheet in line with some text like:
<h2>Some text (₹)</h2>
but with this it displays as 'Some text (?)'
There must be a simple solution to this one but I've not found anything so far :(
Some text (₹)
` (note the closing semicolon). – michael.hor257k Aug 07 '14 at 01:11