| Nome del simbolo | Modifier Letter Macron |
| Versione Unicode | 1.1 |
| Unicode | U+02C9 |
| Blocco Unicode | |
| Categoria generale | Modifier Letter (Lm) |
| Codice CSS | \02C9 |
| Codice esadecimale | 0x02C9 |
| Codice HTML | ˉ |
| LaTeX | \text{MODIFIERLETTERMACRON} |
| Simbolo | ˉ |
| Codifica URL (percentuale UTF-8) | %CB%89 |
| Nome parlato / screen reader | Modifier Letter Macron |
| UTF-8 | CB 89 |
| UTF-16 | 02C9 |
| UTF-32 | 000002C9 |
1\documentclass{article}2\usepackage{pifont}3\text{MODIFIERLETTERMACRON}4\end{document}Puoi digitare il simbolo modifier letter macron sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 713 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "modifier letter macron", or use Unicode Hex Input with 02C9.
Ctrl + Shift + U, type 02c9, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.modifier-letter-macron::before { content: "\02C9"; }1<span>ˉ</span>La rappresentazione del simbolo Modifier Letter Macron nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u02C9' or String.fromCodePoint(713) |
| Python | '\N{MODIFIER LETTER MACRON}' or chr(713) |
| Rust | '\u{02C9}' |
| C / C++ | UTF-8 source or wchar_t with U+02C9 |
| Go | string(rune(0x02C9)) |
| Ruby | "\u{02C9}" |