Needing to convert a Base64 string to Hexadecimal with javascript.
Example:
var base64Value = \"oAAABTUAAg==\"
Need conversion m
Why not try the following code?:
const buffer = Buffer.from(rawData, 'base64'); const bufString = buffer.toString('hex');