mirror of
https://github.com/9001/copyparty.git
synced 2025-10-03 09:49:29 +02:00
add monospace font
This commit is contained in:
parent
47bc8bb466
commit
2cb07792cc
5 changed files with 33 additions and 39 deletions
10
docs/unirange.py
Normal file
10
docs/unirange.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
v = "U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD"
|
||||
for v in v.split(","):
|
||||
if "+" in v:
|
||||
v = v.split("+")[1]
|
||||
if "-" in v:
|
||||
lo, hi = v.split("-")
|
||||
else:
|
||||
lo = hi = v
|
||||
for v in range(int(lo, 16), int(hi, 16) + 1):
|
||||
print("{:4x} [{}]".format(v, chr(v)))
|
Loading…
Add table
Add a link
Reference in a new issue