Greetings!
In SQL window the result of the statement
select '1'||chr(0)||'2' from dual;
is displayed like '1'
whereas
select '1'||chr(1)||'2' from dual;
is displayed like '12'
The recent result really misleads because anything like '*'||chr(0) looks like NULL
Cheers
Denis