CodepointToUTF8 method

Pointer<Char> CodepointToUTF8(
  1. int codepoint,
  2. Pointer<Int> utf8Size
)

Encode one codepoint into UTF-8 byte array (array length returned as parameter)

Implementation

Pointer<Char> CodepointToUTF8(int codepoint, Pointer<Int> utf8Size)
  => _CodepointToUTF8(codepoint, utf8Size);