Skip to content

Instantly share code, notes, and snippets.

@jukbot
Created December 1, 2015 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jukbot/4182d077a8774865c027 to your computer and use it in GitHub Desktop.
Save jukbot/4182d077a8774865c027 to your computer and use it in GitHub Desktop.
public class ASCII
{
public static void main(String[] args) {
System.out.print("ASCII Character");
for(int j = 32;j <126; j++) {
char i = (char)j;
System.out.println(j +" " + i);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment