but does not render in the jsp/browser?
You need to set the response encoding as well. In a JSP you can do this using
<%@ page pageEncoding="UTF-8" %>
This has actually the same effect as setting the following meta tag in HTML <head>
:
<meta http-equiv="content-type" content="text/html; charset=utf-8">
BalusC
2009-11-16 23:17:36