如何检查两个md5加密值是否相同或不使用PHP?

I have two md5 value

Both string value is same but generate different md5.

So, how to match both value is same? Because in Hash function i am using Hash::check function for this type of problem.

If the two strings generate different md5 values, they are different strings. Perhaps one has a slightly different character encoding, a different comma character, or something of that sort. But comparing the equality of the two hashes, is the same as comparing the equality of the base strings -- that's the whole point of md5 :)