| Nombre del símbolo | Black Telephone |
| Versión Unicode | 4.1 |
| Unicode | U+260E |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \260E |
| Código hexadecimal | 0x260E |
| Código HTML | ☎ |
| LaTeX | \phone |
| Símbolo | ☎ |
| Codificación URL (porcentaje UTF-8) | %E2%98%8E |
| Nombre oral / lector de pantalla | Telephone |
| UTF-8 | E2 98 8E |
| UTF-16 | 260E |
| UTF-32 | 0000260E |
1\documentclass{article}2\usepackage{pifont}3\phone4\end{document}Puedes escribir el símbolo black telephone en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Black Telephone en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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" |