In the older implementation with iText 7.0.7 and html2pdf 1.0.4, unicode symbols from the HTML would display in the output PDF.
But after upgrading to iText 7.1.12 and html2pdf 3.0.1, the output does not show the unicode characters.
How do I get the older behavior back with new versions?

Sample input:
<html>
<head>
<title>STA Form</title>
</head>
<body>
<table>
<tbody>
<tr>
<td>Will today’s weather have a potential safety impact?</td>
<td>
☑ Yes
☐ No
</td>
</tr>
</tbody>
</table>
</body>
</html>
