Newline Tests
Text files using LF (Unix), CRLF (Windows), CR (old Mac), and mixed newlines. For newline conversion testing and cross-platform compatibility checks.
LF(Unix)のテキストファイル
lf.txt / 704 B
CRLF(Windows)のテキストファイル
crlf.txt / 714 B
CR(旧Mac)のテキストファイル
cr.txt / 704 B
改行コード混在のテキストファイル
mixed.txt / 708 B
Why line-ending tests matter
Line endings differ across OSes: Unix/Linux/macOS use LF ( ), Windows uses CRLF ( ), and Classic Mac OS used CR ( ).
Use these to verify line-ending handling in version control (Git), text-processing tools, and programming languages.