You can test ascii2uni by giving it this file as input and
varying the conversion flag.  For example, the command:

	ascii2uni -A < TestSuiteAscii2Uni

should reproduce this file except for the fact that <U00E9>
will be replaced with lower-case e with acute accent.
All of the characters in the right-hand column should be
lower-case e with acute accent when converted with the exception
of the L: row, which should be a mathematical bold upper-case A.

A:	<U00E9>
B:	\x00E9
C:	\x{00E9}
D:	&#0233;
E:	U00E9
F:	u00E9
G:	X'00E9'
H:	&#x00E9;
I:	=C3=A9
J:	%C3%A9
K:	\303\251
L:	\U0001D400
P:	U+00E9
Q:	&eacute;
R:	00E9
U:	\u00E9
X:	0x00E9

