Text contains characters that cannot be resolved by this SpriteFont
- by Appeltaart
I'm trying to draw currency symbols in an Arial Spritefont. According to thissite, the font contains these symbols. I've included the Unicode character region for these symbols in the Content Processor SpriteFont file, like so:
<CharacterRegions>
<CharacterRegion>
<Start> </Start>
<End>~</End>
</CharacterRegion>
<CharacterRegion>
<!-- Currency symbols -->
<Start>₠</Start>
<End>₺</End>
</CharacterRegion>
</CharacterRegions>
However, whenever I try to draw a € (Euro) symbol, I get this exception:
Text contains characters that cannot be resolved by this SpriteFont
Inspecting the SpriteFont in the IDE at that breakpoint shows the € symbol is in there. I'm at a loss at what could be wrong. Why is this exception thrown?