Hello,
Add this in the web.xml
<jsp-config>
<jsp-property-group>
<url-pattern>*.jspx</url-pattern>
<page-encoding>utf-8</page-encoding>
</jsp-property-group>
</jsp-config>
And this to your pages just to be sure.
<jsp:directive.page contentType="text/html;charset=utf-8"/>
WHY does JDev use windows encoding?
Luckely I'm using pagetemplates and dont have to set this everywhere...
-Anton