Created
September 30, 2024 14:54
-
-
Save creationix/6963f52b7b51232d8828dac6c9b3094f to your computer and use it in GitHub Desktop.
Revisions
-
creationix created this gist
Sep 30, 2024 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ 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); }