| Symbol Name | Symbol For Form Feed |
| Unicode Version | 1.1 |
| Unicode | U+240C |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \240C |
| Hex Code | 0x240C |
| HTML Code | ␌ |
| LaTeX | \text{SYMBOLFORFORMFEED} |
| Symbol | ␌ |
| URL encode (UTF-8 percent) | %E2%90%8C |
| Spoken / screen reader name | 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}You can type the symbol for form feed symbol on most modern devices with the help of following methods:
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>Symbol For Form Feed symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |