#️⃣ Hash Generator

Enter text to instantly get MD5, SHA-1, SHA-256 and SHA-512 hashes. Everything is computed in your browser — nothing is sent anywhere.

0 chars · 0 bytes

# File hash in PowerShell

Get-FileHash C:\file.exe -Algorithm SHA256
Get-FileHash C:\file.exe -Algorithm MD5

# Хеш рядка

$h = [System.Security.Cryptography.SHA256]::Create()
[BitConverter]::ToString($h.ComputeHash([Text.Encoding]::UTF8.GetBytes("text"))).Replace("-","").ToLower()