| raw_deparse_str | R Documentation | 
This function converts a raw vector to a hexadecimal string,
optionally adding a prefix and a suffix.
It is roughly equivalent to
paste0(prefix, paste(format(x), collapse = ""), suffix)
and much faster.
raw_deparse_str(x, prefix = NULL, suffix = NULL)
x | 
 A raw vector.  | 
prefix, suffix | 
 Prefix and suffix strings, or 'NULL.  | 
A string.
raw_deparse_str(raw())
raw_deparse_str(charToRaw("string"))
raw_deparse_str(raw(10), prefix = "'0x", suffix = "'")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.