Change Node - text with new line character

How to put new line character inside text set using change node?
The goal is to use this text later constructing mobile notification.

On image bellow, I would like to put new line after %s placeholder.
This text is then assigned to data.message object being passed to notification service.

obrazek

I’m quite sure you can’t do that in change nodes, at least not in string mode as you have it set up now.

But in a function node you could do something like:

flow.message_temp = "%sTemperature in the room dropped...";
flow.message_temp = flow.message_temp.replace('%s', "\r\n");

Example with message:

Thank you.
It does the trick.
Currently I left \n in text as a placeholder, replacing it in code with new line:

msgcontent = msgcontent.replace('%s', 'NAME').replace('\\n', '\n');