I am trying to display checkmark in a html page from jsp file. But it is displaying as '?'
I added '<%@ page contentType="text/html; charset=UTF-8" %>' to jsp page, but no luck,
Action class:
char checkMark = '\u2713';
b.setString8(String.valueOf(checkMark));
JSP page:
<td align="center"> <bean:write name="status" property="string8" /> </td>
And it is displayed as
Can you please help me?
