$content = "ÆØÅ";
$html2pdf = new HTML2PDF('P', 'A4', 'en');
$html2pdf->writeHTML($content, false)
$html2pdf->Output('', 'S'));
Gives me a PDF file with "ÆØÃ"
I checked the encoding in html2pdf.class.php and it is set to UTF-8 which should be fine.
I tried to change 'en' to 'da' (danish), still same result..
How can i fix this please? Spent hours now looking..