Here's a fairly minimal VBA macro that shows a copyright © in the Message Center...
Sub TestChars() Dim copyright As String copyright = Chr(169) Dim msg As String msg = "Copyright " & copyright & " 2017 LA Solutions Ltd" ShowMessage msg, msg, msdMessageCenterPriorityDebug, False End Sub
Here's what it prints...