SQLWKS> set serveroutput on
Server Output                   ON
SQLWKS> begin
     2>   dbms_output.put_line('AA'||chr(13)||chr(10)||'bb');
     3>   end;
     4> 
Statement processed.
AA
bb
SQLWKS> select 'AA'||chr(13)||chr(10)||'bb' from dual
     2> 
'AA'||
------
AA
bb
1 row selected.It Seems no problem in SQLworksheet , I guess if the output is displayed in a format of grid , the newline will not be displayed properly