Octal number conversion in java.

How do you convert an octal number to a binary number?
My code is below:

byte b3 = 065;
System.out.println(b3);

And the output is:
53
So i know that
byte b3 = 065;
is an octal number, but i want to know how we get
53
as our output. Can someone explain this.

BTW: I am new to java.

Comments (1)