| Nom du symbole | Flat Sign |
| Version Unicode | 1.1 |
| Unicode | U+266D |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \266D |
| Code hexadécimal | 0x266D |
| Code HTML | ♭ |
| LaTeX | \flat |
| Symbole | ♭ |
| Encodage URL (pourcent UTF-8) | %E2%99%AD |
| Nom oral / lecteur d’écran | Flat Sign |
| UTF-8 | E2 99 AD |
| UTF-16 | 266D |
| UTF-32 | 0000266D |
1\documentclass{article}2\usepackage{pifont}3\flat4\end{document}Vous pouvez saisir le symbole flat sign sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9837 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "flat sign", or use Unicode Hex Input with 266D.
Ctrl + Shift + U, type 266d, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with musical notation symbol support.
1span.flat-sign::before { content: "\266D"; font-family: "Bravura Text", "Segoe UI Symbol", serif; }1<span>♭</span>La représentation du symbole Flat Sign dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u266D' or String.fromCodePoint(9837) |
| Python | '\N{FLAT SIGN}' or chr(9837) |
| Rust | '\u{266D}' |
| C / C++ | UTF-8 source or wchar_t with U+266D |
| Go | string(rune(0x266D)) |
| Ruby | "\u{266D}" |