Module:CharToCodepoint/sandbox: Difference between revisions
Appearance
hp>Alexis Jazz [Factotum] |
Humanipedia (talk | contribs) m 1 revision imported |
(No difference)
|
Latest revision as of 21:23, 3 February 2025
Documentation for this module may be created at Module:CharToCodepoint/sandbox/doc
local c2s = {}
function c2s.c2s( frame )
local getArgs = require('Module:Arguments').getArgs
local args = getArgs(frame)
local char_to_script = require('Module:scripts').charToScript
local codepoint = string.byte('👨👩👧')
return codepoint
end
return c2s