Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Data Manipulation ====== * [[qnd:JSON]] ====== Base64 ====== === Powershell to encode/decode base64 === === decode === <code powershell> [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String((Get-Content data.txt))) </code> === encode === <code powershell> [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes((Get-Content data.txt))) </code> qnd/data_manipulation.txt Last modified: 2023/08/14 18:11by mgupton