What’s the difference between CR, LF, and CRLF line endings?

@Shreshthaseth Good question! I ran into this while handling CSV files between systems.

In a hex editor, you’ll literally see CR as 0D, LF as 0A, and CRLF as 0D0A.

On Windows, Notepad expects CRLF and shows LF-only files on one line. But editors like Notepad++ or VS Code can switch line endings easily.

I usually convert everything to LF for consistency, especially in Git repos.