curl https://tcpdata.com/encoding/utf8
fetch('https://tcpdata.com/encoding/utf8')
.then(res => res.text())
.then(html => console.log(html));
import requests
response = requests.get('https://tcpdata.com/encoding/utf8')
print(response.text)