次の方法で共有


UnicodeCharacters.GetCodepointFromSurrogatePair(UInt32, UInt32) メソッド

定義

指定した上位と下位のサロゲート ペアの補助 Unicode 文字を返します。

public:
 static unsigned int GetCodepointFromSurrogatePair(unsigned int highSurrogate, unsigned int lowSurrogate);
 static uint32_t GetCodepointFromSurrogatePair(uint32_t const& highSurrogate, uint32_t const& lowSurrogate);
public static uint GetCodepointFromSurrogatePair(uint highSurrogate, uint lowSurrogate);
function getCodepointFromSurrogatePair(highSurrogate, lowSurrogate)
Public Shared Function GetCodepointFromSurrogatePair (highSurrogate As UInteger, lowSurrogate As UInteger) As UInteger

パラメーター

highSurrogate
UInt32

unsigned int

uint32_t

上位サロゲート値。 これは適切な範囲である必要があります:0xD800 <= highSurrogate<= 0xDBFF。

lowSurrogate
UInt32

unsigned int

uint32_t

サロゲート値が低い。 これは適切な範囲である必要があります。0xDC00 <= lowSurrogate<= 0xDFFF。

戻り値

UInt32

unsigned int

uint32_t

補助 Unicode 文字。

適用対象

こちらもご覧ください