| Nom du symbole | Black Telephone |
| Version Unicode | 4.1 |
| Unicode | U+260E |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \260E |
| Code hexadécimal | 0x260E |
| Code HTML | ☎ |
| LaTeX | \phone |
| Symbole | ☎ |
| Encodage URL (pourcent UTF-8) | %E2%98%8E |
| Nom oral / lecteur d’écran | Telephone |
| UTF-8 | E2 98 8E |
| UTF-16 | 260E |
| UTF-32 | 0000260E |
1\documentclass{article}2\usepackage{pifont}3\phone4\end{document}Vous pouvez saisir le symbole black telephone sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Black Telephone dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |