HTMLText accent character

I have a issue with french character (and special character like ") :


In a TTMSFMXHTMLText component, the piece of code below display 
This is a french character: " é "
instead of 
This is a french character: " ? "

procedure TForm1.Button1Click(Sender: TObject);
var
   S: string;
begin
   TMSFMXRichEditor1.SpaceAsNbsp := False;
   TMSFMXRichEditor1.Clear;

   S := 'This is a french character: " ? "';
   TMSFMXRichEditor1.AddText(S);

   TMSFMXHTMLText1.Text := TMSFMXRichEditor1.ContentAsPlainHTML();
end;

Anyone can help me ?

Regards.

Event this post don't display the french character (I'm so a lucky guy).


In my previous post, the ? must be replace by this character : 

https://fr.wikipedia.org/wiki/%C3%89

Thanks !

The mini HTML supported by TMSFMXHTMLText is limited.
It is described here: https://www.tmssoftware.com/site/minihtml.asp 

é is currently not supported.
We'll look to extend the support for special characters. 

We have done improvements and extended the HTML special character set. The next update will have these improvements.

Thank you !