← Back to Home

UTF-8 Encoding

/encoding/utf8
Returns a UTF-8 encoded HTML page with international characters for testing character encoding.

Examples

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

response = requests.get('https://tcpdata.com/encoding/utf8')
print(response.text)