I'm unescaping an ®
(registration character) in firefox to be submitted in a form, since actually typing that character into Javascript causes the script to behave strangely.
However, I must use the unescaped(..) version of the character since it is being submitted to the backend (where I have no control) and the output is a pdf file which uses the unescaped ®
for display in a pdf.
I unescape the ®
character like this:
unescape("%AE")
However...when I do view the ®
in the pdf file it appears as ®
, this only happens in Firefox, not in Internet Explorer.
Is there anyway of getting this to work in Firefox 2/3?
Thanks,
Andrew