How to fix Euro/€ Symbole in TCPDF?

1k Views Asked by At

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');
1

There are 1 best solutions below

1
On

Not sure if this problem is already solved, but it may be caused by HTML encoding. Either use

utf8_encode() or utf8_decode()

Otherwise, use this

mb_convert_encoding(utf8_encode(<YOURCONTENT>), 'HTML-ENTITIES', 'UTF-8');