Why is unicode not displayed in the PDF. I am using the following code. My system out is giving me the correct response but PDF does not have the superscript.
Document outputDoc
Paragraph pdfParagraph = new Paragraph();
pdfParagraph.add(new Chunk("A\u207B"));
outputDoc.add(pdfParagraph);