Render Unicode Supplementary characters in output PDF by Aspose.Cells for Node.js via C++

Render Unicode Supplementary characters in output PDF by Aspose.Cells for Node.js via C++

The following screenshot shows how Aspose.Cells rendered the source excel file into the output PDF. As you can see all three Unicode Supplementary characters have been rendered exactly the 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.

const path = require("path");
const AsposeCells = require("aspose.cells.node");

// The path to the documents directory.
const dataDir = path.join(__dirname, "data");

// Load your source excel file containing Unicode Supplementary characters
const workbook = new AsposeCells.Workbook(path.join(dataDir, "unicode-supplementary-characters.xlsx"));

// Save the workbook
workbook.save(path.join(dataDir, "RenderUnicodeInOutput_out.pdf"));