This helped me find and remove the code from the database
-- Show "infected" rows
SELECT * FROM wp_options WHERE option_value LIKE '%eval(String.fromCharCode%';
-- Delete rows
DELETE FROM wp_options WHERE option_value LIKE '%eval(String.fromCharCode%';
-- Delete all data related to the plug-in
DELETE FROM wp_options WHERE option_name LIKE '%yuzo%';