Tested tool guide
Tested browser tools
Checked August 16, 2026
What Line Ending Converter (CRLF/LF/CR) does, with a checked example
Line Ending Converter changes the control-character sequence used at every stored newline in text: Windows CRLF, Unix LF, or classic Mac CR. CRLF combines carriage return and line feed, while the other choices use one of those characters alone. Choose the required destination style and convert the text before copying or saving the result. The usual surprise is that input and output look identical on screen. Those endings are normally rendered alike, so the visible line layout cannot confirm which sequence the result contains.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
alpha
beta
With LF selected, the single CRLF boundary between alpha and beta is replaced by one LF character. The two visible lines remain the same; only their separator changes.