type a char & enter
 



<html>
<head>
<script language ="JavaScript">
<!--
function showChar(c)
{
w=window.open("","","height=100,width=200")
w.document.open()
w.document.write("<font face='arial' COLOR='red' size=7>" +c+ " = ")
w.document.write("<font face='windings' COLOR='red' size=7>" +c)
w.document.close()
}
//-->
</script>
</head>
<body>
<form>
type a char & enter
<input type="text" name="txt1">
<input type="button" value="open" onclick="showChar(txt1.value)"><br>
</form>
</body>
</html>