MATLAB: Less than or equal as symbol in prompt of inputdlg

symbol inputdlg

Hello 🙂
I'm trying to use the symbol ≤ in the prompt of my inputdlg but I can't make it work.
Here is the code:
prompt={...
sprintf('%s\n%s','some text in first line',...
'enter number (5 < x < 50):'),... % here it would be great with the <= symbol instead
sprintf('%s\n%s','smoe more text',...
'i would really appreciate your help!')};
answer=inputdlg(prompt);
I would appreciate your help!

Best Answer

≤ is unicode U+2264, One way to insert it into text is with another sprintf:
sprintf('enter number (5 \x2264 x \x2264 50):')
You could always type <= to avoid resorting to Unicode.