Hi,
What is happening is just the browser ignoring the line breaks because it threats the contents as HTML markup. You did not specify the
Content-type response header, so it is sent as `text/html` by default, and line break characters (CR, LF) are ignored in the HTML. Also, it need's to know the contents is in the utf-8 from the same header.
If you want to use the pain text, you need to say it in the header, by adding
AResponse.ContentType := 'text/plain; charset=utf-8';
Or if you want the HTML, then you can use <br> tags to insert line breaks.
AResponse.Content := 'Good day.<br>Добрий день.';
AResponse.ContentType := 'text/html; charset=utf-8';
Hope that helps.