Char.IsSurrogate tells whether the specified character has a surrogate code point.
Imports System Module IsSurrogateSample Sub Main() Console.WriteLine(Char.IsSurrogate("a"c)) End Sub End Module