------
## 最终结论
```python
def remove_Char(s, char):
    return s.replace(char, "")

# Test cases
assert remove_Char("aba", 'a') == "b"
assert remove_Char("toggle", 'g') == "tole"
assert remove_Char("aabbc", 'b') == "aac"
```