go convert binary data into ASCII text using Base64 RFC 4648.

First, convert the binary data into groups of 24 bits. Then, divide the 24-bit groups into four 6-bit groups. Next, convert each 6-bit group into a decimal value. After that, map each decimal value to its corresponding Base64 character. Finally, concatenate the Base64 characters to form the ASCII text.