How to include carriage return within a json data element?

Is there a way of including a carriage return within a json data entry? I have a few sentences within a json file that I would like, when presented in the app, to be shown over a few new lines. So for example...
Code Block
{
"notes": "This is a long sentence and is included within the json file. I would each new sentence within this data to show on a new line within the same variable",
"anotherfield": "Shorter"
}


Is there a way to get each sentence within "notes" to show on a new line when I extract and present the json data in a view?

Hope I explained that clearly enough.
Answered by theMusicMan in 664093022
Sorted: apologies to anyone reading this. I researched, and found out how... easy eh!

\r :)
Accepted Answer
Sorted: apologies to anyone reading this. I researched, and found out how... easy eh!

\r :)
How to include carriage return within a json data element?
 
 
Q