--returns true if the emoji has a Wiktionary entrylocal c2s = function c2s.c2s(frame) local getArgs = require('Module:Arguments').getArgs local args = getArgs(frame) --https://en.wiktionary.org/wiki/Category:Supplemental_Symbols_and_Pictographs_block local emojis1 = --https://en.wiktionary.org/wiki/Category:Emoticons_block local emojis2 = --https://en.wiktionary.org/wiki/Category:Miscellaneous_Symbols_and_Pictographs_block local emojis3 = '☉✾$✝ॐ☠☎ ✗✓' --https://en.wiktionary.org/wiki/Category:Supplemental_Symbols_and_Pictographs_block emojis4 = --https://en.wiktionary.org/wiki/Category:Symbols_and_Pictographs_Extended-A_block emojis5 = local emojis = emojis1 .. emojis2 .. emojis3 .. emojis4 .. emojis5 if emojis:match(args[1]) then return true else return false endendreturn c2s