[#BloombergLP-bdlde-CharConvertUtf16-utf16ToUtf8-0090] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlde.adoc[bdlde]::xref:BloombergLP/bdlde/CharConvertUtf16.adoc[CharConvertUtf16]::utf16ToUtf8 :relfileprefix: ../../../ :mrdocs: Load into the destination the UTF‐8 conversion of the UTF‐16 source. == Synopsis Declared in `<bdlde_charconvertutf16.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static int utf16ToUtf8( char* dstBuffer, std::size_t dstCapacity, char16_t const* srcString, std::size_t* numCodePointsWritten = 0, std::size_t* numBytesWritten = 0, char errorByte = '?', xref:BloombergLP/bdlde/ByteOrder/Enum.adoc[ByteOrder::Enum] byteOrder = ByteOrder::e_HOST); ---- == Description Return 0 on success and a non‐zero status otherwise. See the first `utf16ToUtf8` overload in this group for full contract details. == Return Value 0 on success and a non‐zero status otherwise == Parameters [cols="1,4"] |=== | Name| Description | *dstBuffer* | destination buffer for the converted output | *dstCapacity* | capacity of `dstBuffer` in elements | *srcString* | source string to convert | *numCodePointsWritten* | if non‐null, set to the code‐point count written | *numBytesWritten* | if non‐null, set to the byte count written | *errorByte* | replacement for invalid input, or 0 to skip | *byteOrder* | UTF‐16 byte order; host order if unspecified |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#