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 );
