ToolPad
Runs locally in your browser. Nothing you paste is sent to a server.

Normalize Line Endings

Normalize line endings by converting CRLF and CR to LF. Useful when moving text between Windows, macOS, and Linux. Runs locally in your browser.

Input

0 chars

Output

0 chars

Tip: You can verify in DevTools โ†’ Network that nothing is uploaded.

About this Normalize Line Endings

$Normalize Line Endings converts mixed newline styles (CRLF \r\n and CR \r) into a consistent LF \n format.

This is useful for reducing diffs, avoiding inconsistent parsing, and cleaning copied text from different operating systems. Only newline characters are changed.

Common uses
  • Process text data quickly without external tools
  • Transform content for development workflows
  • Clean and format text for analysis
Tips
  • Enable Auto to transform as you type
  • Upload text files directly from your device
  • Download the result when done

FAQ

Is my text uploaded to a server?

No. Everything runs locally in your browser. Nothing you paste is sent to a server.

Can I use this tool offline?

After the page loads once, it will typically keep working offline (unless you hard refresh with no cache).

Do you store my input?

No. Your input stays in your browser. Only optional preferences like theme or language may be stored.

What input formats are supported?

Any plain text. You can paste text directly into the input box.

What is the difference between CRLF and LF?

$Windows commonly uses CRLF (\r\n). Linux/macOS typically use LF (\n). Some older systems use CR (\r).

Does this change the content of lines?

No. Only newline characters are normalized. Line content remains unchanged.

Will this affect line counts?

It can, if your input mixes newline styles. Normalization makes line splitting consistent across tools.