Reputation: 12441
Is there a reliable way to convert a given set of Simplified Chinese characters into their equivalent Traditional Chinese chars in a C# program?
Edit: If you use google translate, it's pretty reliable conversion from one to the other, however, how to do the conversion in C#?
Upvotes: 2
Views: 2279
Reputation: 51019
Use UNIHAN database: http://www.unicode.org/charts/unihan.html
It is said: The Unihan Database organizes information relating to the properties of CJK Unified Ideographs. Unihan Database Documentation is available in UAX #38.
Upvotes: 3