Node.js
For JavaScript running on Node you can do this:
const hexString = 'bada55';
const hex = Uint8Array.from(Buffer.from(hexString, 'hex'));
const backToHexString = Buffer.from(hex).toString('hex');
(source: this answer by @Teneff, shared with permission)