[SOLVED] How to draw slashed 0 character?

I need to substitute the “slashed 0” character in some displayed text, but that character does not show when rendered using this code. How do I render that character properly?

        int progPercent = int(round(progressPercent));
        juce::String numText(progPercent);
        numText = numText.replaceCharacter('0',157);
        numText += "%";
        g.drawText( numText, 0, 256, bounds.getWidth(), 40, juce::Justification::centred, false );

Oh… looks like it’s 216, not 157. Guess the page I had for my font didn’t have the glyphs in their correct order! That’s helpful…