Skip to content

Instantly share code, notes, and snippets.

@MaraScott
Created August 27, 2014 07:22
Show Gist options
  • Select an option

  • Save MaraScott/75dfafbaaf796434ab10 to your computer and use it in GitHub Desktop.

Select an option

Save MaraScott/75dfafbaaf796434ab10 to your computer and use it in GitHub Desktop.
Name : generateAsciiList() - Language : JavaScript - type : function - Platform : generic - tag : ascii, encode
for (var i=0; i<128; i++) {
document.writeln ((i%32?'':'<p>') + i + ': ' + String.fromCharCode (i) + '<br>');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment