| Nome del simbolo | Sharp Sign |
| Versione Unicode | 1.1 |
| Unicode | U+266F |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \266F |
| Codice esadecimale | 0x266F |
| Codice HTML | ♯ |
| LaTeX | \sharp |
| Simbolo | ♯ |
| Codifica URL (percentuale UTF-8) | %E2%99%AF |
| Nome parlato / screen reader | Sharp Sign |
| UTF-8 | E2 99 AF |
| UTF-16 | 266F |
| UTF-32 | 0000266F |
1\documentclass{article}2\usepackage{pifont}3\sharp4\end{document}Puoi digitare il simbolo sharp sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9839 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "sharp sign", or use Unicode Hex Input with 266F.
Ctrl + Shift + U, type 266f, 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.sharp-sign::before { content: "\266F"; font-family: "Bravura Text", "Segoe UI Symbol", serif; }1<span>♯</span>La rappresentazione del simbolo Sharp Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u266F' or String.fromCodePoint(9839) |
| Python | '\N{SHARP SIGN}' or chr(9839) |
| Rust | '\u{266F}' |
| C / C++ | UTF-8 source or wchar_t with U+266F |
| Go | string(rune(0x266F)) |
| Ruby | "\u{266F}" |