Get names of Unicode characters

  • Thread starter Michael A. Covington
  • Start date
M

Michael A. Covington

Is there anything in the .NET Framework, or any third-party class I can get,
that would translate Unicode characters to their names? For example, given
\u0033 it should give me "Numeral Three" or words to that effect, and
likewise for much if not all of Unicode.

Thanks!
 
J

Jeroen Mostert

Michael said:
Is there anything in the .NET Framework,
No.

or any third-party class I can get,

I don't think so, but I haven't looked very closely.
that would translate Unicode characters to their names? For example, given
\u0033 it should give me "Numeral Three" or words to that effect, and
likewise for much if not all of Unicode.
The information you're looking for is in the Unicode Character Database
(http://www.unicode.org/Public/UNIDATA/UCD.html), which is easy to read and
parse (http://www.unicode.org/Public/5.0.0/ucd/UnicodeData.txt). It's
trivial to write your own class for it.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top