ichadhr
12/28/2017 - 8:05 PM

Font Character Test

Font Character Test

<!DOCTYPE html>
<html>
<head>
    <title>Testing Char</title>
    <style type="text/css">
        @import url(https://fonts.googleapis.com/css?family=Roboto);
        body {
            font-family: 'Roboto';
            font-size: 18px; padding: 5px;
            }
        div {
            display: inline-block;
            background: #ddd;
            color: #111;
            margin: 4px;
            width: 1.5em;
            height: 1.5em;
            text-align: center;
            padding: 0.2em 0 0 0;
            box-sizing: border-box;
        }
        div:hover {
            cursor:
            pointer;
            background: #ccc;
        }
    </style>

    <script type="text/javascript">
        var content = "";
        for (var i = 34; i < 30000; i++) {
            if (i % 1000 === 0) { content += '<hr>'; }
            content += "<div title='"+i+"'>" + String.fromCharCode(i) + "</div>";
        }

        window.onload = function() {
            document.body.innerHTML = content;
        }
    </script>
</head>
<body>

</body>
</html>