Given the symptoms, UTF-8 data is been redisplayed using ISO-8859-x encoding. The č (LATIN SMALL LETTER C WITH CARON (U+010D)) exist in UTF-8 of bytes 0xC4 and 0x8D. According to the ISO-8859-1 codepage layout those bytes represent the characters Ä and [nothing] respectively, which is exactly what you're seeing.
This particular problem can have many causes. As Facelets by itself already uses UTF-8 by default to process HTTP POST request parameters and to write the HTTP response, there should/can be nothing which you need to fix/change in the Java/JSF side. Only when you've explicitly/implicitly changed the Facelets' default character encoding by for example
<?xml version="1.0" charset="ISO-8859-1"?>
or
<f:view encoding="ISO-8859-1">
then Facelets will use ISO-8859-1 instead.
If that's not it, then only the database side is the major suspect. In that side I can see two possible causes:
- The DB table is not using UTF-8.
- The JDBC driver is not using UTF-8.
How exactly to solve it depends on the DB server used. Usually you need to specify the charset during CREATE of the DB table, but you can usually also alter it using ALTER. As to the JDBC driver, this is usually to be solved by explicitly specifying the charset as connection URL parameter. For example, in case of MySQL:
jdbc:mysql://localhost:3306/db_name?useUnicode=yes&characterEncoding=UTF-8
See also:
Update as per the comments: in your particular case, Facelets didn't seem to use UTF-8 by default and a request.setCharacterEncoding("UTF-8") in a filter was mandatory to solve the problem. Also setting the two MySQL connection properties mentioned before was mandatory to solve the problem which occurred after the Facelets part was fixed.