readUInt32BE method reads an unsigned, big-endian 32-bit integer from buf at the specified offset.
import { Buffer } from 'node:buffer';
const buf = Buffer.from([0x12, 0x34, 0x56, 0x78]);
console.log(buf.readUInt32BE(0).toString(16));
// Prints: 12345678
https://nodejs.org/api/buffer.html#bufreaduint32beoffset
Please, help to get the same value with ArrayBuffer without node.js.