In the enumtype.def file, there areenum values enclosed in '#'s e.g. #DE# up tick or zero uptick, #FE# down tick or zero downtick. What encodingtype does this denote? I need to get these strings in UTF-8, but I don't knowwhat to convert from.
@Akechi Sato
Theenum values enclosed in “#” are hex characters encoded in Reuters Multi-LingualText Encoding Standard (RMTES). You need to use RMTES conversion utility toconvert the value to UTF-8. For example, “#DE#” will be converted to 0x e2 87a7 which displays ⇧ symbol.
Please note that there is no meta-data to define if the enum values are RMTES ornot, so application needs to pass all received enum values through the RMTES decoding.If the value is non-RMTES, the decoding will do nothing.
ForUPA C, please see the “11.2.9RMTES Decoding” section in UPA Developers Guide document for more information.
For RFA C++, please seethe “10.6 RMTESConverter Usage” section in RFA C++ Developers Guide documentfor more information.