Inserting a CR character in a field in DB2

update  
    MYTABLE  
set  
    MYCOLUMN='Some text' || CHR(13) || 'Some more text'  
WHERE 
    some_condition