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