Line Endings Converter
Detect and convert between CRLF (Windows), LF (Unix), and CR (classic Mac) line endings.
CRLF (\\r\\n)
2
LF (\\n)
1
CR (\\r)
0
Dominant: CRLF⚠ mixed line endings
Convert to
Output
Why this matters
Windows tools default to CRLF, Unix tools to LF, classic Mac to CR. Files moving between them gain stray ^Ms or get treated as a single line. Detect-and-convert fixes both at once.
You might also like
- Batch Rename FilesRename many files at once with find/replace, prefix/suffix, sequence numbers, and casing — download as a ZIP.
- CSV CleanerDetect the delimiter, trim cells, drop empty rows, and normalize messy CSVs into something usable.
- Markdown ↔ HTML ConverterConvert Markdown to HTML or HTML back to Markdown, with sanitisation in both directions.
- Timestamp ConverterConvert between Unix timestamps, ISO dates, and local time.