How can I echo a newline in a batch file?

How can you you insert a newline from your batch file output?

I want to do something like:

echo hello\nworld

Which would output:

hello
world

23 s
23

Use:

echo hello
echo:
echo world

Leave a Comment