How to replace special character using sed?

How can I replace the follong text including to number 7000?

cat tmp0.txt

Winston (UK) Wong

I would the 7000 to replace Winston (UK) Wong.

I fail with method below:
sed ' s /Winston\(UK\)Wong/7000 tmp0.txt'

try

sed "s/Winston (UK) Wong/7000/" tmp0.txt
1 Like