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