Questions tagged [utf-16]

UTF-16 is a coding system that can depict Unicode code points using either 2 or 4 bytes for each character.

NiFi: Transforming UTF-16 CSV Data to JSON using Split Record Processor

I am currently attempting to convert a CSV file that is tab delimited to JSON format, with the challenge being that the CSV file is encoded in UTF-16. All fields in both the CSV and JSON files are string type. I have implemented a SplitRecord processor in ...

Differences between String Comparison in Node.js with "UTF-16"

Just starting out with Node.js and hoping to find an npm package or module that can compare two strings in UTF-16 format. In my C# code, I currently use the following function: public int Compare(string x, string y) { var myComparer = CompareInfo.Get ...

Troubleshooting UTF-16 problem with Python's Azure BlobClient

Currently, I am looking to transfer data from a streaming source into a CSV file saved in an Azure ADLS Gen2 Blob container. To ensure proper compatibility with Excel, the encoding must be UTF-16-LE. My existing code works flawlessly when using UTF8 withou ...