Created
September 30, 2024 14:54
-
-
Save creationix/6963f52b7b51232d8828dac6c9b3094f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const start = 0x2800; // Braille pattern blank | |
for (let i = 0; i < 16; i++) { | |
let line = ""; | |
for (let j = 0; j < 16; j++) { | |
line += String.fromCodePoint(start + i * 16 + j); | |
} | |
console.log(line); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment