| Symbolname | Macron |
| Unicode-Version | 1.1 |
| Unicode | U+00AF |
| Unicode-Block | |
| Allgemeine Kategorie | Sk (Sk) |
| CSS-Code | \00AF |
| Hexadezimalcode | 0x00AF |
| HTML-Code | ¯ |
| LaTeX | \text{MACRON} |
| Symbol | ¯ |
| URL-Kodierung (UTF-8-Prozent) | %C2%AF |
| Ansagename (Screenreader) | Macron |
| UTF-8 | C2 AF |
| UTF-16 | 00AF |
| UTF-32 | 000000AF |
1\documentclass{article}2\usepackage{pifont}3\text{MACRON}4\end{document}Sie können das Symbol macron auf den meisten modernen Geräten mit den folgenden Methoden eingeben:
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>Die Darstellung des Symbols Macron in verschiedenen Programmiersprachen finden Sie in der folgenden Tabelle:
| Sprache | Darstellung |
|---|---|
| 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}" |