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