Black Telephone

Shortcodes

Copy and paste codes for Black Telephone symbol ☎ to use in your websites, apps, blogs, and more.

Unicode
U+260E
HTML Code
☎
HEX Code
☎
CSS Code
\260E
JS/JSON
\u260E
Unix/C/PHP/JAVA
0x260E
URL-encode
%E2%98%8E
copied

Customize Black Telephone Symbol

Customize ☎ symbol as you like and download Black Telephone as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add Black Telephone symbol in HTML, CSS, and JS?

Insert ☎ Black Telephone using HTML

1. Copy-paste Black Telephone directly:
<span>☎</span>
2. HTML Decimal Code:
<span>&#9742;</span>
3. Hexadecimal Code:
<span>&#x260E;</span>
Preview:

Add Black Telephone symbol with CSS

.black-telephone::before {
    content: '\\260E';
}
Preview: Black Telephone

Black Telephone JavaScript Code

1. Direct Symbol:
document.querySelector('.black-telephone').textContent = '☎';
2. Unicode Escape for ☎:
document.querySelector('.black-telephone').textContent = '\u260E';
Preview: