Display Special Characters in Oracle reports
I have the following text in one of our columns.
Embarc™ Blue Mountain
When I call this value from Oracle Reports it shows as
EMBARC¿ BLUE MOUNTAIN
The Oracle report eventually gets converted to a PDF.
I've tried this
REPLACE (UTL_ENCODE.mimeheader_encode (RTRIM (LTRIM (UPPER (pp.property_desc))), NULL, 2), ' ', ' ') resort but it doesn't work.
Any ideas?