We have an important legal document that our app generates in WordML, with foreign characters represented via Unicode. These foreign characters vary widely, and include languages with special characters like Korean and Cyrillic.
We have all of the unicode hex values for WordML, but our print room has informed us that they can't accept .doc files at all - only PDFs. So we're now converting the entire file into an XSL-FO document.
The problem is - XSL-FO doesn't use the same Unicode hex values, and in fact when we try to produce the XSL-FO document, the hex values come out as "#" symbols, indicating that no proper value was found.
Not all the unicode characters failed to be produced - in particular, special characters for French and Spanish seemed to display just fine. But none of the Cyrillic or Korean characters were successfully displayed.
Is there a library of Hex code characters for XSL-FO, or some type of simple conversion we could do to make these hex codes match the XSL-FO Unicode values?