What am I missing?
Thanks,
Darryl R.
With C# you can use \u2014 in a string literal e.g.
string s = "\u2014";
Or you can use the same escape mechanism in a character literal e.g.
char c = '\u2014';
You can also cast the int value (8212 is 0x2014) to a char e.g.
char c = (char)8212;
--
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/