Render Unicode Supplementary characters in output PDF by Aspose.Cells for Python via .NET

Render Unicode Supplementary characters in output PDF by Aspose.Cells for Python via .NET

The following screenshot shows how Aspose.Cells for Python via .NET rendered the source excel file into the output PDF. As you can see all three Unicode Supplementary characters have been rendered exactly same as done by Microsoft Excel.

todo:image_alt_text

Sample Code

You can use this sample code to convert source excel file into output PDF.

from aspose.cells import Workbook
# For complete examples and data files, please go to https:# github.com/aspose-cells/Aspose.Cells-for-.NET
# The path to the documents directory.
dataDir = RunExamples.GetDataDir(".")
# Load your source excel file containing Unicode Supplementary characters
wb = Workbook(dataDir + "unicode-supplementary-characters.xlsx")
# Save the workbook
wb.save(dataDir + "RenderUnicodeInOutput_out.pdf")