GitXplorerGitXplorer
v

text-inspector

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
39cd5adbf2126286112b668afc54d59eee996737

Update codepoints

vverhovsky committed 2 years ago
Unverified
68ac605c5a5b2c326124d16f8a36ec9b1df10d1e

Finish renaming, improve font

vverhovsky committed 2 years ago
Unverified
75b0a007ceba49f7a73eb97d0d1162b973a29559

add screenshot

vverhovsky committed 3 years ago
Verified
fb847d16c5096ffb85f95bf4e76b3fefe99f83d9

add instruction

vverhovsky committed 3 years ago
Unverified
97eb8f0707530672f14d7838d0a00f17e0876d8a

parse NamesList.txt more correctly

vverhovsky committed 3 years ago
Unverified
15a878598477c41ddf8fa64d5e6b349fbf853000

use codePointAt() instead of charCodeAt()

vverhovsky committed 3 years ago

README

The README file for this repository.

Text Inspector shows the code points that make up a text and their names

A screenshot showing the codepoints that make up the text "Hello, world!"


View the site locally

python3 -m http.server

Look at the source data

curl https://www.unicode.org/Public/UCD/latest/ucd/NamesList.txt | less

Update the data in codepoint-names.js

pip install requests
python update_codepoint_names.py

Check which code points are missing

node
.load codepoint-names.js
for (let x = 0; x < 0x110000; x++) { if (!NAMES[x]) { console.log(x.toString(16)) } }