Write a solution to find the unique character from a string. Treat a character as unique when it appears exactly once, and return the first such character in the original order. Implement find_unique_character(s), where s is a string and the result is that character or "" when no unique character exists.
def find_unique_character(s):