| Nom du symbole | Black Star |
| Version Unicode | 1.1 |
| Unicode | U+2605 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \2605 |
| Code hexadécimal | 0x2605 |
| Code HTML | ★ |
| LaTeX | \bigstar |
| Symbole | ★ |
| Encodage URL (pourcent UTF-8) | %E2%98%85 |
| Nom oral / lecteur d’écran | Black Star |
| UTF-8 | E2 98 85 |
| UTF-16 | 2605 |
| UTF-32 | 00002605 |
1\documentclass{article}2\usepackage{pifont}3\bigstar 4\end{document}Vous pouvez saisir le symbole black star sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9733 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black star", or use Unicode Hex Input with 2605.
Ctrl + Shift + U, type 2605, 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 star and asterisk support.
1span.black-star::before { content: "\2605"; }1<span>★</span>La représentation du symbole Black Star dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2605' or String.fromCodePoint(9733) |
| Python | '\N{BLACK STAR}' or chr(9733) |
| Rust | '\u{2605}' |
| C / C++ | UTF-8 source or wchar_t with U+2605 |
| Go | string(rune(0x2605)) |
| Ruby | "\u{2605}" |