问题描述:
Write a python function to find the character made by adding all the characters of the given string.

测试用例:
['assert get_Char("abc") == "f"', 'assert get_Char("gfg") == "t"', 'assert get_Char("ab") == "c"']

生成的代码:
def get_Char(s):
    total = sum(ord(char) for char in s)
    return chr(total)

# Test cases
assert get_Char("abc") == "f"
assert get_Char("gfg") == "t"
assert get_Char("ab") == "c"