* Add characters:

- LATIN CAPITAL LETTER K WITH STROKE (`U+A740`) (#1453).
  - LATIN SMALL LETTER K WITH STROKE (`U+A741`) (#1453).
  - LATIN CAPITAL LETTER THORN WITH STROKE (`U+A764`) (#1453).
  - LATIN SMALL LETTER THORN WITH STROKE (`U+A765`) (#1453).
  - LATIN CAPITAL LETTER F WITH STROKE (`U+A798`) (#1453).
  - LATIN SMALL LETTER F WITH STROKE (`U+A799`) (#1453).
  - LATIN CAPITAL LETTER U WITH STROKE (`U+A7B8`) (#1453).
  - LATIN SMALL LETTER U WITH STROKE (`U+A7B9`) (#1453).
This commit is contained in:
be5invis 2022-12-10 02:51:07 -08:00
parent 743828ba34
commit d94b60acaa
21 changed files with 96 additions and 72 deletions

View file

@ -3,5 +3,5 @@ import ucdNames from "@unicode/unicode-14.0.0/Names/index.js";
for (let i = 2; i < process.argv.length; i++) {
const lch = parseInt(process.argv[i], 16);
const name = ucdNames.get(lch);
console.log(" -", name, `(\`U+${lch.toString(16).toUpperCase().padStart(4, "0")}\`);`);
console.log(" -", name, `(\`U+${lch.toString(16).toUpperCase().padStart(4, "0")}\`).`);
}