How can I retrieve UNICODE symbol from MS Word document throu VBA? For example, I insert times symbol (‘x’) using menu Insert/Symbol. How get it in follow code:
For Each ch In Selection.Characters if ch = “?” then MsgBox “It’s here!” Next