Charset C Reference Documentation

Charset

Current Version: 11.5.0

Deprecated — scheduled for removal

Legacy character-set conversion utilities. Migrate before Chilkat v12.0.0.

Do not use Chilkat.Charset in new development. The entire class is deprecated and is scheduled to be removed in Chilkat v12.0.0. Existing applications should migrate now. Equivalent functionality is available in the free Chilkat.BinData and Chilkat.StringBuilder classes.

Chilkat.Charset is a legacy class for converting text between character encodings, reading and writing encoded text files, inspecting or rewriting HTML charset declarations, encoding and decoding HTML entities, validating byte sequences, and performing several older text utilities. It remains documented only to support maintenance and migration of existing applications.

Use BinData for bytes

Store raw bytes, load and save files, append byte-order marks, and move encoded data between files, memory, and other Chilkat objects.

Use StringBuilder for text

Hold Unicode text and perform charset encoding or decoding, URL processing, HTML entity conversion, case conversion, and related text operations.

Prefer UTF-8

For new text formats and interchange, use UTF-8 unless a protocol or legacy system explicitly requires another encoding.

Keep bytes and characters distinct

A charset defines how text characters map to bytes. Binary encodings such as Base64 or hexadecimal solve a different problem and are not character sets.

Legacy HTML helpers

The class can inspect and rewrite HTML charset metadata, but these helpers do not validate that declared metadata matches the actual bytes.

Maintenance only

Continue using this class only while maintaining older code, and plan a tested migration before adopting Chilkat v12.

Migration pattern: load encoded bytes into BinData, decode them into a StringBuilder using the known source charset, work with Unicode text, then encode back into BinData using the required destination charset. This makes the boundary between bytes and text explicit and replaces the stateful FromCharset/ToCharset workflow.

Create/Dispose

HCkCharset instance = CkCharset_Create();
// ...
CkCharset_Dispose(instance);
HCkCharset CkCharset_Create(void);

Creates an instance of the HCkCharset object and returns a handle ("void *" pointer). The handle is passed in the 1st argument for the functions listed on this page.

void CkCharset_Dispose(HCkCharset handle);

Objects created by calling CkCharset_Create must be freed by calling this method. A memory leak occurs if a handle is not disposed by calling this function. Also, any handle returned by a Chilkat "C" function must also be freed by the application by calling the appropriate Dispose method, such as CkCharset_Dispose.

Properties

AltToCharset
void CkCharset_getAltToCharset(HCkCharset cHandle, HCkString retval);
void CkCharset_putAltToCharset(HCkCharset cHandle, const char *newVal);
const char *CkCharset_altToCharset(HCkCharset cHandle);

Specifies the alternate destination character encoding used only when ErrorAction is 6.

If a decoded input character cannot be represented in ToCharset, Chilkat attempts to encode that character using this alternate charset. If the alternate conversion also fails, the character is omitted from the output.

Mixed-encoding output: The result can contain a mixture of byte encodings. Such output is usually unsuitable for interchange unless the receiving format explicitly supports this behavior.

top
DebugLogFilePath
void CkCharset_getDebugLogFilePath(HCkCharset cHandle, HCkString retval);
void CkCharset_putDebugLogFilePath(HCkCharset cHandle, const char *newVal);
const char *CkCharset_debugLogFilePath(HCkCharset cHandle);

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
ErrorAction
int CkCharset_getErrorAction(HCkCharset cHandle);
void CkCharset_putErrorAction(HCkCharset cHandle, int newVal);

Controls what happens when an input character has been decoded successfully but cannot be represented in the destination charset.

ValueAction
0Drop the unrepresentable character.
1Insert the replacement configured by SetErrorString.
2Emit a hexadecimal numeric character reference such as €.
35Reserved. Do not use.
6Encode the character using AltToCharset; drop it if that also fails.
7Pass the nonconvertible data through unchanged.
Data-integrity warning: Values 0, 6, and 7 can silently lose data or produce output that is not valid in the declared destination charset. For new code, prefer an explicit failure or replacement policy in the replacement API.

top
FromCharset
void CkCharset_getFromCharset(HCkCharset cHandle, HCkString retval);
void CkCharset_putFromCharset(HCkCharset cHandle, const char *newVal);
const char *CkCharset_fromCharset(HCkCharset cHandle);

Specifies the character encoding of the input bytes for conversion operations. Chilkat decodes the source bytes using this charset before encoding the resulting Unicode text using ToCharset.

FamilyRecognized names
Unicode and ASCIIus-ascii, utf-7, utf-8, unicode / utf-16 / utf-16le, unicodefffe / utf-16be, utf-32, utf-32be
ISO and Windowsiso-8859-1, -2, -3, -4, -5, -6, -7, -8, -9, -13, -15; windows-874, windows-1250 through windows-1258
East Asianshift_jis, gb2312, ks_c_5601-1987, big5, iso-2022-jp, iso-2022-kr, euc-jp, euc-kr
Macintoshmacintosh, x-mac-japanese, x-mac-chinesetrad, x-mac-korean, x-mac-arabic, x-mac-hebrew, x-mac-greek, x-mac-cyrillic, x-mac-chinesesimp, x-mac-romanian, x-mac-ukrainian, x-mac-thai, x-mac-ce, x-mac-icelandic, x-mac-turkish, x-mac-croatian
DOS, IBM, and legacyebcdic, asmo-708, dos-720, dos-862, ibm01140 through ibm01149, ibm037, ibm437, ibm500, ibm737, ibm775, ibm850, ibm852, ibm855, ibm857, ibm00858, ibm860, ibm861, ibm863, ibm864, ibm865, cp866, ibm869, ibm870, cp875, koi8-r, koi8-u
Source encoding: unicode, utf-16, and utf-16le identify little-endian UTF-16. unicodefffe and utf-16be identify big-endian UTF-16. Except where a method explicitly documents HTML metadata detection, set the source charset explicitly rather than assuming automatic detection.

top
LastErrorHtml
void CkCharset_getLastErrorHtml(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastErrorHtml(HCkCharset cHandle);

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
void CkCharset_getLastErrorText(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastErrorText(HCkCharset cHandle);

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
void CkCharset_getLastErrorXml(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastErrorXml(HCkCharset cHandle);

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastInputAsHex
void CkCharset_getLastInputAsHex(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastInputAsHex(HCkCharset cHandle);

Returns the input bytes captured for the most recent conversion performed while SaveLast was enabled, represented as hexadecimal text.

Diagnostic snapshot: This is a diagnostic representation of the raw bytes. It does not perform another charset conversion, and the quoted-printable form is intended to make otherwise nonprintable bytes easier to inspect.

top
LastInputAsQP
void CkCharset_getLastInputAsQP(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastInputAsQP(HCkCharset cHandle);

Returns the input bytes captured for the most recent conversion performed while SaveLast was enabled, represented as quoted-printable text.

Diagnostic snapshot: This is a diagnostic representation of the raw bytes. It does not perform another charset conversion, and the quoted-printable form is intended to make otherwise nonprintable bytes easier to inspect.

top
LastMethodSuccess
BOOL CkCharset_getLastMethodSuccess(HCkCharset cHandle);
void CkCharset_putLastMethodSuccess(HCkCharset cHandle, BOOL newVal);

Indicates the success or failure of the most recent method call: TRUE means success, FALSE means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
LastOutputAsHex
void CkCharset_getLastOutputAsHex(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastOutputAsHex(HCkCharset cHandle);

Returns the output bytes captured for the most recent conversion performed while SaveLast was enabled, represented as hexadecimal text.

Diagnostic snapshot: This is a diagnostic representation of the raw bytes. It does not perform another charset conversion, and the quoted-printable form is intended to make otherwise nonprintable bytes easier to inspect.

top
LastOutputAsQP
void CkCharset_getLastOutputAsQP(HCkCharset cHandle, HCkString retval);
const char *CkCharset_lastOutputAsQP(HCkCharset cHandle);

Returns the output bytes captured for the most recent conversion performed while SaveLast was enabled, represented as quoted-printable text.

Diagnostic snapshot: This is a diagnostic representation of the raw bytes. It does not perform another charset conversion, and the quoted-printable form is intended to make otherwise nonprintable bytes easier to inspect.

top
SaveLast
BOOL CkCharset_getSaveLast(HCkCharset cHandle);
void CkCharset_putSaveLast(HCkCharset cHandle, BOOL newVal);

When TRUE, retains the input and output byte sequences from each conversion so they can be inspected through LastInputAsHex, LastInputAsQP, LastOutputAsHex, and LastOutputAsQP.

Debugging only: Enable this only while troubleshooting. Retaining both sides of a large conversion increases memory use and may keep sensitive plaintext in memory longer than necessary.

top
ToCharset
void CkCharset_getToCharset(HCkCharset cHandle, HCkString retval);
void CkCharset_putToCharset(HCkCharset cHandle, const char *newVal);
const char *CkCharset_toCharset(HCkCharset cHandle);

Specifies the destination character encoding for conversion operations. After decoding the source bytes using FromCharset, Chilkat encodes the resulting Unicode text in this charset.

FamilyRecognized names
Unicode and ASCIIus-ascii, utf-7, utf-8, unicode / utf-16 / utf-16le, unicodefffe / utf-16be, utf-32, utf-32be
ISO and Windowsiso-8859-1, -2, -3, -4, -5, -6, -7, -8, -9, -13, -15; windows-874, windows-1250 through windows-1258
East Asianshift_jis, gb2312, ks_c_5601-1987, big5, iso-2022-jp, iso-2022-kr, euc-jp, euc-kr
Macintoshmacintosh, x-mac-japanese, x-mac-chinesetrad, x-mac-korean, x-mac-arabic, x-mac-hebrew, x-mac-greek, x-mac-cyrillic, x-mac-chinesesimp, x-mac-romanian, x-mac-ukrainian, x-mac-thai, x-mac-ce, x-mac-icelandic, x-mac-turkish, x-mac-croatian
DOS, IBM, and legacyebcdic, asmo-708, dos-720, dos-862, ibm01140 through ibm01149, ibm037, ibm437, ibm500, ibm737, ibm775, ibm850, ibm852, ibm855, ibm857, ibm00858, ibm860, ibm861, ibm863, ibm864, ibm865, cp866, ibm869, ibm870, cp875, koi8-r, koi8-u
Choosing an output encoding: For new text interchange, utf-8 is normally the preferred destination. Legacy single-byte encodings cannot represent every Unicode character; ErrorAction controls how such conversion failures are handled.

top
Utf8
BOOL CkCharset_getUtf8(HCkCharset cHandle);
void CkCharset_putUtf8(HCkCharset cHandle, BOOL newVal);

When set to TRUE, all const char * arguments and return values are interpreted as UTF-8 strings. When set to FALSE, they are interpreted as ANSI strings.

In Chilkat v11.0.0 and later, the default value is TRUE. Before v11.0.0, it was FALSE.

top
VerboseLogging
BOOL CkCharset_getVerboseLogging(HCkCharset cHandle);
void CkCharset_putVerboseLogging(HCkCharset cHandle, BOOL newVal);

If set to TRUE, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is FALSE. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
void CkCharset_getVersion(HCkCharset cHandle, HCkString retval);
const char *CkCharset_version(HCkCharset cHandle);

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

CharsetToCodePage
int CkCharset_CharsetToCodePage(HCkCharset cHandle, const char *charsetName);

Returns the numeric Windows code-page identifier corresponding to charsetName. For example, iso-8859-1 maps to 28591, and utf-8 maps to 65001.

Code pages: A code page number is a legacy Windows identifier for a character encoding. Internet protocols and modern APIs normally use charset names such as utf-8 rather than numeric code pages.
top
CodePageToCharset
BOOL CkCharset_CodePageToCharset(HCkCharset cHandle, int codePage, HCkString outCharset);
const char *CkCharset_codePageToCharset(HCkCharset cHandle, int codePage);

Returns the charset name corresponding to the numeric code-page identifier in codePage. For example, 65001 maps to utf-8. The operation fails when the code page is not recognized.

Name normalization: Different aliases can identify the same encoding. The returned value is Chilkat’s canonical name for the recognized code page, not necessarily the alias originally used by another application.

Returns TRUE for success, FALSE for failure.

top
ConvertFile
BOOL CkCharset_ConvertFile(HCkCharset cHandle, const char *inPath, const char *destPath);

Reads the file at inPath, converts its text from FromCharset to ToCharset, and writes the converted bytes to the file at destPath.

When the destination charset is utf-8 or utf-16, this method writes the corresponding byte-order mark (BOM) at the beginning of the output. Use ConvertFileNoPreamble when the output must not contain a BOM.

BOM behavior: A BOM is a leading byte sequence that can identify a Unicode encoding or byte order. UTF-8 does not require a BOM, and many modern formats prefer UTF-8 without one.

Returns TRUE for success, FALSE for failure.

top
ConvertFileNoPreamble
BOOL CkCharset_ConvertFileNoPreamble(HCkCharset cHandle, const char *inPath, const char *destPath);

Reads the file at inPath, converts its text from FromCharset to ToCharset, and writes the converted bytes to destPath without adding a byte-order mark or other encoding preamble.

UTF-8 output: This is generally the appropriate choice for UTF-8 files unless the consuming system specifically requires a UTF-8 BOM.
top
ConvertHtmlFile
BOOL CkCharset_ConvertHtmlFile(HCkCharset cHandle, const char *inPath, const char *destPath);

Converts the HTML file at inPath to ToCharset and writes the result to destPath. Chilkat also updates the HTML <meta> charset declaration to identify the destination encoding.

If FromCharset is empty, Chilkat attempts to obtain the source charset from an HTML <meta> declaration. Otherwise, the explicitly configured source charset is used.

Detection limitation: A declared charset is metadata, not proof of the file’s actual encoding. Incorrect or missing declarations can cause decoding errors; use an explicit source charset when it is known.

Returns TRUE for success, FALSE for failure.

top
EntityEncodeDec
BOOL CkCharset_EntityEncodeDec(HCkCharset cHandle, const char *str, HCkString outStr);
const char *CkCharset_entityEncodeDec(HCkCharset cHandle, const char *str);

Returns str with each non-US-ASCII character replaced by a decimal HTML/XML numeric character reference. For example, é becomes &#233;.

Entity encoding: Numeric character references describe Unicode characters; they are not a character-set conversion and do not make arbitrary binary data safe for HTML.

Returns TRUE for success, FALSE for failure.

top
EntityEncodeHex
BOOL CkCharset_EntityEncodeHex(HCkCharset cHandle, const char *str, HCkString outStr);
const char *CkCharset_entityEncodeHex(HCkCharset cHandle, const char *str);

Returns str with each non-US-ASCII character replaced by a hexadecimal HTML/XML numeric character reference. For example, é becomes &#xE9;.

Entity encoding: Decimal and hexadecimal numeric references represent the same Unicode character; only the textual notation differs.

Returns TRUE for success, FALSE for failure.

top
GetHtmlFileCharset
BOOL CkCharset_GetHtmlFileCharset(HCkCharset cHandle, const char *htmlFilePath, HCkString outCharset);
const char *CkCharset_getHtmlFileCharset(HCkCharset cHandle, const char *htmlFilePath);

Examines the HTML file at htmlFilePath and returns the charset name declared by an HTML <meta> element, when present.

Metadata only: The method reads document metadata only. A missing, stale, or incorrect declaration does not reveal the file’s true encoding.

Returns TRUE for success, FALSE for failure.

top
HtmlDecodeToStr
BOOL CkCharset_HtmlDecodeToStr(HCkCharset cHandle, const char *inStr, HCkString outStr);
const char *CkCharset_htmlDecodeToStr(HCkCharset cHandle, const char *inStr);

Decodes HTML named entities and numeric character references in inStr and returns the resulting Unicode string. Examples include &lt;, &amp;, &#233;, and &#xE9;.

Security context: Entity decoding is a text transformation, not HTML parsing or sanitization. Decoding untrusted text can reintroduce markup-significant characters such as <, >, and &.

Returns TRUE for success, FALSE for failure.

top
HtmlEntityDecodeFile
BOOL CkCharset_HtmlEntityDecodeFile(HCkCharset cHandle, const char *inPath, const char *destPath);

Reads the file at inPath, decodes HTML named entities and numeric character references, and writes the transformed content to destPath.

Content transformation: The output may contain literal markup-significant characters that were previously escaped. This operation does not parse, validate, or sanitize HTML.

Returns TRUE for success, FALSE for failure.

top
LowerCase
BOOL CkCharset_LowerCase(HCkCharset cHandle, const char *inStr, HCkString outStr);
const char *CkCharset_lowerCase(HCkCharset cHandle, const char *inStr);

Returns the lowercase form of inStr using Chilkat’s Unicode case conversion.

Unicode casing: Case conversion can change string length and is not the same operation as locale-aware collation or case-insensitive comparison.

Returns TRUE for success, FALSE for failure.

top
ReadFileToString
BOOL CkCharset_ReadFileToString(HCkCharset cHandle, const char *path, const char *charset, HCkString outStr);
const char *CkCharset_readFileToString(HCkCharset cHandle, const char *path, const char *charset);

Reads the text file at path, decodes its bytes using the charset named by charset, and returns the resulting Unicode string.

Charset must match the file: The caller must supply the actual source encoding. Choosing the wrong charset can produce replacement characters or silently incorrect text even when the file can be decoded.

Returns TRUE for success, FALSE for failure.

top
SetErrorString
void CkCharset_SetErrorString(HCkCharset cHandle, const char *str, const char *charset);

Configures the replacement used when ErrorAction is 1. str is the replacement text, and charset identifies the charset used to encode that replacement into the conversion output.

Replacement behavior: Choose replacement text that is representable in the specified charset. A common replacement is ?, but explicit error handling is safer when data loss is unacceptable.
top
UpperCase
BOOL CkCharset_UpperCase(HCkCharset cHandle, const char *inStr, HCkString outStr);
const char *CkCharset_upperCase(HCkCharset cHandle, const char *inStr);

Returns the uppercase form of inStr using Chilkat’s Unicode case conversion.

Unicode casing: Case conversion can change string length and is not the same operation as locale-aware collation or case-insensitive comparison.

Returns TRUE for success, FALSE for failure.

top
UrlDecodeStr
BOOL CkCharset_UrlDecodeStr(HCkCharset cHandle, const char *inStr, HCkString outStr);
const char *CkCharset_urlDecodeStr(HCkCharset cHandle, const char *inStr);

Percent-decodes inStr and interprets the resulting bytes using the platform’s legacy ANSI character encoding.

For example, in a Western Windows code page, %C9 may decode as É. UTF-8 input would encode the same character as %C3%89 and is therefore not handled correctly by this legacy assumption.

Legacy ANSI behavior: Do not use this method for modern URLs or form data unless the data is known to use the applicable ANSI code page. Use StringBuilder URL decoding with an explicit charset, normally utf-8.

Returns TRUE for success, FALSE for failure.

top
VerifyFile
BOOL CkCharset_VerifyFile(HCkCharset cHandle, const char *charset, const char *path);

Returns TRUE when the contents of the file at path form a valid byte sequence for the charset named by charset; otherwise returns FALSE.

Validation limitation: A successful result means only that the bytes are structurally valid for that encoding. It does not identify the encoding or confirm that the decoded text is semantically correct.
top
WriteStringToFile
BOOL CkCharset_WriteStringToFile(HCkCharset cHandle, const char *textData, const char *path, const char *charset);

Encodes the Unicode text in textData using the charset named by charset and writes the resulting bytes to the file at path.

Destination encoding: The charset argument is the third parameter. Select utf-8 for modern interchange unless a receiving system requires a specific legacy encoding.

Returns TRUE for success, FALSE for failure.

top

Deprecated

ConvertData Deprecated
BOOL CkCharset_ConvertData(HCkCharset cHandle, HCkByteData inData, HCkByteData outData);

Converts the bytes in inData from FromCharset to ToCharset and returns the converted bytes.

Returns TRUE for success, FALSE for failure.

top
ConvertFromUnicode Deprecated
BOOL CkCharset_ConvertFromUnicode(HCkCharset cHandle, const char *inData, HCkByteData outBytes);

Encodes the Unicode string in inData using ToCharset and returns the resulting bytes.

Returns TRUE for success, FALSE for failure.

top
ConvertFromUtf16 Deprecated
BOOL CkCharset_ConvertFromUtf16(HCkCharset cHandle, HCkByteData uniData, HCkByteData outMbData);

Converts the UTF-16 byte sequence in uniData to the character encoding specified by ToCharset and returns the resulting bytes.

Returns TRUE for success, FALSE for failure.

top
ConvertHtml Deprecated
BOOL CkCharset_ConvertHtml(HCkCharset cHandle, HCkByteData inData, HCkByteData outHtml);

Converts HTML bytes in inData from FromCharset to ToCharset. The returned bytes contain the converted HTML, and Chilkat updates the HTML <meta> charset declaration to identify the destination encoding.

HTML charset declarations: Updating a <meta charset> declaration does not change HTTP response headers. When serving the converted file over HTTP, the server’s Content-Type charset must agree with the actual bytes.

Returns TRUE for success, FALSE for failure.

top
ConvertToUnicode Deprecated
BOOL CkCharset_ConvertToUnicode(HCkCharset cHandle, HCkByteData inData, HCkString outStr);
const char *CkCharset_convertToUnicode(HCkCharset cHandle, HCkByteData inData);

Decodes the bytes in inData using FromCharset and returns the resulting Unicode string.

Returns TRUE for success, FALSE for failure.

top
ConvertToUtf16 Deprecated
BOOL CkCharset_ConvertToUtf16(HCkCharset cHandle, HCkByteData mbData, HCkByteData outUniData);

Decodes the bytes in mbData using FromCharset and returns the text encoded as UTF-16 bytes.

Returns TRUE for success, FALSE for failure.

top
GetHtmlCharset Deprecated
BOOL CkCharset_GetHtmlCharset(HCkCharset cHandle, HCkByteData inData, HCkString outCharset);
const char *CkCharset_getHtmlCharset(HCkCharset cHandle, HCkByteData inData);

Examines the HTML bytes in inData and returns the charset name declared by an HTML <meta> element, when present.

Metadata only: This reports the declaration found in the document. It does not verify that the bytes actually use that encoding, and it does not inspect an HTTP Content-Type header.

Returns TRUE for success, FALSE for failure.

top
HtmlEntityDecode Deprecated
BOOL CkCharset_HtmlEntityDecode(HCkCharset cHandle, HCkByteData inHtml, HCkByteData outData);

Decodes HTML entities and numeric character references in the byte data supplied in inHtml and returns the resulting bytes.

Operation scope: Entity decoding is not a charset conversion and does not sanitize HTML.

Returns TRUE for success, FALSE for failure.

top
ReadFile Deprecated
BOOL CkCharset_ReadFile(HCkCharset cHandle, const char *path, HCkByteData outData);

Reads the entire file at path and returns its raw bytes without performing charset conversion.

Returns TRUE for success, FALSE for failure.

top
VerifyData Deprecated
BOOL CkCharset_VerifyData(HCkCharset cHandle, const char *charset, HCkByteData inData);

Returns TRUE when the bytes in inData form a valid sequence for the charset named by charset; otherwise returns FALSE.

What validation means: This checks encoding validity only. It does not prove that the selected charset is the intended one. For many single-byte encodings, every possible byte value is valid.
top
WriteFile Deprecated
BOOL CkCharset_WriteFile(HCkCharset cHandle, const char *path, HCkByteData byteData);

Writes all bytes from byteData to the file at path without performing charset conversion.

top