Horje
base64 decode in powershell Code Example
base64 decode in powershell
---decode
$input = “aHR0cHM6Ly93d3cueW91dHViZS5jb20vd2F0Y2g/dj1kUXc0dzlXZ1hjUQo=”
$output = [System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String($input))
$output

--encode
$input = ‘text to be encoded’
$By = [System.Text.Encoding]::Unicode.GetBytes($input)
$output =[Convert]::ToBase64String($By)
$output




Shell

Related
terminal unzip Code Example terminal unzip Code Example
pandoc download ubuntu Code Example pandoc download ubuntu Code Example
remove local changes git Code Example remove local changes git Code Example
powreshell function cleanup Code Example powreshell function cleanup Code Example
show applications shortcut ubuntu move right Code Example show applications shortcut ubuntu move right Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9