This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: 𡁀 coming out as ?


> I've got a .xsl file with the following html markup in it:
>
> <td>&#21040;</td><td>5/1/02</td>
>
> where &#21040; is the decimal value of a chinese character.  The problem
is
> that when I run the xsl through the transformer (MICROSOFT.XMLDOM), it
> outputs <td>?</td><td>5/1/02</td>.  Is this enough information to know
what
> I am doing wrong?

Nothing is wrong with the XSL, only the browser can't display the character.

<![CDATA[&#21040;]]> means that all characters will be escaped before the
transformer get's to see it: &amp;#21040;
So this will be placed in the output and shown in the browser as you saw it.

Regards,

Joerg


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]