0

Does anybody know how to print checkmark symbols like: ✓ "✓" "✓" "✓" ? I have tried include some google fonts, in browser i see symbol, but after render - only # instead of ✓.

samabcde
  • 6,988
  • 2
  • 25
  • 41
Alexander
  • 89
  • 7

1 Answers1

2

By default XML allows the use of five character entities being &, ", ', < and >. If you'd like to use other character entities derived from XHTML such as   then you can use the special project doctype:

<!DOCTYPE html PUBLIC"-//OPENHTMLTOPDF//DOC XHTML Character Entities Only 1.0//EN" "">

You can check their documentation about that.

Ali BEN AMOR
  • 126
  • 1
  • 6