in reply to SOLVED: Predictable repeatable hash order in CORE

It might be sufficient to sort the keys (or possibly the values, depending on your needs) when you want to print out the hash content. Perhaps something like this:
say "$_ => $hash{$_}" for sort keys %hash;