Convert Int to base64

Hello. I want to convert any Int in a range 0:63 to its base64 equivalent.

The function f(i) would be:

f(i::Int64) =>

0 => A
1 => B
32 => g
63=> /

If there are choices I prefer low RAM and human readability.

(Edit:I guess the output might be a char or string)

Thanks

Aldo

https://docs.julialang.org/en/v1/stdlib/Base64/

1 Like

Very helpful

I was snow blind

RTFM :slight_smile: :+1: