I'm attempting to display some static text with something like the following pseudo code:

Qt Code:
  1. Import QtQuick 2.5
  2. Import QtQuick.Window 2.1
  3.  
  4. Window{
  5. Text{
  6. text: "Something Is Not Connected"
  7. }
  8. }
To copy to clipboard, switch view to plain text mode 

It is taking the "No" and converting it to the numero symbol "?", so it reads "Something Is ?t Connected". It seems to be a combination of the font being used (Nimbus Sans L) and the Qt version (5.14). If I change either of these the issue goes away.

Is there something I'm missing, or some way I can explicitly instruct Qt/QML not to mangle the string like this?