I was experimenting with how special characters such as č, š and ž appear in the database, once inserted. Inserting the string "č_š_ž" looks like this in the database (varchar field): "Ä_Å¡_ž". For me it is not a problem how the string appears in the database, but as it seems it still looks like "Ä_Å¡_ž" when I fetch it back from the database and render it in HTML with this meta (if it matters):
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
I also tried real-escaping the string before inserting it, but the result stays the same. Anyone knows a good way to deal with that? Any help is greatly appreciated!