Char Functions Oracle PLSQL

SQL>
SQL>  select '"' || rtrim( 'Some String     ' ) || '"' "A String"
  2      from dual
  3    /
A String
-------------
"Some String"
1 row selected.
SQL>
SQL> --