Telephone Location Sign

Shortcodes

Copy useful codes for telephone location sign ✆ to use in websites, apps, blogs, and docs.

Unicode
U+2706
HTML Code
✆
HEX Code
✆
CSS Code
\2706
JS/JSON
\u2706
Unix/C/PHP/JAVA
0x2706
URL-encode
%E2%9C%86

Customize Telephone Location Sign

Customize ✆, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Telephone Location Sign in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>✆</span>
HTML Code:
<span>&#9990;</span>
HEX Code:
<span>&#x2706;</span>

Add with CSS

.telephone-location-sign::before {
  content: '\\2706';
}

Set it in JavaScript

document.querySelector('.telephone-location-sign').textContent = '✆';
copied