If I create a text file using VBA with the method of:

Open "c:\mytextfile.txt" For Output As #1
Print #1, "This Is My Text" & Chr(10) & "Second line of text"
Close #1
what is determining whether the line break ( or Chr(10) ) is in which unicode format?

The problem I have is opening text files in both unix and microsoft without having any issues with line breaks.
Windows uses: LF VT FF CR as new lines
Unix uses : LS and PS as new lines

so you can see the problem lies with both of their default programs using different line breaks.

So If im using windows, how can i assure that my Chr(10) is going to be a line break when opening that text file in notepad?