When I use UTF-8 characters and submit to a JSP page, the form displays characters in non-UTF8.
String entered in text field in HTML page:
εζηθβγδ
But it displays as:
αβγδεζηθ
When I use UTF-8 characters and submit to a JSP page, the form displays characters in non-UTF8.
String entered in text field in HTML page:
εζηθβγδ
But it displays as:
αβγδεζηθ
Make sure you have the <meta charset="utf-8"/>
tag in your HEAD block to set the entire page to UTF-8.
And if you're wondering, ISO-8859-1 is the default character set for HTML, so if you're not explicitly specifying UTF-8, it defaults to ISO-8859-1.