Fpdf and special characters
问题 I am trying to write out some special characters with built in fonts, is there any way to do this? $str = 'ščťžýáíéäúň§ôúőűáéóüöűú'; $str = iconv('UTF-8', 'windows-1252', $str); the result is one letter Š, not too good. :) 回答1: I know it's an old thread, but I've faced the issue this weekend and spent a longtime Googling and playing, so here's a time saver. http://fpdf.org/en/script/script92.php is the way to go to use diacritics (accented characters). But you need to add some code to it...