I have a table created like this:
create table x_test_char
(comments varchar2(4000 char));
When I try to insert using a pl/sql into that table as below:

I get this error:
ORA-01461: can bind a LONG value only for insert into a LONG column
How could I insert the above content into the column that is varchar2(4000 char)?