| Nom du symbole | Subscript Seven |
| Version Unicode | 1.1 |
| Unicode | U+2087 |
| Bloc Unicode | |
| Catégorie générale | Other Number (No) |
| Code CSS | \2087 |
| Code hexadécimal | 0x2087 |
| Code HTML | ₇ |
| LaTeX | _{7} |
| Symbole | ₇ |
| Encodage URL (pourcent UTF-8) | %E2%82%87 |
| Nom oral / lecteur d’écran | Subscript Seven |
| UTF-8 | E2 82 87 |
| UTF-16 | 2087 |
| UTF-32 | 00002087 |
1\documentclass{article}2\usepackage{pifont}3_{7}4\end{document}Vous pouvez saisir le symbole subscript seven sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8327 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "subscript seven", or use Unicode Hex Input with 2087.
Ctrl + Shift + U, type 2087, 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 enclosed numeral support.
1span.subscript-seven::before { content: "\2087"; }1<span>₇</span>La représentation du symbole Subscript Seven dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2087' or String.fromCodePoint(0x2087) |
| Python | '\N{SUBSCRIPT SEVEN}' or chr(8327) |
| Rust | '\u{2087}' |
| C / C++ | UTF-8 source or wchar_t with U+2087 |
| Go | string(rune(0x2087)) |
| Ruby | "\u2087" |