French and Chinese characters are not appearing correctly

What you see is the bytes rendered as ISO-8859-1 or similar.

Try setting charset in content-type response.setContentType("text/html; charset=utf-8");, include appropriate meta-tag

 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

What are you using to generate that page?

Leave a Comment