| Nombre del símbolo | Latin Small Letter T |
| Versión Unicode | 1.1 |
| Unicode | U+0074 |
| Bloque Unicode | |
| Categoría general | Lowercase Letter (Ll) |
| Código CSS | \0074 |
| Código hexadecimal | 0x0074 |
| Código HTML | t |
| LaTeX | t |
| Símbolo | t |
| Codificación URL (porcentaje UTF-8) | %74 |
| Nombre oral / lector de pantalla | Latin Small Letter T |
| UTF-8 | 74 |
| UTF-16 | 0074 |
| UTF-32 | 00000074 |
1\documentclass{article}2\usepackage{pifont}3t4\end{document}Puedes escribir el símbolo latin small letter t en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 116 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter t", or use Unicode Hex Input with 0074.
Ctrl + Shift + U, type 0074, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.t::before { content: "\0074"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>t</span>La representación del símbolo Latin Small Letter T en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u0074' or String.fromCodePoint(116) |
| Python | '\N{LATIN SMALL LETTER T}' or chr(116) |
| Rust | '\u{0074}' |
| C / C++ | UTF-8 source or wchar_t with U+0074 |
| Go | string(rune(0x0074)) |
| Ruby | "\u{0074}" |