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