I think i found the problem.
In the file templates/t4blank/html/layouts/joomla/pagination/link.php, you use the function strtolower() in the switch. This function, according to the php doc, does not handle the conversion of accents. So i overrited this layout and i changed for the function mb_strtolower(). I specified the correct charset (UTF-8) and it worked. I no longer have a blank page.
Hope this helps someone.