------
## 最终结论
```python
def first_Repeated_Char(s):
    seen = set()
    for char in s:
        if char in seen:
            return char
        seen.add(char)
    return '\0'
```