I\'ve spent a couple of days sifting through various methods to encourage FPDF to render the Euro symbol, but none have succeeded. I have:
$currency = iconv(\"UT
the iconv function worked for me
iconv
$text = "String with € sign" $pdfobj->Write(0,iconv('UTF-8', 'windows-1252', $text));