Skip to content

NEL — Next Line

SequenceESC E
Bytes0x1B 0x45
MnemonicNEL
Otty support

Description

Moves the cursor to column 1 of the next row — equivalent to CR LF (\r\n) but as a single two-byte sequence.

Example

bash
printf 'a\eEb'      # 'a' \r\n 'b'

Otty