A family of Microsoft word processing software products for creating web, email, and print documents.
Yes, this is a problem with the VBA editor (it's not just Mac).
One workaround is to express the string using ChrW() functions, e.g. for text you would use
ChrW(116) & ChrW(101) & ChrW(120) & ChrW(116)
To convert the characters you want into an expression like that, you could
a. type the text you want into a Word document, and select the text
b. run the following VBA code
c. copy/paste the expression from the Immediate Window inthe VB Editor into your code.
Sub createChrWExpressionFromSelection()
Dim i As Integer
For i = 1 To Len(Selection)
If i > 1 Then
Debug.Print " & ";
End If
Debug.Print "ChrW(" & CStr(AscW(Mid(Selection, i, 1))) & ")";
Next
End Sub