Hebrew character looks like a division sign when using iconv with FPDF – PHP
When I use iconv to convert encoding from UTF-8 to windows-1255, all the Hebrew letters show up correctly, except for ק, which shows up as the division symbol: ÷: $pdf->AddFont('Arial', '', 'arial.php'); $pdf->setFont('Arial', '', 15); $value = iconv('UTF-8', 'windows-1255', 'ק');…