Home window에서 base64 인코딩
Post
Cancel

window에서 base64 인코딩

  1. Power Shell을 실행

  2. 다음 코드에서 인코딩할 부분 수정 후 실행

1
2
3
$plainText = "비밀번호" # 인코딩할 문자열
$base64Encoded = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($plainText))
$base64Encoded # 결과 출력
This post is licensed under CC BY 4.0 by the author.