| Nombre del símbolo | Lower Left Triangle |
| Versión Unicode | 3.2 |
| Unicode | U+25FA |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \25FA |
| Código hexadecimal | 0x25FA |
| Código HTML | ◺ |
| LaTeX | \text{LOWERLEFTTRIANGLE} |
| Símbolo | ◺ |
| Codificación URL (porcentaje UTF-8) | %E2%97%BA |
| Nombre oral / lector de pantalla | Lower Left Triangle |
| UTF-8 | E2 97 BA |
| UTF-16 | 25FA |
| UTF-32 | 000025FA |
1\documentclass{article}2\usepackage{pifont}3\text{LOWERLEFTTRIANGLE}4\end{document}Puedes escribir el símbolo lower left triangle en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9722 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "lower left triangle", or use Unicode Hex Input with 25FA.
Ctrl + Shift + U, type 25fa, 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.lower-left-triangle::before { content: "\25FA"; }1<span>◺</span>La representación del símbolo Lower Left Triangle en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u25FA' or String.fromCodePoint(9722) |
| Python | '\N{LOWER LEFT TRIANGLE}' or chr(9722) |
| Rust | '\u{25FA}' |
| C / C++ | UTF-8 source or wchar_t with U+25FA |
| Go | string(rune(0x25FA)) |
| Ruby | "\u{25FA}" |