Radical 119

Radical 119 meaning "rice" is 1 of 29 Kangxi radicals (214 radicals total) composed of 6 strokes.

Radical 119 (U+2F76)
(U+7C73) "rice"
Pinyin:
Bopomofo:ㄇㄧˇ
Gwoyeu Romatzyh:mii
Wade–Giles:mi3
Cantonese Yale:máih
Jyutping:mai5
Kana:ベイ, マイ bei, mai (on)
こめ kome (kun)
Kanji:米偏 komehen
Hangul:쌀 ssal
Sino-Korean:미 mi
Stroke order animation
rice

In the Kangxi Dictionary there are 318 characters (out of 49,030) to be found under this radical.

Characters with Radical 119

strokescharacter
without additional strokes
2 additional strokes籴 籵 籶
3 additional strokes籷 籸 籹 籺 类 籼 籽 籾 籿 粀 粁 粂
4 additional strokes粃 粄 粅 粆 粇 粈 粉 粊 粋 粌 粍 粎 粏 粐 粑
5 additional strokes粒 粓 粔 粕 粖 粗 粘 粙 粚 粜 粝
6 additional strokes粞 粟 粠 粡 粢 粣 粤 粥 粦 粧 粨 粩 粪 粫 粬 粭
7 additional strokes粮 粯 粰 粱 粲 粳 粴 粵
8 additional strokes粶 粷 粸 粹 粺 粻 粼 粽 精 粿 糀 糁
9 additional strokes糂 糃 糄 糅 糆 糇 糈 糉 糊 糋 糌 糍 糎
10 additional strokes糏 糐 糑 糒 糓 糔 糕 糖 糗 糘
11 additional strokes糙 糚 糛 糜 糝 糞 糟 糠 糡 糢 糨
12 additional strokes糣 糤 糥 糦 糧
13 additional strokes糩 糪 糫 糬 糭
14 additional strokes糮 糯 糰
15 additional strokes
16 additional strokes糱 糳 糴
17 additional strokes
19 additional strokes
21 additional strokes

Literature

  • Fazzioli, Edoardo (1987). Chinese calligraphy : from pictograph to ideogram : the history of 214 essential Chinese/Japanese characters. calligraphy by Rebecca Hon Ko. New York: Abbeville Press. ISBN 0-89659-774-1.
  • Lunde, Ken (Jan 5, 2009). "Appendix J: Japanese Character Sets" (PDF). CJKV Information Processing: Chinese, Japanese, Korean & Vietnamese Computing (Second ed.). Sebastopol, Calif.: O'Reilly Media. ISBN 978-0-596-51447-1.
gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.