Use the ::before pseudo selector to add the unicode phone character before the tel-number is displayed
/* Use the ::before pseudo selector to add the unicode phone character before the tel-number is displayed: */
a[href^="tel:"]:before {
content: "\260e";
margin-right: 0.5em;
}