Security Learning Mode

This is a tricky question, so go through it carefully and predict the output of the code. Remember that the second parameter of md5() causes the hash to be returned in RAW binary format instead of as a hex string.

<?php
namespace A;
function md5($value) {
return \md5($value . ' Extra saltiness');
}
echo strlen(md5('Hi', true));