Koen Pellegrims wrote: > Maybe my post wasn't very clear; the XML contains ë but JavaScript > expects \U00EB (which is 235 in hex). > Instead of reinventing the wheel, I was hoping there would be some standard > way to convert from one into the other.
I don't think you need to do anything at all. Entities are only used in serialized XML, as the notation \uNNNN is only used in JS source. The parser converts the XML entieties and character references into the proper internal Unicode character, which should be the same the JS interpreter expects. J.Pietschmann --------------------------------------------------------------------- Please check that your question has not already been answered in the FAQ before posting. <http://xml.apache.org/cocoon/faq/index.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>
