base64_to_string | R Documentation |
Decode "Base64" data to its generating characters
base64_to_string(what)
what |
characters, encoded "Base64" data |
String
input <- "The quick brown fox jumps over the lazy dog"
# Base64 encode
what <- base64enc::base64encode(what = charToRaw(input))
# Base64 decode
base64_to_string(what)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.