<button>Избранное</button>
<br><br>
<p class="number">+7 (999) 222-55-66</p>
button {
  padding: 1.5%;
  font-size:18px;
  cursor:pointer;
  background: red;
  color:white;
  border:1px solid red;
}
button:before {
  content: "\2764 \00A0"; /* \00A0 - символ пробела*/
}
.number {
  color: darkblue;
  font-family: Arial;
  font-size:18px;
}
.number:before {
  content: "\260E \00A0";
}
.number:after {
  content: "\00A0" attr(class); /* отображает класс элемента */
  color:grey;
  font-size:10px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.