кстати а почему 16, если передается бинарник? должно быть 8.
1 байт - 8 бит, но не 16
<html>
<head>
</head>
<body>
<input type="file">
<div></div>
<script>
document.querySelector('input').onchange = function (e)
{
var file = e.target.files[0];
var reader = new FileReader();
reader.onload = function(e)
{
bytes = new Uint8Array(e.target.result);
console.log(bytes);
}
reader.readAsArrayBuffer(file);
};
</script>
</body>
</html>