Skip to content

Instantly share code, notes, and snippets.

@chufty
chufty / cavv.js
Created July 14, 2022 09:55
Creates an empty CAVV
const cavvBytes = new Uint8Array(20);
cavvBytes[19]++;
const cavv = btoa(String.fromCharCode(...cavvBytes));
console.log(cavv);