- From: Jelks Cabaniss <jelks@jelks.nu>
 - Date: Thu, 2 Dec 1999 23:45:36 -0500
 - To: <www-html@w3.org>
 
Murray Altheim wrote:
> I was trying to point out that there is a big difference between simply
> typing '&x03EE;' into a document and it showing up correctly as a 'Coptic
> capital letter Dei' on one's screen (rather than a little '?').
>
> ...
> the Web interoperably. For example, I know of no system available that
> can display the entire set of even the most common languages (say, even
> the Latin languages, Arabic, Chinese and Cyrillic), much less Coptic.
You will see all those character entities (except the Coptic Dei) with the
following -- in IE5.01:
------------------------------------------------------
	<?xml version="1.0"?>
	<!DOCTYPE doc [
	<!ATTLIST style id ID #REQUIRED>
	<!ENTITY ntilde "ñ">
	]>
	<?xml-stylesheet href="#sample" type="text/css"?>
	<doc>
	  <style id="sample"><!--
	    doc { display: block; }
	    p { display: block; margin: 1em 0em;
	        font: 1em verdana, helvetica, sans-serif; }
	  --></style>
	  <p>ñ started this thread.</p>
	  <!-- here on out, just use decimal entities directly -->
	  <p>Hebrew's first letter is א,
	  while ب is a B in Arabic.</p>
	  <p>ヂ is from Katakana, だ is from Hiragana.</p>
	  <p>亊 is a CJK Unified Ideograph, and д
	  is a lowercase Cyrillic D.</p>
	  <p>The Copts saw Ϯ as important, but IE doesn't.</p>
	</doc>
------------------------------------------------------
I used the CSS PI to avoid the IE5-XSLized "tags view".
/Jelks
Received on Thursday, 2 December 1999 23:45:03 UTC