I have a bean which has String property, which stores copyright symbol
private String copyright = "my company © 2016 All rights reserved";
public String getCopyright() {
return this.copyright;
}
The problem, that jspx page don't display copyrigh symbol. It jus displays text like this:
my company © 2016 All rights reserved
How can I return text which contains copyright symbol in jsp?
This is how I get that bean property in jsp page
In this case copyright symbol is not displayed
<TD align="center" style=" font-size: 10pt; font-family: Arial; ">
#{copyrightBean.copyrights}
</TD>
Now copyright symbol is dispalyed, but it didn;t come from bean:
<TD align="center" style=" font-size: 10pt; font-family: Arial; ">
©
</TD>