Char Functions Oracle PLSQL

SQL>
SQL>
SQL> -- Vsize: returns the storage size of a string in Oracle.
SQL>
SQL> -- VSIZE(string)
SQL>
SQL> SELECT VSIZE('Returns the storage size of a string') FROM dual;
VSIZE('RETURNSTHESTORAGESIZEOFASTRING')
---------------------------------------
                                     36
SQL>
SQL>
SQL>
SQL>