I am using the iText (java library) to generate a PDF file.
Here I have a paragraph in which I have to put a check mark
PdfPCell cell95 = new PdfPCell(new Paragraph((new Chunk('\u2713', FontFactory.getFont(FontFactory.HELVETICA, 11, Font.BOLD, new BaseColor(0,0,0))))));
I am using this but it is not working.
You cannot use a unicode directly into a PDFPCell.
Instead, create image of checkmark and insert it into PDFPCell.