Is it possible to add a validation constraint that ensures that all values ββare unique, but allow duplicate default values?
You can achieve this using a funcction-based index (FBI):
create unique index idx on my_table (case when col != 'DEFAULT' then col end));
This creates a unique index for all values ββexcept "DEFAULT".