SQLite new line in data

In which way should one store data in a SQLite database so that when it is displayed in a textArea, new lines appear.

eg:
The output must be like this ->
First line.
Second Line.

Usually I get -> First Line. Second Line. - in one single line
And if I add First Line.
Second Line. to the data in the database it just displays along with the
.

So what actually is the new line character that must be put into the data I store in the SQLite database so that the output in the textArea gets formatted accordingly.

Thanks.