Sample code for 30+ languages & platforms
CkPython Requires Chilkat v11.1.0+

HTML Encoding

Demonstrates HTML encoding and decoding.

Chilkat CkPython Downloads

CkPython
import chilkat

crypt = chilkat.CkCrypt2()

s = "< é ü ç Ω Hello & World ✓ >"

htmlEncoded = crypt.encodeString(s,"utf-8","html")
print(htmlEncoded)

#  Output:
#  < &eacute; &uuml; &ccedil; &ohm; Hello & World &check; >

#  To decode:
s = crypt.decodeString(htmlEncoded,"utf-8","html")
print(s)

#  Output:
#  < é ü ç Ω Hello & World ✓ >