Finding and removing Non-ASCII characters from an Oracle Varchar2 September 16, 2023 by Tarik I think this will do the trick: SELECT REGEXP_REPLACE(COLUMN, '[^[:print:]]', '')