| Nombre del símbolo | Macron |
| Versión Unicode | 1.1 |
| Unicode | U+00AF |
| Bloque Unicode | |
| Categoría general | Sk (Sk) |
| Código CSS | \00AF |
| Código hexadecimal | 0x00AF |
| Código HTML | ¯ |
| LaTeX | \text{MACRON} |
| Símbolo | ¯ |
| Codificación URL (porcentaje UTF-8) | %C2%AF |
| Nombre oral / lector de pantalla | Macron |
| UTF-8 | C2 AF |
| UTF-16 | 00AF |
| UTF-32 | 000000AF |
1\documentclass{article}2\usepackage{pifont}3\text{MACRON}4\end{document}Puedes escribir el símbolo macron en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Macron en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |