| Nom du symbole | Division Slash |
| Version Unicode | 1.1 |
| Unicode | U+2215 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \2215 |
| Code hexadécimal | 0x2215 |
| Code HTML | ∕ |
| LaTeX | / |
| Symbole | ∕ |
| Encodage URL (pourcent UTF-8) | %E2%88%95 |
| Nom oral / lecteur d’écran | Division Slash |
| UTF-8 | E2 88 95 |
| UTF-16 | 2215 |
| UTF-32 | 00002215 |
1\documentclass{article}2\usepackage{pifont}3/4\end{document}Vous pouvez saisir le symbole division slash sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8725 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "division slash", or use Unicode Hex Input.
Ctrl + Shift + U, type 2215, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.divslash::before { content: "\2215"; }1<span>∕</span>La représentation du symbole Division Slash dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2215' or String.fromCodePoint(0x2215) |
| Python | '\N{DIVISION SLASH}' or chr(8725) |
| Rust | '\u{2215}' |
| C / C++ | UTF-8 source or wchar_t with U+2215 |
| Go | string(rune(0x2215)) |
| Ruby | "\u2215" |