Hello for my datastore script, I need some utf-8 characters to have.
I view many website but roblox don’t count this to be a utf-8.
Because there are many errors type of no utf-8.
For the moment i have this: aezrtyuiopqsdfghjklmwxcvbnAEZRTYUIOPQSDFGHJKLMWXCVBN0.321456987+-*/<>!:?%$*^=)_-\\[]{}
local function create_scoped_tokens(chars)
local tbl = {}
for start, stop in utf8.graphemes(chars) do
-- start: where the first byte sequence starts
-- stop: where the last byte sequence ends
table.insert(tbl, string.sub(chars, start, stop))
end
return tbl
end
local scoped_tokens = create_scoped_tokens("awqsxzedcvgfrtbnhyujkiolpmMPLKIOUJNBHYTGVFREDCXSZAQW0.321456987+-*/<>!:?%$*^=)_-\\[]{}ȚșȘȓȐȆǿŮŧ")
print(scoped_tokens)