How to fix the Euro symbole within the "cell" function in TCPDF? "¤/" <--- This is what we get
$this->Cell(0, $this->rowHeight(), $data, 0, 1, 'L');
How to fix the Euro symbole within the "cell" function in TCPDF? "¤/" <--- This is what we get
$this->Cell(0, $this->rowHeight(), $data, 0, 1, 'L');
Copyright © 2021 Jogjafile Inc.
Not sure if this problem is already solved, but it may be caused by HTML encoding. Either use
utf8_encode()
orutf8_decode()
Otherwise, use this
mb_convert_encoding(utf8_encode(<YOURCONTENT>), 'HTML-ENTITIES', 'UTF-8');