------
## 最终结论
```python
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"
```