I tray to get data out of the database. That's no problem. But special chars like è change to è ë change to ë ..
The database has the right chars. Rsform in the backend shows the right char. This is how i get the data out of the database for use in a plugin.
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query
->select(array('SubmissionID','FieldName','FieldValue'))
->from($db->quoteName('#__rsform_submission_values'))
->where($db->quoteName('FormId')." = 4")
->where($db->quoteName('SubmissionID')." > 10928");
$db->setQuery($query);
$rows = $db->loadObjectList();
foreach ($rows as $row) {var_dump($row);};