HEX to Base64 converter for JavaScript

If you’re working in Node or using Browserify, you can use

var base64String = Buffer.from(hexString, 'hex').toString('base64')

or

var hexString = Buffer.from(base64String, 'base64').toString('hex')

Leave a Comment