I have following output in sha256 online:
But in my rust when i do
let mut hasher = Sha256::default();
hasher.update(input_data.secret);
let input_secret_hash: String = format!("{:x}", hasher.finalize());
where input_data.secret == 75ca0e2daaf49840ddce9456378efbc95e97ed2566226edca2d73ca1c50450fc
i receive 46fe3a4fc1480dfdc1b23906c10cb49eee043733c6c410081aa245234c05e4cb
which is the value as text:
[
How i'm able to receive value as the hex screenshot example