Hey I try to write special characters like '✓' to FPDF and it's not work. Only normal string work. I have checkbox on the pdf and i try to fill the checkbox with '✓'.
I try it like this:
$value = iconv('UTF-8', 'windows-1255', html_entity_decode('✓'));
$pdf->Write(0, $value);
But when i go to the pdf and the string broken and not the same. Thanks