Skip to content

verhovsky/text-inspector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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)) } }

About

print the codepoints that make up some text and their character names

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages