I would like to add a ten thousand symbol to the axis label using ggplot2 .
To insert a thousand symbol, I can use:
library(ggplot2) qplot(1, 1) + ylab("\u2030")
But when I use
qplot(1, 1) + ylab("\u2031")
to generate a ten thousand symbol, the result generated is a field containing a question mark. The text family uses Calibri, but the same output is generated with the default text family.
Is this character supported?
source share