Control

The next line uses code points and should contain a lowercase a-acute and a euro sign.

á €

Basic tests

The following lines should begin with a lowercase a-acute:

<div>&#xE1;</div>

á

<div>&#225;</div>

á

<div>&aacute;</div>

á

Uppercase entities

The following line should begin with an uppercase a-acute:

<div>&Aacute;</div>

Á

Euro sign

The following lines should begin with a euro sign.

<div>&#x20AC;</div>

<div>&#8364;</div>

<div>&euro;</div>

Windows code points

The following lines should NOT begin with a euro sign, but numerous user agents do display the euro for compatability with incorrect usage of the Windows 1252 code page.

<div>&#x80;</div>

<div>&#128;</div>

Version: $Id: sec-escape-1.html,v 1.4 2004/11/04 20:50:20 rishida Exp $