After some thinking i came up with this solution:
LENGTHB(TO_CHAR(SUBSTR(<CLOB-Column>,1,4000)))
SUBSTR returns only the first 4000 characters (max string size)
TO_CHAR converts from CLOB to VARCHAR2
LENGTHB returns the length in Bytes used by the string.