| Nombre del símbolo | Black Down-pointing Triangle |
| Versión Unicode | 1.1 |
| Unicode | U+25BC |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| UTF-8 | E2 96 BC |
| UTF-16 | 25BC |
| UTF-32 | 000025BC |
1\documentclass{article}2\usepackage{pifont}3\blacktriangledown 4\end{document}Puedes escribir el símbolo black down-pointing triangle en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9660 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black down-pointing triangle", or use Unicode Hex Input with 25BC.
Ctrl + Shift + U, type 25bc, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.black-down-pointing-triangle::before { content: "\25BC"; }1<span>▼</span>La representación del símbolo Black Down-pointing Triangle en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u25BC' or String.fromCodePoint(9660) |
| Python | '\N{BLACK DOWN-POINTING TRIANGLE}' or chr(9660) |
| Rust | '\u{25BC}' |
| C / C++ | UTF-8 source or wchar_t with U+25BC |
| Go | string(rune(0x25BC)) |
| Ruby | "\u{25BC}" |
| Código CSS |
\25BC |
| Código hexadecimal | 0x25BC |
| Código HTML | ▼ |
| LaTeX | \blacktriangledown |
| Símbolo | ▼ |
| Codificación URL (porcentaje UTF-8) | %E2%96%BC |
| Nombre oral / lector de pantalla | Black Down-pointing Triangle |