tags:

views:

32

answers:

1

Does anyone know an easy way to include the greater than or equal symbol in an iText PDF document without resorting to custom fonts?

+3  A: 

You need to add the unicode for this character. Make sure that the char is included in the font you use.

document.add( new Paragraph("\u2264"));
stacker