Insert ascii chars

How can i concatenate strings with characters according to their ascii code. I want to build an address calculation including linefeeds…

It should look something like this: ‘Line 1’ + chr(10) + ‘Line 2’

Thanks,
Reto

‘line 1’ + ‘\n’ + ‘line 2’