Skip to content

Instantly share code, notes, and snippets.

@alexburner
Created November 1, 2011 18:47
Show Gist options
  • Save alexburner/1331507 to your computer and use it in GitHub Desktop.
Save alexburner/1331507 to your computer and use it in GitHub Desktop.
UNICODE
<html>
<head>
<title>UNICODE</title>
</head>
<body style="font-size:128px;">
<script>
var uni = '';
for ( var i = 0; i < 109385; i++ ) {
uni += '&#' + i + '; ';
}
document.write(uni);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment