I\'m new to learning Unicode, and not sure how much I have to learn based on my ASCII background, but I\'m reading the C# spec on rules for identifiers to determine what cha
You can retrieve this information in an automated fashion from the official Unicode data file, UnicodeData.txt
, which is published here:
This is a file with semicolon-separated values in each line. The third column tells you the character class of each character.
The benefit of this is that you can get the character name for each character, so you have a better idea of what it is than by just looking at the character itself (e.g. would you know what ბ is? That’s right, it’s Ban. In Georgian. :-)
)