| Symboolnaam | Symbol For Form Feed |
| Unicode-versie | 1.1 |
| Unicode | U+240C |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \240C |
| Hexadecimale code | 0x240C |
| HTML-code | ␌ |
| LaTeX | \text{SYMBOLFORFORMFEED} |
| Symbool | ␌ |
| URL-codering (UTF-8 procent) | %E2%90%8C |
| Uitgesproken naam / schermlezer | Symbol For Form Feed |
| UTF-8 | E2 90 8C |
| UTF-16 | 240C |
| UTF-32 | 0000240C |
1\documentclass{article}2\usepackage{pifont}3\text{SYMBOLFORFORMFEED}4\end{document}Je kunt het symbol for form feed-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 9228 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "symbol for form feed", or use Unicode Hex Input with 240C.
Ctrl + Shift + U, type 240c, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with technical symbol support.
1span.symbol-for-form-feed::before { content: "\240C"; }1<span>␌</span>De weergave van het Symbol For Form Feed-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u240C' or String.fromCodePoint(9228) |
| Python | '\N{SYMBOL FOR FORM FEED}' or chr(9228) |
| Rust | '\u{240C}' |
| C / C++ | UTF-8 source or wchar_t with U+240C |
| Go | string(rune(0x240C)) |
| Ruby | "\u{240C}" |