| Nombre del símbolo | Symbol For Form Feed |
| Versión Unicode | 1.1 |
| Unicode | U+240C |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \240C |
| Código hexadecimal | 0x240C |
| Código HTML | ␌ |
| LaTeX | \text{SYMBOLFORFORMFEED} |
| Símbolo | ␌ |
| Codificación URL (porcentaje UTF-8) | %E2%90%8C |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo symbol for form feed en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Symbol For Form Feed en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |