ITranscoder is an abstract class that provides the standard interfaces for all transcoding operations. Transcoders for each character set are implemented in subclasses of ITranscoder. To create a transcoder, call the static function ITranscoder::createTranscoder with a parameter specifying the name of the character set you want to transcode text to or from.
ITranscoder* transcoder = ITranscoder::createTranscoder("ISO-8859-1");
Transcoding Classes
Transcoder Names