PowerShell is the best way to do this. You can encrypt and decrypt columns on the fly. First, launch the Always Encrypted wizard by right-clicking the table and choosing "Encrypt Columns." Next, go through the wizard until you get to "Run settings." Here you have the option to generate the ps script and save it. Make a copy of the script. One will be your script for decrypting columns, and the other for encrypting columns. Open the scripts in a text editor and edit as needed. Execute in PowerShell. I've included an example below on how to decrypt columns using an edited PowerShell script. Read the doc here:
https://learn.microsoft.com/en-us/sql/relational-databases/security/encryption/configure-column-encryption-using-powershell?view=sql-server-ver15
Example PowerShell script to decrypt two columns
#Generated by SQL Server Management Studio at 4:41 PM on 5/14/2020
Import-Module SqlServer
#Set up connection and database SMO objects
#$password = "your password"
$sqlConnectionString = "Data Source=BLAH\MSSQL2014;Initial Catalog=BLAHDB;User ID=sa;Password=$password;MultipleActiveResultSets=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;Packet Size=4096;Application Name="Microsoft SQL Server Management Studio
""
$smoDatabase = Get-SqlDatabase -ConnectionString $sqlConnectionString
#If your encryption changes involve keys in Azure Key Vault, uncomment one of the lines below in order to authenticate:
#* Prompt for a username and password:
#Add-SqlAzureAuthenticationContext -Interactive
#* Enter a Client ID, Secret, and Tenant ID:
#Add-SqlAzureAuthenticationContext -ClientID '' -Secret '' -Tenant ''
#Change encryption schema
$encryptionChanges = @()
#Add changes for table [dbo].[blah_table]
$encryptionChanges += New-SqlColumnEncryptionSettings -ColumnName dbo.blah_table.field1 -EncryptionType Plaintext
$encryptionChanges += New-SqlColumnEncryptionSettings -ColumnName dbo.blah_table.field2 -EncryptionType Plaintext
Set-SqlColumnEncryption -ColumnEncryptionSettings $encryptionChanges -InputObject $smoDatabase