| Nombre del símbolo | Natural Sign |
| Versión Unicode | 1.1 |
| Unicode | U+266E |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \266E |
| Código hexadecimal | 0x266E |
| Código HTML | ♮ |
| LaTeX | \natural |
| Símbolo | ♮ |
| Codificación URL (porcentaje UTF-8) | %E2%99%AE |
| Nombre oral / lector de pantalla | Natural Sign |
| UTF-8 | E2 99 AE |
| UTF-16 | 266E |
| UTF-32 | 0000266E |
1\documentclass{article}2\usepackage{pifont}3\natural4\end{document}Puedes escribir el símbolo natural sign en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9838 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "natural sign", or use Unicode Hex Input with 266E.
Ctrl + Shift + U, type 266e, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with musical notation symbol support.
1span.natural-sign::before { content: "\266E"; font-family: "Bravura Text", "Segoe UI Symbol", serif; }1<span>♮</span>La representación del símbolo Natural Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u266E' or String.fromCodePoint(9838) |
| Python | '\N{NATURAL SIGN}' or chr(9838) |
| Rust | '\u{266E}' |
| C / C++ | UTF-8 source or wchar_t with U+266E |
| Go | string(rune(0x266E)) |
| Ruby | "\u{266E}" |