I try to make a report with tcpdf but it's not working with utf-8 (Japanese) . (PHP language).
PDF::SetTitle('Cat Report');
PDF::SetSubject('Dog Report');
// PDF::SetFont('kozgopromedium', '', 12);
PDF::SetFont('dejavusans', '', 12);
PDF::AddPage();
PDF::writeHTML($html_header_style . $html, true, false, true, false, '');
$pdfFileName = "園児コード";
PDF::Output($pdfFileName . '.pdf','D');
But output file name is: .pdf. I cannot open this file. Japanese file name is not showing up
Any help would be appreciated.