This is my code how to show Arabic font letters instead of question mark and font to include in pdf.
function
pdf_create($html, $filename, $stream=TRUE)
{
require_once("dompdf/dompdf_config.inc.php");
$date=date("m_d_Y");
$filename = $filename.'_'.$date.'_'.rand();
$dompdf = new DOMPDF();
$html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8');
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("$filename".".pdf", array("Attachment" => false));
}
Immediate solution are appreiated.wait for solution from yester