How to get the string value from a hash("string")

You should not do this. It will only work in debug builds. In a release build there’s no reverse hash look-up enabled and your code will not work.

In your case of matching a flipbook animation id to a string you’d need to create the look-up table from hash to string yourself, or even better always work with the hashed values.

1 Like