If I remember correctly, the Caesar Cipher is a very basic encryption
algorithm. All you need to do is add any constant number to each character,
then mod Character.MAX_VALUE to make sure it doesn't go over the boundaries,
e.g.
newchar = (oldchar + 10) % Character.MAX_VALUE;