r - How do i make the result of base64enc::base64decode human readable -
i have text base 64 encoded , want decode in r. package im using base64decode of base64enc package. problem have not human readable. how make work
e.g. text string endcoded "exampleencodedtext"
base64enc::base64decode("zxhhbxbszuvuy29kzwruzxh0") [1] 65 78 61 6d 70 6c 65 45 6e 63 6f 64 65 64 54 65 78 74 for reference encoded on https://www.base64decode.org/
?base64decode says function decodes base64-encoded string binary data. so, using rawtochar gives human readable character:
rawtochar(base64decode("zxhhbxbszuvuy29kzwruzxh0")) [1] "exampleencodedtext"
Comments
Post a Comment