# Base64 encode data

```ruby
var data = %f'favicon.ico'.read(:raw)   # binary string
print data.encode_base64                # print to STDOUT
```
