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