Skip to content

FF — Form Feed

Byte0x0C
MnemonicFF
Otty support✓ (treated as LF)

Description

Historically advanced a printer to the next page. On terminal emulators FF is treated as LF — Otty follows this convention. Some shells use Ctrl-L (which sends FF) as a clear-screen idiom; that's handled by the shell, not the terminal.

Example

bash
printf 'page1\fpage2\n'   # \f is the C escape for FF
                           # behaves like LF
  • LF
  • ED — what Ctrl-L actually invokes in most shells.

Otty