Given a string, find the first character that is unique, meaning it appears only once.
Implement first_unique_char(s) to return the character itself. Return an empty string if no character appears exactly once. Treat characters according to Python string iteration.
Signature: def first_unique_char(s):
def first_unique_char(s):