With a working database running with UTF-8 as the default character set, you can convert select columns to univarchar.
The columns are modified to the new datatypes, the data is converted in place, and the index is re-created.
% isql -Usa -P > use xpubs > go > alter table authors modify au_lname univarchar(255), au_fname univarchar(255) > go