| Symbol Name | Symbol For Line Feed |
| Unicode Version | 1.1 |
| Unicode | U+240A |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \240A |
| Hex Code | 0x240A |
| HTML Code | ␊ |
| LaTeX | \text{SYMBOLFORLINEFEED} |
| Symbol | ␊ |
| URL encode (UTF-8 percent) | %E2%90%8A |
| Spoken / screen reader name | Symbol For Line Feed |
| UTF-8 | E2 90 8A |
| UTF-16 | 240A |
| UTF-32 | 0000240A |
1\documentclass{article}2\usepackage{pifont}3\text{SYMBOLFORLINEFEED}4\end{document}You can type the symbol for line feed symbol on most modern devices with the help of following methods:
Alt + 9226 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "symbol for line feed", or use Unicode Hex Input with 240A.
Ctrl + Shift + U, type 240a, 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-line-feed::before { content: "\240A"; }1<span>␊</span>Symbol For Line Feed symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u240A' or String.fromCodePoint(9226) |
| Python | '\N{SYMBOL FOR LINE FEED}' or chr(9226) |
| Rust | '\u{240A}' |
| C / C++ | UTF-8 source or wchar_t with U+240A |
| Go | string(rune(0x240A)) |
| Ruby | "\u{240A}" |