public void createPdf(String dest) throws IOException, DocumentException {
Document document = new Document();
PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
document.add(new Paragraph("The standard deviation symbol doesn't exist in Helvetica."));
Font symbol = new Font(FontFamily.SYMBOL);
Paragraph p = new Paragraph("So we use the Symbol font: ");
p.add(new Chunk("s", symbol));
document.add(p);
document.close();
}
The σ-symbol doesn't exist in Helvetica, so you need to use the Symbol font. This is demonstrated in the StandardDeviation. See standard_deviation.pdf:
This is how it's done: