Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,6 @@
|
|||
chars = ["A", "ö", "Ж", "€", "𝄞"]
|
||||
put "Character Unicode (int) UTF-8 (hex) Decoded"
|
||||
repeat with c in chars
|
||||
ba = bytearray(c)
|
||||
put col(c, 12) & col(charToNum(c), 16) & col(ba.toHexString(1, ba.length), 14) & ba.readRawString(ba.length)
|
||||
end repeat
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
on col (val, len)
|
||||
str = string(val)
|
||||
repeat with i = str.length+1 to len
|
||||
put " " after str
|
||||
end repeat
|
||||
return str
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue