Jump to content

Module:CharToCodepoint

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Alexis Jazz (talk | contribs) at 11:52, 24 November 2023 (Created page with 'local c2s = {}' [Factotum]). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
local c2s = {}
function c2s.c2s( frame )
--	local getArgs = require('Module:Arguments').getArgs
--	local args = getArgs(frame)
	local title = mw.title.getCurrentTitle()
	local char_to_script = require('Module:scripts').charToScript
	local codepoint = mw.ustring.codepoint(title.fullText)
	local BaseConvert = require('Module:BaseConvert')
	return codepoint
--	local script_code = char_to_script(codepoint)
--	local script_code = char_to_script(args[1])
--	return script_code
end
return c2s