TS 6.1 on SolarisApparently there are two flavors of UTF-8, decimal and hex. It appears our DCRs are storing decimal, while our apps are wanting hex.For instance, "Español". In the DCR and resulting page it comes out as "Espa\303\261ol", which is valid. However, I need it to come out in the hex value of "Espa� 0F1;ol". (space added)Is there a way to set how it's stored in the DCR? Or does someone know of a Perl function I can use to convert it? I've tried some stuff with Encode, but haven't been successful with it.Any help is appreciated.