Hash Code
Hash Code is unique identification number allocated to created objects by the JVM (Java Virtual Machine). This hash code number is also called reference number which is created based on the location of the object in memory, and it is unique for all objects except for String Objects.
Hash code of an object can be found by hashcode() method of 'Object' class in java.lang.package .