Ray
Ray

Reputation: 12441

Convert Chinese simplified to traditional programmatically in C#

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

Answers (1)

Dims
Dims

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

Related Questions