Decode Base64 to Hexadecimal string with javascript December 18, 2023 by Tarik Why not try the following code?: const buffer = Buffer.from(rawData, 'base64'); const bufString = buffer.toString('hex');