I wanted to generate a unique hash code for a string in put in android. Is there any predefined library is there or we have to generate manually. Please any body if knows pl
String input = "some input string"; int hashCode = input.hashCode(); System.out.println("input hash code = " + hashCode);