| Symbol Name | Black Telephone |
| Unicode Version | 4.1 |
| Unicode | U+260E |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \260E |
| Hex Code | 0x260E |
| HTML Code | ☎ |
| LaTeX | \phone |
| Symbol | ☎ |
| URL encode (UTF-8 percent) | %E2%98%8E |
| Spoken / screen reader name | Telephone |
| UTF-8 | E2 98 8E |
| UTF-16 | 260E |
| UTF-32 | 0000260E |
1\documentclass{article}2\usepackage{pifont}3\phone4\end{document}You can type the black telephone symbol on most modern devices with the help of following methods:
Alt + 9742 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "telephone".
Ctrl + Shift + U, type 260e, then Enter (layout-dependent).
Use the emoji/symbol picker or paste from this page.
Use the emoji/symbol picker or paste from this page.
1span.phone::before { content: "\260E"; }1<span>☎</span>Black Telephone symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u260E' or String.fromCodePoint(0x260E) |
| Python | '\N{BLACK TELEPHONE}' or chr(9742) |
| Rust | '\u{260E}' |
| C / C++ | UTF-8 source or wchar_t with U+260E |
| Go | string(rune(0x260E)) |
| Ruby | "\u260E" |