| Symbol Name | Natural Sign |
| Unicode Version | 1.1 |
| Unicode | U+266E |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \266E |
| Hex Code | 0x266E |
| HTML Code | ♮ |
| LaTeX | \natural |
| Symbol | ♮ |
| URL encode (UTF-8 percent) | %E2%99%AE |
| Spoken / screen reader name | Natural Sign |
| UTF-8 | E2 99 AE |
| UTF-16 | 266E |
| UTF-32 | 0000266E |
1\documentclass{article}2\usepackage{pifont}3\natural4\end{document}You can type the natural sign symbol on most modern devices with the help of following methods:
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>Natural Sign symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |