You can use Buffer.from() and subsequently use toString('hex'):

let hex = Buffer.from(uint8).toString('hex');
Answer from robertklep on Stack Overflow
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Global_Objects › Uint8Array › toHex
Uint8Array.prototype.toHex() - JavaScript - MDN Web Docs
This example encodes data from a Uint8Array into a hex string. ... const uint8Array = new Uint8Array([202, 254, 208, 13]); console.log(uint8Array.toHex()); // "cafed00d" const data = new Uint8Array([255, 0, 0, 0, 255, 0, 0, 0, 255]); for (let i = 0; i < data.length; i += 3) { console.log(data.slice(i, i + 3).toHex()); } // "ff0000" // "00ff00" // "0000ff"
Discussions

converting an Unit8Array to hex
Hope this helps you. const bff = Buffer.from('hello'); const arr = new Uint8Array(bff); function toHex(arr: Uint8Array): string { let output = '' arr.forEach(code => { output += code.toString(16); }); return '0x' + output; } console.log(toHex(arr)) More on reddit.com
🌐 r/typescript
4
7
October 4, 2021
ramda.js - How to convert a hexadecimal string to Uint8Array and back in JavaScript? - Stack Overflow
I want to convert a hexadecimal string like bada55 into a Uint8Array and back again. More on stackoverflow.com
🌐 stackoverflow.com
cryptography - Byte array to hexadecimal and back again in JavaScript - Bitcoin Stack Exchange
Using the above I'm getting a string ... i get an array buffer like "Uint8Array(16) [181, 143, 16, 173, 231, 56, 63, 149, 181, 185, 224, 124, 84, 230, 123, 36]" how do i convert this to an array? ... @Geograph since each byte is 2 hex digits, this is expected behaviour - ... More on bitcoin.stackexchange.com
🌐 bitcoin.stackexchange.com
How can I convert an ArrayBuffer to a hexadecimal string (hex)?
An Array is created from a Uint8Array holding the buffer data. This is so we can modify the array to hold string values later. All the Array items are mapped to their hex codes and padded with 0 characters. More on stackoverflow.com
🌐 stackoverflow.com
🌐
npm
npmjs.com › package › uint8-to-hex
uint8-to-hex - npm
import toHex from 'uint8-to-hex'; // Converting a Uint8Array to a hexadecimal string const uint8 = new Uint8Array ( [72, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100, 33] ); const hex = toHex ( uint8 ); // => '48656c6c6f2c20776f726c6421'
      » npm install uint8-to-hex
    
Published   Jan 15, 2025
Version   2.0.1
🌐
GitHub
github.com › fabiospampinato › uint8-to-hex
GitHub - fabiospampinato/uint8-to-hex: The fastest function to convert a Uint8Array to hexadecimal. · GitHub
import toHex from 'uint8-to-hex'; // Converting a Uint8Array to a hexadecimal string const uint8 = new Uint8Array ( [72, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100, 33] ); const hex = toHex ( uint8 ); // => '48656c6c6f2c20776f726c6421'
Author   fabiospampinato
Find elsewhere
🌐
GitHub
github.com › mdn › content › blob › main › files › en-us › web › javascript › reference › global_objects › uint8array › tohex › index.md
content/files/en-us/web/javascript/reference/global_objects/uint8array/tohex/index.md at main · mdn/content
The **`toHex()`** method of {{jsxref("Uint8Array")}} instances returns a hex-encoded string based on the data in this `Uint8Array` object. · This method creates strings from a byte array.
Author   mdn
🌐
Runebook.dev
runebook.dev › en › docs › javascript › global_objects › uint8array › tohex
javascript - Common Issues and Solutions for Uint8Array to Hex
Solution Write a Custom Function The most common solution is to write a small helper function that iterates through the Uint8Array and converts each byte to its two-digit hexadecimal representation.
🌐
GitHub
gist.github.com › manthrax › 96f5edadabe2da3ec39d94e807eaf096
Uint8Array to hex string.. and back... and some tests.... · GitHub
Uint8Array to hex string.. and back... and some tests.... - gist:96f5edadabe2da3ec39d94e807eaf096
🌐
GitHub
github.com › tc39 › proposal-arraybuffer-base64
GitHub - tc39/proposal-arraybuffer-base64: TC39 proposal for Uint8Array<->base64/hex · GitHub
JavaScript has Uint8Arrays to work with binary data, but no built-in mechanism to encode that data as base64, nor to take base64'd data and produce a corresponding Uint8Arrays. This is a proposal to fix that. It also adds methods for converting between hex strings and Uint8Arrays.
Starred by 281 users
Forked by 14 users
Languages   HTML 37.3% | JavaScript 33.7% | CSS 29.0%
Top answer
1 of 15
142

function buf2hex(buffer) { // buffer is an ArrayBuffer
  return [...new Uint8Array(buffer)]
      .map(x => x.toString(16).padStart(2, '0'))
      .join('');
}

// EXAMPLE:
const buffer = new Uint8Array([ 4, 8, 12, 16 ]).buffer;
console.log(buf2hex(buffer)); // = 04080c10
Run code snippetEdit code snippet Hide Results Copy to answer Expand

This function works in four steps:

  1. Converts the buffer into an array.
  2. For each x the array, it converts that element to a hex string (e.g., 12 becomes c).
  3. Then it takes that hex string and left pads it with zeros (e.g., c becomes 0c).
  4. Finally, it takes all of the hex values and joins them into a single string.

Below is another longer implementation that is a little easier to understand, but essentially does the same thing:

Show code snippet

function buf2hex(buffer) { // buffer is an ArrayBuffer
  // create a byte array (Uint8Array) that we can use to read the array buffer
  const byteArray = new Uint8Array(buffer);
  
  // for each element, we want to get its two-digit hexadecimal representation
  const hexParts = [];
  for(let i = 0; i < byteArray.length; i++) {
    // convert value to hexadecimal
    const hex = byteArray[i].toString(16);
    
    // pad with zeros to length 2
    const paddedHex = ('00' + hex).slice(-2);
    
    // push to array
    hexParts.push(paddedHex);
  }
  
  // join all the hex values of the elements into a single string
  return hexParts.join('');
}

// EXAMPLE:
const buffer = new Uint8Array([ 4, 8, 12, 16 ]).buffer;
console.log(buf2hex(buffer)); // = 04080c10
Run code snippetEdit code snippet Hide Results Copy to answer Expand

2 of 15
49

Here are several methods for encoding an ArrayBuffer to hex, in order of speed. All methods were tested in Firefox initially, but afterwards I went and tested in Chrome (V8). In Chrome the methods were mostly in the same order but it did have slight differenences--the important thing is that #1 is the fastest method in all environments by a huge margin.

If you want to see how slow the currently selected answer is, you can go ahead and scroll to the bottom of this list.

TL;DR

Method #1 (just below this) is the fastest method I tested for encoding to a hex string. If, for some very good reason, you need to support IE, you may need to replace the .padStart call with the .slice trick used in method #6 when precomputing the hex octets to make sure every octet is 2 characters.

1. Precomputed Hex Octets w/ for Loop (Fastest/Baseline)

This approach computes the 2-character hex octets for every possible value of an unsigned byte: [0, 255], and then just maps each value in the ArrayBuffer through the array of octet strings. Credit to Aaron Watters for the original answer using this method.

NOTE: as mentioned by Cref, you may get a performance boost in V8 (Chromium/Chrome/Edge/Brave/etc.) by using the loop to just concatenate hex octets into one big string as you go and then returning the string after the loop. V8 seems to optimize string concatenation very well while Firefox performed better with building up an array and then .joining it into a string at the end as I did in the code below. That would probably be a micro-optimization subject to change with the whims of optimizing JS compilers though..

const byteToHex = [];

for (let n = 0; n <= 0xff; ++n)
{
    const hexOctet = n.toString(16).padStart(2, "0");
    byteToHex.push(hexOctet);
}

function hex(arrayBuffer)
{
    const buff = new Uint8Array(arrayBuffer);
    const hexOctets = []; // new Array(buff.length) is even faster (preallocates necessary array size), then use hexOctets[i] instead of .push()

    for (let i = 0; i < buff.length; ++i)
        hexOctets.push(byteToHex[buff[i]]);

    return hexOctets.join("");
}

2. Precomputed Hex Octets w/ Array.map (~30% slower)

Same as the above method, where we precompute an array in which the value for each index is the hex string for the index's value, but we use a hack where we call the Array prototype's map() method with the buffer. This is a more functional approach, but if you really want speed you will always use for loops rather than ES6 array methods, as all modern JS engines optimize them much better.

IMPORTANT: You cannot use new Uint8Array(arrayBuffer).map(...). Although Uint8Array implements the ArrayLike interface, its map method will return another Uint8Array which cannot contain strings (hex octets in our case), hence the Array prototype hack.

function hex(arrayBuffer)
{
    return Array.prototype.map.call(
        new Uint8Array(arrayBuffer),
        n => byteToHex[n]
    ).join("");
}

3. Precomputed ASCII Character Codes (~230% slower)

Well this was a disappointing experiment. I wrote up this function because I thought it would be even faster than Aaron's precomputed hex octets--boy was I wrong LOL. While Aaron maps entire bytes to their corresponding 2-character hex codes, this solution uses bitshifting to get the hex character for the first 4 bits in each byte and then the one for the last 4 and uses String.fromCharCode(). Honestly I think String.fromCharCode() must just be poorly optimized, since it is not used by very many people and is low on browser vendors' lists of priorities.

const asciiCodes = new Uint8Array(
    Array.prototype.map.call(
        "0123456789abcdef",
        char => char.charCodeAt()
    )
);

function hex(arrayBuffer)
{
    const buff = new Uint8Array(arrayBuffer);
    const charCodes = new Uint8Array(buff.length * 2);

    for (let i = 0; i < buff.length; ++i)
    {
        charCodes[i * 2] = asciiCodes[buff[i] >>> 4];
        charCodes[i * 2 + 1] = asciiCodes[buff[i] & 0xf];
    }

    return String.fromCharCode(...charCodes);
}

4. Array.prototype.map() w/ padStart() (~290% slower)

This method maps an array of bytes using the Number.toString() method to get the hex and then padding the octet with a "0" if necessary via the String.padStart() method.

IMPORTANT: String.padStart() is a relative new standard, so you should not use this or method #5 if you are planning on supporting browsers older than 2017 or so or Internet Explorer. TBH if your users are still using IE you should probably just go to their houses at this point and install Chrome/Firefox. Do us all a favor. :^D

function hex(arrayBuffer)
{
    return Array.prototype.map.call(
        new Uint8Array(arrayBuffer),
        n => n.toString(16).padStart(2, "0")
    ).join("");
}

5. Array.from().map() w/ padStart() (~370% slower)

This is the same as #4 but instead of the Array prototype hack, we create an actual number array from the Uint8Array and call map() on that directly. We pay in speed though.

function hex(arrayBuffer)
{
    return Array.from(new Uint8Array(arrayBuffer))
        .map(n => n.toString(16).padStart(2, "0"))
        .join("");
}

6. Array.prototype.map() w/ slice() (~450% slower)

This is the selected answer, do not use this unless you are a typical web developer and performance makes you uneasy (answer #1 is supported by just as many browsers).

function hex(arrayBuffer)
{
    return Array.prototype.map.call(
        new Uint8Array(arrayBuffer),
        n => ("0" + n.toString(16)).slice(-2)
    ).join("");
}

Lesson #1

Precomputing stuff can be a very effective memory-for-speed tradeoff sometimes. In theory, the array of precomputed hex octets can be stored in just 1024 bytes (256 possible hex values ⨉ 2 characters/value ⨉ 2 bytes/character for a UTF-16 string representation used by most/all browsers), which is nothing in a modern computer. Realistically there are some more bytes in there used for storing the array and string lengths and maybe type information since this is JavaScript, but the memory usage is still negligible for a massive performance improvement.

Lesson #2

Help out the optimizing compiler. The browser's JavaScript compiler regularly attempts to understand your code and break it down to the fastest possible machine code for your CPU to execute. Because JavaScript is a very dynamic language, this can be hard to do and sometimes the browser just gives up and leaves all sorts of type checks and worse under-the-hood because it can't be sure that x will indeed be a string or number, and vice versa. Using modern functional programming additions like the .map method of the built-in Array class can cause headaches for the browser because callback functions can capture outside variables and do all sorts of other things that often hurt performance. For-loops are well-studied and relatively simple constructs, so the browser developers have incorporated all sorts of tricks for the compiler to optimize your JavaScript for-loops. Keep it simple.

🌐
Webdevtutor
webdevtutor.net › blog › typescript-uint8array-to-hex-string
Convert TypeScript Uint8Array to Hex String: A Step-by-Step Guide
This method simply calls toString() on the Uint8Array and returns the resulting string. Note that this method may not produce a perfectly formatted hexadecimal string, as it will include newline characters (\n) and other whitespace.
🌐
GitHub
github.com › 47ng › codec
GitHub - 47ng/codec: Universal conversion of Uint8Array from/into UTF-8, base64url and hex in the browser and Node.js
import { hex } from '@47ng/codec' const uint8Array = hex.decode('48656C6C6F2C20576f726c642021') // Uint8Array [72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33] // Encoding is always lowercase const backToBase64 = hex.encode(uint8Array) // '48656c6c6f2c20576f726c642021' The library exports convenience methods for converting from one string representation to another:
Author   47ng
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › JavaScript › Reference › Global_Objects › Uint8Array
Uint8Array - JavaScript - MDN Web Docs
Returns a base64-encoded string based on the data in this Uint8Array object. ... Returns a hex-encoded string based on the data in this Uint8Array object.
🌐
Jsben
jsben.ch › uint8array-to-hex-string-conversion-h46rr
Uint8Array to Hex String Conversion - JSBEN.CH JavaScript Benchmark
const hexOctets = []; // new Array(buff.length) is even faster (preallocates necessary array size), then use hexOctets[i] instead of .push() ... const bufferToHex3 = (buffer) => [...new Uint8Array(buffer)].map(buffer => buffer.toString(16).padStart(2, '0')).join('')
🌐
npm
npmjs.com › package › uint8array-extras
uint8array-extras - npm
August 22, 2025 - Convert a Uint8Array to a Hex string.
      » npm install uint8array-extras
    
Published   Aug 22, 2025
Version   1.5.0