I downloaded a Matlab code sample online and the comments are showing as strange characters. as shown below
% Ïðîãðàììà ïîèñêà íîìåðîâ àâòîìîáèëåé è ðàñïîçíàâàíèÿ
% áóêâ è öèôð íîìåðà ïðè èñïîëüçîâàíèè íåéðîííûõ ñåòåé
% Íîìåð îòîáðàæàåòñÿ ïîñëå ãîëîñîâàíèÿ
function Detection_Recognition1()
clear
clc
% Îòêðûòèå ôàéëà
video=mmreader('car10.avi'); % 2 4 5 6" 7 8 9 10 11 12
% Íåêîòîðûå ñâîéñòâà âèäåî
width=video.Width; % Øèðèíà êàäðà
height=video.Height; % Âûñîòà êàäðà
frameRate=video.FrameRate; % Ñêîðîñòü êàäðîâ â ñåê.
numOfFrames=video.NumberOfFrames; % Êîëè÷åñòâî êàäðîâ â âèäåî ôàéëå
% ×òåíèå äèàïàçîíà êàäðîâ (íóìåðóþòñÿ ñ 1)
Range=[1 numOfFrames]; % Äèàïàçîí êàäðîâ
frames=read(video,Range);
sizFrames=size(frames);
I tried opening it on Windows and Linux too and the same jibberish comes out. What could cause this and how can it be converted to ASCII?