From this sample code from MSDN http://msdn.microsoft.com/en-us/library/system.string.gethashcode.aspx
The hash code for \"abc\" is: 536991770
But how to con
You cannot. Hashes are one way.
The thing with hashes is that you loose information. Independent of the length of the string, the result is always an integer. This means e.g. that getting the has of a string of 10,000 characters will also result in an integer. It is of course impossible to get the original string back from this integer.