Not sure why you'd ever need it, but I stumbled across this:
That gets you a character "icon" of the Windows Logo. I would expect the appearance to vary somewhat on different Windows versions, and I'm not sure when this glyph was added to Marlett.
Image may be NSFW.
Clik here to view.
Clik here to view.

Code:
Option Explicit
Private Sub Form_Load()
With Label1
.BackColor = vbHighlightText
.ForeColor = vbHighlight
.Caption = "W"
With .Font
.Name = "Marlett"
.Size = 20
End With
End With
End Sub