🔢 Base64 & HEX Converter

Encode and decode Base64, HEX and PowerShell EncodedCommand directly in your browser. Nothing is sent to any server.

Encode text to Base64

0 chars

Examples to try:

# Base64 in PowerShell

# Encode
[Convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes("Hello"))

# Decode
[Text.Encoding]::UTF8.GetString([Convert]::FromBase64String("SGVsbG8="))

# PowerShell EncodedCommand
powershell.exe -EncodedCommand <Base64>