Have a try to obtain its ascii code. If available you can then search for it in the web.
Select one of these characters then go to the Immediate window of VBE (Ctrl+G if not visible), paste this code and press Enter:
Code:
Debug.Print AscW(Selection.Text) & " " & Selection.Text
Or you can try to detect its font name and code ... same as above but use code:
Code:
Debug.Print Selection.Font.NameAscii & " " & AscW(Selection.Text)