Module:typing-aids/data/Phnx
Jump to navigation
Jump to search
- This module lacks a documentation subpage. Please create it.
- Useful links: root page • root page’s subpages • links • transclusions • testcases • sandbox
local U = mw.ustring.char
local dot_below = U(0x323) -- dot below
local caron = U(0x30C) -- caron
local scaron = U(0x161) -- latin small letter s with caron
local data = {
[1] = {
["h" .. dot_below] = "𐤇", -- het
["t" .. dot_below] = "𐤈", -- tet
["s" .. dot_below] = "𐤑", -- sade
["s" .. caron] = "𐤔", -- shin
},
[2] = {
["ʾ"] = "𐤀", -- alf
["b"] = "𐤁", -- bet
["g"] = "𐤂", -- gaml
["d"] = "𐤃", -- dalt
["h"] = "𐤄", -- he
["w"] = "𐤅", -- wau
["z"] = "𐤆", -- zai
["y"] = "𐤉", -- yod
["k"] = "𐤊", -- kaf
["l"] = "𐤋", -- lamd
["m"] = "𐤌", -- mem
["n"] = "𐤍", -- nun
["s"] = "𐤎", -- samk
["ʿ"] = "𐤏", -- ain
["p"] = "𐤐", -- pe
["q"] = "𐤒", -- qof
["r"] = "𐤓", -- rosh
[scaron] = "𐤔", -- shin
["t"] = "𐤕", -- tau
},
}
return data