| Nome del simbolo | Macron |
| Versione Unicode | 1.1 |
| Unicode | U+00AF |
| Blocco Unicode | |
| Categoria generale | Sk (Sk) |
| Codice CSS | \00AF |
| Codice esadecimale | 0x00AF |
| Codice HTML | ¯ |
| LaTeX | \text{MACRON} |
| Simbolo | ¯ |
| Codifica URL (percentuale UTF-8) | %C2%AF |
| Nome parlato / screen reader | Macron |
| UTF-8 | C2 AF |
| UTF-16 | 00AF |
| UTF-32 | 000000AF |
1\documentclass{article}2\usepackage{pifont}3\text{MACRON}4\end{document}Puoi digitare il simbolo macron sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 175 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "macron", or use Unicode Hex Input with 00AF.
Ctrl + Shift + U, type 00af, 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.macron::before { content: "\00AF"; }1<span>¯</span>La rappresentazione del simbolo Macron nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u00AF' or String.fromCodePoint(175) |
| Python | '\N{MACRON}' or chr(175) |
| Rust | '\u{00AF}' |
| C / C++ | UTF-8 source or wchar_t with U+00AF |
| Go | string(rune(0x00AF)) |
| Ruby | "\u{00AF}" |