Char.IsSymbol Method tells whether the specified Unicode character is categorized as a symbol character.
Imports System
Module IsSymbolSample
Sub Main()
Dim str As String
str = "non-symbolic characters"
Console.WriteLine(Char.IsSymbol("+"c))
Console.WriteLine(Char.IsSymbol(str, 8))
End Sub
End Module