One of the application user has reported that they are seeing � instartd of >> on their home and other pages. There are about 100 users and only one user has this issue. The user is using IE11. what may be the cause of this issue.
Asked
Active
Viewed 3,613 times
1
-
2It's a character encoding issue. Your server is sending data in an encoding other than what your browser expects. – Andy Turner Apr 08 '16 at 15:34
-
What's the encoding of your website? – f1sh Apr 08 '16 at 15:34
-
if this is an encoding issue with the server then it should be with all the users right? and also the code to add this >> is hard coded in jsp. » – vbr Apr 08 '16 at 15:42
1 Answers
0
You should have this on top of your jsp
files:
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
If you have that, the problem is with your client's browser which hasn't chosen the proper encoding.
Additionally, you may find useful information in this SO question: How to replace � in a string

Community
- 1
- 1

Ali Seyedi
- 1,758
- 1
- 19
- 24