| Symboolnaam | Division Sign |
| Unicode-versie | 1.1 |
| Unicode | U+00F7 |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \00F7 |
| Hexadecimale code | 0x00F7 |
| HTML-code | ÷ |
| LaTeX | \div |
| Symbool | ÷ |
| URL-codering (UTF-8 procent) | %C3%B7 |
| Uitgesproken naam / schermlezer | Division Sign |
| UTF-8 | C3 B7 |
| UTF-16 | 00F7 |
| UTF-32 | 000000F7 |
1\documentclass{article}2\usepackage{pifont}3\div4\end{document}Je kunt het division sign-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 0247 on the numeric keypad, or insert via Character Map.
Option + / on many layouts, or Edit → Emoji & Symbols.
Ctrl + Shift + U, type 00f7, then Enter (layout-dependent).
Use the symbols keyboard or paste from this page.
Use extended symbol panels or paste from this page.
1span.divide::before { content: "\00F7"; }1<span>÷</span>De weergave van het Division Sign-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u00F7' or String.fromCodePoint(0x00F7) |
| Python | '\N{DIVISION SIGN}' or chr(247) |
| Rust | '\u{00F7}' |
| C / C++ | UTF-8 source or wchar_t with U+00F7 |
| Go | string(rune(0x00F7)) |
| Ruby | "\u00F7" |