Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
byte data[] = s.getBytes();
String s = getEncoder().encodeToString(data);
$encoded = encode_base64('Aladdin:open sesame');
$decoded = decode_base64($encoded);
perl has strings, not byte arrays, so we use the MIME::Base64 CPAN module to encode or decode strings to base 64. If the bytes were in an array (i.e. a perl list) then we could just concatenate them beforehand into a string using join '', @list.