| Nom du symbole | Natural Sign |
| Version Unicode | 1.1 |
| Unicode | U+266E |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \266E |
| Code hexadécimal | 0x266E |
| Code HTML | ♮ |
| LaTeX | \natural |
| Symbole | ♮ |
| Encodage URL (pourcent UTF-8) | %E2%99%AE |
| Nom oral / lecteur d’écran | Natural Sign |
| UTF-8 | E2 99 AE |
| UTF-16 | 266E |
| UTF-32 | 0000266E |
1\documentclass{article}2\usepackage{pifont}3\natural4\end{document}Vous pouvez saisir le symbole natural sign sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Natural Sign dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |