Error Message
HTML-Escape- Unescape
This is an online tool made use of by online developers to Escape or Unescape special HTML characters. In a simpler term Escape is used to encode certain characters some of which are < > . While unescape is used to decode such characters. Encoding is the process in which plain texts are converted to ciphertext while decoding is the process of converting ciphertext to into plain text
What Can I Do With HTML EScape?
HTML Escape is used to encode a string for use in URL. It is used to encode characters that are not ASCII This tool ensures that a string is safe to use in URL It makes it easy and fast to encode needed characters. It functions properly on Java Supported browsers such as LINUXEDGE FIREFOX WINDOWS and many others
What Can I Do With HTML Unescape?
HTML is used to decode encoded string It makes the decoding of encoded string easy and quick It functions perfectly on WINDOWS EDGE LINUX and so many others.
Example
HTML Try it.
<!DOCTYPE html> <html> <head> <title>Largest companies by market cap — </title> <meta charset="UTF-8" /> </head> <body> <h1>Apple : 2037 Billion</h1> <h2>Microsoft : 1624 Billion</h2> <h3>Amazon : 1611 Billion</h3> <h4>Google : 1058 Billion</h4> <h5>Alibaba : 826 Billion</h5> <b>This data is as of 21 Sep 2020.</b> </body> </html>
Escaped HTML
<!DOCTYPE html> <html> <head> <title>Largest companies by market cap — </title> <meta charset="UTF-8" /> </head> <body> <h1>Apple : 2037 Billion</h1> <h2>Microsoft : 1624 Billion</h2> <h3>Amazon : 1611 Billion</h3> <h4>Google : 1058 Billion</h4> <h5>Alibaba : 826 Billion</h5> <b>This data is as of 21 Sep 2020.</b> </body> </html>