newLine in a Text-Element

I would like to insert a new line in a text element. So:

Name
Street
ZIP code
Location

I can’t find the code for it anywhere. Is it possible ?
So like the photo, only instead of “,” a new line
Bildschirmfoto von Google Chrome am 06_03_2024, 16_33_10

You can add "<br>" to get a line break, but it would be cleaner to use separate text elements for each line.

use the new line character "\n" or use <br> tag in html to create new line.

thanks for the solution. I have use cases where I have to quickly tie two fields together. But otherwise you are right: one field per text element.