| Nom du symbole | Modifier Letter Macron |
| Version Unicode | 1.1 |
| Unicode | U+02C9 |
| Bloc Unicode | |
| Catégorie générale | Modifier Letter (Lm) |
| Code CSS | \02C9 |
| Code hexadécimal | 0x02C9 |
| Code HTML | ˉ |
| LaTeX | \text{MODIFIERLETTERMACRON} |
| Symbole | ˉ |
| Encodage URL (pourcent UTF-8) | %CB%89 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole modifier letter macron sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Modifier Letter Macron dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |