html.unescape() in PythonThis is pythonGeeksForGeeks

With the help of html.unescape() method, we can convert the ascii string into html script by replacing ascii characters with special characters by using html.escape() method.

Syntax : html.unescape(String)

Return : Return a html script.

Example #1 :
In this example we can see that by using html.unescape() method, we are able to convert the ascii string into html script by using this method.




# import html
import html
  
s = '<html><head></head><body><h1>This is python</h1></body></html>'
temp = html.escape(s)
# Using html.unescape() method
gfg = html.unescape(temp)
  
print(gfg)


Output :

This is python

Example #2 :




# import html
import html
  
s = '<html><head></head><body><h1>w3wiki</h1></body></html>'
temp = html.escape(s)
# Using html.unescape() method
gfg = html.unescape(temp)
  
print(gfg)


Output :

w3wiki


Contact Us