With the following function you get an output of missing characers, but it doesn’t check the fallback fonts.
font.HasCharacters(tempMessage, out List missing);
But if you use this function which supports the fallback fonts then it gives you an output of ints, what are these ints?
font.HasCharacters(tempMessage, out uint[ ] missing, true, true);
So how do I get the missing characters from the int value?