Nothing
      ##' Get the current encoding of the locale.
##' 
##' @title Get the current encoding of the locale.
##' @return Character of encoding.
##' @author Jian Li <\email{rweibo@@sina.com}>
##' @examples
##' getCharset()
getCharset <- function()
{
	charsetChar <- utils::localeToCharset(locale = Sys.getlocale("LC_CTYPE"))
	iconvList <- iconvlist()
	iconvId <- which(iconvList == charsetChar)
	if (length(iconvId) == 0) iconvId <- which(toupper(iconvList) == toupper(charsetChar))[1]
	if (length(iconvId) == 0) return("")
	OUT <- iconvList[iconvId]
	return(OUT)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.