Some Simple Graphics

Yes.... we can do some simple graphics without having to spend a month learning the whole Java graphics system.
There are two things that we can do easily ...

Unicode characters

You can also add unicode characters using escape codes.
System.out.println("I am the \u265B \u2394");

which prints out like I am the ♛ ⎔  

READ THIS:

JOptionPane

We can make pop up text boxes which are called JOptionPanes (most graphic classes in Java start with the letter J)

Copy this code into NotePad++ and save it as OptionPane.java . Once you save it, it will be a WHOLE lot easier to read as it will have syntax colouring.

A more advanced program is here: binary to hex program