which encoding should i used with fopen in matlab

10 views (last 30 days)
the instruction :
fullpathr = strcat (exp_subfolder,tmf_file)
fidr = fopen(fullpathr,r,'ieee-le','UCS-2')
i want to open and read a file in matlab but always it return -1 and warning "the encoding UTF-16 is not supported"
please can any one help me in this
  1 Comment
Walter Roberson
Walter Roberson on 17 Jun 2025
This is because MATLAB only officially supports UTF-8 encoding with 'fopen'.
Not exactly. MATLAB supports a long list of encodings, mostly ISO. However, it does not officially support UTF-16

Sign in to comment.

Answers (1)

Saurabh
Saurabh on 18 Jun 2025
I understand you are encountering an issue opening a UCS‑2 (or UTF‑16) encoded file in MATLAB. This is because MATLAB only officially supports UTF-8 encoding with 'fopen'. While encodings like UCS-2, UTF-16LE are not officially supported.
To workaround this limitation:
Read raw bytes and Decode explicitly.
fid = fopen(fullpathr, 'rb');
fread(fid, 2, '*uint8'); % Skip BOM
bytes = fread(fid, 'uint8=>uint8')';
fclose(fid);
str = native2unicode(bytes, 'UTF-16LE');
data = textscan(str, '%s %f %f', 'Delimiter', ',', 'HeaderLines', 1);
This method reads raw bytes, manually decodes them using native2unicode, and then parses the resulting string.
  • 'native2unicode' converts byte arrays to MATLAB character arrays based on the specified encoding (UTF-16LE, UTF-8, etc.)
  • This approach handles files with 16-bit encoding reliably, avoiding issues from fopen’s limited encoding support .
To know more about 'native2unicode' refer to the following official MathWorks documentation:
I hope this helps in resolving your query.

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!