The page on the utf8 Lua library has a representation of utf8.charpattern. It looks like this:
There are three major problems with this that prevent it from being accurate:
1. It uses an escape format that isn’t supported in the version of Lua that Roblox uses Roblox now supports hex escapes
2. It lacks an asterisk at the end of the pattern
3. It evidently is missing a character which makes it confusing and generally misleading (x01)
After doing some automation to convert the utf8.charpattern value that’s actually in-game, this string is the equivalent: [%z\1-\127\194-\244][\128-\191]*
This should ideally replace the string on the wiki, even though it’s not great to look at, since it’s factually correct and the one on the devhub is not (seen below).