| Symboolnaam | Division Slash |
| Unicode-versie | 1.1 |
| Unicode | U+2215 |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \2215 |
| Hexadecimale code | 0x2215 |
| HTML-code | ∕ |
| LaTeX | / |
| Symbool | ∕ |
| URL-codering (UTF-8 procent) | %E2%88%95 |
| Uitgesproken naam / schermlezer | Division Slash |
| UTF-8 | E2 88 95 |
| UTF-16 | 2215 |
| UTF-32 | 00002215 |
1\documentclass{article}2\usepackage{pifont}3/4\end{document}Je kunt het division slash-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Division Slash-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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" |