Bookmark and Share  

Unifier Tour-2

HTML charset meta tag auto-update

The HTML file at the top portion is a very simple HTML in ISO-8859-1 encoding. The file is converted to UTF-8 encoding using Unifier with Add UTF-8 charset meta tag to HTML files option enabled. After conversion, the original charset meta tag (Highlighted in Red Color) was remarked by Unifier. A new UTF-8 charset meta tag (Highlighted in Blue Color) is added. Unifier is very useful when converting HTML files to Unicode encoding.

<html>
<head>
<title>Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head> <body bgcolor="#FFFFFF">
Please support Unicode
</body>
</html>

 

<html>
<head>
<!-- Added by Unifier-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- End -->

<title>Demo</title>

<!-- Removed by Unifier
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
// -End -->


</head>

<body bgcolor="#FFFFFF">
Please support Unicode
</body>
</html>
 

HTML Character Entity Conversion

Unifier is able to convert HTML Character Entity and Numeric Character Reference to raw Unicode characters.

For example,

  • &copy; → ©
  • &#167; → §
  • &#xB6; → ¶