The easy answer is you type in the data as exactly as you want to see it.

But as the above answer is to easy & obvious I have to assume you are entering the data into the label by code

Private Sub UserForm_Click()
   Dim Price As Double
   
   Price = 2.05
   Me.Label1.Caption = "Item Price = $" & Price
   Me.Label2.Caption = Format(Price, "$0.00")
End Sub