Logo

Programming-Idioms

  • C#
  • Scheme

Idiom #234 Encode bytes to base64

Assign to the string s the standard base64 encoding of the byte array data, as specified by RFC 4648.

(require net/base64)
(base64-encode
 (list->bytes
  (map char->integer
       (string->list "hi there"))))

Racket
using System;
string s = Convert.ToBase64String(data);
import 'dart:convert';
var s = base64.encode(data);

New implementation...
< >
programming-idioms.org