I am trying to plot the following graph on IDL
PRO HMMM
a = '+'
b = '-'
c = '%'
x = [b+'20'+c, b+'10'+c, '0', a+'10'+c, a+'20'+c]
y = [1.2, 3.2, 4.5, 5.1, 6]
plot, x, y
END
The graph is produced but the '%' and '+' disappear. What is the right way to present those symbols on idl?