From 67f46ccbc7a976bfe060e5dc1df072816d9d6e96 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 8 May 2022 15:39:57 +0200 Subject: [PATCH] Add more functionality to sqlite database - Automate and cache dart sql generators - Add RADKFILE - Add jouyou kanji data --- lib/migrations/.gitignore | 6 + lib/migrations/0001_initial.sql | 33 +- lib/migrations/0002_populate_radicals.sql | 507 +- lib/migrations/0003_populate_radkfile.sql | 24557 ++++++ lib/migrations/0004_populate_jouyou_kanji.sql | 52987 ++++++++++++ lib/migrations/Makefile | 13 +- lib/migrations/data/jisho/grade1.json | 7185 -- lib/migrations/data/jisho/grade2.json | 13236 --- lib/migrations/data/jisho/grade3.json | 15311 ---- lib/migrations/data/jisho/grade4.json | 14534 ---- lib/migrations/data/jisho/grade5.json | 13313 --- lib/migrations/data/jisho/grade6.json | 13410 --- lib/migrations/data/jisho/grade7.json | 70743 ---------------- lib/migrations/test.py | 133 - lib/migrations/tools/update_0002.dart | 60 +- lib/migrations/tools/update_0003.dart | 28 + lib/migrations/tools/update_0004.dart | 213 + 17 files changed, 78129 insertions(+), 148140 deletions(-) create mode 100644 lib/migrations/.gitignore create mode 100644 lib/migrations/0003_populate_radkfile.sql create mode 100644 lib/migrations/0004_populate_jouyou_kanji.sql delete mode 100644 lib/migrations/data/jisho/grade1.json delete mode 100644 lib/migrations/data/jisho/grade2.json delete mode 100644 lib/migrations/data/jisho/grade3.json delete mode 100644 lib/migrations/data/jisho/grade4.json delete mode 100644 lib/migrations/data/jisho/grade5.json delete mode 100644 lib/migrations/data/jisho/grade6.json delete mode 100644 lib/migrations/data/jisho/grade7.json delete mode 100644 lib/migrations/test.py create mode 100644 lib/migrations/tools/update_0003.dart create mode 100644 lib/migrations/tools/update_0004.dart diff --git a/lib/migrations/.gitignore b/lib/migrations/.gitignore new file mode 100644 index 0000000..21b22dc --- /dev/null +++ b/lib/migrations/.gitignore @@ -0,0 +1,6 @@ +test.db +data/jisho +data/radkfile +data/kradfile +data/0002_radicals.json +!data/jouyou \ No newline at end of file diff --git a/lib/migrations/0001_initial.sql b/lib/migrations/0001_initial.sql index 9137ca5..d86a667 100644 --- a/lib/migrations/0001_initial.sql +++ b/lib/migrations/0001_initial.sql @@ -17,7 +17,7 @@ CREATE TABLE Kanji_Radical ( ); CREATE TABLE Kanji_Radical_Forms ( - form TEXT NOT NULL PRIMARY KEY, + form CHAR(1) NOT NULL PRIMARY KEY, radical CHAR(1) NOT NULL, FOREIGN KEY(radical) REFERENCES Kanji_Radical(symbol) ); @@ -31,23 +31,25 @@ CREATE TABLE Kanji_Onyomi ( ); CREATE TABLE Kanji_Part ( - part TEXT NOT NULL PRIMARY KEY + part CHAR(1) NOT NULL PRIMARY KEY + -- FOREIGN KEY(part) REFERENCES Kanji_Radical(symbol) ); CREATE TABLE Kanji_Result ( kanji CHAR(1) PRIMARY KEY, - taughtIn INTEGER, - jlptLevel INTEGER, + taughtIn INTEGER CHECK (taughtIn BETWEEN 1 AND 7), + jlptLevel INTEGER CHECK (jlptLevel BETWEEN 1 AND 5), newspaperFrequencyRank INTEGER, strokeCount INTEGER NOT NULL, meaning INTEGER NOT NULL, radical CHAR(1) NOT NULL, + isJouyou BOOLEAN NOT NULL DEFAULT false, FOREIGN KEY (radical) REFERENCES Kanji_Radical(symbol) ); CREATE TABLE Kanji_ResultKunyomiExample_XRef ( exampleID INTEGER NOT NULL, - kanji TEXT NOT NULL, + kanji CHAR(1) NOT NULL, FOREIGN KEY(exampleID) REFERENCES Kanji_YomiExample(exampleID), FOREIGN KEY(kanji) REFERENCES Kanji_Result(kanji), PRIMARY KEY(exampleID, kanji) @@ -55,7 +57,7 @@ CREATE TABLE Kanji_ResultKunyomiExample_XRef ( CREATE TABLE Kanji_ResultOnyomiExample_XRef ( exampleID INTEGER NOT NULL, - kanji TEXT NOT NULL, + kanji CHAR(1) NOT NULL, FOREIGN KEY(exampleID) REFERENCES Kanji_YomiExample(exampleID), FOREIGN KEY(kanji) REFERENCES Kanji_Result(kanji), PRIMARY KEY(exampleID, kanji) @@ -63,7 +65,7 @@ CREATE TABLE Kanji_ResultOnyomiExample_XRef ( CREATE TABLE Kanji_ResultKunyomi_XRef ( yomi TEXT NOT NULL, - kanji TEXT NOT NULL, + kanji CHAR(1) NOT NULL, FOREIGN KEY(yomi) REFERENCES Kanji_Kunyomi(yomi), FOREIGN KEY(kanji) REFERENCES Kanji_Result(kanji), PRIMARY KEY(yomi, kanji) @@ -71,20 +73,31 @@ CREATE TABLE Kanji_ResultKunyomi_XRef ( CREATE TABLE Kanji_ResultOnyomi_XRef ( yomi TEXT NOT NULL, - kanji TEXT NOT NULL, + kanji CHAR(1) NOT NULL, FOREIGN KEY(yomi) REFERENCES Kanji_Onyomi(yomi), FOREIGN KEY(kanji) REFERENCES Kanji_Result(kanji), PRIMARY KEY(yomi, kanji) ); CREATE TABLE Kanji_ResultPart_XRef ( - part TEXT NOT NULL, - kanji TEXT NOT NULL, + part CHAR(1) NOT NULL, + kanji CHAR(1) NOT NULL, FOREIGN KEY(part) REFERENCES Kanji_Part(part), FOREIGN KEY(kanji) REFERENCES Kanji_Result(kanji), PRIMARY KEY(part, kanji) ); +-- RADKFILE + +CREATE TABLE RADKFILE ( + kanji CHAR(1) NOT NULL, + radical CHAR(1) NOT NULL, + FOREIGN KEY(radical) REFERENCES Kanji_Radical(symbol) +); + +CREATE INDEX RADK ON RADKFILE (radical); +CREATE INDEX KRAD ON RADKFILE (kanji); + -- Example Sentence CREATE TABLE ExampleSentence_Result ( diff --git a/lib/migrations/0002_populate_radicals.sql b/lib/migrations/0002_populate_radicals.sql index 3f22fd5..20d4cef 100644 --- a/lib/migrations/0002_populate_radicals.sql +++ b/lib/migrations/0002_populate_radicals.sql @@ -1,253 +1,254 @@ -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (1, '一', 1, 'one'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (2, '|', 1, 'line'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (3, '丶', 1, 'dot'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (4, 'ノ', 1, 'slash'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (5, '乙', 1, 'second'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (6, '亅', 1, 'hook'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (7, '二', 2, 'two'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (8, '亠', 2, 'lid'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (9, '人', 2, 'man, human'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (10, '⺅', 2, 'man, human', '化'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (11, '𠆢', 2, 'man, human', '个'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (12, '儿', 2, 'legs'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (13, '入', 2, 'enter'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (14, 'ハ', 2, 'eight'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (15, '丷', 2, 'eight', '并'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (16, '冂', 2, 'open country'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (17, '冖', 2, 'cover'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (18, '冫', 2, 'ice'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (19, '几', 2, 'table'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (20, '凵', 2, 'container, open mouth'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (21, '刀', 2, 'knife, sword'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (22, '⺉', 2, 'knife, sword', '刈'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (23, '力', 2, 'power, force'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (24, '勹', 2, 'wrap, embrace'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (25, '匕', 2, 'spoon'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (26, '匚', 2, 'box'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (27, '十', 2, 'ten, complete'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (28, '卜', 2, 'divination'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (29, '卩', 2, 'kneel'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (30, '厂', 2, 'cliff'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (31, '厶', 2, 'private'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (32, '又', 2, 'right hand'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (33, 'マ', 2, 'Katakana, Jisho search radical'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (34, '九', 2, 'second'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (35, 'ユ', 2, 'Katakana, Jisho search radical'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (36, '乃', 2, 'slash'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (360, '𠂉', 2, 'slash', '乞'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (37, '⻌', 3, 'walk', '込'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (38, '口', 3, 'mouth, opening'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (39, '囗', 3, 'enclosure'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (40, '土', 3, 'earth'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (41, '士', 3, 'scholar, bachelor'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (42, '夂', 3, 'go'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (43, '夕', 3, 'evening, sunset'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (44, '大', 3, 'big, very'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (45, '女', 3, 'woman, female'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (46, '子', 3, 'child, seed'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (47, '宀', 3, 'roof'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (48, '寸', 3, 'thumb, inch'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (49, '小', 3, 'small, insignificant'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (50, '⺌', 3, 'small, insignificant', '尚'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (51, '尢', 3, 'lame'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (52, '尸', 3, 'corpse'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (53, '屮', 3, 'sprout'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (54, '山', 3, 'mountain'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (55, '川', 3, 'river'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (56, '巛', 3, 'river'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (57, '工', 3, 'work'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (58, '已', 3, 'oneself'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (59, '巾', 3, 'turban, scarf'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (60, '干', 3, 'pestle'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (61, '幺', 3, 'short, tiny'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (62, '广', 3, 'house on cliff'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (63, '廴', 3, 'long stride'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (64, '廾', 3, 'two hands, twenty'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (65, '弋', 3, 'shoot, arrow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (66, '弓', 3, 'bow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (67, 'ヨ', 3, 'pig snout'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (68, '彑', 3, 'pig snout'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (69, '彡', 3, 'bristle, beard'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (70, '彳', 3, 'step'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (71, '⺖', 3, 'heart', '忙'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (72, '⺘', 3, 'hand', '扎'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (73, '⺡', 3, 'water', '汁'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (74, '⺨', 3, 'dog', '犯'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (75, '⺾', 3, 'grass', '艾'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (76, '⻏', 3, 'town (阝 right)', '邦'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (77, '⻖', 3, 'mound, dam (阝 left)', '阡'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (78, '也', 3, 'second'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (79, '亡', 3, 'lid'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (80, '及', 3, 'right hand'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (81, '久', 3, 'slash'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (82, '⺹', 4, 'old', '老'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (83, '心', 4, 'heart'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (84, '戈', 4, 'spear, halberd'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (85, '戸', 4, 'door, house'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (86, '手', 4, 'hand'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (87, '支', 4, 'branch'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (88, '攵', 4, 'rap'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (89, '文', 4, 'script, literature'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (90, '斗', 4, 'dipper'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (91, '斤', 4, 'axe'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (92, '方', 4, 'square'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (93, '无', 4, 'perish'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (94, '日', 4, 'sun, day'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (95, '曰', 4, 'say'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (96, '月', 4, 'moon, month'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (97, '木', 4, 'tree'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (98, '欠', 4, 'lack, yawn'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (99, '止', 4, 'stop'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (100, '歹', 4, 'death, decay'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (101, '殳', 4, 'weapon, lance'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (102, '比', 4, 'compare, compete'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (103, '毛', 4, 'fur, hair'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (104, '氏', 4, 'clan'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (105, '气', 4, 'steam, breath'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (106, '水', 4, 'water'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (107, '火', 4, 'fire'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (108, '⺣', 4, 'fire', '杰'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (109, '爪', 4, 'claw'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (110, '父', 4, 'father'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (111, '爻', 4, 'mix, twine, cross'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (112, '爿', 4, 'split wood'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (113, '片', 4, 'slice'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (114, '牛', 4, 'cow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (115, '犬', 4, 'dog'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (116, '⺭', 4, 'sign', '礼'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (117, '王', 4, 'jade (king)'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (118, '元', 4, 'legs'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (119, '井', 4, 'two'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (120, '勿', 4, 'wrap, embrace'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (121, '尤', 4, 'lame'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (122, '五', 4, 'two'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (123, '屯', 4, 'sprout'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (124, '巴', 4, 'oneself'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (125, '毋', 4, 'mother, do not'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (126, '玄', 5, 'dark, profound'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (127, '瓦', 5, 'tile'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (128, '甘', 5, 'sweet'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (129, '生', 5, 'life'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (130, '用', 5, 'use'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (131, '田', 5, 'field'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (132, '疋', 5, 'bolt of cloth'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (133, '疒', 5, 'sickness', '疔'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (134, '癶', 5, 'footsteps'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (135, '白', 5, 'white'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (136, '皮', 5, 'skin'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (137, '皿', 5, 'dish'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (138, '目', 5, 'eye'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (139, '矛', 5, 'spear'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (140, '矢', 5, 'arrow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (141, '石', 5, 'stone'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (142, '示', 5, 'sign'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (143, '禸', 5, 'track', '禹'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (144, '禾', 5, 'grain'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (145, '穴', 5, 'cave'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (146, '立', 5, 'stand, erect'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (147, '⻂', 5, 'clothes', '初'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (148, '世', 5, 'one'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (149, '巨', 5, 'work'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (150, '冊', 5, 'open country'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (151, '母', 5, 'mother, do not'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (152, '⺲', 5, 'net', '買'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (153, '牙', 5, 'fang'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (154, '瓜', 6, 'melon'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (155, '竹', 6, 'bamboo'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (156, '米', 6, 'rice'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (157, '糸', 6, 'silk'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (158, '缶', 6, 'jar'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (159, '羊', 6, 'sheep'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (160, '羽', 6, 'feather'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (161, '而', 6, 'beard'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (162, '耒', 6, 'plow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (163, '耳', 6, 'ear'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (164, '聿', 6, 'brush'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (165, '肉', 6, 'meat'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (166, '自', 6, 'self'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (167, '至', 6, 'arrive'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (168, '臼', 6, 'mortar'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (169, '舌', 6, 'tongue'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (170, '舟', 6, 'boat'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (171, '艮', 6, 'stopping'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (172, '色', 6, 'colour, prettiness'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (173, '虍', 6, 'tiger stripes'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (174, '虫', 6, 'insect'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (175, '血', 6, 'blood'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (176, '行', 6, 'go, do'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (177, '衣', 6, 'clothes'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (178, '西', 6, 'west'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (179, '臣', 7, 'minster, official'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (180, '見', 7, 'see'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (181, '角', 7, 'horn'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (182, '言', 7, 'speech'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (183, '谷', 7, 'valley'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (184, '豆', 7, 'bean'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (185, '豕', 7, 'pig'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (186, '豸', 7, 'cat, badger'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (187, '貝', 7, 'shell'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (188, '赤', 7, 'red, naked'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (189, '走', 7, 'run'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (190, '足', 7, 'foot'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (191, '身', 7, 'body'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (192, '車', 7, 'cart, car'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (193, '辛', 7, 'bitter'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (194, '辰', 7, 'morning'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (195, '酉', 7, 'wine, alcohol'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (196, '釆', 7, 'divide, distinguish, choose'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (197, '里', 7, 'village, mile'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (198, '舛', 7, 'opposite'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (199, '麦', 7, 'wheat'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (200, '金', 8, 'metal, gold'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (201, '長', 8, 'long, grow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (202, '門', 8, 'gate'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (203, '隶', 8, 'slave, capture'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (204, '隹', 8, 'small bird'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (205, '雨', 8, 'rain'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (206, '青', 8, 'blue'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (207, '非', 8, 'wrong'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (208, '奄', 8, 'big, very'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (209, '岡', 8, 'mountain'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (210, '免', 8, 'legs'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (211, '斉', 8, 'script, literature'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (212, '面', 9, 'face'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (213, '革', 9, 'leather, rawhide'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (214, '韭', 9, 'leek'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (215, '音', 9, 'sound'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (216, '頁', 9, 'leaf'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (217, '風', 9, 'wind'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (218, '飛', 9, 'fly'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (219, '食', 9, 'eat, food'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (220, '首', 9, 'head'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (221, '香', 9, 'fragrance'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (222, '品', 9, 'mouth, opening'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (223, '馬', 10, 'horse'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (224, '骨', 10, 'bone'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (225, '高', 10, 'tall'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (226, '髟', 10, 'long hair'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (227, '鬥', 10, 'fight'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (228, '鬯', 10, 'herbs, sacrificial wine'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (229, '鬲', 10, 'tripod, cauldron'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (230, '鬼', 10, 'ghost, demon'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (231, '竜', 10, 'stand, erect'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (232, '韋', 10, 'tanned leather'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (233, '魚', 11, 'fish'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (234, '鳥', 11, 'bird'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (235, '鹵', 11, 'salt'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (236, '鹿', 11, 'deer'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (237, '麻', 11, 'hemp, flax'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (238, '亀', 11, 'second'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) VALUES (239, '啇', 11, 'mouth, opening', '滴'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (240, '黄', 11, 'yellow'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (241, '黒', 11, 'black'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (242, '黍', 12, 'millet'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (243, '黹', 12, 'embroidery, needlework'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (244, '無', 12, 'fire'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (245, '歯', 12, 'stop'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (246, '黽', 13, 'frog, amphibian'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (247, '鼎', 13, 'tripod'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (248, '鼓', 13, 'drum'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (249, '鼠', 13, 'rat, mouse'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (250, '鼻', 14, 'nose'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (251, '齊', 14, 'even, uniformly'); -INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) VALUES (252, '龠', 17, 'flute'); +INSERT INTO Kanji_Radical(id, symbol, strokes, meaning, searchSymbol) VALUES + (1, '一', 1, 'one', NULL), + (2, '|', 1, 'line', NULL), + (3, '丶', 1, 'dot', NULL), + (4, 'ノ', 1, 'slash', NULL), + (5, '乙', 1, 'second', NULL), + (6, '亅', 1, 'hook', NULL), + (7, '二', 2, 'two', NULL), + (8, '亠', 2, 'lid', NULL), + (9, '人', 2, 'man, human', NULL), + (10, '⺅', 2, 'man, human', '化'), + (11, '𠆢', 2, 'man, human', '个'), + (12, '儿', 2, 'legs', NULL), + (13, '入', 2, 'enter', NULL), + (14, 'ハ', 2, 'eight', NULL), + (15, '丷', 2, 'eight', '并'), + (16, '冂', 2, 'open country', NULL), + (17, '冖', 2, 'cover', NULL), + (18, '冫', 2, 'ice', NULL), + (19, '几', 2, 'table', NULL), + (20, '凵', 2, 'container, open mouth', NULL), + (21, '刀', 2, 'knife, sword', NULL), + (22, '⺉', 2, 'knife, sword', '刈'), + (23, '力', 2, 'power, force', NULL), + (24, '勹', 2, 'wrap, embrace', NULL), + (25, '匕', 2, 'spoon', NULL), + (26, '匚', 2, 'box', NULL), + (27, '十', 2, 'ten, complete', NULL), + (28, '卜', 2, 'divination', NULL), + (29, '卩', 2, 'kneel', NULL), + (30, '厂', 2, 'cliff', NULL), + (31, '厶', 2, 'private', NULL), + (32, '又', 2, 'right hand', NULL), + (33, 'マ', 2, 'katakana, jisho search radical', NULL), + (34, '九', 2, 'second', NULL), + (35, 'ユ', 2, 'katakana, jisho search radical', NULL), + (36, '乃', 2, 'slash', NULL), + (360, '𠂉', 2, 'slash', '乞'), + (37, '⻌', 3, 'walk', '込'), + (38, '口', 3, 'mouth, opening', NULL), + (39, '囗', 3, 'enclosure', NULL), + (40, '土', 3, 'earth', NULL), + (41, '士', 3, 'scholar, bachelor', NULL), + (42, '夂', 3, 'go', NULL), + (43, '夕', 3, 'evening, sunset', NULL), + (44, '大', 3, 'big, very', NULL), + (45, '女', 3, 'woman, female', NULL), + (46, '子', 3, 'child, seed', NULL), + (47, '宀', 3, 'roof', NULL), + (48, '寸', 3, 'thumb, inch', NULL), + (49, '小', 3, 'small, insignificant', NULL), + (50, '⺌', 3, 'small, insignificant', '尚'), + (51, '尢', 3, 'lame', NULL), + (52, '尸', 3, 'corpse', NULL), + (53, '屮', 3, 'sprout', NULL), + (54, '山', 3, 'mountain', NULL), + (55, '川', 3, 'river', NULL), + (56, '巛', 3, 'river', NULL), + (57, '工', 3, 'work', NULL), + (58, '已', 3, 'oneself', NULL), + (59, '巾', 3, 'turban, scarf', NULL), + (60, '干', 3, 'pestle', NULL), + (61, '幺', 3, 'short, tiny', NULL), + (62, '广', 3, 'house on cliff', NULL), + (63, '廴', 3, 'long stride', NULL), + (64, '廾', 3, 'two hands, twenty', NULL), + (65, '弋', 3, 'shoot, arrow', NULL), + (66, '弓', 3, 'bow', NULL), + (67, 'ヨ', 3, 'pig snout', NULL), + (68, '彑', 3, 'pig snout', NULL), + (69, '彡', 3, 'bristle, beard', NULL), + (70, '彳', 3, 'step', NULL), + (71, '⺖', 3, 'heart', '忙'), + (72, '⺘', 3, 'hand', '扎'), + (73, '⺡', 3, 'water', '汁'), + (74, '⺨', 3, 'dog', '犯'), + (75, '⺾', 3, 'grass', '艾'), + (76, '⻏', 3, 'town (阝 right)', '邦'), + (77, '⻖', 3, 'mound, dam (阝 left)', '阡'), + (78, '也', 3, 'second', NULL), + (79, '亡', 3, 'lid', NULL), + (80, '及', 3, 'right hand', NULL), + (81, '久', 3, 'slash', NULL), + (82, '⺹', 4, 'old', '老'), + (83, '心', 4, 'heart', NULL), + (84, '戈', 4, 'spear, halberd', NULL), + (85, '戸', 4, 'door, house', NULL), + (86, '手', 4, 'hand', NULL), + (87, '支', 4, 'branch', NULL), + (88, '攵', 4, 'rap', NULL), + (89, '文', 4, 'script, literature', NULL), + (90, '斗', 4, 'dipper', NULL), + (91, '斤', 4, 'axe', NULL), + (92, '方', 4, 'square', NULL), + (93, '无', 4, 'perish', NULL), + (94, '日', 4, 'sun, day', NULL), + (95, '曰', 4, 'say', NULL), + (96, '月', 4, 'moon, month', NULL), + (97, '木', 4, 'tree', NULL), + (98, '欠', 4, 'lack, yawn', NULL), + (99, '止', 4, 'stop', NULL), + (100, '歹', 4, 'death, decay', NULL), + (101, '殳', 4, 'weapon, lance', NULL), + (102, '比', 4, 'compare, compete', NULL), + (103, '毛', 4, 'fur, hair', NULL), + (104, '氏', 4, 'clan', NULL), + (105, '气', 4, 'steam, breath', NULL), + (106, '水', 4, 'water', NULL), + (107, '火', 4, 'fire', NULL), + (108, '⺣', 4, 'fire', '杰'), + (109, '爪', 4, 'claw', NULL), + (110, '父', 4, 'father', NULL), + (111, '爻', 4, 'mix, twine, cross', NULL), + (112, '爿', 4, 'split wood', NULL), + (113, '片', 4, 'slice', NULL), + (114, '牛', 4, 'cow', NULL), + (115, '犬', 4, 'dog', NULL), + (116, '⺭', 4, 'sign', '礼'), + (117, '王', 4, 'jade (king)', NULL), + (118, '元', 4, 'legs', NULL), + (119, '井', 4, 'two', NULL), + (120, '勿', 4, 'wrap, embrace', NULL), + (121, '尤', 4, 'lame', NULL), + (122, '五', 4, 'two', NULL), + (123, '屯', 4, 'sprout', NULL), + (124, '巴', 4, 'oneself', NULL), + (125, '毋', 4, 'mother, do not', NULL), + (126, '玄', 5, 'dark, profound', NULL), + (127, '瓦', 5, 'tile', NULL), + (128, '甘', 5, 'sweet', NULL), + (129, '生', 5, 'life', NULL), + (130, '用', 5, 'use', NULL), + (131, '田', 5, 'field', NULL), + (132, '疋', 5, 'bolt of cloth', NULL), + (133, '疒', 5, 'sickness', '疔'), + (134, '癶', 5, 'footsteps', NULL), + (135, '白', 5, 'white', NULL), + (136, '皮', 5, 'skin', NULL), + (137, '皿', 5, 'dish', NULL), + (138, '目', 5, 'eye', NULL), + (139, '矛', 5, 'spear', NULL), + (140, '矢', 5, 'arrow', NULL), + (141, '石', 5, 'stone', NULL), + (142, '示', 5, 'sign', NULL), + (143, '禸', 5, 'track', '禹'), + (144, '禾', 5, 'grain', NULL), + (145, '穴', 5, 'cave', NULL), + (146, '立', 5, 'stand, erect', NULL), + (147, '⻂', 5, 'clothes', '初'), + (148, '世', 5, 'one', NULL), + (149, '巨', 5, 'work', NULL), + (150, '冊', 5, 'open country', NULL), + (151, '母', 5, 'mother, do not', NULL), + (152, '⺲', 5, 'net', '買'), + (153, '牙', 5, 'fang', NULL), + (154, '瓜', 6, 'melon', NULL), + (155, '竹', 6, 'bamboo', NULL), + (156, '米', 6, 'rice', NULL), + (157, '糸', 6, 'silk', NULL), + (158, '缶', 6, 'jar', NULL), + (159, '羊', 6, 'sheep', NULL), + (160, '羽', 6, 'feather', NULL), + (161, '而', 6, 'beard', NULL), + (162, '耒', 6, 'plow', NULL), + (163, '耳', 6, 'ear', NULL), + (164, '聿', 6, 'brush', NULL), + (165, '肉', 6, 'meat', NULL), + (166, '自', 6, 'self', NULL), + (167, '至', 6, 'arrive', NULL), + (168, '臼', 6, 'mortar', NULL), + (169, '舌', 6, 'tongue', NULL), + (170, '舟', 6, 'boat', NULL), + (171, '艮', 6, 'stopping', NULL), + (172, '色', 6, 'colour, prettiness', NULL), + (173, '虍', 6, 'tiger stripes', NULL), + (174, '虫', 6, 'insect', NULL), + (175, '血', 6, 'blood', NULL), + (176, '行', 6, 'go, do', NULL), + (177, '衣', 6, 'clothes', NULL), + (178, '西', 6, 'west', NULL), + (179, '臣', 7, 'minster, official', NULL), + (180, '見', 7, 'see', NULL), + (181, '角', 7, 'horn', NULL), + (182, '言', 7, 'speech', NULL), + (183, '谷', 7, 'valley', NULL), + (184, '豆', 7, 'bean', NULL), + (185, '豕', 7, 'pig', NULL), + (186, '豸', 7, 'cat, badger', NULL), + (187, '貝', 7, 'shell', NULL), + (188, '赤', 7, 'red, naked', NULL), + (189, '走', 7, 'run', NULL), + (190, '足', 7, 'foot', NULL), + (191, '身', 7, 'body', NULL), + (192, '車', 7, 'cart, car', NULL), + (193, '辛', 7, 'bitter', NULL), + (194, '辰', 7, 'morning', NULL), + (195, '酉', 7, 'wine, alcohol', NULL), + (196, '釆', 7, 'divide, distinguish, choose', NULL), + (197, '里', 7, 'village, mile', NULL), + (198, '舛', 7, 'opposite', NULL), + (199, '麦', 7, 'wheat', NULL), + (200, '金', 8, 'metal, gold', NULL), + (201, '長', 8, 'long, grow', NULL), + (202, '門', 8, 'gate', NULL), + (203, '隶', 8, 'slave, capture', NULL), + (204, '隹', 8, 'small bird', NULL), + (205, '雨', 8, 'rain', NULL), + (206, '青', 8, 'blue', NULL), + (207, '非', 8, 'wrong', NULL), + (208, '奄', 8, 'big, very', NULL), + (209, '岡', 8, 'mountain', NULL), + (210, '免', 8, 'legs', NULL), + (211, '斉', 8, 'script, literature', NULL), + (212, '面', 9, 'face', NULL), + (213, '革', 9, 'leather, rawhide', NULL), + (214, '韭', 9, 'leek', NULL), + (215, '音', 9, 'sound', NULL), + (216, '頁', 9, 'leaf', NULL), + (217, '風', 9, 'wind', NULL), + (218, '飛', 9, 'fly', NULL), + (219, '食', 9, 'eat, food', NULL), + (220, '首', 9, 'head', NULL), + (221, '香', 9, 'fragrance', NULL), + (222, '品', 9, 'mouth, opening', NULL), + (223, '馬', 10, 'horse', NULL), + (224, '骨', 10, 'bone', NULL), + (225, '高', 10, 'tall', NULL), + (226, '髟', 10, 'long hair', NULL), + (227, '鬥', 10, 'fight', NULL), + (228, '鬯', 10, 'herbs, sacrificial wine', NULL), + (229, '鬲', 10, 'tripod, cauldron', NULL), + (230, '鬼', 10, 'ghost, demon', NULL), + (231, '竜', 10, 'stand, erect', NULL), + (232, '韋', 10, 'tanned leather', NULL), + (233, '魚', 11, 'fish', NULL), + (234, '鳥', 11, 'bird', NULL), + (235, '鹵', 11, 'salt', NULL), + (236, '鹿', 11, 'deer', NULL), + (237, '麻', 11, 'hemp, flax', NULL), + (238, '亀', 11, 'second', NULL), + (239, '啇', 11, 'mouth, opening', '滴'), + (240, '黄', 11, 'yellow', NULL), + (241, '黒', 11, 'black', NULL), + (242, '黍', 12, 'millet', NULL), + (243, '黹', 12, 'embroidery, needlework', NULL), + (244, '無', 12, 'fire', NULL), + (245, '歯', 12, 'stop', NULL), + (246, '黽', 13, 'frog, amphibian', NULL), + (247, '鼎', 13, 'tripod', NULL), + (248, '鼓', 13, 'drum', NULL), + (249, '鼠', 13, 'rat, mouse', NULL), + (250, '鼻', 14, 'nose', NULL), + (251, '齊', 14, 'even, uniformly', NULL), + (252, '龠', 17, 'flute', NULL); diff --git a/lib/migrations/0003_populate_radkfile.sql b/lib/migrations/0003_populate_radkfile.sql new file mode 100644 index 0000000..a8451f8 --- /dev/null +++ b/lib/migrations/0003_populate_radkfile.sql @@ -0,0 +1,24557 @@ +INSERT INTO RADKFILE(radical, kanji) VALUES + ('一', '亜'), + ('一', '唖'), + ('一', '阿'), + ('一', '姶'), + ('一', '悪'), + ('一', '芦'), + ('一', '或'), + ('一', '夷'), + ('一', '椅'), + ('一', '畏'), + ('一', '異'), + ('一', '遺'), + ('一', '井'), + ('一', '郁'), + ('一', '一'), + ('一', '芋'), + ('一', '右'), + ('一', '窺'), + ('一', '丑'), + ('一', '云'), + ('一', '雲'), + ('一', '盈'), + ('一', '益'), + ('一', '榎'), + ('一', '円'), + ('一', '延'), + ('一', '援'), + ('一', '塩'), + ('一', '汚'), + ('一', '央'), + ('一', '岡'), + ('一', '下'), + ('一', '可'), + ('一', '夏'), + ('一', '寡'), + ('一', '河'), + ('一', '珂'), + ('一', '苛'), + ('一', '荷'), + ('一', '華'), + ('一', '嘩'), + ('一', '画'), + ('一', '悔'), + ('一', '開'), + ('一', '碍'), + ('一', '垣'), + ('一', '劃'), + ('一', '隔'), + ('一', '岳'), + ('一', '橿'), + ('一', '且'), + ('一', '樺'), + ('一', '釜'), + ('一', '栢'), + ('一', '萱'), + ('一', '瓦'), + ('一', '乾'), + ('一', '寒'), + ('一', '干'), + ('一', '桓'), + ('一', '漢'), + ('一', '環'), + ('一', '看'), + ('一', '緩'), + ('一', '還'), + ('一', '基'), + ('一', '奇'), + ('一', '寄'), + ('一', '希'), + ('一', '棄'), + ('一', '稀'), + ('一', '貴'), + ('一', '騎'), + ('一', '儀'), + ('一', '宜'), + ('一', '犠'), + ('一', '義'), + ('一', '蟻'), + ('一', '誼'), + ('一', '議'), + ('一', '丘'), + ('一', '朽'), + ('一', '求'), + ('一', '虚'), + ('一', '供'), + ('一', '共'), + ('一', '彊'), + ('一', '興'), + ('一', '尭'), + ('一', '業'), + ('一', '極'), + ('一', '桐'), + ('一', '倶'), + ('一', '具'), + ('一', '勲'), + ('一', '君'), + ('一', '薫'), + ('一', '群'), + ('一', '郡'), + ('一', '啓'), + ('一', '恵'), + ('一', '慧'), + ('一', '兼'), + ('一', '券'), + ('一', '喧'), + ('一', '圏'), + ('一', '拳'), + ('一', '捲'), + ('一', '肩'), + ('一', '遣'), + ('一', '乎'), + ('一', '戸'), + ('一', '雇'), + ('一', '顧'), + ('一', '五'), + ('一', '互'), + ('一', '伍'), + ('一', '吾'), + ('一', '悟'), + ('一', '梧'), + ('一', '碁'), + ('一', '語'), + ('一', '乞'), + ('一', '光'), + ('一', '后'), + ('一', '宏'), + ('一', '巧'), + ('一', '恒'), + ('一', '晃'), + ('一', '更'), + ('一', '梗'), + ('一', '構'), + ('一', '洪'), + ('一', '溝'), + ('一', '硬'), + ('一', '紘'), + ('一', '綱'), + ('一', '肱'), + ('一', '講'), + ('一', '購'), + ('一', '号'), + ('一', '合'), + ('一', '今'), + ('一', '佐'), + ('一', '左'), + ('一', '査'), + ('一', '再'), + ('一', '最'), + ('一', '塞'), + ('一', '妻'), + ('一', '才'), + ('一', '犀'), + ('一', '在'), + ('一', '材'), + ('一', '財'), + ('一', '肴'), + ('一', '崎'), + ('一', '埼'), + ('一', '碕'), + ('一', '柵'), + ('一', '冊'), + ('一', '三'), + ('一', '参'), + ('一', '惨'), + ('一', '珊'), + ('一', '蚕'), + ('一', '伺'), + ('一', '使'), + ('一', '司'), + ('一', '嗣'), + ('一', '屍'), + ('一', '師'), + ('一', '施'), + ('一', '死'), + ('一', '至'), + ('一', '詞'), + ('一', '事'), + ('一', '慈'), + ('一', '滋'), + ('一', '爾'), + ('一', '璽'), + ('一', '磁'), + ('一', '雫'), + ('一', '写'), + ('一', '遮'), + ('一', '若'), + ('一', '惹'), + ('一', '寿'), + ('一', '重'), + ('一', '春'), + ('一', '所'), + ('一', '序'), + ('一', '傷'), + ('一', '症'), + ('一', '称'), + ('一', '証'), + ('一', '象'), + ('一', '鉦'), + ('一', '上'), + ('一', '丈'), + ('一', '丞'), + ('一', '乗'), + ('一', '剰'), + ('一', '擾'), + ('一', '杖'), + ('一', '畳'), + ('一', '蒸'), + ('一', '飾'), + ('一', '慎'), + ('一', '晋'), + ('一', '榛'), + ('一', '真'), + ('一', '秦'), + ('一', '甚'), + ('一', '笥'), + ('一', '垂'), + ('一', '睡'), + ('一', '衰'), + ('一', '錘'), + ('一', '随'), + ('一', '髄'), + ('一', '世'), + ('一', '征'), + ('一', '政'), + ('一', '整'), + ('一', '正'), + ('一', '席'), + ('一', '惜'), + ('一', '昔'), + ('一', '籍'), + ('一', '宣'), + ('一', '扇'), + ('一', '煎'), + ('一', '煽'), + ('一', '箭'), + ('一', '前'), + ('一', '岨'), + ('一', '措'), + ('一', '狙'), + ('一', '疎'), + ('一', '祖'), + ('一', '租'), + ('一', '粗'), + ('一', '組'), + ('一', '阻'), + ('一', '喪'), + ('一', '奏'), + ('一', '爽'), + ('一', '曹'), + ('一', '槽'), + ('一', '漕'), + ('一', '争'), + ('一', '糟'), + ('一', '葬'), + ('一', '送'), + ('一', '遭'), + ('一', '像'), + ('一', '束'), + ('一', '速'), + ('一', '袖'), + ('一', '其'), + ('一', '揃'), + ('一', '存'), + ('一', '唾'), + ('一', '堕'), + ('一', '惰'), + ('一', '楕'), + ('一', '体'), + ('一', '帯'), + ('一', '戴'), + ('一', '泰'), + ('一', '宅'), + ('一', '托'), + ('一', '託'), + ('一', '諾'), + ('一', '但'), + ('一', '巽'), + ('一', '丹'), + ('一', '嘆'), + ('一', '坦'), + ('一', '担'), + ('一', '旦'), + ('一', '歎'), + ('一', '湛'), + ('一', '胆'), + ('一', '壇'), + ('一', '断'), + ('一', '暖'), + ('一', '檀'), + ('一', '段'), + ('一', '値'), + ('一', '置'), + ('一', '窒'), + ('一', '昼'), + ('一', '苧'), + ('一', '貯'), + ('一', '丁'), + ('一', '庁'), + ('一', '暢'), + ('一', '町'), + ('一', '腸'), + ('一', '頂'), + ('一', '勅'), + ('一', '直'), + ('一', '朕'), + ('一', '鎮'), + ('一', '陳'), + ('一', '槻'), + ('一', '椿'), + ('一', '壷'), + ('一', '汀'), + ('一', '訂'), + ('一', '釘'), + ('一', '鼎'), + ('一', '迭'), + ('一', '典'), + ('一', '天'), + ('一', '展'), + ('一', '殿'), + ('一', '澱'), + ('一', '砺'), + ('一', '度'), + ('一', '凍'), + ('一', '唐'), + ('一', '塘'), + ('一', '東'), + ('一', '棟'), + ('一', '湯'), + ('一', '灯'), + ('一', '董'), + ('一', '蕩'), + ('一', '藤'), + ('一', '謄'), + ('一', '騰'), + ('一', '働'), + ('一', '動'), + ('一', '同'), + ('一', '洞'), + ('一', '胴'), + ('一', '銅'), + ('一', '峠'), + ('一', '得'), + ('一', '凸'), + ('一', '乍'), + ('一', '弐'), + ('一', '廿'), + ('一', '禰'), + ('一', '寧'), + ('一', '年'), + ('一', '念'), + ('一', '捻'), + ('一', '乃'), + ('一', '嚢'), + ('一', '濃'), + ('一', '膿'), + ('一', '農'), + ('一', '覗'), + ('一', '廃'), + ('一', '拝'), + ('一', '杯'), + ('一', '盃'), + ('一', '曝'), + ('一', '爆'), + ('一', '函'), + ('一', '肇'), + ('一', '鉢'), + ('一', '髪'), + ('一', '挽'), + ('一', '否'), + ('一', '扉'), + ('一', '畢'), + ('一', '逼'), + ('一', '紐'), + ('一', '百'), + ('一', '評'), + ('一', '病'), + ('一', '蛭'), + ('一', '浜'), + ('一', '賓'), + ('一', '不'), + ('一', '布'), + ('一', '怖'), + ('一', '普'), + ('一', '譜'), + ('一', '撫'), + ('一', '舞'), + ('一', '蕪'), + ('一', '副'), + ('一', '復'), + ('一', '幅'), + ('一', '福'), + ('一', '腹'), + ('一', '淵'), + ('一', '糞'), + ('一', '丙'), + ('一', '併'), + ('一', '兵'), + ('一', '塀'), + ('一', '柄'), + ('一', '並'), + ('一', '閉'), + ('一', '偏'), + ('一', '篇'), + ('一', '編'), + ('一', '遍'), + ('一', '便'), + ('一', '鞭'), + ('一', '俸'), + ('一', '奉'), + ('一', '峰'), + ('一', '峯'), + ('一', '捧'), + ('一', '縫'), + ('一', '蓬'), + ('一', '蜂'), + ('一', '豊'), + ('一', '鋒'), + ('一', '房'), + ('一', '暴'), + ('一', '棒'), + ('一', '奔'), + ('一', '本'), + ('一', '鮪'), + ('一', '柾'), + ('一', '抹'), + ('一', '末'), + ('一', '万'), + ('一', '満'), + ('一', '湊'), + ('一', '蓑'), + ('一', '無'), + ('一', '命'), + ('一', '免'), + ('一', '餅'), + ('一', '戻'), + ('一', '矢'), + ('一', '鑓'), + ('一', '佑'), + ('一', '優'), + ('一', '友'), + ('一', '宥'), + ('一', '憂'), + ('一', '有'), + ('一', '祐'), + ('一', '郵'), + ('一', '雄'), + ('一', '予'), + ('一', '余'), + ('一', '与'), + ('一', '誉'), + ('一', '預'), + ('一', '揚'), + ('一', '楊'), + ('一', '陽'), + ('一', '翼'), + ('一', '欄'), + ('一', '蘭'), + ('一', '吏'), + ('一', '侶'), + ('一', '了'), + ('一', '両'), + ('一', '糧'), + ('一', '量'), + ('一', '倫'), + ('一', '臨'), + ('一', '輪'), + ('一', '涙'), + ('一', '令'), + ('一', '伶'), + ('一', '冷'), + ('一', '怜'), + ('一', '玲'), + ('一', '苓'), + ('一', '鈴'), + ('一', '零'), + ('一', '霊'), + ('一', '麗'), + ('一', '煉'), + ('一', '錬'), + ('一', '炉'), + ('一', '婁'), + ('一', '蝋'), + ('一', '論'), + ('一', '歪'), + ('一', '賄'), + ('一', '亙'), + ('一', '亘'), + ('一', '弌'), + ('一', '丐'), + ('一', '丕'), + ('一', '亊'), + ('一', '亞'), + ('一', '亳'), + ('一', '亶'), + ('一', '佰'), + ('一', '侑'), + ('一', '來'), + ('一', '倚'), + ('一', '僵'), + ('一', '兀'), + ('一', '兩'), + ('一', '册'), + ('一', '冉'), + ('一', '冓'), + ('一', '冱'), + ('一', '剞'), + ('一', '剪'), + ('一', '匐'), + ('一', '卅'), + ('一', '卍'), + ('一', '厦'), + ('一', '叮'), + ('一', '咀'), + ('一', '哄'), + ('一', '哥'), + ('一', '唏'), + ('一', '唔'), + ('一', '唳'), + ('一', '喘'), + ('一', '嗄'), + ('一', '嘸'), + ('一', '嚥'), + ('一', '囂'), + ('一', '囿'), + ('一', '圄'), + ('一', '圜'), + ('一', '坏'), + ('一', '堊'), + ('一', '堙'), + ('一', '墟'), + ('一', '壙'), + ('一', '壤'), + ('一', '壺'), + ('一', '壼'), + ('一', '壽'), + ('一', '竒'), + ('一', '妍'), + ('一', '娉'), + ('一', '婀'), + ('一', '媾'), + ('一', '嫣'), + ('一', '孃'), + ('一', '孳'), + ('一', '孺'), + ('一', '寤'), + ('一', '實'), + ('一', '寰'), + ('一', '專'), + ('一', '尹'), + ('一', '妛'), + ('一', '峺'), + ('一', '崋'), + ('一', '嵜'), + ('一', '崙'), + ('一', '崘'), + ('一', '巵'), + ('一', '帶'), + ('一', '廈'), + ('一', '廡'), + ('一', '廳'), + ('一', '弖'), + ('一', '彁'), + ('一', '彌'), + ('一', '徑'), + ('一', '忸'), + ('一', '恠'), + ('一', '怎'), + ('一', '恆'), + ('一', '恫'), + ('一', '惡'), + ('一', '惠'), + ('一', '愴'), + ('一', '慯'), + ('一', '慝'), + ('一', '憙'), + ('一', '憮'), + ('一', '懣'), + ('一', '戛'), + ('一', '戞'), + ('一', '扁'), + ('一', '拔'), + ('一', '抔'), + ('一', '拱'), + ('一', '拵'), + ('一', '掎'), + ('一', '捩'), + ('一', '搴'), + ('一', '搆'), + ('一', '搶'), + ('一', '舉'), + ('一', '攀'), + ('一', '數'), + ('一', '昊'), + ('一', '昜'), + ('一', '晉'), + ('一', '晞'), + ('一', '晝'), + ('一', '晤'), + ('一', '暄'), + ('一', '暘'), + ('一', '曁'), + ('一', '曄'), + ('一', '曩'), + ('一', '朞'), + ('一', '朮'), + ('一', '朿'), + ('一', '杤'), + ('一', '枦'), + ('一', '柯'), + ('一', '桎'), + ('一', '栫'), + ('一', '梺'), + ('一', '椏'), + ('一', '棊'), + ('一', '棗'), + ('一', '椪'), + ('一', '椣'), + ('一', '棆'), + ('一', '寨'), + ('一', '樓'), + ('一', '橢'), + ('一', '櫃'), + ('一', '檸'), + ('一', '欷'), + ('一', '欹'), + ('一', '歟'), + ('一', '殤'), + ('一', '沍'), + ('一', '浤'), + ('一', '涵'), + ('一', '淆'), + ('一', '淒'), + ('一', '淪'), + ('一', '湲'), + ('一', '湎'), + ('一', '滿'), + ('一', '滄'), + ('一', '滬'), + ('一', '滯'), + ('一', '澑'), + ('一', '濔'), + ('一', '瀑'), + ('一', '瀰'), + ('一', '炳'), + ('一', '烝'), + ('一', '焉'), + ('一', '煖'), + ('一', '爰'), + ('一', '牾'), + ('一', '犲'), + ('一', '狃'), + ('一', '猗'), + ('一', '獸'), + ('一', '璢'), + ('一', '珸'), + ('一', '瑾'), + ('一', '瓸'), + ('一', '甦'), + ('一', '甼'), + ('一', '畫'), + ('一', '畸'), + ('一', '疆'), + ('一', '畴'), + ('一', '疔'), + ('一', '疸'), + ('一', '痞'), + ('一', '痾'), + ('一', '瘍'), + ('一', '瘻'), + ('一', '盻'), + ('一', '眄'), + ('一', '瞞'), + ('一', '瞶'), + ('一', '矗'), + ('一', '祠'), + ('一', '祗'), + ('一', '祓'), + ('一', '禪'), + ('一', '禮'), + ('一', '禳'), + ('一', '秉'), + ('一', '秡'), + ('一', '秣'), + ('一', '稱'), + ('一', '穰'), + ('一', '窘'), + ('一', '窶'), + ('一', '竡'), + ('一', '篝'), + ('一', '簑'), + ('一', '簔'), + ('一', '篳'), + ('一', '簍'), + ('一', '篶'), + ('一', '簣'), + ('一', '籥'), + ('一', '粐'), + ('一', '粤'), + ('一', '粡'), + ('一', '粨'), + ('一', '鬻'), + ('一', '絨'), + ('一', '綺'), + ('一', '綮'), + ('一', '綸'), + ('一', '綟'), + ('一', '緻'), + ('一', '縣'), + ('一', '縉'), + ('一', '縷'), + ('一', '繖'), + ('一', '罔'), + ('一', '罘'), + ('一', '翦'), + ('一', '翩'), + ('一', '聘'), + ('一', '胚'), + ('一', '隋'), + ('一', '腆'), + ('一', '膸'), + ('一', '與'), + ('一', '艚'), + ('一', '舮'), + ('一', '苒'), + ('一', '苴'), + ('一', '莓'), + ('一', '茉'), + ('一', '荐'), + ('一', '莖'), + ('一', '茣'), + ('一', '萓'), + ('一', '菫'), + ('一', '蒹'), + ('一', '蓆'), + ('一', '蓴'), + ('一', '蔗'), + ('一', '蔕'), + ('一', '蕘'), + ('一', '薑'), + ('一', '藪'), + ('一', '藉'), + ('一', '乕'), + ('一', '號'), + ('一', '虱'), + ('一', '蚩'), + ('一', '蚌'), + ('一', '蛬'), + ('一', '蝨'), + ('一', '蝙'), + ('一', '蝪'), + ('一', '螻'), + ('一', '蠹'), + ('一', '衄'), + ('一', '衙'), + ('一', '裲'), + ('一', '褄'), + ('一', '褊'), + ('一', '襄'), + ('一', '褸'), + ('一', '覯'), + ('一', '訶'), + ('一', '諞'), + ('一', '謌'), + ('一', '謇'), + ('一', '諡'), + ('一', '譁'), + ('一', '譴'), + ('一', '讌'), + ('一', '讓'), + ('一', '豺'), + ('一', '賚'), + ('一', '賽'), + ('一', '跚'), + ('一', '跋'), + ('一', '蹇'), + ('一', '蹠'), + ('一', '蹣'), + ('一', '蹕'), + ('一', '軆'), + ('一', '輊'), + ('一', '輌'), + ('一', '輳'), + ('一', '辷'), + ('一', '邇'), + ('一', '逕'), + ('一', '遘'), + ('一', '隨'), + ('一', '扈'), + ('一', '酊'), + ('一', '醋'), + ('一', '醢'), + ('一', '醴'), + ('一', '釀'), + ('一', '鈕'), + ('一', '錏'), + ('一', '鎭'), + ('一', '鏤'), + ('一', '鈩'), + ('一', '鑰'), + ('一', '閂'), + ('一', '閧'), + ('一', '陏'), + ('一', '陲'), + ('一', '霰'), + ('一', '饉'), + ('一', '饋'), + ('一', '騁'), + ('一', '騙'), + ('一', '騫'), + ('一', '髏'), + ('一', '髓'), + ('一', '髯'), + ('一', '鬟'), + ('一', '鯑'), + ('一', '鵲'), + ('一', '鷓'), + ('一', '齬'), + ('一', '龠'), + ('一', '堯'), + ('一', '槇'), + ('|', '亜'), + ('|', '唖'), + ('|', '逢'), + ('|', '悪'), + ('|', '以'), + ('|', '伊'), + ('|', '井'), + ('|', '稲'), + ('|', '印'), + ('|', '引'), + ('|', '鵜'), + ('|', '丑'), + ('|', '渦'), + ('|', '円'), + ('|', '焔'), + ('|', '艶'), + ('|', '押'), + ('|', '横'), + ('|', '沖'), + ('|', '下'), + ('|', '果'), + ('|', '華'), + ('|', '嘩'), + ('|', '柿'), + ('|', '角'), + ('|', '樺'), + ('|', '鴨'), + ('|', '患'), + ('|', '諌'), + ('|', '陥'), + ('|', '貴'), + ('|', '糾'), + ('|', '旧'), + ('|', '供'), + ('|', '共'), + ('|', '叫'), + ('|', '業'), + ('|', '曲'), + ('|', '巾'), + ('|', '串'), + ('|', '屈'), + ('|', '掘'), + ('|', '窟'), + ('|', '勲'), + ('|', '薫'), + ('|', '慧'), + ('|', '継'), + ('|', '兼'), + ('|', '嫌'), + ('|', '研'), + ('|', '謙'), + ('|', '遣'), + ('|', '碁'), + ('|', '候'), + ('|', '洪'), + ('|', '溝'), + ('|', '甲'), + ('|', '耕'), + ('|', '購'), + ('|', '坤'), + ('|', '詐'), + ('|', '坐'), + ('|', '座'), + ('|', '挫'), + ('|', '再'), + ('|', '妻'), + ('|', '済'), + ('|', '犀'), + ('|', '斎'), + ('|', '剤'), + ('|', '在'), + ('|', '榊'), + ('|', '崎'), + ('|', '埼'), + ('|', '碕'), + ('|', '作'), + ('|', '咋'), + ('|', '搾'), + ('|', '昨'), + ('|', '柵'), + ('|', '窄'), + ('|', '策'), + ('|', '冊'), + ('|', '撒'), + ('|', '珊'), + ('|', '刺'), + ('|', '嗣'), + ('|', '師'), + ('|', '獅'), + ('|', '児'), + ('|', '爾'), + ('|', '璽'), + ('|', '軸'), + ('|', '雫'), + ('|', '湿'), + ('|', '篠'), + ('|', '朱'), + ('|', '殊'), + ('|', '珠'), + ('|', '種'), + ('|', '腫'), + ('|', '収'), + ('|', '州'), + ('|', '修'), + ('|', '洲'), + ('|', '繍'), + ('|', '酬'), + ('|', '重'), + ('|', '粛'), + ('|', '出'), + ('|', '衝'), + ('|', '鍾'), + ('|', '乗'), + ('|', '剰'), + ('|', '伸'), + ('|', '申'), + ('|', '神'), + ('|', '紳'), + ('|', '酢'), + ('|', '垂'), + ('|', '帥'), + ('|', '睡'), + ('|', '錘'), + ('|', '菅'), + ('|', '世'), + ('|', '瀬'), + ('|', '整'), + ('|', '斉'), + ('|', '惜'), + ('|', '昔'), + ('|', '籍'), + ('|', '拙'), + ('|', '撰'), + ('|', '選'), + ('|', '措'), + ('|', '疎'), + ('|', '喪'), + ('|', '捜'), + ('|', '挿'), + ('|', '曹'), + ('|', '槽'), + ('|', '漕'), + ('|', '糟'), + ('|', '遭'), + ('|', '束'), + ('|', '速'), + ('|', '袖'), + ('|', '存'), + ('|', '唾'), + ('|', '帯'), + ('|', '戴'), + ('|', '泰'), + ('|', '凧'), + ('|', '巽'), + ('|', '湛'), + ('|', '断'), + ('|', '段'), + ('|', '値'), + ('|', '置'), + ('|', '中'), + ('|', '仲'), + ('|', '宙'), + ('|', '忠'), + ('|', '抽'), + ('|', '弔'), + ('|', '暢'), + ('|', '勅'), + ('|', '直'), + ('|', '陳'), + ('|', '槌'), + ('|', '追'), + ('|', '鎚'), + ('|', '壷'), + ('|', '紬'), + ('|', '剃'), + ('|', '弟'), + ('|', '悌'), + ('|', '梯'), + ('|', '逓'), + ('|', '鼎'), + ('|', '笛'), + ('|', '迭'), + ('|', '典'), + ('|', '展'), + ('|', '殿'), + ('|', '澱'), + ('|', '兎'), + ('|', '菟'), + ('|', '凍'), + ('|', '唐'), + ('|', '塘'), + ('|', '東'), + ('|', '棟'), + ('|', '湯'), + ('|', '董'), + ('|', '蕩'), + ('|', '藤'), + ('|', '謄'), + ('|', '働'), + ('|', '動'), + ('|', '峠'), + ('|', '橡'), + ('|', '凸'), + ('|', '届'), + ('|', '乍'), + ('|', '廿'), + ('|', '禰'), + ('|', '念'), + ('|', '捻'), + ('|', '乃'), + ('|', '嚢'), + ('|', '濃'), + ('|', '膿'), + ('|', '農'), + ('|', '拝'), + ('|', '杯'), + ('|', '矧'), + ('|', '曝'), + ('|', '爆'), + ('|', '伴'), + ('|', '判'), + ('|', '半'), + ('|', '畔'), + ('|', '挽'), + ('|', '否'), + ('|', '費'), + ('|', '眉'), + ('|', '畢'), + ('|', '紐'), + ('|', '評'), + ('|', '不'), + ('|', '埠'), + ('|', '普'), + ('|', '譜'), + ('|', '撫'), + ('|', '舞'), + ('|', '蕪'), + ('|', '淵'), + ('|', '弗'), + ('|', '沸'), + ('|', '糞'), + ('|', '併'), + ('|', '塀'), + ('|', '弊'), + ('|', '並'), + ('|', '蔽'), + ('|', '瞥'), + ('|', '偏'), + ('|', '篇'), + ('|', '編'), + ('|', '遍'), + ('|', '便'), + ('|', '俸'), + ('|', '奉'), + ('|', '峰'), + ('|', '峯'), + ('|', '捧'), + ('|', '縫'), + ('|', '蓬'), + ('|', '蜂'), + ('|', '豊'), + ('|', '鋒'), + ('|', '暴'), + ('|', '棒'), + ('|', '堀'), + ('|', '妹'), + ('|', '昧'), + ('|', '抹'), + ('|', '末'), + ('|', '沫'), + ('|', '万'), + ('|', '満'), + ('|', '味'), + ('|', '未'), + ('|', '魅'), + ('|', '岬'), + ('|', '無'), + ('|', '免'), + ('|', '耗'), + ('|', '餅'), + ('|', '也'), + ('|', '鑓'), + ('|', '油'), + ('|', '幽'), + ('|', '悠'), + ('|', '柚'), + ('|', '由'), + ('|', '郵'), + ('|', '翼'), + ('|', '来'), + ('|', '莱'), + ('|', '頼'), + ('|', '欄'), + ('|', '蘭'), + ('|', '侶'), + ('|', '両'), + ('|', '倫'), + ('|', '輪'), + ('|', '霊'), + ('|', '廉'), + ('|', '煉'), + ('|', '簾'), + ('|', '練'), + ('|', '錬'), + ('|', '婁'), + ('|', '蝋'), + ('|', '論'), + ('|', '歪'), + ('|', '丕'), + ('|', '个'), + ('|', '丱'), + ('|', '丼'), + ('|', '豫'), + ('|', '佛'), + ('|', '來'), + ('|', '俤'), + ('|', '倔'), + ('|', '倆'), + ('|', '假'), + ('|', '儂'), + ('|', '兩'), + ('|', '冉'), + ('|', '冓'), + ('|', '冲'), + ('|', '剏'), + ('|', '剌'), + ('|', '剩'), + ('|', '勳'), + ('|', '匣'), + ('|', '卅'), + ('|', '丗'), + ('|', '卍'), + ('|', '吽'), + ('|', '呷'), + ('|', '呻'), + ('|', '咄'), + ('|', '哄'), + ('|', '喘'), + ('|', '喇'), + ('|', '嗽'), + ('|', '嘸'), + ('|', '嘯'), + ('|', '坏'), + ('|', '垪'), + ('|', '堙'), + ('|', '墟'), + ('|', '壙'), + ('|', '壤'), + ('|', '妍'), + ('|', '娉'), + ('|', '媚'), + ('|', '媾'), + ('|', '嫂'), + ('|', '嫩'), + ('|', '嬋'), + ('|', '嬾'), + ('|', '孃'), + ('|', '孺'), + ('|', '屏'), + ('|', '岫'), + ('|', '岼'), + ('|', '崋'), + ('|', '崛'), + ('|', '崙'), + ('|', '崘'), + ('|', '嵋'), + ('|', '廡'), + ('|', '廸'), + ('|', '彈'), + ('|', '彌'), + ('|', '彿'), + ('|', '徠'), + ('|', '忸'), + ('|', '怎'), + ('|', '怫'), + ('|', '恆'), + ('|', '悚'), + ('|', '惠'), + ('|', '慊'), + ('|', '慟'), + ('|', '憖'), + ('|', '憚'), + ('|', '憮'), + ('|', '懣'), + ('|', '懶'), + ('|', '戰'), + ('|', '扁'), + ('|', '抔'), + ('|', '抻'), + ('|', '拌'), + ('|', '拂'), + ('|', '拱'), + ('|', '搜'), + ('|', '捶'), + ('|', '揀'), + ('|', '搴'), + ('|', '搆'), + ('|', '舉'), + ('|', '收'), + ('|', '攸'), + ('|', '敕'), + ('|', '敝'), + ('|', '數'), + ('|', '斷'), + ('|', '曄'), + ('|', '曩'), + ('|', '朏'), + ('|', '朮'), + ('|', '朿'), + ('|', '柞'), + ('|', '柮'), + ('|', '棘'), + ('|', '棗'), + ('|', '椪'), + ('|', '椣'), + ('|', '棆'), + ('|', '寨'), + ('|', '樓'), + ('|', '飮'), + ('|', '歉'), + ('|', '洙'), + ('|', '涕'), + ('|', '渊'), + ('|', '淒'), + ('|', '淪'), + ('|', '溂'), + ('|', '溏'), + ('|', '澑'), + ('|', '濂'), + ('|', '濔'), + ('|', '瀑'), + ('|', '瀟'), + ('|', '瀰'), + ('|', '瀾'), + ('|', '炸'), + ('|', '烽'), + ('|', '熏'), + ('|', '燻'), + ('|', '燼'), + ('|', '爛'), + ('|', '狃'), + ('|', '狆'), + ('|', '狎'), + ('|', '狒'), + ('|', '璢'), + ('|', '瑕'), + ('|', '瑾'), + ('|', '畍'), + ('|', '畊'), + ('|', '疥'), + ('|', '痞'), + ('|', '瘻'), + ('|', '眛'), + ('|', '睇'), + ('|', '睫'), + ('|', '瞞'), + ('|', '瞶'), + ('|', '矗'), + ('|', '祟'), + ('|', '祚'), + ('|', '禪'), + ('|', '禮'), + ('|', '禳'), + ('|', '秉'), + ('|', '秣'), + ('|', '稱'), + ('|', '穰'), + ('|', '穽'), + ('|', '窶'), + ('|', '竦'), + ('|', '笨'), + ('|', '笄'), + ('|', '筰'), + ('|', '筱'), + ('|', '篝'), + ('|', '篳'), + ('|', '簍'), + ('|', '簣'), + ('|', '簫'), + ('|', '籟'), + ('|', '籥'), + ('|', '糶'), + ('|', '絆'), + ('|', '絣'), + ('|', '綸'), + ('|', '綰'), + ('|', '緞'), + ('|', '縣'), + ('|', '縋'), + ('|', '縷'), + ('|', '繖'), + ('|', '繼'), + ('|', '罘'), + ('|', '翩'), + ('|', '耒'), + ('|', '耘'), + ('|', '耙'), + ('|', '耜'), + ('|', '耡'), + ('|', '耨'), + ('|', '聘'), + ('|', '胛'), + ('|', '胙'), + ('|', '胄'), + ('|', '胚'), + ('|', '胖'), + ('|', '脯'), + ('|', '腆'), + ('|', '胼'), + ('|', '舳'), + ('|', '艚'), + ('|', '苡'), + ('|', '苒'), + ('|', '茉'), + ('|', '茱'), + ('|', '菫'), + ('|', '萋'), + ('|', '葭'), + ('|', '葮'), + ('|', '蒹'), + ('|', '蕀'), + ('|', '蕭'), + ('|', '薛'), + ('|', '藪'), + ('|', '藉'), + ('|', '藕'), + ('|', '藾'), + ('|', '乕'), + ('|', '蚓'), + ('|', '蚌'), + ('|', '蚰'), + ('|', '蛬'), + ('|', '蛛'), + ('|', '蝙'), + ('|', '螻'), + ('|', '蠹'), + ('|', '衄'), + ('|', '袢'), + ('|', '裲'), + ('|', '褄'), + ('|', '褊'), + ('|', '襄'), + ('|', '褸'), + ('|', '覯'), + ('|', '誅'), + ('|', '誄'), + ('|', '諫'), + ('|', '諞'), + ('|', '謇'), + ('|', '譁'), + ('|', '譴'), + ('|', '讓'), + ('|', '賽'), + ('|', '賺'), + ('|', '贐'), + ('|', '赧'), + ('|', '赳'), + ('|', '跚'), + ('|', '踈'), + ('|', '踵'), + ('|', '蹇'), + ('|', '蹕'), + ('|', '躰'), + ('|', '軆'), + ('|', '輛'), + ('|', '輌'), + ('|', '輾'), + ('|', '辣'), + ('|', '迚'), + ('|', '迪'), + ('|', '邇'), + ('|', '迸'), + ('|', '遐'), + ('|', '遘'), + ('|', '鄲'), + ('|', '醋'), + ('|', '醴'), + ('|', '醺'), + ('|', '釀'), + ('|', '釉'), + ('|', '釐'), + ('|', '鈕'), + ('|', '鉞'), + ('|', '銖'), + ('|', '錏'), + ('|', '鍜'), + ('|', '鎭'), + ('|', '鏤'), + ('|', '鑰'), + ('|', '閘'), + ('|', '閧'), + ('|', '闌'), + ('|', '陲'), + ('|', '霰'), + ('|', '靺'), + ('|', '鞣'), + ('|', '顆'), + ('|', '餠'), + ('|', '饉'), + ('|', '饋'), + ('|', '饌'), + ('|', '駲'), + ('|', '騁'), + ('|', '駢'), + ('|', '騙'), + ('|', '騫'), + ('|', '驥'), + ('|', '驤'), + ('|', '髏'), + ('|', '體'), + ('|', '髯'), + ('|', '髴'), + ('|', '髷'), + ('|', '鬨'), + ('|', '魎'), + ('|', '鮓'), + ('|', '鰕'), + ('|', '鰊'), + ('|', '鰥'), + ('|', '鰤'), + ('|', '鰰'), + ('|', '鱧'), + ('|', '鵲'), + ('|', '鶇'), + ('|', '鶫'), + ('|', '黜'), + ('|', '鼬'), + ('|', '槇'), + ('丶', '以'), + ('丶', '磯'), + ('丶', '浦'), + ('丶', '永'), + ('丶', '泳'), + ('丶', '詠'), + ('丶', '往'), + ('丶', '欧'), + ('丶', '殴'), + ('丶', '鴎'), + ('丶', '蒲'), + ('丶', '釜'), + ('丶', '鎌'), + ('丶', '寒'), + ('丶', '丸'), + ('丶', '幾'), + ('丶', '機'), + ('丶', '気'), + ('丶', '畿'), + ('丶', '稀'), + ('丶', '偽'), + ('丶', '及'), + ('丶', '救'), + ('丶', '求'), + ('丶', '球'), + ('丶', '兇'), + ('丶', '凶'), + ('丶', '恐'), + ('丶', '挟'), + ('丶', '狭'), + ('丶', '胸'), + ('丶', '玉'), + ('丶', '禽'), + ('丶', '区'), + ('丶', '躯'), + ('丶', '駆'), + ('丶', '犬'), + ('丶', '国'), + ('丶', '叉'), + ('丶', '肴'), + ('丶', '殺'), + ('丶', '似'), + ('丶', '雫'), + ('丶', '執'), + ('丶', '勺'), + ('丶', '尺'), + ('丶', '杓'), + ('丶', '灼'), + ('丶', '酌'), + ('丶', '釈'), + ('丶', '主'), + ('丶', '就'), + ('丶', '州'), + ('丶', '洲'), + ('丶', '蹴'), + ('丶', '酬'), + ('丶', '住'), + ('丶', '塾'), + ('丶', '熟'), + ('丶', '術'), + ('丶', '述'), + ('丶', '丈'), + ('丶', '刃'), + ('丶', '尽'), + ('丶', '靭'), + ('丶', '勢'), + ('丶', '斥'), + ('丶', '銭'), + ('丶', '訴'), + ('丶', '双'), + ('丶', '太'), + ('丶', '汰'), + ('丶', '駄'), + ('丶', '丹'), + ('丶', '築'), + ('丶', '筑'), + ('丶', '昼'), + ('丶', '柱'), + ('丶', '注'), + ('丶', '註'), + ('丶', '駐'), + ('丶', '掴'), + ('丶', '釣'), + ('丶', '的'), + ('丶', '兎'), + ('丶', '菟'), + ('丶', '冬'), + ('丶', '忍'), + ('丶', '認'), + ('丶', '葱'), + ('丶', '熱'), + ('丶', '之'), + ('丶', '博'), + ('丶', '薄'), + ('丶', '縛'), + ('丶', '帆'), + ('丶', '汎'), + ('丶', '否'), + ('丶', '泌'), + ('丶', '秘'), + ('丶', '柊'), + ('丶', '氷'), + ('丶', '豹'), + ('丶', '不'), + ('丶', '敷'), + ('丶', '舗'), + ('丶', '鋪'), + ('丶', '圃'), + ('丶', '捕'), + ('丶', '甫'), + ('丶', '補'), + ('丶', '輔'), + ('丶', '簿'), + ('丶', '宝'), + ('丶', '乏'), + ('丶', '凡'), + ('丶', '密'), + ('丶', '蜜'), + ('丶', '尤'), + ('丶', '籾'), + ('丶', '匁'), + ('丶', '約'), + ('丶', '訳'), + ('丶', '卵'), + ('丶', '吏'), + ('丶', '梁'), + ('丶', '歪'), + ('丶', '鷲'), + ('丶', '亙'), + ('丶', '丕'), + ('丶', '丶'), + ('丶', '丼'), + ('丶', '仞'), + ('丶', '仭'), + ('丶', '偬'), + ('丶', '傅'), + ('丶', '兔'), + ('丶', '冤'), + ('丶', '劔'), + ('丶', '劒'), + ('丶', '剱'), + ('丶', '匆'), + ('丶', '匍'), + ('丶', '厖'), + ('丶', '咏'), + ('丶', '哺'), + ('丶', '囈'), + ('丶', '坏'), + ('丶', '埔'), + ('丶', '妁'), + ('丶', '孰'), + ('丶', '孵'), + ('丶', '寃'), + ('丶', '尨'), + ('丶', '巉'), + ('丶', '怱'), + ('丶', '怺'), + ('丶', '愡'), + ('丶', '愽'), + ('丶', '戍'), + ('丶', '戌'), + ('丶', '扠'), + ('丶', '扨'), + ('丶', '拔'), + ('丶', '抔'), + ('丶', '拆'), + ('丶', '掖'), + ('丶', '搏'), + ('丶', '摯'), + ('丶', '昶'), + ('丶', '朮'), + ('丶', '柝'), + ('丶', '梵'), + ('丶', '榑'), + ('丶', '樒'), + ('丶', '櫁'), + ('丶', '樣'), + ('丶', '毬'), + ('丶', '泝'), + ('丶', '溥'), + ('丶', '漾'), + ('丶', '澀'), + ('丶', '瀛'), + ('丶', '炙'), + ('丶', '犹'), + ('丶', '瑟'), + ('丶', '疣'), + ('丶', '疼'), + ('丶', '痞'), + ('丶', '祕'), + ('丶', '祓'), + ('丶', '秡'), + ('丶', '笂'), + ('丶', '筺'), + ('丶', '簗'), + ('丶', '綛'), + ('丶', '网'), + ('丶', '罘'), + ('丶', '羸'), + ('丶', '肬'), + ('丶', '胚'), + ('丶', '脉'), + ('丶', '脯'), + ('丶', '膊'), + ('丶', '舖'), + ('丶', '芍'), + ('丶', '苳'), + ('丶', '荵'), + ('丶', '葯'), + ('丶', '葢'), + ('丶', '藝'), + ('丶', '蛩'), + ('丶', '螽'), + ('丶', '蟄'), + ('丶', '衂'), + ('丶', '裘'), + ('丶', '褻'), + ('丶', '謐'), + ('丶', '譏'), + ('丶', '賻'), + ('丶', '贄'), + ('丶', '跋'), + ('丶', '跫'), + ('丶', '逑'), + ('丶', '逋'), + ('丶', '釼'), + ('丶', '釵'), + ('丶', '閠'), + ('丶', '靫'), + ('丶', '鞏'), + ('丶', '餔'), + ('丶', '饑'), + ('丶', '駲'), + ('丶', '騷'), + ('丶', '魃'), + ('丶', '鯆'), + ('丶', '鷙'), + ('丶', '麈'), + ('丶', '黻'), + ('丶', '黼'), + ('丶', '遙'), + ('丶', '瑤'), + ('ノ', '葵'), + ('ノ', '夷'), + ('ノ', '威'), + ('ノ', '為'), + ('ノ', '井'), + ('ノ', '郁'), + ('ノ', '磯'), + ('ノ', '逸'), + ('ノ', '淫'), + ('ノ', '隠'), + ('ノ', '右'), + ('ノ', '鵜'), + ('ノ', '丑'), + ('ノ', '映'), + ('ノ', '洩'), + ('ノ', '瑛'), + ('ノ', '盈'), + ('ノ', '英'), + ('ノ', '援'), + ('ノ', '塩'), + ('ノ', '央'), + ('ノ', '欧'), + ('ノ', '殴'), + ('ノ', '鴎'), + ('ノ', '卸'), + ('ノ', '禾'), + ('ノ', '悔'), + ('ノ', '括'), + ('ノ', '活'), + ('ノ', '釜'), + ('ノ', '鎌'), + ('ノ', '乾'), + ('ノ', '勧'), + ('ノ', '感'), + ('ノ', '憾'), + ('ノ', '看'), + ('ノ', '緩'), + ('ノ', '希'), + ('ノ', '幾'), + ('ノ', '機'), + ('ノ', '気'), + ('ノ', '畿'), + ('ノ', '稀'), + ('ノ', '杵'), + ('ノ', '久'), + ('ノ', '吸'), + ('ノ', '汲'), + ('ノ', '笈'), + ('ノ', '級'), + ('ノ', '許'), + ('ノ', '僑'), + ('ノ', '兇'), + ('ノ', '凶'), + ('ノ', '喬'), + ('ノ', '橋'), + ('ノ', '矯'), + ('ノ', '胸'), + ('ノ', '蕎'), + ('ノ', '禽'), + ('ノ', '区'), + ('ノ', '躯'), + ('ノ', '駆'), + ('ノ', '勲'), + ('ノ', '君'), + ('ノ', '薫'), + ('ノ', '群'), + ('ノ', '郡'), + ('ノ', '係'), + ('ノ', '刑'), + ('ノ', '型'), + ('ノ', '形'), + ('ノ', '携'), + ('ノ', '系'), + ('ノ', '荊'), + ('ノ', '懸'), + ('ノ', '研'), + ('ノ', '乎'), + ('ノ', '呼'), + ('ノ', '午'), + ('ノ', '御'), + ('ノ', '乞'), + ('ノ', '后'), + ('ノ', '垢'), + ('ノ', '宏'), + ('ノ', '更'), + ('ノ', '梗'), + ('ノ', '浩'), + ('ノ', '硬'), + ('ノ', '紘'), + ('ノ', '肱'), + ('ノ', '告'), + ('ノ', '酷'), + ('ノ', '鵠'), + ('ノ', '佐'), + ('ノ', '嵯'), + ('ノ', '左'), + ('ノ', '差'), + ('ノ', '沙'), + ('ノ', '瑳'), + ('ノ', '砂'), + ('ノ', '詐'), + ('ノ', '裟'), + ('ノ', '才'), + ('ノ', '歳'), + ('ノ', '済'), + ('ノ', '犀'), + ('ノ', '砕'), + ('ノ', '斎'), + ('ノ', '際'), + ('ノ', '剤'), + ('ノ', '在'), + ('ノ', '材'), + ('ノ', '財'), + ('ノ', '肴'), + ('ノ', '作'), + ('ノ', '咋'), + ('ノ', '搾'), + ('ノ', '昨'), + ('ノ', '窄'), + ('ノ', '察'), + ('ノ', '擦'), + ('ノ', '殺'), + ('ノ', '薩'), + ('ノ', '産'), + ('ノ', '使'), + ('ノ', '史'), + ('ノ', '施'), + ('ノ', '七'), + ('ノ', '執'), + ('ノ', '失'), + ('ノ', '悉'), + ('ノ', '紗'), + ('ノ', '若'), + ('ノ', '惹'), + ('ノ', '朱'), + ('ノ', '殊'), + ('ノ', '珠'), + ('ノ', '寿'), + ('ノ', '繍'), + ('ノ', '蹴'), + ('ノ', '重'), + ('ノ', '粛'), + ('ノ', '傷'), + ('ノ', '升'), + ('ノ', '少'), + ('ノ', '承'), + ('ノ', '抄'), + ('ノ', '昇'), + ('ノ', '渉'), + ('ノ', '省'), + ('ノ', '称'), + ('ノ', '丈'), + ('ノ', '丞'), + ('ノ', '乗'), + ('ノ', '剰'), + ('ノ', '城'), + ('ノ', '杖'), + ('ノ', '蒸'), + ('ノ', '飾'), + ('ノ', '壬'), + ('ノ', '訊'), + ('ノ', '酢'), + ('ノ', '垂'), + ('ノ', '睡'), + ('ノ', '錘'), + ('ノ', '随'), + ('ノ', '髄'), + ('ノ', '雀'), + ('ノ', '制'), + ('ノ', '成'), + ('ノ', '盛'), + ('ノ', '誠'), + ('ノ', '斉'), + ('ノ', '戚'), + ('ノ', '先'), + ('ノ', '千'), + ('ノ', '栴'), + ('ノ', '洗'), + ('ノ', '銭'), + ('ノ', '銑'), + ('ノ', '倉'), + ('ノ', '挿'), + ('ノ', '蒼'), + ('ノ', '鎗'), + ('ノ', '臓'), + ('ノ', '蔵'), + ('ノ', '造'), + ('ノ', '属'), + ('ノ', '存'), + ('ノ', '孫'), + ('ノ', '遜'), + ('ノ', '唾'), + ('ノ', '堕'), + ('ノ', '惰'), + ('ノ', '楕'), + ('ノ', '宅'), + ('ノ', '托'), + ('ノ', '託'), + ('ノ', '諾'), + ('ノ', '丹'), + ('ノ', '嘆'), + ('ノ', '誕'), + ('ノ', '暖'), + ('ノ', '段'), + ('ノ', '秩'), + ('ノ', '着'), + ('ノ', '鋳'), + ('ノ', '捗'), + ('ノ', '剃'), + ('ノ', '弟'), + ('ノ', '悌'), + ('ノ', '梯'), + ('ノ', '迭'), + ('ノ', '鉄'), + ('ノ', '添'), + ('ノ', '兎'), + ('ノ', '梼'), + ('ノ', '涛'), + ('ノ', '祷'), + ('ノ', '透'), + ('ノ', '匿'), + ('ノ', '屯'), + ('ノ', '呑'), + ('ノ', '乍'), + ('ノ', '迩'), + ('ノ', '任'), + ('ノ', '妊'), + ('ノ', '祢'), + ('ノ', '年'), + ('ノ', '乃'), + ('ノ', '杯'), + ('ノ', '盃'), + ('ノ', '否'), + ('ノ', '泌'), + ('ノ', '秘'), + ('ノ', '弼'), + ('ノ', '必'), + ('ノ', '媛'), + ('ノ', '秒'), + ('ノ', '瀕'), + ('ノ', '賓'), + ('ノ', '頻'), + ('ノ', '不'), + ('ノ', '布'), + ('ノ', '怖'), + ('ノ', '撫'), + ('ノ', '舞'), + ('ノ', '蕪'), + ('ノ', '楓'), + ('ノ', '風'), + ('ノ', '復'), + ('ノ', '腹'), + ('ノ', '弗'), + ('ノ', '沸'), + ('ノ', '併'), + ('ノ', '塀'), + ('ノ', '閉'), + ('ノ', '蔑'), + ('ノ', '便'), + ('ノ', '鞭'), + ('ノ', '歩'), + ('ノ', '戊'), + ('ノ', '邦'), + ('ノ', '乏'), + ('ノ', '奔'), + ('ノ', '枕'), + ('ノ', '鮪'), + ('ノ', '亦'), + ('ノ', '万'), + ('ノ', '密'), + ('ノ', '蜜'), + ('ノ', '妙'), + ('ノ', '無'), + ('ノ', '滅'), + ('ノ', '茂'), + ('ノ', '勿'), + ('ノ', '餅'), + ('ノ', '匁'), + ('ノ', '弥'), + ('ノ', '矢'), + ('ノ', '佑'), + ('ノ', '友'), + ('ノ', '宥'), + ('ノ', '有'), + ('ノ', '祐'), + ('ノ', '郵'), + ('ノ', '雄'), + ('ノ', '妖'), + ('ノ', '沃'), + ('ノ', '卵'), + ('ノ', '濫'), + ('ノ', '藍'), + ('ノ', '覧'), + ('ノ', '吏'), + ('ノ', '旅'), + ('ノ', '臨'), + ('ノ', '劣'), + ('ノ', '歪'), + ('ノ', '賄'), + ('ノ', '亙'), + ('ノ', '詫'), + ('ノ', '丕'), + ('ノ', '丱'), + ('ノ', '丼'), + ('ノ', '丿'), + ('ノ', '乂'), + ('ノ', '乖'), + ('ノ', '乘'), + ('ノ', '亳'), + ('ノ', '仍'), + ('ノ', '仗'), + ('ノ', '仟'), + ('ノ', '佚'), + ('ノ', '佛'), + ('ノ', '侏'), + ('ノ', '侘'), + ('ノ', '侑'), + ('ノ', '俤'), + ('ノ', '决'), + ('ノ', '凭'), + ('ノ', '刋'), + ('ノ', '剏'), + ('ノ', '辨'), + ('ノ', '卅'), + ('ノ', '咏'), + ('ノ', '咸'), + ('ノ', '咤'), + ('ノ', '唏'), + ('ノ', '哽'), + ('ノ', '喊'), + ('ノ', '嗟'), + ('ノ', '嘸'), + ('ノ', '嘯'), + ('ノ', '囿'), + ('ノ', '坏'), + ('ノ', '埀'), + ('ノ', '垪'), + ('ノ', '埓'), + ('ノ', '夭'), + ('ノ', '奧'), + ('ノ', '妍'), + ('ノ', '姙'), + ('ノ', '娑'), + ('ノ', '婬'), + ('ノ', '嬌'), + ('ノ', '嬪'), + ('ノ', '尓'), + ('ノ', '尠'), + ('ノ', '尹'), + ('ノ', '屏'), + ('ノ', '屹'), + ('ノ', '峺'), + ('ノ', '帙'), + ('ノ', '并'), + ('ノ', '廡'), + ('ノ', '彿'), + ('ノ', '忤'), + ('ノ', '忝'), + ('ノ', '恠'), + ('ノ', '怎'), + ('ノ', '怱'), + ('ノ', '怫'), + ('ノ', '恁'), + ('ノ', '愡'), + ('ノ', '慯'), + ('ノ', '慟'), + ('ノ', '慝'), + ('ノ', '憮'), + ('ノ', '戍'), + ('ノ', '戌'), + ('ノ', '拔'), + ('ノ', '抔'), + ('ノ', '拜'), + ('ノ', '拂'), + ('ノ', '抛'), + ('ノ', '拵'), + ('ノ', '捶'), + ('ノ', '插'), + ('ノ', '摯'), + ('ノ', '撼'), + ('ノ', '擯'), + ('ノ', '攸'), + ('ノ', '斫'), + ('ノ', '昜'), + ('ノ', '晞'), + ('ノ', '晧'), + ('ノ', '晟'), + ('ノ', '暘'), + ('ノ', '朶'), + ('ノ', '杤'), + ('ノ', '杪'), + ('ノ', '枡'), + ('ノ', '柞'), + ('ノ', '栫'), + ('ノ', '梏'), + ('ノ', '楹'), + ('ノ', '槎'), + ('ノ', '樒'), + ('ノ', '櫁'), + ('ノ', '橢'), + ('ノ', '檳'), + ('ノ', '欷'), + ('ノ', '歃'), + ('ノ', '殀'), + ('ノ', '殤'), + ('ノ', '殯'), + ('ノ', '毟'), + ('ノ', '泛'), + ('ノ', '洙'), + ('ノ', '浤'), + ('ノ', '涎'), + ('ノ', '涕'), + ('ノ', '渊'), + ('ノ', '淆'), + ('ノ', '湲'), + ('ノ', '渺'), + ('ノ', '濱'), + ('ノ', '瀟'), + ('ノ', '炒'), + ('ノ', '炸'), + ('ノ', '熈'), + ('ノ', '煖'), + ('ノ', '煬'), + ('ノ', '熏'), + ('ノ', '燻'), + ('ノ', '爰'), + ('ノ', '犂'), + ('ノ', '犲'), + ('ノ', '狒'), + ('ノ', '瑟'), + ('ノ', '瓩'), + ('ノ', '畍'), + ('ノ', '畊'), + ('ノ', '畴'), + ('ノ', '疚'), + ('ノ', '疥'), + ('ノ', '痞'), + ('ノ', '瘍'), + ('ノ', '皓'), + ('ノ', '盪'), + ('ノ', '蘯'), + ('ノ', '眇'), + ('ノ', '睇'), + ('ノ', '祚'), + ('ノ', '祕'), + ('ノ', '祓'), + ('ノ', '禹'), + ('ノ', '秉'), + ('ノ', '秡'), + ('ノ', '穢'), + ('ノ', '穽'), + ('ノ', '窘'), + ('ノ', '窖'), + ('ノ', '竏'), + ('ノ', '笏'), + ('ノ', '笄'), + ('ノ', '笋'), + ('ノ', '筵'), + ('ノ', '筰'), + ('ノ', '筬'), + ('ノ', '箴'), + ('ノ', '簫'), + ('ノ', '粳'), + ('ノ', '絨'), + ('ノ', '絏'), + ('ノ', '絣'), + ('ノ', '緜'), + ('ノ', '緘'), + ('ノ', '緲'), + ('ノ', '縅'), + ('ノ', '繽'), + ('ノ', '缺'), + ('ノ', '网'), + ('ノ', '罘'), + ('ノ', '羞'), + ('ノ', '羣'), + ('ノ', '耒'), + ('ノ', '耒'), + ('ノ', '耘'), + ('ノ', '耙'), + ('ノ', '耜'), + ('ノ', '耡'), + ('ノ', '耨'), + ('ノ', '胙'), + ('ノ', '胚'), + ('ノ', '隋'), + ('ノ', '胼'), + ('ノ', '膓'), + ('ノ', '膸'), + ('ノ', '臟'), + ('ノ', '臧'), + ('ノ', '臻'), + ('ノ', '舂'), + ('ノ', '艾'), + ('ノ', '茆'), + ('ノ', '茱'), + ('ノ', '荐'), + ('ノ', '莚'), + ('ノ', '莎'), + ('ノ', '莠'), + ('ノ', '蕭'), + ('ノ', '藏'), + ('ノ', '蘋'), + ('ノ', '乕'), + ('ノ', '虱'), + ('ノ', '蛛'), + ('ノ', '蜒'), + ('ノ', '蜑'), + ('ノ', '蜴'), + ('ノ', '蝨'), + ('ノ', '蝪'), + ('ノ', '袮'), + ('ノ', '裙'), + ('ノ', '裼'), + ('ノ', '襪'), + ('ノ', '觴'), + ('ノ', '誅'), + ('ノ', '誥'), + ('ノ', '謐'), + ('ノ', '譌'), + ('ノ', '譏'), + ('ノ', '讚'), + ('ノ', '豺'), + ('ノ', '貶'), + ('ノ', '贊'), + ('ノ', '贓'), + ('ノ', '跌'), + ('ノ', '跋'), + ('ノ', '跣'), + ('ノ', '踵'), + ('ノ', '蹙'), + ('ノ', '躱'), + ('ノ', '軼'), + ('ノ', '轎'), + ('ノ', '轗'), + ('ノ', '迸'), + ('ノ', '隨'), + ('ノ', '醢'), + ('ノ', '醺'), + ('ノ', '鈔'), + ('ノ', '銖'), + ('ノ', '鉚'), + ('ノ', '銹'), + ('ノ', '鍼'), + ('ノ', '鑽'), + ('ノ', '阡'), + ('ノ', '陏'), + ('ノ', '陞'), + ('ノ', '陟'), + ('ノ', '陦'), + ('ノ', '陲'), + ('ノ', '隲'), + ('ノ', '靜'), + ('ノ', '靠'), + ('ノ', '韈'), + ('ノ', '顰'), + ('ノ', '飫'), + ('ノ', '饑'), + ('ノ', '駛'), + ('ノ', '駲'), + ('ノ', '駢'), + ('ノ', '驕'), + ('ノ', '髓'), + ('ノ', '髴'), + ('ノ', '鬢'), + ('ノ', '鮓'), + ('ノ', '鯀'), + ('ノ', '鯊'), + ('ノ', '鯑'), + ('ノ', '鯣'), + ('ノ', '鰔'), + ('ノ', '鰄'), + ('ノ', '鹹'), + ('ノ', '齲'), + ('乙', '穐'), + ('乙', '曳'), + ('乙', '洩'), + ('乙', '奄'), + ('乙', '掩'), + ('乙', '乙'), + ('乙', '俺'), + ('乙', '竃'), + ('乙', '乾'), + ('乙', '亀'), + ('乙', '吃'), + ('乙', '乞'), + ('乙', '孔'), + ('乙', '札'), + ('乙', '七'), + ('乙', '蹴'), + ('乙', '宅'), + ('乙', '托'), + ('乙', '託'), + ('乙', '電'), + ('乙', '屯'), + ('乙', '縄'), + ('乙', '乳'), + ('乙', '之'), + ('乙', '巴'), + ('乙', '蝿'), + ('乙', '氾'), + ('乙', '犯'), + ('乙', '範'), + ('乙', '乏'), + ('乙', '枕'), + ('乙', '迄'), + ('乙', '也'), + ('乙', '乱'), + ('乙', '竜'), + ('乙', '礼'), + ('乙', '詫'), + ('乙', '亂'), + ('乙', '亳'), + ('乙', '侘'), + ('乙', '吼'), + ('乙', '咤'), + ('乙', '乢'), + ('乙', '屹'), + ('乙', '扎'), + ('乙', '梍'), + ('乙', '泛'), + ('乙', '淹'), + ('乙', '煢'), + ('乙', '獵'), + ('乙', '龝'), + ('乙', '糺'), + ('乙', '紮'), + ('乙', '罨'), + ('乙', '菴'), + ('乙', '虱'), + ('乙', '蝨'), + ('乙', '訖'), + ('乙', '貶'), + ('乙', '軋'), + ('乙', '輒'), + ('乙', '閹'), + ('乙', '鬮'), + ('乙', '龜'), + ('亅', '阿'), + ('亅', '椅'), + ('亅', '宇'), + ('亅', '迂'), + ('亅', '何'), + ('亅', '可'), + ('亅', '歌'), + ('亅', '河'), + ('亅', '珂'), + ('亅', '苛'), + ('亅', '荷'), + ('亅', '俄'), + ('亅', '峨'), + ('亅', '我'), + ('亅', '蛾'), + ('亅', '餓'), + ('亅', '廓'), + ('亅', '郭'), + ('亅', '奇'), + ('亅', '寄'), + ('亅', '騎'), + ('亅', '儀'), + ('亅', '犠'), + ('亅', '義'), + ('亅', '蟻'), + ('亅', '議'), + ('亅', '研'), + ('亅', '減'), + ('亅', '諺'), + ('亅', '乎'), + ('亅', '呼'), + ('亅', '后'), + ('亅', '垢'), + ('亅', '耕'), + ('亅', '才'), + ('亅', '材'), + ('亅', '財'), + ('亅', '柵'), + ('亅', '策'), + ('亅', '冊'), + ('亅', '珊'), + ('亅', '伺'), + ('亅', '刺'), + ('亅', '司'), + ('亅', '嗣'), + ('亅', '詞'), + ('亅', '飼'), + ('亅', '事'), + ('亅', '序'), + ('亅', '承'), + ('亅', '丞'), + ('亅', '浄'), + ('亅', '蒸'), + ('亅', '笥'), + ('亅', '静'), + ('亅', '争'), + ('亅', '打'), + ('亅', '丹'), + ('亅', '苧'), + ('亅', '貯'), + ('亅', '丁'), + ('亅', '庁'), + ('亅', '町'), + ('亅', '頂'), + ('亅', '亭'), + ('亅', '停'), + ('亅', '汀'), + ('亅', '訂'), + ('亅', '釘'), + ('亅', '塗'), + ('亅', '途'), + ('亅', '灯'), + ('亅', '瀞'), + ('亅', '寧'), + ('亅', '覗'), + ('亅', '閉'), + ('亅', '烹'), + ('亅', '亦'), + ('亅', '野'), + ('亅', '弥'), + ('亅', '予'), + ('亅', '余'), + ('亅', '預'), + ('亅', '了'), + ('亅', '倫'), + ('亅', '亅'), + ('亅', '豫'), + ('亅', '亊'), + ('亅', '舒'), + ('亅', '于'), + ('亅', '佇'), + ('亅', '倚'), + ('亅', '剞'), + ('亅', '叮'), + ('亅', '吁'), + ('亅', '呵'), + ('亅', '哥'), + ('亅', '哦'), + ('亅', '竒'), + ('亅', '娥'), + ('亅', '婀'), + ('亅', '寐'), + ('亅', '峩'), + ('亅', '嵜'), + ('亅', '崢'), + ('亅', '嶬'), + ('亅', '彁'), + ('亅', '抒'), + ('亅', '掎'), + ('亅', '曦'), + ('亅', '杼'), + ('亅', '柯'), + ('亅', '檸'), + ('亅', '欹'), + ('亅', '淨'), + ('亅', '渮'), + ('亅', '渟'), + ('亅', '濘'), + ('亅', '烝'), + ('亅', '爭'), + ('亅', '犲'), + ('亅', '猗'), + ('亅', '獰'), + ('亅', '甼'), + ('亅', '畸'), + ('亅', '疔'), + ('亅', '痾'), + ('亅', '盂'), + ('亅', '眄'), + ('亅', '礒'), + ('亅', '祠'), + ('亅', '竚'), + ('亅', '箏'), + ('亅', '筝'), + ('亅', '紆'), + ('亅', '紵'), + ('亅', '綺'), + ('亅', '罅'), + ('亅', '羇'), + ('亅', '聹'), + ('亅', '舸'), + ('亅', '艤'), + ('亅', '莪'), + ('亅', '荼'), + ('亅', '蕷'), + ('亅', '蜍'), + ('亅', '訶'), + ('亅', '諍'), + ('亅', '謌'), + ('亅', '豺'), + ('亅', '軻'), + ('亅', '迹'), + ('亅', '酊'), + ('亅', '錚'), + ('亅', '隸'), + ('亅', '雋'), + ('亅', '靜'), + ('亅', '餘'), + ('亅', '鬨'), + ('亅', '鵝'), + ('亅', '鵞'), + ('二', '逢'), + ('二', '葵'), + ('二', '尉'), + ('二', '慰'), + ('二', '井'), + ('二', '蔭'), + ('二', '院'), + ('二', '陰'), + ('二', '迂'), + ('二', '蔚'), + ('二', '云'), + ('二', '雲'), + ('二', '頴'), + ('二', '汚'), + ('二', '横'), + ('二', '会'), + ('二', '快'), + ('二', '絵'), + ('二', '顎'), + ('二', '巻'), + ('二', '完'), + ('二', '款'), + ('二', '監'), + ('二', '看'), + ('二', '艦'), + ('二', '莞'), + ('二', '鑑'), + ('二', '関'), + ('二', '玩'), + ('二', '頑'), + ('二', '規'), + ('二', '禦'), + ('二', '供'), + ('二', '侠'), + ('二', '共'), + ('二', '峡'), + ('二', '挟'), + ('二', '狭'), + ('二', '均'), + ('二', '禁'), + ('二', '襟'), + ('二', '芸'), + ('二', '決'), + ('二', '訣'), + ('二', '券'), + ('二', '圏'), + ('二', '元'), + ('二', '袴'), + ('二', '誇'), + ('二', '跨'), + ('二', '碁'), + ('二', '洪'), + ('二', '魂'), + ('二', '些'), + ('二', '犀'), + ('二', '祭'), + ('二', '斎'), + ('二', '際'), + ('二', '咲'), + ('二', '錯'), + ('二', '察'), + ('二', '擦'), + ('二', '皐'), + ('二', '鯖'), + ('二', '錆'), + ('二', '三'), + ('二', '撒'), + ('二', '散'), + ('二', '桟'), + ('二', '讃'), + ('二', '賛'), + ('二', '残'), + ('二', '示'), + ('二', '竺'), + ('二', '失'), + ('二', '借'), + ('二', '朱'), + ('二', '殊'), + ('二', '珠'), + ('二', '寿'), + ('二', '宗'), + ('二', '春'), + ('二', '勝'), + ('二', '承'), + ('二', '情'), + ('二', '榛'), + ('二', '秦'), + ('二', '仁'), + ('二', '崇'), + ('二', '制'), + ('二', '晴'), + ('二', '清'), + ('二', '精'), + ('二', '請'), + ('二', '青'), + ('二', '惜'), + ('二', '昔'), + ('二', '脊'), + ('二', '撰'), + ('二', '浅'), + ('二', '賎'), + ('二', '践'), + ('二', '選'), + ('二', '措'), + ('二', '奏'), + ('二', '綜'), + ('二', '戴'), + ('二', '替'), + ('二', '泰'), + ('二', '巽'), + ('二', '樗'), + ('二', '鍔'), + ('二', '椿'), + ('二', '逓'), + ('二', '鉄'), + ('二', '展'), + ('二', '転'), + ('二', '伝'), + ('二', '殿'), + ('二', '澱'), + ('二', '騰'), + ('二', '曇'), + ('二', '奈'), + ('二', '那'), + ('二', '捺'), + ('二', '二'), + ('二', '弐'), + ('二', '溌'), + ('二', '発'), + ('二', '醗'), + ('二', '伴'), + ('二', '判'), + ('二', '半'), + ('二', '畔'), + ('二', '桧'), + ('二', '標'), + ('二', '漂'), + ('二', '瓢'), + ('二', '票'), + ('二', '評'), + ('二', '蒜'), + ('二', '夫'), + ('二', '扶'), + ('二', '普'), + ('二', '芙'), + ('二', '譜'), + ('二', '舞'), + ('二', '糞'), + ('二', '併'), + ('二', '塀'), + ('二', '並'), + ('二', '俸'), + ('二', '奉'), + ('二', '捧'), + ('二', '邦'), + ('二', '暴'), + ('二', '棒'), + ('二', '頬'), + ('二', '妹'), + ('二', '昧'), + ('二', '俣'), + ('二', '沫'), + ('二', '満'), + ('二', '味'), + ('二', '未'), + ('二', '魅'), + ('二', '湊'), + ('二', '餅'), + ('二', '靖'), + ('二', '余'), + ('二', '翼'), + ('二', '来'), + ('二', '莱'), + ('二', '濫'), + ('二', '藍'), + ('二', '覧'), + ('二', '隷'), + ('二', '霊'), + ('二', '亙'), + ('二', '亘'), + ('二', '鰐'), + ('二', '丼'), + ('二', '弍'), + ('二', '于'), + ('二', '亞'), + ('二', '亟'), + ('二', '佚'), + ('二', '倩'), + ('二', '僵'), + ('二', '儖'), + ('二', '冀'), + ('二', '冑'), + ('二', '冓'), + ('二', '冕'), + ('二', '冦'), + ('二', '冱'), + ('二', '凛'), + ('二', '刳'), + ('二', '剏'), + ('二', '剽'), + ('二', '劵'), + ('二', '匏'), + ('二', '卷'), + ('二', '吁'), + ('二', '吽'), + ('二', '咢'), + ('二', '哄'), + ('二', '噤'), + ('二', '囈'), + ('二', '圈'), + ('二', '垪'), + ('二', '堊'), + ('二', '壙'), + ('二', '壜'), + ('二', '壼'), + ('二', '夬'), + ('二', '夸'), + ('二', '佞'), + ('二', '妍'), + ('二', '娜'), + ('二', '媾'), + ('二', '嫖'), + ('二', '寇'), + ('二', '寐'), + ('二', '屏'), + ('二', '岼'), + ('二', '帙'), + ('二', '并'), + ('二', '彗'), + ('二', '惡'), + ('二', '惓'), + ('二', '愕'), + ('二', '惷'), + ('二', '愃'), + ('二', '慓'), + ('二', '抉'), + ('二', '拌'), + ('二', '拱'), + ('二', '捶'), + ('二', '揆'), + ('二', '搴'), + ('二', '撥'), + ('二', '舉'), + ('二', '攘'), + ('二', '攤'), + ('二', '晉'), + ('二', '暄'), + ('二', '曄'), + ('二', '桍'), + ('二', '梛'), + ('二', '椏'), + ('二', '椦'), + ('二', '棕'), + ('二', '槿'), + ('二', '樸'), + ('二', '檻'), + ('二', '欖'), + ('二', '洙'), + ('二', '浣'), + ('二', '渕'), + ('二', '淙'), + ('二', '湲'), + ('二', '滕'), + ('二', '瀑'), + ('二', '烽'), + ('二', '熨'), + ('二', '猜'), + ('二', '畊'), + ('二', '畉'), + ('二', '畴'), + ('二', '癈'), + ('二', '癪'), + ('二', '癸'), + ('二', '皖'), + ('二', '盂'), + ('二', '眛'), + ('二', '眷'), + ('二', '睛'), + ('二', '瞎'), + ('二', '碾'), + ('二', '磧'), + ('二', '祟'), + ('二', '禀'), + ('二', '穽'), + ('二', '笄'), + ('二', '篝'), + ('二', '簀'), + ('二', '籃'), + ('二', '籐'), + ('二', '籘'), + ('二', '粽'), + ('二', '紆'), + ('二', '紜'), + ('二', '絆'), + ('二', '絳'), + ('二', '絣'), + ('二', '綣'), + ('二', '縉'), + ('二', '縢'), + ('二', '縹'), + ('二', '繧'), + ('二', '繖'), + ('二', '繿'), + ('二', '纉'), + ('二', '纛'), + ('二', '纜'), + ('二', '缺'), + ('二', '罅'), + ('二', '罎'), + ('二', '耘'), + ('二', '冐'), + ('二', '胖'), + ('二', '胯'), + ('二', '胼'), + ('二', '膩'), + ('二', '臻'), + ('二', '舂'), + ('二', '艱'), + ('二', '芫'), + ('二', '茱'), + ('二', '荼'), + ('二', '菫'), + ('二', '菁'), + ('二', '萼'), + ('二', '蕚'), + ('二', '蒄'), + ('二', '蓁'), + ('二', '蔡'), + ('二', '薑'), + ('二', '藉'), + ('二', '藝'), + ('二', '虧'), + ('二', '蚌'), + ('二', '蛬'), + ('二', '蛛'), + ('二', '蜍'), + ('二', '蜷'), + ('二', '蜻'), + ('二', '蠢'), + ('二', '袂'), + ('二', '袢'), + ('二', '襤'), + ('二', '誅'), + ('二', '諤'), + ('二', '諠'), + ('二', '譛'), + ('二', '豢'), + ('二', '貳'), + ('二', '趺'), + ('二', '跌'), + ('二', '踪'), + ('二', '軼'), + ('二', '輦'), + ('二', '輳'), + ('二', '輾'), + ('二', '迸'), + ('二', '鄂'), + ('二', '醋'), + ('二', '釐'), + ('二', '銖'), + ('二', '錏'), + ('二', '鎹'), + ('二', '鐚'), + ('二', '鑒'), + ('二', '鑚'), + ('二', '閧'), + ('二', '阮'), + ('二', '陦'), + ('二', '隸'), + ('二', '霰'), + ('二', '靆'), + ('二', '靉'), + ('二', '靜'), + ('二', '飄'), + ('二', '飃'), + ('二', '餘'), + ('二', '饉'), + ('二', '饌'), + ('二', '駢'), + ('二', '驃'), + ('二', '驥'), + ('二', '驤'), + ('二', '鬨'), + ('二', '鰆'), + ('二', '鰾'), + ('二', '鴃'), + ('二', '鶚'), + ('二', '麩'), + ('二', '麸'), + ('二', '齶'), + ('亠', '哀'), + ('亠', '虻'), + ('亠', '依'), + ('亠', '衣'), + ('亠', '亥'), + ('亠', '育'), + ('亠', '影'), + ('亠', '液'), + ('亠', '円'), + ('亠', '劾'), + ('亠', '咳'), + ('亠', '害'), + ('亠', '該'), + ('亠', '骸'), + ('亠', '柿'), + ('亠', '廓'), + ('亠', '核'), + ('亠', '較'), + ('亠', '郭'), + ('亠', '割'), + ('亠', '轄'), + ('亠', '顔'), + ('亠', '棄'), + ('亠', '毅'), + ('亠', '喫'), + ('亠', '亨'), + ('亠', '享'), + ('亠', '京'), + ('亠', '侠'), + ('亠', '峡'), + ('亠', '挟'), + ('亠', '狭'), + ('亠', '禽'), + ('亠', '契'), + ('亠', '景'), + ('亠', '鯨'), + ('亠', '潔'), + ('亠', '憲'), + ('亠', '牽'), + ('亠', '弦'), + ('亠', '玄'), + ('亠', '絃'), + ('亠', '舷'), + ('亠', '諺'), + ('亠', '檎'), + ('亠', '交'), + ('亠', '佼'), + ('亠', '倖'), + ('亠', '効'), + ('亠', '坑'), + ('亠', '幸'), + ('亠', '抗'), + ('亠', '杭'), + ('亠', '校'), + ('亠', '稿'), + ('亠', '絞'), + ('亠', '膏'), + ('亠', '航'), + ('亠', '郊'), + ('亠', '高'), + ('亠', '壕'), + ('亠', '濠'), + ('亠', '豪'), + ('亠', '麹'), + ('亠', '刻'), + ('亠', '債'), + ('亠', '裁'), + ('亠', '薩'), + ('亠', '鯖'), + ('亠', '錆'), + ('亠', '鮫'), + ('亠', '産'), + ('亠', '讃'), + ('亠', '賛'), + ('亠', '姉'), + ('亠', '市'), + ('亠', '宍'), + ('亠', '執'), + ('亠', '芝'), + ('亠', '縞'), + ('亠', '就'), + ('亠', '蹴'), + ('亠', '充'), + ('亠', '銃'), + ('亠', '塾'), + ('亠', '熟'), + ('亠', '淳'), + ('亠', '醇'), + ('亠', '商'), + ('亠', '壌'), + ('亠', '嬢'), + ('亠', '情'), + ('亠', '穣'), + ('亠', '譲'), + ('亠', '醸'), + ('亠', '新'), + ('亠', '薪'), + ('亠', '親'), + ('亠', '翠'), + ('亠', '衰'), + ('亠', '嵩'), + ('亠', '畝'), + ('亠', '晴'), + ('亠', '清'), + ('亠', '精'), + ('亠', '請'), + ('亠', '青'), + ('亠', '静'), + ('亠', '積'), + ('亠', '籍'), + ('亠', '績'), + ('亠', '責'), + ('亠', '跡'), + ('亠', '蹟'), + ('亠', '疏'), + ('亠', '素'), + ('亠', '爽'), + ('亠', '卒'), + ('亠', '替'), + ('亠', '鐸'), + ('亠', '壇'), + ('亠', '檀'), + ('亠', '畜'), + ('亠', '蓄'), + ('亠', '嫡'), + ('亠', '鋳'), + ('亠', '漬'), + ('亠', '亭'), + ('亠', '停'), + ('亠', '帝'), + ('亠', '締'), + ('亠', '諦'), + ('亠', '蹄'), + ('亠', '摘'), + ('亠', '敵'), + ('亠', '滴'), + ('亠', '適'), + ('亠', '鏑'), + ('亠', '徹'), + ('亠', '撤'), + ('亠', '轍'), + ('亠', '梼'), + ('亠', '涛'), + ('亠', '祷'), + ('亠', '統'), + ('亠', '毒'), + ('亠', '瀞'), + ('亠', '惇'), + ('亠', '敦'), + ('亠', '灘'), + ('亠', '難'), + ('亠', '之'), + ('亠', '嚢'), + ('亠', '肺'), + ('亠', '抜'), + ('亠', '噺'), + ('亠', '塙'), + ('亠', '蛮'), + ('亠', '彦'), + ('亠', '変'), + ('亠', '報'), + ('亠', '烹'), + ('亠', '褒'), + ('亠', '乏'), + ('亠', '亡'), + ('亠', '傍'), + ('亠', '忘'), + ('亠', '忙'), + ('亠', '妹'), + ('亠', '昧'), + ('亠', '亦'), + ('亠', '抹'), + ('亠', '末'), + ('亠', '沫'), + ('亠', '味'), + ('亠', '未'), + ('亠', '魅'), + ('亠', '蓑'), + ('亠', '椋'), + ('亠', '冥'), + ('亠', '妄'), + ('亠', '盲'), + ('亠', '夜'), + ('亠', '靖'), + ('亠', '擁'), + ('亠', '来'), + ('亠', '莱'), + ('亠', '璃'), + ('亠', '裏'), + ('亠', '離'), + ('亠', '率'), + ('亠', '掠'), + ('亠', '流'), + ('亠', '琉'), + ('亠', '硫'), + ('亠', '亮'), + ('亠', '涼'), + ('亠', '諒'), + ('亠', '恋'), + ('亠', '六'), + ('亠', '鷲'), + ('亠', '藁'), + ('亠', '湾'), + ('亠', '亠'), + ('亠', '亢'), + ('亠', '亰'), + ('亠', '亳'), + ('亠', '亶'), + ('亠', '伉'), + ('亠', '倅'), + ('亠', '倩'), + ('亠', '偐'), + ('亠', '傚'), + ('亠', '僭'), + ('亠', '儕'), + ('亠', '凉'), + ('亠', '凛'), + ('亠', '劑'), + ('亠', '勍'), + ('亠', '勣'), + ('亠', '卞'), + ('亠', '吭'), + ('亠', '呟'), + ('亠', '咬'), + ('亠', '啻'), + ('亠', '啼'), + ('亠', '喇'), + ('亠', '喨'), + ('亠', '嘖'), + ('亠', '嚆'), + ('亠', '囃'), + ('亠', '囓'), + ('亠', '圉'), + ('亠', '垓'), + ('亠', '埣'), + ('亠', '壞'), + ('亠', '壅'), + ('亠', '壤'), + ('亠', '竒'), + ('亠', '奕'), + ('亠', '孃'), + ('亠', '孩'), + ('亠', '孰'), + ('亠', '嵜'), + ('亠', '幎'), + ('亠', '廩'), + ('亠', '弃'), + ('亠', '弯'), + ('亠', '彗'), + ('亠', '悴'), + ('亠', '慱'), + ('亠', '憬'), + ('亠', '懌'), + ('亠', '懷'), + ('亠', '懍'), + ('亠', '抃'), + ('亠', '掖'), + ('亠', '撩'), + ('亠', '擒'), + ('亠', '擅'), + ('亠', '擇'), + ('亠', '撻'), + ('亠', '擠'), + ('亠', '攘'), + ('亠', '攅'), + ('亠', '效'), + ('亠', '敲'), + ('亠', '旁'), + ('亠', '旒'), + ('亠', '暝'), + ('亠', '暾'), + ('亠', '暸'), + ('亠', '曩'), + ('亠', '柬'), + ('亠', '梳'), + ('亠', '椁'), + ('亠', '棘'), + ('亠', '棗'), + ('亠', '楔'), + ('亠', '楴'), + ('亠', '楝'), + ('亠', '槁'), + ('亠', '榠'), + ('亠', '榜'), + ('亠', '槨'), + ('亠', '榱'), + ('亠', '毓'), + ('亠', '毬'), + ('亠', '毫'), + ('亠', '氈'), + ('亠', '沛'), + ('亠', '泛'), + ('亠', '淬'), + ('亠', '渟'), + ('亠', '滂'), + ('亠', '溟'), + ('亠', '滾'), + ('亠', '漓'), + ('亠', '潦'), + ('亠', '澤'), + ('亠', '濟'), + ('亠', '燉'), + ('亠', '燎'), + ('亠', '燵'), + ('亠', '犒'), + ('亠', '狡'), + ('亠', '猜'), + ('亠', '猝'), + ('亠', '甎'), + ('亠', '甕'), + ('亠', '畆'), + ('亠', '痃'), + ('亠', '瘁'), + ('亠', '癪'), + ('亠', '皎'), + ('亠', '眩'), + ('亠', '睛'), + ('亠', '睾'), + ('亠', '瞎'), + ('亠', '瞑'), + ('亠', '碎'), + ('亠', '磅'), + ('亠', '磧'), + ('亠', '磚'), + ('亠', '禊'), + ('亠', '禳'), + ('亠', '秣'), + ('亠', '稟'), + ('亠', '禀'), + ('亠', '稾'), + ('亠', '穰'), + ('亠', '簑'), + ('亠', '簔'), + ('亠', '簀'), + ('亠', '籬'), + ('亠', '粹'), + ('亠', '繚'), + ('亠', '繹'), + ('亠', '纉'), + ('亠', '纐'), + ('亠', '纛'), + ('亠', '罔'), + ('亠', '羶'), + ('亠', '肓'), + ('亠', '腋'), + ('亠', '膀'), + ('亠', '膵'), + ('亠', '芒'), + ('亠', '茉'), + ('亠', '茱'), + ('亠', '萃'), + ('亠', '菁'), + ('亠', '蒂'), + ('亠', '蒿'), + ('亠', '蒡'), + ('亠', '蔬'), + ('亠', '薺'), + ('亠', '蛟'), + ('亠', '蜻'), + ('亠', '螟'), + ('亠', '蟀'), + ('亠', '蟄'), + ('亠', '衒'), + ('亠', '袞'), + ('亠', '袤'), + ('亠', '裘'), + ('亠', '裹'), + ('亠', '襃'), + ('亠', '襄'), + ('亠', '褻'), + ('亠', '諄'), + ('亠', '謗'), + ('亠', '謫'), + ('亠', '譯'), + ('亠', '讓'), + ('亠', '豁'), + ('亠', '貶'), + ('亠', '贄'), + ('亠', '齎'), + ('亠', '躋'), + ('亠', '迹'), + ('亠', '逑'), + ('亠', '逹'), + ('亠', '醉'), + ('亠', '醯'), + ('亠', '釀'), + ('亠', '釋'), + ('亠', '鉉'), + ('亠', '鍄'), + ('亠', '鎬'), + ('亠', '鐓'), + ('亠', '鐐'), + ('亠', '閙'), + ('亠', '闥'), + ('亠', '雍'), + ('亠', '雜'), + ('亠', '霈'), + ('亠', '霽'), + ('亠', '靜'), + ('亠', '靺'), + ('亠', '齏'), + ('亠', '韲'), + ('亠', '頏'), + ('亠', '顫'), + ('亠', '餃'), + ('亠', '駭'), + ('亠', '駮'), + ('亠', '驛'), + ('亠', '驤'), + ('亠', '驪'), + ('亠', '髞'), + ('亠', '鬧'), + ('亠', '魑'), + ('亠', '鵁'), + ('亠', '鶉'), + ('亠', '鵺'), + ('亠', '鷙'), + ('亠', '鷯'), + ('亠', '麸'), + ('亠', '黐'), + ('亠', '黥'), + ('亠', '齊'), + ('亠', '齧'), + ('亠', '凜'), + ('人', '葵'), + ('人', '以'), + ('人', '亥'), + ('人', '臥'), + ('人', '快'), + ('人', '劾'), + ('人', '咳'), + ('人', '該'), + ('人', '骸'), + ('人', '核'), + ('人', '関'), + ('人', '規'), + ('人', '侠'), + ('人', '峡'), + ('人', '挟'), + ('人', '狭'), + ('人', '渓'), + ('人', '鶏'), + ('人', '欠'), + ('人', '決'), + ('人', '訣'), + ('人', '倹'), + ('人', '券'), + ('人', '剣'), + ('人', '圏'), + ('人', '検'), + ('人', '険'), + ('人', '験'), + ('人', '鹸'), + ('人', '庚'), + ('人', '刻'), + ('人', '坐'), + ('人', '座'), + ('人', '挫'), + ('人', '咲'), + ('人', '傘'), + ('人', '讃'), + ('人', '賛'), + ('人', '似'), + ('人', '失'), + ('人', '囚'), + ('人', '春'), + ('人', '勝'), + ('人', '榛'), + ('人', '秦'), + ('人', '人'), + ('人', '翠'), + ('人', '潜'), + ('人', '閃'), + ('人', '奏'), + ('人', '爽'), + ('人', '卒'), + ('人', '替'), + ('人', '泰'), + ('人', '秩'), + ('人', '朕'), + ('人', '槻'), + ('人', '椿'), + ('人', '騰'), + ('人', '内'), + ('人', '肉'), + ('人', '納'), + ('人', '病'), + ('人', '夫'), + ('人', '扶'), + ('人', '芙'), + ('人', '丙'), + ('人', '柄'), + ('人', '俸'), + ('人', '奉'), + ('人', '捧'), + ('人', '棒'), + ('人', '頬'), + ('人', '撲'), + ('人', '湊'), + ('人', '从'), + ('人', '仄'), + ('人', '佚'), + ('人', '來'), + ('人', '俎'), + ('人', '倅'), + ('人', '倆'), + ('人', '僉'), + ('人', '僣'), + ('人', '儉'), + ('人', '决'), + ('人', '刔'), + ('人', '劍'), + ('人', '劔'), + ('人', '劒'), + ('人', '剱'), + ('人', '劵'), + ('人', '匳'), + ('人', '卷'), + ('人', '吶'), + ('人', '咎'), + ('人', '噬'), + ('人', '囃'), + ('人', '圈'), + ('人', '嗇'), + ('人', '垓'), + ('人', '埣'), + ('人', '墻'), + ('人', '夐'), + ('人', '夬'), + ('人', '夾'), + ('人', '姨'), + ('人', '孅'), + ('人', '峽'), + ('人', '嶮'), + ('人', '巫'), + ('人', '帙'), + ('人', '從'), + ('人', '徠'), + ('人', '怏'), + ('人', '悴'), + ('人', '愴'), + ('人', '憖'), + ('人', '懺'), + ('人', '抉'), + ('人', '挾'), + ('人', '揆'), + ('人', '撩'), + ('人', '攅'), + ('人', '斂'), + ('人', '昃'), + ('人', '暎'), + ('人', '檢'), + ('人', '檣'), + ('人', '歛'), + ('人', '殃'), + ('人', '殲'), + ('人', '泱'), + ('人', '泅'), + ('人', '洟'), + ('人', '浹'), + ('人', '渕'), + ('人', '淬'), + ('人', '滿'), + ('人', '滕'), + ('人', '瀲'), + ('人', '炳'), + ('人', '牆'), + ('人', '狹'), + ('人', '猝'), + ('人', '璞'), + ('人', '畉'), + ('人', '痍'), + ('人', '瘁'), + ('人', '眷'), + ('人', '瞼'), + ('人', '碎'), + ('人', '秧'), + ('人', '穡'), + ('人', '筴'), + ('人', '筮'), + ('人', '篋'), + ('人', '簽'), + ('人', '籐'), + ('人', '籘'), + ('人', '籤'), + ('人', '粹'), + ('人', '綣'), + ('人', '縱'), + ('人', '縢'), + ('人', '纉'), + ('人', '纖'), + ('人', '缺'), + ('人', '羮'), + ('人', '肭'), + ('人', '腴'), + ('人', '膵'), + ('人', '臉'), + ('人', '臾'), + ('人', '艢'), + ('人', '艱'), + ('人', '苡'), + ('人', '莢'), + ('人', '萃'), + ('人', '萸'), + ('人', '蓙'), + ('人', '薔'), + ('人', '蚋'), + ('人', '蜷'), + ('人', '衲'), + ('人', '袂'), + ('人', '覡'), + ('人', '訥'), + ('人', '誣'), + ('人', '諛'), + ('人', '譛'), + ('人', '讖'), + ('人', '豢'), + ('人', '賚'), + ('人', '趺'), + ('人', '跌'), + ('人', '蹐'), + ('人', '蹼'), + ('人', '軼'), + ('人', '輦'), + ('人', '輳'), + ('人', '醉'), + ('人', '銕'), + ('人', '鋏'), + ('人', '鎹'), + ('人', '鑚'), + ('人', '陋'), + ('人', '陜'), + ('人', '陝'), + ('人', '險'), + ('人', '雜'), + ('人', '靈'), + ('人', '靹'), + ('人', '鞅'), + ('人', '鞆'), + ('人', '駭'), + ('人', '驗'), + ('人', '鰆'), + ('人', '鰮'), + ('人', '鴃'), + ('人', '鵐'), + ('人', '鶺'), + ('人', '麩'), + ('人', '麸'), + ('人', '齒'), + ('人', '齡'), + ('化', '伊'), + ('化', '位'), + ('化', '依'), + ('化', '偉'), + ('化', '荏'), + ('化', '液'), + ('化', '億'), + ('化', '俺'), + ('化', '化'), + ('化', '仮'), + ('化', '何'), + ('化', '伽'), + ('化', '価'), + ('化', '佳'), + ('化', '花'), + ('化', '荷'), + ('化', '貨'), + ('化', '俄'), + ('化', '椛'), + ('化', '侃'), + ('化', '贋'), + ('化', '雁'), + ('化', '伎'), + ('化', '偽'), + ('化', '儀'), + ('化', '仇'), + ('化', '休'), + ('化', '供'), + ('化', '侠'), + ('化', '僑'), + ('化', '仰'), + ('化', '僅'), + ('化', '倶'), + ('化', '偶'), + ('化', '靴'), + ('化', '係'), + ('化', '傾'), + ('化', '傑'), + ('化', '件'), + ('化', '倹'), + ('化', '倦'), + ('化', '健'), + ('化', '個'), + ('化', '伍'), + ('化', '佼'), + ('化', '侯'), + ('化', '候'), + ('化', '倖'), + ('化', '喉'), + ('化', '佐'), + ('化', '債'), + ('化', '催'), + ('化', '作'), + ('化', '仕'), + ('化', '仔'), + ('化', '伺'), + ('化', '使'), + ('化', '似'), + ('化', '侍'), + ('化', '篠'), + ('化', '偲'), + ('化', '借'), + ('化', '儒'), + ('化', '修'), + ('化', '什'), + ('化', '住'), + ('化', '宿'), + ('化', '縮'), + ('化', '俊'), + ('化', '傷'), + ('化', '償'), + ('化', '伸'), + ('化', '信'), + ('化', '侵'), + ('化', '仁'), + ('化', '仙'), + ('化', '僧'), + ('化', '像'), + ('化', '促'), + ('化', '側'), + ('化', '俗'), + ('化', '他'), + ('化', '体'), + ('化', '岱'), + ('化', '袋'), + ('化', '貸'), + ('化', '黛'), + ('化', '代'), + ('化', '鷹'), + ('化', '但'), + ('化', '値'), + ('化', '仲'), + ('化', '賃'), + ('化', '佃'), + ('化', '低'), + ('化', '停'), + ('化', '偵'), + ('化', '伝'), + ('化', '倒'), + ('化', '働'), + ('化', '任'), + ('化', '俳'), + ('化', '倍'), + ('化', '伯'), + ('化', '伐'), + ('化', '筏'), + ('化', '閥'), + ('化', '伴'), + ('化', '備'), + ('化', '俵'), + ('化', '付'), + ('化', '府'), + ('化', '符'), + ('化', '腐'), + ('化', '附'), + ('化', '侮'), + ('化', '伏'), + ('化', '仏'), + ('化', '鮒'), + ('化', '併'), + ('化', '僻'), + ('化', '偏'), + ('化', '便'), + ('化', '鞭'), + ('化', '保'), + ('化', '倣'), + ('化', '俸'), + ('化', '褒'), + ('化', '傍'), + ('化', '僕'), + ('化', '俣'), + ('化', '侭'), + ('化', '儲'), + ('化', '夜'), + ('化', '佑'), + ('化', '優'), + ('化', '悠'), + ('化', '傭'), + ('化', '侶'), + ('化', '僚'), + ('化', '倫'), + ('化', '伶'), + ('化', '例'), + ('化', '倭'), + ('化', '仍'), + ('化', '仆'), + ('化', '仂'), + ('化', '仗'), + ('化', '仞'), + ('化', '仭'), + ('化', '仟'), + ('化', '价'), + ('化', '伉'), + ('化', '佚'), + ('化', '估'), + ('化', '佛'), + ('化', '佝'), + ('化', '佗'), + ('化', '佇'), + ('化', '佶'), + ('化', '侈'), + ('化', '侏'), + ('化', '侘'), + ('化', '佻'), + ('化', '佩'), + ('化', '佰'), + ('化', '侑'), + ('化', '佯'), + ('化', '儘'), + ('化', '俔'), + ('化', '俟'), + ('化', '俘'), + ('化', '俛'), + ('化', '俑'), + ('化', '俚'), + ('化', '俐'), + ('化', '俤'), + ('化', '俥'), + ('化', '倚'), + ('化', '倨'), + ('化', '倔'), + ('化', '倪'), + ('化', '倥'), + ('化', '倅'), + ('化', '伜'), + ('化', '俶'), + ('化', '倡'), + ('化', '倩'), + ('化', '倬'), + ('化', '俾'), + ('化', '俯'), + ('化', '們'), + ('化', '倆'), + ('化', '偃'), + ('化', '假'), + ('化', '偕'), + ('化', '偐'), + ('化', '偈'), + ('化', '做'), + ('化', '偖'), + ('化', '偬'), + ('化', '偸'), + ('化', '傀'), + ('化', '傚'), + ('化', '傅'), + ('化', '傴'), + ('化', '傲'), + ('化', '僊'), + ('化', '傳'), + ('化', '僂'), + ('化', '僖'), + ('化', '僞'), + ('化', '僥'), + ('化', '僭'), + ('化', '僣'), + ('化', '僮'), + ('化', '價'), + ('化', '僵'), + ('化', '儉'), + ('化', '儁'), + ('化', '儂'), + ('化', '儖'), + ('化', '儕'), + ('化', '儔'), + ('化', '儚'), + ('化', '儡'), + ('化', '儺'), + ('化', '儷'), + ('化', '儼'), + ('化', '儻'), + ('化', '凭'), + ('化', '咐'), + ('化', '囮'), + ('化', '垈'), + ('化', '坿'), + ('化', '埖'), + ('化', '堡'), + ('化', '佞'), + ('化', '侫'), + ('化', '姙'), + ('化', '恁'), + ('化', '恷'), + ('化', '憊'), + ('化', '應'), + ('化', '拊'), + ('化', '掖'), + ('化', '柎'), + ('化', '條'), + ('化', '椨'), + ('化', '滌'), + ('化', '濮'), + ('化', '烋'), + ('化', '倏'), + ('化', '猴'), + ('化', '玳'), + ('化', '硴'), + ('化', '筰'), + ('化', '筱'), + ('化', '篌'), + ('化', '糀'), + ('化', '絛'), + ('化', '縱'), + ('化', '脩'), + ('化', '腋'), + ('化', '腑'), + ('化', '膺'), + ('化', '苻'), + ('化', '茯'), + ('化', '莅'), + ('化', '葆'), + ('化', '蓚'), + ('化', '蓿'), + ('化', '袵'), + ('化', '袱'), + ('化', '褓'), + ('化', '訛'), + ('化', '貅'), + ('化', '軅'), + ('化', '軈'), + ('化', '輦'), + ('化', '錵'), + ('化', '鏥'), + ('化', '鮴'), + ('化', '鴈'), + ('个', '姶'), + ('个', '斡'), + ('个', '袷'), + ('个', '蔭'), + ('个', '陰'), + ('个', '鋭'), + ('个', '於'), + ('个', '介'), + ('个', '会'), + ('个', '界'), + ('个', '絵'), + ('个', '芥'), + ('个', '恰'), + ('个', '幹'), + ('个', '翰'), + ('个', '舘'), + ('个', '含'), + ('个', '企'), + ('个', '給'), + ('个', '琴'), + ('个', '禽'), + ('个', '衿'), + ('个', '吟'), + ('个', '倹'), + ('个', '剣'), + ('个', '検'), + ('个', '険'), + ('个', '験'), + ('个', '鹸'), + ('个', '檎'), + ('个', '閤'), + ('个', '合'), + ('个', '今'), + ('个', '祭'), + ('个', '傘'), + ('个', '飼'), + ('个', '漆'), + ('个', '舎'), + ('个', '捨'), + ('个', '斜'), + ('个', '拾'), + ('个', '叙'), + ('个', '徐'), + ('个', '除'), + ('个', '疹'), + ('个', '診'), + ('个', '脊'), + ('个', '栓'), + ('个', '詮'), + ('个', '全'), + ('个', '創'), + ('个', '倉'), + ('个', '槍'), + ('个', '蒼'), + ('个', '鎗'), + ('个', '俗'), + ('个', '谷'), + ('个', '茶'), + ('个', '珍'), + ('个', '塗'), + ('个', '途'), + ('个', '塔'), + ('个', '搭'), + ('个', '答'), + ('个', '念'), + ('个', '捻'), + ('个', '硲'), + ('个', '蛤'), + ('个', '膝'), + ('个', '桧'), + ('个', '謬'), + ('个', '舗'), + ('个', '稔'), + ('个', '命'), + ('个', '愉'), + ('个', '愈'), + ('个', '癒'), + ('个', '諭'), + ('个', '輸'), + ('个', '裕'), + ('个', '余'), + ('个', '容'), + ('个', '溶'), + ('个', '熔'), + ('个', '蓉'), + ('个', '慾'), + ('个', '欲'), + ('个', '浴'), + ('个', '寮'), + ('个', '療'), + ('个', '瞭'), + ('个', '遼'), + ('个', '領'), + ('个', '倫'), + ('个', '輪'), + ('个', '令'), + ('个', '伶'), + ('个', '冷'), + ('个', '嶺'), + ('个', '怜'), + ('个', '玲'), + ('个', '苓'), + ('个', '鈴'), + ('个', '零'), + ('个', '齢'), + ('个', '論'), + ('个', '个'), + ('个', '舒'), + ('个', '价'), + ('个', '侖'), + ('个', '會'), + ('个', '偸'), + ('个', '僉'), + ('个', '儉'), + ('个', '兪'), + ('个', '剳'), + ('个', '劍'), + ('个', '劔'), + ('个', '劒'), + ('个', '剱'), + ('个', '勠'), + ('个', '匳'), + ('个', '參'), + ('个', '哈'), + ('个', '唹'), + ('个', '唸'), + ('个', '喩'), + ('个', '囹'), + ('个', '壑'), + ('个', '寥'), + ('个', '岑'), + ('个', '峇'), + ('个', '峪'), + ('个', '崙'), + ('个', '崘'), + ('个', '嶮'), + ('个', '廖'), + ('个', '慘'), + ('个', '戮'), + ('个', '拿'), + ('个', '掵'), + ('个', '揄'), + ('个', '搶'), + ('个', '摎'), + ('个', '擒'), + ('个', '敍'), + ('个', '敘'), + ('个', '斂'), + ('个', '檜'), + ('个', '棯'), + ('个', '棆'), + ('个', '楡'), + ('个', '榕'), + ('个', '樛'), + ('个', '檢'), + ('个', '飮'), + ('个', '歙'), + ('个', '歛'), + ('个', '殄'), + ('个', '洽'), + ('个', '淤'), + ('个', '淪'), + ('个', '渝'), + ('个', '滄'), + ('个', '澣'), + ('个', '澪'), + ('个', '濬'), + ('个', '瀚'), + ('个', '瀲'), + ('个', '獪'), + ('个', '瑜'), + ('个', '畍'), + ('个', '畛'), + ('个', '畭'), + ('个', '疥'), + ('个', '痊'), + ('个', '瘉'), + ('个', '瘠'), + ('个', '瘡'), + ('个', '盒'), + ('个', '睿'), + ('个', '瞼'), + ('个', '矜'), + ('个', '穃'), + ('个', '筌'), + ('个', '箚'), + ('个', '簽'), + ('个', '籥'), + ('个', '粭'), + ('个', '綸'), + ('个', '繆'), + ('个', '繪'), + ('个', '羚'), + ('个', '翕'), + ('个', '聆'), + ('个', '膠'), + ('个', '膾'), + ('个', '臉'), + ('个', '舍'), + ('个', '舖'), + ('个', '艙'), + ('个', '荅'), + ('个', '莟'), + ('个', '荼'), + ('个', '蓼'), + ('个', '薈'), + ('个', '藜'), + ('个', '蛉'), + ('个', '蜍'), + ('个', '蝓'), + ('个', '衾'), + ('个', '袗'), + ('个', '覦'), + ('个', '谺'), + ('个', '豁'), + ('个', '谿'), + ('个', '貪'), + ('个', '趁'), + ('个', '踰'), + ('个', '蹌'), + ('个', '軫'), + ('个', '逧'), + ('个', '逾'), + ('个', '郤'), + ('个', '醪'), + ('个', '銓'), + ('个', '鋏'), + ('个', '錵'), + ('个', '鍮'), + ('个', '鎔'), + ('个', '鏥'), + ('个', '鏐'), + ('个', '鑰'), + ('个', '閼'), + ('个', '險'), + ('个', '鞳'), + ('个', '頷'), + ('个', '餘'), + ('个', '餮'), + ('个', '驗'), + ('个', '鰺'), + ('个', '鯲'), + ('个', '鯰'), + ('个', '鱠'), + ('个', '鴒'), + ('个', '鴿'), + ('个', '鷯'), + ('个', '黔'), + ('个', '齡'), + ('个', '龕'), + ('个', '龠'), + ('儿', '綾'), + ('儿', '逸'), + ('儿', '允'), + ('儿', '胤'), + ('儿', '院'), + ('儿', '厩'), + ('儿', '鋭'), + ('儿', '悦'), + ('儿', '閲'), + ('儿', '塊'), + ('儿', '魁'), + ('儿', '界'), + ('儿', '芥'), + ('儿', '隔'), + ('儿', '兜'), + ('儿', '竃'), + ('儿', '冠'), + ('儿', '勘'), + ('儿', '喚'), + ('儿', '堪'), + ('儿', '完'), + ('儿', '換'), + ('儿', '莞'), + ('儿', '玩'), + ('儿', '翫'), + ('儿', '頑'), + ('儿', '輝'), + ('儿', '鬼'), + ('儿', '橘'), + ('儿', '究'), + ('儿', '窮'), + ('儿', '兇'), + ('儿', '競'), + ('儿', '境'), + ('儿', '況'), + ('儿', '鏡'), + ('儿', '尭'), + ('儿', '暁'), + ('儿', '空'), + ('儿', '窟'), + ('儿', '窪'), + ('儿', '兄'), + ('儿', '見'), + ('儿', '元'), + ('儿', '虎'), + ('儿', '光'), + ('儿', '控'), + ('儿', '晃'), + ('儿', '腔'), + ('儿', '克'), + ('儿', '魂'), + ('儿', '唆'), + ('儿', '堺'), + ('儿', '搾'), + ('儿', '窄'), + ('儿', '酸'), + ('儿', '四'), + ('儿', '児'), + ('儿', '呪'), + ('儿', '蒐'), + ('儿', '醜'), + ('儿', '充'), + ('儿', '銃'), + ('儿', '祝'), + ('儿', '俊'), + ('儿', '峻'), + ('儿', '竣'), + ('儿', '駿'), + ('儿', '商'), + ('儿', '焼'), + ('儿', '深'), + ('儿', '甚'), + ('儿', '勢'), + ('儿', '税'), + ('儿', '窃'), + ('儿', '説'), + ('儿', '先'), + ('儿', '洗'), + ('儿', '穿'), + ('儿', '銑'), + ('儿', '窓'), + ('儿', '続'), + ('儿', '脱'), + ('儿', '探'), + ('儿', '湛'), + ('儿', '窒'), + ('儿', '兆'), + ('儿', '挑'), + ('儿', '眺'), + ('儿', '跳'), + ('儿', '銚'), + ('儿', '纏'), + ('儿', '兎'), + ('儿', '菟'), + ('儿', '党'), + ('儿', '桃'), + ('儿', '統'), + ('儿', '逃'), + ('儿', '涜'), + ('儿', '禿'), + ('儿', '読'), + ('儿', '突'), + ('儿', '熱'), + ('儿', '廃'), + ('儿', '売'), + ('儿', '溌'), + ('儿', '発'), + ('儿', '醗'), + ('儿', '挽'), + ('儿', '晩'), + ('儿', '匹'), + ('儿', '菱'), + ('儿', '彪'), + ('儿', '勉'), + ('儿', '娩'), + ('儿', '貌'), + ('儿', '睦'), + ('儿', '幌'), + ('儿', '魔'), + ('儿', '魅'), + ('儿', '免'), + ('儿', '融'), + ('儿', '窯'), + ('儿', '耀'), + ('儿', '陸'), + ('儿', '亮'), + ('儿', '凌'), + ('儿', '稜'), + ('儿', '陵'), + ('儿', '价'), + ('儿', '佻'), + ('儿', '俛'), + ('儿', '倪'), + ('儿', '倥'), + ('儿', '傀'), + ('儿', '僥'), + ('儿', '儿'), + ('儿', '兀'), + ('儿', '兒'), + ('儿', '兌'), + ('儿', '兔'), + ('儿', '兢'), + ('儿', '竸'), + ('儿', '冏'), + ('儿', '冕'), + ('儿', '冤'), + ('儿', '冦'), + ('儿', '况'), + ('儿', '剋'), + ('儿', '吮'), + ('儿', '啌'), + ('儿', '喨'), + ('儿', '囈'), + ('儿', '圀'), + ('儿', '奐'), + ('儿', '姚'), + ('儿', '寃'), + ('儿', '寇'), + ('儿', '尅'), + ('儿', '尠'), + ('儿', '崚'), + ('儿', '嵬'), + ('儿', '嶢'), + ('儿', '巉'), + ('儿', '巍'), + ('儿', '帶'), + ('儿', '廛'), + ('儿', '忱'), + ('儿', '恍'), + ('儿', '悛'), + ('儿', '悗'), + ('儿', '愧'), + ('儿', '憺'), + ('儿', '戡'), + ('儿', '擔'), + ('儿', '撓'), + ('儿', '撥'), + ('儿', '攜'), + ('儿', '斟'), + ('儿', '晄'), + ('儿', '晁'), + ('儿', '曉'), + ('儿', '朮'), + ('儿', '梭'), + ('儿', '椶'), + ('儿', '椹'), + ('儿', '槐'), + ('儿', '橈'), + ('儿', '檐'), + ('儿', '殼'), + ('儿', '泗'), + ('儿', '洸'), + ('儿', '浣'), + ('儿', '淕'), + ('儿', '渙'), + ('儿', '滉'), + ('儿', '滯'), + ('儿', '澆'), + ('儿', '濳'), + ('儿', '澹'), + ('儿', '烱'), + ('儿', '煥'), + ('儿', '燒'), + ('儿', '牘'), + ('儿', '犢'), + ('儿', '猊'), + ('儿', '獻'), + ('儿', '琥'), + ('儿', '瑰'), + ('儿', '痲'), + ('儿', '癈'), + ('儿', '皃'), + ('儿', '皖'), + ('儿', '皴'), + ('儿', '睨'), + ('儿', '瞻'), + ('儿', '碪'), + ('儿', '磽'), + ('儿', '禝'), + ('儿', '稷'), + ('儿', '穹'), + ('儿', '穽'), + ('儿', '窈'), + ('儿', '窗'), + ('儿', '窕'), + ('儿', '窘'), + ('儿', '窖'), + ('儿', '竈'), + ('儿', '窰'), + ('儿', '窶'), + ('儿', '竅'), + ('儿', '竄'), + ('儿', '窿'), + ('儿', '邃'), + ('儿', '竇'), + ('儿', '竊'), + ('儿', '筅'), + ('儿', '箜'), + ('儿', '簷'), + ('儿', '糂'), + ('儿', '鬻'), + ('儿', '絖'), + ('儿', '繞'), + ('儿', '續'), + ('儿', '纔'), + ('儿', '罕'), + ('儿', '羌'), + ('儿', '翹'), + ('儿', '胱'), + ('儿', '膈'), + ('儿', '膣'), + ('儿', '膽'), + ('儿', '芫'), + ('儿', '莵'), + ('儿', '蔆'), + ('儿', '蒄'), + ('儿', '蔕'), + ('儿', '蕘'), + ('儿', '薐'), + ('儿', '藐'), + ('儿', '藝'), + ('儿', '號'), + ('儿', '蛻'), + ('儿', '蟯'), + ('儿', '蟾'), + ('儿', '裔'), + ('儿', '褫'), + ('儿', '覿'), + ('儿', '誂'), + ('儿', '謖'), + ('儿', '譎'), + ('儿', '譫'), + ('儿', '讀'), + ('儿', '讒'), + ('儿', '讚'), + ('儿', '貎'), + ('儿', '贊'), + ('儿', '贍'), + ('儿', '贖'), + ('儿', '跣'), + ('儿', '躔'), + ('儿', '輓'), + ('儿', '逡'), + ('儿', '逵'), + ('儿', '遞'), + ('儿', '遶'), + ('儿', '邊'), + ('儿', '鍖'), + ('儿', '鐃'), + ('儿', '鑁'), + ('儿', '鑽'), + ('儿', '鑚'), + ('儿', '阮'), + ('儿', '隗'), + ('儿', '霓'), + ('儿', '竟'), + ('儿', '頏'), + ('儿', '餽'), + ('儿', '饒'), + ('儿', '饕'), + ('儿', '駟'), + ('儿', '驍'), + ('儿', '鬩'), + ('儿', '鬲'), + ('儿', '魄'), + ('儿', '魃'), + ('儿', '魏'), + ('儿', '魍'), + ('儿', '魎'), + ('儿', '魑'), + ('儿', '魘'), + ('儿', '鯢'), + ('儿', '鯱'), + ('儿', '鷸'), + ('儿', '麑'), + ('儿', '黷'), + ('儿', '堯'), + ('入', '久'), + ('入', '込'), + ('入', '入'), + ('入', '兩'), + ('入', '兪'), + ('入', '叺'), + ('入', '圦'), + ('入', '懣'), + ('入', '杁'), + ('入', '柩'), + ('入', '滿'), + ('入', '疚'), + ('入', '瞞'), + ('入', '窩'), + ('入', '糴'), + ('入', '裲'), + ('入', '蹣'), + ('入', '輛'), + ('入', '陝'), + ('入', '魎'), + ('入', '鳰'), + ('ハ', '異'), + ('ハ', '遺'), + ('ハ', '溢'), + ('ハ', '員'), + ('ハ', '韻'), + ('ハ', '窺'), + ('ハ', '唄'), + ('ハ', '叡'), + ('ハ', '嬰'), + ('ハ', '穎'), + ('ハ', '頴'), + ('ハ', '益'), + ('ハ', '沿'), + ('ハ', '演'), + ('ハ', '鉛'), + ('ハ', '横'), + ('ハ', '翁'), + ('ハ', '黄'), + ('ハ', '寡'), + ('ハ', '貨'), + ('ハ', '賀'), + ('ハ', '介'), + ('ハ', '貝'), + ('ハ', '額'), + ('ハ', '顎'), + ('ハ', '鎌'), + ('ハ', '寒'), + ('ハ', '慣'), + ('ハ', '貫'), + ('ハ', '関'), + ('ハ', '贋'), + ('ハ', '頑'), + ('ハ', '顔'), + ('ハ', '願'), + ('ハ', '基'), + ('ハ', '旗'), + ('ハ', '期'), + ('ハ', '棋'), + ('ハ', '貴'), + ('ハ', '欺'), + ('ハ', '挙'), + ('ハ', '供'), + ('ハ', '共'), + ('ハ', '恭'), + ('ハ', '興'), + ('ハ', '倶'), + ('ハ', '具'), + ('ハ', '虞'), + ('ハ', '傾'), + ('ハ', '頚'), + ('ハ', '穴'), + ('ハ', '兼'), + ('ハ', '嫌'), + ('ハ', '謙'), + ('ハ', '賢'), + ('ハ', '顕'), + ('ハ', '顧'), + ('ハ', '呉'), + ('ハ', '娯'), + ('ハ', '碁'), + ('ハ', '誤'), + ('ハ', '公'), + ('ハ', '巷'), + ('ハ', '洪'), + ('ハ', '港'), + ('ハ', '耕'), + ('ハ', '貢'), + ('ハ', '購'), + ('ハ', '項'), + ('ハ', '頃'), + ('ハ', '鎖'), + ('ハ', '債'), + ('ハ', '塞'), + ('ハ', '財'), + ('ハ', '堺'), + ('ハ', '策'), + ('ハ', '讃'), + ('ハ', '賛'), + ('ハ', '刺'), + ('ハ', '斯'), + ('ハ', '資'), + ('ハ', '賜'), + ('ハ', '爾'), + ('ハ', '璽'), + ('ハ', '宍'), + ('ハ', '質'), + ('ハ', '朱'), + ('ハ', '殊'), + ('ハ', '珠'), + ('ハ', '順'), + ('ハ', '償'), + ('ハ', '松'), + ('ハ', '訟'), + ('ハ', '賞'), + ('ハ', '乗'), + ('ハ', '壌'), + ('ハ', '嬢'), + ('ハ', '穣'), + ('ハ', '譲'), + ('ハ', '醸'), + ('ハ', '慎'), + ('ハ', '真'), + ('ハ', '須'), + ('ハ', '頗'), + ('ハ', '瀬'), + ('ハ', '積'), + ('ハ', '籍'), + ('ハ', '績'), + ('ハ', '責'), + ('ハ', '蹟'), + ('ハ', '碩'), + ('ハ', '撰'), + ('ハ', '船'), + ('ハ', '詮'), + ('ハ', '賎'), + ('ハ', '選'), + ('ハ', '全'), + ('ハ', '曾'), + ('ハ', '総'), + ('ハ', '聡'), + ('ハ', '贈'), + ('ハ', '側'), + ('ハ', '則'), + ('ハ', '束'), + ('ハ', '測'), + ('ハ', '速'), + ('ハ', '俗'), + ('ハ', '賊'), + ('ハ', '其'), + ('ハ', '損'), + ('ハ', '戴'), + ('ハ', '貸'), + ('ハ', '題'), + ('ハ', '只'), + ('ハ', '巽'), + ('ハ', '谷'), + ('ハ', '貯'), + ('ハ', '頂'), + ('ハ', '賃'), + ('ハ', '鎮'), + ('ハ', '漬'), + ('ハ', '潰'), + ('ハ', '偵'), + ('ハ', '貞'), + ('ハ', '禎'), + ('ハ', '典'), + ('ハ', '填'), + ('ハ', '貼'), + ('ハ', '顛'), + ('ハ', '殿'), + ('ハ', '澱'), + ('ハ', '塗'), + ('ハ', '賭'), + ('ハ', '途'), + ('ハ', '頭'), + ('ハ', '寅'), + ('ハ', '噸'), + ('ハ', '頓'), + ('ハ', '賑'), + ('ハ', '嚢'), + ('ハ', '敗'), + ('ハ', '狽'), + ('ハ', '買'), + ('ハ', '賠'), + ('ハ', '曝'), + ('ハ', '爆'), + ('ハ', '硲'), + ('ハ', '八'), + ('ハ', '販'), + ('ハ', '煩'), + ('ハ', '頒'), + ('ハ', '費'), + ('ハ', '鋲'), + ('ハ', '浜'), + ('ハ', '瀕'), + ('ハ', '貧'), + ('ハ', '賓'), + ('ハ', '頻'), + ('ハ', '負'), + ('ハ', '賦'), + ('ハ', '分'), + ('ハ', '噴'), + ('ハ', '墳'), + ('ハ', '憤'), + ('ハ', '扮'), + ('ハ', '粉'), + ('ハ', '紛'), + ('ハ', '雰'), + ('ハ', '兵'), + ('ハ', '塀'), + ('ハ', '頁'), + ('ハ', '暴'), + ('ハ', '貿'), + ('ハ', '頬'), + ('ハ', '盆'), + ('ハ', '妹'), + ('ハ', '昧'), + ('ハ', '槙'), + ('ハ', '亦'), + ('ハ', '抹'), + ('ハ', '末'), + ('ハ', '沫'), + ('ハ', '味'), + ('ハ', '未'), + ('ハ', '魅'), + ('ハ', '箕'), + ('ハ', '冥'), + ('ハ', '耗'), + ('ハ', '貰'), + ('ハ', '裕'), + ('ハ', '余'), + ('ハ', '輿'), + ('ハ', '預'), + ('ハ', '容'), + ('ハ', '溶'), + ('ハ', '熔'), + ('ハ', '蓉'), + ('ハ', '慾'), + ('ハ', '欲'), + ('ハ', '浴'), + ('ハ', '翼'), + ('ハ', '頼'), + ('ハ', '領'), + ('ハ', '類'), + ('ハ', '嶺'), + ('ハ', '廉'), + ('ハ', '恋'), + ('ハ', '煉'), + ('ハ', '簾'), + ('ハ', '練'), + ('ハ', '錬'), + ('ハ', '賂'), + ('ハ', '六'), + ('ハ', '賄'), + ('ハ', '乘'), + ('ハ', '侏'), + ('ハ', '來'), + ('ハ', '價'), + ('ハ', '兮'), + ('ハ', '冀'), + ('ハ', '剌'), + ('ハ', '劵'), + ('ハ', '勣'), + ('ハ', '匱'), + ('ハ', '卻'), + ('ハ', '卷'), + ('ハ', '厠'), + ('ハ', '厮'), + ('ハ', '叭'), + ('ハ', '吩'), + ('ハ', '哄'), + ('ハ', '咫'), + ('ハ', '喇'), + ('ハ', '嗔'), + ('ハ', '嘖'), + ('ハ', '嗽'), + ('ハ', '嘶'), + ('ハ', '嚶'), + ('ハ', '囂'), + ('ハ', '囎'), + ('ハ', '圓'), + ('ハ', '壑'), + ('ハ', '壙'), + ('ハ', '奕'), + ('ハ', '嫩'), + ('ハ', '嬪'), + ('ハ', '嬾'), + ('ハ', '寐'), + ('ハ', '實'), + ('ハ', '寶'), + ('ハ', '寳'), + ('ハ', '屓'), + ('ハ', '岔'), + ('ハ', '岼'), + ('ハ', '峪'), + ('ハ', '嶼'), + ('ハ', '巓'), + ('ハ', '幀'), + ('ハ', '幎'), + ('ハ', '廁'), + ('ハ', '廣'), + ('ハ', '廝'), + ('ハ', '彌'), + ('ハ', '弯'), + ('ハ', '徠'), + ('ハ', '忿'), + ('ハ', '怦'), + ('ハ', '惧'), + ('ハ', '悚'), + ('ハ', '惻'), + ('ハ', '愼'), + ('ハ', '憙'), + ('ハ', '憖'), + ('ハ', '懶'), + ('ハ', '拌'), + ('ハ', '拱'), + ('ハ', '揀'), + ('ハ', '搴'), + ('ハ', '搆'), + ('ハ', '撕'), + ('ハ', '擧'), + ('ハ', '舉'), + ('ハ', '擯'), + ('ハ', '擴'), + ('ハ', '攀'), + ('ハ', '攘'), + ('ハ', '攅'), + ('ハ', '敕'), + ('ハ', '暝'), + ('ハ', '曠'), + ('ハ', '曩'), + ('ハ', '朞'), + ('ハ', '朿'), + ('ハ', '枩'), + ('ハ', '枌'), + ('ハ', '枳'), + ('ハ', '梹'), + ('ハ', '棊'), + ('ハ', '棘'), + ('ハ', '棗'), + ('ハ', '椣'), + ('ハ', '楝'), + ('ハ', '槓'), + ('ハ', '寨'), + ('ハ', '榠'), + ('ハ', '榕'), + ('ハ', '樌'), + ('ハ', '櫃'), + ('ハ', '檳'), + ('ハ', '櫻'), + ('ハ', '欅'), + ('ハ', '歟'), + ('ハ', '殞'), + ('ハ', '殯'), + ('ハ', '氛'), + ('ハ', '汾'), + ('ハ', '泙'), + ('ハ', '洙'), + ('ハ', '浚'), + ('ハ', '淇'), + ('ハ', '淞'), + ('ハ', '溂'), + ('ハ', '溟'), + ('ハ', '潁'), + ('ハ', '滾'), + ('ハ', '濂'), + ('ハ', '濆'), + ('ハ', '濬'), + ('ハ', '濔'), + ('ハ', '濱'), + ('ハ', '濺'), + ('ハ', '瀑'), + ('ハ', '瀰'), + ('ハ', '熕'), + ('ハ', '爛'), + ('ハ', '爨'), + ('ハ', '牘'), + ('ハ', '犢'), + ('ハ', '獺'), + ('ハ', '瑣'), + ('ハ', '瓔'), + ('ハ', '瓮'), + ('ハ', '瓰'), + ('ハ', '癜'), + ('ハ', '癩'), + ('ハ', '癪'), + ('ハ', '癲'), + ('ハ', '盻'), + ('ハ', '眞'), + ('ハ', '眛'), + ('ハ', '睿'), + ('ハ', '瞋'), + ('ハ', '瞑'), + ('ハ', '瞶'), + ('ハ', '礦'), + ('ハ', '碵'), + ('ハ', '磧'), + ('ハ', '祺'), + ('ハ', '禳'), + ('ハ', '秉'), + ('ハ', '秣'), + ('ハ', '稘'), + ('ハ', '穃'), + ('ハ', '竇'), + ('ハ', '簀'), + ('ハ', '簣'), + ('ハ', '簧'), + ('ハ', '籏'), + ('ハ', '籟'), + ('ハ', '繽'), + ('ハ', '纈'), + ('ハ', '纉'), + ('ハ', '續'), + ('ハ', '纐'), + ('ハ', '纓'), + ('ハ', '罌'), + ('ハ', '耘'), + ('ハ', '耙'), + ('ハ', '耡'), + ('ハ', '耨'), + ('ハ', '腆'), + ('ハ', '膩'), + ('ハ', '臀'), + ('ハ', '與'), + ('ハ', '舩'), + ('ハ', '芬'), + ('ハ', '苹'), + ('ハ', '茉'), + ('ハ', '茱'), + ('ハ', '茣'), + ('ハ', '荼'), + ('ハ', '菘'), + ('ハ', '蓊'), + ('ハ', '蕀'), + ('ハ', '蕷'), + ('ハ', '藉'), + ('ハ', '藕'), + ('ハ', '蘋'), + ('ハ', '藾'), + ('ハ', '蚣'), + ('ハ', '蛬'), + ('ハ', '蛛'), + ('ハ', '蜈'), + ('ハ', '螟'), + ('ハ', '袞'), + ('ハ', '裹'), + ('ハ', '襄'), + ('ハ', '襭'), + ('ハ', '覿'), + ('ハ', '誅'), + ('ハ', '諫'), + ('ハ', '謇'), + ('ハ', '諡'), + ('ハ', '譽'), + ('ハ', '讀'), + ('ハ', '讚'), + ('ハ', '谺'), + ('ハ', '豁'), + ('ハ', '戝'), + ('ハ', '貭'), + ('ハ', '貪'), + ('ハ', '貽'), + ('ハ', '貲'), + ('ハ', '貳'), + ('ハ', '貮'), + ('ハ', '貶'), + ('ハ', '賈'), + ('ハ', '賁'), + ('ハ', '賤'), + ('ハ', '賣'), + ('ハ', '賚'), + ('ハ', '賽'), + ('ハ', '賺'), + ('ハ', '賻'), + ('ハ', '贄'), + ('ハ', '贅'), + ('ハ', '贊'), + ('ハ', '贇'), + ('ハ', '贏'), + ('ハ', '贍'), + ('ハ', '贐'), + ('ハ', '齎'), + ('ハ', '贓'), + ('ハ', '賍'), + ('ハ', '贔'), + ('ハ', '贖'), + ('ハ', '踈'), + ('ハ', '蹇'), + ('ハ', '躓'), + ('ハ', '邇'), + ('ハ', '迹'), + ('ハ', '逧'), + ('ハ', '遉'), + ('ハ', '邉'), + ('ハ', '郤'), + ('ハ', '釁'), + ('ハ', '釐'), + ('ハ', '釟'), + ('ハ', '釡'), + ('ハ', '銖'), + ('ハ', '鎰'), + ('ハ', '鎭'), + ('ハ', '鎔'), + ('ハ', '鎹'), + ('ハ', '鐐'), + ('ハ', '鑛'), + ('ハ', '鑽'), + ('ハ', '鑚'), + ('ハ', '閧'), + ('ハ', '闌'), + ('ハ', '隕'), + ('ハ', '靺'), + ('ハ', '韆'), + ('ハ', '頏'), + ('ハ', '頌'), + ('ハ', '頸'), + ('ハ', '頤'), + ('ハ', '頡'), + ('ハ', '頷'), + ('ハ', '頽'), + ('ハ', '顆'), + ('ハ', '顏'), + ('ハ', '顋'), + ('ハ', '顫'), + ('ハ', '顯'), + ('ハ', '顰'), + ('ハ', '顱'), + ('ハ', '顴'), + ('ハ', '顳'), + ('ハ', '颶'), + ('ハ', '餘'), + ('ハ', '饋'), + ('ハ', '饌'), + ('ハ', '騏'), + ('ハ', '騫'), + ('ハ', '驥'), + ('ハ', '驤'), + ('ハ', '鬆'), + ('ハ', '鬚'), + ('ハ', '鬢'), + ('ハ', '鬨'), + ('ハ', '鰌'), + ('ハ', '鴪'), + ('ハ', '鵙'), + ('ハ', '鶇'), + ('ハ', '鶲'), + ('ハ', '鷆'), + ('ハ', '鷏'), + ('ハ', '鸚'), + ('ハ', '麌'), + ('ハ', '麒'), + ('ハ', '黌'), + ('ハ', '黷'), + ('ハ', '黹'), + ('ハ', '黻'), + ('ハ', '黼'), + ('ハ', '鼕'), + ('ハ', '槇'), + ('并', '溢'), + ('并', '鵜'), + ('并', '噂'), + ('并', '鋭'), + ('并', '益'), + ('并', '悦'), + ('并', '閲'), + ('并', '艶'), + ('并', '鉛'), + ('并', '岡'), + ('并', '凱'), + ('并', '鎧'), + ('并', '釜'), + ('并', '鎌'), + ('并', '巻'), + ('并', '関'), + ('并', '喜'), + ('并', '嬉'), + ('并', '儀'), + ('并', '犠'), + ('并', '義'), + ('并', '蟻'), + ('并', '議'), + ('并', '逆'), + ('并', '侠'), + ('并', '峡'), + ('并', '挟'), + ('并', '狭'), + ('并', '業'), + ('并', '群'), + ('并', '兼'), + ('并', '券'), + ('并', '圏'), + ('并', '嫌'), + ('并', '拳'), + ('并', '捲'), + ('并', '献'), + ('并', '謙'), + ('并', '諺'), + ('并', '乎'), + ('并', '呼'), + ('并', '鼓'), + ('并', '綱'), + ('并', '鋼'), + ('并', '剛'), + ('并', '甑'), + ('并', '嵯'), + ('并', '差'), + ('并', '瑳'), + ('并', '咲'), + ('并', '朔'), + ('并', '薩'), + ('并', '産'), + ('并', '慈'), + ('并', '滋'), + ('并', '磁'), + ('并', '首'), + ('并', '樹'), + ('并', '酋'), + ('并', '従'), + ('并', '縦'), + ('并', '遵'), + ('并', '勝'), + ('并', '商'), + ('并', '祥'), + ('并', '詳'), + ('并', '新'), + ('并', '薪'), + ('并', '親'), + ('并', '厨'), + ('并', '逗'), + ('并', '遂'), + ('并', '澄'), + ('并', '税'), + ('并', '説'), + ('并', '煎'), + ('并', '箭'), + ('并', '羨'), + ('并', '鮮'), + ('并', '前'), + ('并', '善'), + ('并', '繕'), + ('并', '膳'), + ('并', '噌'), + ('并', '塑'), + ('并', '曽'), + ('并', '遡'), + ('并', '僧'), + ('并', '叢'), + ('并', '層'), + ('并', '送'), + ('并', '増'), + ('并', '憎'), + ('并', '贈'), + ('并', '揃'), + ('并', '尊'), + ('并', '隊'), + ('并', '達'), + ('并', '脱'), + ('并', '樽'), + ('并', '短'), + ('并', '遅'), + ('并', '嫡'), + ('并', '着'), + ('并', '朕'), + ('并', '鎮'), + ('并', '墜'), + ('并', '坪'), + ('并', '剃'), + ('并', '帝'), + ('并', '弟'), + ('并', '悌'), + ('并', '梯'), + ('并', '締'), + ('并', '諦'), + ('并', '蹄'), + ('并', '鄭'), + ('并', '摘'), + ('并', '敵'), + ('并', '滴'), + ('并', '適'), + ('并', '鏑'), + ('并', '登'), + ('并', '燈'), + ('并', '痘'), + ('并', '豆'), + ('并', '鐙'), + ('并', '頭'), + ('并', '騰'), + ('并', '闘'), + ('并', '導'), + ('并', '道'), + ('并', '楢'), + ('并', '南'), + ('并', '楠'), + ('并', '秤'), + ('并', '噺'), + ('并', '伴'), + ('并', '判'), + ('并', '半'), + ('并', '叛'), + ('并', '畔'), + ('并', '美'), + ('并', '彦'), + ('并', '評'), + ('并', '鋲'), + ('并', '瓶'), + ('并', '普'), + ('并', '譜'), + ('并', '粉'), + ('并', '糞'), + ('并', '併'), + ('并', '幣'), + ('并', '平'), + ('并', '弊'), + ('并', '並'), + ('并', '蔽'), + ('并', '瞥'), + ('并', '豊'), + ('并', '傍'), + ('并', '膨'), + ('并', '頬'), + ('并', '僕'), + ('并', '撲'), + ('并', '鱒'), + ('并', '網'), + ('并', '餅'), + ('并', '猶'), + ('并', '猷'), + ('并', '誉'), + ('并', '様'), + ('并', '洋'), + ('并', '窯'), + ('并', '羊'), + ('并', '養'), + ('并', '寮'), + ('并', '療'), + ('并', '瞭'), + ('并', '遼'), + ('并', '廉'), + ('并', '錬'), + ('并', '蕨'), + ('并', '亊'), + ('并', '佯'), + ('并', '俤'), + ('并', '偐'), + ('并', '僖'), + ('并', '兌'), + ('并', '剏'), + ('并', '剪'), + ('并', '剴'), + ('并', '厥'), + ('并', '啻'), + ('并', '啼'), + ('并', '喃'), + ('并', '嗟'), + ('并', '噎'), + ('并', '囎'), + ('并', '圈'), + ('并', '垪'), + ('并', '墟'), + ('并', '墫'), + ('并', '壹'), + ('并', '竒'), + ('并', '奠'), + ('并', '姜'), + ('并', '孳'), + ('并', '對'), + ('并', '屏'), + ('并', '崗'), + ('并', '嵜'), + ('并', '嵳'), + ('并', '嶝'), + ('并', '嶬'), + ('并', '并'), + ('并', '庠'), + ('并', '廚'), + ('并', '彜'), + ('并', '彭'), + ('并', '恙'), + ('并', '惓'), + ('并', '惘'), + ('并', '慊'), + ('并', '愬'), + ('并', '慫'), + ('并', '懿'), + ('并', '戲'), + ('并', '搓'), + ('并', '撩'), + ('并', '擶'), + ('并', '擲'), + ('并', '敝'), + ('并', '斃'), + ('并', '旁'), + ('并', '暼'), + ('并', '暸'), + ('并', '曦'), + ('并', '柬'), + ('并', '椦'), + ('并', '棡'), + ('并', '椪'), + ('并', '楴'), + ('并', '榿'), + ('并', '槎'), + ('并', '槊'), + ('并', '榜'), + ('并', '樅'), + ('并', '樣'), + ('并', '橲'), + ('并', '橙'), + ('并', '樸'), + ('并', '歉'), + ('并', '歔'), + ('并', '殪'), + ('并', '涕'), + ('并', '渕'), + ('并', '溯'), + ('并', '滕'), + ('并', '滂'), + ('并', '漾'), + ('并', '澎'), + ('并', '潦'), + ('并', '濮'), + ('并', '瀁'), + ('并', '熹'), + ('并', '燎'), + ('并', '燧'), + ('并', '燵'), + ('并', '犧'), + ('并', '獗'), + ('并', '璞'), + ('并', '痒'), + ('并', '癢'), + ('并', '癬'), + ('并', '皚'), + ('并', '盖'), + ('并', '眷'), + ('并', '睇'), + ('并', '瞽'), + ('并', '磑'), + ('并', '磋'), + ('并', '磅'), + ('并', '磴'), + ('并', '礒'), + ('并', '禧'), + ('并', '禮'), + ('并', '邃'), + ('并', '竕'), + ('并', '竦'), + ('并', '籐'), + ('并', '籘'), + ('并', '粱'), + ('并', '絆'), + ('并', '絣'), + ('并', '綣'), + ('并', '縊'), + ('并', '縒'), + ('并', '縢'), + ('并', '繚'), + ('并', '罅'), + ('并', '罔'), + ('并', '羌'), + ('并', '羔'), + ('并', '羞'), + ('并', '羝'), + ('并', '羚'), + ('并', '羣'), + ('并', '羯'), + ('并', '羲'), + ('并', '羹'), + ('并', '羮'), + ('并', '羶'), + ('并', '羸'), + ('并', '譱'), + ('并', '翔'), + ('并', '翦'), + ('并', '聳'), + ('并', '胖'), + ('并', '胼'), + ('并', '膀'), + ('并', '艤'), + ('并', '艷'), + ('并', '荳'), + ('并', '萍'), + ('并', '蒂'), + ('并', '蒹'), + ('并', '蒡'), + ('并', '蕕'), + ('并', '蘚'), + ('并', '蛻'), + ('并', '蜷'), + ('并', '袢'), + ('并', '襷'), + ('并', '覬'), + ('并', '觧'), + ('并', '謚'), + ('并', '謗'), + ('并', '謫'), + ('并', '證'), + ('并', '谿'), + ('并', '豈'), + ('并', '豌'), + ('并', '豎'), + ('并', '豐'), + ('并', '豢'), + ('并', '蹉'), + ('并', '蹤'), + ('并', '蹶'), + ('并', '蹲'), + ('并', '蹼'), + ('并', '躑'), + ('并', '軆'), + ('并', '躾'), + ('并', '迸'), + ('并', '遒'), + ('并', '遖'), + ('并', '醴'), + ('并', '釟'), + ('并', '釡'), + ('并', '銖'), + ('并', '鎰'), + ('并', '鎭'), + ('并', '鎔'), + ('并', '鐐'), + ('并', '鐡'), + ('并', '鑿'), + ('并', '闕'), + ('并', '隘'), + ('并', '隧'), + ('并', '韃'), + ('并', '饐'), + ('并', '馗'), + ('并', '馘'), + ('并', '駢'), + ('并', '體'), + ('并', '鬪'), + ('并', '魍'), + ('并', '鮃'), + ('并', '鰊'), + ('并', '鱚'), + ('并', '鱶'), + ('并', '鶫'), + ('并', '鷁'), + ('并', '鷯'), + ('并', '黹'), + ('并', '黻'), + ('并', '黼'), + ('并', '皷'), + ('冂', '渦'), + ('冂', '円'), + ('冂', '奥'), + ('冂', '襖'), + ('冂', '岡'), + ('冂', '禍'), + ('冂', '過'), + ('冂', '骸'), + ('冂', '柿'), + ('冂', '隔'), + ('冂', '滑'), + ('冂', '喚'), + ('冂', '換'), + ('冂', '橘'), + ('冂', '僑'), + ('冂', '喬'), + ('冂', '橋'), + ('冂', '矯'), + ('冂', '興'), + ('冂', '蕎'), + ('冂', '桐'), + ('冂', '巾'), + ('冂', '禽'), + ('冂', '愚'), + ('冂', '偶'), + ('冂', '寓'), + ('冂', '遇'), + ('冂', '隅'), + ('冂', '献'), + ('冂', '檎'), + ('冂', '向'), + ('冂', '構'), + ('冂', '溝'), + ('冂', '稿'), + ('冂', '綱'), + ('冂', '講'), + ('冂', '購'), + ('冂', '鋼'), + ('冂', '高'), + ('冂', '剛'), + ('冂', '骨'), + ('冂', '再'), + ('冂', '柵'), + ('冂', '策'), + ('冂', '冊'), + ('冂', '珊'), + ('冂', '刺'), + ('冂', '嗣'), + ('冂', '爾'), + ('冂', '璽'), + ('冂', '縞'), + ('冂', '周'), + ('冂', '週'), + ('冂', '商'), + ('冂', '尚'), + ('冂', '廠'), + ('冂', '嵩'), + ('冂', '栴'), + ('冂', '鯛'), + ('冂', '凧'), + ('冂', '嫡'), + ('冂', '凋'), + ('冂', '彫'), + ('冂', '調'), + ('冂', '摘'), + ('冂', '敵'), + ('冂', '滴'), + ('冂', '適'), + ('冂', '鏑'), + ('冂', '筒'), + ('冂', '同'), + ('冂', '洞'), + ('冂', '胴'), + ('冂', '銅'), + ('冂', '凸'), + ('冂', '内'), + ('冂', '鍋'), + ('冂', '南'), + ('冂', '楠'), + ('冂', '肉'), + ('冂', '禰'), + ('冂', '納'), + ('冂', '塙'), + ('冂', '病'), + ('冂', '楓'), + ('冂', '風'), + ('冂', '丙'), + ('冂', '幣'), + ('冂', '弊'), + ('冂', '柄'), + ('冂', '蔽'), + ('冂', '瞥'), + ('冂', '箆'), + ('冂', '偏'), + ('冂', '篇'), + ('冂', '編'), + ('冂', '遍'), + ('冂', '繭'), + ('冂', '満'), + ('冂', '網'), + ('冂', '融'), + ('冂', '両'), + ('冂', '麗'), + ('冂', '藁'), + ('冂', '亂'), + ('冂', '侖'), + ('冂', '倆'), + ('冂', '儷'), + ('冂', '兩'), + ('冂', '冂'), + ('冂', '囘'), + ('冂', '册'), + ('冂', '冉'), + ('冂', '冏'), + ('冂', '冑'), + ('冂', '冓'), + ('冂', '冕'), + ('冂', '刪'), + ('冂', '厰'), + ('冂', '吶'), + ('冂', '咼'), + ('冂', '喘'), + ('冂', '喃'), + ('冂', '嚆'), + ('冂', '嚮'), + ('冂', '堝'), + ('冂', '墺'), + ('冂', '夐'), + ('冂', '奐'), + ('冂', '奧'), + ('冂', '媾'), + ('冂', '嬌'), + ('冂', '孺'), + ('冂', '崗'), + ('冂', '幤'), + ('冂', '彌'), + ('冂', '怏'), + ('冂', '恫'), + ('冂', '惆'), + ('冂', '惘'), + ('冂', '慵'), + ('冂', '懊'), + ('冂', '懣'), + ('冂', '扁'), + ('冂', '搆'), + ('冂', '攜'), + ('冂', '敞'), + ('冂', '敝'), + ('冂', '敲'), + ('冂', '斃'), + ('冂', '旃'), + ('冂', '暎'), + ('冂', '暼'), + ('冂', '朿'), + ('冂', '棘'), + ('冂', '棡'), + ('冂', '棗'), + ('冂', '槁'), + ('冂', '殃'), + ('冂', '泱'), + ('冂', '淌'), + ('冂', '渙'), + ('冂', '滿'), + ('冂', '澳'), + ('冂', '濔'), + ('冂', '瀰'), + ('冂', '灑'), + ('冂', '炯'), + ('冂', '烱'), + ('冂', '炳'), + ('冂', '煥'), + ('冂', '燠'), + ('冂', '爨'), + ('冂', '犒'), + ('冂', '猾'), + ('冂', '獻'), + ('冂', '瑁'), + ('冂', '瓊'), + ('冂', '瞞'), + ('冂', '磆'), + ('冂', '礇'), + ('冂', '禹'), + ('冂', '禺'), + ('冂', '秧'), + ('冂', '稠'), + ('冂', '稱'), + ('冂', '稾'), + ('冂', '窩'), + ('冂', '竇'), + ('冂', '竊'), + ('冂', '篝'), + ('冂', '簓'), + ('冂', '粡'), + ('冂', '鬻'), + ('冂', '絅'), + ('冂', '綢'), + ('冂', '网'), + ('冂', '罔'), + ('冂', '肭'), + ('冂', '冐'), + ('冂', '腆'), + ('冂', '膈'), + ('冂', '苒'), + ('冂', '萬'), + ('冂', '萵'), + ('冂', '蒿'), + ('冂', '蕀'), + ('冂', '蚋'), + ('冂', '蜩'), + ('冂', '蝸'), + ('冂', '衲'), + ('冂', '裔'), + ('冂', '裲'), + ('冂', '覯'), + ('冂', '訥'), + ('冂', '謫'), + ('冂', '譎'), + ('冂', '跚'), + ('冂', '蹣'), + ('冂', '輛'), + ('冂', '輌'), + ('冂', '轎'), + ('冂', '辭'), + ('冂', '迥'), + ('冂', '邇'), + ('冂', '遖'), + ('冂', '遘'), + ('冂', '釁'), + ('冂', '鎬'), + ('冂', '鑰'), + ('冂', '陋'), + ('冂', '雋'), + ('冂', '雕'), + ('冂', '霙'), + ('冂', '靹'), + ('冂', '鞅'), + ('冂', '鞆'), + ('冂', '餉'), + ('冂', '騙'), + ('冂', '驕'), + ('冂', '驪'), + ('冂', '骭'), + ('冂', '骰'), + ('冂', '骼'), + ('冂', '髀'), + ('冂', '髏'), + ('冂', '髑'), + ('冂', '髓'), + ('冂', '體'), + ('冂', '髞'), + ('冂', '髯'), + ('冂', '鬲'), + ('冂', '魍'), + ('冂', '魎'), + ('冂', '鰤'), + ('冂', '鶻'), + ('冂', '鷸'), + ('冂', '黹'), + ('冂', '黻'), + ('冂', '黼'), + ('冂', '鼈'), + ('冂', '齲'), + ('冖', '愛'), + ('冖', '壱'), + ('冖', '運'), + ('冖', '叡'), + ('冖', '営'), + ('冖', '栄'), + ('冖', '央'), + ('冖', '鴬'), + ('冖', '骸'), + ('冖', '撹'), + ('冖', '殻'), + ('冖', '覚'), + ('冖', '学'), + ('冖', '滑'), + ('冖', '冠'), + ('冖', '揮'), + ('冖', '帰'), + ('冖', '輝'), + ('冖', '軍'), + ('冖', '慶'), + ('冖', '蛍'), + ('冖', '牽'), + ('冖', '膏'), + ('冖', '壕'), + ('冖', '濠'), + ('冖', '豪'), + ('冖', '穀'), + ('冖', '骨'), + ('冖', '索'), + ('冖', '写'), + ('冖', '受'), + ('冖', '授'), + ('冖', '綬'), + ('冖', '瞬'), + ('冖', '舜'), + ('冖', '償'), + ('冖', '嘗'), + ('冖', '掌'), + ('冖', '裳'), + ('冖', '賞'), + ('冖', '冗'), + ('冖', '常'), + ('冖', '擾'), + ('冖', '畳'), + ('冖', '侵'), + ('冖', '寝'), + ('冖', '浸'), + ('冖', '深'), + ('冖', '髄'), + ('冖', '掃'), + ('冖', '続'), + ('冖', '帯'), + ('冖', '滞'), + ('冖', '探'), + ('冖', '塚'), + ('冖', '壷'), + ('冖', '亭'), + ('冖', '停'), + ('冖', '帝'), + ('冖', '締'), + ('冖', '諦'), + ('冖', '蹄'), + ('冖', '党'), + ('冖', '堂'), + ('冖', '涜'), + ('冖', '読'), + ('冖', '嚢'), + ('冖', '売'), + ('冖', '婦'), + ('冖', '冨'), + ('冖', '傍'), + ('冖', '勃'), + ('冖', '枕'), + ('冖', '夢'), + ('冖', '冥'), + ('冖', '蒙'), + ('冖', '優'), + ('冖', '憂'), + ('冖', '亮'), + ('冖', '労'), + ('冖', '亳'), + ('冖', '儚'), + ('冖', '儻'), + ('冖', '冖'), + ('冖', '冤'), + ('冖', '冦'), + ('冖', '冢'), + ('冖', '冩'), + ('冖', '冪'), + ('冖', '勞'), + ('冖', '啻'), + ('冖', '啼'), + ('冖', '喨'), + ('冖', '噎'), + ('冖', '營'), + ('冖', '嚔'), + ('冖', '嚏'), + ('冖', '塋'), + ('冖', '壑'), + ('冖', '壺'), + ('冖', '壹'), + ('冖', '壼'), + ('冖', '孛'), + ('冖', '學'), + ('冖', '寢'), + ('冖', '帚'), + ('冖', '帶'), + ('冖', '幎'), + ('冖', '彙'), + ('冖', '忱'), + ('冖', '悖'), + ('冖', '愨'), + ('冖', '懿'), + ('冖', '戞'), + ('冖', '撈'), + ('冖', '擡'), + ('冖', '旁'), + ('冖', '暈'), + ('冖', '暉'), + ('冖', '暝'), + ('冖', '曖'), + ('冖', '曚'), + ('冖', '朦'), + ('冖', '棠'), + ('冖', '楴'), + ('冖', '榮'), + ('冖', '榾'), + ('冖', '榠'), + ('冖', '榜'), + ('冖', '檬'), + ('冖', '鬱'), + ('冖', '歸'), + ('冖', '殪'), + ('冖', '殼'), + ('冖', '毫'), + ('冖', '渾'), + ('冖', '渟'), + ('冖', '渤'), + ('冖', '滂'), + ('冖', '溟'), + ('冖', '滯'), + ('冖', '濬'), + ('冖', '濛'), + ('冖', '煢'), + ('冖', '爨'), + ('冖', '犖'), + ('冖', '猾'), + ('冖', '琿'), + ('冖', '瑩'), + ('冖', '甍'), + ('冖', '甞'), + ('冖', '當'), + ('冖', '疊'), + ('冖', '疂'), + ('冖', '癆'), + ('冖', '皸'), + ('冖', '皹'), + ('冖', '睿'), + ('冖', '瞑'), + ('冖', '瞠'), + ('冖', '瞹'), + ('冖', '矇'), + ('冖', '磆'), + ('冖', '磅'), + ('冖', '礑'), + ('冖', '箒'), + ('冖', '罕'), + ('冖', '膀'), + ('冖', '臺'), + ('冖', '艨'), + ('冖', '菷'), + ('冖', '蒄'), + ('冖', '葷'), + ('冖', '蒂'), + ('冖', '蒡'), + ('冖', '蔕'), + ('冖', '蕣'), + ('冖', '薨'), + ('冖', '薹'), + ('冖', '螢'), + ('冖', '螟'), + ('冖', '蟐'), + ('冖', '螳'), + ('冖', '蟷'), + ('冖', '蠑'), + ('冖', '蠹'), + ('冖', '蠧'), + ('冖', '褌'), + ('冖', '襠'), + ('冖', '覺'), + ('冖', '諢'), + ('冖', '謗'), + ('冖', '轂'), + ('冖', '邉'), + ('冖', '鐺'), + ('冖', '靉'), + ('冖', '饐'), + ('冖', '駸'), + ('冖', '骭'), + ('冖', '骰'), + ('冖', '骼'), + ('冖', '髀'), + ('冖', '髏'), + ('冖', '髑'), + ('冖', '髓'), + ('冖', '體'), + ('冖', '鶯'), + ('冖', '鶤'), + ('冖', '鶻'), + ('冖', '鷽'), + ('冖', '黌'), + ('冖', '黨'), + ('冫', '茨'), + ('冫', '鰯'), + ('冫', '羽'), + ('冫', '翁'), + ('冫', '楽'), + ('冫', '翰'), + ('冫', '翫'), + ('冫', '凝'), + ('冫', '均'), + ('冫', '冴'), + ('冫', '姿'), + ('冫', '諮'), + ('冫', '資'), + ('冫', '次'), + ('冫', '弱'), + ('冫', '習'), + ('冫', '渋'), + ('冫', '准'), + ('冫', '翠'), + ('冫', '摺'), + ('冫', '凄'), + ('冫', '摂'), + ('冫', '扇'), + ('冫', '煽'), + ('冫', '兆'), + ('冫', '凋'), + ('冫', '挑'), + ('冫', '眺'), + ('冫', '跳'), + ('冫', '銚'), + ('冫', '溺'), + ('冫', '凍'), + ('冫', '桃'), + ('冫', '盗'), + ('冫', '逃'), + ('冫', '謬'), + ('冫', '翻'), + ('冫', '冶'), + ('冫', '薬'), + ('冫', '翌'), + ('冫', '翼'), + ('冫', '率'), + ('冫', '凌'), + ('冫', '塁'), + ('冫', '冷'), + ('冫', '佻'), + ('冫', '冫'), + ('冫', '决'), + ('冫', '冱'), + ('冫', '冲'), + ('冫', '冰'), + ('冫', '况'), + ('冫', '冽'), + ('冫', '凅'), + ('冫', '凉'), + ('冫', '凛'), + ('冫', '勠'), + ('冫', '凖'), + ('冫', '咨'), + ('冫', '唹'), + ('冫', '姚'), + ('冫', '嫋'), + ('冫', '寥'), + ('冫', '嵶'), + ('冫', '廖'), + ('冫', '恣'), + ('冫', '慴'), + ('冫', '憑'), + ('冫', '懿'), + ('冫', '戮'), + ('冫', '挧'), + ('冫', '搦'), + ('冫', '搨'), + ('冫', '摎'), + ('冫', '擽'), + ('冫', '晁'), + ('冫', '栩'), + ('冫', '榻'), + ('冫', '樛'), + ('冫', '檪'), + ('冫', '歙'), + ('冫', '淤'), + ('冫', '瀚'), + ('冫', '爍'), + ('冫', '瓷'), + ('冫', '疂'), + ('冫', '疼'), + ('冫', '礫'), + ('冫', '窕'), + ('冫', '粢'), + ('冫', '繆'), + ('冫', '翅'), + ('冫', '翆'), + ('冫', '翊'), + ('冫', '翕'), + ('冫', '翔'), + ('冫', '翡'), + ('冫', '翦'), + ('冫', '翩'), + ('冫', '翳'), + ('冫', '翹'), + ('冫', '聚'), + ('冫', '膠'), + ('冫', '臧'), + ('冫', '蓊'), + ('冫', '蒻'), + ('冫', '蓼'), + ('冫', '蟀'), + ('冫', '褶'), + ('冫', '誂'), + ('冫', '贓'), + ('冫', '蹐'), + ('冫', '軣'), + ('冫', '轢'), + ('冫', '醪'), + ('冫', '鈞'), + ('冫', '鏐'), + ('冫', '鑠'), + ('冫', '閼'), + ('冫', '韵'), + ('冫', '馮'), + ('冫', '鮗'), + ('冫', '鯲'), + ('冫', '鰥'), + ('冫', '鶲'), + ('冫', '鶸'), + ('冫', '鶺'), + ('冫', '鼕'), + ('冫', '凜'), + ('几', '疫'), + ('几', '殴'), + ('几', '凱'), + ('几', '馨'), + ('几', '殻'), + ('几', '机'), + ('几', '毅'), + ('几', '飢'), + ('几', '拠'), + ('几', '恐'), + ('几', '繋'), + ('几', '撃'), + ('几', '股'), + ('几', '坑'), + ('几', '抗'), + ('几', '杭'), + ('几', '航'), + ('几', '穀'), + ('几', '殺'), + ('几', '夙'), + ('几', '処'), + ('几', '冗'), + ('几', '訊'), + ('几', '設'), + ('几', '凧'), + ('几', '鍛'), + ('几', '段'), + ('几', '築'), + ('几', '筑'), + ('几', '殿'), + ('几', '澱'), + ('几', '投'), + ('几', '椴'), + ('几', '凪'), + ('几', '肌'), + ('几', '帆'), + ('几', '搬'), + ('几', '汎'), + ('几', '般'), + ('几', '盤'), + ('几', '磐'), + ('几', '鳳'), + ('几', '没'), + ('几', '凡'), + ('几', '役'), + ('几', '猟'), + ('几', '蝋'), + ('几', '亢'), + ('几', '伉'), + ('几', '佩'), + ('几', '几'), + ('几', '處'), + ('几', '凩'), + ('几', '凭'), + ('几', '凰'), + ('几', '吭'), + ('几', '咒'), + ('几', '毀'), + ('几', '廏'), + ('几', '廢'), + ('几', '慇'), + ('几', '愨'), + ('几', '梵'), + ('几', '槃'), + ('几', '殳'), + ('几', '殷'), + ('几', '殼'), + ('几', '毆'), + ('几', '瀛'), + ('几', '燬'), + ('几', '珮'), + ('几', '瘢'), + ('几', '癜'), + ('几', '發'), + ('几', '磬'), + ('几', '緞'), + ('几', '羸'), + ('几', '翳'), + ('几', '聲'), + ('几', '臀'), + ('几', '芟'), + ('几', '葮'), + ('几', '薇'), + ('几', '蛩'), + ('几', '諷'), + ('几', '謦'), + ('几', '跫'), + ('几', '轂'), + ('几', '酘'), + ('几', '醫'), + ('几', '鑿'), + ('几', '鞏'), + ('几', '頽'), + ('几', '骰'), + ('几', '鳧'), + ('几', '鳬'), + ('凵', '凹'), + ('凵', '画'), + ('凵', '缶'), + ('凵', '棄'), + ('凵', '兇'), + ('凵', '凶'), + ('凵', '胸'), + ('凵', '禽'), + ('凵', '歯'), + ('凵', '席'), + ('凵', '度'), + ('凵', '淘'), + ('凵', '凸'), + ('凵', '屯'), + ('凵', '廿'), + ('凵', '悩'), + ('凵', '脳'), + ('凵', '函'), + ('凵', '幽'), + ('凵', '揺'), + ('凵', '謡'), + ('凵', '遥'), + ('凵', '璃'), + ('凵', '離'), + ('凵', '齢'), + ('凵', '凵'), + ('凵', '凾'), + ('凵', '匈'), + ('凵', '啣'), + ('凵', '嚥'), + ('凵', '囓'), + ('凵', '寶'), + ('凵', '屆'), + ('凵', '崗'), + ('凵', '帶'), + ('凵', '徭'), + ('凵', '恟'), + ('凵', '懣'), + ('凵', '掣'), + ('凵', '掏'), + ('凵', '搖'), + ('凵', '擒'), + ('凵', '旆'), + ('凵', '棡'), + ('凵', '椶'), + ('凵', '鬱'), + ('凵', '洶'), + ('凵', '涵'), + ('凵', '滿'), + ('凵', '滯'), + ('凵', '漓'), + ('凵', '瑶'), + ('凵', '瞞'), + ('凵', '窰'), + ('凵', '籬'), + ('凵', '綯'), + ('凵', '缸'), + ('凵', '缺'), + ('凵', '罅'), + ('凵', '罌'), + ('凵', '罍'), + ('凵', '罎'), + ('凵', '罐'), + ('凵', '羇'), + ('凵', '臙'), + ('凵', '艷'), + ('凵', '蓆'), + ('凵', '蔗'), + ('凵', '蔕'), + ('凵', '謠'), + ('凵', '讌'), + ('凵', '豐'), + ('凵', '蹠'), + ('凵', '蹣'), + ('凵', '輌'), + ('凵', '鑁'), + ('凵', '雋'), + ('凵', '鞅'), + ('凵', '靺'), + ('凵', '鞣'), + ('凵', '鬯'), + ('凵', '魑'), + ('凵', '鷂'), + ('凵', '鷓'), + ('凵', '黐'), + ('凵', '齒'), + ('凵', '齔'), + ('凵', '齣'), + ('凵', '齟'), + ('凵', '齠'), + ('凵', '齡'), + ('凵', '齦'), + ('凵', '齧'), + ('凵', '齬'), + ('凵', '齪'), + ('凵', '齷'), + ('凵', '齲'), + ('凵', '齶'), + ('刀', '寡'), + ('刀', '解'), + ('刀', '拐'), + ('刀', '蟹'), + ('刀', '喫'), + ('刀', '契'), + ('刀', '潔'), + ('刀', '券'), + ('刀', '初'), + ('刀', '召'), + ('刀', '招'), + ('刀', '昭'), + ('刀', '沼'), + ('刀', '照'), + ('刀', '紹'), + ('刀', '詔'), + ('刀', '刃'), + ('刀', '靭'), + ('刀', '切'), + ('刀', '窃'), + ('刀', '超'), + ('刀', '刀'), + ('刀', '那'), + ('刀', '忍'), + ('刀', '認'), + ('刀', '頒'), + ('刀', '貧'), + ('刀', '分'), + ('刀', '扮'), + ('刀', '粉'), + ('刀', '紛'), + ('刀', '雰'), + ('刀', '辺'), + ('刀', '貿'), + ('刀', '盆'), + ('刀', '籾'), + ('刀', '溜'), + ('刀', '留'), + ('刀', '梁'), + ('刀', '瑠'), + ('刀', '仞'), + ('刀', '仭'), + ('刀', '儕'), + ('刀', '刄'), + ('刀', '刧'), + ('刀', '剏'), + ('刀', '剪'), + ('刀', '劔'), + ('刀', '劒'), + ('刀', '剱'), + ('刀', '劈'), + ('刀', '劑'), + ('刀', '辧'), + ('刀', '劭'), + ('刀', '叨'), + ('刀', '吩'), + ('刀', '囓'), + ('刀', '囹'), + ('刀', '娜'), + ('刀', '屶'), + ('刀', '岔'), + ('刀', '廨'), + ('刀', '彜'), + ('刀', '忿'), + ('刀', '懈'), + ('刀', '扨'), + ('刀', '挈'), + ('刀', '擠'), + ('刀', '朷'), + ('刀', '枌'), + ('刀', '枴'), + ('刀', '梛'), + ('刀', '楔'), + ('刀', '榴'), + ('刀', '氛'), + ('刀', '汾'), + ('刀', '澀'), + ('刀', '濟'), + ('刀', '瓰'), + ('刀', '瘤'), + ('刀', '砌'), + ('刀', '禊'), + ('刀', '齋'), + ('刀', '竕'), + ('刀', '簗'), + ('刀', '籀'), + ('刀', '粱'), + ('刀', '綛'), + ('刀', '纃'), + ('刀', '臍'), + ('刀', '芬'), + ('刀', '茘'), + ('刀', '荵'), + ('刀', '薺'), + ('刀', '蠏'), + ('刀', '衂'), + ('刀', '貂'), + ('刀', '齎'), + ('刀', '躋'), + ('刀', '迢'), + ('刀', '邂'), + ('刀', '邵'), + ('刀', '釁'), + ('刀', '釖'), + ('刀', '釼'), + ('刀', '霤'), + ('刀', '霽'), + ('刀', '靱'), + ('刀', '齏'), + ('刀', '韲'), + ('刀', '韶'), + ('刀', '髫'), + ('刀', '鰡'), + ('刀', '齊'), + ('刀', '齠'), + ('刀', '齧'), + ('刈', '劃'), + ('刈', '割'), + ('刈', '刈'), + ('刈', '苅'), + ('刈', '刊'), + ('刈', '帰'), + ('刈', '刑'), + ('刈', '型'), + ('刈', '荊'), + ('刈', '劇'), + ('刈', '剣'), + ('刈', '剛'), + ('刈', '刻'), + ('刈', '剤'), + ('刈', '削'), + ('刈', '刷'), + ('刈', '捌'), + ('刈', '刺'), + ('刈', '剰'), + ('刈', '制'), + ('刈', '製'), + ('刈', '煎'), + ('刈', '箭'), + ('刈', '前'), + ('刈', '創'), + ('刈', '側'), + ('刈', '則'), + ('刈', '測'), + ('刈', '揃'), + ('刈', '剃'), + ('刈', '倒'), + ('刈', '到'), + ('刈', '剥'), + ('刈', '罰'), + ('刈', '判'), + ('刈', '副'), + ('刈', '別'), + ('刈', '剖'), + ('刈', '愉'), + ('刈', '愈'), + ('刈', '癒'), + ('刈', '諭'), + ('刈', '輸'), + ('刈', '利'), + ('刈', '梨'), + ('刈', '痢'), + ('刈', '劉'), + ('刈', '例'), + ('刈', '列'), + ('刈', '烈'), + ('刈', '裂'), + ('刈', '俐'), + ('刈', '偸'), + ('刈', '冽'), + ('刈', '刋'), + ('刈', '刔'), + ('刈', '刎'), + ('刈', '刪'), + ('刈', '刮'), + ('刈', '刳'), + ('刈', '刹'), + ('刈', '剄'), + ('刈', '剋'), + ('刈', '剌'), + ('刈', '剞'), + ('刈', '剔'), + ('刈', '剪'), + ('刈', '剴'), + ('刈', '剩'), + ('刈', '剳'), + ('刈', '剿'), + ('刈', '剽'), + ('刈', '劍'), + ('刈', '劑'), + ('刈', '厠'), + ('刈', '喩'), + ('刈', '喇'), + ('刈', '嚠'), + ('刈', '廁'), + ('刈', '悧'), + ('刈', '惻'), + ('刈', '掣'), + ('刈', '揄'), + ('刈', '擶'), + ('刈', '椡'), + ('刈', '楡'), + ('刈', '洌'), + ('刈', '渕'), + ('刈', '渝'), + ('刈', '溂'), + ('刈', '瀏'), + ('刈', '犁'), + ('刈', '瑜'), + ('刈', '瘉'), + ('刈', '箚'), + ('刈', '翦'), + ('刈', '莉'), + ('刈', '薊'), + ('刈', '蜊'), + ('刈', '蝓'), + ('刈', '覦'), + ('刈', '踰'), + ('刈', '逾'), + ('刈', '鍮'), + ('刈', '鯏'), + ('力', '甥'), + ('力', '伽'), + ('力', '加'), + ('力', '嘉'), + ('力', '架'), + ('力', '茄'), + ('力', '迦'), + ('力', '賀'), + ('力', '駕'), + ('力', '劾'), + ('力', '勘'), + ('力', '勧'), + ('力', '協'), + ('力', '脅'), + ('力', '勤'), + ('力', '筋'), + ('力', '勲'), + ('力', '袈'), + ('力', '功'), + ('力', '効'), + ('力', '劫'), + ('力', '捌'), + ('力', '助'), + ('力', '鋤'), + ('力', '勝'), + ('力', '勢'), + ('力', '男'), + ('力', '勅'), + ('力', '努'), + ('力', '働'), + ('力', '動'), + ('力', '別'), + ('力', '勉'), + ('力', '募'), + ('力', '勃'), + ('力', '務'), + ('力', '霧'), + ('力', '勇'), + ('力', '湧'), + ('力', '幼'), + ('力', '虜'), + ('力', '力'), + ('力', '励'), + ('力', '劣'), + ('力', '労'), + ('力', '肋'), + ('力', '脇'), + ('力', '仂'), + ('力', '劬'), + ('力', '劭'), + ('力', '劼'), + ('力', '劵'), + ('力', '勁'), + ('力', '勍'), + ('力', '勗'), + ('力', '勞'), + ('力', '勣'), + ('力', '勦'), + ('力', '飭'), + ('力', '勠'), + ('力', '勳'), + ('力', '勵'), + ('力', '勸'), + ('力', '娚'), + ('力', '嬲'), + ('力', '嫐'), + ('力', '恊'), + ('力', '慟'), + ('力', '懃'), + ('力', '拗'), + ('力', '抛'), + ('力', '撈'), + ('力', '朸'), + ('力', '枷'), + ('力', '椦'), + ('力', '沒'), + ('力', '渤'), + ('力', '珈'), + ('力', '痂'), + ('力', '癆'), + ('力', '窈'), + ('力', '笳'), + ('力', '耡'), + ('力', '舅'), + ('力', '莇'), + ('力', '跏'), + ('力', '踴'), + ('力', '釛'), + ('力', '勒'), + ('力', '黝'), + ('勹', '穐'), + ('勹', '絢'), + ('勹', '易'), + ('勹', '逸'), + ('勹', '謁'), + ('勹', '焔'), + ('勹', '艶'), + ('勹', '汚'), + ('勹', '鈎'), + ('勹', '角'), + ('勹', '顎'), + ('勹', '潟'), + ('勹', '喝'), + ('勹', '渇'), + ('勹', '葛'), + ('勹', '褐'), + ('勹', '鞄'), + ('勹', '竃'), + ('勹', '喚'), + ('勹', '換'), + ('勹', '陥'), + ('勹', '危'), + ('勹', '亀'), + ('勹', '掬'), + ('勹', '菊'), + ('勹', '鞠'), + ('勹', '急'), + ('勹', '朽'), + ('勹', '胸'), + ('勹', '驚'), + ('勹', '均'), + ('勹', '句'), + ('勹', '狗'), + ('勹', '駒'), + ('勹', '掲'), + ('勹', '敬'), + ('勹', '警'), + ('勹', '欠'), + ('勹', '袴'), + ('勹', '誇'), + ('勹', '跨'), + ('勹', '勾'), + ('勹', '巧'), + ('勹', '拘'), + ('勹', '考'), + ('勹', '衡'), + ('勹', '号'), + ('勹', '麹'), + ('勹', '忽'), + ('勹', '写'), + ('勹', '勺'), + ('勹', '杓'), + ('勹', '灼'), + ('勹', '酌'), + ('勹', '旬'), + ('勹', '殉'), + ('勹', '象'), + ('勹', '浄'), + ('勹', '燭'), + ('勹', '色'), + ('勹', '趨'), + ('勹', '雛'), + ('勹', '静'), + ('勹', '脆'), + ('勹', '争'), + ('勹', '像'), + ('勹', '濁'), + ('勹', '樗'), + ('勹', '鍔'), + ('勹', '釣'), + ('勹', '的'), + ('勹', '菟'), + ('勹', '淘'), + ('勹', '陶'), + ('勹', '萄'), + ('勹', '橡'), + ('勹', '縄'), + ('勹', '匂'), + ('勹', '蝿'), + ('勹', '豹'), + ('勹', '負'), + ('勹', '葡'), + ('勹', '物'), + ('勹', '吻'), + ('勹', '包'), + ('勹', '庖'), + ('勹', '抱'), + ('勹', '泡'), + ('勹', '砲'), + ('勹', '胞'), + ('勹', '飽'), + ('勹', '免'), + ('勹', '勿'), + ('勹', '匁'), + ('勹', '約'), + ('勹', '与'), + ('勹', '鰐'), + ('勹', '豫'), + ('勹', '佝'), + ('勹', '偈'), + ('勹', '冩'), + ('勹', '刎'), + ('勹', '刳'), + ('勹', '劬'), + ('勹', '勹'), + ('勹', '匆'), + ('勹', '匈'), + ('勹', '甸'), + ('勹', '匍'), + ('勹', '匐'), + ('勹', '匏'), + ('勹', '咆'), + ('勹', '咢'), + ('勹', '啗'), + ('勹', '囑'), + ('勹', '垉'), + ('勹', '夐'), + ('勹', '夸'), + ('勹', '奐'), + ('勹', '妁'), + ('勹', '娉'), + ('勹', '寫'), + ('勹', '屬'), + ('勹', '巉'), + ('勹', '徇'), + ('勹', '怐'), + ('勹', '怱'), + ('勹', '恟'), + ('勹', '恂'), + ('勹', '愕'), + ('勹', '慯'), + ('勹', '憺'), + ('勹', '擔'), + ('勹', '掏'), + ('勹', '暘'), + ('勹', '曷'), + ('勹', '枸'), + ('勹', '枹'), + ('勹', '桍'), + ('勹', '栲'), + ('勹', '椈'), + ('勹', '檠'), + ('勹', '歇'), + ('勹', '歿'), + ('勹', '洶'), + ('勹', '洵'), + ('勹', '瀉'), + ('勹', '炮'), + ('勹', '煦'), + ('勹', '獨'), + ('勹', '疱'), + ('勹', '瘍'), + ('勹', '皰'), + ('勹', '皺'), + ('勹', '盪'), + ('勹', '蘯'), + ('勹', '盻'), + ('勹', '瞻'), + ('勹', '矚'), + ('勹', '碣'), + ('勹', '龝'), + ('勹', '竭'), + ('勹', '笏'), + ('勹', '筍'), + ('勹', '筝'), + ('勹', '粤'), + ('勹', '綯'), + ('勹', '羯'), + ('勹', '聘'), + ('勹', '胯'), + ('勹', '膽'), + ('勹', '臈'), + ('勹', '芍'), + ('勹', '芻'), + ('勹', '苟'), + ('勹', '苞'), + ('勹', '荀'), + ('勹', '萢'), + ('勹', '萼'), + ('勹', '蕚'), + ('勹', '蒭'), + ('勹', '葯'), + ('勹', '蒟'), + ('勹', '蔔'), + ('勹', '藜'), + ('勹', '藹'), + ('勹', '號'), + ('勹', '虧'), + ('勹', '蚫'), + ('勹', '蜀'), + ('勹', '蝎'), + ('勹', '蠍'), + ('勹', '袍'), + ('勹', '觸'), + ('勹', '詢'), + ('勹', '諤'), + ('勹', '諡'), + ('勹', '鞫'), + ('勹', '譫'), + ('勹', '跪'), + ('勹', '躅'), + ('勹', '遏'), + ('勹', '鄒'), + ('勹', '鈞'), + ('勹', '鉤'), + ('勹', '鉋'), + ('勹', '閻'), + ('勹', '陷'), + ('勹', '雹'), + ('勹', '靄'), + ('勹', '靤'), + ('勹', '鞨'), + ('勹', '韵'), + ('勹', '騁'), + ('勹', '髑'), + ('勹', '髱'), + ('勹', '鬮'), + ('勹', '鮑'), + ('勹', '鯣'), + ('勹', '鶚'), + ('勹', '麁'), + ('勹', '麭'), + ('勹', '齣'), + ('勹', '齶'), + ('勹', '龜'), + ('匕', '壱'), + ('匕', '嘘'), + ('匕', '姥'), + ('匕', '穎'), + ('匕', '頴'), + ('匕', '謁'), + ('匕', '燕'), + ('匕', '化'), + ('匕', '花'), + ('匕', '貨'), + ('匕', '塊'), + ('匕', '喝'), + ('匕', '渇'), + ('匕', '葛'), + ('匕', '褐'), + ('匕', '椛'), + ('匕', '鬼'), + ('匕', '戯'), + ('匕', '擬'), + ('匕', '疑'), + ('匕', '虐'), + ('匕', '虚'), + ('匕', '凝'), + ('匕', '虞'), + ('匕', '靴'), + ('匕', '熊'), + ('匕', '傾'), + ('匕', '掲'), + ('匕', '稽'), + ('匕', '詣'), + ('匕', '劇'), + ('匕', '虎'), + ('匕', '此'), + ('匕', '頃'), + ('匕', '魂'), + ('匕', '些'), + ('匕', '砦'), + ('匕', '匙'), + ('匕', '屍'), + ('匕', '指'), + ('匕', '旨'), + ('匕', '死'), + ('匕', '紫'), + ('匕', '脂'), + ('匕', '雌'), + ('匕', '七'), + ('匕', '叱'), + ('匕', '柴'), + ('匕', '蛇'), + ('匕', '蒐'), + ('匕', '醜'), + ('匕', '嘗'), + ('匕', '切'), + ('匕', '窃'), + ('匕', '葬'), + ('匕', '詑'), + ('匕', '柁'), + ('匕', '舵'), + ('匕', '陀'), + ('匕', '態'), + ('匕', '泥'), + ('匕', '鴇'), + ('匕', '尼'), + ('匕', '匂'), + ('匕', '能'), + ('匕', '背'), + ('匕', '櫨'), + ('匕', '罷'), + ('匕', '髭'), + ('匕', '彪'), + ('匕', '膚'), + ('匕', '北'), + ('匕', '魔'), + ('匕', '魅'), + ('匕', '牝'), + ('匕', '也'), + ('匕', '慮'), + ('匕', '虜'), + ('匕', '乖'), + ('匕', '乘'), + ('匕', '佗'), + ('匕', '偈'), + ('匕', '傀'), + ('匕', '冀'), + ('匕', '處'), + ('匕', '剩'), + ('匕', '匕'), + ('匕', '呰'), + ('匕', '嘴'), + ('匕', '嚥'), + ('匕', '囮'), + ('匕', '埀'), + ('匕', '埖'), + ('匕', '墟'), + ('匕', '它'), + ('匕', '嵬'), + ('匕', '嶷'), + ('匕', '巍'), + ('匕', '廬'), + ('匕', '怩'), + ('匕', '愧'), + ('匕', '愼'), + ('匕', '戲'), + ('匕', '據'), + ('匕', '擺'), + ('匕', '斃'), + ('匕', '昵'), + ('匕', '曷'), + ('匕', '梍'), + ('匕', '槐'), + ('匕', '鬱'), + ('匕', '歇'), + ('匕', '歔'), + ('匕', '沱'), + ('匕', '潁'), + ('匕', '瀘'), + ('匕', '爐'), + ('匕', '獻'), + ('匕', '琥'), + ('匕', '瑰'), + ('匕', '疵'), + ('匕', '瘧'), + ('匕', '癡'), + ('匕', '皀'), + ('匕', '盧'), + ('匕', '眤'), + ('匕', '眞'), + ('匕', '眥'), + ('匕', '眦'), + ('匕', '砌'), + ('匕', '硴'), + ('匕', '碣'), + ('匕', '礙'), + ('匕', '竭'), + ('匕', '糀'), + ('匕', '罅'), + ('匕', '羆'), + ('匕', '羯'), + ('匕', '肄'), + ('匕', '臙'), + ('匕', '臈'), + ('匕', '臚'), + ('匕', '艫'), + ('匕', '莵'), + ('匕', '葹'), + ('匕', '薨'), + ('匕', '藹'), + ('匕', '蘆'), + ('匕', '虍'), + ('匕', '虔'), + ('匕', '號'), + ('匕', '虧'), + ('匕', '蝎'), + ('匕', '蠍'), + ('匕', '褫'), + ('匕', '觜'), + ('匕', '訛'), + ('匕', '謔'), + ('匕', '讌'), + ('匕', '貲'), + ('匕', '轤'), + ('匕', '遏'), + ('匕', '遞'), + ('匕', '遽'), + ('匕', '醵'), + ('匕', '釶'), + ('匕', '鉈'), + ('匕', '錵'), + ('匕', '鎭'), + ('匕', '鑢'), + ('匕', '鑪'), + ('匕', '隗'), + ('匕', '靄'), + ('匕', '鞨'), + ('匕', '顱'), + ('匕', '餽'), + ('匕', '饕'), + ('匕', '駝'), + ('匕', '驢'), + ('匕', '驥'), + ('匕', '髢'), + ('匕', '鬯'), + ('匕', '魄'), + ('匕', '魃'), + ('匕', '魏'), + ('匕', '魍'), + ('匕', '魑'), + ('匕', '魘'), + ('匕', '鮨'), + ('匕', '鯱'), + ('匕', '鱸'), + ('匕', '鴕'), + ('匕', '鷆'), + ('匕', '齔'), + ('匚', '医'), + ('匚', '堰'), + ('匚', '欧'), + ('匚', '殴'), + ('匚', '鴎'), + ('匚', '勘'), + ('匚', '堪'), + ('匚', '虐'), + ('匚', '巨'), + ('匚', '拒'), + ('匚', '渠'), + ('匚', '距'), + ('匚', '匡'), + ('匚', '区'), + ('匚', '躯'), + ('匚', '駆'), + ('匚', '匠'), + ('匚', '臣'), + ('匚', '枢'), + ('匚', '匝'), + ('匚', '湛'), + ('匚', '匿'), + ('匚', '匪'), + ('匚', '匹'), + ('匚', '偃'), + ('匚', '傴'), + ('匚', '匚'), + ('匚', '匣'), + ('匚', '匯'), + ('匚', '匱'), + ('匚', '匳'), + ('匚', '匸'), + ('匚', '區'), + ('匚', '嘔'), + ('匚', '奩'), + ('匚', '嫗'), + ('匚', '尠'), + ('匚', '嶇'), + ('匚', '慝'), + ('匚', '戡'), + ('匚', '斟'), + ('匚', '柩'), + ('匚', '框'), + ('匚', '椹'), + ('匚', '榧'), + ('匚', '樞'), + ('匚', '櫃'), + ('匚', '歐'), + ('匚', '毆'), + ('匚', '炬'), + ('匚', '煕'), + ('匚', '甌'), + ('匚', '碪'), + ('匚', '筐'), + ('匚', '筺'), + ('匚', '箍'), + ('匚', '篋'), + ('匚', '糂'), + ('匚', '繼'), + ('匚', '翳'), + ('匚', '謔'), + ('匚', '謳'), + ('匚', '醫'), + ('匚', '鍖'), + ('匚', '頤'), + ('匚', '驅'), + ('匚', '熙'), + ('十', '梓'), + ('十', '斡'), + ('十', '浦'), + ('十', '箇'), + ('十', '壊'), + ('十', '懐'), + ('十', '革'), + ('十', '括'), + ('十', '活'), + ('十', '叶'), + ('十', '蒲'), + ('十', '乾'), + ('十', '干'), + ('十', '幹'), + ('十', '翰'), + ('十', '韓'), + ('十', '伎'), + ('十', '岐'), + ('十', '妓'), + ('十', '技'), + ('十', '杵'), + ('十', '糾'), + ('十', '居'), + ('十', '許'), + ('十', '鋸'), + ('十', '協'), + ('十', '叫'), + ('十', '尭'), + ('十', '暁'), + ('十', '粁'), + ('十', '苦'), + ('十', '計'), + ('十', '戟'), + ('十', '献'), + ('十', '鹸'), + ('十', '個'), + ('十', '古'), + ('十', '固'), + ('十', '姑'), + ('十', '故'), + ('十', '枯'), + ('十', '湖'), + ('十', '糊'), + ('十', '胡'), + ('十', '鈷'), + ('十', '鼓'), + ('十', '午'), + ('十', '瑚'), + ('十', '醐'), + ('十', '倖'), + ('十', '幸'), + ('十', '構'), + ('十', '溝'), + ('十', '講'), + ('十', '購'), + ('十', '降'), + ('十', '克'), + ('十', '宰'), + ('十', '犀'), + ('十', '砕'), + ('十', '索'), + ('十', '皐'), + ('十', '傘'), + ('十', '支'), + ('十', '枝'), + ('十', '肢'), + ('十', '辞'), + ('十', '執'), + ('十', '什'), + ('十', '十'), + ('十', '汁'), + ('十', '術'), + ('十', '述'), + ('十', '循'), + ('十', '楯'), + ('十', '準'), + ('十', '盾'), + ('十', '升'), + ('十', '彰'), + ('十', '昇'), + ('十', '樟'), + ('十', '焼'), + ('十', '章'), + ('十', '障'), + ('十', '埴'), + ('十', '植'), + ('十', '殖'), + ('十', '慎'), + ('十', '新'), + ('十', '真'), + ('十', '薪'), + ('十', '親'), + ('十', '辛'), + ('十', '針'), + ('十', '迅'), + ('十', '粋'), + ('十', '翠'), + ('十', '酔'), + ('十', '据'), + ('十', '裾'), + ('十', '凄'), + ('十', '棲'), + ('十', '蝉'), + ('十', '千'), + ('十', '専'), + ('十', '戦'), + ('十', '禅'), + ('十', '挿'), + ('十', '早'), + ('十', '草'), + ('十', '賊'), + ('十', '卒'), + ('十', '騨'), + ('十', '卓'), + ('十', '鐸'), + ('十', '単'), + ('十', '箪'), + ('十', '弾'), + ('十', '値'), + ('十', '置'), + ('十', '嫡'), + ('十', '衷'), + ('十', '朝'), + ('十', '潮'), + ('十', '聴'), + ('十', '直'), + ('十', '鎮'), + ('十', '辻'), + ('十', '潰'), + ('十', '摘'), + ('十', '敵'), + ('十', '滴'), + ('十', '適'), + ('十', '鏑'), + ('十', '填'), + ('十', '顛'), + ('十', '悼'), + ('十', '鴇'), + ('十', '徳'), + ('十', '遁'), + ('十', '南'), + ('十', '楠'), + ('十', '牌'), + ('十', '博'), + ('十', '薄'), + ('十', '縛'), + ('十', '噺'), + ('十', '隼'), + ('十', '伴'), + ('十', '判'), + ('十', '半'), + ('十', '畔'), + ('十', '卑'), + ('十', '碑'), + ('十', '避'), + ('十', '稗'), + ('十', '廟'), + ('十', '埠'), + ('十', '敷'), + ('十', '阜'), + ('十', '葡'), + ('十', '噴'), + ('十', '墳'), + ('十', '憤'), + ('十', '僻'), + ('十', '壁'), + ('十', '癖'), + ('十', '舗'), + ('十', '鋪'), + ('十', '圃'), + ('十', '捕'), + ('十', '甫'), + ('十', '補'), + ('十', '輔'), + ('十', '穂'), + ('十', '簿'), + ('十', '報'), + ('十', '膨'), + ('十', '勃'), + ('十', '奔'), + ('十', '槙'), + ('十', '率'), + ('十', '枠'), + ('十', '乖'), + ('十', '乘'), + ('十', '仟'), + ('十', '估'), + ('十', '來'), + ('十', '倨'), + ('十', '倅'), + ('十', '伜'), + ('十', '倬'), + ('十', '俾'), + ('十', '做'), + ('十', '僂'), + ('十', '僖'), + ('十', '兢'), + ('十', '凅'), + ('十', '刋'), + ('十', '剋'), + ('十', '劈'), + ('十', '辨'), + ('十', '辧'), + ('十', '勸'), + ('十', '匍'), + ('十', '卆'), + ('十', '卅'), + ('十', '丗'), + ('十', '卉'), + ('十', '卍'), + ('十', '凖'), + ('十', '叟'), + ('十', '哺'), + ('十', '啅'), + ('十', '單'), + ('十', '喃'), + ('十', '嗔'), + ('十', '嘲'), + ('十', '嚔'), + ('十', '嚏'), + ('十', '囀'), + ('十', '圉'), + ('十', '團'), + ('十', '埔'), + ('十', '埣'), + ('十', '夲'), + ('十', '婢'), + ('十', '嬋'), + ('十', '嬖'), + ('十', '孛'), + ('十', '尅'), + ('十', '專'), + ('十', '屐'), + ('十', '嶂'), + ('十', '巓'), + ('十', '廳'), + ('十', '廰'), + ('十', '彈'), + ('十', '忤'), + ('十', '悳'), + ('十', '怙'), + ('十', '悖'), + ('十', '悴'), + ('十', '忰'), + ('十', '愽'), + ('十', '慱'), + ('十', '憚'), + ('十', '懌'), + ('十', '懽'), + ('十', '戰'), + ('十', '拌'), + ('十', '搜'), + ('十', '掉'), + ('十', '插'), + ('十', '搏'), + ('十', '摯'), + ('十', '摶'), + ('十', '擇'), + ('十', '撻'), + ('十', '擘'), + ('十', '枡'), + ('十', '棹'), + ('十', '楜'), + ('十', '榑'), + ('十', '權'), + ('十', '槹'), + ('十', '槫'), + ('十', '橲'), + ('十', '檗'), + ('十', '蘗'), + ('十', '蘖'), + ('十', '欟'), + ('十', '歃'), + ('十', '歡'), + ('十', '殫'), + ('十', '沽'), + ('十', '涸'), + ('十', '淬'), + ('十', '渤'), + ('十', '滓'), + ('十', '溲'), + ('十', '溥'), + ('十', '灌'), + ('十', '滷'), + ('十', '潭'), + ('十', '澎'), + ('十', '澣'), + ('十', '澤'), + ('十', '濆'), + ('十', '瀚'), + ('十', '煢'), + ('十', '熹'), + ('十', '猝'), + ('十', '璋'), + ('十', '璧'), + ('十', '瓣'), + ('十', '瓧'), + ('十', '瓩'), + ('十', '甎'), + ('十', '甓'), + ('十', '痼'), + ('十', '瘁'), + ('十', '痺'), + ('十', '痲'), + ('十', '瘴'), + ('十', '癲'), + ('十', '皋'), + ('十', '睥'), + ('十', '睾'), + ('十', '瞋'), + ('十', '瞽'), + ('十', '矗'), + ('十', '碎'), + ('十', '磚'), + ('十', '禧'), + ('十', '稙'), + ('十', '竍'), + ('十', '竏'), + ('十', '簓'), + ('十', '簟'), + ('十', '籵'), + ('十', '粹'), + ('十', '絆'), + ('十', '綽'), + ('十', '縡'), + ('十', '繹'), + ('十', '辮'), + ('十', '罩'), + ('十', '翅'), + ('十', '翆'), + ('十', '聽'), + ('十', '胖'), + ('十', '脯'), + ('十', '脾'), + ('十', '膊'), + ('十', '膵'), + ('十', '臂'), + ('十', '舖'), + ('十', '萃'), + ('十', '葫'), + ('十', '蕈'), + ('十', '薛'), + ('十', '薜'), + ('十', '蛄'), + ('十', '蝴'), + ('十', '蟀'), + ('十', '蟄'), + ('十', '蠎'), + ('十', '袢'), + ('十', '裨'), + ('十', '襌'), + ('十', '褝'), + ('十', '襞'), + ('十', '覃'), + ('十', '觀'), + ('十', '詁'), + ('十', '謫'), + ('十', '譚'), + ('十', '譬'), + ('十', '譯'), + ('十', '讙'), + ('十', '貭'), + ('十', '賁'), + ('十', '賻'), + ('十', '贄'), + ('十', '跂'), + ('十', '踞'), + ('十', '躄'), + ('十', '轉'), + ('十', '辜'), + ('十', '辟'), + ('十', '辣'), + ('十', '辭'), + ('十', '辯'), + ('十', '逋'), + ('十', '逹'), + ('十', '遖'), + ('十', '鄲'), + ('十', '醉'), + ('十', '釋'), + ('十', '錮'), + ('十', '鐔'), + ('十', '鑵'), + ('十', '闡'), + ('十', '闥'), + ('十', '闢'), + ('十', '阡'), + ('十', '霹'), + ('十', '顰'), + ('十', '顴'), + ('十', '餔'), + ('十', '餬'), + ('十', '驛'), + ('十', '驩'), + ('十', '髀'), + ('十', '鯆'), + ('十', '鱆'), + ('十', '鱚'), + ('十', '鴣'), + ('十', '鵯'), + ('十', '鷏'), + ('十', '鷙'), + ('十', '鸛'), + ('十', '鹵'), + ('十', '鹹'), + ('十', '鹽'), + ('十', '黼'), + ('十', '皷'), + ('十', '鼕'), + ('卜', '鮎'), + ('卜', '嘘'), + ('卜', '叡'), + ('卜', '下'), + ('卜', '外'), + ('卜', '掛'), + ('卜', '戯'), + ('卜', '砧'), + ('卜', '虐'), + ('卜', '虚'), + ('卜', '虞'), + ('卜', '卦'), + ('卜', '罫'), + ('卜', '劇'), + ('卜', '虎'), + ('卜', '寂'), + ('卜', '叔'), + ('卜', '淑'), + ('卜', '上'), + ('卜', '戚'), + ('卜', '占'), + ('卜', '卓'), + ('卜', '帖'), + ('卜', '偵'), + ('卜', '貞'), + ('卜', '禎'), + ('卜', '店'), + ('卜', '貼'), + ('卜', '点'), + ('卜', '悼'), + ('卜', '峠'), + ('卜', '督'), + ('卜', '苫'), + ('卜', '粘'), + ('卜', '櫨'), + ('卜', '彪'), + ('卜', '膚'), + ('卜', '赴'), + ('卜', '卜'), + ('卜', '朴'), + ('卜', '与'), + ('卜', '卵'), + ('卜', '慮'), + ('卜', '虜'), + ('卜', '仆'), + ('卜', '俶'), + ('卜', '倬'), + ('卜', '冦'), + ('卜', '處'), + ('卜', '卞'), + ('卜', '啅'), + ('卜', '圷'), + ('卜', '垰'), + ('卜', '墟'), + ('卜', '壑'), + ('卜', '寇'), + ('卜', '岾'), + ('卜', '幀'), + ('卜', '廬'), + ('卜', '戲'), + ('卜', '抃'), + ('卜', '拈'), + ('卜', '掉'), + ('卜', '據'), + ('卜', '梺'), + ('卜', '椒'), + ('卜', '棹'), + ('卜', '槭'), + ('卜', '歔'), + ('卜', '沾'), + ('卜', '滷'), + ('卜', '濬'), + ('卜', '濾'), + ('卜', '瀘'), + ('卜', '爐'), + ('卜', '獻'), + ('卜', '琥'), + ('卜', '瘧'), + ('卜', '盧'), + ('卜', '睿'), + ('卜', '碵'), + ('卜', '竊'), + ('卜', '站'), + ('卜', '笘'), + ('卜', '粲'), + ('卜', '綽'), + ('卜', '罅'), + ('卜', '罩'), + ('卜', '臚'), + ('卜', '艫'), + ('卜', '菽'), + ('卜', '蘆'), + ('卜', '虍'), + ('卜', '虔'), + ('卜', '號'), + ('卜', '虧'), + ('卜', '裃'), + ('卜', '褂'), + ('卜', '褫'), + ('卜', '覘'), + ('卜', '訃'), + ('卜', '謔'), + ('卜', '蹙'), + ('卜', '轤'), + ('卜', '迯'), + ('卜', '遉'), + ('卜', '遞'), + ('卜', '遽'), + ('卜', '醵'), + ('卜', '鑢'), + ('卜', '鑪'), + ('卜', '閇'), + ('卜', '霑'), + ('卜', '鞐'), + ('卜', '顱'), + ('卜', '颪'), + ('卜', '饕'), + ('卜', '驢'), + ('卜', '鯱'), + ('卜', '鱸'), + ('卜', '鹹'), + ('卜', '黏'), + ('卜', '點'), + ('卩', '宛'), + ('卩', '印'), + ('卩', '卯'), + ('卩', '怨'), + ('卩', '苑'), + ('卩', '鴛'), + ('卩', '卸'), + ('卩', '危'), + ('卩', '却'), + ('卩', '脚'), + ('卩', '禦'), + ('卩', '卿'), + ('卩', '仰'), + ('卩', '櫛'), + ('卩', '迎'), + ('卩', '御'), + ('卩', '昂'), + ('卩', '節'), + ('卩', '即'), + ('卩', '叩'), + ('卩', '氾'), + ('卩', '犯'), + ('卩', '範'), + ('卩', '服'), + ('卩', '報'), + ('卩', '命'), + ('卩', '厄'), + ('卩', '柳'), + ('卩', '抑'), + ('卩', '卵'), + ('卩', '領'), + ('卩', '令'), + ('卩', '伶'), + ('卩', '冷'), + ('卩', '嶺'), + ('卩', '怜'), + ('卩', '玲'), + ('卩', '苓'), + ('卩', '鈴'), + ('卩', '零'), + ('卩', '齢'), + ('卩', '椀'), + ('卩', '碗'), + ('卩', '腕'), + ('卩', '卩'), + ('卩', '卮'), + ('卩', '夘'), + ('卩', '卻'), + ('卩', '卷'), + ('卩', '啣'), + ('卩', '喞'), + ('卩', '圈'), + ('卩', '婉'), + ('卩', '孵'), + ('卩', '扼'), + ('卩', '掵'), + ('卩', '昴'), + ('卩', '澪'), + ('卩', '熈'), + ('卩', '笵'), + ('卩', '箙'), + ('卩', '羚'), + ('卩', '聊'), + ('卩', '聆'), + ('卩', '范'), + ('卩', '茆'), + ('卩', '蛉'), + ('卩', '蜿'), + ('卩', '詭'), + ('卩', '豌'), + ('卩', '跪'), + ('卩', '軛'), + ('卩', '鉚'), + ('卩', '鋺'), + ('卩', '阨'), + ('卩', '餾'), + ('卩', '鮠'), + ('卩', '鴒'), + ('卩', '齡'), + ('厂', '圧'), + ('厂', '威'), + ('厂', '嘘'), + ('厂', '厩'), + ('厂', '厭'), + ('厂', '仮'), + ('厂', '恢'), + ('厂', '灰'), + ('厂', '崖'), + ('厂', '涯'), + ('厂', '蛎'), + ('厂', '岸'), + ('厂', '巌'), + ('厂', '贋'), + ('厂', '雁'), + ('厂', '顔'), + ('厂', '願'), + ('厂', '危'), + ('厂', '戯'), + ('厂', '虐'), + ('厂', '虚'), + ('厂', '虞'), + ('厂', '劇'), + ('厂', '原'), + ('厂', '厳'), + ('厂', '源'), + ('厂', '虎'), + ('厂', '厚'), + ('厂', '后'), + ('厂', '垢'), + ('厂', '坂'), + ('厂', '阪'), + ('厂', '薩'), + ('厂', '産'), + ('厂', '循'), + ('厂', '楯'), + ('厂', '盾'), + ('厂', '辱'), + ('厂', '唇'), + ('厂', '娠'), + ('厂', '振'), + ('厂', '震'), + ('厂', '厨'), + ('厂', '脆'), + ('厂', '糎'), + ('厂', '辰'), + ('厂', '炭'), + ('厂', '逓'), + ('厂', '砺'), + ('厂', '栃'), + ('厂', '遁'), + ('厂', '濃'), + ('厂', '膿'), + ('厂', '農'), + ('厂', '派'), + ('厂', '櫨'), + ('厂', '反'), + ('厂', '叛'), + ('厂', '板'), + ('厂', '版'), + ('厂', '班'), + ('厂', '販'), + ('厂', '飯'), + ('厂', '備'), + ('厂', '彦'), + ('厂', '彪'), + ('厂', '膚'), + ('厂', '返'), + ('厂', '脈'), + ('厂', '厄'), + ('厂', '慮'), + ('厂', '虜'), + ('厂', '厘'), + ('厂', '励'), + ('厂', '暦'), + ('厂', '歴'), + ('厂', '蕨'), + ('厂', '仄'), + ('厂', '偐'), + ('厂', '儼'), + ('厂', '處'), + ('厂', '勵'), + ('厂', '卮'), + ('厂', '厂'), + ('厂', '厖'), + ('厂', '厠'), + ('厂', '厦'), + ('厂', '厥'), + ('厂', '厮'), + ('厂', '厰'), + ('厂', '啀'), + ('厂', '嚴'), + ('厂', '墟'), + ('厂', '壓'), + ('厂', '壥'), + ('厂', '宸'), + ('厂', '崕'), + ('厂', '巖'), + ('厂', '巵'), + ('厂', '廬'), + ('厂', '愿'), + ('厂', '慝'), + ('厂', '憊'), + ('厂', '憺'), + ('厂', '戍'), + ('厂', '戌'), + ('厂', '戲'), + ('厂', '扼'), + ('厂', '擔'), + ('厂', '據'), + ('厂', '昃'), + ('厂', '梔'), + ('厂', '檐'), + ('厂', '櫪'), + ('厂', '歔'), + ('厂', '殷'), + ('厂', '汳'), + ('厂', '澹'), + ('厂', '濾'), + ('厂', '瀝'), + ('厂', '瀘'), + ('厂', '爐'), + ('厂', '獗'), + ('厂', '獻'), + ('厂', '琥'), + ('厂', '甅'), + ('厂', '瘧'), + ('厂', '癧'), + ('厂', '皈'), + ('厂', '盧'), + ('厂', '睚'), + ('厂', '瞻'), + ('厂', '礪'), + ('厂', '竰'), + ('厂', '簷'), + ('厂', '糒'), + ('厂', '糲'), + ('厂', '纒'), + ('厂', '罅'), + ('厂', '膽'), + ('厂', '臚'), + ('厂', '艫'), + ('厂', '蘆'), + ('厂', '虍'), + ('厂', '乕'), + ('厂', '虔'), + ('厂', '號'), + ('厂', '虧'), + ('厂', '蠣'), + ('厂', '蟾'), + ('厂', '褫'), + ('厂', '詼'), + ('厂', '詭'), + ('厂', '詬'), + ('厂', '謔'), + ('厂', '譫'), + ('厂', '貭'), + ('厂', '贍'), + ('厂', '跪'), + ('厂', '蹶'), + ('厂', '軅'), + ('厂', '軛'), + ('厂', '轣'), + ('厂', '轤'), + ('厂', '逅'), + ('厂', '遞'), + ('厂', '遽'), + ('厂', '醵'), + ('厂', '釐'), + ('厂', '鈑'), + ('厂', '鑢'), + ('厂', '鑪'), + ('厂', '阨'), + ('厂', '靂'), + ('厂', '靨'), + ('厂', '鞴'), + ('厂', '顏'), + ('厂', '顱'), + ('厂', '饕'), + ('厂', '驢'), + ('厂', '魘'), + ('厂', '鮠'), + ('厂', '鯱'), + ('厂', '鱸'), + ('厂', '鴈'), + ('厂', '鳫'), + ('厂', '黶'), + ('厶', '挨'), + ('厶', '握'), + ('厶', '渥'), + ('厶', '鯵'), + ('厶', '飴'), + ('厶', '育'), + ('厶', '允'), + ('厶', '蔭'), + ('厶', '陰'), + ('厶', '瓜'), + ('厶', '云'), + ('厶', '雲'), + ('厶', '翁'), + ('厶', '屋'), + ('厶', '会'), + ('厶', '塊'), + ('厶', '魁'), + ('厶', '絵'), + ('厶', '蓋'), + ('厶', '鈎'), + ('厶', '拡'), + ('厶', '棄'), + ('厶', '鬼'), + ('厶', '却'), + ('厶', '脚'), + ('厶', '去'), + ('厶', '強'), + ('厶', '怯'), + ('厶', '禽'), + ('厶', '愚'), + ('厶', '偶'), + ('厶', '寓'), + ('厶', '遇'), + ('厶', '隅'), + ('厶', '熊'), + ('厶', '芸'), + ('厶', '牽'), + ('厶', '檎'), + ('厶', '公'), + ('厶', '勾'), + ('厶', '宏'), + ('厶', '広'), + ('厶', '弘'), + ('厶', '紘'), + ('厶', '肱'), + ('厶', '鉱'), + ('厶', '砿'), + ('厶', '劫'), + ('厶', '魂'), + ('厶', '唆'), + ('厶', '裁'), + ('厶', '参'), + ('厶', '惨'), + ('厶', '酸'), + ('厶', '始'), + ('厶', '私'), + ('厶', '至'), + ('厶', '治'), + ('厶', '室'), + ('厶', '充'), + ('厶', '銃'), + ('厶', '俊'), + ('厶', '峻'), + ('厶', '竣'), + ('厶', '駿'), + ('厶', '松'), + ('厶', '訟'), + ('厶', '疏'), + ('厶', '窓'), + ('厶', '総'), + ('厶', '聡'), + ('厶', '怠'), + ('厶', '態'), + ('厶', '胎'), + ('厶', '苔'), + ('厶', '台'), + ('厶', '致'), + ('厶', '窒'), + ('厶', '徹'), + ('厶', '撤'), + ('厶', '轍'), + ('厶', '転'), + ('厶', '伝'), + ('厶', '倒'), + ('厶', '套'), + ('厶', '統'), + ('厶', '到'), + ('厶', '曇'), + ('厶', '能'), + ('厶', '罷'), + ('厶', '桧'), + ('厶', '蛭'), + ('厶', '払'), + ('厶', '仏'), + ('厶', '弁'), + ('厶', '法'), + ('厶', '貿'), + ('厶', '鉾'), + ('厶', '殆'), + ('厶', '牟'), + ('厶', '姪'), + ('厶', '冶'), + ('厶', '雄'), + ('厶', '劉'), + ('厶', '流'), + ('厶', '溜'), + ('厶', '琉'), + ('厶', '留'), + ('厶', '硫'), + ('厶', '瑠'), + ('厶', '亂'), + ('厶', '俟'), + ('厶', '傀'), + ('厶', '傳'), + ('厶', '刧'), + ('厶', '厶'), + ('厶', '參'), + ('厶', '簒'), + ('厶', '吮'), + ('厶', '咥'), + ('厶', '嚠'), + ('厶', '囀'), + ('厶', '囈'), + ('厶', '團'), + ('厶', '垤'), + ('厶', '埃'), + ('厶', '壜'), + ('厶', '專'), + ('厶', '峅'), + ('厶', '幄'), + ('厶', '弃'), + ('厶', '怡'), + ('厶', '悛'), + ('厶', '惠'), + ('厶', '慘'), + ('厶', '慱'), + ('厶', '摶'), + ('厶', '擡'), + ('厶', '抬'), + ('厶', '擺'), + ('厶', '旒'), + ('厶', '晉'), + ('厶', '昿'), + ('厶', '枩'), + ('厶', '桎'), + ('厶', '梳'), + ('厶', '桙'), + ('厶', '梭'), + ('厶', '椡'), + ('厶', '榁'), + ('厶', '榴'), + ('厶', '槫'), + ('厶', '欸'), + ('厶', '毓'), + ('厶', '泓'), + ('厶', '浤'), + ('厶', '浚'), + ('厶', '淞'), + ('厶', '溘'), + ('厶', '滲'), + ('厶', '琺'), + ('厶', '瓮'), + ('厶', '畆'), + ('厶', '畚'), + ('厶', '瘤'), + ('厶', '皴'), + ('厶', '盍'), + ('厶', '眸'), + ('厶', '矣'), + ('厶', '磚'), + ('厶', '竊'), + ('厶', '竢'), + ('厶', '笞'), + ('厶', '籀'), + ('厶', '紜'), + ('厶', '絋'), + ('厶', '紿'), + ('厶', '緻'), + ('厶', '縉'), + ('厶', '繦'), + ('厶', '繧'), + ('厶', '罎'), + ('厶', '羆'), + ('厶', '耋'), + ('厶', '耘'), + ('厶', '肆'), + ('厶', '膣'), + ('厶', '腟'), + ('厶', '臺'), + ('厶', '臻'), + ('厶', '舩'), + ('厶', '菘'), + ('厶', '蓊'), + ('厶', '蔘'), + ('厶', '蔬'), + ('厶', '薹'), + ('厶', '藝'), + ('厶', '蚣'), + ('厶', '襁'), + ('厶', '詒'), + ('厶', '貽'), + ('厶', '輊'), + ('厶', '逡'), + ('厶', '醯'), + ('厶', '闔'), + ('厶', '霤'), + ('厶', '靆'), + ('厶', '靉'), + ('厶', '頌'), + ('厶', '颱'), + ('厶', '餾'), + ('厶', '駘'), + ('厶', '驂'), + ('厶', '髯'), + ('厶', '髷'), + ('厶', '鬆'), + ('厶', '魎'), + ('厶', '鰺'), + ('厶', '鰡'), + ('厶', '鵄'), + ('厶', '鴾'), + ('厶', '鶲'), + ('厶', '齷'), + ('又', '鰻'), + ('又', '叡'), + ('又', '盈'), + ('又', '疫'), + ('又', '援'), + ('又', '殴'), + ('又', '仮'), + ('又', '暇'), + ('又', '蝦'), + ('又', '霞'), + ('又', '怪'), + ('又', '馨'), + ('又', '殻'), + ('又', '獲'), + ('又', '穫'), + ('又', '樫'), + ('又', '鰹'), + ('又', '緩'), + ('又', '伎'), + ('又', '岐'), + ('又', '毅'), + ('又', '妓'), + ('又', '技'), + ('又', '極'), + ('又', '緊'), + ('又', '桑'), + ('又', '径'), + ('又', '経'), + ('又', '繋'), + ('又', '茎'), + ('又', '軽'), + ('又', '頚'), + ('又', '撃'), + ('又', '堅'), + ('又', '賢'), + ('又', '股'), + ('又', '鼓'), + ('又', '護'), + ('又', '穀'), + ('又', '叉'), + ('又', '最'), + ('又', '坂'), + ('又', '阪'), + ('又', '撮'), + ('又', '殺'), + ('又', '燦'), + ('又', '餐'), + ('又', '支'), + ('又', '枝'), + ('又', '肢'), + ('又', '寂'), + ('又', '取'), + ('又', '趣'), + ('又', '受'), + ('又', '授'), + ('又', '綬'), + ('又', '収'), + ('又', '叔'), + ('又', '淑'), + ('又', '叙'), + ('又', '侵'), + ('又', '寝'), + ('又', '浸'), + ('又', '腎'), + ('又', '諏'), + ('又', '頗'), + ('又', '隻'), + ('又', '設'), + ('又', '双'), + ('又', '叢'), + ('又', '捜'), + ('又', '掻'), + ('又', '痩'), + ('又', '騒'), + ('又', '竪'), + ('又', '鍛'), + ('又', '暖'), + ('又', '段'), + ('又', '綴'), + ('又', '殿'), + ('又', '澱'), + ('又', '渡'), + ('又', '鍍'), + ('又', '努'), + ('又', '度'), + ('又', '奴'), + ('又', '怒'), + ('又', '投'), + ('又', '督'), + ('又', '椴'), + ('又', '畷'), + ('又', '蚤'), + ('又', '波'), + ('又', '破'), + ('又', '婆'), + ('又', '抜'), + ('又', '反'), + ('又', '叛'), + ('又', '搬'), + ('又', '板'), + ('又', '版'), + ('又', '般'), + ('又', '販'), + ('又', '飯'), + ('又', '盤'), + ('又', '磐'), + ('又', '彼'), + ('又', '披'), + ('又', '疲'), + ('又', '皮'), + ('又', '被'), + ('又', '簸'), + ('又', '媛'), + ('又', '服'), + ('又', '返'), + ('又', '報'), + ('又', '没'), + ('又', '又'), + ('又', '慢'), + ('又', '漫'), + ('又', '蔓'), + ('又', '役'), + ('又', '友'), + ('又', '亟'), + ('又', '俶'), + ('又', '假'), + ('又', '冦'), + ('又', '凾'), + ('又', '雙'), + ('又', '叟'), + ('又', '曼'), + ('又', '燮'), + ('又', '呶'), + ('又', '啜'), + ('又', '坡'), + ('又', '毀'), + ('又', '壑'), + ('又', '娵'), + ('又', '娶'), + ('又', '嫂'), + ('又', '孥'), + ('又', '寇'), + ('又', '寢'), + ('又', '屐'), + ('又', '帑'), + ('又', '幔'), + ('又', '廏'), + ('又', '廢'), + ('又', '弩'), + ('又', '慇'), + ('又', '愨'), + ('又', '慳'), + ('又', '扠'), + ('又', '拏'), + ('又', '搜'), + ('又', '掫'), + ('又', '攫'), + ('又', '椒'), + ('又', '楹'), + ('又', '槃'), + ('又', '樶'), + ('又', '歿'), + ('又', '殳'), + ('又', '殷'), + ('又', '殼'), + ('又', '毆'), + ('又', '汳'), + ('又', '沒'), + ('又', '湲'), + ('又', '溲'), + ('又', '煖'), + ('又', '燬'), + ('又', '爰'), + ('又', '玻'), + ('又', '瑕'), + ('又', '瘢'), + ('又', '癜'), + ('又', '發'), + ('又', '皈'), + ('又', '皰'), + ('又', '皴'), + ('又', '皸'), + ('又', '皹'), + ('又', '皺'), + ('又', '瞽'), + ('又', '矍'), + ('又', '碆'), + ('又', '磬'), + ('又', '箙'), + ('又', '粲'), + ('又', '緞'), + ('又', '縵'), + ('又', '翅'), + ('又', '翳'), + ('又', '聚'), + ('又', '聲'), + ('又', '臀'), + ('又', '艘'), + ('又', '芟'), + ('又', '菽'), + ('又', '菠'), + ('又', '葭'), + ('又', '葮'), + ('又', '蘰'), + ('又', '蠖'), + ('又', '謦'), + ('又', '謾'), + ('又', '豎'), + ('又', '赧'), + ('又', '跂'), + ('又', '跛'), + ('又', '輙'), + ('又', '輟'), + ('又', '轂'), + ('又', '辭'), + ('又', '遐'), + ('又', '酘'), + ('又', '醫'), + ('又', '釵'), + ('又', '鈑'), + ('又', '錣'), + ('又', '鍜'), + ('又', '鏗'), + ('又', '鏝'), + ('又', '钁'), + ('又', '鑿'), + ('又', '陂'), + ('又', '陬'), + ('又', '靫'), + ('又', '鞁'), + ('又', '饅'), + ('又', '馭'), + ('又', '駑'), + ('又', '駸'), + ('又', '騷'), + ('又', '驟'), + ('又', '骰'), + ('又', '髮'), + ('又', '鬘'), + ('又', '鰕'), + ('又', '皷'), + ('又', '鼕'), + ('マ', '桶'), + ('マ', '擬'), + ('マ', '疑'), + ('マ', '凝'), + ('マ', '柔'), + ('マ', '序'), + ('マ', '痛'), + ('マ', '通'), + ('マ', '樋'), + ('マ', '矛'), + ('マ', '勇'), + ('マ', '湧'), + ('マ', '涌'), + ('マ', '予'), + ('マ', '預'), + ('マ', '踊'), + ('マ', '豫'), + ('マ', '舒'), + ('マ', '俑'), + ('マ', '墅'), + ('マ', '慂'), + ('マ', '懋'), + ('マ', '抒'), + ('マ', '揉'), + ('マ', '矜'), + ('マ', '礙'), + ('マ', '糅'), + ('マ', '蛹'), + ('マ', '蹂'), + ('マ', '踴'), + ('マ', '鞣'), + ('九', '旭'), + ('九', '丸'), + ('九', '軌'), + ('九', '仇'), + ('九', '究'), + ('九', '九'), + ('九', '砕'), + ('九', '雑'), + ('九', '執'), + ('九', '塾'), + ('九', '熟'), + ('九', '尻'), + ('九', '粋'), + ('九', '酔'), + ('九', '勢'), + ('九', '染'), + ('九', '熱'), + ('九', '鳩'), + ('九', '枠'), + ('九', '伜'), + ('九', '卆'), + ('九', '囈'), + ('九', '孰'), + ('九', '忰'), + ('九', '抛'), + ('九', '摯'), + ('九', '笂'), + ('九', '翆'), + ('九', '藝'), + ('九', '蟄'), + ('九', '褻'), + ('九', '贄'), + ('九', '馗'), + ('九', '鷙'), + ('ユ', '决'), + ('ユ', '刔'), + ('ユ', '夬'), + ('ユ', '抉'), + ('ユ', '篌'), + ('乃', '及'), + ('乃', '携'), + ('乃', '秀'), + ('乃', '透'), + ('乃', '乃'), + ('乃', '誘'), + ('乃', '仍'), + ('乃', '孕'), + ('乃', '朶'), + ('乃', '楹'), + ('乃', '綉'), + ('乃', '躱'), + ('乃', '銹'), + ('込', '逢'), + ('込', '違'), + ('込', '遺'), + ('込', '逸'), + ('込', '迂'), + ('込', '運'), + ('込', '遠'), + ('込', '迦'), + ('込', '過'), + ('込', '還'), + ('込', '逆'), + ('込', '近'), + ('込', '遇'), + ('込', '迎'), + ('込', '遣'), + ('込', '込'), + ('込', '遮'), + ('込', '週'), + ('込', '述'), + ('込', '巡'), + ('込', '遵'), + ('込', '進'), + ('込', '迅'), + ('込', '逗'), + ('込', '遂'), + ('込', '随'), + ('込', '髄'), + ('込', '逝'), + ('込', '選'), + ('込', '遷'), + ('込', '遡'), + ('込', '送'), + ('込', '遭'), + ('込', '造'), + ('込', '速'), + ('込', '遜'), + ('込', '腿'), + ('込', '退'), + ('込', '逮'), + ('込', '達'), + ('込', '辿'), + ('込', '遅'), + ('込', '逐'), + ('込', '槌'), + ('込', '追'), + ('込', '鎚'), + ('込', '通'), + ('込', '辻'), + ('込', '逓'), + ('込', '適'), + ('込', '迭'), + ('込', '途'), + ('込', '逃'), + ('込', '透'), + ('込', '導'), + ('込', '道'), + ('込', '遁'), + ('込', '謎'), + ('込', '迩'), + ('込', '這'), + ('込', '迫'), + ('込', '避'), + ('込', '樋'), + ('込', '逼'), + ('込', '辺'), + ('込', '返'), + ('込', '遍'), + ('込', '縫'), + ('込', '蓬'), + ('込', '迄'), + ('込', '迷'), + ('込', '鑓'), + ('込', '遊'), + ('込', '遥'), + ('込', '遼'), + ('込', '漣'), + ('込', '蓮'), + ('込', '連'), + ('込', '嗹'), + ('込', '慥'), + ('込', '撻'), + ('込', '暹'), + ('込', '燧'), + ('込', '燵'), + ('込', '邃'), + ('込', '篷'), + ('込', '縋'), + ('込', '縺'), + ('込', '膸'), + ('込', '褪'), + ('込', '譴'), + ('込', '辷'), + ('込', '迚'), + ('込', '迥'), + ('込', '迢'), + ('込', '迪'), + ('込', '迯'), + ('込', '邇'), + ('込', '迴'), + ('込', '逅'), + ('込', '迹'), + ('込', '迺'), + ('込', '逑'), + ('込', '逕'), + ('込', '逡'), + ('込', '逍'), + ('込', '逞'), + ('込', '逖'), + ('込', '逋'), + ('込', '逧'), + ('込', '逶'), + ('込', '逵'), + ('込', '逹'), + ('込', '迸'), + ('込', '遏'), + ('込', '遐'), + ('込', '遑'), + ('込', '遒'), + ('込', '逎'), + ('込', '遉'), + ('込', '逾'), + ('込', '遖'), + ('込', '遘'), + ('込', '遞'), + ('込', '遨'), + ('込', '遯'), + ('込', '遶'), + ('込', '隨'), + ('込', '遲'), + ('込', '邂'), + ('込', '遽'), + ('込', '邁'), + ('込', '邀'), + ('込', '邊'), + ('込', '邉'), + ('込', '邏'), + ('込', '鎹'), + ('込', '鏈'), + ('込', '闥'), + ('込', '隧'), + ('込', '靆'), + ('込', '韃'), + ('込', '韆'), + ('込', '髓'), + ('込', '遙'), + ('口', '亜'), + ('口', '唖'), + ('口', '阿'), + ('口', '哀'), + ('口', '姶'), + ('口', '悪'), + ('口', '葦'), + ('口', '飴'), + ('口', '鮎'), + ('口', '或'), + ('口', '袷'), + ('口', '杏'), + ('口', '偉'), + ('口', '椅'), + ('口', '緯'), + ('口', '違'), + ('口', '遺'), + ('口', '域'), + ('口', '磯'), + ('口', '咽'), + ('口', '員'), + ('口', '韻'), + ('口', '吋'), + ('口', '右'), + ('口', '碓'), + ('口', '渦'), + ('口', '嘘'), + ('口', '唄'), + ('口', '噂'), + ('口', '営'), + ('口', '影'), + ('口', '衛'), + ('口', '鋭'), + ('口', '悦'), + ('口', '閲'), + ('口', '園'), + ('口', '沿'), + ('口', '燕'), + ('口', '猿'), + ('口', '艶'), + ('口', '薗'), + ('口', '遠'), + ('口', '鉛'), + ('口', '塩'), + ('口', '沖'), + ('口', '何'), + ('口', '伽'), + ('口', '加'), + ('口', '可'), + ('口', '嘉'), + ('口', '架'), + ('口', '歌'), + ('口', '河'), + ('口', '珂'), + ('口', '禍'), + ('口', '箇'), + ('口', '苛'), + ('口', '茄'), + ('口', '荷'), + ('口', '蝦'), + ('口', '嘩'), + ('口', '迦'), + ('口', '過'), + ('口', '賀'), + ('口', '駕'), + ('口', '回'), + ('口', '廻'), + ('口', '拐'), + ('口', '凱'), + ('口', '咳'), + ('口', '害'), + ('口', '碍'), + ('口', '鎧'), + ('口', '嚇'), + ('口', '各'), + ('口', '廓'), + ('口', '格'), + ('口', '確'), + ('口', '郭'), + ('口', '閣'), + ('口', '隔'), + ('口', '革'), + ('口', '額'), + ('口', '顎'), + ('口', '割'), + ('口', '喝'), + ('口', '恰'), + ('口', '括'), + ('口', '活'), + ('口', '轄'), + ('口', '叶'), + ('口', '噛'), + ('口', '侃'), + ('口', '喚'), + ('口', '官'), + ('口', '患'), + ('口', '感'), + ('口', '憾'), + ('口', '棺'), + ('口', '漢'), + ('口', '環'), + ('口', '管'), + ('口', '還'), + ('口', '韓'), + ('口', '館'), + ('口', '舘'), + ('口', '含'), + ('口', '癌'), + ('口', '岩'), + ('口', '喜'), + ('口', '器'), + ('口', '奇'), + ('口', '嬉'), + ('口', '寄'), + ('口', '貴'), + ('口', '騎'), + ('口', '吉'), + ('口', '吃'), + ('口', '喫'), + ('口', '桔'), + ('口', '橘'), + ('口', '詰'), + ('口', '砧'), + ('口', '客'), + ('口', '吸'), + ('口', '宮'), + ('口', '給'), + ('口', '居'), + ('口', '距'), + ('口', '鋸'), + ('口', '亨'), + ('口', '享'), + ('口', '京'), + ('口', '僑'), + ('口', '競'), + ('口', '叫'), + ('口', '喬'), + ('口', '橋'), + ('口', '況'), + ('口', '矯'), + ('口', '興'), + ('口', '蕎'), + ('口', '驚'), + ('口', '局'), + ('口', '極'), + ('口', '桐'), + ('口', '僅'), + ('口', '勤'), + ('口', '謹'), + ('口', '吟'), + ('口', '句'), + ('口', '狗'), + ('口', '苦'), + ('口', '駒'), + ('口', '虞'), + ('口', '喰'), + ('口', '串'), + ('口', '轡'), + ('口', '繰'), + ('口', '君'), + ('口', '群'), + ('口', '郡'), + ('口', '袈'), + ('口', '兄'), + ('口', '啓'), + ('口', '憩'), + ('口', '敬'), + ('口', '景'), + ('口', '警'), + ('口', '鯨'), + ('口', '結'), + ('口', '倹'), + ('口', '剣'), + ('口', '喧'), + ('口', '検'), + ('口', '研'), + ('口', '硯'), + ('口', '絹'), + ('口', '遣'), + ('口', '険'), + ('口', '験'), + ('口', '鹸'), + ('口', '減'), + ('口', '個'), + ('口', '古'), + ('口', '呼'), + ('口', '固'), + ('口', '姑'), + ('口', '故'), + ('口', '枯'), + ('口', '湖'), + ('口', '糊'), + ('口', '胡'), + ('口', '跨'), + ('口', '鈷'), + ('口', '鼓'), + ('口', '呉'), + ('口', '吾'), + ('口', '娯'), + ('口', '悟'), + ('口', '梧'), + ('口', '瑚'), + ('口', '碁'), + ('口', '語'), + ('口', '誤'), + ('口', '醐'), + ('口', '口'), + ('口', '向'), + ('口', '后'), + ('口', '喉'), + ('口', '垢'), + ('口', '拘'), + ('口', '浩'), + ('口', '硬'), + ('口', '稿'), + ('口', '膏'), + ('口', '砿'), + ('口', '閤'), + ('口', '高'), + ('口', '号'), + ('口', '合'), + ('口', '壕'), + ('口', '濠'), + ('口', '豪'), + ('口', '克'), + ('口', '告'), + ('口', '酷'), + ('口', '鵠'), + ('口', '唆'), + ('口', '砂'), + ('口', '哉'), + ('口', '砕'), + ('口', '砦'), + ('口', '咲'), + ('口', '崎'), + ('口', '埼'), + ('口', '碕'), + ('口', '鷺'), + ('口', '咋'), + ('口', '捌'), + ('口', '伺'), + ('口', '使'), + ('口', '司'), + ('口', '史'), + ('口', '嗣'), + ('口', '始'), + ('口', '師'), + ('口', '獅'), + ('口', '詞'), + ('口', '諮'), + ('口', '飼'), + ('口', '事'), + ('口', '治'), + ('口', '磁'), + ('口', '辞'), + ('口', '叱'), + ('口', '蔀'), + ('口', '縞'), + ('口', '舎'), + ('口', '捨'), + ('口', '若'), + ('口', '惹'), + ('口', '呪'), + ('口', '樹'), + ('口', '周'), + ('口', '就'), + ('口', '拾'), + ('口', '蹴'), + ('口', '輯'), + ('口', '週'), + ('口', '獣'), + ('口', '祝'), + ('口', '塾'), + ('口', '熟'), + ('口', '淳'), + ('口', '醇'), + ('口', '恕'), + ('口', '償'), + ('口', '召'), + ('口', '哨'), + ('口', '商'), + ('口', '唱'), + ('口', '嘗'), + ('口', '尚'), + ('口', '廠'), + ('口', '招'), + ('口', '掌'), + ('口', '昭'), + ('口', '沼'), + ('口', '照'), + ('口', '硝'), + ('口', '礁'), + ('口', '紹'), + ('口', '裳'), + ('口', '詔'), + ('口', '象'), + ('口', '賞'), + ('口', '常'), + ('口', '嘱'), + ('口', '唇'), + ('口', '尋'), + ('口', '笥'), + ('口', '厨'), + ('口', '逗'), + ('口', '吹'), + ('口', '帥'), + ('口', '嵩'), + ('口', '据'), + ('口', '菅'), + ('口', '裾'), + ('口', '澄'), + ('口', '整'), + ('口', '聖'), + ('口', '税'), + ('口', '石'), + ('口', '跡'), + ('口', '蹟'), + ('口', '碩'), + ('口', '説'), + ('口', '舌'), + ('口', '占'), + ('口', '船'), + ('口', '践'), + ('口', '善'), + ('口', '繕'), + ('口', '膳'), + ('口', '噌'), + ('口', '疎'), + ('口', '礎'), + ('口', '創'), + ('口', '倉'), + ('口', '喪'), + ('口', '操'), + ('口', '槍'), + ('口', '燥'), + ('口', '蒼'), + ('口', '藻'), + ('口', '鎗'), + ('口', '像'), + ('口', '造'), + ('口', '促'), + ('口', '捉'), + ('口', '束'), + ('口', '足'), + ('口', '速'), + ('口', '俗'), + ('口', '損'), + ('口', '唾'), + ('口', '怠'), + ('口', '胎'), + ('口', '苔'), + ('口', '鯛'), + ('口', '台'), + ('口', '啄'), + ('口', '拓'), + ('口', '諾'), + ('口', '只'), + ('口', '叩'), + ('口', '脱'), + ('口', '谷'), + ('口', '嘆'), + ('口', '歎'), + ('口', '短'), + ('口', '壇'), + ('口', '檀'), + ('口', '知'), + ('口', '智'), + ('口', '痴'), + ('口', '蜘'), + ('口', '嫡'), + ('口', '中'), + ('口', '仲'), + ('口', '忠'), + ('口', '衷'), + ('口', '凋'), + ('口', '喋'), + ('口', '帖'), + ('口', '彫'), + ('口', '調'), + ('口', '超'), + ('口', '跳'), + ('口', '勅'), + ('口', '槌'), + ('口', '追'), + ('口', '鎚'), + ('口', '柘'), + ('口', '鍔'), + ('口', '潰'), + ('口', '壷'), + ('口', '吊'), + ('口', '亭'), + ('口', '停'), + ('口', '呈'), + ('口', '碇'), + ('口', '程'), + ('口', '蹄'), + ('口', '摘'), + ('口', '敵'), + ('口', '滴'), + ('口', '適'), + ('口', '鏑'), + ('口', '哲'), + ('口', '店'), + ('口', '甜'), + ('口', '貼'), + ('口', '点'), + ('口', '兎'), + ('口', '吐'), + ('口', '妬'), + ('口', '登'), + ('口', '菟'), + ('口', '砥'), + ('口', '砺'), + ('口', '党'), + ('口', '唐'), + ('口', '塔'), + ('口', '塘'), + ('口', '宕'), + ('口', '搭'), + ('口', '燈'), + ('口', '痘'), + ('口', '答'), + ('口', '筒'), + ('口', '糖'), + ('口', '豆'), + ('口', '踏'), + ('口', '鐙'), + ('口', '頭'), + ('口', '闘'), + ('口', '同'), + ('口', '堂'), + ('口', '洞'), + ('口', '胴'), + ('口', '銅'), + ('口', '匿'), + ('口', '橡'), + ('口', '苫'), + ('口', '噸'), + ('口', '惇'), + ('口', '敦'), + ('口', '呑'), + ('口', '灘'), + ('口', '鍋'), + ('口', '難'), + ('口', '如'), + ('口', '粘'), + ('口', '嚢'), + ('口', '覗'), + ('口', '破'), + ('口', '倍'), + ('口', '培'), + ('口', '賠'), + ('口', '陪'), + ('口', '硲'), + ('口', '筈'), + ('口', '噺'), + ('口', '塙'), + ('口', '蛤'), + ('口', '磐'), + ('口', '否'), + ('口', '碑'), + ('口', '避'), + ('口', '逼'), + ('口', '品'), + ('口', '埠'), + ('口', '富'), + ('口', '冨'), + ('口', '部'), + ('口', '葺'), + ('口', '蕗'), + ('口', '副'), + ('口', '幅'), + ('口', '福'), + ('口', '吻'), + ('口', '噴'), + ('口', '僻'), + ('口', '壁'), + ('口', '癖'), + ('口', '碧'), + ('口', '別'), + ('口', '保'), + ('口', '舗'), + ('口', '菩'), + ('口', '呆'), + ('口', '烹'), + ('口', '砲'), + ('口', '褒'), + ('口', '豊'), + ('口', '剖'), + ('口', '膨'), + ('口', '吠'), + ('口', '釦'), + ('口', '殆'), + ('口', '磨'), + ('口', '哩'), + ('口', '俣'), + ('口', '麿'), + ('口', '味'), + ('口', '民'), + ('口', '眠'), + ('口', '椋'), + ('口', '名'), + ('口', '命'), + ('口', '銘'), + ('口', '鳴'), + ('口', '免'), + ('口', '問'), + ('口', '冶'), + ('口', '躍'), + ('口', '鑓'), + ('口', '唯'), + ('口', '佑'), + ('口', '揖'), + ('口', '祐'), + ('口', '裕'), + ('口', '邑'), + ('口', '融'), + ('口', '容'), + ('口', '溶'), + ('口', '熔'), + ('口', '蓉'), + ('口', '踊'), + ('口', '慾'), + ('口', '欲'), + ('口', '浴'), + ('口', '頼'), + ('口', '洛'), + ('口', '絡'), + ('口', '落'), + ('口', '酪'), + ('口', '乱'), + ('口', '吏'), + ('口', '掠'), + ('口', '略'), + ('口', '硫'), + ('口', '侶'), + ('口', '亮'), + ('口', '涼'), + ('口', '諒'), + ('口', '臨'), + ('口', '呂'), + ('口', '賂'), + ('口', '路'), + ('口', '露'), + ('口', '婁'), + ('口', '和'), + ('口', '話'), + ('口', '惑'), + ('口', '鷲'), + ('口', '鰐'), + ('口', '藁'), + ('口', '碗'), + ('口', '豫'), + ('口', '舒'), + ('口', '亟'), + ('口', '亳'), + ('口', '亶'), + ('口', '估'), + ('口', '佝'), + ('口', '佶'), + ('口', '倚'), + ('口', '倨'), + ('口', '做'), + ('口', '傴'), + ('口', '僉'), + ('口', '僖'), + ('口', '儉'), + ('口', '儔'), + ('口', '儼'), + ('口', '儻'), + ('口', '兌'), + ('口', '兢'), + ('口', '冏'), + ('口', '冲'), + ('口', '况'), + ('口', '凅'), + ('口', '凉'), + ('口', '凛'), + ('口', '凾'), + ('口', '刮'), + ('口', '剋'), + ('口', '剌'), + ('口', '剞'), + ('口', '剴'), + ('口', '剳'), + ('口', '劍'), + ('口', '劔'), + ('口', '劒'), + ('口', '剱'), + ('口', '劈'), + ('口', '劬'), + ('口', '劭'), + ('口', '劼'), + ('口', '勍'), + ('口', '勸'), + ('口', '匐'), + ('口', '匳'), + ('口', '區'), + ('口', '卻'), + ('口', '厰'), + ('口', '叮'), + ('口', '叨'), + ('口', '叭'), + ('口', '叺'), + ('口', '吁'), + ('口', '吽'), + ('口', '呀'), + ('口', '听'), + ('口', '吭'), + ('口', '吼'), + ('口', '吮'), + ('口', '吶'), + ('口', '吩'), + ('口', '吝'), + ('口', '呎'), + ('口', '咏'), + ('口', '呵'), + ('口', '咎'), + ('口', '呟'), + ('口', '呱'), + ('口', '呷'), + ('口', '呰'), + ('口', '咒'), + ('口', '呻'), + ('口', '咀'), + ('口', '呶'), + ('口', '咄'), + ('口', '咐'), + ('口', '咆'), + ('口', '哇'), + ('口', '咢'), + ('口', '咸'), + ('口', '咥'), + ('口', '咬'), + ('口', '哄'), + ('口', '哈'), + ('口', '咨'), + ('口', '咫'), + ('口', '哂'), + ('口', '咤'), + ('口', '咾'), + ('口', '咼'), + ('口', '哘'), + ('口', '哥'), + ('口', '哦'), + ('口', '唏'), + ('口', '唔'), + ('口', '哽'), + ('口', '哮'), + ('口', '哭'), + ('口', '哺'), + ('口', '哢'), + ('口', '唹'), + ('口', '啀'), + ('口', '啣'), + ('口', '啌'), + ('口', '售'), + ('口', '啜'), + ('口', '啅'), + ('口', '啖'), + ('口', '啗'), + ('口', '唸'), + ('口', '唳'), + ('口', '啝'), + ('口', '喙'), + ('口', '喀'), + ('口', '咯'), + ('口', '喊'), + ('口', '喟'), + ('口', '啻'), + ('口', '啾'), + ('口', '喘'), + ('口', '喞'), + ('口', '單'), + ('口', '啼'), + ('口', '喃'), + ('口', '喩'), + ('口', '喇'), + ('口', '喨'), + ('口', '嗚'), + ('口', '嗅'), + ('口', '嗟'), + ('口', '嗄'), + ('口', '嗜'), + ('口', '嗤'), + ('口', '嗔'), + ('口', '嘔'), + ('口', '嗷'), + ('口', '嘖'), + ('口', '嗾'), + ('口', '嗽'), + ('口', '嘛'), + ('口', '嗹'), + ('口', '噎'), + ('口', '噐'), + ('口', '營'), + ('口', '嘴'), + ('口', '嘶'), + ('口', '嘲'), + ('口', '嘸'), + ('口', '噫'), + ('口', '噤'), + ('口', '嘯'), + ('口', '噬'), + ('口', '噪'), + ('口', '嚆'), + ('口', '嚀'), + ('口', '嚊'), + ('口', '嚠'), + ('口', '嚔'), + ('口', '嚏'), + ('口', '嚥'), + ('口', '嚮'), + ('口', '嚶'), + ('口', '嚴'), + ('口', '囂'), + ('口', '嚼'), + ('口', '囁'), + ('口', '囃'), + ('口', '囀'), + ('口', '囈'), + ('口', '囎'), + ('口', '囑'), + ('口', '囓'), + ('口', '囗'), + ('口', '圄'), + ('口', '國'), + ('口', '圍'), + ('口', '圓'), + ('口', '圖'), + ('口', '嗇'), + ('口', '圜'), + ('口', '堝'), + ('口', '堡'), + ('口', '墻'), + ('口', '壑'), + ('口', '壤'), + ('口', '壹'), + ('口', '壽'), + ('口', '竒'), + ('口', '奩'), + ('口', '娟'), + ('口', '婀'), + ('口', '嫗'), + ('口', '嫦'), + ('口', '嫩'), + ('口', '嬌'), + ('口', '嬋'), + ('口', '嬖'), + ('口', '嬾'), + ('口', '孃'), + ('口', '孰'), + ('口', '寤'), + ('口', '寰'), + ('口', '尅'), + ('口', '岷'), + ('口', '岾'), + ('口', '峇'), + ('口', '峪'), + ('口', '嵜'), + ('口', '嵒'), + ('口', '嶇'), + ('口', '嶝'), + ('口', '嶮'), + ('口', '巉'), + ('口', '巖'), + ('口', '幃'), + ('口', '幗'), + ('口', '幤'), + ('口', '廚'), + ('口', '廩'), + ('口', '廱'), + ('口', '彁'), + ('口', '彈'), + ('口', '彭'), + ('口', '徊'), + ('口', '怡'), + ('口', '怙'), + ('口', '怐'), + ('口', '恪'), + ('口', '恬'), + ('口', '恫'), + ('口', '悁'), + ('口', '悚'), + ('口', '悒'), + ('口', '悋'), + ('口', '惆'), + ('口', '愕'), + ('口', '愍'), + ('口', '愴'), + ('口', '慥'), + ('口', '慝'), + ('口', '憙'), + ('口', '憇'), + ('口', '憬'), + ('口', '憚'), + ('口', '懆'), + ('口', '懍'), + ('口', '懶'), + ('口', '懿'), + ('口', '懽'), + ('口', '戰'), + ('口', '戲'), + ('口', '扣'), + ('口', '拿'), + ('口', '拈'), + ('口', '挌'), + ('口', '拮'), + ('口', '捐'), + ('口', '掎'), + ('口', '掵'), + ('口', '搶'), + ('口', '撼'), + ('口', '擅'), + ('口', '擘'), + ('口', '擱'), + ('口', '擡'), + ('口', '抬'), + ('口', '擣'), + ('口', '攜'), + ('口', '敕'), + ('口', '敞'), + ('口', '敲'), + ('口', '數'), + ('口', '斂'), + ('口', '斫'), + ('口', '晤'), + ('口', '晧'), + ('口', '暾'), + ('口', '枷'), + ('口', '柯'), + ('口', '枴'), + ('口', '枳'), + ('口', '枸'), + ('口', '梏'), + ('口', '檮'), + ('口', '梠'), + ('口', '桾'), + ('口', '椁'), + ('口', '椥'), + ('口', '棠'), + ('口', '楜'), + ('口', '楫'), + ('口', '榿'), + ('口', '槁'), + ('口', '榾'), + ('口', '榕'), + ('口', '槨'), + ('口', '權'), + ('口', '樞'), + ('口', '樓'), + ('口', '橲'), + ('口', '橙'), + ('口', '檠'), + ('口', '檢'), + ('口', '檣'), + ('口', '檗'), + ('口', '蘗'), + ('口', '櫚'), + ('口', '蘖'), + ('口', '櫺'), + ('口', '欟'), + ('口', '欹'), + ('口', '歐'), + ('口', '歙'), + ('口', '歛'), + ('口', '歡'), + ('口', '歸'), + ('口', '殕'), + ('口', '殞'), + ('口', '殪'), + ('口', '殫'), + ('口', '毆'), + ('口', '毫'), + ('口', '氈'), + ('口', '氓'), + ('口', '沽'), + ('口', '沾'), + ('口', '泯'), + ('口', '洽'), + ('口', '洳'), + ('口', '涓'), + ('口', '濤'), + ('口', '涸'), + ('口', '淌'), + ('口', '渮'), + ('口', '渟'), + ('口', '溂'), + ('口', '滄'), + ('口', '溏'), + ('口', '灌'), + ('口', '滬'), + ('口', '滾'), + ('口', '漱'), + ('口', '潯'), + ('口', '澎'), + ('口', '澡'), + ('口', '瀛'), + ('口', '瀲'), + ('口', '炯'), + ('口', '烱'), + ('口', '烙'), + ('口', '焙'), + ('口', '煦'), + ('口', '熹'), + ('口', '燉'), + ('口', '爨'), + ('口', '牆'), + ('口', '牾'), + ('口', '犒'), + ('口', '狆'), + ('口', '狢'), + ('口', '狷'), + ('口', '猗'), + ('口', '獸'), + ('口', '獵'), + ('口', '獻'), + ('口', '獺'), + ('口', '珈'), + ('口', '珞'), + ('口', '珸'), + ('口', '瑾'), + ('口', '璧'), + ('口', '甌'), + ('口', '甓'), + ('口', '甞'), + ('口', '畧'), + ('口', '畸'), + ('口', '當'), + ('口', '疇'), + ('口', '痂'), + ('口', '痞'), + ('口', '痾'), + ('口', '痼'), + ('口', '瘡'), + ('口', '瘻'), + ('口', '癩'), + ('口', '癰'), + ('口', '皓'), + ('口', '皚'), + ('口', '盒'), + ('口', '瞎'), + ('口', '瞠'), + ('口', '瞶'), + ('口', '瞼'), + ('口', '瞽'), + ('口', '矼'), + ('口', '砌'), + ('口', '砒'), + ('口', '礦'), + ('口', '砠'), + ('口', '礪'), + ('口', '硅'), + ('口', '碎'), + ('口', '硴'), + ('口', '碆'), + ('口', '硼'), + ('口', '碚'), + ('口', '碌'), + ('口', '碣'), + ('口', '碵'), + ('口', '碪'), + ('口', '碯'), + ('口', '磑'), + ('口', '磆'), + ('口', '磋'), + ('口', '磔'), + ('口', '碾'), + ('口', '碼'), + ('口', '磅'), + ('口', '磊'), + ('口', '磬'), + ('口', '磧'), + ('口', '磚'), + ('口', '磽'), + ('口', '磴'), + ('口', '礇'), + ('口', '礒'), + ('口', '礑'), + ('口', '礙'), + ('口', '礬'), + ('口', '礫'), + ('口', '祠'), + ('口', '禧'), + ('口', '禪'), + ('口', '禮'), + ('口', '稠'), + ('口', '稟'), + ('口', '禀'), + ('口', '稾'), + ('口', '穃'), + ('口', '穡'), + ('口', '穰'), + ('口', '窘'), + ('口', '窖'), + ('口', '窩'), + ('口', '窶'), + ('口', '站'), + ('口', '竦'), + ('口', '笳'), + ('口', '笘'), + ('口', '笞'), + ('口', '筥'), + ('口', '箚'), + ('口', '箴'), + ('口', '篩'), + ('口', '簑'), + ('口', '簔'), + ('口', '簓'), + ('口', '簍'), + ('口', '簣'), + ('口', '簽'), + ('口', '籌'), + ('口', '籟'), + ('口', '籥'), + ('口', '粭'), + ('口', '粡'), + ('口', '鬻'), + ('口', '絅'), + ('口', '紿'), + ('口', '絮'), + ('口', '絽'), + ('口', '綺'), + ('口', '綢'), + ('口', '綰'), + ('口', '緘'), + ('口', '緝'), + ('口', '緡'), + ('口', '縋'), + ('口', '縷'), + ('口', '纈'), + ('口', '罐'), + ('口', '罟'), + ('口', '罠'), + ('口', '羂'), + ('口', '羇'), + ('口', '羣'), + ('口', '羶'), + ('口', '羸'), + ('口', '翕'), + ('口', '耜'), + ('口', '聒'), + ('口', '聟'), + ('口', '膈'), + ('口', '膕'), + ('口', '臂'), + ('口', '臉'), + ('口', '臙'), + ('口', '臺'), + ('口', '舍'), + ('口', '舐'), + ('口', '舖'), + ('口', '舸'), + ('口', '艙'), + ('口', '艢'), + ('口', '艷'), + ('口', '苟'), + ('口', '茴'), + ('口', '茖'), + ('口', '茹'), + ('口', '荅'), + ('口', '茗'), + ('口', '莟'), + ('口', '茣'), + ('口', '荳'), + ('口', '菫'), + ('口', '萼'), + ('口', '蕚'), + ('口', '葫'), + ('口', '葆'), + ('口', '萵'), + ('口', '蒿'), + ('口', '蒟'), + ('口', '蔔'), + ('口', '蕁'), + ('口', '薔'), + ('口', '薛'), + ('口', '藪'), + ('口', '薜'), + ('口', '薹'), + ('口', '藾'), + ('口', '號'), + ('口', '蛄'), + ('口', '蛔'), + ('口', '蛞'), + ('口', '蜈'), + ('口', '蛻'), + ('口', '蜩'), + ('口', '蝠'), + ('口', '蝸'), + ('口', '蝴'), + ('口', '蟐'), + ('口', '雖'), + ('口', '螳'), + ('口', '螻'), + ('口', '蟶'), + ('口', '蟷'), + ('口', '蠹'), + ('口', '蠧'), + ('口', '衙'), + ('口', '衞'), + ('口', '袁'), + ('口', '袞'), + ('口', '裔'), + ('口', '裙'), + ('口', '褓'), + ('口', '襃'), + ('口', '褸'), + ('口', '襌'), + ('口', '襠'), + ('口', '襞'), + ('口', '襭'), + ('口', '覘'), + ('口', '覬'), + ('口', '觀'), + ('口', '訶'), + ('口', '詁'), + ('口', '詒'), + ('口', '詬'), + ('口', '誥'), + ('口', '諫'), + ('口', '諤'), + ('口', '諱'), + ('口', '謌'), + ('口', '謳'), + ('口', '謫'), + ('口', '譎'), + ('口', '證'), + ('口', '譟'), + ('口', '譬'), + ('口', '譴'), + ('口', '讌'), + ('口', '讒'), + ('口', '讓'), + ('口', '讙'), + ('口', '谺'), + ('口', '豁'), + ('口', '谿'), + ('口', '豈'), + ('口', '豌'), + ('口', '豎'), + ('口', '豐'), + ('口', '貂'), + ('口', '貉'), + ('口', '貽'), + ('口', '贏'), + ('口', '赧'), + ('口', '跂'), + ('口', '趾'), + ('口', '趺'), + ('口', '跏'), + ('口', '跚'), + ('口', '跖'), + ('口', '跌'), + ('口', '跛'), + ('口', '跋'), + ('口', '跪'), + ('口', '跫'), + ('口', '跟'), + ('口', '跣'), + ('口', '跼'), + ('口', '踈'), + ('口', '踉'), + ('口', '跿'), + ('口', '踝'), + ('口', '踞'), + ('口', '踐'), + ('口', '踟'), + ('口', '蹂'), + ('口', '踵'), + ('口', '踰'), + ('口', '踴'), + ('口', '蹊'), + ('口', '蹇'), + ('口', '蹉'), + ('口', '蹌'), + ('口', '蹐'), + ('口', '蹈'), + ('口', '蹙'), + ('口', '蹤'), + ('口', '蹠'), + ('口', '踪'), + ('口', '蹣'), + ('口', '蹕'), + ('口', '蹶'), + ('口', '蹲'), + ('口', '蹼'), + ('口', '躁'), + ('口', '躇'), + ('口', '躅'), + ('口', '躄'), + ('口', '躋'), + ('口', '躊'), + ('口', '躓'), + ('口', '躑'), + ('口', '躔'), + ('口', '躙'), + ('口', '躪'), + ('口', '躡'), + ('口', '軆'), + ('口', '軻'), + ('口', '輅'), + ('口', '輻'), + ('口', '轅'), + ('口', '轎'), + ('口', '轗'), + ('口', '辜'), + ('口', '辟'), + ('口', '辣'), + ('口', '迚'), + ('口', '迥'), + ('口', '迢'), + ('口', '迴'), + ('口', '逅'), + ('口', '逞'), + ('口', '逧'), + ('口', '遐'), + ('口', '邉'), + ('口', '邵'), + ('口', '郢'), + ('口', '郤'), + ('口', '扈'), + ('口', '鄂'), + ('口', '鄙'), + ('口', '鄲'), + ('口', '酩'), + ('口', '酲'), + ('口', '醢'), + ('口', '醴'), + ('口', '釀'), + ('口', '鉤'), + ('口', '鉐'), + ('口', '銛'), + ('口', '鍄'), + ('口', '錮'), + ('口', '鍼'), + ('口', '鎬'), + ('口', '鎔'), + ('口', '鏤'), + ('口', '鐶'), + ('口', '鐵'), + ('口', '鐡'), + ('口', '鐺'), + ('口', '鑄'), + ('口', '鑰'), + ('口', '鑵'), + ('口', '閭'), + ('口', '閾'), + ('口', '闊'), + ('口', '濶'), + ('口', '闡'), + ('口', '闢'), + ('口', '隕'), + ('口', '險'), + ('口', '雕'), + ('口', '霑'), + ('口', '霹'), + ('口', '靈'), + ('口', '靠'), + ('口', '鞅'), + ('口', '靺'), + ('口', '鞣'), + ('口', '鞳'), + ('口', '韋'), + ('口', '韜'), + ('口', '韶'), + ('口', '頡'), + ('口', '頷'), + ('口', '顫'), + ('口', '顴'), + ('口', '颱'), + ('口', '餉'), + ('口', '餬'), + ('口', '饐'), + ('口', '饋'), + ('口', '饕'), + ('口', '馘'), + ('口', '駛'), + ('口', '駘'), + ('口', '駱'), + ('口', '驅'), + ('口', '驕'), + ('口', '驗'), + ('口', '驩'), + ('口', '骼'), + ('口', '髏'), + ('口', '體'), + ('口', '髞'), + ('口', '髫'), + ('口', '髻'), + ('口', '鬟'), + ('口', '鬪'), + ('口', '鬲'), + ('口', '鮖'), + ('口', '鰕'), + ('口', '鰔'), + ('口', '鰊'), + ('口', '鰤'), + ('口', '鱚'), + ('口', '鴣'), + ('口', '鴿'), + ('口', '鵑'), + ('口', '鶉'), + ('口', '鶫'), + ('口', '鶚'), + ('口', '鷸'), + ('口', '鸛'), + ('口', '鹹'), + ('口', '麌'), + ('口', '黏'), + ('口', '點'), + ('口', '黠'), + ('口', '黥'), + ('口', '黨'), + ('口', '皷'), + ('口', '鼕'), + ('口', '齣'), + ('口', '齠'), + ('口', '齬'), + ('口', '齪'), + ('口', '齶'), + ('口', '龕'), + ('口', '龠'), + ('口', '凜'), + ('口', '熙'), + ('囗', '囲'), + ('囗', '咽'), + ('囗', '因'), + ('囗', '姻'), + ('囗', '園'), + ('囗', '薗'), + ('囗', '恩'), + ('囗', '箇'), + ('囗', '回'), + ('囗', '廻'), + ('囗', '菌'), + ('囗', '圏'), + ('囗', '鹸'), + ('囗', '個'), + ('囗', '固'), + ('囗', '口'), + ('囗', '国'), + ('囗', '困'), + ('囗', '梱'), + ('囗', '四'), + ('囗', '囚'), + ('囗', '図'), + ('囗', '団'), + ('囗', '壇'), + ('囗', '掴'), + ('囗', '圃'), + ('囗', '亶'), + ('囗', '凅'), + ('囗', '凛'), + ('囗', '囗'), + ('囗', '囮'), + ('囗', '囹'), + ('囗', '圀'), + ('囗', '囿'), + ('囗', '圄'), + ('囗', '圉'), + ('囗', '圈'), + ('囗', '國'), + ('囗', '圍'), + ('囗', '圓'), + ('囗', '團'), + ('囗', '圖'), + ('囗', '嗇'), + ('囗', '圜'), + ('囗', '墻'), + ('囗', '幗'), + ('囗', '廩'), + ('囗', '徊'), + ('囗', '悃'), + ('囗', '惱'), + ('囗', '懍'), + ('囗', '擅'), + ('囗', '椢'), + ('囗', '檣'), + ('囗', '氈'), + ('囗', '氤'), + ('囗', '泗'), + ('囗', '泅'), + ('囗', '涸'), + ('囗', '湎'), + ('囗', '溷'), + ('囗', '滷'), + ('囗', '烟'), + ('囗', '牆'), + ('囗', '牘'), + ('囗', '犢'), + ('囗', '瑙'), + ('囗', '痼'), + ('囗', '碯'), + ('囗', '稟'), + ('囗', '禀'), + ('囗', '穡'), + ('囗', '窗'), + ('囗', '箘'), + ('囗', '篦'), + ('囗', '粤'), + ('囗', '總'), + ('囗', '續'), + ('囗', '羶'), + ('囗', '聰'), + ('囗', '腦'), + ('囗', '膕'), + ('囗', '臘'), + ('囗', '艢'), + ('囗', '茵'), + ('囗', '茴'), + ('囗', '蓖'), + ('囗', '薔'), + ('囗', '蛔'), + ('囗', '覿'), + ('囗', '諄'), + ('囗', '讀'), + ('囗', '貔'), + ('囗', '贖'), + ('囗', '迴'), + ('囗', '鄙'), + ('囗', '錮'), + ('囗', '鐓'), + ('囗', '鑞'), + ('囗', '顫'), + ('囗', '駟'), + ('囗', '鬣'), + ('囗', '鰮'), + ('囗', '鹵'), + ('囗', '鹹'), + ('囗', '鹽'), + ('囗', '麕'), + ('囗', '黷'), + ('土', '娃'), + ('土', '握'), + ('土', '渥'), + ('土', '圧'), + ('土', '綾'), + ('土', '域'), + ('土', '越'), + ('土', '園'), + ('土', '堰'), + ('土', '煙'), + ('土', '猿'), + ('土', '薗'), + ('土', '遠'), + ('土', '塩'), + ('土', '屋'), + ('土', '牡'), + ('土', '佳'), + ('土', '塊'), + ('土', '壊'), + ('土', '怪'), + ('土', '害'), + ('土', '崖'), + ('土', '涯'), + ('土', '蓋'), + ('土', '街'), + ('土', '浬'), + ('土', '蛙'), + ('土', '垣'), + ('土', '嚇'), + ('土', '赫'), + ('土', '掛'), + ('土', '樫'), + ('土', '割'), + ('土', '轄'), + ('土', '鰹'), + ('土', '竃'), + ('土', '堪'), + ('土', '基'), + ('土', '規'), + ('土', '起'), + ('土', '喫'), + ('土', '却'), + ('土', '脚'), + ('土', '去'), + ('土', '境'), + ('土', '怯'), + ('土', '僅'), + ('土', '勤'), + ('土', '均'), + ('土', '謹'), + ('土', '窪'), + ('土', '卦'), + ('土', '圭'), + ('土', '珪'), + ('土', '型'), + ('土', '契'), + ('土', '径'), + ('土', '桂'), + ('土', '渓'), + ('土', '畦'), + ('土', '経'), + ('土', '罫'), + ('土', '茎'), + ('土', '軽'), + ('土', '頚'), + ('土', '鶏'), + ('土', '潔'), + ('土', '堅'), + ('土', '憲'), + ('土', '坑'), + ('土', '垢'), + ('土', '浩'), + ('土', '耕'), + ('土', '劫'), + ('土', '壕'), + ('土', '麹'), + ('土', '告'), + ('土', '酷'), + ('土', '鵠'), + ('土', '坤'), + ('土', '墾'), + ('土', '坐'), + ('土', '座'), + ('土', '挫'), + ('土', '債'), + ('土', '哉'), + ('土', '塞'), + ('土', '栽'), + ('土', '裁'), + ('土', '載'), + ('土', '在'), + ('土', '坂'), + ('土', '堺'), + ('土', '埼'), + ('土', '鮭'), + ('土', '鯖'), + ('土', '錆'), + ('土', '至'), + ('土', '詩'), + ('土', '侍'), + ('土', '寺'), + ('土', '持'), + ('土', '時'), + ('土', '痔'), + ('土', '蒔'), + ('土', '執'), + ('土', '室'), + ('土', '舎'), + ('土', '捨'), + ('土', '赦'), + ('土', '社'), + ('土', '趣'), + ('土', '樹'), + ('土', '周'), + ('土', '週'), + ('土', '塾'), + ('土', '庄'), + ('土', '粧'), + ('土', '城'), + ('土', '場'), + ('土', '壌'), + ('土', '情'), + ('土', '埴'), + ('土', '塵'), + ('土', '趨'), + ('土', '勢'), + ('土', '晴'), + ('土', '清'), + ('土', '精'), + ('土', '請'), + ('土', '青'), + ('土', '静'), + ('土', '積'), + ('土', '籍'), + ('土', '績'), + ('土', '責'), + ('土', '赤'), + ('土', '蹟'), + ('土', '先'), + ('土', '洗'), + ('土', '潜'), + ('土', '繊'), + ('土', '銑'), + ('土', '塑'), + ('土', '素'), + ('土', '走'), + ('土', '増'), + ('土', '造'), + ('土', '堕'), + ('土', '堆'), + ('土', '待'), + ('土', '戴'), + ('土', '鯛'), + ('土', '達'), + ('土', '坦'), + ('土', '壇'), + ('土', '地'), + ('土', '致'), + ('土', '秩'), + ('土', '窒'), + ('土', '鋳'), + ('土', '凋'), + ('土', '彫'), + ('土', '調'), + ('土', '超'), + ('土', '墜'), + ('土', '塚'), + ('土', '漬'), + ('土', '坪'), + ('土', '堤'), + ('土', '填'), + ('土', '纏'), + ('土', '吐'), + ('土', '堵'), + ('土', '塗'), + ('土', '徒'), + ('土', '杜'), + ('土', '土'), + ('土', '倒'), + ('土', '塔'), + ('土', '塘'), + ('土', '梼'), + ('土', '涛'), + ('土', '祷'), + ('土', '等'), + ('土', '到'), + ('土', '堂'), + ('土', '特'), + ('土', '毒'), + ('土', '瀞'), + ('土', '熱'), + ('土', '埜'), + ('土', '培'), + ('土', '塙'), + ('土', '班'), + ('土', '菱'), + ('土', '蛭'), + ('土', '埠'), + ('土', '赴'), + ('土', '封'), + ('土', '墳'), + ('土', '塀'), + ('土', '陛'), + ('土', '壁'), + ('土', '舗'), + ('土', '墓'), + ('土', '報'), + ('土', '法'), + ('土', '坊'), + ('土', '膨'), + ('土', '墨'), + ('土', '睦'), + ('土', '堀'), + ('土', '埋'), + ('土', '姪'), + ('土', '靖'), + ('土', '陸'), + ('土', '凌'), + ('土', '稜'), + ('土', '陵'), + ('土', '塁'), + ('土', '倩'), + ('土', '傲'), + ('土', '僥'), + ('土', '僣'), + ('土', '刧'), + ('土', '勣'), + ('土', '哇'), + ('土', '咥'), + ('土', '啀'), + ('土', '嗷'), + ('土', '嘖'), + ('土', '囈'), + ('土', '囓'), + ('土', '圉'), + ('土', '嗇'), + ('土', '圦'), + ('土', '圷'), + ('土', '圸'), + ('土', '坎'), + ('土', '圻'), + ('土', '址'), + ('土', '坏'), + ('土', '坩'), + ('土', '埀'), + ('土', '垈'), + ('土', '坡'), + ('土', '坿'), + ('土', '垉'), + ('土', '垓'), + ('土', '垠'), + ('土', '垳'), + ('土', '垤'), + ('土', '垪'), + ('土', '垰'), + ('土', '埃'), + ('土', '埆'), + ('土', '埔'), + ('土', '埒'), + ('土', '埓'), + ('土', '堊'), + ('土', '埖'), + ('土', '埣'), + ('土', '堋'), + ('土', '堙'), + ('土', '堝'), + ('土', '塲'), + ('土', '堡'), + ('土', '塢'), + ('土', '塋'), + ('土', '塰'), + ('土', '毀'), + ('土', '塒'), + ('土', '堽'), + ('土', '塹'), + ('土', '墅'), + ('土', '墹'), + ('土', '墟'), + ('土', '墫'), + ('土', '墺'), + ('土', '壞'), + ('土', '墻'), + ('土', '墸'), + ('土', '墮'), + ('土', '壅'), + ('土', '壓'), + ('土', '壑'), + ('土', '壗'), + ('土', '壙'), + ('土', '壘'), + ('土', '壥'), + ('土', '壜'), + ('土', '壤'), + ('土', '壟'), + ('土', '壻'), + ('土', '奎'), + ('土', '屆'), + ('土', '峙'), + ('土', '崕'), + ('土', '崚'), + ('土', '嶢'), + ('土', '幄'), + ('土', '幇'), + ('土', '廛'), + ('土', '彗'), + ('土', '彭'), + ('土', '恠'), + ('土', '恚'), + ('土', '恃'), + ('土', '惆'), + ('土', '慳'), + ('土', '慥'), + ('土', '懌'), + ('土', '懴'), + ('土', '截'), + ('土', '挂'), + ('土', '挈'), + ('土', '捏'), + ('土', '撓'), + ('土', '擇'), + ('土', '撻'), + ('土', '擡'), + ('土', '攅'), + ('土', '敖'), + ('土', '晧'), + ('土', '曉'), + ('土', '桎'), + ('土', '梏'), + ('土', '椡'), + ('土', '楔'), + ('土', '榁'), + ('土', '槿'), + ('土', '橈'), + ('土', '檣'), + ('土', '殱'), + ('土', '殼'), + ('土', '汢'), + ('土', '洙'), + ('土', '涅'), + ('土', '淕'), + ('土', '湮'), + ('土', '溘'), + ('土', '澆'), + ('土', '濳'), + ('土', '澎'), + ('土', '澤'), + ('土', '熬'), + ('土', '燒'), + ('土', '燵'), + ('土', '牆'), + ('土', '猜'), + ('土', '琺'), + ('土', '甄'), + ('土', '畤'), + ('土', '疆'), + ('土', '癪'), + ('土', '皓'), + ('土', '盍'), + ('土', '睚'), + ('土', '睫'), + ('土', '睛'), + ('土', '睾'), + ('土', '瞎'), + ('土', '瞠'), + ('土', '硅'), + ('土', '磧'), + ('土', '磽'), + ('土', '禊'), + ('土', '稠'), + ('土', '穡'), + ('土', '窖'), + ('土', '竈'), + ('土', '筅'), + ('土', '簀'), + ('土', '籖'), + ('土', '綢'), + ('土', '緻'), + ('土', '縱'), + ('土', '繞'), + ('土', '繹'), + ('土', '纒'), + ('土', '纎'), + ('土', '纛'), + ('土', '翹'), + ('土', '耋'), + ('土', '肚'), + ('土', '膣'), + ('土', '腟'), + ('土', '臺'), + ('土', '臻'), + ('土', '艢'), + ('土', '菫'), + ('土', '菁'), + ('土', '蔆'), + ('土', '蓙'), + ('土', '蕘'), + ('土', '薔'), + ('土', '薐'), + ('土', '薹'), + ('土', '藝'), + ('土', '蜻'), + ('土', '蜩'), + ('土', '螯'), + ('土', '螫'), + ('土', '螳'), + ('土', '蟯'), + ('土', '袁'), + ('土', '袿'), + ('土', '褂'), + ('土', '褻'), + ('土', '襭'), + ('土', '覲'), + ('土', '誥'), + ('土', '譯'), + ('土', '讚'), + ('土', '豁'), + ('土', '贅'), + ('土', '贊'), + ('土', '賍'), + ('土', '赧'), + ('土', '赭'), + ('土', '赱'), + ('土', '赳'), + ('土', '趁'), + ('土', '趙'), + ('土', '跌'), + ('土', '跣'), + ('土', '跿'), + ('土', '躔'), + ('土', '軼'), + ('土', '輊'), + ('土', '轅'), + ('土', '逵'), + ('土', '遨'), + ('土', '遶'), + ('土', '鏗'), + ('土', '鐃'), + ('土', '鐵'), + ('土', '鐡'), + ('土', '鑽'), + ('土', '閨'), + ('土', '闔'), + ('土', '闥'), + ('土', '陞'), + ('土', '陦'), + ('土', '靜'), + ('土', '靠'), + ('土', '鞋'), + ('土', '韃'), + ('土', '饒'), + ('土', '驍'), + ('土', '鰲'), + ('土', '鵄'), + ('土', '麸'), + ('土', '鼇'), + ('土', '齧'), + ('土', '齷'), + ('土', '堯'), + ('士', '壱'), + ('士', '淫'), + ('士', '荏'), + ('士', '嘉'), + ('士', '馨'), + ('士', '殻'), + ('士', '款'), + ('士', '喜'), + ('士', '嬉'), + ('士', '吉'), + ('士', '桔'), + ('士', '詰'), + ('士', '結'), + ('士', '鼓'), + ('士', '穀'), + ('士', '仕'), + ('士', '士'), + ('士', '志'), + ('士', '誌'), + ('士', '実'), + ('士', '壬'), + ('士', '声'), + ('士', '壮'), + ('士', '荘'), + ('士', '装'), + ('士', '続'), + ('士', '壷'), + ('士', '廷'), + ('士', '涜'), + ('士', '読'), + ('士', '任'), + ('士', '妊'), + ('士', '売'), + ('士', '俵'), + ('士', '表'), + ('士', '耗'), + ('士', '隷'), + ('士', '佶'), + ('士', '僖'), + ('士', '儔'), + ('士', '凭'), + ('士', '劼'), + ('士', '噎'), + ('士', '壯'), + ('士', '壺'), + ('士', '壹'), + ('士', '壼'), + ('士', '壽'), + ('士', '奘'), + ('士', '姙'), + ('士', '婬'), + ('士', '孛'), + ('士', '屆'), + ('士', '廚'), + ('士', '弉'), + ('士', '恁'), + ('士', '愨'), + ('士', '憙'), + ('士', '懿'), + ('士', '拮'), + ('士', '擡'), + ('士', '擣'), + ('士', '檮'), + ('士', '橲'), + ('士', '殪'), + ('士', '濤'), + ('士', '熹'), + ('士', '牘'), + ('士', '犢'), + ('士', '疇'), + ('士', '痣'), + ('士', '瞽'), + ('士', '磬'), + ('士', '禧'), + ('士', '竇'), + ('士', '籌'), + ('士', '纈'), + ('士', '續'), + ('士', '罟'), + ('士', '聲'), + ('士', '臺'), + ('士', '莊'), + ('士', '薹'), + ('士', '蠧'), + ('士', '衽'), + ('士', '裝'), + ('士', '覿'), + ('士', '謦'), + ('士', '讀'), + ('士', '賣'), + ('士', '贖'), + ('士', '躊'), + ('士', '轂'), + ('士', '鑄'), + ('士', '雕'), + ('士', '頡'), + ('士', '饐'), + ('士', '髻'), + ('士', '鱚'), + ('士', '黠'), + ('士', '黷'), + ('士', '皷'), + ('士', '鼕'), + ('夂', '愛'), + ('夂', '逢'), + ('夂', '綾'), + ('夂', '榎'), + ('夂', '夏'), + ('夂', '各'), + ('夂', '格'), + ('夂', '閣'), + ('夂', '額'), + ('夂', '徽'), + ('夂', '客'), + ('夂', '拠'), + ('夂', '驚'), + ('夂', '慶'), + ('夂', '警'), + ('夂', '後'), + ('夂', '降'), + ('夂', '麹'), + ('夂', '唆'), + ('夂', '鷺'), + ('夂', '撒'), + ('夂', '酸'), + ('夂', '終'), + ('夂', '俊'), + ('夂', '峻'), + ('夂', '竣'), + ('夂', '駿'), + ('夂', '処'), + ('夂', '擾'), + ('夂', '条'), + ('夂', '数'), + ('夂', '冬'), + ('夂', '麦'), + ('夂', '髪'), + ('夂', '抜'), + ('夂', '柊'), + ('夂', '菱'), + ('夂', '蕗'), + ('夂', '復'), + ('夂', '腹'), + ('夂', '複'), + ('夂', '覆'), + ('夂', '変'), + ('夂', '峰'), + ('夂', '峯'), + ('夂', '縫'), + ('夂', '蓬'), + ('夂', '蜂'), + ('夂', '鋒'), + ('夂', '務'), + ('夂', '霧'), + ('夂', '麺'), + ('夂', '薮'), + ('夂', '優'), + ('夂', '悠'), + ('夂', '憂'), + ('夂', '洛'), + ('夂', '絡'), + ('夂', '落'), + ('夂', '酪'), + ('夂', '履'), + ('夂', '略'), + ('夂', '隆'), + ('夂', '凌'), + ('夂', '稜'), + ('夂', '陵'), + ('夂', '賂'), + ('夂', '路'), + ('夂', '露'), + ('夂', '處'), + ('夂', '厦'), + ('夂', '咎'), + ('夂', '喀'), + ('夂', '咯'), + ('夂', '嗄'), + ('夂', '夂'), + ('夂', '夊'), + ('夂', '夐'), + ('夂', '崚'), + ('夂', '嶐'), + ('夂', '廈'), + ('夂', '徼'), + ('夂', '恪'), + ('夂', '悛'), + ('夂', '愎'), + ('夂', '挌'), + ('夂', '掖'), + ('夂', '擱'), + ('夂', '曖'), + ('夂', '梭'), + ('夂', '椶'), + ('夂', '浚'), + ('夂', '烙'), + ('夂', '烽'), + ('夂', '狢'), + ('夂', '倏'), + ('夂', '珞'), + ('夂', '瓊'), + ('夂', '畧'), + ('夂', '疼'), + ('夂', '皴'), + ('夂', '瞹'), + ('夂', '禝'), + ('夂', '稷'), + ('夂', '窿'), + ('夂', '篷'), + ('夂', '絳'), + ('夂', '絛'), + ('夂', '總'), + ('夂', '聰'), + ('夂', '苳'), + ('夂', '茖'), + ('夂', '蔆'), + ('夂', '薐'), + ('夂', '蝮'), + ('夂', '螽'), + ('夂', '謖'), + ('夂', '貉'), + ('夂', '輅'), + ('夂', '輹'), + ('夂', '逡'), + ('夂', '鑁'), + ('夂', '靉'), + ('夂', '馥'), + ('夂', '駱'), + ('夂', '骼'), + ('夂', '鮗'), + ('夂', '鰒'), + ('夂', '麥'), + ('夂', '麩'), + ('夂', '麸'), + ('夂', '麪'), + ('夂', '麭'), + ('夂', '鼕'), + ('夕', '宛'), + ('夕', '移'), + ('夕', '液'), + ('夕', '怨'), + ('夕', '苑'), + ('夕', '鴛'), + ('夕', '外'), + ('夕', '傑'), + ('夕', '拶'), + ('夕', '燦'), + ('夕', '餐'), + ('夕', '屍'), + ('夕', '死'), + ('夕', '汐'), + ('夕', '瞬'), + ('夕', '舜'), + ('夕', '舛'), + ('夕', '然'), + ('夕', '葬'), + ('夕', '多'), + ('夕', '撚'), + ('夕', '燃'), + ('夕', '舞'), + ('夕', '桝'), + ('夕', '夢'), + ('夕', '名'), + ('夕', '銘'), + ('夕', '夜'), + ('夕', '夕'), + ('夕', '燐'), + ('夕', '隣'), + ('夕', '鱗'), + ('夕', '麟'), + ('夕', '憐'), + ('夕', '椀'), + ('夕', '碗'), + ('夕', '腕'), + ('夕', '侈'), + ('夕', '儚'), + ('夕', '夘'), + ('夕', '夛'), + ('夕', '梦'), + ('夕', '夥'), + ('夕', '奬'), + ('夕', '婉'), + ('夕', '將'), + ('夕', '徭'), + ('夕', '掖'), + ('夕', '搖'), + ('夕', '斃'), + ('夕', '桀'), + ('夕', '漿'), + ('夕', '炙'), + ('夕', '獎'), + ('夕', '磔'), + ('夕', '窗'), + ('夕', '窰'), + ('夕', '粲'), + ('夕', '腋'), + ('夕', '茗'), + ('夕', '蕣'), + ('夕', '薨'), + ('夕', '蜿'), + ('夕', '謠'), + ('夕', '豌'), + ('夕', '迯'), + ('夕', '鄰'), + ('夕', '酩'), + ('夕', '鋺'), + ('夕', '鏘'), + ('夕', '鵺'), + ('夕', '鷂'), + ('夕', '遙'), + ('夕', '瑤'), + ('大', '葵'), + ('大', '鯵'), + ('大', '庵'), + ('大', '夷'), + ('大', '椅'), + ('大', '咽'), + ('大', '因'), + ('大', '姻'), + ('大', '窺'), + ('大', '映'), + ('大', '瑛'), + ('大', '英'), + ('大', '奄'), + ('大', '掩'), + ('大', '央'), + ('大', '奥'), + ('大', '襖'), + ('大', '俺'), + ('大', '恩'), + ('大', '快'), + ('大', '巻'), + ('大', '喚'), + ('大', '換'), + ('大', '漢'), + ('大', '関'), + ('大', '器'), + ('大', '奇'), + ('大', '寄'), + ('大', '騎'), + ('大', '喫'), + ('大', '侠'), + ('大', '僑'), + ('大', '喬'), + ('大', '峡'), + ('大', '挟'), + ('大', '狭'), + ('大', '矯'), + ('大', '蕎'), + ('大', '契'), + ('大', '鶏'), + ('大', '決'), + ('大', '訣'), + ('大', '倦'), + ('大', '券'), + ('大', '圏'), + ('大', '拳'), + ('大', '捲'), + ('大', '犬'), + ('大', '袴'), + ('大', '誇'), + ('大', '跨'), + ('大', '衡'), + ('大', '咲'), + ('大', '崎'), + ('大', '埼'), + ('大', '碕'), + ('大', '蚕'), + ('大', '讃'), + ('大', '賛'), + ('大', '失'), + ('大', '実'), + ('大', '臭'), + ('大', '勝'), + ('大', '奨'), + ('大', '笑'), + ('大', '尖'), + ('大', '遷'), + ('大', '奏'), + ('大', '送'), + ('大', '太'), + ('大', '汰'), + ('大', '駄'), + ('大', '替'), + ('大', '大'), + ('大', '奪'), + ('大', '歎'), + ('大', '秩'), + ('大', '朕'), + ('大', '槻'), + ('大', '鄭'), + ('大', '迭'), + ('大', '鉄'), + ('大', '天'), + ('大', '添'), + ('大', '套'), + ('大', '騰'), + ('大', '突'), + ('大', '呑'), + ('大', '奈'), + ('大', '灘'), + ('大', '捺'), + ('大', '難'), + ('大', '漠'), + ('大', '莫'), + ('大', '美'), + ('大', '夫'), + ('大', '扶'), + ('大', '芙'), + ('大', '奮'), + ('大', '募'), + ('大', '墓'), + ('大', '慕'), + ('大', '暮'), + ('大', '俸'), + ('大', '奉'), + ('大', '捧'), + ('大', '棒'), + ('大', '奔'), + ('大', '幕'), + ('大', '膜'), + ('大', '俣'), + ('大', '湊'), + ('大', '摸'), + ('大', '模'), + ('大', '戻'), + ('大', '矢'), + ('大', '妖'), + ('大', '沃'), + ('大', '涙'), + ('大', '類'), + ('大', '佚'), + ('大', '倚'), + ('大', '僊'), + ('大', '冪'), + ('大', '决'), + ('大', '刔'), + ('大', '刳'), + ('大', '剞'), + ('大', '劵'), + ('大', '匏'), + ('大', '卷'), + ('大', '簒'), + ('大', '唳'), + ('大', '嗅'), + ('大', '圈'), + ('大', '墺'), + ('大', '夬'), + ('大', '夭'), + ('大', '夲'), + ('大', '夸'), + ('大', '夾'), + ('大', '奕'), + ('大', '奐'), + ('大', '奎'), + ('大', '奚'), + ('大', '奘'), + ('大', '奢'), + ('大', '奠'), + ('大', '奧'), + ('大', '奬'), + ('大', '奩'), + ('大', '姨'), + ('大', '嬌'), + ('大', '寞'), + ('大', '峽'), + ('大', '嵜'), + ('大', '帙'), + ('大', '忝'), + ('大', '怏'), + ('大', '惓'), + ('大', '惷'), + ('大', '懊'), + ('大', '抉'), + ('大', '挾'), + ('大', '掎'), + ('大', '捩'), + ('大', '揆'), + ('大', '撩'), + ('大', '擲'), + ('大', '攀'), + ('大', '攅'), + ('大', '昊'), + ('大', '暎'), + ('大', '暸'), + ('大', '桍'), + ('大', '椦'), + ('大', '楔'), + ('大', '樊'), + ('大', '欹'), + ('大', '殀'), + ('大', '殃'), + ('大', '氤'), + ('大', '泱'), + ('大', '洟'), + ('大', '浹'), + ('大', '淹'), + ('大', '渕'), + ('大', '渙'), + ('大', '溪'), + ('大', '滕'), + ('大', '滲'), + ('大', '潦'), + ('大', '澳'), + ('大', '濮'), + ('大', '烟'), + ('大', '煥'), + ('大', '燎'), + ('大', '燠'), + ('大', '狹'), + ('大', '猗'), + ('大', '獏'), + ('大', '瓠'), + ('大', '畉'), + ('大', '畚'), + ('大', '畸'), + ('大', '痍'), + ('大', '癸'), + ('大', '皋'), + ('大', '眷'), + ('大', '礇'), + ('大', '礬'), + ('大', '禊'), + ('大', '秧'), + ('大', '筴'), + ('大', '篋'), + ('大', '籐'), + ('大', '籘'), + ('大', '糢'), + ('大', '綺'), + ('大', '綣'), + ('大', '綟'), + ('大', '縢'), + ('大', '繚'), + ('大', '纉'), + ('大', '缺'), + ('大', '罨'), + ('大', '羃'), + ('大', '羇'), + ('大', '羹'), + ('大', '羮'), + ('大', '胯'), + ('大', '臻'), + ('大', '舂'), + ('大', '艱'), + ('大', '茵'), + ('大', '莢'), + ('大', '菴'), + ('大', '莽'), + ('大', '葢'), + ('大', '蓁'), + ('大', '蔘'), + ('大', '蜷'), + ('大', '蟇'), + ('大', '蟆'), + ('大', '蠎'), + ('大', '蟒'), + ('大', '蠢'), + ('大', '袂'), + ('大', '謨'), + ('大', '譛'), + ('大', '谿'), + ('大', '豢'), + ('大', '貘'), + ('大', '趺'), + ('大', '跌'), + ('大', '蹊'), + ('大', '躑'), + ('大', '躾'), + ('大', '軼'), + ('大', '輦'), + ('大', '輳'), + ('大', '轎'), + ('大', '銕'), + ('大', '鋏'), + ('大', '鎹'), + ('大', '鐐'), + ('大', '鑚'), + ('大', '閹'), + ('大', '陜'), + ('大', '陝'), + ('大', '霙'), + ('大', '鞅'), + ('大', '飫'), + ('大', '驂'), + ('大', '驀'), + ('大', '驕'), + ('大', '鰆'), + ('大', '鴃'), + ('大', '鴦'), + ('大', '鷄'), + ('大', '麸'), + ('女', '娃'), + ('女', '姶'), + ('女', '姐'), + ('女', '安'), + ('女', '按'), + ('女', '案'), + ('女', '鞍'), + ('女', '委'), + ('女', '威'), + ('女', '萎'), + ('女', '姻'), + ('女', '姥'), + ('女', '嬰'), + ('女', '堰'), + ('女', '宴'), + ('女', '嫁'), + ('女', '姦'), + ('女', '嬉'), + ('女', '妓'), + ('女', '嫌'), + ('女', '姑'), + ('女', '娯'), + ('女', '好'), + ('女', '腰'), + ('女', '婚'), + ('女', '妻'), + ('女', '桜'), + ('女', '始'), + ('女', '姉'), + ('女', '姿'), + ('女', '嫉'), + ('女', '屡'), + ('女', '女'), + ('女', '恕'), + ('女', '妾'), + ('女', '娼'), + ('女', '嬢'), + ('女', '娠'), + ('女', '数'), + ('女', '凄'), + ('女', '姓'), + ('女', '棲'), + ('女', '接'), + ('女', '妥'), + ('女', '嫡'), + ('女', '嬬'), + ('女', '妬'), + ('女', '努'), + ('女', '奴'), + ('女', '怒'), + ('女', '汝'), + ('女', '如'), + ('女', '妊'), + ('女', '婆'), + ('女', '媒'), + ('女', '妃'), + ('女', '姫'), + ('女', '媛'), + ('女', '婦'), + ('女', '娩'), + ('女', '妨'), + ('女', '妹'), + ('女', '妙'), + ('女', '婿'), + ('女', '娘'), + ('女', '姪'), + ('女', '妄'), + ('女', '薮'), + ('女', '妖'), + ('女', '要'), + ('女', '婁'), + ('女', '楼'), + ('女', '倭'), + ('女', '偃'), + ('女', '僂'), + ('女', '呶'), + ('女', '嚶'), + ('女', '奸'), + ('女', '妁'), + ('女', '妝'), + ('女', '佞'), + ('女', '侫'), + ('女', '妣'), + ('女', '妲'), + ('女', '姆'), + ('女', '姨'), + ('女', '姜'), + ('女', '妍'), + ('女', '姙'), + ('女', '姚'), + ('女', '娥'), + ('女', '娟'), + ('女', '娑'), + ('女', '娜'), + ('女', '娉'), + ('女', '娚'), + ('女', '婀'), + ('女', '婬'), + ('女', '婉'), + ('女', '娵'), + ('女', '娶'), + ('女', '婢'), + ('女', '婪'), + ('女', '媚'), + ('女', '媼'), + ('女', '媾'), + ('女', '嫋'), + ('女', '嫂'), + ('女', '媽'), + ('女', '嫣'), + ('女', '嫗'), + ('女', '嫦'), + ('女', '嫩'), + ('女', '嫖'), + ('女', '嫺'), + ('女', '嫻'), + ('女', '嬌'), + ('女', '嬋'), + ('女', '嬖'), + ('女', '嬲'), + ('女', '嫐'), + ('女', '嬪'), + ('女', '嬶'), + ('女', '嬾'), + ('女', '孃'), + ('女', '孅'), + ('女', '孀'), + ('女', '孥'), + ('女', '妛'), + ('女', '巍'), + ('女', '帑'), + ('女', '弩'), + ('女', '悽'), + ('女', '拏'), + ('女', '數'), + ('女', '晏'), + ('女', '椄'), + ('女', '樓'), + ('女', '櫻'), + ('女', '洳'), + ('女', '淒'), + ('女', '瀛'), + ('女', '瓔'), + ('女', '珱'), + ('女', '痿'), + ('女', '瘻'), + ('女', '矮'), + ('女', '窶'), + ('女', '簍'), + ('女', '籔'), + ('女', '絮'), + ('女', '綏'), + ('女', '縅'), + ('女', '縷'), + ('女', '纓'), + ('女', '茹'), + ('女', '萋'), + ('女', '藪'), + ('女', '螻'), + ('女', '褄'), + ('女', '褸'), + ('女', '逶'), + ('女', '鏤'), + ('女', '霎'), + ('女', '餒'), + ('女', '駑'), + ('女', '髏'), + ('女', '魏'), + ('女', '鮟'), + ('女', '鰄'), + ('女', '鸚'), + ('子', '廓'), + ('子', '郭'), + ('子', '学'), + ('子', '季'), + ('子', '享'), + ('子', '教'), + ('子', '孤'), + ('子', '菰'), + ('子', '厚'), + ('子', '好'), + ('子', '孔'), + ('子', '孝'), + ('子', '酵'), + ('子', '仔'), + ('子', '子'), + ('子', '孜'), + ('子', '字'), + ('子', '塾'), + ('子', '熟'), + ('子', '淳'), + ('子', '醇'), + ('子', '序'), + ('子', '存'), + ('子', '孫'), + ('子', '遜'), + ('子', '惇'), + ('子', '敦'), + ('子', '乳'), + ('子', '浮'), + ('子', '勃'), + ('子', '孟'), + ('子', '猛'), + ('子', '遊'), + ('子', '李'), + ('子', '俘'), + ('子', '吼'), + ('子', '哮'), + ('子', '孑'), + ('子', '孕'), + ('子', '孚'), + ('子', '孛'), + ('子', '孥'), + ('子', '孩'), + ('子', '孰'), + ('子', '孳'), + ('子', '孵'), + ('子', '學'), + ('子', '斈'), + ('子', '孺'), + ('子', '孱'), + ('子', '悖'), + ('子', '悸'), + ('子', '拵'), + ('子', '暾'), + ('子', '栫'), + ('子', '桴'), + ('子', '椁'), + ('子', '槨'), + ('子', '殍'), + ('子', '渤'), + ('子', '游'), + ('子', '潺'), + ('子', '燉'), + ('子', '艀'), + ('子', '荐'), + ('子', '蜉'), + ('子', '蝣'), + ('子', '諄'), + ('子', '郛'), + ('子', '鐓'), + ('子', '鶉'), + ('宀', '宛'), + ('宀', '安'), + ('宀', '按'), + ('宀', '案'), + ('宀', '鞍'), + ('宀', '院'), + ('宀', '宇'), + ('宀', '窺'), + ('宀', '宴'), + ('宀', '演'), + ('宀', '嫁'), + ('宀', '家'), + ('宀', '寡'), + ('宀', '稼'), + ('宀', '害'), + ('宀', '確'), + ('宀', '額'), + ('宀', '割'), + ('宀', '轄'), + ('宀', '竃'), + ('宀', '萱'), + ('宀', '寒'), + ('宀', '完'), + ('宀', '官'), + ('宀', '寛'), + ('宀', '棺'), + ('宀', '管'), + ('宀', '莞'), + ('宀', '館'), + ('宀', '舘'), + ('宀', '寄'), + ('宀', '宜'), + ('宀', '誼'), + ('宀', '客'), + ('宀', '宮'), + ('宀', '究'), + ('宀', '窮'), + ('宀', '空'), + ('宀', '寓'), + ('宀', '窟'), + ('宀', '窪'), + ('宀', '穴'), + ('宀', '喧'), + ('宀', '憲'), + ('宀', '宏'), + ('宀', '控'), + ('宀', '腔'), + ('宀', '塞'), + ('宀', '宰'), + ('宀', '搾'), + ('宀', '窄'), + ('宀', '察'), + ('宀', '擦'), + ('宀', '字'), + ('宀', '宍'), + ('宀', '室'), + ('宀', '実'), + ('宀', '蛇'), + ('宀', '寂'), + ('宀', '守'), + ('宀', '狩'), + ('宀', '宗'), + ('宀', '宿'), + ('宀', '縮'), + ('宀', '宵'), + ('宀', '錠'), + ('宀', '寝'), + ('宀', '審'), + ('宀', '崇'), + ('宀', '菅'), + ('宀', '窃'), + ('宀', '宣'), + ('宀', '穿'), + ('宀', '宋'), + ('宀', '窓'), + ('宀', '綜'), + ('宀', '詑'), + ('宀', '柁'), + ('宀', '舵'), + ('宀', '陀'), + ('宀', '宅'), + ('宀', '綻'), + ('宀', '窒'), + ('宀', '宙'), + ('宀', '苧'), + ('宀', '貯'), + ('宀', '寵'), + ('宀', '鶴'), + ('宀', '定'), + ('宀', '碇'), + ('宀', '宕'), + ('宀', '突'), + ('宀', '寅'), + ('宀', '寧'), + ('宀', '賓'), + ('宀', '富'), + ('宀', '宝'), + ('宀', '密'), + ('宀', '蜜'), + ('宀', '宥'), + ('宀', '容'), + ('宀', '溶'), + ('宀', '熔'), + ('宀', '窯'), + ('宀', '蓉'), + ('宀', '淀'), + ('宀', '寮'), + ('宀', '牢'), + ('宀', '詫'), + ('宀', '椀'), + ('宀', '碗'), + ('宀', '腕'), + ('宀', '佗'), + ('宀', '佇'), + ('宀', '侘'), + ('宀', '倥'), + ('宀', '咤'), + ('宀', '啌'), + ('宀', '喀'), + ('宀', '嚀'), + ('宀', '婉'), + ('宀', '嬪'), + ('宀', '宀'), + ('宀', '它'), + ('宀', '宦'), + ('宀', '宸'), + ('宀', '寃'), + ('宀', '寇'), + ('宀', '寉'), + ('宀', '寔'), + ('宀', '寐'), + ('宀', '寤'), + ('宀', '實'), + ('宀', '寢'), + ('宀', '寞'), + ('宀', '寥'), + ('宀', '寫'), + ('宀', '寰'), + ('宀', '寶'), + ('宀', '寳'), + ('宀', '愃'), + ('宀', '掟'), + ('宀', '搴'), + ('宀', '擯'), + ('宀', '晏'), + ('宀', '暄'), + ('宀', '棕'), + ('宀', '榁'), + ('宀', '寨'), + ('宀', '榕'), + ('宀', '樒'), + ('宀', '櫁'), + ('宀', '檸'), + ('宀', '檳'), + ('宀', '殯'), + ('宀', '沱'), + ('宀', '浣'), + ('宀', '浤'), + ('宀', '淙'), + ('宀', '滓'), + ('宀', '濘'), + ('宀', '濱'), + ('宀', '瀉'), + ('宀', '瀋'), + ('宀', '獰'), + ('宀', '疉'), + ('宀', '皖'), + ('宀', '瞎'), + ('宀', '穃'), + ('宀', '穹'), + ('宀', '穽'), + ('宀', '窈'), + ('宀', '窗'), + ('宀', '窕'), + ('宀', '窘'), + ('宀', '窖'), + ('宀', '窩'), + ('宀', '竈'), + ('宀', '窰'), + ('宀', '窶'), + ('宀', '竅'), + ('宀', '竄'), + ('宀', '窿'), + ('宀', '邃'), + ('宀', '竇'), + ('宀', '竊'), + ('宀', '竚'), + ('宀', '箜'), + ('宀', '粽'), + ('宀', '糘'), + ('宀', '紵'), + ('宀', '綰'), + ('宀', '縡'), + ('宀', '繽'), + ('宀', '聢'), + ('宀', '聹'), + ('宀', '膣'), + ('宀', '腟'), + ('宀', '萓'), + ('宀', '蓿'), + ('宀', '蜿'), + ('宀', '諚'), + ('宀', '諠'), + ('宀', '謇'), + ('宀', '豁'), + ('宀', '豌'), + ('宀', '賽'), + ('宀', '蹇'), + ('宀', '踪'), + ('宀', '邊'), + ('宀', '鉈'), + ('宀', '鋺'), + ('宀', '鎔'), + ('宀', '鏥'), + ('宀', '駝'), + ('宀', '騫'), + ('宀', '鬢'), + ('宀', '鮟'), + ('宀', '鴪'), + ('宀', '鴕'), + ('寸', '尉'), + ('寸', '慰'), + ('寸', '吋'), + ('寸', '欝'), + ('寸', '蔚'), + ('寸', '噂'), + ('寸', '碍'), + ('寸', '冠'), + ('寸', '詩'), + ('寸', '侍'), + ('寸', '寺'), + ('寸', '持'), + ('寸', '時'), + ('寸', '痔'), + ('寸', '蒔'), + ('寸', '射'), + ('寸', '謝'), + ('寸', '爵'), + ('寸', '守'), + ('寸', '狩'), + ('寸', '寿'), + ('寸', '樹'), + ('寸', '遵'), + ('寸', '奨'), + ('寸', '将'), + ('寸', '蒋'), + ('寸', '醤'), + ('寸', '辱'), + ('寸', '尋'), + ('寸', '厨'), + ('寸', '寸'), + ('寸', '専'), + ('寸', '尊'), + ('寸', '村'), + ('寸', '対'), + ('寸', '耐'), + ('寸', '待'), + ('寸', '奪'), + ('寸', '樽'), + ('寸', '団'), + ('寸', '酎'), + ('寸', '鋳'), + ('寸', '梼'), + ('寸', '涛'), + ('寸', '祷'), + ('寸', '等'), + ('寸', '討'), + ('寸', '闘'), + ('寸', '導'), + ('寸', '得'), + ('寸', '特'), + ('寸', '博'), + ('寸', '薄'), + ('寸', '縛'), + ('寸', '肘'), + ('寸', '付'), + ('寸', '府'), + ('寸', '符'), + ('寸', '腐'), + ('寸', '附'), + ('寸', '封'), + ('寸', '鮒'), + ('寸', '簿'), + ('寸', '鱒'), + ('寸', '俯'), + ('寸', '傅'), + ('寸', '傳'), + ('寸', '儔'), + ('寸', '咐'), + ('寸', '嚼'), + ('寸', '囀'), + ('寸', '團'), + ('寸', '坿'), + ('寸', '埒'), + ('寸', '埓'), + ('寸', '塒'), + ('寸', '墫'), + ('寸', '壽'), + ('寸', '奬'), + ('寸', '尅'), + ('寸', '將'), + ('寸', '專'), + ('寸', '對'), + ('寸', '峙'), + ('寸', '幇'), + ('寸', '廚'), + ('寸', '忖'), + ('寸', '恃'), + ('寸', '愽'), + ('寸', '慱'), + ('寸', '拊'), + ('寸', '搏'), + ('寸', '摶'), + ('寸', '擣'), + ('寸', '柎'), + ('寸', '檮'), + ('寸', '椨'), + ('寸', '榑'), + ('寸', '槫'), + ('寸', '濤'), + ('寸', '溽'), + ('寸', '溥'), + ('寸', '漿'), + ('寸', '潯'), + ('寸', '熨'), + ('寸', '獎'), + ('寸', '甎'), + ('寸', '畤'), + ('寸', '疇'), + ('寸', '畴'), + ('寸', '磚'), + ('寸', '籌'), + ('寸', '紂'), + ('寸', '縟'), + ('寸', '罸'), + ('寸', '耨'), + ('寸', '腑'), + ('寸', '膊'), + ('寸', '苻'), + ('寸', '蒄'), + ('寸', '蓐'), + ('寸', '蓴'), + ('寸', '蕁'), + ('寸', '褥'), + ('寸', '賻'), + ('寸', '蹲'), + ('寸', '躊'), + ('寸', '轉'), + ('寸', '鏘'), + ('寸', '鑄'), + ('寸', '陦'), + ('寸', '鬪'), + ('寸', '麝'), + ('小', '絢'), + ('小', '綾'), + ('小', '尉'), + ('小', '慰'), + ('小', '維'), + ('小', '緯'), + ('小', '蔚'), + ('小', '影'), + ('小', '頴'), + ('小', '縁'), + ('小', '絵'), + ('小', '款'), + ('小', '緩'), + ('小', '願'), + ('小', '紀'), + ('小', '徽'), + ('小', '級'), + ('小', '糾'), + ('小', '給'), + ('小', '禦'), + ('小', '京'), + ('小', '禁'), + ('小', '緊'), + ('小', '襟'), + ('小', '轡'), + ('小', '繰'), + ('小', '係'), + ('小', '景'), + ('小', '系'), + ('小', '経'), + ('小', '継'), + ('小', '繋'), + ('小', '鯨'), + ('小', '隙'), + ('小', '潔'), + ('小', '結'), + ('小', '懸'), + ('小', '絹'), + ('小', '県'), + ('小', '原'), + ('小', '源'), + ('小', '絃'), + ('小', '紅'), + ('小', '紘'), + ('小', '絞'), + ('小', '綱'), + ('小', '紺'), + ('小', '沙'), + ('小', '砂'), + ('小', '裟'), + ('小', '歳'), + ('小', '祭'), + ('小', '斎'), + ('小', '細'), + ('小', '際'), + ('小', '索'), + ('小', '察'), + ('小', '擦'), + ('小', '纂'), + ('小', '糸'), + ('小', '紙'), + ('小', '紫'), + ('小', '示'), + ('小', '縞'), + ('小', '紗'), + ('小', '寂'), + ('小', '綬'), + ('小', '宗'), + ('小', '就'), + ('小', '終'), + ('小', '繍'), + ('小', '蹴'), + ('小', '縦'), + ('小', '叔'), + ('小', '淑'), + ('小', '縮'), + ('小', '純'), + ('小', '緒'), + ('小', '小'), + ('小', '少'), + ('小', '抄'), + ('小', '渉'), + ('小', '省'), + ('小', '称'), + ('小', '紹'), + ('小', '織'), + ('小', '紳'), + ('小', '崇'), + ('小', '雀'), + ('小', '戚'), + ('小', '績'), + ('小', '絶'), + ('小', '尖'), + ('小', '線'), + ('小', '繊'), + ('小', '繕'), + ('小', '素'), + ('小', '組'), + ('小', '総'), + ('小', '綜'), + ('小', '続'), + ('小', '孫'), + ('小', '遜'), + ('小', '綻'), + ('小', '捗'), + ('小', '綴'), + ('小', '紬'), + ('小', '締'), + ('小', '纏'), + ('小', '統'), + ('小', '督'), + ('小', '奈'), + ('小', '捺'), + ('小', '縄'), + ('小', '迩'), + ('小', '祢'), + ('小', '納'), + ('小', '縛'), + ('小', '繁'), + ('小', '緋'), + ('小', '紐'), + ('小', '標'), + ('小', '漂'), + ('小', '瓢'), + ('小', '票'), + ('小', '秒'), + ('小', '蒜'), + ('小', '瀕'), + ('小', '賓'), + ('小', '頻'), + ('小', '紛'), + ('小', '編'), + ('小', '歩'), + ('小', '縫'), + ('小', '褒'), + ('小', '紡'), + ('小', '穆'), + ('小', '繭'), + ('小', '妙'), + ('小', '椋'), + ('小', '綿'), + ('小', '緬'), + ('小', '網'), + ('小', '紋'), + ('小', '弥'), + ('小', '約'), + ('小', '余'), + ('小', '羅'), + ('小', '螺'), + ('小', '絡'), + ('小', '掠'), + ('小', '僚'), + ('小', '寮'), + ('小', '涼'), + ('小', '療'), + ('小', '瞭'), + ('小', '諒'), + ('小', '遼'), + ('小', '緑'), + ('小', '累'), + ('小', '隷'), + ('小', '劣'), + ('小', '練'), + ('小', '鷲'), + ('小', '亰'), + ('小', '俶'), + ('小', '凉'), + ('小', '凛'), + ('小', '剽'), + ('小', '勍'), + ('小', '噤'), + ('小', '娑'), + ('小', '嫖'), + ('小', '嬪'), + ('小', '寳'), + ('小', '尓'), + ('小', '尠'), + ('小', '巒'), + ('小', '彝'), + ('小', '彎'), + ('小', '愿'), + ('小', '慓'), + ('小', '憬'), + ('小', '戀'), + ('小', '撩'), + ('小', '擯'), + ('小', '攣'), + ('小', '敍'), + ('小', '敘'), + ('小', '斃'), + ('小', '變'), + ('小', '暼'), + ('小', '暸'), + ('小', '杪'), + ('小', '棕'), + ('小', '椒'), + ('小', '槭'), + ('小', '檳'), + ('小', '櫞'), + ('小', '欒'), + ('小', '殯'), + ('小', '毟'), + ('小', '淙'), + ('小', '渺'), + ('小', '潦'), + ('小', '濱'), + ('小', '灣'), + ('小', '炒'), + ('小', '熨'), + ('小', '燎'), + ('小', '珎'), + ('小', '畭'), + ('小', '瘰'), + ('小', '眇'), + ('小', '祟'), + ('小', '齋'), + ('小', '禀'), + ('小', '穢'), + ('小', '籘'), + ('小', '粽'), + ('小', '糺'), + ('小', '紆'), + ('小', '紂'), + ('小', '紜'), + ('小', '紕'), + ('小', '紊'), + ('小', '絅'), + ('小', '絋'), + ('小', '紮'), + ('小', '紲'), + ('小', '紿'), + ('小', '紵'), + ('小', '絆'), + ('小', '絳'), + ('小', '絖'), + ('小', '絎'), + ('小', '絲'), + ('小', '絨'), + ('小', '絮'), + ('小', '絏'), + ('小', '絣'), + ('小', '經'), + ('小', '綉'), + ('小', '絛'), + ('小', '綏'), + ('小', '絽'), + ('小', '綛'), + ('小', '綺'), + ('小', '綮'), + ('小', '綣'), + ('小', '綵'), + ('小', '緇'), + ('小', '綽'), + ('小', '綫'), + ('小', '總'), + ('小', '綢'), + ('小', '綯'), + ('小', '緜'), + ('小', '綸'), + ('小', '綟'), + ('小', '綰'), + ('小', '緘'), + ('小', '緝'), + ('小', '緤'), + ('小', '緞'), + ('小', '緻'), + ('小', '緲'), + ('小', '緡'), + ('小', '縅'), + ('小', '縊'), + ('小', '縣'), + ('小', '縡'), + ('小', '縒'), + ('小', '縱'), + ('小', '縟'), + ('小', '縉'), + ('小', '縋'), + ('小', '縢'), + ('小', '繆'), + ('小', '繦'), + ('小', '縻'), + ('小', '縵'), + ('小', '縹'), + ('小', '繃'), + ('小', '縷'), + ('小', '縲'), + ('小', '縺'), + ('小', '繧'), + ('小', '繝'), + ('小', '繖'), + ('小', '繞'), + ('小', '繙'), + ('小', '繚'), + ('小', '繹'), + ('小', '繪'), + ('小', '繩'), + ('小', '繼'), + ('小', '繻'), + ('小', '纃'), + ('小', '緕'), + ('小', '繽'), + ('小', '辮'), + ('小', '繿'), + ('小', '纈'), + ('小', '纉'), + ('小', '續'), + ('小', '纒'), + ('小', '纐'), + ('小', '纓'), + ('小', '纔'), + ('小', '纖'), + ('小', '纎'), + ('小', '纛'), + ('小', '纜'), + ('小', '羂'), + ('小', '臠'), + ('小', '莎'), + ('小', '荼'), + ('小', '菽'), + ('小', '葯'), + ('小', '蔡'), + ('小', '蘊'), + ('小', '蘋'), + ('小', '蘰'), + ('小', '蘿'), + ('小', '蜍'), + ('小', '蠻'), + ('小', '袮'), + ('小', '蹙'), + ('小', '踪'), + ('小', '邏'), + ('小', '鈔'), + ('小', '鍄'), + ('小', '鐐'), + ('小', '鑼'), + ('小', '鑾'), + ('小', '陟'), + ('小', '隲'), + ('小', '隸'), + ('小', '顰'), + ('小', '飄'), + ('小', '飃'), + ('小', '驃'), + ('小', '騾'), + ('小', '鬢'), + ('小', '鯀'), + ('小', '鯊'), + ('小', '鰾'), + ('小', '鷯'), + ('小', '鸞'), + ('小', '黥'), + ('小', '鼈'), + ('尚', '溢'), + ('尚', '隠'), + ('尚', '営'), + ('尚', '栄'), + ('尚', '鴬'), + ('尚', '撹'), + ('尚', '覚'), + ('尚', '学'), + ('尚', '巌'), + ('尚', '輝'), + ('尚', '挙'), + ('尚', '屑'), + ('尚', '蛍'), + ('尚', '厳'), + ('尚', '光'), + ('尚', '晃'), + ('尚', '鎖'), + ('尚', '削'), + ('尚', '桜'), + ('尚', '獣'), + ('尚', '償'), + ('尚', '哨'), + ('尚', '嘗'), + ('尚', '宵'), + ('尚', '尚'), + ('尚', '廠'), + ('尚', '掌'), + ('尚', '梢'), + ('尚', '消'), + ('尚', '硝'), + ('尚', '肖'), + ('尚', '裳'), + ('尚', '賞'), + ('尚', '鞘'), + ('尚', '常'), + ('尚', '蝉'), + ('尚', '戦'), + ('尚', '禅'), + ('尚', '巣'), + ('尚', '騨'), + ('尚', '蛸'), + ('尚', '単'), + ('尚', '箪'), + ('尚', '弾'), + ('尚', '党'), + ('尚', '当'), + ('尚', '堂'), + ('尚', '悩'), + ('尚', '脳'), + ('尚', '弊'), + ('尚', '蔽'), + ('尚', '瞥'), + ('尚', '幌'), + ('尚', '誉'), + ('尚', '耀'), + ('尚', '猟'), + ('尚', '労'), + ('尚', '蝋'), + ('尚', '儻'), + ('尚', '剿'), + ('尚', '勦'), + ('尚', '厰'), + ('尚', '嫦'), + ('尚', '峭'), + ('尚', '幤'), + ('尚', '恍'), + ('尚', '悄'), + ('尚', '敞'), + ('尚', '敝'), + ('尚', '斃'), + ('尚', '晄'), + ('尚', '暼'), + ('尚', '档'), + ('尚', '棠'), + ('尚', '樔'), + ('尚', '欅'), + ('尚', '洸'), + ('尚', '淌'), + ('尚', '滉'), + ('尚', '瑣'), + ('尚', '珱'), + ('尚', '甞'), + ('尚', '畄'), + ('尚', '當'), + ('尚', '瞠'), + ('尚', '礑'), + ('尚', '稍'), + ('尚', '絖'), + ('尚', '胱'), + ('尚', '蟐'), + ('尚', '螳'), + ('尚', '蟷'), + ('尚', '褝'), + ('尚', '襠'), + ('尚', '襷'), + ('尚', '誚'), + ('尚', '趙'), + ('尚', '逍'), + ('尚', '銷'), + ('尚', '鐺'), + ('尚', '霄'), + ('尚', '靜'), + ('尚', '鮹'), + ('尚', '黨'), + ('尚', '鼈'), + ('尚', '鼡'), + ('尢', '就'), + ('尢', '蹴'), + ('尢', '耽'), + ('尢', '沈'), + ('尢', '枕'), + ('尢', '尤'), + ('尢', '鷲'), + ('尢', '厖'), + ('尢', '尢'), + ('尢', '尨'), + ('尢', '忱'), + ('尢', '犹'), + ('尢', '疣'), + ('尢', '眈'), + ('尢', '肬'), + ('尢', '酖'), + ('尢', '鴆'), + ('尸', '握'), + ('尸', '渥'), + ('尸', '芦'), + ('尸', '尉'), + ('尸', '慰'), + ('尸', '蔚'), + ('尸', '駅'), + ('尸', '屋'), + ('尸', '梶'), + ('尸', '居'), + ('尸', '鋸'), + ('尸', '局'), + ('尸', '屑'), + ('尸', '屈'), + ('尸', '掘'), + ('尸', '窟'), + ('尸', '啓'), + ('尸', '肩'), + ('尸', '戸'), + ('尸', '雇'), + ('尸', '顧'), + ('尸', '犀'), + ('尸', '刷'), + ('尸', '屍'), + ('尸', '屡'), + ('尸', '尺'), + ('尸', '釈'), + ('尸', '所'), + ('尸', '嘱'), + ('尸', '尻'), + ('尸', '尽'), + ('尸', '据'), + ('尸', '裾'), + ('尸', '声'), + ('尸', '扇'), + ('尸', '煽'), + ('尸', '層'), + ('尸', '属'), + ('尸', '択'), + ('尸', '沢'), + ('尸', '遅'), + ('尸', '昼'), + ('尸', '泥'), + ('尸', '展'), + ('尸', '殿'), + ('尸', '澱'), + ('尸', '屠'), + ('尸', '届'), + ('尸', '尼'), + ('尸', '尿'), + ('尸', '肇'), + ('尸', '扉'), + ('尸', '避'), + ('尸', '尾'), + ('尸', '眉'), + ('尸', '塀'), + ('尸', '僻'), + ('尸', '壁'), + ('尸', '癖'), + ('尸', '偏'), + ('尸', '篇'), + ('尸', '編'), + ('尸', '遍'), + ('尸', '房'), + ('尸', '堀'), + ('尸', '侭'), + ('尸', '戻'), + ('尸', '訳'), + ('尸', '履'), + ('尸', '涙'), + ('尸', '炉'), + ('尸', '漏'), + ('尸', '倨'), + ('尸', '倔'), + ('尸', '劈'), + ('尸', '呎'), + ('尸', '咫'), + ('尸', '唳'), + ('尸', '囑'), + ('尸', '媚'), + ('尸', '嬖'), + ('尸', '尸'), + ('尸', '屁'), + ('尸', '屆'), + ('尸', '屎'), + ('尸', '屓'), + ('尸', '屐'), + ('尸', '屏'), + ('尸', '孱'), + ('尸', '屬'), + ('尸', '崛'), + ('尸', '崢'), + ('尸', '嵋'), + ('尸', '幄'), + ('尸', '怩'), + ('尸', '愴'), + ('尸', '扁'), + ('尸', '捩'), + ('尸', '搶'), + ('尸', '擘'), + ('尸', '昵'), + ('尸', '枦'), + ('尸', '桾'), + ('尸', '檗'), + ('尸', '蘗'), + ('尸', '滄'), + ('尸', '滬'), + ('尸', '潺'), + ('尸', '熨'), + ('尸', '爲'), + ('尸', '璧'), + ('尸', '甓'), + ('尸', '瘡'), + ('尸', '癜'), + ('尸', '眤'), + ('尸', '矚'), + ('尸', '碾'), + ('尸', '磬'), + ('尸', '穉'), + ('尸', '粐'), + ('尸', '綮'), + ('尸', '綟'), + ('尸', '翩'), + ('尸', '聲'), + ('尸', '臀'), + ('尸', '臂'), + ('尸', '艙'), + ('尸', '舮'), + ('尸', '薜'), + ('尸', '蝙'), + ('尸', '裙'), + ('尸', '褊'), + ('尸', '襞'), + ('尸', '諞'), + ('尸', '謦'), + ('尸', '譬'), + ('尸', '跼'), + ('尸', '踞'), + ('尸', '蹌'), + ('尸', '躄'), + ('尸', '輾'), + ('尸', '辟'), + ('尸', '遲'), + ('尸', '扈'), + ('尸', '鈬'), + ('尸', '鈩'), + ('尸', '闢'), + ('尸', '霹'), + ('尸', '騙'), + ('尸', '齷'), + ('屮', '逆'), + ('屮', '朔'), + ('屮', '趨'), + ('屮', '雛'), + ('屮', '塑'), + ('屮', '遡'), + ('屮', '蕨'), + ('屮', '厥'), + ('屮', '屮'), + ('屮', '愬'), + ('屮', '槊'), + ('屮', '溯'), + ('屮', '獗'), + ('屮', '皺'), + ('屮', '艸'), + ('屮', '芻'), + ('屮', '蒭'), + ('屮', '蚩'), + ('屮', '蹶'), + ('屮', '鄒'), + ('屮', '闕'), + ('山', '岡'), + ('山', '峨'), + ('山', '凱'), + ('山', '崖'), + ('山', '鎧'), + ('山', '岳'), + ('山', '缶'), + ('山', '岸'), + ('山', '巌'), + ('山', '癌'), + ('山', '岩'), + ('山', '岐'), + ('山', '徽'), + ('山', '峡'), + ('山', '屈'), + ('山', '掘'), + ('山', '窟'), + ('山', '綱'), + ('山', '鋼'), + ('山', '剛'), + ('山', '嵯'), + ('山', '催'), + ('山', '崎'), + ('山', '山'), + ('山', '出'), + ('山', '峻'), + ('山', '瑞'), + ('山', '崇'), + ('山', '嵩'), + ('山', '拙'), + ('山', '仙'), + ('山', '岨'), + ('山', '岱'), + ('山', '辿'), + ('山', '炭'), + ('山', '端'), + ('山', '徴'), + ('山', '懲'), + ('山', '島'), + ('山', '嶋'), + ('山', '峠'), + ('山', '微'), + ('山', '峰'), + ('山', '峯'), + ('山', '崩'), + ('山', '堀'), + ('山', '満'), + ('山', '岬'), + ('山', '密'), + ('山', '嵐'), + ('山', '両'), + ('山', '嶺'), + ('山', '倔'), + ('山', '剴'), + ('山', '丗'), + ('山', '咄'), + ('山', '喘'), + ('山', '嗤'), + ('山', '圸'), + ('山', '乢'), + ('山', '屶'), + ('山', '屹'), + ('山', '岌'), + ('山', '岑'), + ('山', '岔'), + ('山', '妛'), + ('山', '岫'), + ('山', '岻'), + ('山', '岶'), + ('山', '岼'), + ('山', '岷'), + ('山', '峅'), + ('山', '岾'), + ('山', '峇'), + ('山', '峙'), + ('山', '峩'), + ('山', '峽'), + ('山', '峺'), + ('山', '峭'), + ('山', '嶌'), + ('山', '峪'), + ('山', '崋'), + ('山', '崕'), + ('山', '崗'), + ('山', '嵜'), + ('山', '崟'), + ('山', '崛'), + ('山', '崑'), + ('山', '崔'), + ('山', '崢'), + ('山', '崚'), + ('山', '崙'), + ('山', '崘'), + ('山', '嵌'), + ('山', '嵒'), + ('山', '嵎'), + ('山', '嵋'), + ('山', '嵬'), + ('山', '嵳'), + ('山', '嵶'), + ('山', '嶇'), + ('山', '嶄'), + ('山', '嶂'), + ('山', '嶢'), + ('山', '嶝'), + ('山', '嶬'), + ('山', '嶮'), + ('山', '嶽'), + ('山', '嶐'), + ('山', '嶷'), + ('山', '嶼'), + ('山', '巉'), + ('山', '巍'), + ('山', '巓'), + ('山', '巒'), + ('山', '巖'), + ('山', '惴'), + ('山', '揣'), + ('山', '搗'), + ('山', '摧'), + ('山', '攜'), + ('山', '朏'), + ('山', '杣'), + ('山', '柮'), + ('山', '棡'), + ('山', '榿'), + ('山', '槝'), + ('山', '樒'), + ('山', '汕'), + ('山', '湍'), + ('山', '澂'), + ('山', '猯'), + ('山', '疝'), + ('山', '皚'), + ('山', '眄'), + ('山', '磑'), + ('山', '祟'), + ('山', '糶'), + ('山', '繃'), + ('山', '艷'), + ('山', '薇'), + ('山', '蚩'), + ('山', '覬'), + ('山', '豈'), + ('山', '豐'), + ('山', '閊'), + ('山', '黜'), + ('山', '黴'), + ('川', '侃'), + ('川', '釧'), + ('川', '訓'), + ('川', '慌'), + ('川', '荒'), + ('川', '州'), + ('川', '洲'), + ('川', '酬'), + ('川', '順'), + ('川', '川'), + ('川', '疏'), + ('川', '馴'), + ('川', '流'), + ('川', '琉'), + ('川', '硫'), + ('川', '卅'), + ('川', '旒'), + ('川', '梳'), + ('川', '毓'), + ('川', '蔬'), + ('川', '醯'), + ('川', '駲'), + ('巛', '災'), + ('巛', '拶'), + ('巛', '巡'), + ('巛', '剄'), + ('巛', '勁'), + ('巛', '巛'), + ('巛', '廱'), + ('巛', '徑'), + ('巛', '惱'), + ('巛', '獵'), + ('巛', '瑙'), + ('巛', '痙'), + ('巛', '癰'), + ('巛', '碯'), + ('巛', '經'), + ('巛', '緇'), + ('巛', '脛'), + ('巛', '腦'), + ('巛', '臘'), + ('巛', '莖'), + ('巛', '輕'), + ('巛', '輜'), + ('巛', '逕'), + ('巛', '錙'), + ('巛', '鑞'), + ('巛', '頸'), + ('巛', '鯔'), + ('工', '恐'), + ('工', '空'), + ('工', '功'), + ('工', '工'), + ('工', '巧'), + ('工', '控'), + ('工', '攻'), + ('工', '江'), + ('工', '紅'), + ('工', '腔'), + ('工', '貢'), + ('工', '項'), + ('工', '鴻'), + ('工', '佐'), + ('工', '嵯'), + ('工', '左'), + ('工', '差'), + ('工', '瑳'), + ('工', '試'), + ('工', '式'), + ('工', '拭'), + ('工', '尋'), + ('工', '惰'), + ('工', '楕'), + ('工', '築'), + ('工', '筑'), + ('工', '虹'), + ('工', '杢'), + ('工', '倥'), + ('工', '儔'), + ('工', '剄'), + ('工', '勁'), + ('工', '啌'), + ('工', '嗟'), + ('工', '噐'), + ('工', '噬'), + ('工', '墮'), + ('工', '壽'), + ('工', '嵳'), + ('工', '巫'), + ('工', '弑'), + ('工', '徑'), + ('工', '惘'), + ('工', '扛'), + ('工', '搓'), + ('工', '擣'), + ('工', '杠'), + ('工', '檮'), + ('工', '椌'), + ('工', '槓'), + ('工', '槎'), + ('工', '橢'), + ('工', '汞'), + ('工', '濤'), + ('工', '潯'), + ('工', '熕'), + ('工', '畭'), + ('工', '疇'), + ('工', '痙'), + ('工', '矼'), + ('工', '磋'), + ('工', '穩'), + ('工', '筮'), + ('工', '箜'), + ('工', '籌'), + ('工', '經'), + ('工', '縒'), + ('工', '缸'), + ('工', '肛'), + ('工', '脛'), + ('工', '隋'), + ('工', '膸'), + ('工', '莖'), + ('工', '蕁'), + ('工', '蛩'), + ('工', '覡'), + ('工', '訌'), + ('工', '誣'), + ('工', '跫'), + ('工', '蹉'), + ('工', '躊'), + ('工', '軾'), + ('工', '輕'), + ('工', '逕'), + ('工', '隨'), + ('工', '鑄'), + ('工', '隱'), + ('工', '靈'), + ('工', '鞏'), + ('工', '頸'), + ('工', '髓'), + ('工', '鵐'), + ('已', '改'), + ('已', '鞄'), + ('已', '巻'), + ('已', '忌'), + ('已', '紀'), + ('已', '記'), + ('已', '起'), + ('已', '倦'), + ('已', '圏'), + ('已', '捲'), + ('已', '己'), + ('已', '巷'), + ('已', '港'), + ('已', '撰'), + ('已', '選'), + ('已', '遷'), + ('已', '巽'), + ('已', '巴'), + ('已', '配'), + ('已', '妃'), + ('已', '包'), + ('已', '庖'), + ('已', '抱'), + ('已', '泡'), + ('已', '砲'), + ('已', '胞'), + ('已', '飽'), + ('已', '巳'), + ('已', '僊'), + ('已', '囘'), + ('已', '匏'), + ('已', '咆'), + ('已', '垉'), + ('已', '已'), + ('已', '惓'), + ('已', '杞'), + ('已', '枹'), + ('已', '炮'), + ('已', '煕'), + ('已', '熈'), + ('已', '爬'), + ('已', '疱'), + ('已', '皰'), + ('已', '祀'), + ('已', '綣'), + ('已', '苞'), + ('已', '萢'), + ('已', '蚫'), + ('已', '蜷'), + ('已', '袍'), + ('已', '鉋'), + ('已', '雹'), + ('已', '靤'), + ('已', '韆'), + ('已', '饌'), + ('已', '髱'), + ('已', '鮑'), + ('已', '麭'), + ('已', '熙'), + ('巾', '柿'), + ('巾', '希'), + ('巾', '帰'), + ('巾', '稀'), + ('巾', '巾'), + ('巾', '錦'), + ('巾', '策'), + ('巾', '刷'), + ('巾', '刺'), + ('巾', '姉'), + ('巾', '市'), + ('巾', '師'), + ('巾', '獅'), + ('巾', '常'), + ('巾', '飾'), + ('巾', '帥'), + ('巾', '制'), + ('巾', '製'), + ('巾', '席'), + ('巾', '匝'), + ('巾', '掃'), + ('巾', '帯'), + ('巾', '滞'), + ('巾', '凧'), + ('巾', '帖'), + ('巾', '帳'), + ('巾', '吊'), + ('巾', '帝'), + ('巾', '締'), + ('巾', '諦'), + ('巾', '蹄'), + ('巾', '逓'), + ('巾', '肺'), + ('巾', '幡'), + ('巾', '帆'), + ('巾', '婦'), + ('巾', '布'), + ('巾', '怖'), + ('巾', '幅'), + ('巾', '幣'), + ('巾', '弊'), + ('巾', '蔽'), + ('巾', '瞥'), + ('巾', '帽'), + ('巾', '幌'), + ('巾', '幕'), + ('巾', '棉'), + ('巾', '綿'), + ('巾', '佩'), + ('巾', '冪'), + ('巾', '唏'), + ('巾', '啻'), + ('巾', '啼'), + ('巾', '嫦'), + ('巾', '帋'), + ('巾', '帚'), + ('巾', '帙'), + ('巾', '帑'), + ('巾', '帛'), + ('巾', '帶'), + ('巾', '帷'), + ('巾', '幄'), + ('巾', '幃'), + ('巾', '幀'), + ('巾', '幎'), + ('巾', '幗'), + ('巾', '幔'), + ('巾', '幟'), + ('巾', '幢'), + ('巾', '幤'), + ('巾', '幇'), + ('巾', '掣'), + ('巾', '敝'), + ('巾', '斃'), + ('巾', '旆'), + ('巾', '晞'), + ('巾', '暼'), + ('巾', '柬'), + ('巾', '棘'), + ('巾', '棗'), + ('巾', '楴'), + ('巾', '楝'), + ('巾', '欷'), + ('巾', '歸'), + ('巾', '沛'), + ('巾', '滯'), + ('巾', '珮'), + ('巾', '箍'), + ('巾', '箒'), + ('巾', '篩'), + ('巾', '緜'), + ('巾', '羃'), + ('巾', '菷'), + ('巾', '蒂'), + ('巾', '蓆'), + ('巾', '蔕'), + ('巾', '乕'), + ('巾', '蟐'), + ('巾', '衞'), + ('巾', '閙'), + ('巾', '霈'), + ('巾', '鬧'), + ('巾', '鯑'), + ('巾', '鰤'), + ('干', '芋'), + ('干', '宇'), + ('干', '迂'), + ('干', '釜'), + ('干', '刊'), + ('干', '干'), + ('干', '幹'), + ('干', '汗'), + ('干', '竿'), + ('干', '肝'), + ('干', '舘'), + ('干', '岸'), + ('干', '杵'), + ('干', '許'), + ('干', '粁'), + ('干', '献'), + ('干', '軒'), + ('干', '午'), + ('干', '坪'), + ('干', '南'), + ('干', '楠'), + ('干', '年'), + ('干', '拝'), + ('干', '秤'), + ('干', '平'), + ('干', '揺'), + ('干', '謡'), + ('干', '遥'), + ('干', '舒'), + ('干', '喃'), + ('干', '圉'), + ('干', '奸'), + ('干', '岼'), + ('干', '幵'), + ('干', '并'), + ('干', '忤'), + ('干', '怦'), + ('干', '悍'), + ('干', '扞'), + ('干', '拜'), + ('干', '拌'), + ('干', '捍'), + ('干', '敍'), + ('干', '敘'), + ('干', '旆'), + ('干', '旱'), + ('干', '杆'), + ('干', '栞'), + ('干', '桿'), + ('干', '泙'), + ('干', '湃'), + ('干', '滸'), + ('干', '澣'), + ('干', '稈'), + ('干', '罕'), + ('干', '苹'), + ('干', '萍'), + ('干', '訐'), + ('干', '遖'), + ('干', '鑿'), + ('干', '餘'), + ('干', '餠'), + ('干', '駻'), + ('干', '骭'), + ('干', '鮃'), + ('干', '鼾'), + ('幺', '絢'), + ('幺', '綾'), + ('幺', '維'), + ('幺', '緯'), + ('幺', '磯'), + ('幺', '胤'), + ('幺', '縁'), + ('幺', '絵'), + ('幺', '緩'), + ('幺', '幾'), + ('幺', '機'), + ('幺', '畿'), + ('幺', '紀'), + ('幺', '徽'), + ('幺', '級'), + ('幺', '糾'), + ('幺', '給'), + ('幺', '郷'), + ('幺', '響'), + ('幺', '饗'), + ('幺', '緊'), + ('幺', '轡'), + ('幺', '繰'), + ('幺', '係'), + ('幺', '系'), + ('幺', '経'), + ('幺', '継'), + ('幺', '繋'), + ('幺', '潔'), + ('幺', '結'), + ('幺', '懸'), + ('幺', '絹'), + ('幺', '幻'), + ('幺', '弦'), + ('幺', '玄'), + ('幺', '絃'), + ('幺', '舷'), + ('幺', '後'), + ('幺', '紅'), + ('幺', '紘'), + ('幺', '絞'), + ('幺', '綱'), + ('幺', '紺'), + ('幺', '細'), + ('幺', '索'), + ('幺', '纂'), + ('幺', '糸'), + ('幺', '紙'), + ('幺', '紫'), + ('幺', '慈'), + ('幺', '滋'), + ('幺', '磁'), + ('幺', '縞'), + ('幺', '紗'), + ('幺', '綬'), + ('幺', '終'), + ('幺', '繍'), + ('幺', '縦'), + ('幺', '縮'), + ('幺', '純'), + ('幺', '緒'), + ('幺', '紹'), + ('幺', '織'), + ('幺', '紳'), + ('幺', '績'), + ('幺', '絶'), + ('幺', '線'), + ('幺', '繊'), + ('幺', '繕'), + ('幺', '素'), + ('幺', '組'), + ('幺', '総'), + ('幺', '綜'), + ('幺', '続'), + ('幺', '孫'), + ('幺', '遜'), + ('幺', '綻'), + ('幺', '畜'), + ('幺', '蓄'), + ('幺', '綴'), + ('幺', '紬'), + ('幺', '締'), + ('幺', '纏'), + ('幺', '統'), + ('幺', '縄'), + ('幺', '納'), + ('幺', '縛'), + ('幺', '繁'), + ('幺', '緋'), + ('幺', '紐'), + ('幺', '紛'), + ('幺', '編'), + ('幺', '縫'), + ('幺', '紡'), + ('幺', '繭'), + ('幺', '綿'), + ('幺', '緬'), + ('幺', '網'), + ('幺', '紋'), + ('幺', '約'), + ('幺', '幽'), + ('幺', '幼'), + ('幺', '羅'), + ('幺', '螺'), + ('幺', '絡'), + ('幺', '率'), + ('幺', '緑'), + ('幺', '累'), + ('幺', '練'), + ('幺', '聯'), + ('幺', '呟'), + ('幺', '奚'), + ('幺', '孳'), + ('幺', '巒'), + ('幺', '幺'), + ('幺', '麼'), + ('幺', '彝'), + ('幺', '彎'), + ('幺', '戀'), + ('幺', '拗'), + ('幺', '攣'), + ('幺', '變'), + ('幺', '斷'), + ('幺', '樂'), + ('幺', '櫞'), + ('幺', '櫟'), + ('幺', '欒'), + ('幺', '溪'), + ('幺', '濕'), + ('幺', '灣'), + ('幺', '甕'), + ('幺', '痃'), + ('幺', '瘰'), + ('幺', '眩'), + ('幺', '窈'), + ('幺', '籘'), + ('幺', '糺'), + ('幺', '紆'), + ('幺', '紂'), + ('幺', '紜'), + ('幺', '紕'), + ('幺', '紊'), + ('幺', '絅'), + ('幺', '絋'), + ('幺', '紮'), + ('幺', '紲'), + ('幺', '紿'), + ('幺', '紵'), + ('幺', '絆'), + ('幺', '絳'), + ('幺', '絖'), + ('幺', '絎'), + ('幺', '絲'), + ('幺', '絨'), + ('幺', '絮'), + ('幺', '絏'), + ('幺', '絣'), + ('幺', '經'), + ('幺', '綉'), + ('幺', '絛'), + ('幺', '綏'), + ('幺', '絽'), + ('幺', '綛'), + ('幺', '綺'), + ('幺', '綮'), + ('幺', '綣'), + ('幺', '綵'), + ('幺', '緇'), + ('幺', '綽'), + ('幺', '綫'), + ('幺', '總'), + ('幺', '綢'), + ('幺', '綯'), + ('幺', '緜'), + ('幺', '綸'), + ('幺', '綟'), + ('幺', '綰'), + ('幺', '緘'), + ('幺', '緝'), + ('幺', '緤'), + ('幺', '緞'), + ('幺', '緻'), + ('幺', '緲'), + ('幺', '緡'), + ('幺', '縅'), + ('幺', '縊'), + ('幺', '縣'), + ('幺', '縡'), + ('幺', '縒'), + ('幺', '縱'), + ('幺', '縟'), + ('幺', '縉'), + ('幺', '縋'), + ('幺', '縢'), + ('幺', '繆'), + ('幺', '繦'), + ('幺', '縻'), + ('幺', '縵'), + ('幺', '縹'), + ('幺', '繃'), + ('幺', '縷'), + ('幺', '縲'), + ('幺', '縺'), + ('幺', '繧'), + ('幺', '繝'), + ('幺', '繖'), + ('幺', '繞'), + ('幺', '繙'), + ('幺', '繚'), + ('幺', '繹'), + ('幺', '繪'), + ('幺', '繩'), + ('幺', '繼'), + ('幺', '繻'), + ('幺', '纃'), + ('幺', '緕'), + ('幺', '繽'), + ('幺', '辮'), + ('幺', '繿'), + ('幺', '纈'), + ('幺', '纉'), + ('幺', '續'), + ('幺', '纒'), + ('幺', '纐'), + ('幺', '纓'), + ('幺', '纔'), + ('幺', '纖'), + ('幺', '纎'), + ('幺', '纛'), + ('幺', '纜'), + ('幺', '羂'), + ('幺', '聨'), + ('幺', '臠'), + ('幺', '茲'), + ('幺', '葯'), + ('幺', '藥'), + ('幺', '蘊'), + ('幺', '蘰'), + ('幺', '蘿'), + ('幺', '蟀'), + ('幺', '蠻'), + ('幺', '衒'), + ('幺', '譏'), + ('幺', '谿'), + ('幺', '蹊'), + ('幺', '邏'), + ('幺', '酳'), + ('幺', '鉉'), + ('幺', '鑼'), + ('幺', '鑾'), + ('幺', '關'), + ('幺', '隰'), + ('幺', '雍'), + ('幺', '顯'), + ('幺', '饑'), + ('幺', '騾'), + ('幺', '鯀'), + ('幺', '鷄'), + ('幺', '鸞'), + ('幺', '黝'), + ('广', '庵'), + ('广', '応'), + ('广', '廓'), + ('广', '拡'), + ('广', '慶'), + ('广', '庫'), + ('广', '広'), + ('广', '庚'), + ('广', '康'), + ('广', '糠'), + ('广', '鉱'), + ('广', '砿'), + ('广', '漉'), + ('广', '座'), + ('广', '鹿'), + ('广', '遮'), + ('广', '庶'), + ('广', '序'), + ('广', '庄'), + ('广', '床'), + ('广', '廠'), + ('广', '粧'), + ('广', '塵'), + ('广', '席'), + ('广', '薦'), + ('广', '鷹'), + ('广', '庁'), + ('广', '底'), + ('广', '庭'), + ('广', '店'), + ('广', '纏'), + ('广', '渡'), + ('广', '鍍'), + ('广', '度'), + ('广', '唐'), + ('广', '塘'), + ('广', '糖'), + ('广', '廃'), + ('广', '庇'), + ('广', '廟'), + ('广', '府'), + ('广', '腐'), + ('广', '庖'), + ('广', '摩'), + ('广', '磨'), + ('广', '魔'), + ('广', '麻'), + ('广', '麿'), + ('广', '傭'), + ('广', '庸'), + ('广', '麟'), + ('广', '麗'), + ('广', '暦'), + ('广', '歴'), + ('广', '廉'), + ('广', '簾'), + ('广', '廊'), + ('广', '麓'), + ('广', '俯'), + ('广', '儷'), + ('广', '嘛'), + ('广', '壙'), + ('广', '麼'), + ('广', '广'), + ('广', '庠'), + ('广', '廁'), + ('广', '廂'), + ('广', '廈'), + ('广', '廐'), + ('广', '廏'), + ('广', '廖'), + ('广', '廣'), + ('广', '廝'), + ('广', '廚'), + ('广', '廛'), + ('广', '廢'), + ('广', '廡'), + ('广', '廨'), + ('广', '廩'), + ('广', '廬'), + ('广', '廱'), + ('广', '廳'), + ('广', '廰'), + ('广', '慷'), + ('广', '慵'), + ('广', '應'), + ('广', '擴'), + ('广', '曠'), + ('广', '昿'), + ('广', '椨'), + ('广', '麾'), + ('广', '溏'), + ('广', '濂'), + ('广', '灑'), + ('广', '礦'), + ('广', '糜'), + ('广', '絋'), + ('广', '縻'), + ('广', '腑'), + ('广', '膺'), + ('广', '蓙'), + ('广', '蓆'), + ('广', '蔗'), + ('广', '賍'), + ('广', '蹠'), + ('广', '躔'), + ('广', '軈'), + ('广', '轆'), + ('广', '鏖'), + ('广', '鑛'), + ('广', '驪'), + ('广', '鱇'), + ('广', '鷓'), + ('广', '麁'), + ('广', '麈'), + ('广', '麋'), + ('广', '麌'), + ('广', '麒'), + ('广', '麕'), + ('广', '麑'), + ('广', '麝'), + ('广', '靡'), + ('廴', '延'), + ('廴', '廻'), + ('廴', '健'), + ('廴', '建'), + ('廴', '鍵'), + ('廴', '誕'), + ('廴', '庭'), + ('廴', '廷'), + ('廴', '挺'), + ('廴', '艇'), + ('廴', '廼'), + ('廴', '之'), + ('廴', '廴'), + ('廴', '廸'), + ('廴', '梃'), + ('廴', '涎'), + ('廴', '筵'), + ('廴', '腱'), + ('廴', '莚'), + ('廴', '蜒'), + ('廴', '蜑'), + ('廴', '霆'), + ('廾', '横'), + ('廾', '戒'), + ('廾', '械'), + ('廾', '開'), + ('廾', '革'), + ('廾', '尭'), + ('廾', '暁'), + ('廾', '刑'), + ('廾', '型'), + ('廾', '形'), + ('廾', '荊'), + ('廾', '研'), + ('廾', '済'), + ('廾', '斎'), + ('廾', '剤'), + ('廾', '錯'), + ('廾', '冊'), + ('廾', '撒'), + ('廾', '散'), + ('廾', '算'), + ('廾', '借'), + ('廾', '升'), + ('廾', '昇'), + ('廾', '斉'), + ('廾', '葬'), + ('廾', '鼻'), + ('廾', '併'), + ('廾', '塀'), + ('廾', '弊'), + ('廾', '弁'), + ('廾', '奔'), + ('廾', '餅'), + ('廾', '弄'), + ('廾', '丼'), + ('廾', '侖'), + ('廾', '儕'), + ('廾', '剏'), + ('廾', '劑'), + ('廾', '卉'), + ('廾', '哢'), + ('廾', '嚊'), + ('廾', '垪'), + ('廾', '妍'), + ('廾', '嬶'), + ('廾', '屏'), + ('廾', '峅'), + ('廾', '廾'), + ('廾', '弃'), + ('廾', '弉'), + ('廾', '彝'), + ('廾', '彜'), + ('廾', '擠'), + ('廾', '枡'), + ('廾', '枅'), + ('廾', '濟'), + ('廾', '齋'), + ('廾', '笄'), + ('廾', '絣'), + ('廾', '纃'), + ('廾', '聨'), + ('廾', '胼'), + ('廾', '臍'), + ('廾', '舁'), + ('廾', '莽'), + ('廾', '薺'), + ('廾', '蠎'), + ('廾', '蟒'), + ('廾', '誡'), + ('廾', '齎'), + ('廾', '躋'), + ('廾', '迸'), + ('廾', '陞'), + ('廾', '霽'), + ('廾', '齏'), + ('廾', '韲'), + ('廾', '駢'), + ('廾', '鼾'), + ('廾', '齊'), + ('弋', '試'), + ('弋', '式'), + ('弋', '拭'), + ('弋', '岱'), + ('弋', '袋'), + ('弋', '貸'), + ('弋', '黛'), + ('弋', '代'), + ('弋', '鳶'), + ('弋', '弐'), + ('弋', '斌'), + ('弋', '賦'), + ('弋', '武'), + ('弋', '鵡'), + ('弋', '弌'), + ('弋', '弍'), + ('弋', '垈'), + ('弋', '弋'), + ('弋', '弑'), + ('弋', '曵'), + ('弋', '杙'), + ('弋', '玳'), + ('弋', '膩'), + ('弋', '貳'), + ('弋', '貮'), + ('弋', '軾'), + ('弓', '夷'), + ('弓', '鰯'), + ('弓', '引'), + ('弓', '鵜'), + ('弓', '粥'), + ('弓', '弓'), + ('弓', '窮'), + ('弓', '強'), + ('弓', '彊'), + ('弓', '弦'), + ('弓', '弧'), + ('弓', '弘'), + ('弓', '弱'), + ('弓', '第'), + ('弓', '弾'), + ('弓', '弛'), + ('弓', '弔'), + ('弓', '張'), + ('弓', '剃'), + ('弓', '弟'), + ('弓', '悌'), + ('弓', '梯'), + ('弓', '溺'), + ('弓', '矧'), + ('弓', '費'), + ('弓', '弼'), + ('弓', '弗'), + ('弓', '沸'), + ('弓', '弥'), + ('弓', '湾'), + ('弓', '丐'), + ('弓', '佛'), + ('弓', '俤'), + ('弓', '兮'), + ('弓', '姨'), + ('弓', '嫋'), + ('弓', '嵶'), + ('弓', '廢'), + ('弓', '弖'), + ('弓', '弩'), + ('弓', '弭'), + ('弓', '弸'), + ('弓', '彁'), + ('弓', '彈'), + ('弓', '彌'), + ('弓', '彎'), + ('弓', '弯'), + ('弓', '彿'), + ('弓', '怫'), + ('弓', '拂'), + ('弓', '搦'), + ('弓', '泓'), + ('弓', '洟'), + ('弓', '涕'), + ('弓', '漲'), + ('弓', '瀰'), + ('弓', '灣'), + ('弓', '狒'), + ('弓', '疆'), + ('弓', '痍'), + ('弓', '發'), + ('弓', '睇'), + ('弓', '穹'), + ('弓', '鬻'), + ('弓', '繦'), + ('弓', '蒻'), + ('弓', '蚓'), + ('弓', '襁'), + ('弓', '躬'), + ('弓', '銕'), + ('弓', '髴'), + ('弓', '鶸'), + ('ヨ', '伊'), + ('ヨ', '隠'), + ('ヨ', '縁'), + ('ヨ', '穏'), + ('ヨ', '鎌'), + ('ヨ', '帰'), + ('ヨ', '急'), + ('ヨ', '慧'), + ('ヨ', '兼'), + ('ヨ', '嫌'), + ('ヨ', '謙'), + ('ヨ', '互'), + ('ヨ', '庚'), + ('ヨ', '康'), + ('ヨ', '糠'), + ('ヨ', '妻'), + ('ヨ', '事'), + ('ヨ', '繍'), + ('ヨ', '粛'), + ('ヨ', '捷'), + ('ヨ', '浄'), + ('ヨ', '侵'), + ('ヨ', '寝'), + ('ヨ', '浸'), + ('ヨ', '尋'), + ('ヨ', '凄'), + ('ヨ', '棲'), + ('ヨ', '静'), + ('ヨ', '雪'), + ('ヨ', '掃'), + ('ヨ', '争'), + ('ヨ', '逮'), + ('ヨ', '濯'), + ('ヨ', '鱈'), + ('ヨ', '擢'), + ('ヨ', '唐'), + ('ヨ', '塘'), + ('ヨ', '当'), + ('ヨ', '瀞'), + ('ヨ', '剥'), + ('ヨ', '婦'), + ('ヨ', '躍'), + ('ヨ', '傭'), + ('ヨ', '庸'), + ('ヨ', '曜'), + ('ヨ', '耀'), + ('ヨ', '緑'), + ('ヨ', '隷'), + ('ヨ', '廉'), + ('ヨ', '簾'), + ('ヨ', '禄'), + ('ヨ', '録'), + ('ヨ', '亊'), + ('ヨ', '儘'), + ('ヨ', '喙'), + ('ヨ', '嘯'), + ('ヨ', '壗'), + ('ヨ', '夛'), + ('ヨ', '寢'), + ('ヨ', '尹'), + ('ヨ', '崢'), + ('ヨ', '帚'), + ('ヨ', '彝'), + ('ヨ', '彜'), + ('ヨ', '彑'), + ('ヨ', '彗'), + ('ヨ', '彙'), + ('ヨ', '悽'), + ('ヨ', '慊'), + ('ヨ', '慷'), + ('ヨ', '慵'), + ('ヨ', '戳'), + ('ヨ', '掾'), + ('ヨ', '档'), + ('ヨ', '桾'), + ('ヨ', '棣'), + ('ヨ', '椽'), + ('ヨ', '櫂'), + ('ヨ', '櫞'), + ('ヨ', '歉'), + ('ヨ', '歸'), + ('ヨ', '沍'), + ('ヨ', '淨'), + ('ヨ', '淒'), + ('ヨ', '溏'), + ('ヨ', '潯'), + ('ヨ', '濂'), + ('ヨ', '瀟'), + ('ヨ', '燼'), + ('ヨ', '燿'), + ('ヨ', '爭'), + ('ヨ', '疉'), + ('ヨ', '盡'), + ('ヨ', '睫'), + ('ヨ', '碌'), + ('ヨ', '秉'), + ('ヨ', '穩'), + ('ヨ', '窘'), + ('ヨ', '笋'), + ('ヨ', '箒'), + ('ヨ', '箏'), + ('ヨ', '筝'), + ('ヨ', '簫'), + ('ヨ', '糴'), + ('ヨ', '糶'), + ('ヨ', '羞'), + ('ヨ', '羣'), + ('ヨ', '肅'), + ('ヨ', '膤'), + ('ヨ', '艝'), + ('ヨ', '萋'), + ('ヨ', '菷'), + ('ヨ', '蒹'), + ('ヨ', '蕁'), + ('ヨ', '蕭'), + ('ヨ', '裙'), + ('ヨ', '褄'), + ('ヨ', '諍'), + ('ヨ', '賺'), + ('ヨ', '贐'), + ('ヨ', '轌'), + ('ヨ', '錚'), + ('ヨ', '隱'), + ('ヨ', '隶'), + ('ヨ', '隸'), + ('ヨ', '靆'), + ('ヨ', '靜'), + ('ヨ', '駸'), + ('ヨ', '鱇'), + ('彑', '互'), + ('彑', '彝'), + ('彑', '彜'), + ('彑', '彑'), + ('彑', '彖'), + ('彑', '彙'), + ('彑', '恆'), + ('彑', '沍'), + ('彑', '祿'), + ('彑', '篆'), + ('彑', '蠡'), + ('彡', '鯵'), + ('彡', '影'), + ('彡', '顔'), + ('彡', '形'), + ('彡', '諺'), + ('彡', '彩'), + ('彡', '参'), + ('彡', '惨'), + ('彡', '修'), + ('彡', '彰'), + ('彡', '疹'), + ('彡', '診'), + ('彡', '須'), + ('彡', '杉'), + ('彡', '彫'), + ('彡', '珍'), + ('彡', '髪'), + ('彡', '髭'), + ('彡', '彦'), + ('彡', '謬'), + ('彡', '彪'), + ('彡', '彬'), + ('彡', '膨'), + ('彡', '穆'), + ('彡', '偐'), + ('彡', '勠'), + ('彡', '厖'), + ('彡', '參'), + ('彡', '寥'), + ('彡', '尨'), + ('彡', '廖'), + ('彡', '彡'), + ('彡', '彭'), + ('彡', '慘'), + ('彡', '戮'), + ('彡', '摎'), + ('彡', '樛'), + ('彡', '鬱'), + ('彡', '殄'), + ('彡', '滲'), + ('彡', '澎'), + ('彡', '畛'), + ('彡', '簓'), + ('彡', '繆'), + ('彡', '膠'), + ('彡', '蓚'), + ('彡', '蔘'), + ('彡', '蓼'), + ('彡', '衫'), + ('彡', '袗'), + ('彡', '趁'), + ('彡', '軫'), + ('彡', '醪'), + ('彡', '鏐'), + ('彡', '顏'), + ('彡', '餮'), + ('彡', '驂'), + ('彡', '髟'), + ('彡', '髢'), + ('彡', '髣'), + ('彡', '髦'), + ('彡', '髯'), + ('彡', '髫'), + ('彡', '髮'), + ('彡', '髴'), + ('彡', '髱'), + ('彡', '髷'), + ('彡', '髻'), + ('彡', '鬆'), + ('彡', '鬘'), + ('彡', '鬚'), + ('彡', '鬟'), + ('彡', '鬢'), + ('彡', '鬣'), + ('彡', '鰺'), + ('彳', '衛'), + ('彳', '往'), + ('彳', '街'), + ('彳', '徽'), + ('彳', '禦'), + ('彳', '径'), + ('彳', '桁'), + ('彳', '後'), + ('彳', '御'), + ('彳', '行'), + ('彳', '衡'), + ('彳', '従'), + ('彳', '縦'), + ('彳', '術'), + ('彳', '循'), + ('彳', '徐'), + ('彳', '衝'), + ('彳', '征'), + ('彳', '待'), + ('彳', '徴'), + ('彳', '懲'), + ('彳', '徹'), + ('彳', '徒'), + ('彳', '得'), + ('彳', '徳'), + ('彳', '彼'), + ('彳', '微'), + ('彳', '復'), + ('彳', '覆'), + ('彳', '役'), + ('彳', '履'), + ('彳', '律'), + ('彳', '葎'), + ('彳', '哘'), + ('彳', '垳'), + ('彳', '屐'), + ('彳', '彳'), + ('彳', '彷'), + ('彳', '徃'), + ('彳', '徂'), + ('彳', '彿'), + ('彳', '徊'), + ('彳', '很'), + ('彳', '徑'), + ('彳', '徇'), + ('彳', '從'), + ('彳', '徙'), + ('彳', '徘'), + ('彳', '徠'), + ('彳', '徨'), + ('彳', '徭'), + ('彳', '徼'), + ('彳', '愆'), + ('彳', '慫'), + ('彳', '樅'), + ('彳', '衍'), + ('彳', '絎'), + ('彳', '縱'), + ('彳', '聳'), + ('彳', '薇'), + ('彳', '衒'), + ('彳', '衙'), + ('彳', '衞'), + ('彳', '衢'), + ('彳', '裄'), + ('彳', '蹤'), + ('彳', '銜'), + ('彳', '鵆'), + ('彳', '黴'), + ('忙', '惟'), + ('忙', '悦'), + ('忙', '憶'), + ('忙', '快'), + ('忙', '怪'), + ('忙', '悔'), + ('忙', '恢'), + ('忙', '懐'), + ('忙', '慨'), + ('忙', '恰'), + ('忙', '慣'), + ('忙', '憾'), + ('忙', '怯'), + ('忙', '悟'), + ('忙', '恒'), + ('忙', '慌'), + ('忙', '惚'), + ('忙', '恨'), + ('忙', '惨'), + ('忙', '情'), + ('忙', '慎'), + ('忙', '性'), + ('忙', '惜'), + ('忙', '憎'), + ('忙', '惰'), + ('忙', '悌'), + ('忙', '悼'), + ('忙', '憧'), + ('忙', '惇'), + ('忙', '悩'), + ('忙', '怖'), + ('忙', '憤'), + ('忙', '忙'), + ('忙', '慢'), + ('忙', '愉'), + ('忙', '怜'), + ('忙', '憐'), + ('忙', '忖'), + ('忙', '忻'), + ('忙', '忤'), + ('忙', '忸'), + ('忙', '忱'), + ('忙', '怡'), + ('忙', '恠'), + ('忙', '怙'), + ('忙', '怐'), + ('忙', '怩'), + ('忙', '怛'), + ('忙', '怕'), + ('忙', '怫'), + ('忙', '怦'), + ('忙', '怏'), + ('忙', '怺'), + ('忙', '恪'), + ('忙', '恟'), + ('忙', '恊'), + ('忙', '恆'), + ('忙', '恍'), + ('忙', '恃'), + ('忙', '恤'), + ('忙', '恂'), + ('忙', '恬'), + ('忙', '恫'), + ('忙', '悁'), + ('忙', '悍'), + ('忙', '惧'), + ('忙', '悃'), + ('忙', '悚'), + ('忙', '悄'), + ('忙', '悛'), + ('忙', '悖'), + ('忙', '悗'), + ('忙', '悒'), + ('忙', '悧'), + ('忙', '悋'), + ('忙', '悸'), + ('忙', '惓'), + ('忙', '悴'), + ('忙', '忰'), + ('忙', '悽'), + ('忙', '惆'), + ('忙', '悵'), + ('忙', '惘'), + ('忙', '慍'), + ('忙', '愕'), + ('忙', '惶'), + ('忙', '愀'), + ('忙', '惴'), + ('忙', '惺'), + ('忙', '愃'), + ('忙', '愡'), + ('忙', '惻'), + ('忙', '惱'), + ('忙', '愎'), + ('忙', '愾'), + ('忙', '愧'), + ('忙', '慊'), + ('忙', '愼'), + ('忙', '愴'), + ('忙', '愽'), + ('忙', '慄'), + ('忙', '慳'), + ('忙', '慷'), + ('忙', '慘'), + ('忙', '慚'), + ('忙', '慴'), + ('忙', '慯'), + ('忙', '慥'), + ('忙', '慱'), + ('忙', '慟'), + ('忙', '慓'), + ('忙', '慵'), + ('忙', '憬'), + ('忙', '憔'), + ('忙', '憚'), + ('忙', '憫'), + ('忙', '憮'), + ('忙', '懌'), + ('忙', '懊'), + ('忙', '懷'), + ('忙', '懈'), + ('忙', '懆'), + ('忙', '憺'), + ('忙', '罹'), + ('忙', '懍'), + ('忙', '懦'), + ('忙', '懶'), + ('忙', '懺'), + ('忙', '懴'), + ('忙', '懽'), + ('忙', '懼'), + ('忙', '懾'), + ('扎', '挨'), + ('扎', '握'), + ('扎', '扱'), + ('扎', '按'), + ('扎', '掩'), + ('扎', '援'), + ('扎', '押'), + ('扎', '拐'), + ('扎', '拡'), + ('扎', '撹'), + ('扎', '掛'), + ('扎', '括'), + ('扎', '換'), + ('扎', '揮'), + ('扎', '技'), + ('扎', '擬'), + ('扎', '掬'), + ('扎', '拒'), + ('扎', '拠'), + ('扎', '挟'), + ('扎', '掘'), + ('扎', '掲'), + ('扎', '携'), + ('扎', '捲'), + ('扎', '抗'), + ('扎', '拘'), + ('扎', '控'), + ('扎', '拷'), + ('扎', '挫'), + ('扎', '採'), + ('扎', '搾'), + ('扎', '拶'), + ('扎', '撮'), + ('扎', '擦'), + ('扎', '捌'), + ('扎', '撒'), + ('扎', '指'), + ('扎', '持'), + ('扎', '捨'), + ('扎', '授'), + ('扎', '拾'), + ('扎', '抄'), + ('扎', '招'), + ('扎', '捷'), + ('扎', '擾'), + ('扎', '拭'), + ('扎', '振'), + ('扎', '推'), + ('扎', '据'), + ('扎', '摺'), + ('扎', '誓'), + ('扎', '逝'), + ('扎', '拙'), + ('扎', '接'), + ('扎', '摂'), + ('扎', '折'), + ('扎', '撰'), + ('扎', '措'), + ('扎', '捜'), + ('扎', '掃'), + ('扎', '挿'), + ('扎', '掻'), + ('扎', '操'), + ('扎', '捉'), + ('扎', '揃'), + ('扎', '損'), + ('扎', '打'), + ('扎', '托'), + ('扎', '択'), + ('扎', '拓'), + ('扎', '担'), + ('扎', '探'), + ('扎', '抽'), + ('扎', '挑'), + ('扎', '捗'), + ('扎', '掴'), + ('扎', '抵'), + ('扎', '挺'), + ('扎', '提'), + ('扎', '摘'), + ('扎', '擢'), + ('扎', '哲'), + ('扎', '撤'), + ('扎', '投'), + ('扎', '搭'), + ('扎', '撞'), + ('扎', '捺'), + ('扎', '捻'), + ('扎', '撚'), + ('扎', '把'), + ('扎', '播'), + ('扎', '拝'), + ('扎', '排'), + ('扎', '拍'), + ('扎', '抜'), + ('扎', '搬'), + ('扎', '挽'), + ('扎', '批'), + ('扎', '披'), + ('扎', '描'), + ('扎', '扶'), + ('扎', '撫'), + ('扎', '払'), + ('扎', '扮'), + ('扎', '捕'), + ('扎', '抱'), + ('扎', '捧'), + ('扎', '撲'), + ('扎', '抹'), + ('扎', '摸'), + ('扎', '揖'), + ('扎', '揚'), + ('扎', '揺'), + ('扎', '擁'), + ('扎', '抑'), + ('扎', '掠'), + ('扎', '扎'), + ('扎', '扞'), + ('扎', '扣'), + ('扎', '扛'), + ('扎', '扠'), + ('扎', '扨'), + ('扎', '扼'), + ('扎', '抂'), + ('扎', '抉'), + ('扎', '找'), + ('扎', '抒'), + ('扎', '抓'), + ('扎', '抖'), + ('扎', '拔'), + ('扎', '抃'), + ('扎', '抔'), + ('扎', '拗'), + ('扎', '拑'), + ('扎', '抻'), + ('扎', '拆'), + ('扎', '擔'), + ('扎', '拈'), + ('扎', '拜'), + ('扎', '拌'), + ('扎', '拊'), + ('扎', '拂'), + ('扎', '拇'), + ('扎', '抛'), + ('扎', '拉'), + ('扎', '挌'), + ('扎', '拮'), + ('扎', '拱'), + ('扎', '挧'), + ('扎', '挂'), + ('扎', '拯'), + ('扎', '拵'), + ('扎', '捐'), + ('扎', '挾'), + ('扎', '捍'), + ('扎', '搜'), + ('扎', '捏'), + ('扎', '掖'), + ('扎', '掎'), + ('扎', '掀'), + ('扎', '掫'), + ('扎', '捶'), + ('扎', '掏'), + ('扎', '掉'), + ('扎', '掟'), + ('扎', '掵'), + ('扎', '捫'), + ('扎', '捩'), + ('扎', '掾'), + ('扎', '揩'), + ('扎', '揀'), + ('扎', '揆'), + ('扎', '揣'), + ('扎', '揉'), + ('扎', '插'), + ('扎', '揶'), + ('扎', '揄'), + ('扎', '搖'), + ('扎', '搆'), + ('扎', '搓'), + ('扎', '搦'), + ('扎', '搶'), + ('扎', '攝'), + ('扎', '搗'), + ('扎', '搨'), + ('扎', '搏'), + ('扎', '摧'), + ('扎', '摶'), + ('扎', '摎'), + ('扎', '攪'), + ('扎', '撕'), + ('扎', '撓'), + ('扎', '撥'), + ('扎', '撩'), + ('扎', '撈'), + ('扎', '撼'), + ('扎', '據'), + ('扎', '擒'), + ('扎', '擅'), + ('扎', '擇'), + ('扎', '撻'), + ('扎', '擂'), + ('扎', '擱'), + ('扎', '擠'), + ('扎', '擡'), + ('扎', '抬'), + ('扎', '擣'), + ('扎', '擯'), + ('扎', '攬'), + ('扎', '擶'), + ('扎', '擴'), + ('扎', '擲'), + ('扎', '擺'), + ('扎', '擽'), + ('扎', '攘'), + ('扎', '攜'), + ('扎', '攅'), + ('扎', '攤'), + ('扎', '攫'), + ('扎', '晢'), + ('扎', '浙'), + ('扎', '湃'), + ('扎', '箝'), + ('扎', '箍'), + ('扎', '籀'), + ('汁', '渥'), + ('汁', '溢'), + ('汁', '淫'), + ('汁', '渦'), + ('汁', '浦'), + ('汁', '泳'), + ('汁', '洩'), + ('汁', '液'), + ('汁', '沿'), + ('汁', '演'), + ('汁', '汚'), + ('汁', '沖'), + ('汁', '温'), + ('汁', '河'), + ('汁', '海'), + ('汁', '涯'), + ('汁', '浬'), + ('汁', '潟'), + ('汁', '活'), + ('汁', '渇'), + ('汁', '滑'), + ('汁', '蒲'), + ('汁', '汗'), + ('汁', '漢'), + ('汁', '澗'), + ('汁', '潅'), + ('汁', '汽'), + ('汁', '汲'), + ('汁', '泣'), + ('汁', '渠'), + ('汁', '漁'), + ('汁', '況'), + ('汁', '窪'), + ('汁', '渓'), + ('汁', '激'), + ('汁', '決'), + ('汁', '潔'), + ('汁', '減'), + ('汁', '源'), + ('汁', '湖'), + ('汁', '江'), + ('汁', '洪'), + ('汁', '浩'), + ('汁', '港'), + ('汁', '溝'), + ('汁', '鴻'), + ('汁', '濠'), + ('汁', '漉'), + ('汁', '混'), + ('汁', '沙'), + ('汁', '裟'), + ('汁', '済'), + ('汁', '滋'), + ('汁', '治'), + ('汁', '汐'), + ('汁', '湿'), + ('汁', '漆'), + ('汁', '酒'), + ('汁', '洲'), + ('汁', '汁'), + ('汁', '渋'), + ('汁', '淑'), + ('汁', '淳'), + ('汁', '準'), + ('汁', '潤'), + ('汁', '渚'), + ('汁', '沼'), + ('汁', '消'), + ('汁', '渉'), + ('汁', '湘'), + ('汁', '浄'), + ('汁', '浸'), + ('汁', '深'), + ('汁', '澄'), + ('汁', '瀬'), + ('汁', '清'), + ('汁', '浅'), + ('汁', '洗'), + ('汁', '染'), + ('汁', '潜'), + ('汁', '羨'), + ('汁', '漸'), + ('汁', '漕'), + ('汁', '藻'), + ('汁', '測'), + ('汁', '汰'), + ('汁', '滞'), + ('汁', '滝'), + ('汁', '瀧'), + ('汁', '沢'), + ('汁', '濯'), + ('汁', '濁'), + ('汁', '淡'), + ('汁', '湛'), + ('汁', '池'), + ('汁', '注'), + ('汁', '瀦'), + ('汁', '潮'), + ('汁', '沈'), + ('汁', '津'), + ('汁', '漬'), + ('汁', '潰'), + ('汁', '汀'), + ('汁', '泥'), + ('汁', '滴'), + ('汁', '溺'), + ('汁', '添'), + ('汁', '澱'), + ('汁', '塗'), + ('汁', '渡'), + ('汁', '淘'), + ('汁', '湯'), + ('汁', '涛'), + ('汁', '蕩'), + ('汁', '洞'), + ('汁', '涜'), + ('汁', '瀞'), + ('汁', '沌'), + ('汁', '灘'), + ('汁', '汝'), + ('汁', '濡'), + ('汁', '濃'), + ('汁', '波'), + ('汁', '派'), + ('汁', '婆'), + ('汁', '泊'), + ('汁', '箔'), + ('汁', '薄'), + ('汁', '漠'), + ('汁', '溌'), + ('汁', '氾'), + ('汁', '汎'), + ('汁', '藩'), + ('汁', '泌'), + ('汁', '漂'), + ('汁', '浜'), + ('汁', '瀕'), + ('汁', '浮'), + ('汁', '淵'), + ('汁', '沸'), + ('汁', '簿'), + ('汁', '法'), + ('汁', '泡'), + ('汁', '没'), + ('汁', '沫'), + ('汁', '満'), + ('汁', '漫'), + ('汁', '湊'), + ('汁', '滅'), + ('汁', '油'), + ('汁', '湧'), + ('汁', '涌'), + ('汁', '洋'), + ('汁', '溶'), + ('汁', '沃'), + ('汁', '浴'), + ('汁', '淀'), + ('汁', '洛'), + ('汁', '落'), + ('汁', '濫'), + ('汁', '流'), + ('汁', '溜'), + ('汁', '梁'), + ('汁', '涼'), + ('汁', '淋'), + ('汁', '涙'), + ('汁', '漣'), + ('汁', '浪'), + ('汁', '漏'), + ('汁', '湾'), + ('汁', '匯'), + ('汁', '塰'), + ('汁', '娑'), + ('汁', '愆'), + ('汁', '慂'), + ('汁', '懣'), + ('汁', '盜'), + ('汁', '汕'), + ('汁', '汢'), + ('汁', '汪'), + ('汁', '沂'), + ('汁', '沍'), + ('汁', '沚'), + ('汁', '沁'), + ('汁', '沛'), + ('汁', '汾'), + ('汁', '汨'), + ('汁', '汳'), + ('汁', '沒'), + ('汁', '沐'), + ('汁', '泄'), + ('汁', '泱'), + ('汁', '泓'), + ('汁', '沽'), + ('汁', '泗'), + ('汁', '泅'), + ('汁', '泝'), + ('汁', '沮'), + ('汁', '沱'), + ('汁', '沾'), + ('汁', '沺'), + ('汁', '泛'), + ('汁', '泯'), + ('汁', '泙'), + ('汁', '泪'), + ('汁', '洟'), + ('汁', '衍'), + ('汁', '洶'), + ('汁', '洫'), + ('汁', '洽'), + ('汁', '洸'), + ('汁', '洙'), + ('汁', '洵'), + ('汁', '洳'), + ('汁', '洒'), + ('汁', '洌'), + ('汁', '浣'), + ('汁', '涓'), + ('汁', '浤'), + ('汁', '浚'), + ('汁', '浹'), + ('汁', '浙'), + ('汁', '涎'), + ('汁', '涕'), + ('汁', '濤'), + ('汁', '涅'), + ('汁', '淹'), + ('汁', '渕'), + ('汁', '渊'), + ('汁', '涵'), + ('汁', '淇'), + ('汁', '淦'), + ('汁', '涸'), + ('汁', '淆'), + ('汁', '淬'), + ('汁', '淞'), + ('汁', '淌'), + ('汁', '淨'), + ('汁', '淒'), + ('汁', '淅'), + ('汁', '淺'), + ('汁', '淙'), + ('汁', '淤'), + ('汁', '淕'), + ('汁', '淪'), + ('汁', '淮'), + ('汁', '渭'), + ('汁', '湮'), + ('汁', '渮'), + ('汁', '渙'), + ('汁', '湲'), + ('汁', '湟'), + ('汁', '渾'), + ('汁', '渣'), + ('汁', '湫'), + ('汁', '渫'), + ('汁', '湶'), + ('汁', '湍'), + ('汁', '渟'), + ('汁', '湃'), + ('汁', '渺'), + ('汁', '湎'), + ('汁', '渤'), + ('汁', '滿'), + ('汁', '渝'), + ('汁', '游'), + ('汁', '溂'), + ('汁', '溪'), + ('汁', '溘'), + ('汁', '滉'), + ('汁', '溷'), + ('汁', '滓'), + ('汁', '溽'), + ('汁', '溯'), + ('汁', '滄'), + ('汁', '溲'), + ('汁', '滔'), + ('汁', '溏'), + ('汁', '溥'), + ('汁', '滂'), + ('汁', '溟'), + ('汁', '漑'), + ('汁', '灌'), + ('汁', '滬'), + ('汁', '滸'), + ('汁', '滾'), + ('汁', '滲'), + ('汁', '漱'), + ('汁', '滯'), + ('汁', '漲'), + ('汁', '滌'), + ('汁', '漾'), + ('汁', '漓'), + ('汁', '滷'), + ('汁', '澆'), + ('汁', '潺'), + ('汁', '潸'), + ('汁', '澁'), + ('汁', '澀'), + ('汁', '潯'), + ('汁', '潛'), + ('汁', '濳'), + ('汁', '潭'), + ('汁', '澂'), + ('汁', '潼'), + ('汁', '潘'), + ('汁', '澎'), + ('汁', '澑'), + ('汁', '濂'), + ('汁', '潦'), + ('汁', '澳'), + ('汁', '澣'), + ('汁', '澡'), + ('汁', '澤'), + ('汁', '澹'), + ('汁', '濆'), + ('汁', '澪'), + ('汁', '濟'), + ('汁', '濕'), + ('汁', '濬'), + ('汁', '濔'), + ('汁', '濘'), + ('汁', '濱'), + ('汁', '濮'), + ('汁', '濛'), + ('汁', '瀉'), + ('汁', '瀋'), + ('汁', '濺'), + ('汁', '瀑'), + ('汁', '瀁'), + ('汁', '瀏'), + ('汁', '濾'), + ('汁', '瀛'), + ('汁', '瀚'), + ('汁', '潴'), + ('汁', '瀝'), + ('汁', '瀘'), + ('汁', '瀟'), + ('汁', '瀰'), + ('汁', '瀾'), + ('汁', '瀲'), + ('汁', '灑'), + ('汁', '灣'), + ('汁', '琺'), + ('汁', '盪'), + ('汁', '蘯'), + ('汁', '碆'), + ('汁', '笵'), + ('汁', '簗'), + ('汁', '粱'), + ('汁', '范'), + ('汁', '茫'), + ('汁', '莎'), + ('汁', '菠'), + ('汁', '萍'), + ('汁', '萢'), + ('汁', '蔆'), + ('汁', '薀'), + ('汁', '闊'), + ('汁', '濶'), + ('汁', '霈'), + ('汁', '霑'), + ('汁', '霪'), + ('汁', '鯊'), + ('犯', '猿'), + ('犯', '荻'), + ('犯', '獲'), + ('犯', '狂'), + ('犯', '狭'), + ('犯', '狗'), + ('犯', '狐'), + ('犯', '獄'), + ('犯', '狛'), + ('犯', '墾'), + ('犯', '懇'), + ('犯', '獅'), + ('犯', '狩'), + ('犯', '狙'), + ('犯', '狸'), + ('犯', '猪'), + ('犯', '独'), + ('犯', '猫'), + ('犯', '狽'), + ('犯', '犯'), + ('犯', '猛'), + ('犯', '猶'), + ('犯', '猟'), + ('犯', '狼'), + ('犯', '潴'), + ('犯', '犹'), + ('犯', '犲'), + ('犯', '狃'), + ('犯', '狆'), + ('犯', '狄'), + ('犯', '狎'), + ('犯', '狒'), + ('犯', '狢'), + ('犯', '狠'), + ('犯', '狡'), + ('犯', '狹'), + ('犯', '狷'), + ('犯', '猗'), + ('犯', '猊'), + ('犯', '猜'), + ('犯', '猖'), + ('犯', '猝'), + ('犯', '猴'), + ('犯', '猯'), + ('犯', '猩'), + ('犯', '猥'), + ('犯', '猾'), + ('犯', '獏'), + ('犯', '獗'), + ('犯', '獪'), + ('犯', '獨'), + ('犯', '獰'), + ('犯', '獵'), + ('犯', '獺'), + ('犯', '蕕'), + ('犯', '誑'), + ('犯', '逖'), + ('艾', '葵'), + ('艾', '茜'), + ('艾', '葦'), + ('艾', '芦'), + ('艾', '萎'), + ('艾', '茨'), + ('艾', '芋'), + ('艾', '蔭'), + ('艾', '蔚'), + ('艾', '荏'), + ('艾', '瑛'), + ('艾', '英'), + ('艾', '燕'), + ('艾', '苑'), + ('艾', '薗'), + ('艾', '荻'), + ('艾', '花'), + ('艾', '苛'), + ('艾', '茄'), + ('艾', '荷'), + ('艾', '華'), + ('艾', '菓'), + ('艾', '嘩'), + ('艾', '芽'), + ('艾', '芥'), + ('艾', '蓋'), + ('艾', '獲'), + ('艾', '穫'), + ('艾', '葛'), + ('艾', '椛'), + ('艾', '樺'), + ('艾', '蒲'), + ('艾', '茅'), + ('艾', '萱'), + ('艾', '苅'), + ('艾', '寛'), + ('艾', '漢'), + ('艾', '莞'), + ('艾', '菊'), + ('艾', '蕎'), + ('艾', '驚'), + ('艾', '僅'), + ('艾', '勤'), + ('艾', '芹'), + ('艾', '菌'), + ('艾', '謹'), + ('艾', '苦'), + ('艾', '薫'), + ('艾', '敬'), + ('艾', '茎'), + ('艾', '荊'), + ('艾', '警'), + ('艾', '芸'), + ('艾', '菰'), + ('艾', '護'), + ('艾', '慌'), + ('艾', '荒'), + ('艾', '菜'), + ('艾', '薩'), + ('艾', '蒔'), + ('艾', '蔀'), + ('艾', '芝'), + ('艾', '蕊'), + ('艾', '若'), + ('艾', '惹'), + ('艾', '蒐'), + ('艾', '薯'), + ('艾', '藷'), + ('艾', '菖'), + ('艾', '蒋'), + ('艾', '蕉'), + ('艾', '蒸'), + ('艾', '芯'), + ('艾', '薪'), + ('艾', '菅'), + ('艾', '薦'), + ('艾', '蘇'), + ('艾', '草'), + ('艾', '荘'), + ('艾', '葬'), + ('艾', '蒼'), + ('艾', '藻'), + ('艾', '臓'), + ('艾', '蔵'), + ('艾', '苔'), + ('艾', '諾'), + ('艾', '茸'), + ('艾', '嘆'), + ('艾', '歎'), + ('艾', '蓄'), + ('艾', '茶'), + ('艾', '苧'), + ('艾', '著'), + ('艾', '蔦'), + ('艾', '菟'), + ('艾', '塔'), + ('艾', '搭'), + ('艾', '董'), + ('艾', '蕩'), + ('艾', '藤'), + ('艾', '萄'), + ('艾', '匿'), + ('艾', '苫'), + ('艾', '薙'), + ('艾', '灘'), + ('艾', '難'), + ('艾', '韮'), + ('艾', '葱'), + ('艾', '猫'), + ('艾', '芭'), + ('艾', '萩'), + ('艾', '薄'), + ('艾', '漠'), + ('艾', '莫'), + ('艾', '藩'), + ('艾', '蕃'), + ('艾', '備'), + ('艾', '菱'), + ('艾', '描'), + ('艾', '苗'), + ('艾', '錨'), + ('艾', '蒜'), + ('艾', '芙'), + ('艾', '葡'), + ('艾', '蕪'), + ('艾', '葺'), + ('艾', '蕗'), + ('艾', '噴'), + ('艾', '墳'), + ('艾', '憤'), + ('艾', '蔽'), + ('艾', '蔑'), + ('艾', '募'), + ('艾', '墓'), + ('艾', '慕'), + ('艾', '暮'), + ('艾', '菩'), + ('艾', '芳'), + ('艾', '萌'), + ('艾', '蓬'), + ('艾', '幕'), + ('艾', '膜'), + ('艾', '繭'), + ('艾', '蔓'), + ('艾', '蓑'), + ('艾', '夢'), + ('艾', '摸'), + ('艾', '模'), + ('艾', '茂'), + ('艾', '蒙'), + ('艾', '薬'), + ('艾', '薮'), + ('艾', '葉'), + ('艾', '蓉'), + ('艾', '莱'), + ('艾', '落'), + ('艾', '藍'), + ('艾', '蘭'), + ('艾', '葎'), + ('艾', '苓'), + ('艾', '蓮'), + ('艾', '藁'), + ('艾', '蕨'), + ('艾', '儚'), + ('艾', '儺'), + ('艾', '冪'), + ('艾', '剳'), + ('艾', '勸'), + ('艾', '嚆'), + ('艾', '囈'), + ('艾', '埖'), + ('艾', '墸'), + ('艾', '寞'), + ('艾', '慝'), + ('艾', '憊'), + ('艾', '懃'), + ('艾', '懽'), + ('艾', '攤'), + ('艾', '暎'), + ('艾', '曄'), + ('艾', '曚'), + ('艾', '朦'), + ('艾', '槿'), + ('艾', '權'), + ('艾', '檠'), + ('艾', '蘗'), + ('艾', '檬'), + ('艾', '蘖'), + ('艾', '欟'), + ('艾', '歡'), + ('艾', '渮'), + ('艾', '灌'), + ('艾', '濆'), + ('艾', '濛'), + ('艾', '瀟'), + ('艾', '獏'), + ('艾', '瑾'), + ('艾', '甍'), + ('艾', '癘'), + ('艾', '蘯'), + ('艾', '矇'), + ('艾', '礪'), + ('艾', '硴'), + ('艾', '糀'), + ('艾', '糒'), + ('艾', '糢'), + ('艾', '糲'), + ('艾', '罐'), + ('艾', '羃'), + ('艾', '膵'), + ('艾', '臈'), + ('艾', '臟'), + ('艾', '舊'), + ('艾', '艨'), + ('艾', '艱'), + ('艾', '艸'), + ('艾', '艾'), + ('艾', '芍'), + ('艾', '芒'), + ('艾', '芫'), + ('艾', '芟'), + ('艾', '芻'), + ('艾', '芬'), + ('艾', '苡'), + ('艾', '苣'), + ('艾', '苟'), + ('艾', '苒'), + ('艾', '苴'), + ('艾', '苳'), + ('艾', '苺'), + ('艾', '莓'), + ('艾', '范'), + ('艾', '苻'), + ('艾', '苹'), + ('艾', '苞'), + ('艾', '茆'), + ('艾', '苜'), + ('艾', '茉'), + ('艾', '苙'), + ('艾', '茵'), + ('艾', '茴'), + ('艾', '茖'), + ('艾', '茲'), + ('艾', '茱'), + ('艾', '荀'), + ('艾', '茹'), + ('艾', '荐'), + ('艾', '荅'), + ('艾', '茯'), + ('艾', '茫'), + ('艾', '茗'), + ('艾', '茘'), + ('艾', '莅'), + ('艾', '莚'), + ('艾', '莪'), + ('艾', '莟'), + ('艾', '莢'), + ('艾', '莖'), + ('艾', '茣'), + ('艾', '莎'), + ('艾', '莇'), + ('艾', '莊'), + ('艾', '荼'), + ('艾', '莵'), + ('艾', '荳'), + ('艾', '荵'), + ('艾', '莠'), + ('艾', '莉'), + ('艾', '莨'), + ('艾', '菴'), + ('艾', '萓'), + ('艾', '菫'), + ('艾', '菎'), + ('艾', '菽'), + ('艾', '萃'), + ('艾', '菘'), + ('艾', '萋'), + ('艾', '菁'), + ('艾', '菷'), + ('艾', '萇'), + ('艾', '菠'), + ('艾', '菲'), + ('艾', '萍'), + ('艾', '萢'), + ('艾', '萠'), + ('艾', '莽'), + ('艾', '萸'), + ('艾', '蔆'), + ('艾', '菻'), + ('艾', '葭'), + ('艾', '萪'), + ('艾', '萼'), + ('艾', '蕚'), + ('艾', '蒄'), + ('艾', '葷'), + ('艾', '葫'), + ('艾', '蒭'), + ('艾', '葮'), + ('艾', '蒂'), + ('艾', '葩'), + ('艾', '葆'), + ('艾', '萬'), + ('艾', '葯'), + ('艾', '葹'), + ('艾', '萵'), + ('艾', '蓊'), + ('艾', '葢'), + ('艾', '蒹'), + ('艾', '蒿'), + ('艾', '蒟'), + ('艾', '蓙'), + ('艾', '蓍'), + ('艾', '蒻'), + ('艾', '蓚'), + ('艾', '蓐'), + ('艾', '蓁'), + ('艾', '蓆'), + ('艾', '蓖'), + ('艾', '蒡'), + ('艾', '蔡'), + ('艾', '蓿'), + ('艾', '蓴'), + ('艾', '蔗'), + ('艾', '蔘'), + ('艾', '蔬'), + ('艾', '蔟'), + ('艾', '蔕'), + ('艾', '蔔'), + ('艾', '蓼'), + ('艾', '蕀'), + ('艾', '蕣'), + ('艾', '蕘'), + ('艾', '蕈'), + ('艾', '蕁'), + ('艾', '蘂'), + ('艾', '蕋'), + ('艾', '蕕'), + ('艾', '薀'), + ('艾', '薤'), + ('艾', '薈'), + ('艾', '薑'), + ('艾', '薊'), + ('艾', '薨'), + ('艾', '蕭'), + ('艾', '薔'), + ('艾', '薛'), + ('艾', '藪'), + ('艾', '薇'), + ('艾', '薜'), + ('艾', '蕷'), + ('艾', '蕾'), + ('艾', '薐'), + ('艾', '藉'), + ('艾', '薺'), + ('艾', '藏'), + ('艾', '薹'), + ('艾', '藐'), + ('艾', '藕'), + ('艾', '藝'), + ('艾', '藥'), + ('艾', '藜'), + ('艾', '藹'), + ('艾', '蘊'), + ('艾', '蘓'), + ('艾', '蘋'), + ('艾', '藾'), + ('艾', '藺'), + ('艾', '蘆'), + ('艾', '蘢'), + ('艾', '蘚'), + ('艾', '蘰'), + ('艾', '蘿'), + ('艾', '蠣'), + ('艾', '蛬'), + ('艾', '蟇'), + ('艾', '蟆'), + ('艾', '蠎'), + ('艾', '蟒'), + ('艾', '蠖'), + ('艾', '襪'), + ('艾', '覲'), + ('艾', '觀'), + ('艾', '謨'), + ('艾', '譁'), + ('艾', '讙'), + ('艾', '貘'), + ('艾', '賁'), + ('艾', '躇'), + ('艾', '躪'), + ('艾', '邁'), + ('艾', '鄒'), + ('艾', '鋩'), + ('艾', '錺'), + ('艾', '錵'), + ('艾', '鑵'), + ('艾', '霙'), + ('艾', '鞳'), + ('艾', '鞴'), + ('艾', '韈'), + ('艾', '顴'), + ('艾', '餝'), + ('艾', '饉'), + ('艾', '驀'), + ('艾', '驩'), + ('艾', '鸛'), + ('邦', '郁'), + ('邦', '廓'), + ('邦', '郭'), + ('邦', '郷'), + ('邦', '響'), + ('邦', '饗'), + ('邦', '郡'), + ('邦', '祁'), + ('邦', '郊'), + ('邦', '蔀'), + ('邦', '邪'), + ('邦', '邸'), + ('邦', '鄭'), + ('邦', '都'), + ('邦', '那'), + ('邦', '部'), + ('邦', '邦'), + ('邦', '爺'), + ('邦', '耶'), + ('邦', '郵'), + ('邦', '廊'), + ('邦', '榔'), + ('邦', '郎'), + ('邦', '嚮'), + ('邦', '娜'), + ('邦', '揶'), + ('邦', '擲'), + ('邦', '梛'), + ('邦', '椰'), + ('邦', '槨'), + ('邦', '瑯'), + ('邦', '螂'), + ('邦', '躑'), + ('邦', '邨'), + ('邦', '邯'), + ('邦', '邱'), + ('邦', '邵'), + ('邦', '郢'), + ('邦', '郤'), + ('邦', '扈'), + ('邦', '郛'), + ('邦', '鄂'), + ('邦', '鄒'), + ('邦', '鄙'), + ('邦', '鄲'), + ('邦', '鄰'), + ('阡', '阿'), + ('阡', '蔭'), + ('阡', '院'), + ('阡', '陰'), + ('阡', '隠'), + ('阡', '階'), + ('阡', '隔'), + ('阡', '陥'), + ('阡', '隅'), + ('阡', '隈'), + ('阡', '隙'), + ('阡', '険'), + ('阡', '限'), + ('阡', '降'), + ('阡', '際'), + ('阡', '阪'), + ('阡', '薩'), + ('阡', '除'), + ('阡', '障'), + ('阡', '陣'), + ('阡', '随'), + ('阡', '阻'), + ('阡', '堕'), + ('阡', '陀'), + ('阡', '隊'), + ('阡', '陳'), + ('阡', '墜'), + ('阡', '陶'), + ('阡', '陪'), + ('阡', '埠'), + ('阡', '阜'), + ('阡', '附'), + ('阡', '陛'), + ('阡', '防'), + ('阡', '陽'), + ('阡', '陸'), + ('阡', '隆'), + ('阡', '陵'), + ('阡', '隣'), + ('阡', '墮'), + ('阡', '婀'), + ('阡', '嶐'), + ('阡', '橢'), + ('阡', '痾'), + ('阡', '窿'), + ('阡', '隋'), + ('阡', '隨'), + ('阡', '阡'), + ('阡', '阨'), + ('阡', '阮'), + ('阡', '阯'), + ('阡', '陂'), + ('阡', '陌'), + ('阡', '陏'), + ('阡', '陋'), + ('阡', '陷'), + ('阡', '陜'), + ('阡', '陞'), + ('阡', '陝'), + ('阡', '陟'), + ('阡', '陦'), + ('阡', '陲'), + ('阡', '陬'), + ('阡', '隍'), + ('阡', '隘'), + ('阡', '隕'), + ('阡', '隗'), + ('阡', '險'), + ('阡', '隧'), + ('阡', '隱'), + ('阡', '隲'), + ('阡', '隰'), + ('阡', '隴'), + ('也', '施'), + ('也', '他'), + ('也', '地'), + ('也', '弛'), + ('也', '池'), + ('也', '馳'), + ('也', '也'), + ('也', '葹'), + ('也', '釶'), + ('也', '髢'), + ('亡', '虻'), + ('亡', '慌'), + ('亡', '荒'), + ('亡', '亡'), + ('亡', '忘'), + ('亡', '忙'), + ('亡', '望'), + ('亡', '妄'), + ('亡', '盲'), + ('亡', '網'), + ('亡', '侫'), + ('亡', '氓'), + ('亡', '瀛'), + ('亡', '罔'), + ('亡', '羸'), + ('亡', '肓'), + ('亡', '芒'), + ('亡', '茫'), + ('亡', '贏'), + ('亡', '鋩'), + ('亡', '魍'), + ('及', '扱'), + ('及', '及'), + ('及', '吸'), + ('及', '汲'), + ('及', '笈'), + ('及', '級'), + ('及', '岌'), + ('久', '久'), + ('久', '灸'), + ('久', '玖'), + ('久', '粂'), + ('久', '畝'), + ('久', '柩'), + ('久', '疚'), + ('老', '姥'), + ('老', '教'), + ('老', '孝'), + ('老', '考'), + ('老', '酵'), + ('老', '拷'), + ('老', '煮'), + ('老', '者'), + ('老', '暑'), + ('老', '曙'), + ('老', '渚'), + ('老', '緒'), + ('老', '署'), + ('老', '薯'), + ('老', '藷'), + ('老', '諸'), + ('老', '瀦'), + ('老', '猪'), + ('老', '著'), + ('老', '堵'), + ('老', '屠'), + ('老', '賭'), + ('老', '都'), + ('老', '箸'), + ('老', '鰭'), + ('老', '儲'), + ('老', '老'), + ('老', '偖'), + ('老', '咾'), + ('老', '哮'), + ('老', '嗜'), + ('老', '墸'), + ('老', '奢'), + ('老', '栲'), + ('老', '楮'), + ('老', '潴'), + ('老', '睹'), + ('老', '耆'), + ('老', '耄'), + ('老', '耋'), + ('老', '蓍'), + ('老', '蛯'), + ('老', '覩'), + ('老', '豬'), + ('老', '赭'), + ('老', '躇'), + ('老', '闍'), + ('心', '愛'), + ('心', '悪'), + ('心', '意'), + ('心', '慰'), + ('心', '隠'), + ('心', '怨'), + ('心', '応'), + ('心', '億'), + ('心', '憶'), + ('心', '臆'), + ('心', '恩'), + ('心', '穏'), + ('心', '患'), + ('心', '感'), + ('心', '憾'), + ('心', '忌'), + ('心', '急'), + ('心', '恐'), + ('心', '恭'), + ('心', '愚'), + ('心', '恵'), + ('心', '慶'), + ('心', '慧'), + ('心', '憩'), + ('心', '憲'), + ('心', '懸'), + ('心', '忽'), + ('心', '惚'), + ('心', '懇'), + ('心', '志'), + ('心', '思'), + ('心', '誌'), + ('心', '慈'), + ('心', '悉'), + ('心', '偲'), + ('心', '蕊'), + ('心', '惹'), + ('心', '愁'), + ('心', '恕'), + ('心', '擾'), + ('心', '心'), + ('心', '芯'), + ('心', '惣'), + ('心', '想'), + ('心', '窓'), + ('心', '総'), + ('心', '聡'), + ('心', '息'), + ('心', '怠'), + ('心', '態'), + ('心', '恥'), + ('心', '忠'), + ('心', '懲'), + ('心', '聴'), + ('心', '添'), + ('心', '怒'), + ('心', '徳'), + ('心', '忍'), + ('心', '認'), + ('心', '寧'), + ('心', '葱'), + ('心', '念'), + ('心', '捻'), + ('心', '悲'), + ('心', '泌'), + ('心', '秘'), + ('心', '必'), + ('心', '穂'), + ('心', '慕'), + ('心', '忘'), + ('心', '密'), + ('心', '蜜'), + ('心', '稔'), + ('心', '悶'), + ('心', '愈'), + ('心', '癒'), + ('心', '優'), + ('心', '悠'), + ('心', '憂'), + ('心', '慾'), + ('心', '慮'), + ('心', '恋'), + ('心', '惑'), + ('心', '偬'), + ('心', '唸'), + ('心', '噫'), + ('心', '嚀'), + ('心', '廳'), + ('心', '廰'), + ('心', '忝'), + ('心', '悳'), + ('心', '忿'), + ('心', '怎'), + ('心', '怱'), + ('心', '恚'), + ('心', '恁'), + ('心', '恷'), + ('心', '恣'), + ('心', '恙'), + ('心', '惡'), + ('心', '惠'), + ('心', '愆'), + ('心', '惷'), + ('心', '愡'), + ('心', '愍'), + ('心', '慇'), + ('心', '愨'), + ('心', '愿'), + ('心', '愬'), + ('心', '慂'), + ('心', '慙'), + ('心', '慫'), + ('心', '慝'), + ('心', '憙'), + ('心', '憖'), + ('心', '憇'), + ('心', '憊'), + ('心', '憑'), + ('心', '應'), + ('心', '懃'), + ('心', '懋'), + ('心', '懣'), + ('心', '懿'), + ('心', '戀'), + ('心', '撼'), + ('心', '曖'), + ('心', '棯'), + ('心', '樒'), + ('心', '櫁'), + ('心', '檍'), + ('心', '檸'), + ('心', '沁'), + ('心', '濘'), + ('心', '濾'), + ('心', '熄'), + ('心', '獰'), + ('心', '瑟'), + ('心', '痣'), + ('心', '瞹'), + ('心', '祕'), + ('心', '穗'), + ('心', '穩'), + ('心', '綛'), + ('心', '總'), + ('心', '聰'), + ('心', '聹'), + ('心', '聽'), + ('心', '腮'), + ('心', '荵'), + ('心', '蘂'), + ('心', '蟋'), + ('心', '謐'), + ('心', '軈'), + ('心', '轗'), + ('心', '鐚'), + ('心', '鑢'), + ('心', '隱'), + ('心', '靉'), + ('心', '顋'), + ('心', '鯰'), + ('心', '鰓'), + ('戈', '或'), + ('戈', '威'), + ('戈', '域'), + ('戈', '磯'), + ('戈', '越'), + ('戈', '俄'), + ('戈', '峨'), + ('戈', '我'), + ('戈', '蛾'), + ('戈', '餓'), + ('戈', '戒'), + ('戈', '械'), + ('戈', '感'), + ('戈', '憾'), + ('戈', '幾'), + ('戈', '機'), + ('戈', '畿'), + ('戈', '儀'), + ('戈', '戯'), + ('戈', '犠'), + ('戈', '義'), + ('戈', '蟻'), + ('戈', '議'), + ('戈', '戟'), + ('戈', '減'), + ('戈', '哉'), + ('戈', '栽'), + ('戈', '歳'), + ('戈', '裁'), + ('戈', '載'), + ('戈', '桟'), + ('戈', '残'), + ('戈', '識'), + ('戈', '戎'), + ('戈', '城'), + ('戈', '織'), + ('戈', '職'), + ('戈', '成'), + ('戈', '盛'), + ('戈', '誠'), + ('戈', '戚'), + ('戈', '戦'), + ('戈', '浅'), + ('戈', '繊'), + ('戈', '賎'), + ('戈', '践'), + ('戈', '臓'), + ('戈', '蔵'), + ('戈', '賊'), + ('戈', '戴'), + ('戈', '伐'), + ('戈', '筏'), + ('戈', '閥'), + ('戈', '蔑'), + ('戈', '戊'), + ('戈', '鵡'), + ('戈', '滅'), + ('戈', '茂'), + ('戈', '惑'), + ('戈', '咸'), + ('戈', '哦'), + ('戈', '喊'), + ('戈', '國'), + ('戈', '娥'), + ('戈', '孅'), + ('戈', '峩'), + ('戈', '嶬'), + ('戈', '幗'), + ('戈', '幟'), + ('戈', '懺'), + ('戈', '懴'), + ('戈', '戈'), + ('戈', '戉'), + ('戈', '戍'), + ('戈', '戌'), + ('戈', '戔'), + ('戈', '戛'), + ('戈', '戞'), + ('戈', '戡'), + ('戈', '截'), + ('戈', '戮'), + ('戈', '戰'), + ('戈', '戲'), + ('戈', '戳'), + ('戈', '找'), + ('戈', '撼'), + ('戈', '晟'), + ('戈', '曦'), + ('戈', '棧'), + ('戈', '槭'), + ('戈', '殘'), + ('戈', '殲'), + ('戈', '殱'), + ('戈', '淺'), + ('戈', '濺'), + ('戈', '熾'), + ('戈', '牋'), + ('戈', '犧'), + ('戈', '盞'), + ('戈', '礒'), + ('戈', '穢'), + ('戈', '筬'), + ('戈', '箋'), + ('戈', '箴'), + ('戈', '籤'), + ('戈', '籖'), + ('戈', '絨'), + ('戈', '綫'), + ('戈', '緘'), + ('戈', '縅'), + ('戈', '纖'), + ('戈', '纎'), + ('戈', '羲'), + ('戈', '膕'), + ('戈', '臟'), + ('戈', '臧'), + ('戈', '艤'), + ('戈', '莪'), + ('戈', '藏'), + ('戈', '襪'), + ('戈', '誡'), + ('戈', '譏'), + ('戈', '讖'), + ('戈', '戝'), + ('戈', '賤'), + ('戈', '贇'), + ('戈', '贓'), + ('戈', '踐'), + ('戈', '蹙'), + ('戈', '軾'), + ('戈', '轗'), + ('戈', '鉞'), + ('戈', '錢'), + ('戈', '錻'), + ('戈', '鍼'), + ('戈', '鐵'), + ('戈', '鐡'), + ('戈', '閾'), + ('戈', '韈'), + ('戈', '餞'), + ('戈', '饑'), + ('戈', '馘'), + ('戈', '鰔'), + ('戈', '鰄'), + ('戈', '鵝'), + ('戈', '鵞'), + ('戈', '鹹'), + ('戸', '芦'), + ('戸', '啓'), + ('戸', '肩'), + ('戸', '戸'), + ('戸', '雇'), + ('戸', '顧'), + ('戸', '所'), + ('戸', '扇'), + ('戸', '煽'), + ('戸', '肇'), + ('戸', '扉'), + ('戸', '偏'), + ('戸', '篇'), + ('戸', '編'), + ('戸', '遍'), + ('戸', '房'), + ('戸', '戻'), + ('戸', '涙'), + ('戸', '炉'), + ('戸', '唳'), + ('戸', '愴'), + ('戸', '扁'), + ('戸', '捩'), + ('戸', '搶'), + ('戸', '枦'), + ('戸', '滄'), + ('戸', '滬'), + ('戸', '粐'), + ('戸', '綮'), + ('戸', '綟'), + ('戸', '翩'), + ('戸', '舮'), + ('戸', '蝙'), + ('戸', '褊'), + ('戸', '諞'), + ('戸', '扈'), + ('戸', '鈩'), + ('戸', '騙'), + ('手', '俄'), + ('手', '峨'), + ('手', '我'), + ('手', '蛾'), + ('手', '餓'), + ('手', '看'), + ('手', '儀'), + ('手', '犠'), + ('手', '義'), + ('手', '蟻'), + ('手', '議'), + ('手', '挙'), + ('手', '撃'), + ('手', '拳'), + ('手', '手'), + ('手', '承'), + ('手', '掌'), + ('手', '摩'), + ('手', '拏'), + ('手', '拿'), + ('手', '挈'), + ('手', '掣'), + ('手', '搴'), + ('手', '摯'), + ('手', '擘'), + ('手', '擧'), + ('手', '攀'), + ('手', '攣'), + ('手', '欅'), + ('手', '襷'), + ('支', '伎'), + ('支', '岐'), + ('支', '妓'), + ('支', '技'), + ('支', '鼓'), + ('支', '支'), + ('支', '枝'), + ('支', '肢'), + ('支', '叟'), + ('支', '屐'), + ('支', '搜'), + ('支', '溲'), + ('支', '瞽'), + ('支', '翅'), + ('支', '艘'), + ('支', '跂'), + ('支', '皷'), + ('支', '鼕'), + ('攵', '液'), + ('攵', '改'), + ('攵', '各'), + ('攵', '敢'), + ('攵', '巌'), + ('攵', '救'), + ('攵', '教'), + ('攵', '驚'), + ('攵', '啓'), + ('攵', '敬'), + ('攵', '警'), + ('攵', '激'), + ('攵', '厳'), + ('攵', '故'), + ('攵', '攻'), + ('攵', '撒'), + ('攵', '散'), + ('攵', '孜'), + ('攵', '篠'), + ('攵', '赦'), + ('攵', '修'), + ('攵', '処'), + ('攵', '廠'), + ('攵', '条'), + ('攵', '数'), + ('攵', '政'), + ('攵', '整'), + ('攵', '致'), + ('攵', '徴'), + ('攵', '懲'), + ('攵', '敵'), + ('攵', '徹'), + ('攵', '撤'), + ('攵', '轍'), + ('攵', '冬'), + ('攵', '敦'), + ('攵', '敗'), + ('攵', '肇'), + ('攵', '繁'), + ('攵', '微'), + ('攵', '敏'), + ('攵', '敷'), + ('攵', '幣'), + ('攵', '弊'), + ('攵', '蔽'), + ('攵', '瞥'), + ('攵', '倣'), + ('攵', '放'), + ('攵', '牧'), + ('攵', '枚'), + ('攵', '薮'), + ('攵', '悠'), + ('攵', '做'), + ('攵', '傚'), + ('攵', '傲'), + ('攵', '儼'), + ('攵', '厰'), + ('攵', '嗷'), + ('攵', '嚴'), + ('攵', '夂'), + ('攵', '嫩'), + ('攵', '巖'), + ('攵', '幤'), + ('攵', '愍'), + ('攵', '攴'), + ('攵', '攵'), + ('攵', '攷'), + ('攵', '收'), + ('攵', '攸'), + ('攵', '畋'), + ('攵', '效'), + ('攵', '敖'), + ('攵', '敕'), + ('攵', '敍'), + ('攵', '敘'), + ('攵', '敞'), + ('攵', '敝'), + ('攵', '敲'), + ('攵', '數'), + ('攵', '斂'), + ('攵', '斃'), + ('攵', '變'), + ('攵', '暾'), + ('攵', '暼'), + ('攵', '條'), + ('攵', '橄'), + ('攵', '檠'), + ('攵', '檄'), + ('攵', '滌'), + ('攵', '澂'), + ('攵', '瀲'), + ('攵', '熬'), + ('攵', '燉'), + ('攵', '倏'), + ('攵', '瞰'), + ('攵', '竅'), + ('攵', '筱'), + ('攵', '籔'), + ('攵', '絛'), + ('攵', '綮'), + ('攵', '緻'), + ('攵', '繖'), + ('攵', '脩'), + ('攵', '蓚'), + ('攵', '藪'), + ('攵', '薇'), + ('攵', '螯'), + ('攵', '螫'), + ('攵', '覈'), + ('攵', '贅'), + ('攵', '跋'), + ('攵', '遨'), + ('攵', '邀'), + ('攵', '釐'), + ('攵', '鐓'), + ('攵', '霰'), + ('攵', '髮'), + ('攵', '魃'), + ('攵', '鰲'), + ('攵', '鶩'), + ('攵', '黴'), + ('攵', '黻'), + ('攵', '鼇'), + ('攵', '鼈'), + ('文', '蚊'), + ('文', '済'), + ('文', '斎'), + ('文', '剤'), + ('文', '斉'), + ('文', '対'), + ('文', '斑'), + ('文', '斐'), + ('文', '斌'), + ('文', '文'), + ('文', '紋'), + ('文', '吝'), + ('文', '斈'), + ('文', '悋'), + ('文', '憫'), + ('文', '旻'), + ('文', '紊'), + ('文', '緕'), + ('文', '虔'), + ('文', '贇'), + ('文', '閔'), + ('文', '顏'), + ('文', '馼'), + ('斗', '斡'), + ('斗', '科'), + ('斗', '魁'), + ('斗', '斜'), + ('斗', '図'), + ('斗', '斗'), + ('斗', '料'), + ('斗', '抖'), + ('斗', '斛'), + ('斗', '斟'), + ('斗', '槹'), + ('斗', '槲'), + ('斗', '萪'), + ('斗', '蚪'), + ('斗', '蝌'), + ('斤', '蛎'), + ('斤', '岳'), + ('斤', '祈'), + ('斤', '丘'), + ('斤', '斤'), + ('斤', '欣'), + ('斤', '芹'), + ('斤', '近'), + ('斤', '駈'), + ('斤', '后'), + ('斤', '垢'), + ('斤', '斬'), + ('斤', '暫'), + ('斤', '斯'), + ('斤', '質'), + ('斤', '循'), + ('斤', '楯'), + ('斤', '盾'), + ('斤', '所'), + ('斤', '匠'), + ('斤', '新'), + ('斤', '薪'), + ('斤', '誓'), + ('斤', '逝'), + ('斤', '斥'), + ('斤', '析'), + ('斤', '折'), + ('斤', '漸'), + ('斤', '訴'), + ('斤', '断'), + ('斤', '哲'), + ('斤', '砺'), + ('斤', '栃'), + ('斤', '遁'), + ('斤', '派'), + ('斤', '噺'), + ('斤', '鋲'), + ('斤', '浜'), + ('斤', '斧'), + ('斤', '兵'), + ('斤', '脈'), + ('斤', '励'), + ('斤', '厮'), + ('斤', '听'), + ('斤', '嘶'), + ('斤', '圻'), + ('斤', '塹'), + ('斤', '嶄'), + ('斤', '廝'), + ('斤', '忻'), + ('斤', '慙'), + ('斤', '慚'), + ('斤', '拆'), + ('斤', '掀'), + ('斤', '撕'), + ('斤', '斫'), + ('斤', '斷'), + ('斤', '晢'), + ('斤', '晰'), + ('斤', '柝'), + ('斤', '梹'), + ('斤', '槧'), + ('斤', '沂'), + ('斤', '泝'), + ('斤', '浙'), + ('斤', '淅'), + ('斤', '皙'), + ('斤', '蚯'), + ('斤', '蜥'), + ('斤', '躓'), + ('斤', '邱'), + ('斤', '釿'), + ('斤', '鏨'), + ('方', '於'), + ('方', '旗'), + ('方', '激'), + ('方', '施'), + ('方', '旋'), + ('方', '族'), + ('方', '敷'), + ('方', '倣'), + ('方', '放'), + ('方', '方'), + ('方', '芳'), + ('方', '訪'), + ('方', '傍'), + ('方', '坊'), + ('方', '妨'), + ('方', '房'), + ('方', '紡'), + ('方', '肪'), + ('方', '防'), + ('方', '遊'), + ('方', '旅'), + ('方', '傲'), + ('方', '唹'), + ('方', '嗷'), + ('方', '嗾'), + ('方', '圀'), + ('方', '彷'), + ('方', '徼'), + ('方', '敖'), + ('方', '旃'), + ('方', '旆'), + ('方', '旁'), + ('方', '旄'), + ('方', '旌'), + ('方', '旒'), + ('方', '旛'), + ('方', '旙'), + ('方', '枋'), + ('方', '楞'), + ('方', '榜'), + ('方', '檄'), + ('方', '淤'), + ('方', '游'), + ('方', '滂'), + ('方', '熬'), + ('方', '磅'), + ('方', '竅'), + ('方', '簇'), + ('方', '籏'), + ('方', '膀'), + ('方', '膂'), + ('方', '舫'), + ('方', '葹'), + ('方', '蒡'), + ('方', '蔟'), + ('方', '蝣'), + ('方', '螯'), + ('方', '覈'), + ('方', '謗'), + ('方', '贅'), + ('方', '遨'), + ('方', '邀'), + ('方', '邊'), + ('方', '錺'), + ('方', '鏃'), + ('方', '閼'), + ('方', '餝'), + ('方', '髣'), + ('方', '魴'), + ('方', '鯲'), + ('方', '鰲'), + ('方', '鼇'), + ('无', '僭'), + ('无', '廐'), + ('无', '无'), + ('无', '旡'), + ('无', '曁'), + ('无', '漑'), + ('无', '潛'), + ('无', '簪'), + ('无', '蠶'), + ('无', '譖'), + ('日', '旭'), + ('日', '斡'), + ('日', '絢'), + ('日', '暗'), + ('日', '闇'), + ('日', '意'), + ('日', '易'), + ('日', '稲'), + ('日', '韻'), + ('日', '鰻'), + ('日', '影'), + ('日', '映'), + ('日', '曳'), + ('日', '洩'), + ('日', '謁'), + ('日', '厭'), + ('日', '堰'), + ('日', '奄'), + ('日', '宴'), + ('日', '掩'), + ('日', '焔'), + ('日', '艶'), + ('日', '押'), + ('日', '旺'), + ('日', '横'), + ('日', '億'), + ('日', '憶'), + ('日', '臆'), + ('日', '温'), + ('日', '音'), + ('日', '暇'), + ('日', '晦'), + ('日', '碍'), + ('日', '馨'), + ('日', '垣'), + ('日', '喝'), + ('日', '渇'), + ('日', '葛'), + ('日', '褐'), + ('日', '鴨'), + ('日', '萱'), + ('日', '乾'), + ('日', '幹'), + ('日', '柑'), + ('日', '桓'), + ('日', '澗'), + ('日', '簡'), + ('日', '翰'), + ('日', '諌'), + ('日', '間'), + ('日', '陥'), + ('日', '韓'), + ('日', '旧'), + ('日', '境'), + ('日', '鏡'), + ('日', '響'), + ('日', '暁'), + ('日', '曲'), + ('日', '隅'), + ('日', '沓'), + ('日', '勲'), + ('日', '薫'), + ('日', '掲'), + ('日', '景'), + ('日', '稽'), + ('日', '詣'), + ('日', '戟'), + ('日', '隙'), + ('日', '喧'), + ('日', '顕'), + ('日', '厚'), + ('日', '恒'), + ('日', '昂'), + ('日', '晃'), + ('日', '更'), + ('日', '梗'), + ('日', '甲'), + ('日', '硬'), + ('日', '香'), + ('日', '甑'), + ('日', '坤'), + ('日', '婚'), + ('日', '昏'), + ('日', '昆'), + ('日', '混'), + ('日', '最'), + ('日', '榊'), + ('日', '昨'), + ('日', '錯'), + ('日', '匙'), + ('日', '撮'), + ('日', '晒'), + ('日', '暫'), + ('日', '指'), + ('日', '旨'), + ('日', '脂'), + ('日', '賜'), + ('日', '児'), + ('日', '時'), + ('日', '蒔'), + ('日', '識'), + ('日', '軸'), + ('日', '湿'), + ('日', '煮'), + ('日', '者'), + ('日', '借'), + ('日', '錫'), + ('日', '種'), + ('日', '腫'), + ('日', '重'), + ('日', '春'), + ('日', '旬'), + ('日', '殉'), + ('日', '暑'), + ('日', '曙'), + ('日', '渚'), + ('日', '緒'), + ('日', '署'), + ('日', '書'), + ('日', '薯'), + ('日', '藷'), + ('日', '諸'), + ('日', '傷'), + ('日', '唱'), + ('日', '嘗'), + ('日', '娼'), + ('日', '彰'), + ('日', '昇'), + ('日', '昌'), + ('日', '昭'), + ('日', '晶'), + ('日', '樟'), + ('日', '照'), + ('日', '章'), + ('日', '菖'), + ('日', '衝'), + ('日', '鍾'), + ('日', '障'), + ('日', '場'), + ('日', '織'), + ('日', '職'), + ('日', '伸'), + ('日', '晋'), + ('日', '申'), + ('日', '神'), + ('日', '紳'), + ('日', '椙'), + ('日', '是'), + ('日', '星'), + ('日', '晴'), + ('日', '醒'), + ('日', '惜'), + ('日', '昔'), + ('日', '籍'), + ('日', '宣'), + ('日', '潜'), + ('日', '噌'), + ('日', '措'), + ('日', '曾'), + ('日', '曽'), + ('日', '僧'), + ('日', '層'), + ('日', '捜'), + ('日', '挿'), + ('日', '早'), + ('日', '曹'), + ('日', '槽'), + ('日', '漕'), + ('日', '糟'), + ('日', '草'), + ('日', '遭'), + ('日', '増'), + ('日', '憎'), + ('日', '贈'), + ('日', '替'), + ('日', '醍'), + ('日', '題'), + ('日', '卓'), + ('日', '但'), + ('日', '坦'), + ('日', '担'), + ('日', '旦'), + ('日', '胆'), + ('日', '壇'), + ('日', '暖'), + ('日', '檀'), + ('日', '智'), + ('日', '宙'), + ('日', '抽'), + ('日', '昼'), + ('日', '瀦'), + ('日', '猪'), + ('日', '著'), + ('日', '暢'), + ('日', '朝'), + ('日', '潮'), + ('日', '腸'), + ('日', '陳'), + ('日', '椿'), + ('日', '紬'), + ('日', '堤'), + ('日', '提'), + ('日', '笛'), + ('日', '典'), + ('日', '堵'), + ('日', '屠'), + ('日', '賭'), + ('日', '都'), + ('日', '凍'), + ('日', '悼'), + ('日', '東'), + ('日', '棟'), + ('日', '湯'), + ('日', '董'), + ('日', '蕩'), + ('日', '踏'), + ('日', '働'), + ('日', '動'), + ('日', '得'), + ('日', '届'), + ('日', '曇'), + ('日', '日'), + ('日', '濃'), + ('日', '膿'), + ('日', '農'), + ('日', '曝'), + ('日', '漠'), + ('日', '爆'), + ('日', '莫'), + ('日', '箸'), + ('日', '晩'), + ('日', '廟'), + ('日', '鰭'), + ('日', '普'), + ('日', '譜'), + ('日', '復'), + ('日', '腹'), + ('日', '複'), + ('日', '覆'), + ('日', '便'), + ('日', '鞭'), + ('日', '募'), + ('日', '墓'), + ('日', '慕'), + ('日', '暮'), + ('日', '萌'), + ('日', '豊'), + ('日', '帽'), + ('日', '暴'), + ('日', '冒'), + ('日', '幌'), + ('日', '昧'), + ('日', '幕'), + ('日', '膜'), + ('日', '慢'), + ('日', '漫'), + ('日', '蔓'), + ('日', '岬'), + ('日', '冥'), + ('日', '明'), + ('日', '盟'), + ('日', '摸'), + ('日', '模'), + ('日', '儲'), + ('日', '薬'), + ('日', '油'), + ('日', '柚'), + ('日', '由'), + ('日', '揚'), + ('日', '曜'), + ('日', '楊'), + ('日', '陽'), + ('日', '欄'), + ('日', '蘭'), + ('日', '履'), + ('日', '僚'), + ('日', '寮'), + ('日', '療'), + ('日', '瞭'), + ('日', '糧'), + ('日', '遼'), + ('日', '量'), + ('日', '暦'), + ('日', '煉'), + ('日', '練'), + ('日', '錬'), + ('日', '魯'), + ('日', '櫓'), + ('日', '亘'), + ('日', '亰'), + ('日', '亶'), + ('日', '倡'), + ('日', '倬'), + ('日', '偃'), + ('日', '會'), + ('日', '偈'), + ('日', '偖'), + ('日', '僭'), + ('日', '僣'), + ('日', '竸'), + ('日', '冪'), + ('日', '剔'), + ('日', '勗'), + ('日', '曼'), + ('日', '啅'), + ('日', '嗜'), + ('日', '嘲'), + ('日', '噫'), + ('日', '囎'), + ('日', '塲'), + ('日', '塒'), + ('日', '墹'), + ('日', '墸'), + ('日', '壓'), + ('日', '壜'), + ('日', '奢'), + ('日', '妲'), + ('日', '媼'), + ('日', '嫺'), + ('日', '寔'), + ('日', '寞'), + ('日', '崑'), + ('日', '嶂'), + ('日', '幎'), + ('日', '幔'), + ('日', '幟'), + ('日', '廸'), + ('日', '徇'), + ('日', '怛'), + ('日', '恂'), + ('日', '悍'), + ('日', '惠'), + ('日', '慍'), + ('日', '惷'), + ('日', '惺'), + ('日', '愃'), + ('日', '愎'), + ('日', '慇'), + ('日', '慯'), + ('日', '慱'), + ('日', '慟'), + ('日', '憬'), + ('日', '抻'), + ('日', '捍'), + ('日', '捏'), + ('日', '掉'), + ('日', '揀'), + ('日', '搨'), + ('日', '摶'), + ('日', '撩'), + ('日', '擅'), + ('日', '旱'), + ('日', '杲'), + ('日', '昊'), + ('日', '昃'), + ('日', '旻'), + ('日', '杳'), + ('日', '昵'), + ('日', '昶'), + ('日', '昴'), + ('日', '昜'), + ('日', '晏'), + ('日', '晄'), + ('日', '晉'), + ('日', '晁'), + ('日', '晞'), + ('日', '晝'), + ('日', '晤'), + ('日', '晧'), + ('日', '晨'), + ('日', '晟'), + ('日', '晢'), + ('日', '晰'), + ('日', '暃'), + ('日', '暈'), + ('日', '暎'), + ('日', '暉'), + ('日', '暄'), + ('日', '暘'), + ('日', '暝'), + ('日', '曁'), + ('日', '暹'), + ('日', '曉'), + ('日', '暾'), + ('日', '暼'), + ('日', '曄'), + ('日', '暸'), + ('日', '曖'), + ('日', '曚'), + ('日', '曠'), + ('日', '昿'), + ('日', '曦'), + ('日', '曩'), + ('日', '曷'), + ('日', '檜'), + ('日', '桿'), + ('日', '棍'), + ('日', '棔'), + ('日', '棹'), + ('日', '椣'), + ('日', '楮'), + ('日', '榲'), + ('日', '榻'), + ('日', '榠'), + ('日', '槫'), + ('日', '樶'), + ('日', '橸'), + ('日', '檍'), + ('日', '歇'), + ('日', '殤'), + ('日', '汨'), + ('日', '洵'), + ('日', '涅'), + ('日', '淹'), + ('日', '滉'), + ('日', '溲'), + ('日', '溟'), + ('日', '潛'), + ('日', '濳'), + ('日', '潭'), + ('日', '潦'), + ('日', '澣'), + ('日', '濕'), + ('日', '瀑'), + ('日', '瀚'), + ('日', '潴'), + ('日', '瀾'), + ('日', '焜'), + ('日', '煦'), + ('日', '煬'), + ('日', '熏'), + ('日', '燻'), + ('日', '熾'), + ('日', '燎'), + ('日', '爛'), + ('日', '狎'), + ('日', '猖'), + ('日', '猩'), + ('日', '獏'), + ('日', '獪'), + ('日', '璋'), + ('日', '瓸'), + ('日', '甎'), + ('日', '甦'), + ('日', '疸'), + ('日', '瘍'), + ('日', '瘟'), + ('日', '瘴'), + ('日', '癇'), + ('日', '盪'), + ('日', '蘯'), + ('日', '睹'), + ('日', '瞑'), + ('日', '碣'), + ('日', '磚'), + ('日', '禪'), + ('日', '禮'), + ('日', '禺'), + ('日', '稈'), + ('日', '穗'), + ('日', '竭'), + ('日', '筍'), + ('日', '箟'), + ('日', '篳'), + ('日', '簪'), + ('日', '簟'), + ('日', '粳'), + ('日', '糢'), + ('日', '絏'), + ('日', '綽'), + ('日', '緡'), + ('日', '縉'), + ('日', '縵'), + ('日', '繝'), + ('日', '繚'), + ('日', '繪'), + ('日', '罎'), + ('日', '罨'), + ('日', '罩'), + ('日', '羃'), + ('日', '羯'), + ('日', '羶'), + ('日', '耆'), + ('日', '聘'), + ('日', '胛'), + ('日', '胄'), + ('日', '腆'), + ('日', '腥'), + ('日', '腴'), + ('日', '膃'), + ('日', '膊'), + ('日', '膓'), + ('日', '膾'), + ('日', '臈'), + ('日', '舳'), + ('日', '艘'), + ('日', '艚'), + ('日', '艪'), + ('日', '荀'), + ('日', '菴'), + ('日', '菎'), + ('日', '萸'), + ('日', '萬'), + ('日', '蓍'), + ('日', '蓴'), + ('日', '蕈'), + ('日', '薀'), + ('日', '薈'), + ('日', '藉'), + ('日', '藐'), + ('日', '藕'), + ('日', '藹'), + ('日', '蘊'), + ('日', '蘰'), + ('日', '蚰'), + ('日', '蜴'), + ('日', '蝎'), + ('日', '蝮'), + ('日', '蝪'), + ('日', '螟'), + ('日', '蟇'), + ('日', '蟆'), + ('日', '蠍'), + ('日', '蠢'), + ('日', '蠶'), + ('日', '衵'), + ('日', '袒'), + ('日', '裼'), + ('日', '褞'), + ('日', '襴'), + ('日', '覃'), + ('日', '覩'), + ('日', '觴'), + ('日', '詢'), + ('日', '諳'), + ('日', '諠'), + ('日', '諛'), + ('日', '謾'), + ('日', '謨'), + ('日', '譖'), + ('日', '譛'), + ('日', '譚'), + ('日', '豬'), + ('日', '貘'), + ('日', '赭'), + ('日', '躇'), + ('日', '軆'), + ('日', '輹'), + ('日', '迪'), + ('日', '遏'), + ('日', '醋'), + ('日', '醴'), + ('日', '釉'), + ('日', '鏝'), + ('日', '鐔'), + ('日', '鐐'), + ('日', '閘'), + ('日', '閹'), + ('日', '闍'), + ('日', '闌'), + ('日', '隰'), + ('日', '靄'), + ('日', '靨'), + ('日', '靼'), + ('日', '鞜'), + ('日', '鞨'), + ('日', '竟'), + ('日', '韶'), + ('日', '韵'), + ('日', '顆'), + ('日', '顫'), + ('日', '顯'), + ('日', '饂'), + ('日', '饅'), + ('日', '馥'), + ('日', '駻'), + ('日', '騁'), + ('日', '驀'), + ('日', '體'), + ('日', '髷'), + ('日', '鬘'), + ('日', '魘'), + ('日', '鮨'), + ('日', '鯣'), + ('日', '鯤'), + ('日', '鰆'), + ('日', '鰒'), + ('日', '鰛'), + ('日', '鱆'), + ('日', '鱠'), + ('日', '鱧'), + ('日', '鵲'), + ('日', '鶇'), + ('日', '鷯'), + ('日', '黯'), + ('日', '黶'), + ('日', '鼬'), + ('曰', '倬'), + ('曰', '嶂'), + ('曰', '掉'), + ('曰', '曰'), + ('曰', '曵'), + ('曰', '曷'), + ('曰', '潭'), + ('曰', '璋'), + ('曰', '瘴'), + ('曰', '簟'), + ('曰', '蕈'), + ('曰', '譚'), + ('曰', '鐔'), + ('月', '胃'), + ('月', '謂'), + ('月', '育'), + ('月', '郁'), + ('月', '胤'), + ('月', '厭'), + ('月', '臆'), + ('月', '骸'), + ('月', '角'), + ('月', '滑'), + ('月', '肝'), + ('月', '期'), + ('月', '脚'), + ('月', '胸'), + ('月', '脅'), + ('月', '筋'), + ('月', '屑'), + ('月', '熊'), + ('月', '月'), + ('月', '絹'), + ('月', '肩'), + ('月', '湖'), + ('月', '糊'), + ('月', '股'), + ('月', '胡'), + ('月', '瑚'), + ('月', '醐'), + ('月', '肯'), + ('月', '肱'), + ('月', '腔'), + ('月', '膏'), + ('月', '腰'), + ('月', '骨'), + ('月', '肴'), + ('月', '削'), + ('月', '朔'), + ('月', '鯖'), + ('月', '錆'), + ('月', '撒'), + ('月', '散'), + ('月', '肢'), + ('月', '脂'), + ('月', '腫'), + ('月', '襲'), + ('月', '勝'), + ('月', '哨'), + ('月', '宵'), + ('月', '梢'), + ('月', '消'), + ('月', '硝'), + ('月', '肖'), + ('月', '鞘'), + ('月', '情'), + ('月', '腎'), + ('月', '随'), + ('月', '髄'), + ('月', '晴'), + ('月', '清'), + ('月', '精'), + ('月', '請'), + ('月', '青'), + ('月', '静'), + ('月', '脆'), + ('月', '脊'), + ('月', '煎'), + ('月', '箭'), + ('月', '腺'), + ('月', '前'), + ('月', '膳'), + ('月', '塑'), + ('月', '遡'), + ('月', '臓'), + ('月', '揃'), + ('月', '堕'), + ('月', '惰'), + ('月', '楕'), + ('月', '態'), + ('月', '胎'), + ('月', '腿'), + ('月', '瀧'), + ('月', '蛸'), + ('月', '脱'), + ('月', '棚'), + ('月', '胆'), + ('月', '寵'), + ('月', '朝'), + ('月', '潮'), + ('月', '脹'), + ('月', '腸'), + ('月', '朕'), + ('月', '徹'), + ('月', '撤'), + ('月', '轍'), + ('月', '藤'), + ('月', '謄'), + ('月', '騰'), + ('月', '胴'), + ('月', '瀞'), + ('月', '豚'), + ('月', '能'), + ('月', '脳'), + ('月', '膿'), + ('月', '覇'), + ('月', '背'), + ('月', '肺'), + ('月', '肌'), + ('月', '罷'), + ('月', '肥'), + ('月', '膝'), + ('月', '肘'), + ('月', '廟'), + ('月', '膚'), + ('月', '服'), + ('月', '腹'), + ('月', '崩'), + ('月', '朋'), + ('月', '胞'), + ('月', '萌'), + ('月', '鵬'), + ('月', '望'), + ('月', '肪'), + ('月', '膨'), + ('月', '膜'), + ('月', '鮪'), + ('月', '脈'), + ('月', '婿'), + ('月', '明'), + ('月', '盟'), + ('月', '靖'), + ('月', '愉'), + ('月', '愈'), + ('月', '癒'), + ('月', '諭'), + ('月', '輸'), + ('月', '宥'), + ('月', '有'), + ('月', '龍'), + ('月', '朗'), + ('月', '聾'), + ('月', '肋'), + ('月', '賄'), + ('月', '脇'), + ('月', '腕'), + ('月', '侑'), + ('月', '倩'), + ('月', '偸'), + ('月', '兪'), + ('月', '冑'), + ('月', '冕'), + ('月', '剪'), + ('月', '喟'), + ('月', '喩'), + ('月', '嘲'), + ('月', '囿'), + ('月', '堋'), + ('月', '墮'), + ('月', '壓'), + ('月', '壟'), + ('月', '壻'), + ('月', '娟'), + ('月', '峭'), + ('月', '弸'), + ('月', '悁'), + ('月', '悄'), + ('月', '愬'), + ('月', '捐'), + ('月', '揄'), + ('月', '擶'), + ('月', '擺'), + ('月', '朏'), + ('月', '朖'), + ('月', '朞'), + ('月', '朦'), + ('月', '朧'), + ('月', '霸'), + ('月', '楜'), + ('月', '楡'), + ('月', '榾'), + ('月', '槊'), + ('月', '橢'), + ('月', '涓'), + ('月', '淆'), + ('月', '渭'), + ('月', '渝'), + ('月', '溯'), + ('月', '滕'), + ('月', '潸'), + ('月', '瀛'), + ('月', '燗'), + ('月', '狷'), + ('月', '猜'), + ('月', '猾'), + ('月', '瑜'), + ('月', '瓏'), + ('月', '瘉'), + ('月', '瘠'), + ('月', '睛'), + ('月', '硼'), + ('月', '磆'), + ('月', '稍'), + ('月', '箙'), + ('月', '籠'), + ('月', '籐'), + ('月', '籘'), + ('月', '縢'), + ('月', '繃'), + ('月', '繖'), + ('月', '羂'), + ('月', '羆'), + ('月', '羸'), + ('月', '翦'), + ('月', '肛'), + ('月', '肓'), + ('月', '肚'), + ('月', '肭'), + ('月', '冐'), + ('月', '肬'), + ('月', '胛'), + ('月', '胥'), + ('月', '胙'), + ('月', '胝'), + ('月', '胄'), + ('月', '胚'), + ('月', '胖'), + ('月', '脉'), + ('月', '胯'), + ('月', '胱'), + ('月', '脛'), + ('月', '脩'), + ('月', '脣'), + ('月', '脯'), + ('月', '腋'), + ('月', '隋'), + ('月', '腆'), + ('月', '脾'), + ('月', '腓'), + ('月', '腑'), + ('月', '胼'), + ('月', '腱'), + ('月', '腮'), + ('月', '腥'), + ('月', '腦'), + ('月', '腴'), + ('月', '膃'), + ('月', '膈'), + ('月', '膊'), + ('月', '膀'), + ('月', '膂'), + ('月', '膠'), + ('月', '膕'), + ('月', '膤'), + ('月', '膣'), + ('月', '腟'), + ('月', '膓'), + ('月', '膩'), + ('月', '膰'), + ('月', '膵'), + ('月', '膾'), + ('月', '膸'), + ('月', '膽'), + ('月', '臀'), + ('月', '臂'), + ('月', '膺'), + ('月', '臉'), + ('月', '臍'), + ('月', '臑'), + ('月', '臙'), + ('月', '臘'), + ('月', '臈'), + ('月', '臚'), + ('月', '臟'), + ('月', '菁'), + ('月', '萠'), + ('月', '葫'), + ('月', '蘢'), + ('月', '蜻'), + ('月', '蝟'), + ('月', '蝴'), + ('月', '蝓'), + ('月', '覦'), + ('月', '誚'), + ('月', '贏'), + ('月', '趙'), + ('月', '踰'), + ('月', '蹐'), + ('月', '逍'), + ('月', '逾'), + ('月', '遯'), + ('月', '隨'), + ('月', '酳'), + ('月', '銷'), + ('月', '鍮'), + ('月', '陏'), + ('月', '隴'), + ('月', '霄'), + ('月', '霰'), + ('月', '靜'), + ('月', '餬'), + ('月', '骭'), + ('月', '骰'), + ('月', '骼'), + ('月', '髀'), + ('月', '髏'), + ('月', '髑'), + ('月', '髓'), + ('月', '體'), + ('月', '魘'), + ('月', '鮹'), + ('月', '鵑'), + ('月', '鶻'), + ('月', '鶺'), + ('月', '龕'), + ('木', '梓'), + ('木', '案'), + ('木', '杏'), + ('木', '椅'), + ('木', '欝'), + ('木', '栄'), + ('木', '榎'), + ('木', '横'), + ('木', '桶'), + ('木', '果'), + ('木', '架'), + ('木', '禾'), + ('木', '菓'), + ('木', '課'), + ('木', '械'), + ('木', '概'), + ('木', '柿'), + ('木', '格'), + ('木', '核'), + ('木', '楽'), + ('木', '樫'), + ('木', '橿'), + ('木', '梶'), + ('木', '椛'), + ('木', '樺'), + ('木', '株'), + ('木', '栢'), + ('木', '柑'), + ('木', '桓'), + ('木', '棺'), + ('木', '諌'), + ('木', '閑'), + ('木', '机'), + ('木', '棋'), + ('木', '棄'), + ('木', '機'), + ('木', '桔'), + ('木', '橘'), + ('木', '杵'), + ('木', '休'), + ('木', '朽'), + ('木', '渠'), + ('木', '橋'), + ('木', '業'), + ('木', '極'), + ('木', '桐'), + ('木', '禁'), + ('木', '襟'), + ('木', '櫛'), + ('木', '栗'), + ('木', '繰'), + ('木', '桑'), + ('木', '桂'), + ('木', '桁'), + ('木', '傑'), + ('木', '検'), + ('木', '権'), + ('木', '枯'), + ('木', '梧'), + ('木', '檎'), + ('木', '杭'), + ('木', '校'), + ('木', '梗'), + ('木', '構'), + ('木', '耕'), + ('木', '困'), + ('木', '根'), + ('木', '梱'), + ('木', '査'), + ('木', '彩'), + ('木', '採'), + ('木', '栽'), + ('木', '采'), + ('木', '菜'), + ('木', '材'), + ('木', '榊'), + ('木', '柵'), + ('木', '策'), + ('木', '桜'), + ('木', '札'), + ('木', '殺'), + ('木', '雑'), + ('木', '桟'), + ('木', '刺'), + ('木', '枝'), + ('木', '漆'), + ('木', '篠'), + ('木', '柴'), + ('木', '杓'), + ('木', '朱'), + ('木', '殊'), + ('木', '珠'), + ('木', '樹'), + ('木', '集'), + ('木', '柔'), + ('木', '術'), + ('木', '述'), + ('木', '楯'), + ('木', '床'), + ('木', '松'), + ('木', '梢'), + ('木', '樟'), + ('木', '樵'), + ('木', '湘'), + ('木', '条'), + ('木', '杖'), + ('木', '植'), + ('木', '新'), + ('木', '森'), + ('木', '榛'), + ('木', '深'), + ('木', '薪'), + ('木', '親'), + ('木', '枢'), + ('木', '杉'), + ('木', '椙'), + ('木', '整'), + ('木', '棲'), + ('木', '栖'), + ('木', '析'), + ('木', '籍'), + ('木', '栓'), + ('木', '栴'), + ('木', '染'), + ('木', '楚'), + ('木', '疎'), + ('木', '礎'), + ('木', '宋'), + ('木', '想'), + ('木', '操'), + ('木', '巣'), + ('木', '槍'), + ('木', '槽'), + ('木', '燥'), + ('木', '相'), + ('木', '藻'), + ('木', '霜'), + ('木', '束'), + ('木', '速'), + ('木', '村'), + ('木', '柁'), + ('木', '楕'), + ('木', '体'), + ('木', '棚'), + ('木', '樽'), + ('木', '探'), + ('木', '檀'), + ('木', '築'), + ('木', '茶'), + ('木', '柱'), + ('木', '樗'), + ('木', '喋'), + ('木', '牒'), + ('木', '蝶'), + ('木', '諜'), + ('木', '勅'), + ('木', '陳'), + ('木', '椎'), + ('木', '槌'), + ('木', '栂'), + ('木', '槻'), + ('木', '柘'), + ('木', '椿'), + ('木', '梯'), + ('木', '塗'), + ('木', '杜'), + ('木', '途'), + ('木', '凍'), + ('木', '東'), + ('木', '桃'), + ('木', '梼'), + ('木', '棟'), + ('木', '栃'), + ('木', '橡'), + ('木', '椴'), + ('木', '楢'), + ('木', '楠'), + ('木', '埜'), + ('木', '杷'), + ('木', '杯'), + ('木', '媒'), + ('木', '梅'), + ('木', '楳'), + ('木', '煤'), + ('木', '柏'), + ('木', '箱'), + ('木', '櫨'), + ('木', '鉢'), + ('木', '噺'), + ('木', '板'), + ('木', '樋'), + ('木', '枇'), + ('木', '柊'), + ('木', '膝'), + ('木', '桧'), + ('木', '標'), + ('木', '彬'), + ('木', '楓'), + ('木', '焚'), + ('木', '柄'), + ('木', '保'), + ('木', '呆'), + ('木', '某'), + ('木', '棒'), + ('木', '謀'), + ('木', '朴'), + ('木', '本'), + ('木', '摩'), + ('木', '磨'), + ('木', '魔'), + ('木', '麻'), + ('木', '妹'), + ('木', '昧'), + ('木', '枚'), + ('木', '槙'), + ('木', '枕'), + ('木', '柾'), + ('木', '桝'), + ('木', '抹'), + ('木', '末'), + ('木', '沫'), + ('木', '麿'), + ('木', '味'), + ('木', '未'), + ('木', '魅'), + ('木', '椋'), + ('木', '棉'), + ('木', '模'), + ('木', '耗'), + ('木', '木'), + ('木', '杢'), + ('木', '薬'), + ('木', '柳'), + ('木', '柚'), + ('木', '楊'), + ('木', '様'), + ('木', '葉'), + ('木', '裸'), + ('木', '来'), + ('木', '莱'), + ('木', '頼'), + ('木', '欄'), + ('木', '蘭'), + ('木', '李'), + ('木', '梨'), + ('木', '梁'), + ('木', '林'), + ('木', '淋'), + ('木', '琳'), + ('木', '暦'), + ('木', '歴'), + ('木', '煉'), + ('木', '練'), + ('木', '錬'), + ('木', '櫓'), + ('木', '楼'), + ('木', '榔'), + ('木', '麓'), + ('木', '枠'), + ('木', '藁'), + ('木', '椀'), + ('木', '侏'), + ('木', '來'), + ('木', '凩'), + ('木', '刹'), + ('木', '剌'), + ('木', '剿'), + ('木', '勦'), + ('木', '喇'), + ('木', '嗽'), + ('木', '嘛'), + ('木', '噤'), + ('木', '噪'), + ('木', '囃'), + ('木', '堡'), + ('木', '梦'), + ('木', '夥'), + ('木', '婪'), + ('木', '嫩'), + ('木', '嫻'), + ('木', '嬾'), + ('木', '孀'), + ('木', '麼'), + ('木', '廂'), + ('木', '弑'), + ('木', '彙'), + ('木', '徠'), + ('木', '恷'), + ('木', '悃'), + ('木', '悚'), + ('木', '慄'), + ('木', '憖'), + ('木', '懆'), + ('木', '懋'), + ('木', '懶'), + ('木', '揀'), + ('木', '揉'), + ('木', '攀'), + ('木', '擽'), + ('木', '敕'), + ('木', '杲'), + ('木', '杳'), + ('木', '晰'), + ('木', '朮'), + ('木', '朿'), + ('木', '朶'), + ('木', '杁'), + ('木', '朸'), + ('木', '朷'), + ('木', '杆'), + ('木', '杞'), + ('木', '杠'), + ('木', '杙'), + ('木', '杣'), + ('木', '杤'), + ('木', '枉'), + ('木', '杰'), + ('木', '枩'), + ('木', '杼'), + ('木', '杪'), + ('木', '枌'), + ('木', '枋'), + ('木', '枦'), + ('木', '枡'), + ('木', '枅'), + ('木', '枷'), + ('木', '柯'), + ('木', '枴'), + ('木', '柬'), + ('木', '枳'), + ('木', '柩'), + ('木', '枸'), + ('木', '柤'), + ('木', '柞'), + ('木', '柝'), + ('木', '柢'), + ('木', '柮'), + ('木', '枹'), + ('木', '柎'), + ('木', '柆'), + ('木', '柧'), + ('木', '檜'), + ('木', '栞'), + ('木', '框'), + ('木', '栩'), + ('木', '桀'), + ('木', '桍'), + ('木', '栲'), + ('木', '桎'), + ('木', '梳'), + ('木', '栫'), + ('木', '桙'), + ('木', '档'), + ('木', '桷'), + ('木', '桿'), + ('木', '梟'), + ('木', '梏'), + ('木', '梭'), + ('木', '梔'), + ('木', '條'), + ('木', '梛'), + ('木', '梃'), + ('木', '檮'), + ('木', '梹'), + ('木', '桴'), + ('木', '梵'), + ('木', '梠'), + ('木', '梺'), + ('木', '椏'), + ('木', '梍'), + ('木', '桾'), + ('木', '椁'), + ('木', '棊'), + ('木', '椈'), + ('木', '棘'), + ('木', '椢'), + ('木', '椦'), + ('木', '棡'), + ('木', '椌'), + ('木', '棍'), + ('木', '棔'), + ('木', '棧'), + ('木', '棕'), + ('木', '椶'), + ('木', '椒'), + ('木', '椄'), + ('木', '棗'), + ('木', '棣'), + ('木', '椥'), + ('木', '棹'), + ('木', '棠'), + ('木', '棯'), + ('木', '椨'), + ('木', '椪'), + ('木', '椚'), + ('木', '椣'), + ('木', '椡'), + ('木', '棆'), + ('木', '楹'), + ('木', '楷'), + ('木', '楜'), + ('木', '楸'), + ('木', '楫'), + ('木', '楔'), + ('木', '楾'), + ('木', '楮'), + ('木', '椹'), + ('木', '楴'), + ('木', '椽'), + ('木', '楙'), + ('木', '椰'), + ('木', '楡'), + ('木', '楞'), + ('木', '楝'), + ('木', '榁'), + ('木', '楪'), + ('木', '榲'), + ('木', '榮'), + ('木', '槐'), + ('木', '榿'), + ('木', '槁'), + ('木', '槓'), + ('木', '榾'), + ('木', '槎'), + ('木', '寨'), + ('木', '槊'), + ('木', '槝'), + ('木', '榻'), + ('木', '槃'), + ('木', '榧'), + ('木', '樮'), + ('木', '榑'), + ('木', '榠'), + ('木', '榜'), + ('木', '榕'), + ('木', '榴'), + ('木', '槞'), + ('木', '槨'), + ('木', '樂'), + ('木', '樛'), + ('木', '槿'), + ('木', '權'), + ('木', '槹'), + ('木', '槲'), + ('木', '槧'), + ('木', '樅'), + ('木', '榱'), + ('木', '樞'), + ('木', '槭'), + ('木', '樔'), + ('木', '槫'), + ('木', '樊'), + ('木', '樒'), + ('木', '櫁'), + ('木', '樣'), + ('木', '樓'), + ('木', '橄'), + ('木', '樌'), + ('木', '橲'), + ('木', '樶'), + ('木', '橸'), + ('木', '橇'), + ('木', '橢'), + ('木', '橙'), + ('木', '橦'), + ('木', '橈'), + ('木', '樸'), + ('木', '樢'), + ('木', '檐'), + ('木', '檍'), + ('木', '檠'), + ('木', '檄'), + ('木', '檢'), + ('木', '檣'), + ('木', '檗'), + ('木', '蘗'), + ('木', '檻'), + ('木', '櫃'), + ('木', '櫂'), + ('木', '檸'), + ('木', '檳'), + ('木', '檬'), + ('木', '櫞'), + ('木', '櫑'), + ('木', '櫟'), + ('木', '檪'), + ('木', '櫚'), + ('木', '櫪'), + ('木', '櫻'), + ('木', '欅'), + ('木', '蘖'), + ('木', '櫺'), + ('木', '欒'), + ('木', '欖'), + ('木', '鬱'), + ('木', '欟'), + ('木', '麾'), + ('木', '沐'), + ('木', '洙'), + ('木', '淞'), + ('木', '淅'), + ('木', '渣'), + ('木', '渫'), + ('木', '溂'), + ('木', '漱'), + ('木', '滌'), + ('木', '潸'), + ('木', '澡'), + ('木', '瀝'), + ('木', '瀾'), + ('木', '烋'), + ('木', '爍'), + ('木', '爛'), + ('木', '爨'), + ('木', '牀'), + ('木', '獺'), + ('木', '痲'), + ('木', '痳'), + ('木', '癩'), + ('木', '癧'), + ('木', '皙'), + ('木', '眛'), + ('木', '磔'), + ('木', '礬'), + ('木', '礫'), + ('木', '秣'), + ('木', '竦'), + ('木', '笨'), + ('木', '篥'), + ('木', '簗'), + ('木', '籟'), + ('木', '糅'), + ('木', '糜'), + ('木', '紮'), + ('木', '綵'), + ('木', '緤'), + ('木', '縻'), + ('木', '罧'), + ('木', '耒'), + ('木', '耘'), + ('木', '耙'), + ('木', '耜'), + ('木', '耡'), + ('木', '耨'), + ('木', '茉'), + ('木', '茱'), + ('木', '菘'), + ('木', '菻'), + ('木', '葆'), + ('木', '蕀'), + ('木', '蘂'), + ('木', '藉'), + ('木', '藕'), + ('木', '藥'), + ('木', '藾'), + ('木', '蛛'), + ('木', '蜥'), + ('木', '蠑'), + ('木', '裹'), + ('木', '褓'), + ('木', '襃'), + ('木', '襯'), + ('木', '襴'), + ('木', '誅'), + ('木', '誄'), + ('木', '諫'), + ('木', '譟'), + ('木', '貅'), + ('木', '賚'), + ('木', '踈'), + ('木', '踝'), + ('木', '蹂'), + ('木', '躁'), + ('木', '躰'), + ('木', '躱'), + ('木', '轢'), + ('木', '轣'), + ('木', '辣'), + ('木', '醂'), + ('木', '釐'), + ('木', '銖'), + ('木', '鑠'), + ('木', '闌'), + ('木', '隸'), + ('木', '襍'), + ('木', '雜'), + ('木', '霖'), + ('木', '靂'), + ('木', '靺'), + ('木', '鞣'), + ('木', '顆'), + ('木', '髞'), + ('木', '鬆'), + ('木', '鮴'), + ('木', '鰈'), + ('木', '鰊'), + ('木', '鶇'), + ('木', '鶫'), + ('木', '靡'), + ('木', '槇'), + ('欠', '茨'), + ('欠', '飲'), + ('欠', '欧'), + ('欠', '歌'), + ('欠', '款'), + ('欠', '歓'), + ('欠', '欺'), + ('欠', '欣'), + ('欠', '欽'), + ('欠', '欠'), + ('欠', '姿'), + ('欠', '諮'), + ('欠', '資'), + ('欠', '次'), + ('欠', '吹'), + ('欠', '炊'), + ('欠', '羨'), + ('欠', '歎'), + ('欠', '盗'), + ('欠', '軟'), + ('欠', '預'), + ('欠', '慾'), + ('欠', '欲'), + ('欠', '蕨'), + ('欠', '厥'), + ('欠', '咨'), + ('欠', '嗽'), + ('欠', '坎'), + ('欠', '嵌'), + ('欠', '恣'), + ('欠', '懿'), + ('欠', '掀'), + ('欠', '欸'), + ('欠', '欷'), + ('欠', '盜'), + ('欠', '欹'), + ('欠', '飮'), + ('欠', '歇'), + ('欠', '歃'), + ('欠', '歉'), + ('欠', '歐'), + ('欠', '歙'), + ('欠', '歔'), + ('欠', '歛'), + ('欠', '歟'), + ('欠', '歡'), + ('欠', '漱'), + ('欠', '獗'), + ('欠', '瓷'), + ('欠', '篏'), + ('欠', '粢'), + ('欠', '蠍'), + ('欠', '蹶'), + ('欠', '闕'), + ('止', '延'), + ('止', '卸'), + ('止', '噛'), + ('止', '企'), + ('止', '距'), + ('止', '禦'), + ('止', '跨'), + ('止', '御'), + ('止', '肯'), + ('止', '此'), + ('止', '些'), + ('止', '歳'), + ('止', '砦'), + ('止', '鷺'), + ('止', '止'), + ('止', '祉'), + ('止', '紫'), + ('止', '雌'), + ('止', '歯'), + ('止', '柴'), + ('止', '蹴'), + ('止', '渋'), + ('止', '渉'), + ('止', '症'), + ('止', '証'), + ('止', '鉦'), + ('止', '征'), + ('止', '政'), + ('止', '整'), + ('止', '正'), + ('止', '跡'), + ('止', '跡'), + ('止', '蹟'), + ('止', '践'), + ('止', '疏'), + ('止', '疎'), + ('止', '促'), + ('止', '捉'), + ('止', '足'), + ('止', '誕'), + ('止', '跳'), + ('止', '捗'), + ('止', '蹄'), + ('止', '踏'), + ('止', '凪'), + ('止', '髭'), + ('止', '斌'), + ('止', '瀕'), + ('止', '頻'), + ('止', '賦'), + ('止', '武'), + ('止', '蕗'), + ('止', '歩'), + ('止', '柾'), + ('止', '鵡'), + ('止', '躍'), + ('止', '踊'), + ('止', '齢'), + ('止', '歴'), + ('止', '路'), + ('止', '露'), + ('止', '歪'), + ('止', '丐'), + ('止', '呰'), + ('止', '啣'), + ('止', '嘴'), + ('止', '囓'), + ('止', '址'), + ('止', '堽'), + ('止', '嫣'), + ('止', '徙'), + ('止', '櫪'), + ('止', '歸'), + ('止', '沚'), + ('止', '涎'), + ('止', '澁'), + ('止', '澀'), + ('止', '瀝'), + ('止', '焉'), + ('止', '疵'), + ('止', '癧'), + ('止', '眥'), + ('止', '眦'), + ('止', '穢'), + ('止', '筵'), + ('止', '篶'), + ('止', '耻'), + ('止', '莚'), + ('止', '蔬'), + ('止', '蕋'), + ('止', '蘋'), + ('止', '蜒'), + ('止', '蜑'), + ('止', '觜'), + ('止', '貲'), + ('止', '贇'), + ('止', '跂'), + ('止', '趾'), + ('止', '趾'), + ('止', '趺'), + ('止', '跏'), + ('止', '跚'), + ('止', '跖'), + ('止', '跌'), + ('止', '跛'), + ('止', '跋'), + ('止', '跪'), + ('止', '跫'), + ('止', '跟'), + ('止', '跣'), + ('止', '跼'), + ('止', '踈'), + ('止', '踉'), + ('止', '跿'), + ('止', '踝'), + ('止', '踞'), + ('止', '踐'), + ('止', '踟'), + ('止', '蹂'), + ('止', '踵'), + ('止', '踰'), + ('止', '踴'), + ('止', '蹊'), + ('止', '蹇'), + ('止', '蹉'), + ('止', '蹌'), + ('止', '蹐'), + ('止', '蹈'), + ('止', '蹙'), + ('止', '蹤'), + ('止', '蹠'), + ('止', '踪'), + ('止', '蹣'), + ('止', '蹕'), + ('止', '蹶'), + ('止', '蹲'), + ('止', '蹼'), + ('止', '躁'), + ('止', '躇'), + ('止', '躅'), + ('止', '躄'), + ('止', '躋'), + ('止', '躊'), + ('止', '躓'), + ('止', '躑'), + ('止', '躔'), + ('止', '躙'), + ('止', '躪'), + ('止', '躡'), + ('止', '轣'), + ('止', '錻'), + ('止', '阯'), + ('止', '陟'), + ('止', '靂'), + ('止', '顰'), + ('止', '麪'), + ('止', '齒'), + ('止', '齔'), + ('止', '齣'), + ('止', '齟'), + ('止', '齠'), + ('止', '齡'), + ('止', '齦'), + ('止', '齧'), + ('止', '齬'), + ('止', '齪'), + ('止', '齪'), + ('止', '齷'), + ('止', '齲'), + ('止', '齶'), + ('歹', '残'), + ('歹', '屍'), + ('歹', '死'), + ('歹', '殊'), + ('歹', '夙'), + ('歹', '殉'), + ('歹', '殖'), + ('歹', '殆'), + ('歹', '例'), + ('歹', '列'), + ('歹', '烈'), + ('歹', '裂'), + ('歹', '冽'), + ('歹', '歹'), + ('歹', '歿'), + ('歹', '殀'), + ('歹', '殄'), + ('歹', '殃'), + ('歹', '殍'), + ('歹', '殘'), + ('歹', '殕'), + ('歹', '殞'), + ('歹', '殤'), + ('歹', '殪'), + ('歹', '殫'), + ('歹', '殯'), + ('歹', '殲'), + ('歹', '殱'), + ('歹', '洌'), + ('歹', '薤'), + ('歹', '餮'), + ('殳', '疫'), + ('殳', '殴'), + ('殳', '殻'), + ('殳', '毅'), + ('殳', '繋'), + ('殳', '撃'), + ('殳', '股'), + ('殳', '穀'), + ('殳', '殺'), + ('殳', '設'), + ('殳', '鍛'), + ('殳', '段'), + ('殳', '殿'), + ('殳', '澱'), + ('殳', '投'), + ('殳', '椴'), + ('殳', '搬'), + ('殳', '般'), + ('殳', '盤'), + ('殳', '磐'), + ('殳', '没'), + ('殳', '役'), + ('殳', '毀'), + ('殳', '廏'), + ('殳', '廢'), + ('殳', '慇'), + ('殳', '愨'), + ('殳', '槃'), + ('殳', '殳'), + ('殳', '殷'), + ('殳', '殼'), + ('殳', '毆'), + ('殳', '燬'), + ('殳', '瘢'), + ('殳', '癜'), + ('殳', '發'), + ('殳', '磬'), + ('殳', '緞'), + ('殳', '翳'), + ('殳', '聲'), + ('殳', '臀'), + ('殳', '芟'), + ('殳', '葮'), + ('殳', '謦'), + ('殳', '轂'), + ('殳', '酘'), + ('殳', '醫'), + ('殳', '鑿'), + ('殳', '骰'), + ('比', '皆'), + ('比', '階'), + ('比', '漉'), + ('比', '昆'), + ('比', '混'), + ('比', '鹿'), + ('比', '塵'), + ('比', '庇'), + ('比', '批'), + ('比', '比'), + ('比', '枇'), + ('比', '毘'), + ('比', '琵'), + ('比', '陛'), + ('比', '箆'), + ('比', '麟'), + ('比', '麗'), + ('比', '麓'), + ('比', '偕'), + ('比', '儷'), + ('比', '妣'), + ('比', '屁'), + ('比', '崑'), + ('比', '巉'), + ('比', '揩'), + ('比', '棍'), + ('比', '楷'), + ('比', '灑'), + ('比', '焜'), + ('比', '砒'), + ('比', '秕'), + ('比', '箟'), + ('比', '篦'), + ('比', '粃'), + ('比', '紕'), + ('比', '纔'), + ('比', '菎'), + ('比', '蓖'), + ('比', '諧'), + ('比', '讒'), + ('比', '貔'), + ('比', '豼'), + ('比', '轆'), + ('比', '鏖'), + ('比', '驪'), + ('比', '鯤'), + ('比', '麁'), + ('比', '麈'), + ('比', '麋'), + ('比', '麌'), + ('比', '麒'), + ('比', '麕'), + ('比', '麑'), + ('比', '麝'), + ('毛', '梶'), + ('毛', '銭'), + ('毛', '尾'), + ('毛', '粍'), + ('毛', '毛'), + ('毛', '耗'), + ('毛', '旄'), + ('毛', '橇'), + ('毛', '毟'), + ('毛', '毬'), + ('毛', '毫'), + ('毛', '毳'), + ('毛', '毯'), + ('毛', '麾'), + ('毛', '氈'), + ('毛', '瓱'), + ('毛', '竓'), + ('毛', '耄'), + ('毛', '髦'), + ('氏', '祇'), + ('氏', '婚'), + ('氏', '昏'), + ('氏', '氏'), + ('氏', '紙'), + ('氏', '低'), + ('氏', '底'), + ('氏', '抵'), + ('氏', '邸'), + ('氏', '砥'), + ('氏', '民'), + ('氏', '眠'), + ('氏', '儕'), + ('氏', '劑'), + ('氏', '岻'), + ('氏', '岷'), + ('氏', '帋'), + ('氏', '愍'), + ('氏', '擠'), + ('氏', '柢'), + ('氏', '棔'), + ('氏', '氓'), + ('氏', '泯'), + ('氏', '濟'), + ('氏', '牴'), + ('氏', '祗'), + ('氏', '齋'), + ('氏', '緡'), + ('氏', '纃'), + ('氏', '罠'), + ('氏', '羝'), + ('氏', '胝'), + ('氏', '臍'), + ('氏', '舐'), + ('氏', '薺'), + ('氏', '觝'), + ('氏', '詆'), + ('氏', '齎'), + ('氏', '躋'), + ('氏', '霽'), + ('氏', '齏'), + ('氏', '韲'), + ('氏', '鴟'), + ('氏', '齊'), + ('气', '気'), + ('气', '汽'), + ('气', '愾'), + ('气', '气'), + ('气', '氛'), + ('气', '氤'), + ('气', '氣'), + ('水', '永'), + ('水', '泳'), + ('水', '詠'), + ('水', '黍'), + ('水', '救'), + ('水', '求'), + ('水', '球'), + ('水', '沓'), + ('水', '康'), + ('水', '糠'), + ('水', '漆'), + ('水', '繍'), + ('水', '水'), + ('水', '泉'), + ('水', '線'), + ('水', '腺'), + ('水', '泰'), + ('水', '逮'), + ('水', '藤'), + ('水', '踏'), + ('水', '尿'), + ('水', '剥'), + ('水', '曝'), + ('水', '爆'), + ('水', '函'), + ('水', '膝'), + ('水', '氷'), + ('水', '暴'), + ('水', '様'), + ('水', '緑'), + ('水', '隷'), + ('水', '禄'), + ('水', '録'), + ('水', '冰'), + ('水', '咏'), + ('水', '嘯'), + ('水', '怺'), + ('水', '慷'), + ('水', '拯'), + ('水', '昶'), + ('水', '棣'), + ('水', '楾'), + ('水', '樣'), + ('水', '毬'), + ('水', '汞'), + ('水', '涵'), + ('水', '湶'), + ('水', '滕'), + ('水', '潁'), + ('水', '漿'), + ('水', '漾'), + ('水', '瀑'), + ('水', '瀟'), + ('水', '烝'), + ('水', '盥'), + ('水', '碌'), + ('水', '祿'), + ('水', '簫'), + ('水', '籐'), + ('水', '脉'), + ('水', '藜'), + ('水', '裘'), + ('水', '逑'), + ('水', '遲'), + ('水', '閖'), + ('水', '隶'), + ('水', '隸'), + ('水', '靆'), + ('水', '鞜'), + ('水', '鱇'), + ('水', '黎'), + ('水', '黏'), + ('水', '黐'), + ('火', '炎'), + ('火', '焔'), + ('火', '煙'), + ('火', '荻'), + ('火', '火'), + ('火', '恢'), + ('火', '灰'), + ('火', '鰍'), + ('火', '灸'), + ('火', '鍬'), + ('火', '災'), + ('火', '燦'), + ('火', '灼'), + ('火', '愁'), + ('火', '秋'), + ('火', '焼'), + ('火', '燭'), + ('火', '炊'), + ('火', '煽'), + ('火', '燥'), + ('火', '淡'), + ('火', '炭'), + ('火', '談'), + ('火', '灯'), + ('火', '燈'), + ('火', '燃'), + ('火', '煤'), + ('火', '萩'), + ('火', '爆'), + ('火', '畑'), + ('火', '煩'), + ('火', '焚'), + ('火', '滅'), + ('火', '熔'), + ('火', '燐'), + ('火', '煉'), + ('火', '炉'), + ('火', '勞'), + ('火', '燮'), + ('火', '啖'), + ('火', '啾'), + ('火', '營'), + ('火', '塋'), + ('火', '愀'), + ('火', '撈'), + ('火', '楸'), + ('火', '榮'), + ('火', '樮'), + ('火', '毯'), + ('火', '湫'), + ('火', '炙'), + ('火', '炒'), + ('火', '炯'), + ('火', '烱'), + ('火', '炬'), + ('火', '炸'), + ('火', '炳'), + ('火', '炮'), + ('火', '烟'), + ('火', '烙'), + ('火', '烽'), + ('火', '焜'), + ('火', '焙'), + ('火', '煥'), + ('火', '煢'), + ('火', '煌'), + ('火', '煖'), + ('火', '煬'), + ('火', '燻'), + ('火', '熄'), + ('火', '熕'), + ('火', '熨'), + ('火', '燗'), + ('火', '熾'), + ('火', '燒'), + ('火', '燉'), + ('火', '燔'), + ('火', '燎'), + ('火', '燠'), + ('火', '燬'), + ('火', '燧'), + ('火', '燵'), + ('火', '燼'), + ('火', '燹'), + ('火', '燿'), + ('火', '爍'), + ('火', '爐'), + ('火', '爛'), + ('火', '爨'), + ('火', '犖'), + ('火', '狄'), + ('火', '瑩'), + ('火', '甃'), + ('火', '痰'), + ('火', '癆'), + ('火', '耿'), + ('火', '螢'), + ('火', '蠑'), + ('火', '詼'), + ('火', '逖'), + ('火', '鞦'), + ('火', '餤'), + ('火', '鶯'), + ('杰', '鯵'), + ('杰', '為'), + ('杰', '鰯'), + ('杰', '烏'), + ('杰', '鵜'), + ('杰', '鰻'), + ('杰', '燕'), + ('杰', '鴛'), + ('杰', '鴬'), + ('杰', '鴎'), + ('杰', '鰍'), + ('杰', '潟'), + ('杰', '鰹'), + ('杰', '鴨'), + ('杰', '偽'), + ('杰', '漁'), + ('杰', '魚'), + ('杰', '熊'), + ('杰', '勲'), + ('杰', '薫'), + ('杰', '鯨'), + ('杰', '鯉'), + ('杰', '鴻'), + ('杰', '鵠'), + ('杰', '黒'), + ('杰', '鷺'), + ('杰', '鮭'), + ('杰', '鯖'), + ('杰', '鮫'), + ('杰', '鴫'), + ('杰', '煮'), + ('杰', '遮'), + ('杰', '熟'), + ('杰', '庶'), + ('杰', '樵'), + ('杰', '焦'), + ('杰', '照'), + ('杰', '礁'), + ('杰', '蕉'), + ('杰', '蒸'), + ('杰', '煎'), + ('杰', '薦'), + ('杰', '鮮'), + ('杰', '然'), + ('杰', '蘇'), + ('杰', '黛'), + ('杰', '鯛'), + ('杰', '鷹'), + ('杰', '鱈'), + ('杰', '鳥'), + ('杰', '蔦'), + ('杰', '鶴'), + ('杰', '点'), + ('杰', '嶋'), + ('杰', '鴇'), + ('杰', '篤'), + ('杰', '鳶'), + ('杰', '馴'), + ('杰', '熱'), + ('杰', '撚'), + ('杰', '燃'), + ('杰', '鳩'), + ('杰', '鰭'), + ('杰', '撫'), + ('杰', '蕪'), + ('杰', '鮒'), + ('杰', '烹'), + ('杰', '鳳'), + ('杰', '鵬'), + ('杰', '墨'), + ('杰', '鮪'), + ('杰', '鱒'), + ('杰', '無'), + ('杰', '鵡'), + ('杰', '鳴'), + ('杰', '黙'), + ('杰', '窯'), + ('杰', '鱗'), + ('杰', '烈'), + ('杰', '魯'), + ('杰', '櫓'), + ('杰', '鷲'), + ('杰', '鰐'), + ('杰', '儘'), + ('杰', '僞'), + ('杰', '儻'), + ('杰', '冩'), + ('杰', '勳'), + ('杰', '嗚'), + ('杰', '嘸'), + ('杰', '嚥'), + ('杰', '塢'), + ('杰', '壗'), + ('杰', '壥'), + ('杰', '嫣'), + ('杰', '寫'), + ('杰', '嶌'), + ('杰', '廡'), + ('杰', '憔'), + ('杰', '憮'), + ('杰', '杰'), + ('杰', '樢'), + ('杰', '濕'), + ('杰', '瀉'), + ('杰', '烋'), + ('杰', '烝'), + ('杰', '焉'), + ('杰', '煕'), + ('杰', '熈'), + ('杰', '煦'), + ('杰', '熏'), + ('杰', '熬'), + ('杰', '熹'), + ('杰', '燼'), + ('杰', '爲'), + ('杰', '默'), + ('杰', '篶'), + ('杰', '纒'), + ('杰', '羆'), + ('杰', '羔'), + ('杰', '羹'), + ('杰', '羮'), + ('杰', '臙'), + ('杰', '艪'), + ('杰', '蔗'), + ('杰', '薊'), + ('杰', '蘓'), + ('杰', '蘚'), + ('杰', '譌'), + ('杰', '讌'), + ('杰', '贐'), + ('杰', '蹠'), + ('杰', '醺'), + ('杰', '隰'), + ('杰', '顯'), + ('杰', '魴'), + ('杰', '鮓'), + ('杰', '鮃'), + ('杰', '鮑'), + ('杰', '鮖'), + ('杰', '鮗'), + ('杰', '鮟'), + ('杰', '鮠'), + ('杰', '鮨'), + ('杰', '鮴'), + ('杰', '鯀'), + ('杰', '鯊'), + ('杰', '鮹'), + ('杰', '鯆'), + ('杰', '鯏'), + ('杰', '鯑'), + ('杰', '鯒'), + ('杰', '鯣'), + ('杰', '鯢'), + ('杰', '鯤'), + ('杰', '鯔'), + ('杰', '鯡'), + ('杰', '鰺'), + ('杰', '鯲'), + ('杰', '鯱'), + ('杰', '鯰'), + ('杰', '鰕'), + ('杰', '鰔'), + ('杰', '鰉'), + ('杰', '鰓'), + ('杰', '鰌'), + ('杰', '鰆'), + ('杰', '鰈'), + ('杰', '鰒'), + ('杰', '鰊'), + ('杰', '鰄'), + ('杰', '鰮'), + ('杰', '鰛'), + ('杰', '鰥'), + ('杰', '鰤'), + ('杰', '鰡'), + ('杰', '鰰'), + ('杰', '鱇'), + ('杰', '鰲'), + ('杰', '鱆'), + ('杰', '鰾'), + ('杰', '鱚'), + ('杰', '鱠'), + ('杰', '鱧'), + ('杰', '鱶'), + ('杰', '鱸'), + ('杰', '鳧'), + ('杰', '鳰'), + ('杰', '鴉'), + ('杰', '鴈'), + ('杰', '鳫'), + ('杰', '鴃'), + ('杰', '鴆'), + ('杰', '鴪'), + ('杰', '鴦'), + ('杰', '鶯'), + ('杰', '鴣'), + ('杰', '鴟'), + ('杰', '鵄'), + ('杰', '鴕'), + ('杰', '鴒'), + ('杰', '鵁'), + ('杰', '鴿'), + ('杰', '鴾'), + ('杰', '鵆'), + ('杰', '鵈'), + ('杰', '鵝'), + ('杰', '鵞'), + ('杰', '鵤'), + ('杰', '鵑'), + ('杰', '鵐'), + ('杰', '鵙'), + ('杰', '鶉'), + ('杰', '鶇'), + ('杰', '鶫'), + ('杰', '鵯'), + ('杰', '鵺'), + ('杰', '鶚'), + ('杰', '鶤'), + ('杰', '鶩'), + ('杰', '鶲'), + ('杰', '鷄'), + ('杰', '鷁'), + ('杰', '鶻'), + ('杰', '鶸'), + ('杰', '鶺'), + ('杰', '鷆'), + ('杰', '鷏'), + ('杰', '鷂'), + ('杰', '鷙'), + ('杰', '鷓'), + ('杰', '鷸'), + ('杰', '鷦'), + ('杰', '鷭'), + ('杰', '鷯'), + ('杰', '鷽'), + ('杰', '鸚'), + ('杰', '鸛'), + ('杰', '鸞'), + ('杰', '黔'), + ('杰', '黜'), + ('杰', '點'), + ('杰', '黝'), + ('杰', '黠'), + ('杰', '黥'), + ('杰', '黨'), + ('杰', '黯'), + ('杰', '黴'), + ('杰', '黶'), + ('杰', '黷'), + ('杰', '熙'), + ('爪', '愛'), + ('爪', '稲'), + ('爪', '淫'), + ('爪', '援'), + ('爪', '穏'), + ('爪', '緩'), + ('爪', '渓'), + ('爪', '鶏'), + ('爪', '墾'), + ('爪', '懇'), + ('爪', '彩'), + ('爪', '採'), + ('爪', '采'), + ('爪', '菜'), + ('爪', '爵'), + ('爪', '受'), + ('爪', '授'), + ('爪', '綬'), + ('爪', '瞬'), + ('爪', '舜'), + ('爪', '奨'), + ('爪', '将'), + ('爪', '蒋'), + ('爪', '醤'), + ('爪', '妥'), + ('爪', '暖'), + ('爪', '爪'), + ('爪', '乳'), + ('爪', '媛'), + ('爪', '浮'), + ('爪', '揺'), + ('爪', '謡'), + ('爪', '遥'), + ('爪', '亂'), + ('爪', '俘'), + ('爪', '僞'), + ('爪', '嚼'), + ('爪', '埒'), + ('爪', '奚'), + ('爪', '婬'), + ('爪', '孚'), + ('爪', '孵'), + ('爪', '崢'), + ('爪', '抓'), + ('爪', '曖'), + ('爪', '桴'), + ('爪', '殍'), + ('爪', '淨'), + ('爪', '湲'), + ('爪', '溪'), + ('爪', '滔'), + ('爪', '煖'), + ('爪', '爭'), + ('爪', '爬'), + ('爪', '爰'), + ('爪', '爲'), + ('爪', '瑶'), + ('爪', '瞹'), + ('爪', '稱'), + ('爪', '稻'), + ('爪', '穩'), + ('爪', '笊'), + ('爪', '箏'), + ('爪', '綏'), + ('爪', '綵'), + ('爪', '艀'), + ('爪', '蕣'), + ('爪', '蜉'), + ('爪', '覓'), + ('爪', '諍'), + ('爪', '譌'), + ('爪', '谿'), + ('爪', '蹊'), + ('爪', '蹈'), + ('爪', '辭'), + ('爪', '郛'), + ('爪', '錚'), + ('爪', '隱'), + ('爪', '霪'), + ('爪', '靉'), + ('爪', '靜'), + ('爪', '韜'), + ('爪', '餒'), + ('爪', '鷄'), + ('父', '較'), + ('父', '釜'), + ('父', '交'), + ('父', '佼'), + ('父', '効'), + ('父', '校'), + ('父', '絞'), + ('父', '郊'), + ('父', '鮫'), + ('父', '斧'), + ('父', '父'), + ('父', '爺'), + ('父', '傚'), + ('父', '咬'), + ('父', '效'), + ('父', '狡'), + ('父', '皎'), + ('父', '纐'), + ('父', '蛟'), + ('父', '餃'), + ('父', '駮'), + ('父', '鵁'), + ('爻', '爾'), + ('爻', '璽'), + ('爻', '禰'), + ('爻', '駁'), + ('爻', '彌'), + ('爻', '攀'), + ('爻', '樊'), + ('爻', '濔'), + ('爻', '瀰'), + ('爻', '爻'), + ('爻', '爼'), + ('爻', '礬'), + ('爻', '覺'), + ('爻', '邇'), + ('爻', '鷽'), + ('爻', '黌'), + ('爿', '燕'), + ('爿', '奨'), + ('爿', '将'), + ('爿', '蒋'), + ('爿', '醤'), + ('爿', '状'), + ('爿', '寝'), + ('爿', '壮'), + ('爿', '荘'), + ('爿', '装'), + ('爿', '鼎'), + ('爿', '背'), + ('爿', '北'), + ('爿', '乖'), + ('爿', '乘'), + ('爿', '冀'), + ('爿', '剩'), + ('爿', '嚥'), + ('爿', '埀'), + ('爿', '壯'), + ('爿', '奘'), + ('爿', '奬'), + ('爿', '妝'), + ('爿', '寐'), + ('爿', '寤'), + ('爿', '寢'), + ('爿', '將'), + ('爿', '弉'), + ('爿', '漿'), + ('爿', '爿'), + ('爿', '牀'), + ('爿', '牆'), + ('爿', '獎'), + ('爿', '肅'), + ('爿', '臙'), + ('爿', '莊'), + ('爿', '藏'), + ('爿', '裝'), + ('爿', '讌'), + ('爿', '鏘'), + ('爿', '驥'), + ('片', '牒'), + ('片', '鼎'), + ('片', '牌'), + ('片', '版'), + ('片', '片'), + ('片', '牋'), + ('片', '牘'), + ('片', '肅'), + ('牛', '牡'), + ('牛', '解'), + ('牛', '蟹'), + ('牛', '株'), + ('牛', '犠'), + ('牛', '牛'), + ('牛', '件'), + ('牛', '牽'), + ('牛', '朱'), + ('牛', '殊'), + ('牛', '珠'), + ('牛', '瞬'), + ('牛', '舜'), + ('牛', '制'), + ('牛', '牲'), + ('牛', '製'), + ('牛', '惣'), + ('牛', '迭'), + ('牛', '特'), + ('牛', '物'), + ('牛', '鉾'), + ('牛', '牧'), + ('牛', '牟'), + ('牛', '牝'), + ('牛', '牢'), + ('牛', '侏'), + ('牛', '吽'), + ('牛', '廨'), + ('牛', '懈'), + ('牛', '掣'), + ('牛', '桙'), + ('牛', '洙'), + ('牛', '牴'), + ('牛', '牾'), + ('牛', '犂'), + ('牛', '犁'), + ('牛', '犇'), + ('牛', '犒'), + ('牛', '犖'), + ('牛', '犢'), + ('牛', '犧'), + ('牛', '眸'), + ('牛', '穉'), + ('牛', '茱'), + ('牛', '蛛'), + ('牛', '蠏'), + ('牛', '誅'), + ('牛', '遲'), + ('牛', '邂'), + ('牛', '銖'), + ('牛', '鴾'), + ('犬', '厭'), + ('犬', '犬'), + ('犬', '献'), + ('犬', '獄'), + ('犬', '獣'), + ('犬', '状'), + ('犬', '然'), + ('犬', '撚'), + ('犬', '燃'), + ('犬', '伏'), + ('犬', '吠'), + ('犬', '黙'), + ('犬', '猷'), + ('犬', '哭'), + ('犬', '壓'), + ('犬', '嶽'), + ('犬', '憖'), + ('犬', '倏'), + ('犬', '獎'), + ('犬', '默'), + ('犬', '獸'), + ('犬', '獻'), + ('犬', '茯'), + ('犬', '袱'), + ('犬', '闃'), + ('犬', '靨'), + ('犬', '飆'), + ('犬', '魘'), + ('犬', '黶'), + ('礼', '禍'), + ('礼', '祈'), + ('礼', '祇'), + ('礼', '祁'), + ('礼', '榊'), + ('礼', '祉'), + ('礼', '視'), + ('礼', '社'), + ('礼', '祝'), + ('礼', '祥'), + ('礼', '神'), + ('礼', '禅'), + ('礼', '祖'), + ('礼', '禎'), + ('礼', '祷'), + ('礼', '禰'), + ('礼', '祢'), + ('礼', '杯'), + ('礼', '福'), + ('礼', '祐'), + ('礼', '礼'), + ('礼', '禄'), + ('礼', '祀'), + ('礼', '祠'), + ('礼', '祗'), + ('礼', '祚'), + ('礼', '祕'), + ('礼', '祓'), + ('礼', '祺'), + ('礼', '祿'), + ('礼', '禊'), + ('礼', '禝'), + ('礼', '禧'), + ('礼', '禪'), + ('礼', '禮'), + ('礼', '禳'), + ('礼', '鰰'), + ('王', '淫'), + ('王', '閏'), + ('王', '瑛'), + ('王', '往'), + ('王', '旺'), + ('王', '王'), + ('王', '珂'), + ('王', '釜'), + ('王', '鎌'), + ('王', '環'), + ('王', '玩'), + ('王', '儀'), + ('王', '犠'), + ('王', '義'), + ('王', '蟻'), + ('王', '議'), + ('王', '球'), + ('王', '匡'), + ('王', '狂'), + ('王', '業'), + ('王', '玉'), + ('王', '琴'), + ('王', '玖'), + ('王', '群'), + ('王', '珪'), + ('王', '現'), + ('王', '瑚'), + ('王', '皇'), + ('王', '国'), + ('王', '嵯'), + ('王', '差'), + ('王', '瑳'), + ('王', '再'), + ('王', '珊'), + ('王', '璽'), + ('王', '主'), + ('王', '珠'), + ('王', '住'), + ('王', '潤'), + ('王', '祥'), + ('王', '詳'), + ('王', '瑞'), + ('王', '聖'), + ('王', '栓'), + ('王', '羨'), + ('王', '詮'), + ('王', '鮮'), + ('王', '善'), + ('王', '全'), + ('王', '繕'), + ('王', '膳'), + ('王', '叢'), + ('王', '琢'), + ('王', '達'), + ('王', '遅'), + ('王', '着'), + ('王', '柱'), + ('王', '注'), + ('王', '註'), + ('王', '駐'), + ('王', '徴'), + ('王', '懲'), + ('王', '珍'), + ('王', '賃'), + ('王', '掴'), + ('王', '呈'), + ('王', '庭'), + ('王', '廷'), + ('王', '挺'), + ('王', '程'), + ('王', '艇'), + ('王', '任'), + ('王', '妊'), + ('王', '琶'), + ('王', '斑'), + ('王', '班'), + ('王', '琵'), + ('王', '美'), + ('王', '碧'), + ('王', '宝'), + ('王', '望'), + ('王', '僕'), + ('王', '撲'), + ('王', '様'), + ('王', '洋'), + ('王', '窯'), + ('王', '羊'), + ('王', '養'), + ('王', '理'), + ('王', '璃'), + ('王', '琉'), + ('王', '琳'), + ('王', '瑠'), + ('王', '玲'), + ('王', '弄'), + ('王', '佯'), + ('王', '凰'), + ('王', '哢'), + ('王', '嗟'), + ('王', '姜'), + ('王', '寶'), + ('王', '寳'), + ('王', '對'), + ('王', '嵳'), + ('王', '嶬'), + ('王', '庠'), + ('王', '廳'), + ('王', '徨'), + ('王', '恙'), + ('王', '惶'), + ('王', '抂'), + ('王', '搓'), + ('王', '撻'), + ('王', '曦'), + ('王', '枉'), + ('王', '框'), + ('王', '梃'), + ('王', '椢'), + ('王', '槎'), + ('王', '樣'), + ('王', '汪'), + ('王', '湟'), + ('王', '漾'), + ('王', '澂'), + ('王', '濮'), + ('王', '瀁'), + ('王', '煌'), + ('王', '燬'), + ('王', '犧'), + ('王', '珈'), + ('王', '玳'), + ('王', '珎'), + ('王', '玻'), + ('王', '珀'), + ('王', '珥'), + ('王', '珮'), + ('王', '珞'), + ('王', '璢'), + ('王', '琅'), + ('王', '瑯'), + ('王', '琥'), + ('王', '珸'), + ('王', '琲'), + ('王', '琺'), + ('王', '瑕'), + ('王', '琿'), + ('王', '瑟'), + ('王', '瑙'), + ('王', '瑁'), + ('王', '瑜'), + ('王', '瑩'), + ('王', '瑰'), + ('王', '瑣'), + ('王', '瑪'), + ('王', '瑶'), + ('王', '瑾'), + ('王', '璋'), + ('王', '璞'), + ('王', '璧'), + ('王', '瓊'), + ('王', '瓏'), + ('王', '瓔'), + ('王', '珱'), + ('王', '痊'), + ('王', '痒'), + ('王', '癢'), + ('王', '癬'), + ('王', '盖'), + ('王', '磋'), + ('王', '礒'), + ('王', '筐'), + ('王', '筺'), + ('王', '筌'), + ('王', '篁'), + ('王', '縒'), + ('王', '羌'), + ('王', '羔'), + ('王', '羞'), + ('王', '羝'), + ('王', '羚'), + ('王', '羣'), + ('王', '羯'), + ('王', '羲'), + ('王', '羹'), + ('王', '羮'), + ('王', '羶'), + ('王', '羸'), + ('王', '譱'), + ('王', '聽'), + ('王', '艤'), + ('王', '蘚'), + ('王', '蝗'), + ('王', '蟶'), + ('王', '衽'), + ('王', '袵'), + ('王', '觧'), + ('王', '誑'), + ('王', '蹉'), + ('王', '蹼'), + ('王', '躾'), + ('王', '逞'), + ('王', '遑'), + ('王', '郢'), + ('王', '酲'), + ('王', '銓'), + ('王', '鍠'), + ('王', '鐵'), + ('王', '閠'), + ('王', '闥'), + ('王', '隍'), + ('王', '霆'), + ('王', '霪'), + ('王', '韃'), + ('王', '鰉'), + ('王', '鱶'), + ('王', '麈'), + ('王', '瑤'), + ('元', '院'), + ('元', '完'), + ('元', '莞'), + ('元', '玩'), + ('元', '翫'), + ('元', '頑'), + ('元', '元'), + ('元', '寇'), + ('元', '皖'), + ('元', '齋'), + ('元', '芫'), + ('元', '蒄'), + ('元', '阮'), + ('井', '囲'), + ('井', '異'), + ('井', '井'), + ('井', '寒'), + ('井', '恭'), + ('井', '巷'), + ('井', '港'), + ('井', '耕'), + ('井', '爆'), + ('井', '糞'), + ('井', '暴'), + ('井', '翼'), + ('井', '丼'), + ('井', '畊'), + ('井', '穽'), + ('勿', '易'), + ('勿', '忽'), + ('勿', '惚'), + ('勿', '賜'), + ('勿', '錫'), + ('勿', '傷'), + ('勿', '場'), + ('勿', '惣'), + ('勿', '暢'), + ('勿', '腸'), + ('勿', '湯'), + ('勿', '蕩'), + ('勿', '葱'), + ('勿', '物'), + ('勿', '吻'), + ('勿', '勿'), + ('勿', '揚'), + ('勿', '楊'), + ('勿', '陽'), + ('勿', '偬'), + ('勿', '刎'), + ('勿', '剔'), + ('勿', '匆'), + ('勿', '塲'), + ('勿', '怱'), + ('勿', '愡'), + ('勿', '昜'), + ('勿', '暘'), + ('勿', '殤'), + ('勿', '煬'), + ('勿', '犂'), + ('勿', '笏'), + ('勿', '膓'), + ('勿', '蜴'), + ('勿', '蝪'), + ('勿', '裼'), + ('勿', '觴'), + ('勿', '黎'), + ('尤', '稽'), + ('尤', '就'), + ('尤', '蹴'), + ('尤', '尤'), + ('尤', '鷲'), + ('尤', '厖'), + ('尤', '尨'), + ('尤', '犹'), + ('尤', '疣'), + ('尤', '肬'), + ('五', '五'), + ('五', '伍'), + ('五', '吾'), + ('五', '悟'), + ('五', '梧'), + ('五', '語'), + ('五', '唔'), + ('五', '圄'), + ('五', '寤'), + ('五', '晤'), + ('五', '牾'), + ('五', '珸'), + ('五', '衙'), + ('五', '齬'), + ('屯', '純'), + ('屯', '噸'), + ('屯', '屯'), + ('屯', '沌'), + ('屯', '頓'), + ('屯', '鈍'), + ('屯', '瓲'), + ('屯', '邨'), + ('屯', '飩'), + ('巴', '色'), + ('巴', '巴'), + ('巴', '把'), + ('巴', '杷'), + ('巴', '琶'), + ('巴', '芭'), + ('巴', '肥'), + ('巴', '邑'), + ('巴', '巵'), + ('巴', '廱'), + ('巴', '悒'), + ('巴', '梔'), + ('巴', '滬'), + ('巴', '爬'), + ('巴', '癰'), + ('巴', '笆'), + ('巴', '耙'), + ('巴', '葩'), + ('巴', '扈'), + ('毋', '悔'), + ('毋', '晦'), + ('毋', '海'), + ('毋', '慣'), + ('毋', '貫'), + ('毋', '栂'), + ('毋', '毒'), + ('毋', '梅'), + ('毋', '繁'), + ('毋', '敏'), + ('毋', '侮'), + ('毋', '母'), + ('毋', '毎'), + ('毋', '塰'), + ('毋', '姆'), + ('毋', '拇'), + ('毋', '毋'), + ('毋', '毓'), + ('毋', '纛'), + ('毋', '苺'), + ('毋', '莓'), + ('毋', '袰'), + ('毋', '誨'), + ('玄', '弦'), + ('玄', '玄'), + ('玄', '絃'), + ('玄', '舷'), + ('玄', '畜'), + ('玄', '蓄'), + ('玄', '率'), + ('玄', '呟'), + ('玄', '痃'), + ('玄', '眩'), + ('玄', '蟀'), + ('玄', '衒'), + ('玄', '鉉'), + ('瓦', '瓦'), + ('瓦', '甑'), + ('瓦', '瓶'), + ('瓦', '瓧'), + ('瓦', '瓩'), + ('瓦', '瓮'), + ('瓦', '瓲'), + ('瓦', '瓰'), + ('瓦', '瓱'), + ('瓦', '瓸'), + ('瓦', '瓷'), + ('瓦', '甄'), + ('瓦', '甃'), + ('瓦', '甅'), + ('瓦', '甌'), + ('瓦', '甎'), + ('瓦', '甍'), + ('瓦', '甕'), + ('瓦', '甓'), + ('甘', '勘'), + ('甘', '堪'), + ('甘', '柑'), + ('甘', '甘'), + ('甘', '基'), + ('甘', '旗'), + ('甘', '期'), + ('甘', '棋'), + ('甘', '欺'), + ('甘', '紺'), + ('甘', '斯'), + ('甘', '甚'), + ('甘', '其'), + ('甘', '湛'), + ('甘', '甜'), + ('甘', '媒'), + ('甘', '楳'), + ('甘', '煤'), + ('甘', '簸'), + ('甘', '某'), + ('甘', '謀'), + ('甘', '箕'), + ('甘', '厮'), + ('甘', '嘶'), + ('甘', '坩'), + ('甘', '尠'), + ('甘', '嵌'), + ('甘', '廝'), + ('甘', '憇'), + ('甘', '戡'), + ('甘', '拑'), + ('甘', '撕'), + ('甘', '斟'), + ('甘', '朞'), + ('甘', '棊'), + ('甘', '椹'), + ('甘', '淇'), + ('甘', '甞'), + ('甘', '疳'), + ('甘', '碪'), + ('甘', '祺'), + ('甘', '稘'), + ('甘', '箝'), + ('甘', '篏'), + ('甘', '籏'), + ('甘', '糂'), + ('甘', '蚶'), + ('甘', '邯'), + ('甘', '酣'), + ('甘', '鉗'), + ('甘', '鍖'), + ('甘', '騏'), + ('甘', '麒'), + ('生', '甥'), + ('生', '薩'), + ('生', '産'), + ('生', '姓'), + ('生', '性'), + ('生', '星'), + ('生', '牲'), + ('生', '生'), + ('生', '醒'), + ('生', '隆'), + ('生', '嶐'), + ('生', '徃'), + ('生', '惺'), + ('生', '旌'), + ('生', '猩'), + ('生', '甦'), + ('生', '窿'), + ('生', '笙'), + ('生', '腥'), + ('用', '浦'), + ('用', '桶'), + ('用', '蒲'), + ('用', '痛'), + ('用', '通'), + ('用', '樋'), + ('用', '備'), + ('用', '葡'), + ('用', '舗'), + ('用', '鋪'), + ('用', '圃'), + ('用', '捕'), + ('用', '甫'), + ('用', '補'), + ('用', '輔'), + ('用', '涌'), + ('用', '傭'), + ('用', '庸'), + ('用', '用'), + ('用', '踊'), + ('用', '猟'), + ('用', '蝋'), + ('用', '俑'), + ('用', '匍'), + ('用', '哺'), + ('用', '埔'), + ('用', '慂'), + ('用', '慵'), + ('用', '憊'), + ('用', '甬'), + ('用', '糒'), + ('用', '脯'), + ('用', '舖'), + ('用', '蛹'), + ('用', '誦'), + ('用', '逋'), + ('用', '鞴'), + ('用', '餔'), + ('用', '鯆'), + ('用', '鯒'), + ('用', '黼'), + ('用', '鼡'), + ('田', '穐'), + ('田', '鯵'), + ('田', '鮎'), + ('田', '庵'), + ('田', '畏'), + ('田', '異'), + ('田', '胃'), + ('田', '謂'), + ('田', '鰯'), + ('田', '鰻'), + ('田', '演'), + ('田', '甥'), + ('田', '押'), + ('田', '横'), + ('田', '黄'), + ('田', '果'), + ('田', '菓'), + ('田', '課'), + ('田', '画'), + ('田', '塊'), + ('田', '魁'), + ('田', '界'), + ('田', '浬'), + ('田', '劃'), + ('田', '橿'), + ('田', '鰍'), + ('田', '鰹'), + ('田', '竃'), + ('田', '鴨'), + ('田', '諌'), + ('田', '畿'), + ('田', '鬼'), + ('田', '亀'), + ('田', '漁'), + ('田', '魚'), + ('田', '彊'), + ('田', '愚'), + ('田', '偶'), + ('田', '寓'), + ('田', '遇'), + ('田', '隅'), + ('田', '隈'), + ('田', '勲'), + ('田', '恵'), + ('田', '畦'), + ('田', '鯨'), + ('田', '鯉'), + ('田', '甲'), + ('田', '衡'), + ('田', '甑'), + ('田', '坤'), + ('田', '魂'), + ('田', '細'), + ('田', '堺'), + ('田', '榊'), + ('田', '鮭'), + ('田', '鯖'), + ('田', '鮫'), + ('田', '思'), + ('田', '鴫'), + ('田', '軸'), + ('田', '偲'), + ('田', '蒐'), + ('田', '醜'), + ('田', '獣'), + ('田', '畳'), + ('田', '伸'), + ('田', '審'), + ('田', '申'), + ('田', '神'), + ('田', '紳'), + ('田', '畝'), + ('田', '蝉'), + ('田', '専'), + ('田', '戦'), + ('田', '鮮'), + ('田', '禅'), + ('田', '噌'), + ('田', '曽'), + ('田', '蘇'), + ('田', '僧'), + ('田', '層'), + ('田', '捜'), + ('田', '挿'), + ('田', '巣'), + ('田', '増'), + ('田', '憎'), + ('田', '贈'), + ('田', '袖'), + ('田', '騨'), + ('田', '戴'), + ('田', '鯛'), + ('田', '滝'), + ('田', '鱈'), + ('田', '単'), + ('田', '箪'), + ('田', '弾'), + ('田', '男'), + ('田', '畜'), + ('田', '蓄'), + ('田', '宙'), + ('田', '抽'), + ('田', '暢'), + ('田', '町'), + ('田', '陳'), + ('田', '佃'), + ('田', '紬'), + ('田', '笛'), + ('田', '田'), + ('田', '電'), + ('田', '凍'), + ('田', '東'), + ('田', '棟'), + ('田', '届'), + ('田', '寅'), + ('田', '縄'), + ('田', '畷'), + ('田', '猫'), + ('田', '播'), + ('田', '牌'), + ('田', '蝿'), + ('田', '博'), + ('田', '薄'), + ('田', '縛'), + ('田', '櫨'), + ('田', '幡'), + ('田', '畑'), + ('田', '畠'), + ('田', '畔'), + ('田', '藩'), + ('田', '番'), + ('田', '蕃'), + ('田', '卑'), + ('田', '碑'), + ('田', '毘'), + ('田', '鼻'), + ('田', '稗'), + ('田', '畢'), + ('田', '逼'), + ('田', '描'), + ('田', '苗'), + ('田', '錨'), + ('田', '鰭'), + ('田', '富'), + ('田', '冨'), + ('田', '敷'), + ('田', '膚'), + ('田', '副'), + ('田', '幅'), + ('田', '福'), + ('田', '鮒'), + ('田', '奮'), + ('田', '糞'), + ('田', '便'), + ('田', '鞭'), + ('田', '穂'), + ('田', '簿'), + ('田', '翻'), + ('田', '魔'), + ('田', '鮪'), + ('田', '鱒'), + ('田', '魅'), + ('田', '岬'), + ('田', '油'), + ('田', '勇'), + ('田', '柚'), + ('田', '湧'), + ('田', '由'), + ('田', '翼'), + ('田', '螺'), + ('田', '裸'), + ('田', '雷'), + ('田', '欄'), + ('田', '略'), + ('田', '溜'), + ('田', '留'), + ('田', '竜'), + ('田', '慮'), + ('田', '虜'), + ('田', '鱗'), + ('田', '瑠'), + ('田', '塁'), + ('田', '累'), + ('田', '煉'), + ('田', '練'), + ('田', '錬'), + ('田', '魯'), + ('田', '櫓'), + ('田', '鰐'), + ('田', '俾'), + ('田', '傀'), + ('田', '傅'), + ('田', '傳'), + ('田', '僵'), + ('田', '儡'), + ('田', '冀'), + ('田', '冑'), + ('田', '剿'), + ('田', '勦'), + ('田', '勵'), + ('田', '甸'), + ('田', '匐'), + ('田', '匣'), + ('田', '呷'), + ('田', '呻'), + ('田', '哽'), + ('田', '喟'), + ('田', '單'), + ('田', '嚊'), + ('田', '嚔'), + ('田', '嚏'), + ('田', '囀'), + ('田', '囎'), + ('田', '壙'), + ('田', '壘'), + ('田', '夥'), + ('田', '娉'), + ('田', '娚'), + ('田', '婢'), + ('田', '嫂'), + ('田', '嬋'), + ('田', '嬲'), + ('田', '嫐'), + ('田', '嬶'), + ('田', '實'), + ('田', '專'), + ('田', '岫'), + ('田', '峺'), + ('田', '嵎'), + ('田', '嵬'), + ('田', '巍'), + ('田', '廣'), + ('田', '廬'), + ('田', '彈'), + ('田', '彙'), + ('田', '愧'), + ('田', '愽'), + ('田', '憚'), + ('田', '戰'), + ('田', '抻'), + ('田', '搏'), + ('田', '擂'), + ('田', '擴'), + ('田', '畋'), + ('田', '旛'), + ('田', '旙'), + ('田', '曠'), + ('田', '槐'), + ('田', '榑'), + ('田', '榴'), + ('田', '樔'), + ('田', '樌'), + ('田', '櫑'), + ('田', '殫'), + ('田', '沺'), + ('田', '渭'), + ('田', '溥'), + ('田', '潘'), + ('田', '澑'), + ('田', '瀋'), + ('田', '濾'), + ('田', '瀘'), + ('田', '瀾'), + ('田', '熏'), + ('田', '燻'), + ('田', '燔'), + ('田', '爐'), + ('田', '狎'), + ('田', '猥'), + ('田', '獸'), + ('田', '璢'), + ('田', '瑰'), + ('田', '甼'), + ('田', '畄'), + ('田', '畍'), + ('田', '畊'), + ('田', '畉'), + ('田', '畛'), + ('田', '畆'), + ('田', '畚'), + ('田', '畩'), + ('田', '畤'), + ('田', '畧'), + ('田', '畫'), + ('田', '畭'), + ('田', '畸'), + ('田', '當'), + ('田', '疆'), + ('田', '疇'), + ('田', '畴'), + ('田', '疊'), + ('田', '疉'), + ('田', '疂'), + ('田', '痺'), + ('田', '瘤'), + ('田', '瘰'), + ('田', '癘'), + ('田', '盧'), + ('田', '睥'), + ('田', '礦'), + ('田', '礪'), + ('田', '礑'), + ('田', '禝'), + ('田', '禪'), + ('田', '禺'), + ('田', '稷'), + ('田', '龝'), + ('田', '篳'), + ('田', '簧'), + ('田', '籀'), + ('田', '糲'), + ('田', '緇'), + ('田', '縲'), + ('田', '繙'), + ('田', '罍'), + ('田', '飜'), + ('田', '胛'), + ('田', '胄'), + ('田', '脾'), + ('田', '腮'), + ('田', '膊'), + ('田', '膰'), + ('田', '臚'), + ('田', '舅'), + ('田', '舳'), + ('田', '艪'), + ('田', '艫'), + ('田', '萬'), + ('田', '蔔'), + ('田', '薑'), + ('田', '薊'), + ('田', '蕾'), + ('田', '藕'), + ('田', '蘓'), + ('田', '蘆'), + ('田', '蘚'), + ('田', '蚰'), + ('田', '蠣'), + ('田', '蝠'), + ('田', '蝟'), + ('田', '蟠'), + ('田', '蟷'), + ('田', '裹'), + ('田', '裨'), + ('田', '襌'), + ('田', '褝'), + ('田', '襠'), + ('田', '謖'), + ('田', '賻'), + ('田', '踝'), + ('田', '踵'), + ('田', '踴'), + ('田', '蹕'), + ('田', '躔'), + ('田', '輜'), + ('田', '輻'), + ('田', '轉'), + ('田', '轤'), + ('田', '迪'), + ('田', '邁'), + ('田', '鄲'), + ('田', '釉'), + ('田', '鈿'), + ('田', '錙'), + ('田', '鐇'), + ('田', '鐺'), + ('田', '鑛'), + ('田', '鑢'), + ('田', '鑪'), + ('田', '閘'), + ('田', '闡'), + ('田', '隗'), + ('田', '霤'), + ('田', '顆'), + ('田', '顋'), + ('田', '顰'), + ('田', '顱'), + ('田', '餽'), + ('田', '餾'), + ('田', '騁'), + ('田', '騾'), + ('田', '驢'), + ('田', '驥'), + ('田', '髀'), + ('田', '鬮'), + ('田', '魄'), + ('田', '魃'), + ('田', '魏'), + ('田', '魍'), + ('田', '魎'), + ('田', '魑'), + ('田', '魘'), + ('田', '魴'), + ('田', '鮓'), + ('田', '鮃'), + ('田', '鮑'), + ('田', '鮖'), + ('田', '鮗'), + ('田', '鮟'), + ('田', '鮠'), + ('田', '鮨'), + ('田', '鮴'), + ('田', '鯀'), + ('田', '鯊'), + ('田', '鮹'), + ('田', '鯆'), + ('田', '鯏'), + ('田', '鯑'), + ('田', '鯒'), + ('田', '鯣'), + ('田', '鯢'), + ('田', '鯤'), + ('田', '鯔'), + ('田', '鯡'), + ('田', '鰺'), + ('田', '鯲'), + ('田', '鯱'), + ('田', '鯰'), + ('田', '鰕'), + ('田', '鰔'), + ('田', '鰉'), + ('田', '鰓'), + ('田', '鰌'), + ('田', '鰆'), + ('田', '鰈'), + ('田', '鰒'), + ('田', '鰊'), + ('田', '鰄'), + ('田', '鰮'), + ('田', '鰛'), + ('田', '鰥'), + ('田', '鰤'), + ('田', '鰡'), + ('田', '鰰'), + ('田', '鱇'), + ('田', '鰲'), + ('田', '鱆'), + ('田', '鰾'), + ('田', '鱚'), + ('田', '鱠'), + ('田', '鱧'), + ('田', '鱶'), + ('田', '鱸'), + ('田', '鶇'), + ('田', '鵯'), + ('田', '鷭'), + ('田', '黌'), + ('田', '鼬'), + ('田', '鼾'), + ('田', '龜'), + ('疋', '擬'), + ('疋', '疑'), + ('疋', '凝'), + ('疋', '従'), + ('疋', '縦'), + ('疋', '捷'), + ('疋', '錠'), + ('疋', '是'), + ('疋', '旋'), + ('疋', '楚'), + ('疋', '礎'), + ('疋', '醍'), + ('疋', '題'), + ('疋', '綻'), + ('疋', '蛋'), + ('疋', '堤'), + ('疋', '定'), + ('疋', '提'), + ('疋', '碇'), + ('疋', '疋'), + ('疋', '婿'), + ('疋', '淀'), + ('疋', '丐'), + ('疋', '嚔'), + ('疋', '嚏'), + ('疋', '壻'), + ('疋', '寔'), + ('疋', '嶷'), + ('疋', '從'), + ('疋', '徙'), + ('疋', '慫'), + ('疋', '掟'), + ('疋', '樅'), + ('疋', '癡'), + ('疋', '礙'), + ('疋', '聢'), + ('疋', '聳'), + ('疋', '胥'), + ('疋', '蔬'), + ('疋', '諚'), + ('疋', '蹤'), + ('疋', '麪'), + ('疔', '疫'), + ('疔', '癌'), + ('疔', '痕'), + ('疔', '痔'), + ('疔', '嫉'), + ('疔', '疾'), + ('疔', '症'), + ('疔', '疹'), + ('疔', '痩'), + ('疔', '痴'), + ('疔', '痛'), + ('疔', '痘'), + ('疔', '疲'), + ('疔', '病'), + ('疔', '癖'), + ('疔', '癒'), + ('疔', '痢'), + ('疔', '療'), + ('疔', '疔'), + ('疔', '疚'), + ('疔', '疝'), + ('疔', '疥'), + ('疔', '疣'), + ('疔', '痂'), + ('疔', '疳'), + ('疔', '痃'), + ('疔', '疵'), + ('疔', '疽'), + ('疔', '疸'), + ('疔', '疼'), + ('疔', '疱'), + ('疔', '痍'), + ('疔', '痊'), + ('疔', '痒'), + ('疔', '痙'), + ('疔', '痣'), + ('疔', '痞'), + ('疔', '痾'), + ('疔', '痿'), + ('疔', '痼'), + ('疔', '瘁'), + ('疔', '痰'), + ('疔', '痺'), + ('疔', '痲'), + ('疔', '痳'), + ('疔', '瘋'), + ('疔', '瘍'), + ('疔', '瘉'), + ('疔', '瘟'), + ('疔', '瘧'), + ('疔', '瘠'), + ('疔', '瘡'), + ('疔', '瘢'), + ('疔', '瘤'), + ('疔', '瘴'), + ('疔', '瘰'), + ('疔', '瘻'), + ('疔', '癇'), + ('疔', '癈'), + ('疔', '癆'), + ('疔', '癜'), + ('疔', '癘'), + ('疔', '癡'), + ('疔', '癢'), + ('疔', '癨'), + ('疔', '癩'), + ('疔', '癪'), + ('疔', '癧'), + ('疔', '癬'), + ('疔', '癰'), + ('疔', '癲'), + ('疔', '臧'), + ('疔', '贓'), + ('癶', '葵'), + ('癶', '祭'), + ('癶', '際'), + ('癶', '察'), + ('癶', '擦'), + ('癶', '澄'), + ('癶', '脊'), + ('癶', '登'), + ('癶', '燈'), + ('癶', '鐙'), + ('癶', '廃'), + ('癶', '溌'), + ('癶', '発'), + ('癶', '醗'), + ('癶', '嶝'), + ('癶', '廢'), + ('癶', '揆'), + ('癶', '撥'), + ('癶', '橙'), + ('癶', '瘠'), + ('癶', '癈'), + ('癶', '癶'), + ('癶', '癸'), + ('癶', '發'), + ('癶', '磴'), + ('癶', '蔡'), + ('癶', '證'), + ('癶', '蹐'), + ('白', '皆'), + ('白', '階'), + ('白', '楽'), + ('白', '兜'), + ('白', '栢'), + ('白', '翫'), + ('白', '願'), + ('白', '錦'), + ('白', '激'), + ('白', '原'), + ('白', '源'), + ('白', '皇'), + ('白', '狛'), + ('白', '皐'), + ('白', '習'), + ('白', '宿'), + ('白', '縮'), + ('白', '擾'), + ('白', '摺'), + ('白', '泉'), + ('白', '線'), + ('白', '腺'), + ('白', '的'), + ('白', '島'), + ('白', '伯'), + ('白', '拍'), + ('白', '柏'), + ('白', '泊'), + ('白', '白'), + ('白', '箔'), + ('白', '粕'), + ('白', '舶'), + ('白', '迫'), + ('白', '畠'), + ('白', '弼'), + ('白', '百'), + ('白', '碧'), + ('白', '貌'), + ('白', '穆'), + ('白', '棉'), + ('白', '綿'), + ('白', '優'), + ('白', '憂'), + ('白', '佰'), + ('白', '偕'), + ('白', '凰'), + ('白', '岶'), + ('白', '帛'), + ('白', '徨'), + ('白', '徼'), + ('白', '怕'), + ('白', '惶'), + ('白', '愿'), + ('白', '慴'), + ('白', '戛'), + ('白', '揩'), + ('白', '擽'), + ('白', '梍'), + ('白', '楷'), + ('白', '楾'), + ('白', '樂'), + ('白', '槹'), + ('白', '檄'), + ('白', '櫟'), + ('白', '檪'), + ('白', '湟'), + ('白', '湶'), + ('白', '煌'), + ('白', '爍'), + ('白', '珀'), + ('白', '瓸'), + ('白', '皀'), + ('白', '皃'), + ('白', '皈'), + ('白', '皋'), + ('白', '皎'), + ('白', '皖'), + ('白', '皓'), + ('白', '皙'), + ('白', '皚'), + ('白', '礫'), + ('白', '竅'), + ('白', '竡'), + ('白', '篁'), + ('白', '粨'), + ('白', '緜'), + ('白', '葩'), + ('白', '蓿'), + ('白', '藥'), + ('白', '蝗'), + ('白', '袙'), + ('白', '褶'), + ('白', '覈'), + ('白', '諧'), + ('白', '貊'), + ('白', '轢'), + ('白', '遑'), + ('白', '邀'), + ('白', '鍠'), + ('白', '鏥'), + ('白', '鑠'), + ('白', '陌'), + ('白', '隍'), + ('白', '魄'), + ('白', '鰉'), + ('皮', '頗'), + ('皮', '波'), + ('皮', '破'), + ('皮', '婆'), + ('皮', '彼'), + ('皮', '披'), + ('皮', '疲'), + ('皮', '皮'), + ('皮', '被'), + ('皮', '簸'), + ('皮', '坡'), + ('皮', '玻'), + ('皮', '皰'), + ('皮', '皴'), + ('皮', '皸'), + ('皮', '皹'), + ('皮', '皺'), + ('皮', '碆'), + ('皮', '菠'), + ('皮', '跛'), + ('皮', '陂'), + ('皮', '鞁'), + ('皮', '皷'), + ('皿', '溢'), + ('皿', '盈'), + ('皿', '益'), + ('皿', '塩'), + ('皿', '温'), + ('皿', '蓋'), + ('皿', '監'), + ('皿', '艦'), + ('皿', '鑑'), + ('皿', '血'), + ('皿', '皿'), + ('皿', '衆'), + ('皿', '盛'), + ('皿', '盗'), + ('皿', '盃'), + ('皿', '櫨'), + ('皿', '盤'), + ('皿', '盆'), + ('皿', '盟'), + ('皿', '孟'), + ('皿', '猛'), + ('皿', '濫'), + ('皿', '藍'), + ('皿', '儘'), + ('皿', '儖'), + ('皿', '壗'), + ('皿', '媼'), + ('皿', '廬'), + ('皿', '恤'), + ('皿', '慍'), + ('皿', '楹'), + ('皿', '榲'), + ('皿', '檻'), + ('皿', '盜'), + ('皿', '洫'), + ('皿', '溘'), + ('皿', '瀘'), + ('皿', '燼'), + ('皿', '爐'), + ('皿', '瘟'), + ('皿', '盂'), + ('皿', '盍'), + ('皿', '盖'), + ('皿', '盒'), + ('皿', '盞'), + ('皿', '盡'), + ('皿', '盥'), + ('皿', '盧'), + ('皿', '盪'), + ('皿', '蘯'), + ('皿', '籃'), + ('皿', '縊'), + ('皿', '繿'), + ('皿', '膃'), + ('皿', '臚'), + ('皿', '艫'), + ('皿', '葢'), + ('皿', '薀'), + ('皿', '蘊'), + ('皿', '蘆'), + ('皿', '蠱'), + ('皿', '衄'), + ('皿', '衂'), + ('皿', '褞'), + ('皿', '襤'), + ('皿', '謚'), + ('皿', '諡'), + ('皿', '謐'), + ('皿', '贐'), + ('皿', '轤'), + ('皿', '醢'), + ('皿', '醯'), + ('皿', '鎰'), + ('皿', '鑪'), + ('皿', '闔'), + ('皿', '隘'), + ('皿', '顱'), + ('皿', '饂'), + ('皿', '驢'), + ('皿', '鰮'), + ('皿', '鰛'), + ('皿', '鱸'), + ('皿', '鷁'), + ('皿', '鹽'), + ('目', '姐'), + ('目', '遺'), + ('目', '員'), + ('目', '韻'), + ('目', '唄'), + ('目', '叡'), + ('目', '嬰'), + ('目', '穎'), + ('目', '頴'), + ('目', '榎'), + ('目', '貨'), + ('目', '賀'), + ('目', '貝'), + ('目', '額'), + ('目', '顎'), + ('目', '且'), + ('目', '慣'), + ('目', '看'), + ('目', '貫'), + ('目', '眼'), + ('目', '贋'), + ('目', '頑'), + ('目', '顔'), + ('目', '願'), + ('目', '貴'), + ('目', '宜'), + ('目', '誼'), + ('目', '倶'), + ('目', '具'), + ('目', '傾'), + ('目', '頚'), + ('目', '懸'), + ('目', '県'), + ('目', '見'), + ('目', '賢'), + ('目', '顕'), + ('目', '顧'), + ('目', '貢'), + ('目', '購'), + ('目', '項'), + ('目', '頃'), + ('目', '査'), + ('目', '鎖'), + ('目', '債'), + ('目', '財'), + ('目', '算'), + ('目', '纂'), + ('目', '讃'), + ('目', '賛'), + ('目', '資'), + ('目', '賜'), + ('目', '質'), + ('目', '首'), + ('目', '瞬'), + ('目', '循'), + ('目', '楯'), + ('目', '盾'), + ('目', '順'), + ('目', '助'), + ('目', '鋤'), + ('目', '償'), + ('目', '湘'), + ('目', '省'), + ('目', '賞'), + ('目', '埴'), + ('目', '植'), + ('目', '殖'), + ('目', '慎'), + ('目', '真'), + ('目', '須'), + ('目', '睡'), + ('目', '頗'), + ('目', '瀬'), + ('目', '積'), + ('目', '績'), + ('目', '責'), + ('目', '蹟'), + ('目', '碩'), + ('目', '賎'), + ('目', '岨'), + ('目', '狙'), + ('目', '祖'), + ('目', '租'), + ('目', '粗'), + ('目', '組'), + ('目', '阻'), + ('目', '想'), + ('目', '相'), + ('目', '霜'), + ('目', '贈'), + ('目', '側'), + ('目', '則'), + ('目', '測'), + ('目', '賊'), + ('目', '損'), + ('目', '貸'), + ('目', '題'), + ('目', '値'), + ('目', '置'), + ('目', '着'), + ('目', '貯'), + ('目', '眺'), + ('目', '頂'), + ('目', '直'), + ('目', '賃'), + ('目', '鎮'), + ('目', '漬'), + ('目', '潰'), + ('目', '偵'), + ('目', '貞'), + ('目', '禎'), + ('目', '鼎'), + ('目', '填'), + ('目', '貼'), + ('目', '顛'), + ('目', '賭'), + ('目', '頭'), + ('目', '瞳'), + ('目', '督'), + ('目', '噸'), + ('目', '遁'), + ('目', '頓'), + ('目', '賑'), + ('目', '敗'), + ('目', '狽'), + ('目', '買'), + ('目', '賠'), + ('目', '箱'), + ('目', '販'), + ('目', '煩'), + ('目', '頒'), + ('目', '費'), + ('目', '眉'), + ('目', '瀕'), + ('目', '貧'), + ('目', '賓'), + ('目', '頻'), + ('目', '負'), + ('目', '賦'), + ('目', '噴'), + ('目', '墳'), + ('目', '憤'), + ('目', '頁'), + ('目', '瞥'), + ('目', '帽'), + ('目', '冒'), + ('目', '貿'), + ('目', '頬'), + ('目', '睦'), + ('目', '槙'), + ('目', '眠'), + ('目', '盲'), + ('目', '目'), + ('目', '貰'), + ('目', '預'), + ('目', '頼'), + ('目', '瞭'), + ('目', '領'), + ('目', '類'), + ('目', '嶺'), + ('目', '賂'), + ('目', '賄'), + ('目', '俎'), + ('目', '價'), + ('目', '勗'), + ('目', '勣'), + ('目', '匱'), + ('目', '厠'), + ('目', '簒'), + ('目', '咀'), + ('目', '嗔'), + ('目', '嘖'), + ('目', '嚶'), + ('目', '囎'), + ('目', '圓'), + ('目', '夐'), + ('目', '媚'), + ('目', '嬪'), + ('目', '嬶'), + ('目', '嬾'), + ('目', '孀'), + ('目', '實'), + ('目', '寶'), + ('目', '寳'), + ('目', '屓'), + ('目', '嵋'), + ('目', '巓'), + ('目', '幀'), + ('目', '廁'), + ('目', '廂'), + ('目', '徂'), + ('目', '悳'), + ('目', '惧'), + ('目', '惻'), + ('目', '愼'), + ('目', '懶'), + ('目', '懼'), + ('目', '擯'), + ('目', '攅'), + ('目', '攫'), + ('目', '柤'), + ('目', '槓'), + ('目', '樌'), + ('目', '櫃'), + ('目', '檳'), + ('目', '櫻'), + ('目', '殞'), + ('目', '殯'), + ('目', '氈'), + ('目', '沮'), + ('目', '泪'), + ('目', '渣'), + ('目', '渺'), + ('目', '潁'), + ('目', '濆'), + ('目', '濬'), + ('目', '濱'), + ('目', '濺'), + ('目', '熕'), + ('目', '爼'), + ('目', '牘'), + ('目', '犢'), + ('目', '獺'), + ('目', '瑁'), + ('目', '瑣'), + ('目', '瓊'), + ('目', '瓔'), + ('目', '疊'), + ('目', '疂'), + ('目', '疽'), + ('目', '癩'), + ('目', '癪'), + ('目', '癲'), + ('目', '盻'), + ('目', '眈'), + ('目', '眇'), + ('目', '眄'), + ('目', '眩'), + ('目', '眤'), + ('目', '眞'), + ('目', '眥'), + ('目', '眦'), + ('目', '眛'), + ('目', '眷'), + ('目', '眸'), + ('目', '睇'), + ('目', '睚'), + ('目', '睨'), + ('目', '睫'), + ('目', '睛'), + ('目', '睥'), + ('目', '睿'), + ('目', '睾'), + ('目', '睹'), + ('目', '瞎'), + ('目', '瞋'), + ('目', '瞑'), + ('目', '瞠'), + ('目', '瞞'), + ('目', '瞰'), + ('目', '瞶'), + ('目', '瞹'), + ('目', '瞿'), + ('目', '瞼'), + ('目', '瞽'), + ('目', '瞻'), + ('目', '矇'), + ('目', '矍'), + ('目', '矗'), + ('目', '矚'), + ('目', '砠'), + ('目', '碵'), + ('目', '磧'), + ('目', '稙'), + ('目', '竇'), + ('目', '簀'), + ('目', '簣'), + ('目', '籟'), + ('目', '緲'), + ('目', '縣'), + ('目', '繽'), + ('目', '纈'), + ('目', '纉'), + ('目', '續'), + ('目', '纐'), + ('目', '纓'), + ('目', '纛'), + ('目', '罌'), + ('目', '耡'), + ('目', '膩'), + ('目', '苴'), + ('目', '苜'), + ('目', '莇'), + ('目', '萓'), + ('目', '蕷'), + ('目', '蘋'), + ('目', '藾'), + ('目', '蛆'), + ('目', '衢'), + ('目', '襭'), + ('目', '覿'), + ('目', '詛'), + ('目', '讀'), + ('目', '讚'), + ('目', '戝'), + ('目', '貭'), + ('目', '貪'), + ('目', '貽'), + ('目', '貲'), + ('目', '貳'), + ('目', '貮'), + ('目', '貶'), + ('目', '賈'), + ('目', '賁'), + ('目', '賤'), + ('目', '賣'), + ('目', '賚'), + ('目', '賽'), + ('目', '賺'), + ('目', '賻'), + ('目', '贄'), + ('目', '贅'), + ('目', '贊'), + ('目', '贇'), + ('目', '贏'), + ('目', '贍'), + ('目', '贐'), + ('目', '齎'), + ('目', '贓'), + ('目', '賍'), + ('目', '贔'), + ('目', '贖'), + ('目', '躓'), + ('目', '遉'), + ('目', '鎭'), + ('目', '鑽'), + ('目', '鑚'), + ('目', '钁'), + ('目', '闃'), + ('目', '隕'), + ('目', '雎'), + ('目', '靨'), + ('目', '頏'), + ('目', '頌'), + ('目', '頸'), + ('目', '頤'), + ('目', '頡'), + ('目', '頷'), + ('目', '頽'), + ('目', '顆'), + ('目', '顏'), + ('目', '顋'), + ('目', '顫'), + ('目', '顯'), + ('目', '顰'), + ('目', '顱'), + ('目', '顴'), + ('目', '顳'), + ('目', '颶'), + ('目', '饋'), + ('目', '馗'), + ('目', '馘'), + ('目', '鬚'), + ('目', '鬢'), + ('目', '鵙'), + ('目', '鷆'), + ('目', '鷏'), + ('目', '鸚'), + ('目', '黷'), + ('目', '鼾'), + ('目', '齟'), + ('目', '槇'), + ('矛', '茅'), + ('矛', '橘'), + ('矛', '柔'), + ('矛', '務'), + ('矛', '矛'), + ('矛', '霧'), + ('矛', '野'), + ('矛', '豫'), + ('矛', '舒'), + ('矛', '懋'), + ('矛', '抒'), + ('矛', '揉'), + ('矛', '杼'), + ('矛', '楙'), + ('矛', '矜'), + ('矛', '糅'), + ('矛', '蕷'), + ('矛', '袤'), + ('矛', '譎'), + ('矛', '蹂'), + ('矛', '鞣'), + ('矛', '鶩'), + ('矛', '鷸'), + ('矢', '挨'), + ('矢', '医'), + ('矢', '勧'), + ('矢', '歓'), + ('矢', '潅'), + ('矢', '観'), + ('矢', '擬'), + ('矢', '疑'), + ('矢', '矯'), + ('矢', '凝'), + ('矢', '矩'), + ('矢', '権'), + ('矢', '侯'), + ('矢', '候'), + ('矢', '喉'), + ('矢', '嫉'), + ('矢', '疾'), + ('矢', '族'), + ('矢', '短'), + ('矢', '知'), + ('矢', '智'), + ('矢', '痴'), + ('矢', '蜘'), + ('矢', '迭'), + ('矢', '鉄'), + ('矢', '薙'), + ('矢', '矧'), + ('矢', '矢'), + ('矢', '俟'), + ('矢', '嗾'), + ('矢', '埃'), + ('矢', '嶷'), + ('矢', '椥'), + ('矢', '欸'), + ('矢', '猴'), + ('矢', '癡'), + ('矢', '矣'), + ('矢', '矮'), + ('矢', '礙'), + ('矢', '竢'), + ('矢', '笶'), + ('矢', '篌'), + ('矢', '簇'), + ('矢', '翳'), + ('矢', '聟'), + ('矢', '肄'), + ('矢', '蔟'), + ('矢', '踟'), + ('矢', '醫'), + ('矢', '鏃'), + ('矢', '雉'), + ('石', '磯'), + ('石', '碓'), + ('石', '碍'), + ('石', '確'), + ('石', '岩'), + ('石', '砧'), + ('石', '研'), + ('石', '硯'), + ('石', '碁'), + ('石', '硬'), + ('石', '砿'), + ('石', '砂'), + ('石', '砕'), + ('石', '砦'), + ('石', '碕'), + ('石', '磁'), + ('石', '硝'), + ('石', '礁'), + ('石', '石'), + ('石', '碩'), + ('石', '礎'), + ('石', '拓'), + ('石', '柘'), + ('石', '碇'), + ('石', '妬'), + ('石', '砥'), + ('石', '砺'), + ('石', '宕'), + ('石', '破'), + ('石', '硲'), + ('石', '磐'), + ('石', '碑'), + ('石', '碧'), + ('石', '砲'), + ('石', '磨'), + ('石', '硫'), + ('石', '碗'), + ('石', '斫'), + ('石', '矼'), + ('石', '砌'), + ('石', '砒'), + ('石', '礦'), + ('石', '砠'), + ('石', '礪'), + ('石', '硅'), + ('石', '碎'), + ('石', '硴'), + ('石', '碆'), + ('石', '硼'), + ('石', '碚'), + ('石', '碌'), + ('石', '碣'), + ('石', '碵'), + ('石', '碪'), + ('石', '碯'), + ('石', '磑'), + ('石', '磆'), + ('石', '磋'), + ('石', '磔'), + ('石', '碾'), + ('石', '碼'), + ('石', '磅'), + ('石', '磊'), + ('石', '磬'), + ('石', '磧'), + ('石', '磚'), + ('石', '磽'), + ('石', '磴'), + ('石', '礇'), + ('石', '礒'), + ('石', '礑'), + ('石', '礙'), + ('石', '礬'), + ('石', '礫'), + ('石', '蠹'), + ('石', '蠧'), + ('石', '跖'), + ('石', '鉐'), + ('石', '鮖'), + ('示', '尉'), + ('示', '慰'), + ('示', '蔚'), + ('示', '頴'), + ('示', '款'), + ('示', '禦'), + ('示', '禁'), + ('示', '襟'), + ('示', '祭'), + ('示', '斎'), + ('示', '際'), + ('示', '察'), + ('示', '擦'), + ('示', '示'), + ('示', '宗'), + ('示', '崇'), + ('示', '綜'), + ('示', '奈'), + ('示', '捺'), + ('示', '標'), + ('示', '漂'), + ('示', '瓢'), + ('示', '票'), + ('示', '蒜'), + ('示', '余'), + ('示', '隷'), + ('示', '凛'), + ('示', '剽'), + ('示', '噤'), + ('示', '嫖'), + ('示', '慓'), + ('示', '棕'), + ('示', '淙'), + ('示', '熨'), + ('示', '祟'), + ('示', '禀'), + ('示', '粽'), + ('示', '縹'), + ('示', '蔡'), + ('示', '踪'), + ('示', '隸'), + ('示', '飄'), + ('示', '飃'), + ('示', '驃'), + ('示', '鰾'), + ('禹', '禽'), + ('禹', '愚'), + ('禹', '偶'), + ('禹', '寓'), + ('禹', '遇'), + ('禹', '隅'), + ('禹', '檎'), + ('禹', '嘱'), + ('禹', '属'), + ('禹', '璃'), + ('禹', '離'), + ('禹', '勵'), + ('禹', '嵎'), + ('禹', '擒'), + ('禹', '漓'), + ('禹', '癘'), + ('禹', '礪'), + ('禹', '禹'), + ('禹', '禺'), + ('禹', '竊'), + ('禹', '籬'), + ('禹', '糲'), + ('禹', '萬'), + ('禹', '藕'), + ('禹', '蠣'), + ('禹', '辭'), + ('禹', '邁'), + ('禹', '魑'), + ('禹', '黐'), + ('禹', '齲'), + ('禾', '穐'), + ('禾', '委'), + ('禾', '移'), + ('禾', '萎'), + ('禾', '稲'), + ('禾', '穎'), + ('禾', '穏'), + ('禾', '科'), + ('禾', '禾'), + ('禾', '稼'), + ('禾', '馨'), + ('禾', '穫'), + ('禾', '鰍'), + ('禾', '季'), + ('禾', '稀'), + ('禾', '黍'), + ('禾', '菌'), + ('禾', '鍬'), + ('禾', '稽'), + ('禾', '稿'), + ('禾', '香'), + ('禾', '穀'), + ('禾', '私'), + ('禾', '斜'), + ('禾', '種'), + ('禾', '愁'), + ('禾', '秀'), + ('禾', '秋'), + ('禾', '叙'), + ('禾', '徐'), + ('禾', '除'), + ('禾', '称'), + ('禾', '笑'), + ('禾', '乗'), + ('禾', '穣'), + ('禾', '榛'), + ('禾', '秦'), + ('禾', '税'), + ('禾', '積'), + ('禾', '租'), + ('禾', '蘇'), + ('禾', '奏'), + ('禾', '稚'), + ('禾', '秩'), + ('禾', '程'), + ('禾', '透'), + ('禾', '禿'), + ('禾', '秤'), + ('禾', '萩'), + ('禾', '秘'), + ('禾', '稗'), + ('禾', '秒'), + ('禾', '穂'), + ('禾', '穆'), + ('禾', '稔'), + ('禾', '誘'), + ('禾', '利'), + ('禾', '梨'), + ('禾', '痢'), + ('禾', '稜'), + ('禾', '倭'), + ('禾', '和'), + ('禾', '俐'), + ('禾', '啝'), + ('禾', '啾'), + ('禾', '巍'), + ('禾', '廩'), + ('禾', '悧'), + ('禾', '悸'), + ('禾', '愀'), + ('禾', '懍'), + ('禾', '楸'), + ('禾', '湫'), + ('禾', '犂'), + ('禾', '犁'), + ('禾', '犧'), + ('禾', '甃'), + ('禾', '痿'), + ('禾', '癪'), + ('禾', '矮'), + ('禾', '秉'), + ('禾', '秕'), + ('禾', '秧'), + ('禾', '秬'), + ('禾', '秡'), + ('禾', '秣'), + ('禾', '稈'), + ('禾', '稍'), + ('禾', '稘'), + ('禾', '稙'), + ('禾', '稠'), + ('禾', '稟'), + ('禾', '稱'), + ('禾', '稻'), + ('禾', '稾'), + ('禾', '稷'), + ('禾', '穃'), + ('禾', '穗'), + ('禾', '穉'), + ('禾', '穡'), + ('禾', '穢'), + ('禾', '穩'), + ('禾', '龝'), + ('禾', '穰'), + ('禾', '箘'), + ('禾', '綉'), + ('禾', '羲'), + ('禾', '臻'), + ('禾', '莠'), + ('禾', '莉'), + ('禾', '萪'), + ('禾', '蓁'), + ('禾', '薐'), + ('禾', '藜'), + ('禾', '蘓'), + ('禾', '蜊'), + ('禾', '蝌'), + ('禾', '逶'), + ('禾', '酥'), + ('禾', '銹'), + ('禾', '鞦'), + ('禾', '頽'), + ('禾', '馥'), + ('禾', '魏'), + ('禾', '鯏'), + ('禾', '麕'), + ('禾', '黎'), + ('禾', '黏'), + ('禾', '黐'), + ('禾', '凜'), + ('穴', '窺'), + ('穴', '竃'), + ('穴', '究'), + ('穴', '窮'), + ('穴', '空'), + ('穴', '窟'), + ('穴', '窪'), + ('穴', '穴'), + ('穴', '控'), + ('穴', '腔'), + ('穴', '搾'), + ('穴', '窄'), + ('穴', '窃'), + ('穴', '穿'), + ('穴', '窓'), + ('穴', '窒'), + ('穴', '突'), + ('穴', '容'), + ('穴', '溶'), + ('穴', '熔'), + ('穴', '窯'), + ('穴', '蓉'), + ('穴', '倥'), + ('穴', '啌'), + ('穴', '椌'), + ('穴', '榕'), + ('穴', '穃'), + ('穴', '穹'), + ('穴', '穽'), + ('穴', '窈'), + ('穴', '窗'), + ('穴', '窕'), + ('穴', '窘'), + ('穴', '窖'), + ('穴', '窩'), + ('穴', '竈'), + ('穴', '窰'), + ('穴', '窶'), + ('穴', '竅'), + ('穴', '竄'), + ('穴', '窿'), + ('穴', '邃'), + ('穴', '竇'), + ('穴', '竊'), + ('穴', '箜'), + ('穴', '膣'), + ('穴', '邊'), + ('穴', '鎔'), + ('穴', '鴪'), + ('立', '梓'), + ('立', '暗'), + ('立', '闇'), + ('立', '位'), + ('立', '意'), + ('立', '韻'), + ('立', '億'), + ('立', '憶'), + ('立', '臆'), + ('立', '音'), + ('立', '笠'), + ('立', '顔'), + ('立', '毅'), + ('立', '泣'), + ('立', '競'), + ('立', '境'), + ('立', '鏡'), + ('立', '響'), + ('立', '諺'), + ('立', '倖'), + ('立', '幸'), + ('立', '宰'), + ('立', '薩'), + ('立', '産'), + ('立', '辞'), + ('立', '識'), + ('立', '執'), + ('立', '蔀'), + ('立', '襲'), + ('立', '竣'), + ('立', '商'), + ('立', '妾'), + ('立', '彰'), + ('立', '樟'), + ('立', '章'), + ('立', '鐘'), + ('立', '障'), + ('立', '織'), + ('立', '職'), + ('立', '新'), + ('立', '薪'), + ('立', '親'), + ('立', '辛'), + ('立', '接'), + ('立', '滝'), + ('立', '瀧'), + ('立', '鐸'), + ('立', '竪'), + ('立', '端'), + ('立', '嫡'), + ('立', '寵'), + ('立', '帝'), + ('立', '締'), + ('立', '諦'), + ('立', '蹄'), + ('立', '摘'), + ('立', '敵'), + ('立', '滴'), + ('立', '適'), + ('立', '鏑'), + ('立', '憧'), + ('立', '撞'), + ('立', '瞳'), + ('立', '童'), + ('立', '倍'), + ('立', '培'), + ('立', '賠'), + ('立', '陪'), + ('立', '噺'), + ('立', '避'), + ('立', '彦'), + ('立', '部'), + ('立', '僻'), + ('立', '壁'), + ('立', '癖'), + ('立', '菩'), + ('立', '報'), + ('立', '傍'), + ('立', '剖'), + ('立', '靖'), + ('立', '翌'), + ('立', '立'), + ('立', '粒'), + ('立', '竜'), + ('立', '龍'), + ('立', '篭'), + ('立', '聾'), + ('立', '偐'), + ('立', '僮'), + ('立', '竸'), + ('立', '劈'), + ('立', '辨'), + ('立', '辧'), + ('立', '啻'), + ('立', '啼'), + ('立', '噫'), + ('立', '圉'), + ('立', '壟'), + ('立', '竒'), + ('立', '嬖'), + ('立', '嵜'), + ('立', '嶂'), + ('立', '幟'), + ('立', '幢'), + ('立', '懌'), + ('立', '拉'), + ('立', '摯'), + ('立', '擇'), + ('立', '撻'), + ('立', '擘'), + ('立', '旁'), + ('立', '朧'), + ('立', '柆'), + ('立', '椄'), + ('立', '楴'), + ('立', '榜'), + ('立', '槞'), + ('立', '橦'), + ('立', '檍'), + ('立', '檗'), + ('立', '蘗'), + ('立', '蘖'), + ('立', '殕'), + ('立', '滓'), + ('立', '滂'), + ('立', '潼'), + ('立', '澤'), + ('立', '焙'), + ('立', '熾'), + ('立', '燵'), + ('立', '璋'), + ('立', '璧'), + ('立', '瓏'), + ('立', '瓣'), + ('立', '甓'), + ('立', '瘴'), + ('立', '睾'), + ('立', '碚'), + ('立', '磅'), + ('立', '竍'), + ('立', '竏'), + ('立', '竕'), + ('立', '竓'), + ('立', '站'), + ('立', '竚'), + ('立', '竝'), + ('立', '竡'), + ('立', '竢'), + ('立', '竦'), + ('立', '竭'), + ('立', '竰'), + ('立', '籠'), + ('立', '縡'), + ('立', '繹'), + ('立', '辮'), + ('立', '翊'), + ('立', '膀'), + ('立', '臂'), + ('立', '艟'), + ('立', '苙'), + ('立', '莅'), + ('立', '蒂'), + ('立', '蒟'), + ('立', '蒡'), + ('立', '薛'), + ('立', '薜'), + ('立', '蘢'), + ('立', '蟄'), + ('立', '襞'), + ('立', '襯'), + ('立', '諳'), + ('立', '謗'), + ('立', '謫'), + ('立', '譬'), + ('立', '譯'), + ('立', '贄'), + ('立', '躄'), + ('立', '辜'), + ('立', '辟'), + ('立', '辣'), + ('立', '辭'), + ('立', '辯'), + ('立', '逹'), + ('立', '釋'), + ('立', '闥'), + ('立', '闢'), + ('立', '隴'), + ('立', '霎'), + ('立', '霹'), + ('立', '竟'), + ('立', '韶'), + ('立', '韵'), + ('立', '颯'), + ('立', '驛'), + ('立', '鱆'), + ('立', '鷙'), + ('立', '黯'), + ('立', '龕'), + ('初', '袷'), + ('初', '襖'), + ('初', '褐'), + ('初', '衿'), + ('初', '襟'), + ('初', '袴'), + ('初', '初'), + ('初', '裾'), + ('初', '袖'), + ('初', '被'), + ('初', '複'), + ('初', '補'), + ('初', '裕'), + ('初', '裸'), + ('初', '裡'), + ('初', '衫'), + ('初', '衵'), + ('初', '衽'), + ('初', '袵'), + ('初', '衲'), + ('初', '袂'), + ('初', '袗'), + ('初', '袒'), + ('初', '袮'), + ('初', '袙'), + ('初', '袢'), + ('初', '袍'), + ('初', '袿'), + ('初', '袱'), + ('初', '裃'), + ('初', '裄'), + ('初', '裙'), + ('初', '褂'), + ('初', '裼'), + ('初', '裨'), + ('初', '裲'), + ('初', '褄'), + ('初', '褌'), + ('初', '褊'), + ('初', '褓'), + ('初', '褞'), + ('初', '褥'), + ('初', '褪'), + ('初', '褫'), + ('初', '襁'), + ('初', '褶'), + ('初', '褸'), + ('初', '襌'), + ('初', '褝'), + ('初', '襠'), + ('初', '襦'), + ('初', '襤'), + ('初', '襭'), + ('初', '襪'), + ('初', '襯'), + ('初', '襴'), + ('初', '襷'), + ('初', '襍'), + ('世', '笹'), + ('世', '世'), + ('世', '喋'), + ('世', '牒'), + ('世', '蝶'), + ('世', '諜'), + ('世', '貰'), + ('世', '葉'), + ('世', '楪'), + ('世', '泄'), + ('世', '渫'), + ('世', '紲'), + ('世', '緤'), + ('世', '鰈'), + ('巨', '巨'), + ('巨', '拒'), + ('巨', '渠'), + ('巨', '距'), + ('巨', '矩'), + ('巨', '炬'), + ('巨', '秬'), + ('巨', '苣'), + ('巨', '鉅'), + ('冊', '柵'), + ('冊', '冊'), + ('冊', '珊'), + ('冊', '偏'), + ('冊', '篇'), + ('冊', '編'), + ('冊', '遍'), + ('冊', '倫'), + ('冊', '輪'), + ('冊', '論'), + ('冊', '侖'), + ('冊', '刪'), + ('冊', '崙'), + ('冊', '崘'), + ('冊', '扁'), + ('冊', '棆'), + ('冊', '淪'), + ('冊', '籥'), + ('冊', '綸'), + ('冊', '翩'), + ('冊', '蝙'), + ('冊', '褊'), + ('冊', '諞'), + ('冊', '跚'), + ('冊', '鑰'), + ('冊', '騙'), + ('冊', '龠'), + ('母', '悔'), + ('母', '晦'), + ('母', '海'), + ('母', '慣'), + ('母', '貫'), + ('母', '栂'), + ('母', '毒'), + ('母', '梅'), + ('母', '繁'), + ('母', '敏'), + ('母', '侮'), + ('母', '母'), + ('母', '毎'), + ('母', '塰'), + ('母', '姆'), + ('母', '拇'), + ('母', '毋'), + ('母', '毓'), + ('母', '纛'), + ('母', '苺'), + ('母', '莓'), + ('母', '袰'), + ('母', '誨'), + ('買', '欝'), + ('買', '鰻'), + ('買', '壊'), + ('買', '懐'), + ('買', '環'), + ('買', '還'), + ('買', '罫'), + ('買', '憲'), + ('買', '罪'), + ('買', '爵'), + ('買', '曙'), + ('買', '署'), + ('買', '薯'), + ('買', '燭'), + ('買', '鐸'), + ('買', '濁'), + ('買', '置'), + ('買', '聴'), + ('買', '徳'), + ('買', '寧'), + ('買', '罵'), + ('買', '買'), + ('買', '罰'), + ('買', '罷'), + ('買', '蔑'), + ('買', '慢'), + ('買', '漫'), + ('買', '蔓'), + ('買', '夢'), + ('買', '羅'), + ('買', '會'), + ('買', '儚'), + ('買', '曼'), + ('買', '嚀'), + ('買', '嚼'), + ('買', '囑'), + ('買', '圜'), + ('買', '堽'), + ('買', '壞'), + ('買', '寰'), + ('買', '屬'), + ('買', '幔'), + ('買', '廳'), + ('買', '廰'), + ('買', '懌'), + ('買', '懷'), + ('買', '罹'), + ('買', '擇'), + ('買', '擺'), + ('買', '檜'), + ('買', '楞'), + ('買', '檸'), + ('買', '澤'), + ('買', '濘'), + ('買', '獪'), + ('買', '獨'), + ('買', '獰'), + ('買', '甍'), + ('買', '睾'), + ('買', '矚'), + ('買', '縵'), + ('買', '繹'), + ('買', '繪'), + ('買', '罘'), + ('買', '罟'), + ('買', '罠'), + ('買', '罨'), + ('買', '罩'), + ('買', '罧'), + ('買', '罸'), + ('買', '羂'), + ('買', '羆'), + ('買', '羃'), + ('買', '羈'), + ('買', '羇'), + ('買', '聹'), + ('買', '聽'), + ('買', '膾'), + ('買', '薈'), + ('買', '薨'), + ('買', '蘰'), + ('買', '蘿'), + ('買', '蜀'), + ('買', '襪'), + ('買', '覽'), + ('買', '觸'), + ('買', '詈'), + ('買', '諫'), + ('買', '謾'), + ('買', '譯'), + ('買', '賣'), + ('買', '躅'), + ('買', '邏'), + ('買', '釋'), + ('買', '鏝'), + ('買', '鐶'), + ('買', '鑒'), + ('買', '鑼'), + ('買', '韈'), + ('買', '饅'), + ('買', '驛'), + ('買', '髑'), + ('買', '鬘'), + ('買', '鬟'), + ('買', '鰊'), + ('買', '鰥'), + ('買', '鱠'), + ('買', '鶫'), + ('牙', '厩'), + ('牙', '牙'), + ('牙', '芽'), + ('牙', '雅'), + ('牙', '慨'), + ('牙', '概'), + ('牙', '既'), + ('牙', '冴'), + ('牙', '邪'), + ('牙', '穿'), + ('牙', '呀'), + ('牙', '訝'), + ('牙', '谺'), + ('牙', '鴉'), + ('瓜', '瓜'), + ('瓜', '孤'), + ('瓜', '弧'), + ('瓜', '狐'), + ('瓜', '菰'), + ('瓜', '瓢'), + ('瓜', '呱'), + ('瓜', '柧'), + ('瓜', '瓠'), + ('瓜', '瓣'), + ('瓜', '觚'), + ('竹', '箇'), + ('竹', '笠'), + ('竹', '竿'), + ('竹', '管'), + ('竹', '簡'), + ('竹', '笈'), + ('竹', '筋'), + ('竹', '櫛'), + ('竹', '策'), + ('竹', '笹'), + ('竹', '算'), + ('竹', '纂'), + ('竹', '竺'), + ('竹', '篠'), + ('竹', '笑'), + ('竹', '笥'), + ('竹', '籍'), + ('竹', '節'), + ('竹', '箭'), + ('竹', '第'), + ('竹', '箪'), + ('竹', '築'), + ('竹', '竹'), + ('竹', '筑'), + ('竹', '笛'), + ('竹', '等'), + ('竹', '答'), + ('竹', '筒'), + ('竹', '篤'), + ('竹', '箔'), + ('竹', '箱'), + ('竹', '箸'), + ('竹', '筈'), + ('竹', '筏'), + ('竹', '範'), + ('竹', '簸'), + ('竹', '筆'), + ('竹', '符'), + ('竹', '箆'), + ('竹', '篇'), + ('竹', '簿'), + ('竹', '箕'), + ('竹', '簾'), + ('竹', '篭'), + ('竹', '簒'), + ('竹', '噬'), + ('竹', '擶'), + ('竹', '笂'), + ('竹', '笏'), + ('竹', '笊'), + ('竹', '笆'), + ('竹', '笳'), + ('竹', '笘'), + ('竹', '笙'), + ('竹', '笞'), + ('竹', '笵'), + ('竹', '笨'), + ('竹', '笶'), + ('竹', '筐'), + ('竹', '筺'), + ('竹', '笄'), + ('竹', '筍'), + ('竹', '笋'), + ('竹', '筌'), + ('竹', '筅'), + ('竹', '筵'), + ('竹', '筥'), + ('竹', '筴'), + ('竹', '筧'), + ('竹', '筰'), + ('竹', '筱'), + ('竹', '筬'), + ('竹', '筮'), + ('竹', '箝'), + ('竹', '箘'), + ('竹', '箟'), + ('竹', '箍'), + ('竹', '箜'), + ('竹', '箚'), + ('竹', '箋'), + ('竹', '箒'), + ('竹', '箏'), + ('竹', '筝'), + ('竹', '箙'), + ('竹', '篋'), + ('竹', '篁'), + ('竹', '篌'), + ('竹', '篏'), + ('竹', '箴'), + ('竹', '篆'), + ('竹', '篝'), + ('竹', '篩'), + ('竹', '簑'), + ('竹', '簔'), + ('竹', '篦'), + ('竹', '篥'), + ('竹', '籠'), + ('竹', '簀'), + ('竹', '簇'), + ('竹', '簓'), + ('竹', '篳'), + ('竹', '篷'), + ('竹', '簗'), + ('竹', '簍'), + ('竹', '篶'), + ('竹', '簣'), + ('竹', '簧'), + ('竹', '簪'), + ('竹', '簟'), + ('竹', '簷'), + ('竹', '簫'), + ('竹', '簽'), + ('竹', '籌'), + ('竹', '籃'), + ('竹', '籔'), + ('竹', '籏'), + ('竹', '籀'), + ('竹', '籐'), + ('竹', '籘'), + ('竹', '籟'), + ('竹', '籤'), + ('竹', '籖'), + ('竹', '籥'), + ('竹', '籬'), + ('米', '粟'), + ('米', '奥'), + ('米', '襖'), + ('米', '噛'), + ('米', '粥'), + ('米', '掬'), + ('米', '菊'), + ('米', '鞠'), + ('米', '粁'), + ('米', '粂'), + ('米', '継'), + ('米', '糊'), + ('米', '糠'), + ('米', '麹'), + ('米', '燦'), + ('米', '歯'), + ('米', '悉'), + ('米', '屡'), + ('米', '釈'), + ('米', '粛'), + ('米', '粧'), + ('米', '審'), + ('米', '粋'), + ('米', '数'), + ('米', '精'), + ('米', '糎'), + ('米', '粗'), + ('米', '糟'), + ('米', '断'), + ('米', '糖'), + ('米', '謎'), + ('米', '粘'), + ('米', '播'), + ('米', '粕'), + ('米', '幡'), + ('米', '藩'), + ('米', '釆'), + ('米', '番'), + ('米', '蕃'), + ('米', '粉'), + ('米', '糞'), + ('米', '米'), + ('米', '翻'), + ('米', '粍'), + ('米', '迷'), + ('米', '籾'), + ('米', '薮'), + ('米', '来'), + ('米', '莱'), + ('米', '粒'), + ('米', '料'), + ('米', '糧'), + ('米', '燐'), + ('米', '隣'), + ('米', '鱗'), + ('米', '麟'), + ('米', '類'), + ('米', '齢'), + ('米', '憐'), + ('米', '楼'), + ('米', '嘯'), + ('米', '囓'), + ('米', '墺'), + ('米', '奧'), + ('米', '屎'), + ('米', '彝'), + ('米', '彜'), + ('米', '愾'), + ('米', '懊'), + ('米', '旛'), + ('米', '旙'), + ('米', '椈'), + ('米', '氣'), + ('米', '渊'), + ('米', '潘'), + ('米', '澳'), + ('米', '瀋'), + ('米', '燔'), + ('米', '燠'), + ('米', '礇'), + ('米', '竊'), + ('米', '籔'), + ('米', '籵'), + ('米', '粃'), + ('米', '粐'), + ('米', '粤'), + ('米', '粭'), + ('米', '粢'), + ('米', '粫'), + ('米', '粡'), + ('米', '粨'), + ('米', '粳'), + ('米', '粲'), + ('米', '粱'), + ('米', '粮'), + ('米', '粹'), + ('米', '粽'), + ('米', '糀'), + ('米', '糅'), + ('米', '糂'), + ('米', '糘'), + ('米', '糒'), + ('米', '糜'), + ('米', '糢'), + ('米', '鬻'), + ('米', '糯'), + ('米', '糲'), + ('米', '糴'), + ('米', '糶'), + ('米', '繙'), + ('米', '飜'), + ('米', '膰'), + ('米', '蕭'), + ('米', '蟋'), + ('米', '蟠'), + ('米', '鄰'), + ('米', '釉'), + ('米', '釋'), + ('米', '鐇'), + ('米', '鷭'), + ('米', '麋'), + ('米', '齒'), + ('米', '齔'), + ('米', '齣'), + ('米', '齟'), + ('米', '齠'), + ('米', '齡'), + ('米', '齦'), + ('米', '齧'), + ('米', '齬'), + ('米', '齪'), + ('米', '齷'), + ('米', '齲'), + ('米', '齶'), + ('糸', '絢'), + ('糸', '綾'), + ('糸', '維'), + ('糸', '緯'), + ('糸', '縁'), + ('糸', '絵'), + ('糸', '緩'), + ('糸', '紀'), + ('糸', '徽'), + ('糸', '級'), + ('糸', '糾'), + ('糸', '給'), + ('糸', '緊'), + ('糸', '轡'), + ('糸', '繰'), + ('糸', '係'), + ('糸', '系'), + ('糸', '経'), + ('糸', '継'), + ('糸', '繋'), + ('糸', '潔'), + ('糸', '結'), + ('糸', '懸'), + ('糸', '絹'), + ('糸', '絃'), + ('糸', '紅'), + ('糸', '紘'), + ('糸', '絞'), + ('糸', '綱'), + ('糸', '紺'), + ('糸', '細'), + ('糸', '索'), + ('糸', '纂'), + ('糸', '糸'), + ('糸', '紙'), + ('糸', '紫'), + ('糸', '縞'), + ('糸', '紗'), + ('糸', '綬'), + ('糸', '終'), + ('糸', '繍'), + ('糸', '縦'), + ('糸', '縮'), + ('糸', '純'), + ('糸', '緒'), + ('糸', '紹'), + ('糸', '織'), + ('糸', '紳'), + ('糸', '績'), + ('糸', '絶'), + ('糸', '線'), + ('糸', '繊'), + ('糸', '繕'), + ('糸', '素'), + ('糸', '組'), + ('糸', '総'), + ('糸', '綜'), + ('糸', '続'), + ('糸', '孫'), + ('糸', '遜'), + ('糸', '綻'), + ('糸', '綴'), + ('糸', '紬'), + ('糸', '締'), + ('糸', '纏'), + ('糸', '統'), + ('糸', '縄'), + ('糸', '納'), + ('糸', '縛'), + ('糸', '繁'), + ('糸', '緋'), + ('糸', '紐'), + ('糸', '紛'), + ('糸', '編'), + ('糸', '縫'), + ('糸', '紡'), + ('糸', '繭'), + ('糸', '綿'), + ('糸', '緬'), + ('糸', '網'), + ('糸', '紋'), + ('糸', '約'), + ('糸', '羅'), + ('糸', '螺'), + ('糸', '絡'), + ('糸', '緑'), + ('糸', '累'), + ('糸', '練'), + ('糸', '巒'), + ('糸', '彝'), + ('糸', '彎'), + ('糸', '戀'), + ('糸', '攣'), + ('糸', '變'), + ('糸', '櫞'), + ('糸', '欒'), + ('糸', '灣'), + ('糸', '瘰'), + ('糸', '籘'), + ('糸', '糺'), + ('糸', '紆'), + ('糸', '紂'), + ('糸', '紜'), + ('糸', '紕'), + ('糸', '紊'), + ('糸', '絅'), + ('糸', '絋'), + ('糸', '紮'), + ('糸', '紲'), + ('糸', '紿'), + ('糸', '紵'), + ('糸', '絆'), + ('糸', '絳'), + ('糸', '絖'), + ('糸', '絎'), + ('糸', '絲'), + ('糸', '絨'), + ('糸', '絮'), + ('糸', '絏'), + ('糸', '絣'), + ('糸', '經'), + ('糸', '綉'), + ('糸', '絛'), + ('糸', '綏'), + ('糸', '絽'), + ('糸', '綛'), + ('糸', '綺'), + ('糸', '綮'), + ('糸', '綣'), + ('糸', '綵'), + ('糸', '緇'), + ('糸', '綽'), + ('糸', '綫'), + ('糸', '總'), + ('糸', '綢'), + ('糸', '綯'), + ('糸', '緜'), + ('糸', '綸'), + ('糸', '綟'), + ('糸', '綰'), + ('糸', '緘'), + ('糸', '緝'), + ('糸', '緤'), + ('糸', '緞'), + ('糸', '緻'), + ('糸', '緲'), + ('糸', '緡'), + ('糸', '縅'), + ('糸', '縊'), + ('糸', '縣'), + ('糸', '縡'), + ('糸', '縒'), + ('糸', '縱'), + ('糸', '縟'), + ('糸', '縉'), + ('糸', '縋'), + ('糸', '縢'), + ('糸', '繆'), + ('糸', '繦'), + ('糸', '縻'), + ('糸', '縵'), + ('糸', '縹'), + ('糸', '繃'), + ('糸', '縷'), + ('糸', '縲'), + ('糸', '縺'), + ('糸', '繧'), + ('糸', '繝'), + ('糸', '繖'), + ('糸', '繞'), + ('糸', '繙'), + ('糸', '繚'), + ('糸', '繹'), + ('糸', '繪'), + ('糸', '繩'), + ('糸', '繼'), + ('糸', '繻'), + ('糸', '纃'), + ('糸', '緕'), + ('糸', '繽'), + ('糸', '辮'), + ('糸', '繿'), + ('糸', '纈'), + ('糸', '纉'), + ('糸', '續'), + ('糸', '纒'), + ('糸', '纐'), + ('糸', '纓'), + ('糸', '纔'), + ('糸', '纖'), + ('糸', '纎'), + ('糸', '纛'), + ('糸', '纜'), + ('糸', '羂'), + ('糸', '臠'), + ('糸', '葯'), + ('糸', '蘊'), + ('糸', '蘰'), + ('糸', '蘿'), + ('糸', '蠻'), + ('糸', '邏'), + ('糸', '鑼'), + ('糸', '鑾'), + ('糸', '騾'), + ('糸', '鯀'), + ('糸', '鸞'), + ('缶', '缶'), + ('缶', '淘'), + ('缶', '陶'), + ('缶', '萄'), + ('缶', '寶'), + ('缶', '徭'), + ('缶', '掣'), + ('缶', '掏'), + ('缶', '搖'), + ('缶', '旆'), + ('缶', '鬱'), + ('缶', '瑶'), + ('缶', '窰'), + ('缶', '綯'), + ('缶', '缸'), + ('缶', '缺'), + ('缶', '罅'), + ('缶', '罌'), + ('缶', '罍'), + ('缶', '罎'), + ('缶', '罐'), + ('缶', '謠'), + ('缶', '鷂'), + ('缶', '遙'), + ('缶', '瑤'), + ('羊', '儀'), + ('羊', '犠'), + ('羊', '義'), + ('羊', '蟻'), + ('羊', '議'), + ('羊', '業'), + ('羊', '群'), + ('羊', '嵯'), + ('羊', '差'), + ('羊', '瑳'), + ('羊', '祥'), + ('羊', '詳'), + ('羊', '羨'), + ('羊', '鮮'), + ('羊', '善'), + ('羊', '繕'), + ('羊', '膳'), + ('羊', '叢'), + ('羊', '達'), + ('羊', '遅'), + ('羊', '着'), + ('羊', '美'), + ('羊', '僕'), + ('羊', '撲'), + ('羊', '様'), + ('羊', '洋'), + ('羊', '窯'), + ('羊', '羊'), + ('羊', '養'), + ('羊', '佯'), + ('羊', '嗟'), + ('羊', '姜'), + ('羊', '對'), + ('羊', '嵳'), + ('羊', '嶬'), + ('羊', '庠'), + ('羊', '恙'), + ('羊', '搓'), + ('羊', '撻'), + ('羊', '曦'), + ('羊', '槎'), + ('羊', '樣'), + ('羊', '樸'), + ('羊', '漾'), + ('羊', '濮'), + ('羊', '瀁'), + ('羊', '犧'), + ('羊', '璞'), + ('羊', '痒'), + ('羊', '癢'), + ('羊', '癬'), + ('羊', '盖'), + ('羊', '磋'), + ('羊', '礒'), + ('羊', '縒'), + ('羊', '羌'), + ('羊', '羔'), + ('羊', '羞'), + ('羊', '羝'), + ('羊', '羚'), + ('羊', '羣'), + ('羊', '羯'), + ('羊', '羲'), + ('羊', '羹'), + ('羊', '羮'), + ('羊', '羶'), + ('羊', '羸'), + ('羊', '譱'), + ('羊', '翔'), + ('羊', '艤'), + ('羊', '蘚'), + ('羊', '觧'), + ('羊', '蹉'), + ('羊', '蹼'), + ('羊', '躾'), + ('羊', '闥'), + ('羊', '韃'), + ('羊', '鱶'), + ('羽', '羽'), + ('羽', '翁'), + ('羽', '翰'), + ('羽', '翫'), + ('羽', '習'), + ('羽', '翠'), + ('羽', '摺'), + ('羽', '扇'), + ('羽', '煽'), + ('羽', '謬'), + ('羽', '翻'), + ('羽', '翌'), + ('羽', '翼'), + ('羽', '勠'), + ('羽', '寥'), + ('羽', '廖'), + ('羽', '慴'), + ('羽', '戮'), + ('羽', '挧'), + ('羽', '搨'), + ('羽', '摎'), + ('羽', '栩'), + ('羽', '榻'), + ('羽', '樛'), + ('羽', '歙'), + ('羽', '瀚'), + ('羽', '繆'), + ('羽', '翅'), + ('羽', '翆'), + ('羽', '翊'), + ('羽', '翕'), + ('羽', '翔'), + ('羽', '翡'), + ('羽', '翦'), + ('羽', '翩'), + ('羽', '翳'), + ('羽', '翹'), + ('羽', '膠'), + ('羽', '蓊'), + ('羽', '蓼'), + ('羽', '褶'), + ('羽', '醪'), + ('羽', '鏐'), + ('羽', '鶲'), + ('而', '而'), + ('而', '儒'), + ('而', '需'), + ('而', '瑞'), + ('而', '耐'), + ('而', '端'), + ('而', '嬬'), + ('而', '濡'), + ('而', '喘'), + ('而', '孺'), + ('而', '惴'), + ('而', '懦'), + ('而', '揣'), + ('而', '湍'), + ('而', '猯'), + ('而', '粫'), + ('而', '糯'), + ('而', '繻'), + ('而', '臑'), + ('而', '蠕'), + ('而', '襦'), + ('而', '轜'), + ('耒', '業'), + ('耒', '耕'), + ('耒', '籍'), + ('耒', '耗'), + ('耒', '耒'), + ('耒', '耘'), + ('耒', '耙'), + ('耒', '耜'), + ('耒', '耡'), + ('耒', '耨'), + ('耒', '藉'), + ('耒', '藕'), + ('耒', '誄'), + ('耳', '餌'), + ('耳', '敢'), + ('耳', '巌'), + ('耳', '厳'), + ('耳', '最'), + ('耳', '撮'), + ('耳', '耳'), + ('耳', '取'), + ('耳', '趣'), + ('耳', '輯'), + ('耳', '職'), + ('耳', '諏'), + ('耳', '聖'), + ('耳', '摂'), + ('耳', '叢'), + ('耳', '聡'), + ('耳', '茸'), + ('耳', '耽'), + ('耳', '恥'), + ('耳', '聴'), + ('耳', '葺'), + ('耳', '聞'), + ('耳', '爺'), + ('耳', '耶'), + ('耳', '揖'), + ('耳', '聯'), + ('耳', '聾'), + ('耳', '儼'), + ('耳', '嚴'), + ('耳', '囁'), + ('耳', '娵'), + ('耳', '娶'), + ('耳', '巖'), + ('耳', '廳'), + ('耳', '廰'), + ('耳', '弭'), + ('耳', '懾'), + ('耳', '掫'), + ('耳', '揶'), + ('耳', '攝'), + ('耳', '楫'), + ('耳', '椰'), + ('耳', '橄'), + ('耳', '樶'), + ('耳', '珥'), + ('耳', '瞰'), + ('耳', '緝'), + ('耳', '耿'), + ('耳', '耻'), + ('耳', '聊'), + ('耳', '聆'), + ('耳', '聒'), + ('耳', '聘'), + ('耳', '聚'), + ('耳', '聟'), + ('耳', '聢'), + ('耳', '聨'), + ('耳', '聳'), + ('耳', '聲'), + ('耳', '聰'), + ('耳', '聶'), + ('耳', '聹'), + ('耳', '聽'), + ('耳', '蟶'), + ('耳', '躡'), + ('耳', '輒'), + ('耳', '輙'), + ('耳', '鑷'), + ('耳', '陬'), + ('耳', '顳'), + ('耳', '驟'), + ('耳', '鵈'), + ('聿', '劃'), + ('聿', '健'), + ('聿', '建'), + ('聿', '鍵'), + ('聿', '書'), + ('聿', '津'), + ('聿', '肇'), + ('聿', '筆'), + ('聿', '庸'), + ('聿', '律'), + ('聿', '葎'), + ('聿', '嘯'), + ('聿', '壗'), + ('聿', '慵'), + ('聿', '晝'), + ('聿', '燼'), + ('聿', '畫'), + ('聿', '盡'), + ('聿', '簫'), + ('聿', '聿'), + ('聿', '肄'), + ('聿', '肆'), + ('聿', '肅'), + ('聿', '腱'), + ('聿', '蕭'), + ('肉', '肉'), + ('肉', '腐'), + ('肉', '臠'), + ('自', '榎'), + ('自', '夏'), + ('自', '寡'), + ('自', '憩'), + ('自', '自'), + ('自', '首'), + ('自', '臭'), + ('自', '擾'), + ('自', '息'), + ('自', '導'), + ('自', '道'), + ('自', '鼻'), + ('自', '優'), + ('自', '憂'), + ('自', '厦'), + ('自', '嗅'), + ('自', '嗄'), + ('自', '嚊'), + ('自', '囂'), + ('自', '嬶'), + ('自', '廈'), + ('自', '戛'), + ('自', '戞'), + ('自', '熄'), + ('自', '邊'), + ('自', '邉'), + ('自', '馗'), + ('自', '馘'), + ('自', '鼾'), + ('至', '握'), + ('至', '渥'), + ('至', '屋'), + ('至', '至'), + ('至', '室'), + ('至', '致'), + ('至', '窒'), + ('至', '倒'), + ('至', '到'), + ('至', '蛭'), + ('至', '姪'), + ('至', '咥'), + ('至', '垤'), + ('至', '幄'), + ('至', '擡'), + ('至', '桎'), + ('至', '椡'), + ('至', '榁'), + ('至', '緻'), + ('至', '耋'), + ('至', '膣'), + ('至', '腟'), + ('至', '臺'), + ('至', '臻'), + ('至', '薹'), + ('至', '輊'), + ('至', '鵄'), + ('至', '齷'), + ('臼', '臼'), + ('臼', '潟'), + ('臼', '興'), + ('臼', '鼠'), + ('臼', '輿'), + ('臼', '倪'), + ('臼', '兒'), + ('臼', '冩'), + ('臼', '叟'), + ('臼', '啗'), + ('臼', '毀'), + ('臼', '學'), + ('臼', '寫'), + ('臼', '嶼'), + ('臼', '搜'), + ('臼', '插'), + ('臼', '攪'), + ('臼', '擧'), + ('臼', '舉'), + ('臼', '歃'), + ('臼', '歟'), + ('臼', '滔'), + ('臼', '瀉'), + ('臼', '燬'), + ('臼', '猊'), + ('臼', '獵'), + ('臼', '盥'), + ('臼', '睨'), + ('臼', '稻'), + ('臼', '竄'), + ('臼', '腴'), + ('臼', '臘'), + ('臼', '臾'), + ('臼', '舁'), + ('臼', '舂'), + ('臼', '舅'), + ('臼', '與'), + ('臼', '舊'), + ('臼', '萸'), + ('臼', '覺'), + ('臼', '諂'), + ('臼', '諛'), + ('臼', '譽'), + ('臼', '貎'), + ('臼', '蹈'), + ('臼', '釁'), + ('臼', '鑞'), + ('臼', '鑿'), + ('臼', '閻'), + ('臼', '陷'), + ('臼', '霓'), + ('臼', '韜'), + ('臼', '餡'), + ('臼', '鬣'), + ('臼', '鬩'), + ('臼', '鯢'), + ('臼', '鷽'), + ('臼', '麑'), + ('臼', '黌'), + ('臼', '鼬'), + ('舌', '括'), + ('舌', '活'), + ('舌', '憩'), + ('舌', '辞'), + ('舌', '舌'), + ('舌', '甜'), + ('舌', '筈'), + ('舌', '乱'), + ('舌', '話'), + ('舌', '舒'), + ('舌', '刮'), + ('舌', '恬'), + ('舌', '憇'), + ('舌', '聒'), + ('舌', '舍'), + ('舌', '舐'), + ('舌', '舖'), + ('舌', '蛞'), + ('舌', '銛'), + ('舌', '闊'), + ('舌', '濶'), + ('舟', '艦'), + ('舟', '舷'), + ('舟', '航'), + ('舟', '舟'), + ('舟', '船'), + ('舟', '舵'), + ('舟', '艇'), + ('舟', '舶'), + ('舟', '搬'), + ('舟', '般'), + ('舟', '盤'), + ('舟', '磐'), + ('舟', '槃'), + ('舟', '瘢'), + ('舟', '舩'), + ('舟', '舫'), + ('舟', '舸'), + ('舟', '舳'), + ('舟', '艀'), + ('舟', '艙'), + ('舟', '艘'), + ('舟', '艝'), + ('舟', '艚'), + ('舟', '艟'), + ('舟', '艤'), + ('舟', '艢'), + ('舟', '艨'), + ('舟', '艪'), + ('舟', '艫'), + ('舟', '舮'), + ('艮', '欝'), + ('艮', '厩'), + ('艮', '餌'), + ('艮', '慨'), + ('艮', '概'), + ('艮', '眼'), + ('艮', '既'), + ('艮', '卿'), + ('艮', '郷'), + ('艮', '響'), + ('艮', '饗'), + ('艮', '銀'), + ('艮', '櫛'), + ('艮', '限'), + ('艮', '墾'), + ('艮', '恨'), + ('艮', '懇'), + ('艮', '根'), + ('艮', '痕'), + ('艮', '艮'), + ('艮', '飼'), + ('艮', '爵'), + ('艮', '節'), + ('艮', '即'), + ('艮', '腿'), + ('艮', '退'), + ('艮', '娘'), + ('艮', '良'), + ('艮', '廊'), + ('艮', '朗'), + ('艮', '榔'), + ('艮', '浪'), + ('艮', '狼'), + ('艮', '郎'), + ('艮', '喞'), + ('艮', '嚮'), + ('艮', '嚼'), + ('艮', '垠'), + ('艮', '廐'), + ('艮', '廏'), + ('艮', '很'), + ('艮', '曁'), + ('艮', '朖'), + ('艮', '漑'), + ('艮', '狠'), + ('艮', '琅'), + ('艮', '瑯'), + ('艮', '粮'), + ('艮', '艱'), + ('艮', '莨'), + ('艮', '螂'), + ('艮', '褪'), + ('艮', '跟'), + ('艮', '踉'), + ('艮', '鱶'), + ('艮', '齦'), + ('色', '艶'), + ('色', '色'), + ('色', '絶'), + ('色', '艷'), + ('虍', '嘘'), + ('虍', '戯'), + ('虍', '虐'), + ('虍', '虚'), + ('虍', '虞'), + ('虍', '劇'), + ('虍', '虎'), + ('虍', '櫨'), + ('虍', '彪'), + ('虍', '膚'), + ('虍', '慮'), + ('虍', '虜'), + ('虍', '處'), + ('虍', '墟'), + ('虍', '廬'), + ('虍', '戲'), + ('虍', '據'), + ('虍', '歔'), + ('虍', '瀘'), + ('虍', '爐'), + ('虍', '獻'), + ('虍', '琥'), + ('虍', '瘧'), + ('虍', '盧'), + ('虍', '罅'), + ('虍', '臚'), + ('虍', '艫'), + ('虍', '蘆'), + ('虍', '虍'), + ('虍', '虔'), + ('虍', '號'), + ('虍', '虧'), + ('虍', '褫'), + ('虍', '謔'), + ('虍', '轤'), + ('虍', '遞'), + ('虍', '遽'), + ('虍', '醵'), + ('虍', '鑢'), + ('虍', '鑪'), + ('虍', '顱'), + ('虍', '饕'), + ('虍', '驢'), + ('虍', '鯱'), + ('虍', '鱸'), + ('虫', '虻'), + ('虫', '蝦'), + ('虫', '蚊'), + ('虫', '蛾'), + ('虫', '蟹'), + ('虫', '蛙'), + ('虫', '蛎'), + ('虫', '蟻'), + ('虫', '強'), + ('虫', '蛍'), + ('虫', '蚕'), + ('虫', '蛇'), + ('虫', '燭'), + ('虫', '触'), + ('虫', '蝕'), + ('虫', '蝉'), + ('虫', '掻'), + ('虫', '騒'), + ('虫', '濁'), + ('虫', '蛸'), + ('虫', '蛋'), + ('虫', '蜘'), + ('虫', '虫'), + ('虫', '蝶'), + ('虫', '独'), + ('虫', '虹'), + ('虫', '蚤'), + ('虫', '蝿'), + ('虫', '蛤'), + ('虫', '蛮'), + ('虫', '蛭'), + ('虫', '楓'), + ('虫', '風'), + ('虫', '蜂'), + ('虫', '繭'), + ('虫', '蜜'), + ('虫', '融'), + ('虫', '螺'), + ('虫', '蝋'), + ('虫', '嗤'), + ('虫', '囑'), + ('虫', '專'), + ('虫', '屬'), + ('虫', '惠'), + ('虫', '慱'), + ('虫', '摶'), + ('虫', '槫'), + ('虫', '櫁'), + ('虫', '獨'), + ('虫', '甎'), + ('虫', '矚'), + ('虫', '磚'), + ('虫', '禹'), + ('虫', '穗'), + ('虫', '繦'), + ('虫', '蓴'), + ('虫', '虱'), + ('虫', '蚓'), + ('虫', '蚣'), + ('虫', '蚩'), + ('虫', '蚪'), + ('虫', '蚋'), + ('虫', '蚌'), + ('虫', '蚶'), + ('虫', '蚯'), + ('虫', '蛄'), + ('虫', '蛆'), + ('虫', '蚰'), + ('虫', '蛉'), + ('虫', '蠣'), + ('虫', '蚫'), + ('虫', '蛔'), + ('虫', '蛞'), + ('虫', '蛩'), + ('虫', '蛬'), + ('虫', '蛟'), + ('虫', '蛛'), + ('虫', '蛯'), + ('虫', '蜒'), + ('虫', '蜆'), + ('虫', '蜈'), + ('虫', '蜀'), + ('虫', '蜃'), + ('虫', '蛻'), + ('虫', '蜑'), + ('虫', '蜉'), + ('虫', '蜍'), + ('虫', '蛹'), + ('虫', '蜊'), + ('虫', '蜴'), + ('虫', '蜿'), + ('虫', '蜷'), + ('虫', '蜻'), + ('虫', '蜥'), + ('虫', '蜩'), + ('虫', '蜚'), + ('虫', '蝠'), + ('虫', '蝟'), + ('虫', '蝸'), + ('虫', '蝌'), + ('虫', '蝎'), + ('虫', '蝴'), + ('虫', '蝗'), + ('虫', '蝨'), + ('虫', '蝮'), + ('虫', '蝙'), + ('虫', '蝓'), + ('虫', '蝣'), + ('虫', '蝪'), + ('虫', '蠅'), + ('虫', '螢'), + ('虫', '螟'), + ('虫', '螂'), + ('虫', '螯'), + ('虫', '蟋'), + ('虫', '螽'), + ('虫', '蟀'), + ('虫', '蟐'), + ('虫', '雖'), + ('虫', '螫'), + ('虫', '蟄'), + ('虫', '螳'), + ('虫', '蟇'), + ('虫', '蟆'), + ('虫', '螻'), + ('虫', '蟯'), + ('虫', '蟲'), + ('虫', '蟠'), + ('虫', '蠏'), + ('虫', '蠍'), + ('虫', '蟾'), + ('虫', '蟶'), + ('虫', '蟷'), + ('虫', '蠎'), + ('虫', '蟒'), + ('虫', '蠑'), + ('虫', '蠖'), + ('虫', '蠕'), + ('虫', '蠢'), + ('虫', '蠡'), + ('虫', '蠱'), + ('虫', '蠶'), + ('虫', '蠹'), + ('虫', '蠧'), + ('虫', '蠻'), + ('虫', '襁'), + ('虫', '觸'), + ('虫', '諷'), + ('虫', '躅'), + ('虫', '轉'), + ('虫', '騷'), + ('虫', '髑'), + ('虫', '齲'), + ('血', '血'), + ('血', '衆'), + ('血', '恤'), + ('血', '洫'), + ('血', '衄'), + ('血', '衂'), + ('行', '衛'), + ('行', '街'), + ('行', '桁'), + ('行', '行'), + ('行', '衡'), + ('行', '術'), + ('行', '衝'), + ('行', '哘'), + ('行', '垳'), + ('行', '愆'), + ('行', '衍'), + ('行', '絎'), + ('行', '衒'), + ('行', '衙'), + ('行', '衞'), + ('行', '衢'), + ('行', '裄'), + ('行', '銜'), + ('行', '鵆'), + ('衣', '哀'), + ('衣', '依'), + ('衣', '畏'), + ('衣', '衣'), + ('衣', '園'), + ('衣', '猿'), + ('衣', '薗'), + ('衣', '遠'), + ('衣', '壊'), + ('衣', '懐'), + ('衣', '環'), + ('衣', '還'), + ('衣', '隈'), + ('衣', '袈'), + ('衣', '裟'), + ('衣', '裁'), + ('衣', '襲'), + ('衣', '裳'), + ('衣', '壌'), + ('衣', '嬢'), + ('衣', '穣'), + ('衣', '譲'), + ('衣', '醸'), + ('衣', '辱'), + ('衣', '唇'), + ('衣', '娠'), + ('衣', '振'), + ('衣', '震'), + ('衣', '衰'), + ('衣', '製'), + ('衣', '喪'), + ('衣', '装'), + ('衣', '袋'), + ('衣', '辰'), + ('衣', '衷'), + ('衣', '展'), + ('衣', '嚢'), + ('衣', '濃'), + ('衣', '膿'), + ('衣', '農'), + ('衣', '俵'), + ('衣', '表'), + ('衣', '褒'), + ('衣', '蓑'), + ('衣', '裏'), + ('衣', '裂'), + ('衣', '圜'), + ('衣', '壞'), + ('衣', '壤'), + ('衣', '孃'), + ('衣', '宸'), + ('衣', '寰'), + ('衣', '懷'), + ('衣', '攘'), + ('衣', '曩'), + ('衣', '榱'), + ('衣', '滾'), + ('衣', '猥'), + ('衣', '畩'), + ('衣', '碾'), + ('衣', '禳'), + ('衣', '穰'), + ('衣', '簑'), + ('衣', '簔'), + ('衣', '膂'), + ('衣', '袁'), + ('衣', '衾'), + ('衣', '袞'), + ('衣', '袤'), + ('衣', '袰'), + ('衣', '裔'), + ('衣', '裘'), + ('衣', '裝'), + ('衣', '裹'), + ('衣', '裴'), + ('衣', '襃'), + ('衣', '襄'), + ('衣', '褻'), + ('衣', '襞'), + ('衣', '讓'), + ('衣', '轅'), + ('衣', '輾'), + ('衣', '釀'), + ('衣', '鐶'), + ('衣', '驟'), + ('衣', '驤'), + ('衣', '鬟'), + ('衣', '鵺'), + ('西', '茜'), + ('西', '粟'), + ('西', '噂'), + ('西', '煙'), + ('西', '価'), + ('西', '栗'), + ('西', '腰'), + ('西', '晒'), + ('西', '栖'), + ('西', '西'), + ('西', '遷'), + ('西', '廼'), + ('西', '覇'), + ('西', '標'), + ('西', '漂'), + ('西', '瓢'), + ('西', '票'), + ('西', '覆'), + ('西', '要'), + ('西', '僊'), + ('西', '價'), + ('西', '剽'), + ('西', '哂'), + ('西', '堙'), + ('西', '嫖'), + ('西', '慄'), + ('西', '慓'), + ('西', '樮'), + ('西', '洒'), + ('西', '湮'), + ('西', '潭'), + ('西', '甄'), + ('西', '篥'), + ('西', '簟'), + ('西', '縹'), + ('西', '蕈'), + ('西', '襾'), + ('西', '覃'), + ('西', '覈'), + ('西', '覊'), + ('西', '譚'), + ('西', '賈'), + ('西', '迺'), + ('西', '鐔'), + ('西', '韆'), + ('西', '飄'), + ('西', '飃'), + ('西', '驃'), + ('西', '鰾'), + ('臣', '臥'), + ('臣', '樫'), + ('臣', '鰹'), + ('臣', '監'), + ('臣', '艦'), + ('臣', '鑑'), + ('臣', '緊'), + ('臣', '堅'), + ('臣', '賢'), + ('臣', '臣'), + ('臣', '腎'), + ('臣', '臓'), + ('臣', '蔵'), + ('臣', '竪'), + ('臣', '姫'), + ('臣', '濫'), + ('臣', '藍'), + ('臣', '覧'), + ('臣', '臨'), + ('臣', '儖'), + ('臣', '宦'), + ('臣', '慳'), + ('臣', '攬'), + ('臣', '檻'), + ('臣', '欖'), + ('臣', '煕'), + ('臣', '熈'), + ('臣', '籃'), + ('臣', '繿'), + ('臣', '纜'), + ('臣', '臟'), + ('臣', '臧'), + ('臣', '藏'), + ('臣', '襤'), + ('臣', '覽'), + ('臣', '豎'), + ('臣', '贓'), + ('臣', '鏗'), + ('臣', '鑒'), + ('臣', '頤'), + ('臣', '鹽'), + ('見', '窺'), + ('見', '撹'), + ('見', '覚'), + ('見', '寛'), + ('見', '観'), + ('見', '規'), + ('見', '硯'), + ('見', '見'), + ('見', '現'), + ('見', '視'), + ('見', '親'), + ('見', '槻'), + ('見', '覗'), + ('見', '覧'), + ('見', '俔'), + ('見', '攪'), + ('見', '攬'), + ('見', '欖'), + ('見', '欟'), + ('見', '筧'), + ('見', '纜'), + ('見', '蜆'), + ('見', '襯'), + ('見', '覓'), + ('見', '覘'), + ('見', '覡'), + ('見', '覩'), + ('見', '覦'), + ('見', '覬'), + ('見', '覯'), + ('見', '覲'), + ('見', '覺'), + ('見', '覽'), + ('見', '覿'), + ('見', '觀'), + ('見', '靦'), + ('角', '解'), + ('角', '蟹'), + ('角', '角'), + ('角', '触'), + ('角', '嘴'), + ('角', '埆'), + ('角', '廨'), + ('角', '懈'), + ('角', '斛'), + ('角', '桷'), + ('角', '槲'), + ('角', '蠏'), + ('角', '觚'), + ('角', '觜'), + ('角', '觝'), + ('角', '觧'), + ('角', '觴'), + ('角', '觸'), + ('角', '邂'), + ('角', '鵤'), + ('言', '謂'), + ('言', '詠'), + ('言', '謁'), + ('言', '課'), + ('言', '該'), + ('言', '諌'), + ('言', '記'), + ('言', '誼'), + ('言', '議'), + ('言', '詰'), + ('言', '許'), + ('言', '謹'), + ('言', '訓'), + ('言', '計'), + ('言', '詣'), + ('言', '警'), + ('言', '訣'), + ('言', '謙'), + ('言', '言'), + ('言', '諺'), + ('言', '誇'), + ('言', '語'), + ('言', '誤'), + ('言', '護'), + ('言', '講'), + ('言', '獄'), + ('言', '詐'), + ('言', '讃'), + ('言', '詞'), + ('言', '詩'), + ('言', '試'), + ('言', '誌'), + ('言', '諮'), + ('言', '識'), + ('言', '謝'), + ('言', '讐'), + ('言', '藷'), + ('言', '諸'), + ('言', '訟'), + ('言', '証'), + ('言', '詔'), + ('言', '詳'), + ('言', '譲'), + ('言', '信'), + ('言', '診'), + ('言', '訊'), + ('言', '諏'), + ('言', '誠'), + ('言', '誓'), + ('言', '請'), + ('言', '設'), + ('言', '説'), + ('言', '詮'), + ('言', '訴'), + ('言', '詑'), + ('言', '託'), + ('言', '諾'), + ('言', '誰'), + ('言', '誕'), + ('言', '談'), + ('言', '註'), + ('言', '調'), + ('言', '諜'), + ('言', '訂'), + ('言', '諦'), + ('言', '討'), + ('言', '謄'), + ('言', '読'), + ('言', '謎'), + ('言', '認'), + ('言', '這'), + ('言', '罰'), + ('言', '誹'), + ('言', '謬'), + ('言', '評'), + ('言', '譜'), + ('言', '訪'), + ('言', '謀'), + ('言', '儲'), + ('言', '訳'), + ('言', '諭'), + ('言', '誘'), + ('言', '誉'), + ('言', '謡'), + ('言', '諒'), + ('言', '論'), + ('言', '話'), + ('言', '詫'), + ('言', '燮'), + ('言', '嶽'), + ('言', '巒'), + ('言', '彎'), + ('言', '憺'), + ('言', '戀'), + ('言', '擔'), + ('言', '攣'), + ('言', '變'), + ('言', '檐'), + ('言', '欒'), + ('言', '滸'), + ('言', '澹'), + ('言', '灣'), + ('言', '瞻'), + ('言', '簷'), + ('言', '罸'), + ('言', '譱'), + ('言', '膽'), + ('言', '臠'), + ('言', '藹'), + ('言', '蟾'), + ('言', '蠻'), + ('言', '訃'), + ('言', '訖'), + ('言', '訐'), + ('言', '訌'), + ('言', '訛'), + ('言', '訝'), + ('言', '訥'), + ('言', '訶'), + ('言', '詁'), + ('言', '詛'), + ('言', '詒'), + ('言', '詆'), + ('言', '詈'), + ('言', '詼'), + ('言', '詭'), + ('言', '詬'), + ('言', '詢'), + ('言', '誅'), + ('言', '誂'), + ('言', '誄'), + ('言', '誨'), + ('言', '誡'), + ('言', '誑'), + ('言', '誥'), + ('言', '誦'), + ('言', '誚'), + ('言', '誣'), + ('言', '諄'), + ('言', '諍'), + ('言', '諂'), + ('言', '諚'), + ('言', '諫'), + ('言', '諳'), + ('言', '諧'), + ('言', '諤'), + ('言', '諱'), + ('言', '謔'), + ('言', '諠'), + ('言', '諢'), + ('言', '諷'), + ('言', '諞'), + ('言', '諛'), + ('言', '謌'), + ('言', '謇'), + ('言', '謚'), + ('言', '諡'), + ('言', '謖'), + ('言', '謐'), + ('言', '謗'), + ('言', '謠'), + ('言', '謳'), + ('言', '鞫'), + ('言', '謦'), + ('言', '謫'), + ('言', '謾'), + ('言', '謨'), + ('言', '譁'), + ('言', '譌'), + ('言', '譏'), + ('言', '譎'), + ('言', '證'), + ('言', '譖'), + ('言', '譛'), + ('言', '譚'), + ('言', '譫'), + ('言', '譟'), + ('言', '譬'), + ('言', '譯'), + ('言', '譴'), + ('言', '譽'), + ('言', '讀'), + ('言', '讌'), + ('言', '讎'), + ('言', '讒'), + ('言', '讓'), + ('言', '讖'), + ('言', '讙'), + ('言', '讚'), + ('言', '贍'), + ('言', '辯'), + ('言', '鑾'), + ('言', '靄'), + ('言', '鸞'), + ('谷', '俗'), + ('谷', '谷'), + ('谷', '硲'), + ('谷', '裕'), + ('谷', '容'), + ('谷', '溶'), + ('谷', '熔'), + ('谷', '蓉'), + ('谷', '慾'), + ('谷', '欲'), + ('谷', '浴'), + ('谷', '卻'), + ('谷', '峪'), + ('谷', '谺'), + ('谷', '豁'), + ('谷', '谿'), + ('谷', '逧'), + ('谷', '郤'), + ('谷', '鎔'), + ('豆', '艶'), + ('豆', '凱'), + ('豆', '鎧'), + ('豆', '喜'), + ('豆', '嬉'), + ('豆', '鼓'), + ('豆', '樹'), + ('豆', '厨'), + ('豆', '逗'), + ('豆', '澄'), + ('豆', '短'), + ('豆', '登'), + ('豆', '燈'), + ('豆', '痘'), + ('豆', '豆'), + ('豆', '鐙'), + ('豆', '頭'), + ('豆', '闘'), + ('豆', '豊'), + ('豆', '膨'), + ('豆', '僖'), + ('豆', '剴'), + ('豆', '噎'), + ('豆', '壹'), + ('豆', '嶝'), + ('豆', '廚'), + ('豆', '彭'), + ('豆', '憙'), + ('豆', '懿'), + ('豆', '戲'), + ('豆', '榿'), + ('豆', '橲'), + ('豆', '橙'), + ('豆', '殪'), + ('豆', '澎'), + ('豆', '熹'), + ('豆', '皚'), + ('豆', '瞽'), + ('豆', '磑'), + ('豆', '磴'), + ('豆', '禧'), + ('豆', '禮'), + ('豆', '艷'), + ('豆', '荳'), + ('豆', '覬'), + ('豆', '證'), + ('豆', '豈'), + ('豆', '豌'), + ('豆', '豎'), + ('豆', '豐'), + ('豆', '軆'), + ('豆', '醴'), + ('豆', '鐡'), + ('豆', '饐'), + ('豆', '體'), + ('豆', '鬪'), + ('豆', '鱚'), + ('豆', '鱧'), + ('豆', '皷'), + ('豆', '鼕'), + ('豕', '縁'), + ('豕', '嫁'), + ('豕', '家'), + ('豕', '稼'), + ('豕', '毅'), + ('豕', '劇'), + ('豕', '壕'), + ('豕', '濠'), + ('豕', '豪'), + ('豕', '象'), + ('豕', '遂'), + ('豕', '像'), + ('豕', '隊'), + ('豕', '啄'), + ('豕', '琢'), + ('豕', '逐'), + ('豕', '瀦'), + ('豕', '墜'), + ('豕', '塚'), + ('豕', '橡'), + ('豕', '豚'), + ('豕', '蒙'), + ('豕', '豫'), + ('豕', '冢'), + ('豕', '喙'), + ('豕', '彖'), + ('豕', '掾'), + ('豕', '據'), + ('豕', '曚'), + ('豕', '朦'), + ('豕', '椽'), + ('豕', '檬'), + ('豕', '櫞'), + ('豕', '溷'), + ('豕', '濛'), + ('豕', '燧'), + ('豕', '燹'), + ('豕', '矇'), + ('豕', '邃'), + ('豕', '篆'), + ('豕', '糘'), + ('豕', '艨'), + ('豕', '蠡'), + ('豕', '豕'), + ('豕', '豢'), + ('豕', '豬'), + ('豕', '遯'), + ('豕', '遽'), + ('豕', '醵'), + ('豕', '隧'), + ('豸', '墾'), + ('豸', '懇'), + ('豸', '豹'), + ('豸', '貌'), + ('豸', '藐'), + ('豸', '豸'), + ('豸', '豺'), + ('豸', '貂'), + ('豸', '貉'), + ('豸', '貅'), + ('豸', '貊'), + ('豸', '貍'), + ('豸', '貎'), + ('豸', '貔'), + ('豸', '豼'), + ('豸', '貘'), + ('豸', '霾'), + ('貝', '遺'), + ('貝', '員'), + ('貝', '韻'), + ('貝', '唄'), + ('貝', '嬰'), + ('貝', '穎'), + ('貝', '頴'), + ('貝', '貨'), + ('貝', '賀'), + ('貝', '貝'), + ('貝', '額'), + ('貝', '顎'), + ('貝', '慣'), + ('貝', '貫'), + ('貝', '贋'), + ('貝', '頑'), + ('貝', '顔'), + ('貝', '願'), + ('貝', '貴'), + ('貝', '傾'), + ('貝', '頚'), + ('貝', '賢'), + ('貝', '顕'), + ('貝', '顧'), + ('貝', '貢'), + ('貝', '購'), + ('貝', '項'), + ('貝', '頃'), + ('貝', '鎖'), + ('貝', '債'), + ('貝', '財'), + ('貝', '讃'), + ('貝', '賛'), + ('貝', '資'), + ('貝', '賜'), + ('貝', '質'), + ('貝', '順'), + ('貝', '償'), + ('貝', '賞'), + ('貝', '須'), + ('貝', '頗'), + ('貝', '瀬'), + ('貝', '積'), + ('貝', '績'), + ('貝', '責'), + ('貝', '蹟'), + ('貝', '碩'), + ('貝', '賎'), + ('貝', '贈'), + ('貝', '側'), + ('貝', '則'), + ('貝', '測'), + ('貝', '賊'), + ('貝', '損'), + ('貝', '貸'), + ('貝', '題'), + ('貝', '貯'), + ('貝', '頂'), + ('貝', '賃'), + ('貝', '漬'), + ('貝', '潰'), + ('貝', '偵'), + ('貝', '貞'), + ('貝', '禎'), + ('貝', '貼'), + ('貝', '顛'), + ('貝', '賭'), + ('貝', '頭'), + ('貝', '噸'), + ('貝', '頓'), + ('貝', '賑'), + ('貝', '敗'), + ('貝', '狽'), + ('貝', '買'), + ('貝', '賠'), + ('貝', '販'), + ('貝', '煩'), + ('貝', '頒'), + ('貝', '費'), + ('貝', '瀕'), + ('貝', '貧'), + ('貝', '賓'), + ('貝', '頻'), + ('貝', '負'), + ('貝', '賦'), + ('貝', '噴'), + ('貝', '墳'), + ('貝', '憤'), + ('貝', '頁'), + ('貝', '貿'), + ('貝', '頬'), + ('貝', '貰'), + ('貝', '預'), + ('貝', '頼'), + ('貝', '領'), + ('貝', '類'), + ('貝', '嶺'), + ('貝', '賂'), + ('貝', '賄'), + ('貝', '價'), + ('貝', '勣'), + ('貝', '匱'), + ('貝', '厠'), + ('貝', '嘖'), + ('貝', '嚶'), + ('貝', '囎'), + ('貝', '圓'), + ('貝', '嬪'), + ('貝', '嬾'), + ('貝', '實'), + ('貝', '寶'), + ('貝', '寳'), + ('貝', '屓'), + ('貝', '巓'), + ('貝', '幀'), + ('貝', '廁'), + ('貝', '惻'), + ('貝', '懶'), + ('貝', '擯'), + ('貝', '攅'), + ('貝', '槓'), + ('貝', '樌'), + ('貝', '櫃'), + ('貝', '檳'), + ('貝', '櫻'), + ('貝', '殞'), + ('貝', '殯'), + ('貝', '潁'), + ('貝', '濆'), + ('貝', '濱'), + ('貝', '濺'), + ('貝', '熕'), + ('貝', '牘'), + ('貝', '犢'), + ('貝', '獺'), + ('貝', '瑣'), + ('貝', '瓔'), + ('貝', '癩'), + ('貝', '癪'), + ('貝', '癲'), + ('貝', '瞶'), + ('貝', '碵'), + ('貝', '磧'), + ('貝', '竇'), + ('貝', '簀'), + ('貝', '簣'), + ('貝', '籟'), + ('貝', '繽'), + ('貝', '纈'), + ('貝', '纉'), + ('貝', '續'), + ('貝', '纐'), + ('貝', '纓'), + ('貝', '罌'), + ('貝', '膩'), + ('貝', '蕷'), + ('貝', '蘋'), + ('貝', '藾'), + ('貝', '襭'), + ('貝', '覿'), + ('貝', '讀'), + ('貝', '讚'), + ('貝', '戝'), + ('貝', '貭'), + ('貝', '貪'), + ('貝', '貽'), + ('貝', '貲'), + ('貝', '貳'), + ('貝', '貮'), + ('貝', '貶'), + ('貝', '賈'), + ('貝', '賁'), + ('貝', '賤'), + ('貝', '賣'), + ('貝', '賚'), + ('貝', '賽'), + ('貝', '賺'), + ('貝', '賻'), + ('貝', '贄'), + ('貝', '贅'), + ('貝', '贊'), + ('貝', '贇'), + ('貝', '贏'), + ('貝', '贍'), + ('貝', '贐'), + ('貝', '齎'), + ('貝', '贓'), + ('貝', '賍'), + ('貝', '贔'), + ('貝', '贖'), + ('貝', '躓'), + ('貝', '遉'), + ('貝', '鑽'), + ('貝', '鑚'), + ('貝', '隕'), + ('貝', '頏'), + ('貝', '頌'), + ('貝', '頸'), + ('貝', '頤'), + ('貝', '頡'), + ('貝', '頷'), + ('貝', '頽'), + ('貝', '顆'), + ('貝', '顏'), + ('貝', '顋'), + ('貝', '顫'), + ('貝', '顯'), + ('貝', '顰'), + ('貝', '顱'), + ('貝', '顴'), + ('貝', '顳'), + ('貝', '饋'), + ('貝', '鬚'), + ('貝', '鬢'), + ('貝', '鵙'), + ('貝', '鸚'), + ('貝', '黷'), + ('貝', '槇'), + ('赤', '嚇'), + ('赤', '赫'), + ('赤', '赦'), + ('赤', '赤'), + ('赤', '跡'), + ('赤', '繊'), + ('赤', '奕'), + ('赤', '弯'), + ('赤', '螫'), + ('赤', '赧'), + ('赤', '赭'), + ('赤', '迹'), + ('走', '越'), + ('走', '起'), + ('走', '趣'), + ('走', '趨'), + ('走', '走'), + ('走', '超'), + ('走', '徒'), + ('走', '赴'), + ('走', '睫'), + ('走', '縱'), + ('走', '赱'), + ('走', '赳'), + ('走', '趁'), + ('走', '趙'), + ('走', '跿'), + ('足', '距'), + ('足', '跨'), + ('足', '鷺'), + ('足', '蹴'), + ('足', '跡'), + ('足', '蹟'), + ('足', '践'), + ('足', '促'), + ('足', '捉'), + ('足', '足'), + ('足', '跳'), + ('足', '蹄'), + ('足', '踏'), + ('足', '蕗'), + ('足', '躍'), + ('足', '踊'), + ('足', '路'), + ('足', '露'), + ('足', '跂'), + ('足', '趾'), + ('足', '趺'), + ('足', '跏'), + ('足', '跚'), + ('足', '跖'), + ('足', '跌'), + ('足', '跛'), + ('足', '跋'), + ('足', '跪'), + ('足', '跫'), + ('足', '跟'), + ('足', '跣'), + ('足', '跼'), + ('足', '踈'), + ('足', '踉'), + ('足', '跿'), + ('足', '踝'), + ('足', '踞'), + ('足', '踐'), + ('足', '踟'), + ('足', '蹂'), + ('足', '踵'), + ('足', '踰'), + ('足', '踴'), + ('足', '蹊'), + ('足', '蹇'), + ('足', '蹉'), + ('足', '蹌'), + ('足', '蹐'), + ('足', '蹈'), + ('足', '蹙'), + ('足', '蹤'), + ('足', '蹠'), + ('足', '踪'), + ('足', '蹣'), + ('足', '蹕'), + ('足', '蹶'), + ('足', '蹲'), + ('足', '蹼'), + ('足', '躁'), + ('足', '躇'), + ('足', '躅'), + ('足', '躄'), + ('足', '躋'), + ('足', '躊'), + ('足', '躓'), + ('足', '躑'), + ('足', '躔'), + ('足', '躙'), + ('足', '躪'), + ('足', '躡'), + ('足', '齪'), + ('身', '窮'), + ('身', '躯'), + ('身', '射'), + ('身', '謝'), + ('身', '身'), + ('身', '躬'), + ('身', '躰'), + ('身', '軆'), + ('身', '躱'), + ('身', '躾'), + ('身', '軅'), + ('身', '軈'), + ('身', '麝'), + ('車', '運'), + ('車', '較'), + ('車', '轄'), + ('車', '揮'), + ('車', '軌'), + ('車', '輝'), + ('車', '轡'), + ('車', '軍'), + ('車', '繋'), + ('車', '軽'), + ('車', '撃'), + ('車', '軒'), + ('車', '庫'), + ('車', '轟'), + ('車', '載'), + ('車', '斬'), + ('車', '暫'), + ('車', '軸'), + ('車', '車'), + ('車', '輯'), + ('車', '陣'), + ('車', '漸'), + ('車', '轍'), + ('車', '転'), + ('車', '軟'), + ('車', '輩'), + ('車', '範'), + ('車', '輔'), + ('車', '輸'), + ('車', '輿'), + ('車', '輪'), + ('車', '漣'), + ('車', '蓮'), + ('車', '連'), + ('車', '俥'), + ('車', '嗹'), + ('車', '囀'), + ('車', '塹'), + ('車', '嶄'), + ('車', '慙'), + ('車', '慚'), + ('車', '暈'), + ('車', '暉'), + ('車', '槧'), + ('車', '渾'), + ('車', '琿'), + ('車', '皸'), + ('車', '皹'), + ('車', '縺'), + ('車', '葷'), + ('車', '褌'), + ('車', '諢'), + ('車', '軋'), + ('車', '軛'), + ('車', '軣'), + ('車', '軼'), + ('車', '軻'), + ('車', '軫'), + ('車', '軾'), + ('車', '輊'), + ('車', '輅'), + ('車', '輕'), + ('車', '輒'), + ('車', '輙'), + ('車', '輓'), + ('車', '輜'), + ('車', '輟'), + ('車', '輛'), + ('車', '輌'), + ('車', '輦'), + ('車', '輳'), + ('車', '輻'), + ('車', '輹'), + ('車', '轅'), + ('車', '轂'), + ('車', '輾'), + ('車', '轌'), + ('車', '轉'), + ('車', '轆'), + ('車', '轎'), + ('車', '轗'), + ('車', '轜'), + ('車', '轢'), + ('車', '轣'), + ('車', '轤'), + ('車', '鏨'), + ('車', '鏈'), + ('車', '鶤'), + ('辛', '梓'), + ('辛', '倖'), + ('辛', '幸'), + ('辛', '宰'), + ('辛', '辞'), + ('辛', '執'), + ('辛', '新'), + ('辛', '薪'), + ('辛', '親'), + ('辛', '辛'), + ('辛', '鐸'), + ('辛', '噺'), + ('辛', '避'), + ('辛', '僻'), + ('辛', '壁'), + ('辛', '癖'), + ('辛', '報'), + ('辛', '劈'), + ('辛', '辨'), + ('辛', '辧'), + ('辛', '圉'), + ('辛', '嬖'), + ('辛', '懌'), + ('辛', '摯'), + ('辛', '擇'), + ('辛', '撻'), + ('辛', '擘'), + ('辛', '檗'), + ('辛', '蘗'), + ('辛', '蘖'), + ('辛', '滓'), + ('辛', '澤'), + ('辛', '璧'), + ('辛', '瓣'), + ('辛', '甓'), + ('辛', '睾'), + ('辛', '縡'), + ('辛', '繹'), + ('辛', '辮'), + ('辛', '臂'), + ('辛', '薛'), + ('辛', '薜'), + ('辛', '蟄'), + ('辛', '襞'), + ('辛', '譬'), + ('辛', '譯'), + ('辛', '贄'), + ('辛', '躄'), + ('辛', '辜'), + ('辛', '辟'), + ('辛', '辣'), + ('辛', '辭'), + ('辛', '辯'), + ('辛', '逹'), + ('辛', '釋'), + ('辛', '闥'), + ('辛', '闢'), + ('辛', '霹'), + ('辛', '驛'), + ('辛', '鷙'), + ('辰', '辱'), + ('辰', '唇'), + ('辰', '娠'), + ('辰', '振'), + ('辰', '震'), + ('辰', '辰'), + ('辰', '賑'), + ('辰', '濃'), + ('辰', '膿'), + ('辰', '農'), + ('辰', '儂'), + ('辰', '宸'), + ('辰', '晨'), + ('辰', '溽'), + ('辰', '縟'), + ('辰', '耨'), + ('辰', '脣'), + ('辰', '蓐'), + ('辰', '蜃'), + ('辰', '褥'), + ('酉', '醐'), + ('酉', '酵'), + ('酉', '酷'), + ('酉', '酸'), + ('酉', '酌'), + ('酉', '酒'), + ('酉', '酋'), + ('酉', '酬'), + ('酉', '醜'), + ('酉', '遵'), + ('酉', '醇'), + ('酉', '醤'), + ('酉', '醸'), + ('酉', '酢'), + ('酉', '酔'), + ('酉', '醒'), + ('酉', '尊'), + ('酉', '醍'), + ('酉', '樽'), + ('酉', '酎'), + ('酉', '鄭'), + ('酉', '酉'), + ('酉', '楢'), + ('酉', '配'), + ('酉', '醗'), + ('酉', '鱒'), + ('酉', '猶'), + ('酉', '猷'), + ('酉', '酪'), + ('酉', '墫'), + ('酉', '奠'), + ('酉', '擲'), + ('酉', '蕕'), + ('酉', '蹲'), + ('酉', '躑'), + ('酉', '遒'), + ('酉', '逎'), + ('酉', '酊'), + ('酉', '酖'), + ('酉', '酘'), + ('酉', '酣'), + ('酉', '酥'), + ('酉', '酩'), + ('酉', '酳'), + ('酉', '酲'), + ('酉', '醋'), + ('酉', '醉'), + ('酉', '醂'), + ('酉', '醢'), + ('酉', '醫'), + ('酉', '醯'), + ('酉', '醪'), + ('酉', '醵'), + ('酉', '醴'), + ('酉', '醺'), + ('酉', '釀'), + ('酉', '釁'), + ('酉', '鰌'), + ('釆', '悉'), + ('釆', '釈'), + ('釆', '審'), + ('釆', '播'), + ('釆', '幡'), + ('釆', '藩'), + ('釆', '釆'), + ('釆', '番'), + ('釆', '蕃'), + ('釆', '翻'), + ('釆', '旛'), + ('釆', '旙'), + ('釆', '潘'), + ('釆', '瀋'), + ('釆', '燔'), + ('釆', '竊'), + ('釆', '繙'), + ('釆', '飜'), + ('釆', '膰'), + ('釆', '蟋'), + ('釆', '蟠'), + ('釆', '釉'), + ('釆', '釋'), + ('釆', '鐇'), + ('釆', '鷭'), + ('里', '浬'), + ('里', '鯉'), + ('里', '黒'), + ('里', '種'), + ('里', '腫'), + ('里', '重'), + ('里', '衝'), + ('里', '鍾'), + ('里', '鐘'), + ('里', '糎'), + ('里', '黛'), + ('里', '狸'), + ('里', '纏'), + ('里', '董'), + ('里', '動'), + ('里', '憧'), + ('里', '撞'), + ('里', '瞳'), + ('里', '童'), + ('里', '墨'), + ('里', '埋'), + ('里', '哩'), + ('里', '黙'), + ('里', '野'), + ('里', '理'), + ('里', '裏'), + ('里', '裡'), + ('里', '里'), + ('里', '糧'), + ('里', '量'), + ('里', '厘'), + ('里', '俚'), + ('里', '僮'), + ('里', '儻'), + ('里', '墅'), + ('里', '壥'), + ('里', '幢'), + ('里', '廛'), + ('里', '橦'), + ('里', '潼'), + ('里', '默'), + ('里', '甅'), + ('里', '竰'), + ('里', '纒'), + ('里', '艟'), + ('里', '貍'), + ('里', '踵'), + ('里', '釐'), + ('里', '霾'), + ('里', '黔'), + ('里', '黜'), + ('里', '點'), + ('里', '黝'), + ('里', '黠'), + ('里', '黥'), + ('里', '黨'), + ('里', '黯'), + ('里', '黴'), + ('里', '黶'), + ('里', '黷'), + ('舛', '傑'), + ('舛', '瞬'), + ('舛', '舜'), + ('舛', '舛'), + ('舛', '舞'), + ('舛', '桝'), + ('舛', '燐'), + ('舛', '隣'), + ('舛', '鱗'), + ('舛', '麟'), + ('舛', '憐'), + ('舛', '桀'), + ('舛', '磔'), + ('舛', '蕣'), + ('舛', '鄰'), + ('麦', '麹'), + ('麦', '麦'), + ('麦', '麺'), + ('麦', '麥'), + ('麦', '麩'), + ('麦', '麸'), + ('麦', '麪'), + ('麦', '麭'), + ('金', '鋭'), + ('金', '鉛'), + ('金', '鎧'), + ('金', '鈎'), + ('金', '釜'), + ('金', '鎌'), + ('金', '鑑'), + ('金', '鋸'), + ('金', '鏡'), + ('金', '錦'), + ('金', '欽'), + ('金', '金'), + ('金', '銀'), + ('金', '釧'), + ('金', '鍬'), + ('金', '鍵'), + ('金', '鈷'), + ('金', '鉱'), + ('金', '鋼'), + ('金', '鎖'), + ('金', '錯'), + ('金', '錆'), + ('金', '錫'), + ('金', '銃'), + ('金', '鋤'), + ('金', '鉦'), + ('金', '鍾'), + ('金', '鐘'), + ('金', '錠'), + ('金', '針'), + ('金', '錐'), + ('金', '錘'), + ('金', '銭'), + ('金', '銑'), + ('金', '鎗'), + ('金', '鐸'), + ('金', '鍛'), + ('金', '鋳'), + ('金', '銚'), + ('金', '鎮'), + ('金', '鎚'), + ('金', '鍔'), + ('金', '釣'), + ('金', '釘'), + ('金', '鏑'), + ('金', '鉄'), + ('金', '鍍'), + ('金', '鐙'), + ('金', '銅'), + ('金', '鈍'), + ('金', '鍋'), + ('金', '鉢'), + ('金', '錨'), + ('金', '鋲'), + ('金', '鋪'), + ('金', '鋒'), + ('金', '鉾'), + ('金', '釦'), + ('金', '銘'), + ('金', '鑓'), + ('金', '劉'), + ('金', '鈴'), + ('金', '錬'), + ('金', '録'), + ('金', '嚠'), + ('金', '崟'), + ('金', '淦'), + ('金', '瀏'), + ('金', '釖'), + ('金', '釟'), + ('金', '釡'), + ('金', '釛'), + ('金', '釼'), + ('金', '釵'), + ('金', '釶'), + ('金', '鈞'), + ('金', '釿'), + ('金', '鈔'), + ('金', '鈬'), + ('金', '鈕'), + ('金', '鈑'), + ('金', '鉞'), + ('金', '鉗'), + ('金', '鉅'), + ('金', '鉉'), + ('金', '鉤'), + ('金', '鉈'), + ('金', '銕'), + ('金', '鈿'), + ('金', '鉋'), + ('金', '鉐'), + ('金', '銜'), + ('金', '銖'), + ('金', '銓'), + ('金', '銛'), + ('金', '鉚'), + ('金', '鋏'), + ('金', '銹'), + ('金', '銷'), + ('金', '鋩'), + ('金', '錏'), + ('金', '鋺'), + ('金', '鍄'), + ('金', '錮'), + ('金', '錙'), + ('金', '錢'), + ('金', '錚'), + ('金', '錣'), + ('金', '錺'), + ('金', '錵'), + ('金', '錻'), + ('金', '鍜'), + ('金', '鍠'), + ('金', '鍼'), + ('金', '鍮'), + ('金', '鍖'), + ('金', '鎰'), + ('金', '鎬'), + ('金', '鎭'), + ('金', '鎔'), + ('金', '鎹'), + ('金', '鏖'), + ('金', '鏗'), + ('金', '鏨'), + ('金', '鏥'), + ('金', '鏘'), + ('金', '鏃'), + ('金', '鏝'), + ('金', '鏐'), + ('金', '鏈'), + ('金', '鏤'), + ('金', '鐚'), + ('金', '鐔'), + ('金', '鐓'), + ('金', '鐃'), + ('金', '鐇'), + ('金', '鐐'), + ('金', '鐶'), + ('金', '鐫'), + ('金', '鐵'), + ('金', '鐡'), + ('金', '鐺'), + ('金', '鑁'), + ('金', '鑒'), + ('金', '鑄'), + ('金', '鑛'), + ('金', '鑠'), + ('金', '鑢'), + ('金', '鑞'), + ('金', '鑪'), + ('金', '鈩'), + ('金', '鑰'), + ('金', '鑵'), + ('金', '鑷'), + ('金', '鑽'), + ('金', '鑚'), + ('金', '鑼'), + ('金', '鑾'), + ('金', '钁'), + ('金', '鑿'), + ('長', '帳'), + ('長', '張'), + ('長', '脹'), + ('長', '長'), + ('長', '套'), + ('長', '髪'), + ('長', '髭'), + ('長', '悵'), + ('長', '漲'), + ('長', '肆'), + ('長', '萇'), + ('長', '髟'), + ('長', '髢'), + ('長', '髣'), + ('長', '髦'), + ('長', '髯'), + ('長', '髫'), + ('長', '髮'), + ('長', '髴'), + ('長', '髱'), + ('長', '髷'), + ('長', '髻'), + ('長', '鬆'), + ('長', '鬘'), + ('長', '鬚'), + ('長', '鬟'), + ('長', '鬢'), + ('長', '鬣'), + ('門', '闇'), + ('門', '閏'), + ('門', '閲'), + ('門', '開'), + ('門', '閣'), + ('門', '澗'), + ('門', '簡'), + ('門', '間'), + ('門', '閑'), + ('門', '関'), + ('門', '閤'), + ('門', '潤'), + ('門', '閃'), + ('門', '闘'), + ('門', '閥'), + ('門', '聞'), + ('門', '閉'), + ('門', '問'), + ('門', '悶'), + ('門', '門'), + ('門', '欄'), + ('門', '蘭'), + ('門', '們'), + ('門', '墹'), + ('門', '嫺'), + ('門', '嫻'), + ('門', '憫'), + ('門', '捫'), + ('門', '擱'), + ('門', '椚'), + ('門', '櫚'), + ('門', '瀾'), + ('門', '燗'), + ('門', '爛'), + ('門', '癇'), + ('門', '繝'), + ('門', '藺'), + ('門', '襴'), + ('門', '躙'), + ('門', '躪'), + ('門', '閂'), + ('門', '閇'), + ('門', '閊'), + ('門', '閔'), + ('門', '閖'), + ('門', '閘'), + ('門', '閙'), + ('門', '閠'), + ('門', '閨'), + ('門', '閧'), + ('門', '閭'), + ('門', '閼'), + ('門', '閻'), + ('門', '閹'), + ('門', '閾'), + ('門', '闊'), + ('門', '濶'), + ('門', '闃'), + ('門', '闍'), + ('門', '闌'), + ('門', '闕'), + ('門', '闔'), + ('門', '闖'), + ('門', '關'), + ('門', '闡'), + ('門', '闥'), + ('門', '闢'), + ('隶', '康'), + ('隶', '糠'), + ('隶', '繍'), + ('隶', '粛'), + ('隶', '逮'), + ('隶', '緑'), + ('隶', '隷'), + ('隶', '禄'), + ('隶', '録'), + ('隶', '嘯'), + ('隶', '慷'), + ('隶', '棣'), + ('隶', '碌'), + ('隶', '祿'), + ('隶', '簫'), + ('隶', '隶'), + ('隶', '隸'), + ('隶', '靆'), + ('隶', '鱇'), + ('隹', '惟'), + ('隹', '維'), + ('隹', '碓'), + ('隹', '雅'), + ('隹', '獲'), + ('隹', '確'), + ('隹', '穫'), + ('隹', '勧'), + ('隹', '歓'), + ('隹', '潅'), + ('隹', '観'), + ('隹', '贋'), + ('隹', '雁'), + ('隹', '携'), + ('隹', '権'), + ('隹', '雇'), + ('隹', '顧'), + ('隹', '護'), + ('隹', '催'), + ('隹', '雑'), + ('隹', '雌'), + ('隹', '讐'), + ('隹', '集'), + ('隹', '准'), + ('隹', '準'), + ('隹', '樵'), + ('隹', '焦'), + ('隹', '礁'), + ('隹', '蕉'), + ('隹', '進'), + ('隹', '推'), + ('隹', '錐'), + ('隹', '雛'), + ('隹', '雀'), + ('隹', '隻'), + ('隹', '堆'), + ('隹', '鷹'), + ('隹', '濯'), + ('隹', '奪'), + ('隹', '誰'), + ('隹', '稚'), + ('隹', '椎'), + ('隹', '鶴'), + ('隹', '擢'), + ('隹', '薙'), + ('隹', '灘'), + ('隹', '難'), + ('隹', '隼'), + ('隹', '奮'), + ('隹', '躍'), + ('隹', '唯'), + ('隹', '雄'), + ('隹', '擁'), + ('隹', '曜'), + ('隹', '耀'), + ('隹', '羅'), + ('隹', '離'), + ('隹', '儁'), + ('隹', '儺'), + ('隹', '勸'), + ('隹', '匯'), + ('隹', '凖'), + ('隹', '雙'), + ('隹', '售'), + ('隹', '囃'), + ('隹', '壅'), + ('隹', '寉'), + ('隹', '崔'), + ('隹', '帷'), + ('隹', '廱'), + ('隹', '憔'), + ('隹', '應'), + ('隹', '罹'), + ('隹', '懽'), + ('隹', '懼'), + ('隹', '截'), + ('隹', '戳'), + ('隹', '摧'), + ('隹', '攜'), + ('隹', '攤'), + ('隹', '攫'), + ('隹', '暹'), + ('隹', '權'), + ('隹', '櫂'), + ('隹', '欟'), + ('隹', '歡'), + ('隹', '淮'), + ('隹', '灌'), + ('隹', '燿'), + ('隹', '甕'), + ('隹', '癨'), + ('隹', '癰'), + ('隹', '瞿'), + ('隹', '矍'), + ('隹', '籬'), + ('隹', '糴'), + ('隹', '糶'), + ('隹', '罐'), + ('隹', '膺'), + ('隹', '舊'), + ('隹', '藺'), + ('隹', '蘿'), + ('隹', '虧'), + ('隹', '雖'), + ('隹', '蠖'), + ('隹', '衢'), + ('隹', '觀'), + ('隹', '讎'), + ('隹', '讙'), + ('隹', '躙'), + ('隹', '躪'), + ('隹', '軅'), + ('隹', '軈'), + ('隹', '邏'), + ('隹', '鐫'), + ('隹', '鑵'), + ('隹', '鑼'), + ('隹', '钁'), + ('隹', '隹'), + ('隹', '雎'), + ('隹', '雋'), + ('隹', '雉'), + ('隹', '雍'), + ('隹', '襍'), + ('隹', '雜'), + ('隹', '霍'), + ('隹', '雕'), + ('隹', '顴'), + ('隹', '騅'), + ('隹', '驩'), + ('隹', '鮠'), + ('隹', '鷦'), + ('隹', '鸛'), + ('雨', '雨'), + ('雨', '雲'), + ('雨', '霞'), + ('雨', '雫'), + ('雨', '儒'), + ('雨', '需'), + ('雨', '震'), + ('雨', '雪'), + ('雨', '霜'), + ('雨', '鱈'), + ('雨', '樗'), + ('雨', '嬬'), + ('雨', '電'), + ('雨', '曇'), + ('雨', '濡'), + ('雨', '雰'), + ('雨', '霧'), + ('雨', '雷'), + ('雨', '零'), + ('雨', '霊'), + ('雨', '露'), + ('雨', '漏'), + ('雨', '壜'), + ('雨', '孀'), + ('雨', '孺'), + ('雨', '懦'), + ('雨', '擂'), + ('雨', '霸'), + ('雨', '櫺'), + ('雨', '澪'), + ('雨', '癨'), + ('雨', '糯'), + ('雨', '繧'), + ('雨', '繻'), + ('雨', '罎'), + ('雨', '膤'), + ('雨', '臑'), + ('雨', '艝'), + ('雨', '蕾'), + ('雨', '蠕'), + ('雨', '襦'), + ('雨', '轌'), + ('雨', '轜'), + ('雨', '霍'), + ('雨', '雹'), + ('雨', '霄'), + ('雨', '霆'), + ('雨', '霈'), + ('雨', '霓'), + ('雨', '霎'), + ('雨', '霑'), + ('雨', '霏'), + ('雨', '霖'), + ('雨', '霙'), + ('雨', '霤'), + ('雨', '霪'), + ('雨', '霰'), + ('雨', '霹'), + ('雨', '霽'), + ('雨', '霾'), + ('雨', '靄'), + ('雨', '靆'), + ('雨', '靈'), + ('雨', '靂'), + ('雨', '靉'), + ('青', '鯖'), + ('青', '錆'), + ('青', '情'), + ('青', '晴'), + ('青', '清'), + ('青', '精'), + ('青', '請'), + ('青', '青'), + ('青', '静'), + ('青', '瀞'), + ('青', '靖'), + ('青', '倩'), + ('青', '猜'), + ('青', '睛'), + ('青', '菁'), + ('青', '蜻'), + ('青', '靜'), + ('非', '罪'), + ('非', '俳'), + ('非', '排'), + ('非', '輩'), + ('非', '匪'), + ('非', '悲'), + ('非', '扉'), + ('非', '斐'), + ('非', '緋'), + ('非', '誹'), + ('非', '非'), + ('非', '徘'), + ('非', '暃'), + ('非', '榧'), + ('非', '琲'), + ('非', '翡'), + ('非', '腓'), + ('非', '菲'), + ('非', '蜚'), + ('非', '裴'), + ('非', '霏'), + ('非', '靠'), + ('非', '鯡'), + ('非', '靡'), + ('奄', '奄'), + ('奄', '掩'), + ('奄', '俺'), + ('奄', '淹'), + ('奄', '罨'), + ('奄', '菴'), + ('奄', '閹'), + ('岡', '岡'), + ('岡', '綱'), + ('岡', '鋼'), + ('岡', '剛'), + ('岡', '崗'), + ('岡', '棡'), + ('免', '逸'), + ('免', '挽'), + ('免', '晩'), + ('免', '勉'), + ('免', '娩'), + ('免', '免'), + ('免', '俛'), + ('免', '兔'), + ('免', '冕'), + ('免', '冤'), + ('免', '寃'), + ('免', '悗'), + ('免', '輓'), + ('斉', '済'), + ('斉', '斎'), + ('斉', '剤'), + ('斉', '斉'), + ('斉', '緕'), + ('面', '緬'), + ('面', '面'), + ('面', '麺'), + ('面', '湎'), + ('面', '靤'), + ('面', '靦'), + ('面', '靨'), + ('革', '鞍'), + ('革', '革'), + ('革', '鞄'), + ('革', '鞠'), + ('革', '靴'), + ('革', '鞘'), + ('革', '靭'), + ('革', '覇'), + ('革', '鞭'), + ('革', '霸'), + ('革', '羈'), + ('革', '羇'), + ('革', '覊'), + ('革', '鞫'), + ('革', '勒'), + ('革', '靫'), + ('革', '靱'), + ('革', '靹'), + ('革', '鞅'), + ('革', '靼'), + ('革', '鞁'), + ('革', '靺'), + ('革', '鞆'), + ('革', '鞋'), + ('革', '鞏'), + ('革', '鞐'), + ('革', '鞜'), + ('革', '鞨'), + ('革', '鞦'), + ('革', '鞣'), + ('革', '鞳'), + ('革', '鞴'), + ('革', '韃'), + ('革', '韆'), + ('革', '韈'), + ('韭', '韮'), + ('韭', '孅'), + ('韭', '懺'), + ('韭', '懴'), + ('韭', '殲'), + ('韭', '殱'), + ('韭', '籤'), + ('韭', '籖'), + ('韭', '纖'), + ('韭', '纎'), + ('韭', '薤'), + ('韭', '讖'), + ('韭', '韭'), + ('韭', '齏'), + ('韭', '韲'), + ('音', '暗'), + ('音', '闇'), + ('音', '意'), + ('音', '韻'), + ('音', '億'), + ('音', '憶'), + ('音', '臆'), + ('音', '音'), + ('音', '境'), + ('音', '鏡'), + ('音', '響'), + ('音', '識'), + ('音', '彰'), + ('音', '樟'), + ('音', '章'), + ('音', '障'), + ('音', '織'), + ('音', '職'), + ('音', '竸'), + ('音', '噫'), + ('音', '嶂'), + ('音', '幟'), + ('音', '檍'), + ('音', '熾'), + ('音', '璋'), + ('音', '瘴'), + ('音', '諳'), + ('音', '竟'), + ('音', '韶'), + ('音', '韵'), + ('音', '鱆'), + ('音', '黯'), + ('頁', '穎'), + ('頁', '頴'), + ('頁', '額'), + ('頁', '顎'), + ('頁', '頑'), + ('頁', '顔'), + ('頁', '願'), + ('頁', '傾'), + ('頁', '頚'), + ('頁', '顕'), + ('頁', '顧'), + ('頁', '項'), + ('頁', '頃'), + ('頁', '順'), + ('頁', '須'), + ('頁', '頗'), + ('頁', '瀬'), + ('頁', '碩'), + ('頁', '題'), + ('頁', '頂'), + ('頁', '顛'), + ('頁', '頭'), + ('頁', '噸'), + ('頁', '頓'), + ('頁', '煩'), + ('頁', '頒'), + ('頁', '瀕'), + ('頁', '頻'), + ('頁', '頁'), + ('頁', '頬'), + ('頁', '預'), + ('頁', '頼'), + ('頁', '領'), + ('頁', '類'), + ('頁', '嶺'), + ('頁', '嬾'), + ('頁', '巓'), + ('頁', '懶'), + ('頁', '潁'), + ('頁', '獺'), + ('頁', '癩'), + ('頁', '癲'), + ('頁', '籟'), + ('頁', '纈'), + ('頁', '纐'), + ('頁', '蕷'), + ('頁', '蘋'), + ('頁', '藾'), + ('頁', '襭'), + ('頁', '頏'), + ('頁', '頌'), + ('頁', '頸'), + ('頁', '頤'), + ('頁', '頡'), + ('頁', '頷'), + ('頁', '頽'), + ('頁', '顆'), + ('頁', '顏'), + ('頁', '顋'), + ('頁', '顫'), + ('頁', '顯'), + ('頁', '顰'), + ('頁', '顱'), + ('頁', '顴'), + ('頁', '顳'), + ('頁', '鬚'), + ('風', '楓'), + ('風', '風'), + ('風', '繭'), + ('風', '嵐'), + ('風', '瘋'), + ('風', '諷'), + ('風', '颪'), + ('風', '颯'), + ('風', '颱'), + ('風', '颶'), + ('風', '飄'), + ('風', '飃'), + ('風', '飆'), + ('飛', '飛'), + ('飛', '飜'), + ('食', '飴'), + ('食', '飲'), + ('食', '餌'), + ('食', '餓'), + ('食', '館'), + ('食', '飢'), + ('食', '饗'), + ('食', '喰'), + ('食', '餐'), + ('食', '飼'), + ('食', '飾'), + ('食', '食'), + ('食', '蝕'), + ('食', '飯'), + ('食', '飽'), + ('食', '餅'), + ('食', '養'), + ('食', '飭'), + ('食', '飮'), + ('食', '瀁'), + ('食', '癢'), + ('食', '飩'), + ('食', '飫'), + ('食', '餃'), + ('食', '餉'), + ('食', '餒'), + ('食', '餔'), + ('食', '餘'), + ('食', '餡'), + ('食', '餝'), + ('食', '餞'), + ('食', '餤'), + ('食', '餠'), + ('食', '餬'), + ('食', '餮'), + ('食', '餽'), + ('食', '餾'), + ('食', '饂'), + ('食', '饉'), + ('食', '饅'), + ('食', '饐'), + ('食', '饋'), + ('食', '饑'), + ('食', '饒'), + ('食', '饌'), + ('食', '饕'), + ('食', '鱶'), + ('首', '首'), + ('首', '道'), + ('首', '馗'), + ('首', '馘'), + ('香', '馨'), + ('香', '香'), + ('香', '馥'), + ('品', '癌'), + ('品', '繰'), + ('品', '操'), + ('品', '燥'), + ('品', '藻'), + ('品', '品'), + ('品', '臨'), + ('品', '傴'), + ('品', '區'), + ('品', '嘔'), + ('品', '噪'), + ('品', '奩'), + ('品', '嫗'), + ('品', '嵒'), + ('品', '嶇'), + ('品', '懆'), + ('品', '樞'), + ('品', '歐'), + ('品', '毆'), + ('品', '蕚'), + ('品', '謳'), + ('品', '譟'), + ('品', '躁'), + ('品', '驅'), + ('品', '髞'), + ('馬', '駅'), + ('馬', '駕'), + ('馬', '騎'), + ('馬', '驚'), + ('馬', '駆'), + ('馬', '駈'), + ('馬', '駒'), + ('馬', '験'), + ('馬', '駿'), + ('馬', '騒'), + ('馬', '駄'), + ('馬', '騨'), + ('馬', '馳'), + ('馬', '駐'), + ('馬', '騰'), + ('馬', '篤'), + ('馬', '馴'), + ('馬', '罵'), + ('馬', '馬'), + ('馬', '駁'), + ('馬', '媽'), + ('馬', '憑'), + ('馬', '瑪'), + ('馬', '碼'), + ('馬', '羈'), + ('馬', '覊'), + ('馬', '闖'), + ('馬', '隲'), + ('馬', '馭'), + ('馬', '馮'), + ('馬', '馼'), + ('馬', '駟'), + ('馬', '駛'), + ('馬', '駝'), + ('馬', '駘'), + ('馬', '駑'), + ('馬', '駭'), + ('馬', '駮'), + ('馬', '駱'), + ('馬', '駲'), + ('馬', '駻'), + ('馬', '駸'), + ('馬', '騁'), + ('馬', '騏'), + ('馬', '騅'), + ('馬', '駢'), + ('馬', '騙'), + ('馬', '騫'), + ('馬', '騷'), + ('馬', '驅'), + ('馬', '驂'), + ('馬', '驀'), + ('馬', '驃'), + ('馬', '騾'), + ('馬', '驕'), + ('馬', '驍'), + ('馬', '驛'), + ('馬', '驗'), + ('馬', '驟'), + ('馬', '驢'), + ('馬', '驥'), + ('馬', '驤'), + ('馬', '驩'), + ('馬', '驫'), + ('馬', '驪'), + ('骨', '骸'), + ('骨', '滑'), + ('骨', '骨'), + ('骨', '髄'), + ('骨', '榾'), + ('骨', '猾'), + ('骨', '磆'), + ('骨', '骭'), + ('骨', '骰'), + ('骨', '骼'), + ('骨', '髀'), + ('骨', '髏'), + ('骨', '髑'), + ('骨', '髓'), + ('骨', '體'), + ('骨', '鶻'), + ('高', '稿'), + ('高', '膏'), + ('高', '高'), + ('高', '縞'), + ('高', '嵩'), + ('高', '塙'), + ('高', '藁'), + ('高', '嚆'), + ('高', '敲'), + ('高', '槁'), + ('高', '犒'), + ('高', '稾'), + ('高', '蒿'), + ('高', '鎬'), + ('高', '髞'), + ('髟', '髪'), + ('髟', '髭'), + ('髟', '髟'), + ('髟', '髢'), + ('髟', '髣'), + ('髟', '髦'), + ('髟', '髯'), + ('髟', '髫'), + ('髟', '髮'), + ('髟', '髴'), + ('髟', '髱'), + ('髟', '髷'), + ('髟', '髻'), + ('髟', '鬆'), + ('髟', '鬘'), + ('髟', '鬚'), + ('髟', '鬟'), + ('髟', '鬢'), + ('髟', '鬣'), + ('鬥', '鬥'), + ('鬥', '鬧'), + ('鬥', '鬨'), + ('鬥', '鬩'), + ('鬥', '鬪'), + ('鬥', '鬮'), + ('鬯', '鬯'), + ('鬲', '隔'), + ('鬲', '融'), + ('鬲', '獻'), + ('鬲', '鬻'), + ('鬲', '膈'), + ('鬲', '鬲'), + ('鬼', '塊'), + ('鬼', '魁'), + ('鬼', '鬼'), + ('鬼', '魂'), + ('鬼', '蒐'), + ('鬼', '醜'), + ('鬼', '魔'), + ('鬼', '魅'), + ('鬼', '傀'), + ('鬼', '嵬'), + ('鬼', '巍'), + ('鬼', '愧'), + ('鬼', '槐'), + ('鬼', '瑰'), + ('鬼', '莵'), + ('鬼', '隗'), + ('鬼', '餽'), + ('鬼', '魄'), + ('鬼', '魃'), + ('鬼', '魏'), + ('鬼', '魍'), + ('鬼', '魎'), + ('鬼', '魑'), + ('鬼', '魘'), + ('竜', '滝'), + ('竜', '竜'), + ('竜', '篭'), + ('竜', '槞'), + ('韋', '葦'), + ('韋', '偉'), + ('韋', '緯'), + ('韋', '違'), + ('韋', '衛'), + ('韋', '韓'), + ('韋', '圍'), + ('韋', '幃'), + ('韋', '諱'), + ('韋', '韋'), + ('韋', '韜'), + ('魚', '鯵'), + ('魚', '鮎'), + ('魚', '鰯'), + ('魚', '鰻'), + ('魚', '鰍'), + ('魚', '鰹'), + ('魚', '漁'), + ('魚', '魚'), + ('魚', '鯨'), + ('魚', '鯉'), + ('魚', '鮭'), + ('魚', '鯖'), + ('魚', '鮫'), + ('魚', '鮮'), + ('魚', '蘇'), + ('魚', '鯛'), + ('魚', '鱈'), + ('魚', '鰭'), + ('魚', '鮒'), + ('魚', '鮪'), + ('魚', '鱒'), + ('魚', '鱗'), + ('魚', '魯'), + ('魚', '櫓'), + ('魚', '鰐'), + ('魚', '癬'), + ('魚', '艪'), + ('魚', '薊'), + ('魚', '蘓'), + ('魚', '蘚'), + ('魚', '魴'), + ('魚', '鮓'), + ('魚', '鮃'), + ('魚', '鮑'), + ('魚', '鮖'), + ('魚', '鮗'), + ('魚', '鮟'), + ('魚', '鮠'), + ('魚', '鮨'), + ('魚', '鮴'), + ('魚', '鯀'), + ('魚', '鯊'), + ('魚', '鮹'), + ('魚', '鯆'), + ('魚', '鯏'), + ('魚', '鯑'), + ('魚', '鯒'), + ('魚', '鯣'), + ('魚', '鯢'), + ('魚', '鯤'), + ('魚', '鯔'), + ('魚', '鯡'), + ('魚', '鰺'), + ('魚', '鯲'), + ('魚', '鯱'), + ('魚', '鯰'), + ('魚', '鰕'), + ('魚', '鰔'), + ('魚', '鰉'), + ('魚', '鰓'), + ('魚', '鰌'), + ('魚', '鰆'), + ('魚', '鰈'), + ('魚', '鰒'), + ('魚', '鰊'), + ('魚', '鰄'), + ('魚', '鰮'), + ('魚', '鰛'), + ('魚', '鰥'), + ('魚', '鰤'), + ('魚', '鰡'), + ('魚', '鰰'), + ('魚', '鱇'), + ('魚', '鰲'), + ('魚', '鱆'), + ('魚', '鰾'), + ('魚', '鱚'), + ('魚', '鱠'), + ('魚', '鱧'), + ('魚', '鱶'), + ('魚', '鱸'), + ('鳥', '烏'), + ('鳥', '鵜'), + ('鳥', '鴛'), + ('鳥', '鴬'), + ('鳥', '鴎'), + ('鳥', '鴨'), + ('鳥', '鶏'), + ('鳥', '鴻'), + ('鳥', '鵠'), + ('鳥', '鷺'), + ('鳥', '鴫'), + ('鳥', '鷹'), + ('鳥', '鳥'), + ('鳥', '蔦'), + ('鳥', '鶴'), + ('鳥', '島'), + ('鳥', '嶋'), + ('鳥', '鴇'), + ('鳥', '鳶'), + ('鳥', '鳩'), + ('鳥', '鳳'), + ('鳥', '鵬'), + ('鳥', '鵡'), + ('鳥', '鳴'), + ('鳥', '鷲'), + ('鳥', '嗚'), + ('鳥', '塢'), + ('鳥', '嫣'), + ('鳥', '嶌'), + ('鳥', '搗'), + ('鳥', '梟'), + ('鳥', '槝'), + ('鳥', '樢'), + ('鳥', '篶'), + ('鳥', '鳧'), + ('鳥', '鳬'), + ('鳥', '鳰'), + ('鳥', '鴉'), + ('鳥', '鴈'), + ('鳥', '鳫'), + ('鳥', '鴃'), + ('鳥', '鴆'), + ('鳥', '鴪'), + ('鳥', '鴦'), + ('鳥', '鶯'), + ('鳥', '鴣'), + ('鳥', '鴟'), + ('鳥', '鵄'), + ('鳥', '鴕'), + ('鳥', '鴒'), + ('鳥', '鵁'), + ('鳥', '鴿'), + ('鳥', '鴾'), + ('鳥', '鵆'), + ('鳥', '鵈'), + ('鳥', '鵝'), + ('鳥', '鵞'), + ('鳥', '鵤'), + ('鳥', '鵑'), + ('鳥', '鵐'), + ('鳥', '鵙'), + ('鳥', '鵲'), + ('鳥', '鶉'), + ('鳥', '鶇'), + ('鳥', '鶫'), + ('鳥', '鵯'), + ('鳥', '鵺'), + ('鳥', '鶚'), + ('鳥', '鶤'), + ('鳥', '鶩'), + ('鳥', '鶲'), + ('鳥', '鷄'), + ('鳥', '鷁'), + ('鳥', '鶻'), + ('鳥', '鶸'), + ('鳥', '鶺'), + ('鳥', '鷆'), + ('鳥', '鷏'), + ('鳥', '鷂'), + ('鳥', '鷙'), + ('鳥', '鷓'), + ('鳥', '鷸'), + ('鳥', '鷦'), + ('鳥', '鷭'), + ('鳥', '鷯'), + ('鳥', '鷽'), + ('鳥', '鸚'), + ('鳥', '鸛'), + ('鳥', '鸞'), + ('鹵', '鹸'), + ('鹵', '滷'), + ('鹵', '鹵'), + ('鹵', '鹹'), + ('鹵', '鹽'), + ('鹿', '漉'), + ('鹿', '鹿'), + ('鹿', '塵'), + ('鹿', '麟'), + ('鹿', '麗'), + ('鹿', '麓'), + ('鹿', '儷'), + ('鹿', '灑'), + ('鹿', '轆'), + ('鹿', '鏖'), + ('鹿', '驪'), + ('鹿', '麁'), + ('鹿', '麈'), + ('鹿', '麋'), + ('鹿', '麌'), + ('鹿', '麒'), + ('鹿', '麕'), + ('鹿', '麑'), + ('鹿', '麝'), + ('麻', '摩'), + ('麻', '磨'), + ('麻', '魔'), + ('麻', '麻'), + ('麻', '麿'), + ('麻', '暦'), + ('麻', '歴'), + ('麻', '嘛'), + ('麻', '麼'), + ('麻', '麾'), + ('麻', '糜'), + ('麻', '縻'), + ('麻', '靡'), + ('亀', '穐'), + ('亀', '竃'), + ('亀', '亀'), + ('亀', '縄'), + ('亀', '蝿'), + ('亀', '龝'), + ('亀', '鬮'), + ('亀', '龜'), + ('滴', '嫡'), + ('滴', '摘'), + ('滴', '敵'), + ('滴', '滴'), + ('滴', '適'), + ('滴', '鏑'), + ('滴', '謫'), + ('黄', '横'), + ('黄', '黄'), + ('黄', '壙'), + ('黄', '廣'), + ('黄', '搆'), + ('黄', '擴'), + ('黄', '曠'), + ('黄', '礦'), + ('黄', '簧'), + ('黄', '鑛'), + ('黄', '黌'), + ('黒', '黒'), + ('黒', '黛'), + ('黒', '墨'), + ('黒', '黙'), + ('黒', '儻'), + ('黒', '壥'), + ('黒', '默'), + ('黒', '纒'), + ('黒', '黔'), + ('黒', '黜'), + ('黒', '點'), + ('黒', '黝'), + ('黒', '黠'), + ('黒', '黥'), + ('黒', '黨'), + ('黒', '黯'), + ('黒', '黴'), + ('黒', '黶'), + ('黒', '黷'), + ('黍', '黍'), + ('黍', '藜'), + ('黍', '黎'), + ('黍', '黏'), + ('黍', '黐'), + ('黹', '黹'), + ('黹', '黻'), + ('黹', '黼'), + ('無', '撫'), + ('無', '舞'), + ('無', '蕪'), + ('無', '無'), + ('無', '嘸'), + ('無', '廡'), + ('無', '憮'), + ('歯', '噛'), + ('歯', '歯'), + ('歯', '齢'), + ('歯', '囓'), + ('歯', '齒'), + ('歯', '齔'), + ('歯', '齣'), + ('歯', '齟'), + ('歯', '齠'), + ('歯', '齡'), + ('歯', '齦'), + ('歯', '齧'), + ('歯', '齬'), + ('歯', '齪'), + ('歯', '齷'), + ('歯', '齲'), + ('歯', '齶'), + ('黽', '竈'), + ('黽', '繩'), + ('黽', '蠅'), + ('黽', '黽'), + ('黽', '鼇'), + ('黽', '鼈'), + ('鼎', '鼎'), + ('鼓', '鼓'), + ('鼓', '瞽'), + ('鼓', '皷'), + ('鼓', '鼕'), + ('鼠', '鼠'), + ('鼠', '獵'), + ('鼠', '竄'), + ('鼠', '臘'), + ('鼠', '鑞'), + ('鼠', '鬣'), + ('鼠', '鼬'), + ('鼻', '鼻'), + ('鼻', '嚊'), + ('鼻', '嬶'), + ('鼻', '鼾'), + ('齊', '儕'), + ('齊', '劑'), + ('齊', '擠'), + ('齊', '濟'), + ('齊', '齋'), + ('齊', '纃'), + ('齊', '臍'), + ('齊', '薺'), + ('齊', '齎'), + ('齊', '躋'), + ('齊', '霽'), + ('齊', '齏'), + ('齊', '韲'), + ('齊', '齊'), + ('龠', '籥'), + ('龠', '鑰'), + ('龠', '龠'); \ No newline at end of file diff --git a/lib/migrations/0004_populate_jouyou_kanji.sql b/lib/migrations/0004_populate_jouyou_kanji.sql new file mode 100644 index 0000000..a76e5d8 --- /dev/null +++ b/lib/migrations/0004_populate_jouyou_kanji.sql @@ -0,0 +1,52987 @@ +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("九", 2, "nine", "乛", 5, 55, 1, true), +("休", 6, "rest, day off, retire, sleep", "人", 5, 642, 1, true), +("貝", 7, "shellfish", "貝", 2, 1787, 1, true), +("右", 5, "right", "口", 5, 602, 1, true), +("気", 6, "spirit, mind, air, atmosphere, mood", "气", 5, 113, 1, true), +("王", 4, "king, rule, magnate", "玉", 3, 684, 1, true), +("円", 4, "circle, yen, round", "冂", 5, 69, 1, true), +("雨", 8, "rain", "雨", 5, 950, 1, true), +("下", 3, "below, down, descend, give, low, inferior", "一", 5, 97, 1, true), +("見", 7, "see, hopes, chances, idea, opinion, look at, visible", "見", 5, 22, 1, true), +("空", 8, "empty, sky, void, vacant, vacuum", "穴", 4, 304, 1, true), +("月", 4, "month, moon", "月", 5, 23, 1, true), +("玉", 5, "jewel, ball", "玉", 2, 737, 1, true), +("花", 7, "flower", "艸", 4, 578, 1, true), +("音", 9, "sound, noise", "音", 4, 491, 1, true), +("一", 1, "one, one radical (no.1)", "一", 5, 2, 1, true), +("金", 8, "gold", "金", 5, 53, 1, true), +("学", 8, "study, learning, science", "子", 5, 63, 1, true), +("校", 10, "exam, school, printing, proof, correction", "木", 5, 294, 1, true), +("口", 3, "mouth", "口", 4, 284, 1, true), +("犬", 4, "dog", "犬", 4, 1326, 1, true), +("火", 4, "fire", "火", 5, 574, 1, true), +("五", 4, "five", "二", 5, 31, 1, true), +("左", 5, "left", "工", 5, 630, 1, true), +("山", 3, "mountain", "山", 5, 131, 1, true), +("三", 3, "three", "一", 5, 14, 1, true), +("子", 3, "child, sign of the rat, 11PM-1AM, first sign of Chinese zodiac", "子", 5, 72, 1, true), +("四", 5, "four", "囗", 5, 47, 1, true), +("糸", 6, "thread", "糸", 2, 1488, 1, true), +("字", 6, "character, letter, word, section of village", "子", 4, 485, 1, true), +("耳", 6, "ear", "耳", 3, 1328, 1, true), +("車", 7, "car", "車", 5, 333, 1, true), +("手", 4, "hand", "手", 4, 60, 1, true), +("女", 3, "woman, female", "女", 5, 151, 1, true), +("小", 3, "little, small", "小", 5, 114, 1, true), +("十", 2, "ten", "十", 5, 8, 1, true), +("出", 5, "exit, leave, go out, come out, put out, protrude", "凵", 5, 13, 1, true), +("七", 2, "seven", "一", 5, 115, 1, true), +("森", 12, "forest, woods", "木", 2, 609, 1, true), +("上", 3, "above, up", "一", 5, 35, 1, true), +("人", 2, "person", "人", 5, 5, 1, true), +("水", 4, "water", "水", 5, 223, 1, true), +("生", 5, "life, genuine, birth", "生", 5, 29, 1, true), +("中", 4, "in, inside, middle, mean, center", "丨", 5, 11, 1, true), +("夕", 3, "evening", "夕", 4, 924, 1, true), +("草", 9, "grass, weeds, herbs, pasture, write, draft", "艸", 3, 967, 1, true), +("大", 3, "large, big", "大", 5, 7, 1, true), +("千", 3, "thousand", "十", 5, 195, 1, true), +("虫", 6, "insect, bug, temper", "虫", 2, 1351, 1, true), +("石", 5, "stone", "石", 3, 342, 1, true), +("川", 3, "stream, river, river or three-stroke river radical (no. 47)", "巛", 5, 181, 1, true), +("町", 7, "town, village, block, street", "田", 4, 292, 1, true), +("村", 7, "village, town", "木", 2, 253, 1, true), +("先", 6, "before, ahead, previous, future, precedence", "儿", 5, 173, 1, true), +("天", 4, "heavens, sky, imperial", "大", 5, 512, 1, true), +("足", 7, "leg, foot, be sufficient, counter for pairs of footwear", "足", 4, 343, 1, true), +("青", 8, "blue, green", "青", 4, 589, 1, true), +("正", 5, "correct, justice, righteous, 10**40", "止", 4, 143, 1, true), +("赤", 7, "red", "赤", 4, 584, 1, true), +("竹", 6, "bamboo", "竹", 2, 593, 1, true), +("田", 5, "rice field, rice paddy", "田", 4, 90, 1, true), +("早", 6, "early, fast", "日", 4, 402, 1, true), +("土", 3, "soil, earth, ground, Turkey", "土", 5, 307, 1, true), +("男", 7, "male", "田", 5, 240, 1, true), +("二", 2, "two, two radical (no. 7)", "二", 5, 9, 1, true), +("日", 4, "day, sun, Japan, counter for days", "日", 5, 1, 1, true), +("入", 2, "enter, insert", "入", 5, 56, 1, true), +("木", 4, "tree, wood", "木", 5, 317, 1, true), +("力", 2, "power, strength, strong, strain, bear up, exert", "力", 4, 62, 1, true), +("名", 6, "name, noted, distinguished, reputation", "口", 5, 177, 1, true), +("目", 5, "eye, class, look, insight, experience, care, favor", "目", 4, 76, 1, true), +("六", 4, "six", "八", 5, 93, 1, true), +("本", 5, "book, present, main, origin, true, real, counter for long cylindrical things", "木", 5, 10, 1, true), +("年", 6, "year, counter for years", "干", 5, 6, 1, true), +("文", 4, "sentence, literature, style, art, decoration, figures, plan, literary radical (no. 67)", "文", 4, 190, 1, true), +("白", 5, "white", "白", 5, 483, 1, true), +("百", 6, "hundred", "白", 5, 163, 1, true), +("八", 2, "eight, eight radical (no. 12)", "八", 5, 92, 1, true), +("林", 8, "grove, forest", "木", 2, 656, 1, true), +("立", 5, "stand up, rise, set up, erect", "立", 4, 58, 1, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("キュウ"), +("ク"), +("キュウ"), +("バイ"), +("ウ"), +("ユウ"), +("キ"), +("ケ"), +("オウ"), +("-ノウ"), +("エン"), +("ウ"), +("カ"), +("ゲ"), +("ケン"), +("クウ"), +("ゲツ"), +("ガツ"), +("ギョク"), +("カ"), +("ケ"), +("オン"), +("イン"), +("-ノン"), +("イチ"), +("イツ"), +("キン"), +("コン"), +("ゴン"), +("ガク"), +("コウ"), +("キョウ"), +("コウ"), +("ク"), +("ケン"), +("カ"), +("ゴ"), +("サ"), +("シャ"), +("サン"), +("セン"), +("サン"), +("ゾウ"), +("シ"), +("ス"), +("ツ"), +("シ"), +("シ"), +("ジ"), +("ジ"), +("シャ"), +("シュ"), +("ズ"), +("ジョ"), +("ニョ"), +("ニョウ"), +("ショウ"), +("ジュウ"), +("ジッ"), +("ジュッ"), +("シュツ"), +("スイ"), +("シチ"), +("シン"), +("ジョウ"), +("ショウ"), +("シャン"), +("ジン"), +("ニン"), +("スイ"), +("セイ"), +("ショウ"), +("チュウ"), +("セキ"), +("ソウ"), +("ダイ"), +("タイ"), +("セン"), +("チュウ"), +("キ"), +("セキ"), +("シャク"), +("コク"), +("セン"), +("チョウ"), +("ソン"), +("セン"), +("テン"), +("ソク"), +("セイ"), +("ショウ"), +("セイ"), +("ショウ"), +("セキ"), +("シャク"), +("チク"), +("デン"), +("ソウ"), +("サッ"), +("ド"), +("ト"), +("ダン"), +("ナン"), +("ニ"), +("ジ"), +("ニチ"), +("ジツ"), +("ニュウ"), +("ジュ"), +("ボク"), +("モク"), +("リョク"), +("リキ"), +("リイ"), +("メイ"), +("ミョウ"), +("モク"), +("ボク"), +("ロク"), +("リク"), +("ホン"), +("ネン"), +("ブン"), +("モン"), +("ハク"), +("ビャク"), +("ヒャク"), +("ビャク"), +("ハチ"), +("ハツ"), +("リン"), +("リツ"), +("リュウ"), +("リットル"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('九', 'キュウ'), +('九', 'ク'), +('休', 'キュウ'), +('貝', 'バイ'), +('右', 'ウ'), +('右', 'ユウ'), +('気', 'キ'), +('気', 'ケ'), +('王', 'オウ'), +('王', '-ノウ'), +('円', 'エン'), +('雨', 'ウ'), +('下', 'カ'), +('下', 'ゲ'), +('見', 'ケン'), +('空', 'クウ'), +('月', 'ゲツ'), +('月', 'ガツ'), +('玉', 'ギョク'), +('花', 'カ'), +('花', 'ケ'), +('音', 'オン'), +('音', 'イン'), +('音', '-ノン'), +('一', 'イチ'), +('一', 'イツ'), +('金', 'キン'), +('金', 'コン'), +('金', 'ゴン'), +('学', 'ガク'), +('校', 'コウ'), +('校', 'キョウ'), +('口', 'コウ'), +('口', 'ク'), +('犬', 'ケン'), +('火', 'カ'), +('五', 'ゴ'), +('左', 'サ'), +('左', 'シャ'), +('山', 'サン'), +('山', 'セン'), +('三', 'サン'), +('三', 'ゾウ'), +('子', 'シ'), +('子', 'ス'), +('子', 'ツ'), +('四', 'シ'), +('糸', 'シ'), +('字', 'ジ'), +('耳', 'ジ'), +('車', 'シャ'), +('手', 'シュ'), +('手', 'ズ'), +('女', 'ジョ'), +('女', 'ニョ'), +('女', 'ニョウ'), +('小', 'ショウ'), +('十', 'ジュウ'), +('十', 'ジッ'), +('十', 'ジュッ'), +('出', 'シュツ'), +('出', 'スイ'), +('七', 'シチ'), +('森', 'シン'), +('上', 'ジョウ'), +('上', 'ショウ'), +('上', 'シャン'), +('人', 'ジン'), +('人', 'ニン'), +('水', 'スイ'), +('生', 'セイ'), +('生', 'ショウ'), +('中', 'チュウ'), +('夕', 'セキ'), +('草', 'ソウ'), +('大', 'ダイ'), +('大', 'タイ'), +('千', 'セン'), +('虫', 'チュウ'), +('虫', 'キ'), +('石', 'セキ'), +('石', 'シャク'), +('石', 'コク'), +('川', 'セン'), +('町', 'チョウ'), +('村', 'ソン'), +('先', 'セン'), +('天', 'テン'), +('足', 'ソク'), +('青', 'セイ'), +('青', 'ショウ'), +('正', 'セイ'), +('正', 'ショウ'), +('赤', 'セキ'), +('赤', 'シャク'), +('竹', 'チク'), +('田', 'デン'), +('早', 'ソウ'), +('早', 'サッ'), +('土', 'ド'), +('土', 'ト'), +('男', 'ダン'), +('男', 'ナン'), +('二', 'ニ'), +('二', 'ジ'), +('日', 'ニチ'), +('日', 'ジツ'), +('入', 'ニュウ'), +('入', 'ジュ'), +('木', 'ボク'), +('木', 'モク'), +('力', 'リョク'), +('力', 'リキ'), +('力', 'リイ'), +('名', 'メイ'), +('名', 'ミョウ'), +('目', 'モク'), +('目', 'ボク'), +('六', 'ロク'), +('六', 'リク'), +('本', 'ホン'), +('年', 'ネン'), +('文', 'ブン'), +('文', 'モン'), +('白', 'ハク'), +('白', 'ビャク'), +('百', 'ヒャク'), +('百', 'ビャク'), +('八', 'ハチ'), +('八', 'ハツ'), +('林', 'リン'), +('立', 'リツ'), +('立', 'リュウ'), +('立', 'リットル'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('九', 'キュウ', 'nine, 9'), +('九州', 'キュウシュウ', 'Kyūshū (southernmost of the four main islands of Japan)'), +('十九', 'ジュウキュウ', '19, nineteen'), +('重九', 'チョウキュウ', 'Chrysanthemum Festival (the 9th day of the 9th lunar month), Double Ninth Festival'), +('九', 'キュウ', 'nine, 9'), +('九谷焼', 'クタニヤキ', 'Kutani ware, style of Japanese porcelain'), +('九九', 'クク', 'multiplication table, times table'), +('第九', 'ダイク', 'the ninth, Beethoven''s Ninth Symphony'), +('休憩', 'キュウケイ', 'rest, break, recess, intermission'), +('休暇', 'キュウカ', 'holiday, day off, furlough, absence (from work)'), +('帰休', 'キキュウ', 'leave, furlough, temporary layoff'), +('定休', 'テイキュウ', 'regular holiday, fixed day off, regular closing day'), +('貝', 'バイ', 'Japanese babylon (species of shelled mollusk, Babylonia japonica), Japanese ivory shell, spinning top (traditionally made from a Japanese babylon shell)'), +('貝貨', 'バイカ', 'shell money'), +('越虫貝', 'エッチュウバイ', 'finely-striate buccinum (species of whelk, Buccinum striatissimum)'), +('蝦夷貝', 'エゾバイ', 'Middendorf''s whelk (Buccinum middendorffi)'), +('右腕', 'ミギウデ', 'right arm, right-hand man, right hand, right-hand person, right-handed pitcher'), +('右側', 'ミギガワ', 'right side, right-hand side'), +('左右', 'サユウ', 'left and right, right and left, (asserting) control, influence, domination, one''s attendants, people accompanying one, (serving at someone''s) side, equivocation'), +('極右', 'キョクウ', 'far right (in politics), extreme right, ultraconservative'), +('右筆', 'ユウヒツ', 'private secretary, amanuensis'), +('右文', 'ユウブン', 'respect for literary culture'), +('左右', 'サユウ', 'left and right, right and left, (asserting) control, influence, domination, one''s attendants, people accompanying one, (serving at someone''s) side, equivocation'), +('上下左右', 'ジョウゲサユウ', 'up and down, left and right, top and bottom, left and right'), +('気', 'キ', 'spirit, mind, heart, nature, disposition, motivation, intention, mood, feelings, ambience, atmosphere, mood, qi (in traditional Chinese philosophy and medicine), chi, ki'), +('気分', 'キブン', 'feeling, mood'), +('お天気', 'オテンキ', 'weather, mood, temper'), +('換気', 'カンキ', 'ventilation'), +('気', 'ケ', 'sign, indication, trace, touch, feeling, somehow, for some reason, seeming to be'), +('気配', 'ケハイ', 'indication, sign, hint, sensation, feeling, tone (of the market)'), +('吐き気', 'ハキケ', 'nausea, feeling like throwing up, feeling sick'), +('水気', 'ミズケ', 'water content, moisture, juiciness, dampness, water vapor (vapour), steam, dropsy, edema, oedema'), +('王', 'オウ', 'king, ruler, sovereign, monarch, tycoon, magnate, champion, master, king (of the senior player)'), +('王様', 'オウサマ', 'king'), +('竜王', 'リュウオウ', 'Dragon King, promoted rook'), +('大王', 'ダイオウ', 'great king'), +('円', 'エン', 'yen (Japanese monetary unit), circle'), +('円滑', 'エンカツ', 'smooth, undisturbed, uninterrupted, harmonious'), +('楕円', 'ダエン', 'ellipse'), +('同心円', 'ドウシンエン', 'concentric circles'), +('雨天', 'ウテン', 'rainy weather'), +('雨水', 'アマミズ', 'rain water, "rain water" solar term (approx. February 19)'), +('集中豪雨', 'シュウチュウゴウウ', 'local downpour, severe rain fall'), +('時雨', 'シグレ', 'rain shower in late autumn (fall) or early winter, seasonable rain'), +('下', 'カ', 'under (influence, control, conditions, etc. of), during (war, occupation, etc.)'), +('下位', 'カイ', 'low rank, lower position, subordinate position, lower order (e.g. byte)'), +('低下', 'テイカ', 'fall, decline, lowering, deterioration, degradation'), +('落下', 'ラッカ', 'fall, drop, descent, coming down'), +('下', 'ゲ', 'lowness (of degree, value, etc.), inferiority, second volume (of two), third volume (of three)'), +('下宿', 'ゲシュク', 'boarding, lodging, board and lodging, room and board, boarding house, lodging house, lodgings'), +('値下げ', 'ネサゲ', 'price reduction, price cut, reduction in price, markdown'), +('卑下', 'ヒゲ', 'self-abasement, humility, self-depreciation'), +('見', 'ケン', 'view (of life, etc.), outlook'), +('見物', 'ケンブツ', 'sightseeing, watching, viewing, sightseer, watcher, spectator'), +('拝見', 'ハイケン', 'seeing, looking at'), +('発見', 'ハッケン', 'discovery, detection, finding'), +('空', 'クウ', 'empty air, sky, shunyata, emptiness, the lack of an immutable intrinsic nature within any phenomenon, air force, fruitlessness, meaninglessness, void (one of the five elements), empty (e.g. set)'), +('空気', 'クウキ', 'air, atmosphere, mood, situation, someone with no presence, someone who doesn''t stand out at all'), +('滑空', 'カックウ', 'gliding (through the air)'), +('領空', 'リョウクウ', 'territorial airspace'), +('月', 'ゲツ', 'Monday'), +('月曜日', 'ゲツヨウビ', 'Monday'), +('ヶ月', 'カゲツ', 'counter for months'), +('何ヶ月', 'ナンカゲツ', 'how many months'), +('月中', 'ゲツチュウ', '(for the) whole month'), +('月輪', 'ゲツリン', '(full) moon, moon when it''s round'), +('旧正月', 'キュウショウガツ', 'lunar New Year (esp. the Chinese New Year)'), +('お正月', 'オショウガツ', 'New Year (esp. first three days), first month of the year, January'), +('玉', 'ギョク', 'precious stone (esp. jade), egg (sometimes esp. as a sushi topping), stock or security being traded, product being bought or sold, position (in finance, the amount of a security either owned or owed by an investor or dealer), geisha, time charge for a geisha, king (of the junior player)'), +('玉石混淆', 'ギョクセキコンコウ', 'mixture of wheat and chaff, mixture of the good and bad, jumble of wheat and tares'), +('珠玉', 'シュギョク', 'jewel, gem, gem (of a story, essay, etc.), accomplished work, beautiful piece'), +('翠玉', 'スイギョク', 'emerald, jade'), +('花瓶', 'カビン', '(flower) vase'), +('花粉', 'カフン', 'pollen'), +('開花', 'カイカ', 'flowering, blooming, blossoming, coming into bloom, flowering (of a civilization, talent, etc.), blossoming, blooming, bearing fruit (of efforts)'), +('献花', 'ケンカ', 'flower offering, floral tribute, laying flowers'), +('花かご', 'ハナカゴ', 'flower basket, flower basket (or plate) used for flower-scattering rituals'), +('花瓶', 'ケビョウ', 'vase used to hold flower offerings (often made of gilded copper)'), +('天花', 'テンゲ', 'flowers that bloom in the heavens, paper flowers scattered before the Buddha''s image'), +('音', 'オト', 'sound, noise, report, note, fame, Chinese-derived character reading'), +('音楽', 'オンガク', 'music'), +('録音', 'ロクオン', '(audio) recording'), +('五十音', 'ゴジュウオン', 'the Japanese syllabary'), +('音信不通', 'オンシンフツウ', 'break in contact, not hearing from, having no communication with'), +('鸚哥', 'インコ', 'true parrot (esp. small parrots such as the parakeet, lory and conure)'), +('玉音', 'ギョクオン', 'the Emperor''s voice, beautiful voice, beautiful sound'), +('唐音', 'トウオン', 'tō-on, Tang reading, on reading of a kanji based on Song dynasty and later Chinese'), +('一', 'イチ', 'one, 1, best, first, foremost, beginning, start, a (single), one (of many), ace (playing card), bottom string (on a shamisen, etc.)'), +('一人', 'ヒトリ', 'one person, being alone, being by oneself, being single, being unmarried, by oneself, alone, just, only, simply'), +('十一', 'ジュウイチ', 'eleven, 11, jack (playing card), Hodgson''s hawk-cuckoo (Cuculus fugax), Horsfield''s hawk cuckoo'), +('1対1', 'イチタイイチ', 'one-to-one, one-on-one'), +('一', 'イツ', 'one, same (mind, path, etc.)'), +('一に', 'イツニ', 'solely, entirely, only, or'), +('均一', 'キンイツ', 'uniformity, equality'), +('画一', 'カクイツ', 'uniformity, standardization, standardisation'), +('金', 'キン', 'gold (metal), gold (color), gold (medal), first place (prize), something of great value, something golden (e.g. silence), money, gold coin, sum (of money), Friday, karat (measure of purity of gold), carat, metal (fourth phase of Wu Xing), Jin dynasty (of China; 1115-1234), Chin dynasty, Jurchen dynasty, gold general, testicles'), +('金曜日', 'キンヨウビ', 'Friday'), +('借金', 'シャッキン', 'debt, loan, liabilities, borrowing money, number of games under the .500 mark'), +('送金', 'ソウキン', 'remittance, sending money'), +('金色', 'キンイロ', 'gold (colour, color)'), +('金輪際', 'コンリンザイ', '(not) ever, (not) at all, (not) on any account, (not) by any means, deepest bottom of the earth'), +('鬱金', 'ウコン', 'turmeric (Curcuma domestica)'), +('葛鬱金', 'クズウコン', 'arrowroot (Maranta arundinacea)'), +('漉油', 'コシアブラ', 'Acanthopanax sciadophylloides (species of flowering plant related to the aralias)'), +('学', 'ガク', 'learning, scholarship, study, erudition, knowledge, education, study of ..., -ology, -ics'), +('学生', 'ガクセイ', 'student (esp. a university student)'), +('大学', 'ダイガク', 'university, college, former imperial university of Japan (established under the ritsuryō system for the training of government administrators), the Great Learning (one of the Four Books)'), +('数学', 'スウガク', 'mathematics'), +('校', 'コウ', 'school, proof (of a book, document, etc.), counter for proofs'), +('校長', 'コウチョウ', 'principal, headmaster'), +('登校', 'トウコウ', 'attendance (at school), going to school'), +('転校', 'テンコウ', 'changing schools'), +('校合', 'キョウゴウ', 'collation, examining and comparing'), +('校書', 'キョウショ', 'collation, examining and comparing'), +('口', 'ク', 'mouth, speech, counter for people or implements'), +('口実', 'コウジツ', 'excuse, pretext'), +('鶏口', 'ケイコウ', 'mouth of a chicken, leader of a small group'), +('火口', 'カコウ', '(volcanic) crater, caldera, burner (of a boiler)'), +('口', 'ク', 'mouth, speech, counter for people or implements'), +('口', 'クチ', 'mouth, opening, hole, gap, orifice, mouth (of a bottle), spout, nozzle, mouthpiece, gate, door, entrance, exit, speaking, speech, talk (i.e. gossip), taste, palate, mouth (to feed), opening (i.e. vacancy), available position, invitation, summons, kind, sort, type, opening (i.e. beginning), counter for mouthfuls, shares (of money), stove burners, and swords'), +('猪口', 'チョコ', 'sake cup, small deep porcelain bowl for serving food'), +('赤口', 'シャッコウ', 'day that is unlucky except between the auspicious hours of 11am and 1pm (in the traditional calendar)'), +('犬歯', 'ケンシ', 'eyetooth, cuspid, canine (tooth), dogtooth'), +('犬猿の仲', 'ケンエンノナカ', 'like cats and dogs, (on) very bad terms, relationship of dogs and monkeys'), +('柴犬', 'シバイヌ', 'shiba (Japanese breed of dog), shiba inu, brushwood dog'), +('ポメラニア犬', 'ポメラニアケン', 'Pomeranian (dog)'), +('火', 'カ', 'Tuesday, fire (second of the five elements)'), +('火曜日', 'カヨウビ', 'Tuesday'), +('噴火', 'フンカ', 'eruption, volcanic eruption'), +('消火', 'ショウカ', 'fire fighting, extinguishing a fire'), +('五', 'ゴ', 'five, 5'), +('5日', 'イツカ', '5th day of the month, five days'), +('十五', 'ジュウゴ', '15, fifteen'), +('端午', 'タンゴ', 'Boy''s Day celebration (May 5)'), +('左', 'サ', 'left (esp. in vertical Japanese writing), the following'), +('左右', 'サユウ', 'left and right, right and left, (asserting) control, influence, domination, one''s attendants, people accompanying one, (serving at someone''s) side, equivocation'), +('証左', 'ショウサ', 'evidence, proof, witness'), +('極左', 'キョクサ', 'extreme left, ultraleft'), +('左官', 'サカン', 'plasterer'), +('山', 'サン', 'Mt., Mount, Mt., Mount'), +('山岳', 'サンガク', 'mountain chain, mountains'), +('下山', 'ゲザン', 'descending a mountain, descent'), +('開山', 'カイサン', 'founding a temple (on a hill-top)'), +('山道', 'ヤマミチ', 'mountain road, mountain trail'), +('須弥山', 'シュミセン', 'Mount Sumeru (believed to be the centre of the Buddhist world)'), +('三', 'サン', 'three, 3'), +('三', 'サン', 'three'), +('十三', 'ジュウサン', 'thirteen, 13, king (playing card)'), +('七三', 'シチサン', '7 or 3 ratio, hair parted on one side'), +('四三', 'シソウ', 'one four-of-a-kind and one three-of-a-kind in a dealt hand, three and a four (in dice games)'), +('子', 'シ', 'child (esp. a boy), viscount, founder of a school of thought (esp. Confucius), master, masters and philosophers (categorization of Chinese classical literature), you, -er (i.e. man who spends all his time doing...)'), +('子孫', 'シソン', 'descendant, posterity, offspring'), +('男子', 'ダンシ', 'boy, man, male'), +('女子', 'ジョシ', 'woman, girl'), +('主', 'ス', 'honorific (or familiar) suffix used after a name'), +('恵比寿', 'エビス', 'Ebisu, god of fishing and commerce'), +('久留子', 'クルス', 'cross sign'), +('対子', 'トイツ', 'pair, eyes'), +('七対子', 'チートイツ', 'seven pairs, winning hand composed of seven pairs'), +('四', 'シ', 'four, 4'), +('四季', 'シキ', 'the four seasons'), +('十四', 'ジュウシ', '14, fourteen'), +('炭素14', 'タンソジュウシ', 'carbon-14'), +('糸', 'シ', 'thread, 0.0001, one ten-thousandth'), +('糸雨', 'シウ', 'drizzle, light rain, fine rain'), +('一糸', 'イッシ', 'thread, strand, string'), +('金糸', 'キンシ', 'gold thread'), +('字', 'ジ', 'character (esp. kanji), letter, written text, handwriting, penmanship, the ... word (e.g. "the L word" = "love")'), +('字引', 'ジビキ', 'dictionary'), +('ローマ字', 'ローマジ', 'Latin alphabet, Roman alphabet, romaji, romanized Japanese, system of transliterating Japanese into the Latin alphabet'), +('英字', 'エイジ', 'English letter, alphabetic character'), +('耳鼻科', 'ジビカ', 'otolaryngology, ear, nose, and throat department'), +('耳垢', 'ミミアカ', 'earwax, cerumen'), +('中耳', 'チュウジ', 'middle ear, tympanum'), +('外耳', 'ガイジ', 'external ear, concha'), +('車', 'シャ', 'car, vehicle'), +('車庫', 'シャコ', 'garage, carport, depot (trains, buses, etc.)'), +('駐車', 'チュウシャ', 'parking (e.g. car)'), +('発車', 'ハッシャ', 'departure (of a train, car, etc.), starting, leaving'), +('手段', 'シュダン', 'means, way, measure'), +('手術', 'シュジュツ', 'surgery, operation, procedure, skill with one''s hands, sleight of hand'), +('拍手', 'ハクシュ', 'clapping hands, applause'), +('握手', 'アクシュ', 'handshake, reconciliation, joining hands, cooperation'), +('交際上手', 'コウサイジョウズ', 'good at socializing, sociability, being a good mixer'), +('処世上手', 'ショセイジョウズ', 'knowing how to get on in the world, knowing the secret of success in life'), +('女', 'ジョ', 'woman, girl, daughter, Chinese "Girl" constellation (one of the 28 mansions), feminine noun'), +('女性', 'ジョセイ', 'woman, female, feminine gender'), +('少女', 'ショウジョ', 'little girl, maiden, young lady, female usually between 7 and 18 years old, female between 17 and 20 years old (ritsuryō period)'), +('一女', 'イチジョ', 'one daughter, eldest daughter, first-born daughter'), +('女性', 'ジョセイ', 'woman, female, feminine gender'), +('女王', 'ジョオウ', 'queen, female champion'), +('老若男女', 'ロウニャクナンニョ', 'men and women of all ages'), +('天女', 'テンニョ', 'heavenly nymph, celestial maiden, beautiful and kind woman'), +('女房', 'ニョウボウ', 'wife (esp. one''s own wife), court lady, female court attache, woman who served at the imperial palace, woman (esp. as a love interest)'), +('女官', 'ジョカン', 'court lady, lady-in-waiting'), +('小', 'ショウ', 'smallness, small item, short month (i.e. having fewer than 31 days), elementary school, smaller (of two things, places, etc. with the same name), inferior, younger (of two people with the same name), junior, unit of field area (approx. 400 sq m)'), +('小学校', 'ショウガッコウ', 'primary school, elementary school, grade school'), +('縮小', 'シュクショウ', 'reduction, curtailment, cut, cutback, scaling down'), +('中小', 'チュウショウ', 'small and medium'), +('十', 'ジュウ', 'ten, 10, ten years of age, book containing a collection of poems'), +('十分', 'ジュウブン', 'enough, sufficient, plenty, adequate, satisfactory, sufficiently, fully, thoroughly, well, perfectly, division into ten'), +('80', 'ハチジュウ', 'eighty, 80'), +('70', 'ナナジュウ', 'seventy, 70'), +('10分', 'ジップン', '10 minutes'), +('十中八九', 'ジッチュウハック', 'in 8 or 9 cases out of ten, in all probability'), +('10分', 'ジップン', '10 minutes'), +('十把一絡げ', 'ジッパヒトカラゲ', 'lumping together (things or people), treating (everyone) alike, handling indiscriminately, making sweeping generalizations, dealing with (various things) under one head'), +('出', 'シュツ', 'coming out, emerging, being born into (a certain family), being a native of (a particular place)'), +('出演', 'シュツエン', 'appearance (in a film, play, TV show, etc.), performance'), +('提出', 'テイシュツ', 'presentation (of documents), submission (of an application, report, etc.), production (e.g. of evidence), introduction (e.g. of a bill), filing, turning in'), +('外出', 'ガイシュツ', 'going out, outing, leaving (one''s home, office, etc.)'), +('出納帳', 'スイトウチョウ', 'receipt journal'), +('出納', 'スイトウ', 'receipts and expenditure (disbursements)'), +('七', 'シチ', 'seven'), +('7月', 'シチガツ', 'July, seventh month of the lunar calendar'), +('十七', 'ジュウシチ', '17, seventeen'), +('セシウム137', 'セシウムヒャクサンジュウシチ', 'cesium-137, caesium-137'), +('森林', 'シンリン', 'forest, woods'), +('森羅万象', 'シンラバンショウ', 'all things in nature, the whole creation'), +('森々', 'シンシン', 'dense with trees, deeply forested'), +('上', 'ジョウ', 'from the standpoint of, as a matter of (e.g. fact), in the field of, being of the type of, aboard (a ship or vehicle), on top of, on, above, first volume (e.g. book), superior quality, best, top, high class, going up, governmental, imperial, presenting, showing, ana-'), +('上着', 'ウワギ', 'coat, tunic, jacket, outer garment'), +('向上', 'コウジョウ', 'elevation, rise, improvement, advancement, progress'), +('北上', 'ホクジョウ', 'going north'), +('上人', 'ショウニン', 'holy priest, saint'), +('上下', 'ショウカ', 'top and bottom, up and down, high and low, above and below, upper and lower ends, upper and lower classes, ruler and ruled, the government and the people'), +('和尚', 'オショウ', 'priestly teacher, preceptor, monk (esp. the head monk of a temple), priest, head priest, second highest priestly rank in Buddhism, master (of one''s art, trade, etc.)'), +('呈上', 'テイジョウ', 'giving, gifting, presenting'), +('上海', 'シャンハイ', 'Shanghai (China)'), +('上湯', 'シャンタン', 'top-grade Chinese soup stock'), +('人', 'ジン', '-ian (e.g. Italian), -ite (e.g. Tokyoite), -er (e.g. performer, etc.), person working with ..., man, person, people'), +('人口', 'ジンコウ', 'population, common talk'), +('殺人', 'サツジン', 'murder, homicide, manslaughter'), +('求人', 'キュウジン', 'recruiting, job offer, job vacancy'), +('人', 'ニン', 'counter for people'), +('人形', 'ニンギョウ', 'doll, puppet, figure'), +('けが人', 'ケガニン', 'wounded person, injured person'), +('仲人', 'ナコウド', 'matchmaker, go-between, intermediary, middleman, mediator, intercessor'), +('水', 'スイ', 'Wednesday, shaved ice (served with flavored syrup), water (fifth of the five elements)'), +('水曜日', 'スイヨウビ', 'Wednesday'), +('断水', 'ダンスイ', 'suspension of water supply, water outage'), +('潜水', 'センスイ', 'diving, submerging, going underwater'), +('生', 'セイ', 'life, living, I, me, myself, student'), +('生徒', 'セイト', 'pupil, student, schoolchild'), +('人生', 'ジンセイ', '(one''s) life'), +('育成', 'イクセイ', 'rearing, training, nurture, cultivation, promotion'), +('生', 'セイ', 'life, living, I, me, myself, student'), +('生じる', 'ショウジル', 'to produce, to yield, to cause, to result from, to arise, to be generated'), +('出生', 'シュッショウ', 'birth'), +('畜生', 'チクショウ', 'damn it, damn, son of a bitch, for Christ''s sake, beast, animal, person reborn into the animal realm, brute, bastard'), +('中', 'チュウ', 'medium, average, middle, moderation, middle school, China, volume two (of three), during (a certain time when one did or is doing something), under (construction, etc.), while, in, out of, of the'), +('中学校', 'チュウガッコウ', 'junior high school, middle school, lower secondary school'), +('集中', 'シュウチュウ', 'concentration (on a task), focusing one''s attention, concentration (of population, buildings, power, etc.), centralization, convergence, focus (of a debate, questions, etc.), within a collection of works'), +('熱中', 'ネッチュウ', 'being enthusiastic about, being wild about, being absorbed in, being engrossed in, being devoted to'), +('勺', 'シャク', 'shaku, traditional unit of volume, approx. 18 ml, shaku, traditional unit of area, approx. 0.033 meters square'), +('夕日', 'ユウヒ', 'evening sun, setting sun'), +('秋夕', 'シュウセキ', 'autumn evening'), +('一夕', 'イッセキ', 'one evening, some evenings'), +('草', 'ソウ', 'draft, rough copy, highly cursive style (of writing Chinese characters), grass style'), +('草案', 'ソウアン', 'draft (for a speech, bill, etc.)'), +('煙草', 'タバコ', 'tobacco, cigarette, cigaret, cigar, tobacco plant (Nicotiana tabacum)'), +('除草', 'ジョソウ', 'weeding'), +('大', 'ダイ', 'large, big, great, huge, vast, major, important, serious, severe, great, prominent, eminent, distinguished, -sized, as big as, the size of, university, large (e.g. serving size), large option, long month (i.e. having 31 days)'), +('大学', 'ダイガク', 'university, college, former imperial university of Japan (established under the ritsuryō system for the training of government administrators), the Great Learning (one of the Four Books)'), +('拡大', 'カクダイ', 'expansion, extension, magnification, enlargement, escalation, spread'), +('増大', 'ゾウダイ', 'enlargement, increase'), +('大', 'タイ', 'nth year in the Taishō era (1912.7.30-1926.12.25)'), +('大使館', 'タイシカン', 'embassy'), +('負荷増大', 'フカゾウタイ', 'load increase'), +('御大', 'オンタイ', 'boss, governor, headman'), +('千', 'セン', '1,000, thousand'), +('千里', 'センリ', '1000 ri, (a) long distance'), +('一騎当千', 'イッキトウセン', 'being a match for a thousand, being a mighty warrior (combatant, player)'), +('一人当千', 'イチニントウセン', 'being a match for a thousand'), +('虫垂炎', 'チュウスイエン', 'appendicitis'), +('虫えい', 'チュウエイ', 'gall (abnormal plant growth formed by insects)'), +('幼虫', 'ヨウチュウ', 'larva, grub, maggot'), +('寄生虫', 'キセイチュウ', 'parasite'), +('虫部', 'キブ', 'insect radical, worm radical'), +('蟻巻', 'アリマキ', 'aphid, plant louse, plant lice'), +('石', 'セキ', 'counter for jewels in a watch, counter for transistors, diodes, etc. in an electronic product'), +('石炭', 'セキタン', 'coal'), +('化石', 'カセキ', 'fossil, petrifaction, petrification, fossilization, fossilisation'), +('落石', 'ラクセキ', 'falling rocks, fallen rocks'), +('石神', 'シャクジン', 'stone which is worshipped, image of a god in stone'), +('石南花', 'シャクナゲ', 'rhododendron'), +('電磁石', 'デンジシャク', 'electromagnet'), +('界磁石', 'カイジシャク', 'field magnet'), +('石', 'コク', 'koku, traditional unit of volume, approx. 180.4 litres, measure of a Japanese-style boat''s loading capacity (approx. 278.26 liters)'), +('石高', 'コクダカ', '(crop) yield, stipend (orig. assessed on the basis of a crop), salary'), +('一石', 'イッコク', 'one koku (measure)'), +('川柳', 'センリュウ', 'senryū, comic haiku, humorous seventeen-mora poem'), +('川きゅう', 'センキュウ', 'cnidium rhizome (Cnidium officinale)'), +('山川', 'サンセン', 'mountains and rivers'), +('四川', 'シセン', 'Sichuan (China), Szechuan, Szechwan'), +('町', 'チョウ', 'town, block, neighbourhood, neighborhood, street, chō (unit of length, approx. 109.09 m), chō (unit of land area, approx. 0.99 hectares)'), +('町民', 'チョウミン', 'townspeople'), +('同町', 'ドウチョウ', 'the same town, that town'), +('門前町', 'モンゼンマチ', 'town originally built around a temple or shrine'), +('村', 'ムラ', 'village'), +('村長', 'ソンチョウ', 'village headman, village mayor'), +('農村', 'ノウソン', 'agricultural community, farm village, rural'), +('漁村', 'ギョソン', 'fishing village'), +('先', 'セン', 'former, previous, old, first move (in go, shogi, etc.), opening move'), +('先月', 'センゲツ', 'last month'), +('優先', 'ユウセン', 'preference, priority, precedence'), +('率先', 'ソッセン', 'taking the initiative'), +('天', 'テン', 'sky, heaven, God, svarga (heaven-like realm visited as a stage of death and rebirth), deva (divine being of Buddhism), top (of a book), sole (of a Japanese sandal), beginning, start, tempura, India'), +('天気', 'テンキ', 'weather, the elements, fair weather, fine weather'), +('炎天', 'エンテン', 'blazing heat, scorching sun'), +('楽天', 'ラクテン', 'optimism'), +('足', 'ソク', 'counter for pairs of socks, shoes, etc.'), +('足跡', 'アシアト', 'footprints, record of page visitors (e.g. in social networking sites)'), +('休息', 'キュウソク', 'rest, relief, relaxation'), +('発足', 'ホッソク', 'starting, inauguration, launch, founding, establishment, start-up'), +('青年', 'セイネン', 'youth, young man'), +('青少年', 'セイショウネン', 'youth, young person'), +('回青', 'カイセイ', 'Mohammedan blue (pigment used in porcelain painting)'), +('黛青', 'タイセイ', 'blackish blue'), +('青面金剛', 'ショウメンコンゴウ', 'Shōmen Kongō, Blue-Faced Vajra, blue-skinned deity depicted with two, four or six arms; originally associated with esoteric Buddhism, thought to bring sickness; revered as part of kōshin-machi beliefs during the Edo period'), +('青龍', 'セイリョウ', 'blue dragon (an auspicious creature in Chinese mythology), Azure Dragon (god said to rule over the eastern heavens)'), +('緑青', 'ロクショウ', 'verdigris, green rust, copper rust'), +('花緑青', 'ハナロクショウ', 'Paris green, emerald green'), +('正', 'セイ', '(logical) true, regular, 10^40, ten thousand undecillion, original, positive, greater than zero, thesis (in dialectics)'), +('正確', 'セイカク', 'accurate, correct, precise, exact'), +('不正', 'フセイ', 'injustice, unfairness, wrongdoing, iniquity, impropriety, irregularity, dishonesty, illegality, fraud'), +('修正', 'シュウセイ', 'amendment, correction, revision, modification, alteration, retouching, update, fix'), +('正', 'ショウ', 'exactly, precisely, correct, right, true, greater (of equal court ranks), upper, senior, director (highest of the four administrative positions of the ritsuryō period), chief'), +('醤油', 'ショウユ', 'soy sauce, shoyu'), +('大正', 'タイショウ', 'Taishō era (1912.7.30-1926.12.25), Taisho era'), +('賀正', 'ガショウ', 'A Happy New Year!'), +('赤道', 'セキドウ', 'equator'), +('赤色', 'アカイロ', 'red, red color (colour), red-colored, red, communism, the left'), +('七赤', 'シチセキ', 'seventh of nine traditional astrological signs (corresponding to Venus and west)'), +('発赤', 'ホッセキ', 'rubefaction (reddening of the skin)'), +('赤銅', 'シャクドウ', 'shakudo, gold-copper alloy, often with a blue patina'), +('赤銅色', 'シャクドウイロ', 'brown, tanned'), +('竹林', 'チクリン', 'bamboo thicket, bamboo grove'), +('竹馬の友', 'チクバノトモ', 'childhood friend, old playmate'), +('爆竹', 'バクチク', 'firecracker'), +('破竹', 'ハチク', 'breaking bamboo'), +('田んぼ', 'タンボ', 'paddy field, farm'), +('田園', 'デンエン', 'the country, countryside, rural districts, cultivated land, fields'), +('水田', 'スイデン', '(water-filled) paddy field'), +('桑田', 'ソウデン', 'mulberry plantation'), +('早急', 'ソウキュウ', 'immediate, prompt, quick, rapid, urgent, pressing'), +('早期', 'ソウキ', 'early stage'), +('時期早々', 'ジキソウソウ', 'premature'), +('尚早', 'ショウソウ', 'prematurity'), +('早速', 'サッソク', 'at once, immediately, without delay, promptly'), +('早急', 'ソウキュウ', 'immediate, prompt, quick, rapid, urgent, pressing'), +('土', 'ド', 'Saturday, earth, dirt, soil, land, lands, ground, earth (third of the five elements)'), +('土曜日', 'ドヨウビ', 'Saturday'), +('愛蘭', 'アイルランド', 'Ireland (country), Éire, Ireland (island)'), +('浄土', 'ジョウド', 'pure land (esp. the Western Pure Land paradise of Amitabha), (Buddhist) paradise, Pure Land Buddhism'), +('土', 'ト', 'Turkey'), +('時計', 'トケイ', 'clock, watch, timepiece'), +('混凝土', 'コンクリート', 'concrete'), +('率土', 'ソット', 'face of the earth'), +('男', 'ダン', 'masculine noun, son, baron, man, male'), +('男性', 'ダンセイ', 'man, male, masculine gender'), +('既男', 'キダン', 'married man'), +('公侯伯子男', 'コウコウハクシダン', 'duke, marquis, count, viscount and baron, five ranks of nobility'), +('男', 'ナン', 'son'), +('男女', 'ダンジョ', 'men and women, man and woman, both sexes, both genders'), +('一男', 'イチナン', 'boy, eldest son'), +('次男', 'ジナン', 'second son'), +('二', 'ニ', 'two, 2'), +('二人', 'フタリ', 'two persons, two people, pair, couple'), +('一二', 'イチニ', 'the first and second, a few'), +('十二', 'ジュウニ', 'twelve, 12, queen (playing card)'), +('二乗', 'ニジョウ', 'squaring, multiplying (a number) by itself, second power'), +('次男', 'ジナン', 'second son'), +('不二', 'フジ', 'being two sides of the same coin, being the same (while appearing different), Very sincerely yours, peerless, unparalleled, unparallelled'), +('唯一不二', 'ユイイツフジ', 'one and only, unique'), +('日', 'ニチ', 'Sunday, day (of the month), counter for days, Japan'), +('日曜日', 'ニチヨウビ', 'Sunday'), +('5日', 'イツカ', '5th day of the month, five days'), +('20日', 'ハツカ', '20th day of the month, 20 days'), +('日月', 'ジツゲツ', 'sun and moon, time, days and months, years, Sunday and Monday'), +('日外', 'ジツガイ', 'at one time, some time ago, once'), +('一日', 'イチニチ', 'one day, all day (long), the whole day, from morning till night, 1st day of the month'), +('1日', 'ツイタチ', '1st day of the month, first 10 days of the lunar month'), +('入学', 'ニュウガク', 'admission (to a school or university), entrance, enrolment, enrollment, matriculation'), +('入院', 'ニュウイン', 'hospitalization, hospitalisation'), +('輸入', 'ユニュウ', 'import, importation, introduction, afferent'), +('記入', 'キニュウ', 'entry (in a form, register, diary, etc.), filling in, filling out'), +('入水', 'ジュスイ', 'suicide by drowning, drowning oneself, entering the water, hitting the water'), +('入御', 'ニュウギョ', 'emperor''s return to the imperial palace'), +('木石', 'ボクセキ', 'trees and stones, unfeeling person'), +('木刀', 'ボクトウ', 'wooden sword'), +('土木', 'ドボク', 'engineering works, civil engineering, public works'), +('雑木', 'ゾウキ', 'various kinds of small trees, assorted trees'), +('木', 'モク', 'Thursday, wood (first of the five elements)'), +('木曜日', 'モクヨウビ', 'Thursday'), +('水木', 'スイモク', 'Wednesday and Thursday'), +('火水木', 'カスイモク', 'Tuesday, Wednesday and Thursday'), +('力', 'リョク', 'strength, power, proficiency, ability'), +('力作', 'リキサク', 'painstaking piece of work, work of great effort, tour de force, outstanding work, toil, labor, labour'), +('努力', 'ドリョク', 'effort, exertion, endeavour, endeavor, hard work, striving'), +('協力', 'キョウリョク', 'cooperation, collaboration, help, support'), +('力', 'リキ', 'strength, power, proficiency, ability, the strength of ... people, the strength of ... men'), +('力学', 'リキガク', 'mechanics, dynamics'), +('錻力', 'ブリキ', 'tin plate'), +('地力', 'ジリキ', 'one''s own potential, real ability, one''s own strength'), +('名', 'メイ', 'counter for people (usu. seating, reservations and such), first name, famous, great, name, noun'), +('名人', 'メイジン', 'master, expert'), +('署名', 'ショメイ', 'signature'), +('命名', 'メイメイ', 'naming, christening'), +('苗字', 'ミョウジ', 'surname, family name, last name'), +('名目', 'メイモク', 'name, title, appellation, (something) nominal, (under the) pretext (of), pretense'), +('大名', 'ダイミョウ', 'daimyo (Japanese feudal lord)'), +('本名', 'ホンミョウ', 'real name'), +('目', 'モク', 'order, item (of a budget revision, etc.), counter for go pieces, counter for surrounded positions (in go)'), +('目的', 'モクテキ', 'purpose, goal, aim, objective, intention'), +('注目', 'チュウモク', 'notice, attention, observation'), +('反目', 'ハンモク', 'enmity, antagonism, hostility'), +('耳目', 'ジモク', 'eyes and ears, seeing and hearing, one''s attention, one''s interest'), +('不面目', 'フメンボク', 'shame, disgrace'), +('六', 'ロク', 'six, 6'), +('6月', 'ロクガツ', 'June, sixth month of the lunar calendar'), +('十六', 'ジュウロク', '16, sixteen'), +('才六', 'サイロク', 'kid, brat, person from Kansai'), +('六官', 'リクカン', 'six ministries (of Zhou-dynasty China)'), +('六気', 'ロッキ', 'yin, yang, wind, rain, darkness, light, cold, heat, dryness, dampness, wind, fire, six emotions (joy, anger, sorrow, pleasure, love, hate)'), +('本', 'ホン', 'book, volume, script, this, present, current, ... in question, ... at issue, main, head, principal, real, genuine, regular, proper, counter for long, cylindrical things, counter for films, TV shows, etc., counter for goals, home runs, etc., counter for telephone calls'), +('本当', 'ホントウ', 'truth, reality, actuality, fact, proper, right, correct, official, genuine, authentic, real, natural, veritable'), +('製本', 'セイホン', 'book making (binding, publishing)'), +('配本', 'ハイホン', 'distribution of books'), +('年', 'ネン', 'year, counter for years (e.g. of an era), grades (e.g. school), period of an apprentice''s contract (usu. ten years)'), +('年間', 'ネンカン', '(period of) a year, during the era (of)'), +('留年', 'リュウネン', 'repeating a year (at school), staying in the same class for another year'), +('光年', 'コウネン', 'light-year'), +('文', 'ブン', 'sentence, composition, text, writings, the literary arts (as opposed to the military arts), academia, literature, statement'), +('文章', 'ブンショウ', 'writing, composition, essay, article, passage, prose, (writing) style, sentence'), +('作文', 'サクブン', 'writing (an essay, prose, etc.), composition, formal writing with little real meaning'), +('和文', 'ワブン', 'Japanese text, sentence in Japanese'), +('文', 'モン', 'mon, one-thousandth of a kan (unit of currency 1336-1870), mon, traditional unit used for shoe and sock sizes (approx. 2.4 cm), letter, character, sentence, scripture, incantation'), +('紋', 'モン', '(family) crest, coat of arms, pattern, figure, playing card suit (in karuta)'), +('三文', 'サンモン', 'paltry amount of money, cheapness, worthlessness, three one-mon coins'), +('ご注文', 'ゴチュウモン', 'order, request'), +('白', 'ハク', 'white, striped mullet fry (Mugil cephalus), (spoken) line (in a play, film, etc.), one''s lines, white dragon tile, winning hand with a pung (or kong) of white dragon tiles, Belgium, white person, Caucasian'), +('白髪', 'シラガ', 'white hair, grey hair, gray hair'), +('告白', 'コクハク', 'confession (to a crime, wrongdoing, etc.), admission, professing one''s feelings (to someone one wants to go out with), declaration of love, profession (of faith), confession (of sins)'), +('紅白', 'コウハク', 'red and white, colours for festive or auspicious occasions (colors), two teams, two groups, Kōhaku Uta Gassen, annual contest between male and female popular singers on New Year''s Eve (sponsored and broadcast by NHK)'), +('白衣', 'ハクイ', 'white clothes, white robe, white gown (worn by doctors, chemists, etc.), commoner without rank (in ancient China), layperson'), +('白夜', 'ビャクヤ', 'night under the midnight sun, white night (at extreme latitudes), night during which the sun doesn''t set'), +('敬白', 'ケイハク', 'Yours Sincerely'), +('百', 'ヒャク', 'hundred, 100'), +('百姓', 'ヒャクショウ', 'farmer, peasant, country bumpkin, farming, the common people'), +('900', 'キュウヒャク', '900, nine hundred, fool, idiot'), +('500', 'ゴヒャク', '500, five hundred, many'), +('八', 'ハチ', 'eight, 8'), +('8月', 'ハチガツ', 'August, eighth month of the lunar calendar'), +('108', 'ヒャクハチ', '108, one hundred and eight, the number of kleshas, worldly thoughts and passions, the sum of 12 months, 24 seasons of the solar year, and 72 microseasons of one year'), +('十八', 'ジュウハチ', '18, eighteen'), +('鳶尾', 'イチハツ', 'wall iris, roof iris, Iris tectorum, fleur-de-lis'), +('林立', 'リンリツ', 'standing close together, bristling (with)'), +('林道', 'リンドウ', 'path through forest, woodland path, logging road'), +('植林', 'ショクリン', 'afforestation'), +('山林', 'サンリン', 'mountain forest, forest on a mountain, montane forest, mountains and forest'), +('立案', 'リツアン', 'planning, devising (a plan), drafting, drawing up'), +('立像', 'リツゾウ', 'standing statue, standing image'), +('国立', 'コクリツ', 'national, founded and run by the central government'), +('対立', 'タイリツ', 'confrontation, opposition, antagonism'), +('立ち木', 'タチキ', 'standing tree, standing timber'), +('立纓', 'リュウエイ', 'erect tail (of a traditional Japanese hat)'), +('建立', 'コンリュウ', '(act of) building (temple, monument, etc.), erection'), +('開立', 'カイリュウ', 'extraction of cubic root'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(1, '九'), +(2, '九'), +(3, '九'), +(4, '九'), +(5, '九'), +(6, '九'), +(7, '九'), +(8, '九'), +(9, '休'), +(10, '休'), +(11, '休'), +(12, '休'), +(13, '貝'), +(14, '貝'), +(15, '貝'), +(16, '貝'), +(17, '右'), +(18, '右'), +(19, '右'), +(20, '右'), +(21, '右'), +(22, '右'), +(23, '右'), +(24, '右'), +(25, '気'), +(26, '気'), +(27, '気'), +(28, '気'), +(29, '気'), +(30, '気'), +(31, '気'), +(32, '気'), +(33, '王'), +(34, '王'), +(35, '王'), +(36, '王'), +(37, '円'), +(38, '円'), +(39, '円'), +(40, '円'), +(41, '雨'), +(42, '雨'), +(43, '雨'), +(44, '雨'), +(45, '下'), +(46, '下'), +(47, '下'), +(48, '下'), +(49, '下'), +(50, '下'), +(51, '下'), +(52, '下'), +(53, '見'), +(54, '見'), +(55, '見'), +(56, '見'), +(57, '空'), +(58, '空'), +(59, '空'), +(60, '空'), +(61, '月'), +(62, '月'), +(63, '月'), +(64, '月'), +(65, '月'), +(66, '月'), +(67, '月'), +(68, '月'), +(69, '玉'), +(70, '玉'), +(71, '玉'), +(72, '玉'), +(73, '花'), +(74, '花'), +(75, '花'), +(76, '花'), +(77, '花'), +(78, '花'), +(79, '花'), +(80, '音'), +(81, '音'), +(82, '音'), +(83, '音'), +(84, '音'), +(85, '音'), +(86, '音'), +(87, '音'), +(88, '一'), +(89, '一'), +(90, '一'), +(91, '一'), +(92, '一'), +(93, '一'), +(94, '一'), +(95, '一'), +(96, '金'), +(97, '金'), +(98, '金'), +(99, '金'), +(100, '金'), +(101, '金'), +(102, '金'), +(103, '金'), +(104, '金'), +(105, '学'), +(106, '学'), +(107, '学'), +(108, '学'), +(109, '校'), +(110, '校'), +(111, '校'), +(112, '校'), +(113, '校'), +(114, '校'), +(115, '口'), +(116, '口'), +(117, '口'), +(118, '口'), +(119, '口'), +(120, '口'), +(121, '口'), +(122, '口'), +(123, '犬'), +(124, '犬'), +(125, '犬'), +(126, '犬'), +(127, '火'), +(128, '火'), +(129, '火'), +(130, '火'), +(131, '五'), +(132, '五'), +(133, '五'), +(134, '五'), +(135, '左'), +(136, '左'), +(137, '左'), +(138, '左'), +(139, '左'), +(140, '山'), +(141, '山'), +(142, '山'), +(143, '山'), +(144, '山'), +(145, '山'), +(146, '三'), +(147, '三'), +(148, '三'), +(149, '三'), +(150, '三'), +(151, '子'), +(152, '子'), +(153, '子'), +(154, '子'), +(155, '子'), +(156, '子'), +(157, '子'), +(158, '子'), +(159, '子'), +(160, '四'), +(161, '四'), +(162, '四'), +(163, '四'), +(164, '糸'), +(165, '糸'), +(166, '糸'), +(167, '糸'), +(168, '字'), +(169, '字'), +(170, '字'), +(171, '字'), +(172, '耳'), +(173, '耳'), +(174, '耳'), +(175, '耳'), +(176, '車'), +(177, '車'), +(178, '車'), +(179, '車'), +(180, '手'), +(181, '手'), +(182, '手'), +(183, '手'), +(184, '手'), +(185, '手'), +(186, '女'), +(187, '女'), +(188, '女'), +(189, '女'), +(190, '女'), +(191, '女'), +(192, '女'), +(193, '女'), +(194, '女'), +(195, '女'), +(196, '小'), +(197, '小'), +(198, '小'), +(199, '小'), +(200, '十'), +(201, '十'), +(202, '十'), +(203, '十'), +(204, '十'), +(205, '十'), +(206, '十'), +(207, '十'), +(208, '出'), +(209, '出'), +(210, '出'), +(211, '出'), +(212, '出'), +(213, '出'), +(214, '七'), +(215, '七'), +(216, '七'), +(217, '七'), +(218, '森'), +(219, '森'), +(220, '森'), +(221, '上'), +(222, '上'), +(223, '上'), +(224, '上'), +(225, '上'), +(226, '上'), +(227, '上'), +(228, '上'), +(229, '上'), +(230, '上'), +(231, '人'), +(232, '人'), +(233, '人'), +(234, '人'), +(235, '人'), +(236, '人'), +(237, '人'), +(238, '人'), +(239, '水'), +(240, '水'), +(241, '水'), +(242, '水'), +(243, '生'), +(244, '生'), +(245, '生'), +(246, '生'), +(247, '生'), +(248, '生'), +(249, '生'), +(250, '生'), +(251, '中'), +(252, '中'), +(253, '中'), +(254, '中'), +(255, '夕'), +(256, '夕'), +(257, '夕'), +(258, '夕'), +(259, '草'), +(260, '草'), +(261, '草'), +(262, '草'), +(263, '大'), +(264, '大'), +(265, '大'), +(266, '大'), +(267, '大'), +(268, '大'), +(269, '大'), +(270, '大'), +(271, '千'), +(272, '千'), +(273, '千'), +(274, '千'), +(275, '虫'), +(276, '虫'), +(277, '虫'), +(278, '虫'), +(279, '虫'), +(280, '虫'), +(281, '石'), +(282, '石'), +(283, '石'), +(284, '石'), +(285, '石'), +(286, '石'), +(287, '石'), +(288, '石'), +(289, '石'), +(290, '石'), +(291, '石'), +(292, '川'), +(293, '川'), +(294, '川'), +(295, '川'), +(296, '町'), +(297, '町'), +(298, '町'), +(299, '町'), +(300, '村'), +(301, '村'), +(302, '村'), +(303, '村'), +(304, '先'), +(305, '先'), +(306, '先'), +(307, '先'), +(308, '天'), +(309, '天'), +(310, '天'), +(311, '天'), +(312, '足'), +(313, '足'), +(314, '足'), +(315, '足'), +(316, '青'), +(317, '青'), +(318, '青'), +(319, '青'), +(320, '青'), +(321, '青'), +(322, '青'), +(323, '青'), +(324, '正'), +(325, '正'), +(326, '正'), +(327, '正'), +(328, '正'), +(329, '正'), +(330, '正'), +(331, '正'), +(332, '赤'), +(333, '赤'), +(334, '赤'), +(335, '赤'), +(336, '赤'), +(337, '赤'), +(338, '竹'), +(339, '竹'), +(340, '竹'), +(341, '竹'), +(342, '田'), +(343, '田'), +(344, '田'), +(345, '田'), +(346, '早'), +(347, '早'), +(348, '早'), +(349, '早'), +(350, '早'), +(351, '早'), +(352, '土'), +(353, '土'), +(354, '土'), +(355, '土'), +(356, '土'), +(357, '土'), +(358, '土'), +(359, '土'), +(360, '男'), +(361, '男'), +(362, '男'), +(363, '男'), +(364, '男'), +(365, '男'), +(366, '男'), +(367, '男'), +(368, '二'), +(369, '二'), +(370, '二'), +(371, '二'), +(372, '二'), +(373, '二'), +(374, '二'), +(375, '二'), +(376, '日'), +(377, '日'), +(378, '日'), +(379, '日'), +(380, '日'), +(381, '日'), +(382, '日'), +(383, '日'), +(384, '入'), +(385, '入'), +(386, '入'), +(387, '入'), +(388, '入'), +(389, '入'), +(390, '木'), +(391, '木'), +(392, '木'), +(393, '木'), +(394, '木'), +(395, '木'), +(396, '木'), +(397, '木'), +(398, '力'), +(399, '力'), +(400, '力'), +(401, '力'), +(402, '力'), +(403, '力'), +(404, '力'), +(405, '力'), +(406, '名'), +(407, '名'), +(408, '名'), +(409, '名'), +(410, '名'), +(411, '名'), +(412, '名'), +(413, '名'), +(414, '目'), +(415, '目'), +(416, '目'), +(417, '目'), +(418, '目'), +(419, '目'), +(420, '六'), +(421, '六'), +(422, '六'), +(423, '六'), +(424, '六'), +(425, '六'), +(426, '本'), +(427, '本'), +(428, '本'), +(429, '本'), +(430, '年'), +(431, '年'), +(432, '年'), +(433, '年'), +(434, '文'), +(435, '文'), +(436, '文'), +(437, '文'), +(438, '文'), +(439, '文'), +(440, '文'), +(441, '文'), +(442, '白'), +(443, '白'), +(444, '白'), +(445, '白'), +(446, '白'), +(447, '白'), +(448, '白'), +(449, '百'), +(450, '百'), +(451, '百'), +(452, '百'), +(453, '八'), +(454, '八'), +(455, '八'), +(456, '八'), +(457, '八'), +(458, '林'), +(459, '林'), +(460, '林'), +(461, '林'), +(462, '立'), +(463, '立'), +(464, '立'), +(465, '立'), +(466, '立'), +(467, '立'), +(468, '立'), +(469, '立'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("ここの"), +("ここの.つ"), +("やす.む"), +("やす.まる"), +("やす.める"), +("かい"), +("みぎ"), +("き"), +("まる.い"), +("まる"), +("まど"), +("まど.か"), +("まろ.やか"), +("あめ"), +("あま-"), +("-さめ"), +("した"), +("しも"), +("もと"), +("さ.げる"), +("さ.がる"), +("くだ.る"), +("くだ.り"), +("くだ.す"), +("-くだ.す"), +("くだ.さる"), +("お.ろす"), +("お.りる"), +("み.る"), +("み.える"), +("み.せる"), +("そら"), +("あ.く"), +("あ.き"), +("あ.ける"), +("から"), +("す.く"), +("す.かす"), +("むな.しい"), +("つき"), +("たま"), +("たま-"), +("-だま"), +("はな"), +("おと"), +("ね"), +("ひと-"), +("ひと.つ"), +("かね"), +("かな-"), +("-がね"), +("まな.ぶ"), +("くち"), +("いぬ"), +("いぬ-"), +("ひ"), +("-び"), +("ほ-"), +("いつ"), +("いつ.つ"), +("ひだり"), +("やま"), +("み"), +("み.つ"), +("みっ.つ"), +("こ"), +("-こ"), +("ね"), +("よ"), +("よ.つ"), +("よっ.つ"), +("よん"), +("いと"), +("あざ"), +("あざな"), +("-な"), +("みみ"), +("くるま"), +("て"), +("て-"), +("-て"), +("た-"), +("おんな"), +("め"), +("ちい.さい"), +("こ-"), +("お-"), +("さ-"), +("とお"), +("と"), +("そ"), +("で.る"), +("-で"), +("だ.す"), +("-だ.す"), +("い.でる"), +("い.だす"), +("なな"), +("なな.つ"), +("なの"), +("もり"), +("うえ"), +("-うえ"), +("うわ-"), +("かみ"), +("あ.げる"), +("-あ.げる"), +("あ.がる"), +("-あ.がる"), +("あ.がり"), +("-あ.がり"), +("のぼ.る"), +("のぼ.り"), +("のぼ.せる"), +("のぼ.す"), +("たてまつ.る"), +("ひと"), +("-り"), +("-と"), +("みず"), +("みず-"), +("い.きる"), +("い.かす"), +("い.ける"), +("う.まれる"), +("うま.れる"), +("う.まれ"), +("うまれ"), +("う.む"), +("お.う"), +("は.える"), +("は.やす"), +("き"), +("なま"), +("なま-"), +("な.る"), +("な.す"), +("む.す"), +("-う"), +("なか"), +("うち"), +("あた.る"), +("ゆう"), +("くさ"), +("くさ-"), +("-ぐさ"), +("おお-"), +("おお.きい"), +("-おお.いに"), +("ち"), +("むし"), +("いし"), +("かわ"), +("まち"), +("むら"), +("さき"), +("ま.ず"), +("あまつ"), +("あめ"), +("あま-"), +("あし"), +("た.りる"), +("た.る"), +("た.す"), +("あお"), +("あお-"), +("あお.い"), +("ただ.しい"), +("ただ.す"), +("まさ"), +("まさ.に"), +("あか"), +("あか-"), +("あか.い"), +("あか.らむ"), +("あか.らめる"), +("たけ"), +("た"), +("はや.い"), +("はや"), +("はや-"), +("はや.まる"), +("はや.める"), +("さ-"), +("つち"), +("おとこ"), +("お"), +("ふた"), +("ふた.つ"), +("ふたたび"), +("ひ"), +("-び"), +("-か"), +("い.る"), +("-い.る"), +("-い.り"), +("い.れる"), +("-い.れ"), +("はい.る"), +("き"), +("こ-"), +("ちから"), +("な"), +("-な"), +("め"), +("-め"), +("ま-"), +("む"), +("む.つ"), +("むっ.つ"), +("むい"), +("もと"), +("とし"), +("ふみ"), +("あや"), +("しろ"), +("しら-"), +("しろ.い"), +("もも"), +("や"), +("や.つ"), +("やっ.つ"), +("よう"), +("はやし"), +("た.つ"), +("-た.つ"), +("た.ち-"), +("た.てる"), +("-た.てる"), +("た.て-"), +("たて-"), +("-た.て"), +("-だ.て"), +("-だ.てる"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('九', 'ここの'), +('九', 'ここの.つ'), +('休', 'やす.む'), +('休', 'やす.まる'), +('休', 'やす.める'), +('貝', 'かい'), +('右', 'みぎ'), +('気', 'き'), +('円', 'まる.い'), +('円', 'まる'), +('円', 'まど'), +('円', 'まど.か'), +('円', 'まろ.やか'), +('雨', 'あめ'), +('雨', 'あま-'), +('雨', '-さめ'), +('下', 'した'), +('下', 'しも'), +('下', 'もと'), +('下', 'さ.げる'), +('下', 'さ.がる'), +('下', 'くだ.る'), +('下', 'くだ.り'), +('下', 'くだ.す'), +('下', '-くだ.す'), +('下', 'くだ.さる'), +('下', 'お.ろす'), +('下', 'お.りる'), +('見', 'み.る'), +('見', 'み.える'), +('見', 'み.せる'), +('空', 'そら'), +('空', 'あ.く'), +('空', 'あ.き'), +('空', 'あ.ける'), +('空', 'から'), +('空', 'す.く'), +('空', 'す.かす'), +('空', 'むな.しい'), +('月', 'つき'), +('玉', 'たま'), +('玉', 'たま-'), +('玉', '-だま'), +('花', 'はな'), +('音', 'おと'), +('音', 'ね'), +('一', 'ひと-'), +('一', 'ひと.つ'), +('金', 'かね'), +('金', 'かな-'), +('金', '-がね'), +('学', 'まな.ぶ'), +('口', 'くち'), +('犬', 'いぬ'), +('犬', 'いぬ-'), +('火', 'ひ'), +('火', '-び'), +('火', 'ほ-'), +('五', 'いつ'), +('五', 'いつ.つ'), +('左', 'ひだり'), +('山', 'やま'), +('三', 'み'), +('三', 'み.つ'), +('三', 'みっ.つ'), +('子', 'こ'), +('子', '-こ'), +('子', 'ね'), +('四', 'よ'), +('四', 'よ.つ'), +('四', 'よっ.つ'), +('四', 'よん'), +('糸', 'いと'), +('字', 'あざ'), +('字', 'あざな'), +('字', '-な'), +('耳', 'みみ'), +('車', 'くるま'), +('手', 'て'), +('手', 'て-'), +('手', '-て'), +('手', 'た-'), +('女', 'おんな'), +('女', 'め'), +('小', 'ちい.さい'), +('小', 'こ-'), +('小', 'お-'), +('小', 'さ-'), +('十', 'とお'), +('十', 'と'), +('十', 'そ'), +('出', 'で.る'), +('出', '-で'), +('出', 'だ.す'), +('出', '-だ.す'), +('出', 'い.でる'), +('出', 'い.だす'), +('七', 'なな'), +('七', 'なな.つ'), +('七', 'なの'), +('森', 'もり'), +('上', 'うえ'), +('上', '-うえ'), +('上', 'うわ-'), +('上', 'かみ'), +('上', 'あ.げる'), +('上', '-あ.げる'), +('上', 'あ.がる'), +('上', '-あ.がる'), +('上', 'あ.がり'), +('上', '-あ.がり'), +('上', 'のぼ.る'), +('上', 'のぼ.り'), +('上', 'のぼ.せる'), +('上', 'のぼ.す'), +('上', 'たてまつ.る'), +('人', 'ひと'), +('人', '-り'), +('人', '-と'), +('水', 'みず'), +('水', 'みず-'), +('生', 'い.きる'), +('生', 'い.かす'), +('生', 'い.ける'), +('生', 'う.まれる'), +('生', 'うま.れる'), +('生', 'う.まれ'), +('生', 'うまれ'), +('生', 'う.む'), +('生', 'お.う'), +('生', 'は.える'), +('生', 'は.やす'), +('生', 'き'), +('生', 'なま'), +('生', 'なま-'), +('生', 'な.る'), +('生', 'な.す'), +('生', 'む.す'), +('生', '-う'), +('中', 'なか'), +('中', 'うち'), +('中', 'あた.る'), +('夕', 'ゆう'), +('草', 'くさ'), +('草', 'くさ-'), +('草', '-ぐさ'), +('大', 'おお-'), +('大', 'おお.きい'), +('大', '-おお.いに'), +('千', 'ち'), +('虫', 'むし'), +('石', 'いし'), +('川', 'かわ'), +('町', 'まち'), +('村', 'むら'), +('先', 'さき'), +('先', 'ま.ず'), +('天', 'あまつ'), +('天', 'あめ'), +('天', 'あま-'), +('足', 'あし'), +('足', 'た.りる'), +('足', 'た.る'), +('足', 'た.す'), +('青', 'あお'), +('青', 'あお-'), +('青', 'あお.い'), +('正', 'ただ.しい'), +('正', 'ただ.す'), +('正', 'まさ'), +('正', 'まさ.に'), +('赤', 'あか'), +('赤', 'あか-'), +('赤', 'あか.い'), +('赤', 'あか.らむ'), +('赤', 'あか.らめる'), +('竹', 'たけ'), +('田', 'た'), +('早', 'はや.い'), +('早', 'はや'), +('早', 'はや-'), +('早', 'はや.まる'), +('早', 'はや.める'), +('早', 'さ-'), +('土', 'つち'), +('男', 'おとこ'), +('男', 'お'), +('二', 'ふた'), +('二', 'ふた.つ'), +('二', 'ふたたび'), +('日', 'ひ'), +('日', '-び'), +('日', '-か'), +('入', 'い.る'), +('入', '-い.る'), +('入', '-い.り'), +('入', 'い.れる'), +('入', '-い.れ'), +('入', 'はい.る'), +('木', 'き'), +('木', 'こ-'), +('力', 'ちから'), +('名', 'な'), +('名', '-な'), +('目', 'め'), +('目', '-め'), +('目', 'ま-'), +('六', 'む'), +('六', 'む.つ'), +('六', 'むっ.つ'), +('六', 'むい'), +('本', 'もと'), +('年', 'とし'), +('文', 'ふみ'), +('文', 'あや'), +('白', 'しろ'), +('白', 'しら-'), +('白', 'しろ.い'), +('百', 'もも'), +('八', 'や'), +('八', 'や.つ'), +('八', 'やっ.つ'), +('八', 'よう'), +('林', 'はやし'), +('立', 'た.つ'), +('立', '-た.つ'), +('立', 'た.ち-'), +('立', 'た.てる'), +('立', '-た.てる'), +('立', 'た.て-'), +('立', 'たて-'), +('立', '-た.て'), +('立', '-だ.て'), +('立', '-だ.てる'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('九', 'きゅう', 'nine, 9'), +('9日', 'ここのか', '9th day of the month, nine days'), +('九つ', 'ここのつ', 'nine, nine years of age, twelve o''clock (old time system)'), +('九つ時', 'ここのつどき', '(approx.) twelve o''clock (am or pm, old time system), noon, midnight'), +('休む', 'やすむ', 'to be absent, to take a day off, to rest, to have a break, to go to bed, to (lie down to) sleep, to turn in, to retire, to stop doing some ongoing activity for a time, to suspend business'), +('休まる', 'やすまる', 'to be rested, to feel at ease, to repose, to be relieved'), +('休める', 'やすめる', 'to rest, to suspend, to give relief'), +('貝', 'かい', 'shellfish, seashell, shell'), +('貝殻', 'かいがら', 'seashell, shell'), +('魚介', 'ぎょかい', 'marine products, seafood, fish and shellfish'), +('パウア貝', 'パウアかい', 'paua (edible New Zealand abalone; species Haliotis iris, H. australis, H. virginea)'), +('右', 'みぎ', 'right, right-hand side, afore-mentioned (esp. in vertical Japanese writing), foregoing, forgoing, above'), +('右腕', 'みぎうで', 'right arm, right-hand man, right hand, right-hand person, right-handed pitcher'), +('上右', 'うえみぎ', 'upper right (corner)'), +('下右', 'したみぎ', 'lower right (corner)'), +('気', 'き', 'spirit, mind, heart, nature, disposition, motivation, intention, mood, feelings, ambience, atmosphere, mood, qi (in traditional Chinese philosophy and medicine), chi, ki'), +('気分', 'きぶん', 'feeling, mood'), +('お天気', 'おてんき', 'weather, mood, temper'), +('換気', 'かんき', 'ventilation'), +('丸い', 'まるい', 'round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable'), +('丸', 'まる', 'circle, entirety, whole, full, complete, money, dough, moola, enclosure inside a castle''s walls, soft-shelled turtle, suffix for ship names, suffix for names of people (esp. infants), suffix for names of swords, armour, musical instruments, etc., suffix for names of dogs, horses, etc.'), +('丸い', 'まるい', 'round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable'), +('黒円', 'くろまる', 'black spot, black dot, bull''s-eye, middle dot, interpunct'), +('円居', 'まどい', 'small gathering, happy circle'), +('円か', 'まどか', 'round, tranquil, contentedly at ease'), +('円か', 'まどか', 'round, tranquil, contentedly at ease'), +('円やか', 'まろやか', 'round, circular, spherical, mellow (flavour, voice, etc.), mild, smooth'), +('雨', 'あめ', 'rain, rainy day, rainy weather, the November suit (in hanafuda)'), +('雨降り', 'あめふり', 'rainfall, rainy weather, rainy, wet'), +('五月雨', 'さみだれ', 'early-summer rain'), +('黒い雨', 'くろいあめ', 'black rain, heavily polluted, radioactive rain sometimes following an atmospheric nuclear explosion (esp. that of Hiroshima)'), +('下', 'した', 'below, down, under, younger (e.g. daughter), bottom, beneath, underneath, just after, right after, inferiority, one''s inferior (i.e. one''s junior), trade-in, preliminary, preparatory'), +('下着', 'したぎ', 'underwear, undergarment, underclothes, lingerie'), +('上下', 'うえした', 'top and bottom, up and down, high and low, above and below, upper and lower ends, upside-down'), +('幕下', 'まくした', 'third highest division, wrestlers of the third highest division'), +('下', 'しも', 'lower reaches (of a river), bottom, lower part, lower half (of the body, esp. the privates), feces (faeces), urine, menses, end, far from the imperial palace (i.e. far from Kyoto, esp. of western Japan), dirty (e.g. dirty jokes, etc.)'), +('下手', 'しもて', 'lower part, foot, lower direction, left part of the stage (audience''s or camera''s POV), stage right (actor''s POV)'), +('風下', 'かざしも', 'leeward, lee, downwind'), +('裃', 'かみしも', 'samurai costume, old ceremonial costume, top and bottom, up and down, high and low, above and below, upper and lower ends'), +('下', 'もと', 'under (guidance, supervision, rules, the law, etc.), under (a flag, the sun, etc.), beneath, with (e.g. one blow), on (the promise, condition, assumption, etc. that ...), in (e.g. the name of), (someone''s) side, (someone''s) location'), +('山元', 'やまもと', 'foot of a mountain, base of a mountain, mine, colliery, owner of a mountain, operator of a mine'), +('お膝元', 'おひざもと', 'beside a nobleman, close aid (of a nobleman, etc.), place where a high ranking person resides, one''s own city (of a shogun, lord, etc.), Imperial capital, Imperial court, (shogun''s) headquarters, place under one''s direct control, one''s own turf, one''s own backyard'), +('下げる', 'さげる', 'to hang, to suspend, to wear (e.g. decoration), to lower, to reduce, to bring down, to demote, to move back, to pull back, to clear (plates), to remove (food, etc. from table or altar), to keep on playing after one has formed a scoring combination with captured cards'), +('下がる', 'さがる', 'to come down, to go down, to fall, to drop, to sink, to get lower, to hang, to dangle, to move back, to step back, to withdraw, to retire, to deteriorate, to fall off, to be downgraded, to get closer to the present day, to go south'), +('下る', 'くだる', 'to descend, to go down, to come down, to be handed down (of an order, judgment, etc.), to pass (of time), to surrender, to capitulate, to be less than, to be inferior to, to have the runs, to have diarrhea, to pass (in stool), to be discharged from the body, to depreciate oneself, to be humble'), +('下り', 'くだり', 'down-train, train heading toward the ending point of its route, down-slope, downward going, downbound (esp. away from Tokyo), downstream, downhill'), +('下り坂', 'くだりざか', 'downhill, downward slope, descent, decline, waning, ebb, (going) downhill'), +('下す', 'くだす', 'to make a decision, to draw a conclusion, to give a judgement, to hand down a verdict, to pass a sentence, to give an order, to let go down, to lower, to do oneself, to do by oneself, to beat, to defeat, to have loose bowels, to have diarrhea, to pass (in stool), to discharge from the body, to do in one go, to do to the end without stopping'), +('下さる', 'くださる', 'to give, to confer, to bestow, to kindly do for one, to oblige, to favour, to favor'), +('下ろす', 'おろす', 'to take down, to bring down, to lower (a hand, flag, shutter, etc.), to drop (an anchor, curtain, etc.), to let down (hair), to launch (a boat), to drop off (a passenger), to let off, to unload (goods, a truck, etc.), to offload, to discharge, to withdraw (money), to use for the first time, to wear for the first time, to cut off, to fillet (fish), to grate (e.g. radish), to prune (branches), to remove (someone from a position), to oust, to drop, to clear (the table), to remove (offerings from an altar), to pass down (e.g. old clothes), to hand down, to expel from the body (e.g. worms), to abort (a fetus), to invoke (a spirit), to call down'), +('降りる', 'おりる', 'to descend (e.g. a mountain), to go down, to come down, to alight (e.g. from bus), to get off, to disembark, to dismount, to step down, to retire, to give up, to quit, to fold, to be granted, to be issued, to be given, to form (of frost, dew, mist, etc.), to be passed (from the body; e.g. of a roundworm)'), +('見る', 'みる', 'to see, to look, to watch, to view, to observe, to examine, to look over, to assess, to check, to judge, to look after, to attend to, to take care of, to keep an eye on, to experience, to meet with (misfortune, success, etc.), to try ..., to have a go at ..., to give ... a try, to see (that) ..., to find (that) ...'), +('見る見る', 'みるみる', 'very fast, in a twinkle, before one''s eyes'), +('見える', 'みえる', 'to be seen, to be in sight, to look, to seem, to appear, to come'), +('見える化', 'みえるか', 'visualization, rendering visible (e.g. a problem), digitization'), +('見せる', 'みせる', 'to show, to display'), +('空', 'そら', 'sky, the air, the heavens, weather, far-off place, distant place, state of mind, feeling, (from) memory, (by) heart, falsehood, lie, somehow, vaguely, fake'), +('空模様', 'そらもよう', 'look of the sky, weather'), +('定めなき空', 'さだめなきそら', 'changeable weather'), +('晴れた空', 'はれたそら', 'clear sky, cloudless sky'), +('開く', 'あく', 'to open (e.g. doors), to open (e.g. business, etc.), to be empty, to be vacant, to be available, to be free, to be open (e.g. neckline, etc.), to have been opened (of one''s eyes, mouth, etc.), to come to an end, to open (one''s eyes, mouth, etc.), to have a hole, to form a gap, to have an interval (between events)'), +('空き', 'あき', 'space, room, gap, emptiness, vacancy, opening, empty seat, free time, time to spare, disuse, unused thing'), +('空き缶', 'あきかん', 'empty can'), +('開ける', 'あける', 'to open (a door, etc.), to unwrap (e.g. parcel, package), to unlock, to open (for business, etc.), to empty, to remove, to make space, to make room, to move out, to clear out, to be away from (e.g. one''s house), to leave (temporarily), to dawn, to grow light, to end (of a period, season), to begin (of the New Year), to leave (one''s schedule) open, to make time (for), to make (a hole), to open up (a hole)'), +('空', 'から', 'emptiness, vacuum, blank'), +('空っぽ', 'からっぽ', 'empty, vacant, hollow'), +('もぬけの殻', 'もぬけのから', 'completely empty (of a residence, etc.), vacant, deserted, body from which the soul has left, corpse, shed skin (of a snake, insect, etc.)'), +('空く', 'すく', 'to become less crowded, to thin out, to get empty, to be hungry'), +('空かす', 'すかす', 'to feel hungry, to get hungry'), +('虚しい', 'むなしい', 'empty, void, vacant, vain, fruitless, futile, ineffective, lifeless'), +('月', 'つき', 'Moon, month, moonlight, (a) moon, natural satellite'), +('月末', 'げつまつ', 'end of the month'), +('卯月', 'うづき', 'fourth month of the lunar calendar'), +('祥月', 'しょうつき', 'month of a person''s death'), +('玉', 'たま', 'ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, okonomiyaki, coin, precious, beautiful, excellent'), +('卵', 'たまご', 'eggs, egg, spawn, roe, (hen''s) egg, (an expert) in the making, beginning, origin, infancy'), +('埼玉', 'さいたま', 'Saitama (city, prefecture)'), +('勾玉', 'まがたま', 'magatama, comma-shaped bead from prehistoric Japan, usually made of jade'), +('花', 'はな', 'flower, blossom, bloom, petal, cherry blossom, beauty, blooming (esp. of cherry blossoms), ikebana, hanafuda, (the) best, glorious, lovely'), +('花瓶', 'かびん', '(flower) vase'), +('菜の花', 'なのはな', 'rape blossoms, rapeseed flowers'), +('紅花', 'べにばな', 'safflower (Carthamus tinctorius), dyer''s safflower'), +('音', 'おと', 'sound, noise, report, note, fame, Chinese-derived character reading'), +('音沙汰', 'おとさた', 'news (from someone), word, letter, tidings, contact'), +('鈍い音', 'にぶいおと', 'dull sound, muffled sound'), +('風音', 'かざおと', 'sound of the wind'), +('音', 'おと', 'sound, noise, report, note, fame, Chinese-derived character reading'), +('音色', 'ねいろ', 'tone color, tone colour, tone quality, timbre'), +('弱音', 'よわね', 'feeble complaint, whine'), +('高音', 'こうおん', 'high-pitched tone, soprano'), +('一つ', 'ひとつ', 'one, for one thing, only, (not) even, just (e.g. "just try it"), some kind of, one type of'), +('一月', 'ひとつき', 'one month'), +('金', 'かね', 'money, metal'), +('金持ち', 'かねもち', 'rich person'), +('細かい金', 'こまかいかね', 'small change'), +('汚れた金', 'よごれたかね', 'dirty money'), +('学ぶ', 'まなぶ', 'to study (in depth), to learn, to take lessons in'), +('口', 'くち', 'mouth, opening, hole, gap, orifice, mouth (of a bottle), spout, nozzle, mouthpiece, gate, door, entrance, exit, speaking, speech, talk (i.e. gossip), taste, palate, mouth (to feed), opening (i.e. vacancy), available position, invitation, summons, kind, sort, type, opening (i.e. beginning), counter for mouthfuls, shares (of money), stove burners, and swords'), +('口紅', 'くちべに', 'lipstick'), +('入口', 'いりぐち', 'entrance, entry, gate, approach, mouth'), +('大口', 'おおぐち', 'big mouth, mouth opened wide, boastful speech, tall talk, bragging, boasting, large amount, large quantity'), +('犬', 'いぬ', 'dog (Canis (lupus) familiaris), squealer, rat, snitch, informer, informant, spy, loser, asshole, counterfeit, inferior, useless, wasteful'), +('犬嫌い', 'いぬぎらい', 'dog hater, dog hating'), +('野良犬', 'のらいぬ', 'stray dog'), +('柴犬', 'しばいぬ', 'shiba (Japanese breed of dog), shiba inu, brushwood dog'), +('火', 'ひ', 'fire, flame, blaze'), +('火花', 'ひばな', 'spark'), +('飛び火', 'とびひ', 'leaping flames, flying sparks, spread of fire (due to leaping flames), repercussions in unanticipated areas, spilling over, effects of an incident spreading to those seemingly uninvolved, impetigo contagiosa'), +('不知火', 'しらぬい', 'phosphorescent light, mysterious lights on the sea, sea fire'), +('五', 'ご', 'five, 5'), +('五つ', 'いつつ', 'five, five years of age, eight o''clock (old time system)'), +('五つ', 'いつつ', 'five, five years of age, eight o''clock (old time system)'), +('五つ子', 'いつつご', 'quintuplets'), +('左', 'ひだり', 'left, left hand side'), +('左利き', 'ひだりきき', 'left-handedness, left-handed person, left-hander, fondness for alcohol, person who is fond of alcohol, drinker'), +('向かって左', 'むかってひだり', 'on the left as one faces (it)'), +('同左', 'どうひだり', 'same as on the left, (in vertical writing) same as below'), +('山', 'やま', 'mountain, hill, mine (e.g. coal mine), heap, pile, crown (of a hat), thread (of a screw), tread (of a tire), protruding part of an object, high part, climax, peak, critical point, guess, speculation, gamble, criminal case, crime, mountain climbing, mountaineering, festival float (esp. one mounted with a decorative halberd), deck (of playing cards on table, face down, from which cards are drawn), stack, wall, wall tile, temple, temple grounds, wild'), +('山火事', 'やまかじ', 'forest fire, bushfire, wildfire'), +('奥山', 'おくやま', 'remote mountain, mountain recesses'), +('青山', 'せいざん', 'lush mountain, green mountain, grave, burial place'), +('三', 'さん', 'three, 3'), +('三つ', 'みっつ', 'three, three years of age'), +('三つ', 'みっつ', 'three, three years of age'), +('三つ子', 'みつご', 'three-year-old, triplets'), +('三つ', 'みっつ', 'three, three years of age'), +('3つの密', 'みっつのみつ', 'three Cs, three conditions that facilitate the transmission of infectious diseases (closed spaces, crowds, and close contact)'), +('子', 'こ', 'child, kid, teenager, youngster, young (non-adult) person, (one''s) child, offspring, young woman, young (animal), offshoot, interest, new share, player who is not a dealer (in cards, mahjong, etc.), young geisha, young prostitute, bird egg, -er (often of young women)'), +('子', 'こう', 'child, interest'), +('判子', 'はんこ', 'seal (used in lieu of a signature), stamp, chop'), +('売れっ子', 'うれっこ', 'popular figure, person in demand, favorite, favourite'), +('子', 'ね', 'the Rat (first sign of the Chinese zodiac), hour of the Rat (around midnight, 11pm to 1am, or 12 midnight to 2am), north, eleventh month of the lunar calendar'), +('子忌み', 'ねいみ', 'collecting herbs and pulling out young pine trees by the roots (annual event held on the first day of the Rat of the New Year)'), +('庚子', 'かのえね', 'Metal Rat (37th year of the sexagenary cycle, e.g. 1960, 2020, 2080)'), +('甲子', 'きのえね', 'Wood Rat (1st year of the sexagenary cycle, e.g. 1924, 1984, 2044)'), +('四', 'し', 'four, 4'), +('四つ', 'よっつ', 'four, 4, four years of age, ten o''clock (in the old time system), burakumin, cross grips'), +('四つ', 'よっつ', 'four, 4, four years of age, ten o''clock (in the old time system), burakumin, cross grips'), +('四つ角', 'よつかど', 'four corners, crossroads, intersecting street, street corner'), +('四つ', 'よっつ', 'four, 4, four years of age, ten o''clock (in the old time system), burakumin, cross grips'), +('四つん這い', 'よつんばい', 'crawling on all fours, getting on one''s hands and knees, falling flat'), +('四', 'し', 'four, 4'), +('40', 'よんじゅう', 'forty, 40'), +('十四', 'じゅうし', '14, fourteen'), +('軽四', 'けいよん', 'four-wheeled light vehicle'), +('糸', 'いと', 'thread, yarn, string'), +('糸口', 'いとぐち', 'beginning, start, first step, clue, lead, hint, thread end'), +('横糸', 'よこいと', 'weft, woof (crosswise threads on a loom)'), +('生糸', 'きいと', 'raw silk thread'), +('字', 'あざ', 'section of village'), +('字', 'あざな', 'Chinese courtesy name (name formerly given to adult Chinese men, used in place of their given name in formal situations), nickname, section of a village'), +('大字', 'おおあざ', 'larger section (of village)'), +('小字', 'こあざ', 'small administrative unit (of a village)'), +('字', 'あざな', 'Chinese courtesy name (name formerly given to adult Chinese men, used in place of their given name in formal situations), nickname, section of a village'), +('耳', 'みみ', 'ear, hearing, ear (for music, etc.), edge, crust, heel (of bread or cheese), selvedge (of woven fabric), selvage, ear (of a pot, jug, etc.), handle'), +('耳障り', 'みみざわり', 'hard (on the ears), offensive (to the ear), rasping, rough, harsh, grating, jarring, cacophonous'), +('大耳', 'おおみみ', 'big ears, listening without paying attention'), +('遠耳', 'とおみみ', 'sharp hearing'), +('車', 'くるま', 'car, automobile, vehicle, wheel, castor, caster'), +('車椅子', 'くるまいす', 'wheelchair'), +('火の車', 'ひのくるま', 'fiery chariot (which carries the souls of sinners into hell), desperate financial situation, dire straits'), +('手', 'て', 'hand, arm, forepaw, foreleg, handle, hand, worker, help, trouble, care, effort, means, way, trick, move, technique, workmanship, hand, handwriting, kind, type, sort, one''s hands, one''s possession, ability to cope, hand (of cards), direction, move (in go, shogi, etc.)'), +('手紙', 'てがみ', 'letter, missive, note, mail'), +('結婚相手', 'けっこんあいて', 'marriage partner, spouse, wife-to-be, husband-to-be, future spouse, fiancée, fiancé'), +('攻め手', 'せめて', 'offense, offence, method of attack'), +('女', 'おんな', 'female, woman, female sex, female lover, girlfriend, mistress, (someone''s) woman'), +('女の子', 'おんなのこ', 'girl, daughter, baby girl, young woman'), +('醜女', 'しゅうじょ', 'homely woman, plain-looking woman, female demon'), +('囲い女', 'かこいおんな', 'mistress'), +('雌', 'め', 'female, smaller (of the two), weaker, woman, wife'), +('女神', 'めがみ', 'goddess, female deity'), +('少女', 'しょうじょ', 'little girl, maiden, young lady, female usually between 7 and 18 years old, female between 17 and 20 years old (ritsuryō period)'), +('早乙女', 'さおとめ', 'young female rice planter, young girl'), +('小さい', 'ちいさい', 'small, little, tiny, slight, below average (in degree, amount, etc.), minor, small, low (e.g. sound), soft (e.g. voice), unimportant, petty, insignificant, trifling, trivial, young, juvenile'), +('小さい頃', 'ちいさいころ', 'as a child, when one was a child'), +('十', 'じゅう', 'ten, 10, ten years of age, book containing a collection of poems'), +('10日', 'とおか', '10th day of the month, ten days'), +('釈迦十', 'しゃかじゅう', '10 of batons (in mekuri karuta)'), +('十', 'じゅう', 'ten, 10, ten years of age, book containing a collection of poems'), +('10日', 'とおか', '10th day of the month, ten days'), +('算盤', 'そろばん', 'abacus, soroban, calculation (esp. of profit and loss), reckoning'), +('70', 'ななじゅう', 'seventy, 70'), +('80', 'はちじゅう', 'eighty, 80'), +('出る', 'でる', 'to leave, to exit, to go out, to come out, to get out, to leave (on a journey), to depart, to start out, to set out, to move forward, to come to, to get to, to lead to, to reach, to appear, to come out, to emerge, to surface, to come forth, to turn up, to be found, to be detected, to be discovered, to be exposed, to show, to be exhibited, to be on display, to appear (in print), to be published, to be announced, to be issued, to be listed, to come out, to attend, to participate, to take part, to enter (an event), to play in, to perform, to be stated, to be expressed, to come up, to be brought up, to be raised, to sell, to exceed, to go over, to stick out, to protrude, to break out, to occur, to start, to originate, to be produced, to come from, to be derived from, to be given, to get, to receive, to be offered, to be provided, to be presented, to be submitted, to be handed in, to be turned in, to be paid, to answer (phone, door, etc.), to get, to assume (an attitude), to act, to behave, to pick up (speed, etc.), to gain, to flow (e.g. tears), to run, to bleed, to graduate, to ejaculate, to cum'), +('出る杭は打たれる', 'でるくいはうたれる', 'the nail that sticks out gets hammered down, people that stick out too much get punished, tall trees catch much wind, people that excel at something become disliked'), +('出す', 'だす', 'to take out, to get out, to put out, to reveal, to show, to submit (e.g. thesis), to turn in, to publish, to make public, to send (e.g. letter), to produce (a sound), to start (fire), to serve (food), ... out (e.g. to jump out, to carry out), to begin ..., to start to ..., to burst into ...'), +('出すことは舌を出すも嫌い', 'だすことはしたをだすもきらい', 'being exceptionally stingy'), +('出でる', 'いでる', 'to go, to come'), +('七', 'しち', 'seven'), +('七つ', 'ななつ', 'seven, seven years of age, four o''clock (old time system)'), +('十七', 'じゅうしち', '17, seventeen'), +('七つ', 'ななつ', 'seven, seven years of age, four o''clock (old time system)'), +('七帯アルマジロ', 'ななつおびアルマジロ', 'seven-banded armadillo (Dasypus septemcinctus)'), +('7日', 'なのか', '7th day of the month, seven days'), +('森', 'もり', 'forest, shrine grove'), +('森青蛙', 'もりあおがえる', 'forest green tree frog (Rhacophorus arboreus)'), +('青森', 'あおもり', 'Aomori (city, prefecture)'), +('大森', 'おおもり', 'large forest'), +('上', 'うえ', 'above, up, over, elder (e.g. daughter), top, summit, head (e.g. of a staircase), surface, before, previous, superiority, one''s superior, one''s elder, on top of that, besides, what''s more, not only ... but, upon (further inspection, etc.), based on (and occurring after), matters concerning ..., as concerns ..., since (i.e. "for that reason"), honorable, venerable, place of one''s superior (e.g. the throne), emperor, sovereign, shogun, daimyo, noblewoman (esp. the wife of a nobleman)'), +('上向き', 'うわむき', 'pointing up, pointing upward, upturn, uptrend, upward tendency'), +('父上', 'ちちうえ', 'father'), +('床上', 'ゆかうえ', 'on a floor, above floor level'), +('上', 'かみ', 'upper reaches (of a river), upper stream, top, upper part, upper half (of the body), long ago, beginning, first, person of high rank (e.g. the emperor), government, imperial court, imperial capital (i.e. Kyoto), capital region (i.e. Kansai), region (or direction of) the imperial palace, head (of a table), wife, mistress (of a restaurant)'), +('上手', 'うわて', 'upper part, upper stream, upper course of a river, right side of the stage (audience''s or camera''s POV), stage left (actor''s POV), skillful (in comparisons), dexterity, over-arm grip on opponent''s belt'), +('風上', 'かざかみ', 'windward, upwind'), +('御上', 'おかみ', 'the Emperor, His Majesty, the government, the authorities, proprietress, hostess, landlady, mistress, your wife, his wife, (one''s) master, lord'), +('上げる', 'あげる', 'to raise, to elevate, to do up (one''s hair), to fly (a kite, etc.), to launch (fireworks, etc.), to surface (a submarine, etc.), to land (a boat), to deep-fry, to show someone (into a room), to give, to send someone (away), to enrol (one''s child in school), to enroll, to increase (price, quality, status, etc.), to develop (talent, skill), to improve, to make (a loud sound), to raise (one''s voice), to earn (something desirable), to praise, to give (an example, etc.), to cite, to summon up (all of one''s energy, etc.), to arrest, to nominate, to summon (for geishas, etc.), to offer up (incense, a prayer, etc.) to the gods (or Buddha, etc.), to bear (a child), to conduct (a ceremony, esp. a wedding), (of the tide) to come in, to vomit, to do for (the sake of someone else), to complete ..., to humbly do ...'), +('上がる', 'あがる', 'to rise, to go up, to come up, to ascend, to be raised, to enter (esp. from outdoors), to come in, to go in, to enter (a school), to advance to the next grade, to get out (of water), to come ashore, to increase, to improve, to make progress, to be promoted, to advance, to be made (of profit, etc.), to occur (esp. of a favourable result), to be adequate (to cover expenses, etc.), to be finished, to be done, to be over, (of rain) to stop, to lift, to stop (working properly), to cut out, to give out, to die, to win (in a card game, etc.), to be arrested, to turn up (of evidence, etc.), to be deep fried, to be spoken loudly, to get nervous, to get stage fright, to be offered (to the gods, etc.), to go, to visit, to eat, to drink, to be listed (as a candidate), to serve (in one''s master''s home), to go north, to be complete, to finish'), +('上がり', 'あがり', 'rise, increase, ascent, income, takings, earnings, proceeds, (crop) yield, return, profit, completion, end, finish, end result (e.g. of crafts), how something comes out, finish, finishing (in a board or card game, etc.), green tea (esp. in a sushi restaurant), after (rain, illness, etc.), ex- (e.g. ex-bureaucrat), former'), +('上がりこむ', 'あがりこむ', 'to enter (house, room, etc.), to step in'), +('芸者上がり', 'げいしゃあがり', 'ex-geisha, former geisha'), +('上る', 'のぼる', 'to ascend, to go up, to climb, to ascend (as a natural process, e.g. the Sun), to rise, to go to (the capital), to be promoted, to add up to, to advance (in price), to swim up (a river), to sail up, to come up (on the agenda)'), +('上り', 'のぼり', 'ascent, climbing, ascending (path), climb, up-train, train heading toward the starting point of its route, upbound (esp. toward Tokyo), upstream, uphill'), +('上り下り', 'のぼりくだり', 'going up and down, ascent and descent, climb and descent'), +('逆上せる', 'のぼせる', 'to feel dizzy, to have blood rush to one''s head, to lose one''s cool, to be obsessed, to be infatuated, to become conceited'), +('上せる', 'のぼせる', 'to raise, to record, to bring up (a matter), to serve (food), to send some on out'), +('上す', 'のぼす', 'to raise, to record, to bring up (a matter), to serve (food), to send someone out'), +('人', 'ひと', 'person, someone, somebody, human beings, mankind, man, people, humans, human (Homo sapiens), (other) people, others, character, personality, nature, capable person, competent person, suitable person, right person, adult, grown-up, I, me, one'), +('人ごみ', 'ひとごみ', 'crowd of people'), +('貴人', 'きじん', 'aristocrat, nobleman, dignitary, person of high rank'), +('いい人', 'いいひと', 'good-natured person, good person, (one''s) lover, boyfriend, girlfriend'), +('水', 'みず', 'water (esp. cool, fresh water, e.g. drinking water), fluid (esp. in an animal tissue), liquid, flood, floodwaters, water offered to wrestlers just prior to a bout, break granted to wrestlers engaged in a prolonged bout'), +('水着', 'みずぎ', 'bathing suit, swimsuit, swimmers'), +('出水', 'しゅっすい', 'flood, freshet, inundation'), +('立て板に水', 'たていたにみず', 'eloquence, volubility, (like) water on a standing board'), +('生きる', 'いきる', 'to live, to exist, to make a living, to subsist, to be in effect, to be in use, to function, to come to life, to be enlivened, to be safe (in baseball, go, etc.)'), +('生きる力', 'いきるちから', 'zest for living, energy to live'), +('生かす', 'いかす', 'to make (the best) use of, to put to good use, to leverage (skills, attributes, experience, etc.), to capitalise on (experience, etc.), to let live, to keep alive, to revive, to resuscitate, to bring back to life, to restore (a deleted passage; in proofreading)'), +('生ける', 'いける', 'to arrange (flowers), to plant, living, live'), +('生ける屍', 'いけるしかばね', 'living corpse'), +('生まれる', 'うまれる', 'to be born'), +('生まれる', 'うまれる', 'to be born'), +('生まれ', 'うまれ', 'birth, birthplace, born in (country, month, imperial era, zodiac year, etc.)'), +('生まれる', 'うまれる', 'to be born'), +('生まれ', 'うまれ', 'birth, birthplace, born in (country, month, imperial era, zodiac year, etc.)'), +('生まれる', 'うまれる', 'to be born'), +('生む', 'うむ', 'to give birth, to bear (child), to lay (eggs), to produce, to yield, to give rise to, to deliver'), +('生う', 'おう', 'to grow, to spring up, to cut (teeth)'), +('生える', 'はえる', 'to grow, to spring up, to sprout, to cut (teeth)'), +('生やす', 'はやす', 'to grow, to cultivate, to wear a beard'), +('生', 'き', 'pure, undiluted, raw, crude'), +('生地', 'きじ', 'cloth, fabric, material, texture, dough, batter, inherent quality, one''s true character, one''s true colours, unglazed pottery, skin with no make-up, uncoated metal'), +('死に生き', 'しにいき', 'death and life, death or life, death'), +('生', 'なま', 'raw, uncooked, fresh, natural, as it is, unedited, unprocessed, unprotected (sex), live (i.e. not recorded), inexperienced, unpolished, green, crude, impudence, sauciness, unpasteurized beer, draft beer, draught beer, blank (e.g. disk), unused, just a little, somehow, vaguely, partially, somewhat, half-, semi-, insufficient, incomplete, half-baked, half-hearted, perfunctory, cash, tipsiness'), +('生り', 'なまり', 'boiled and half-dried bonito'), +('お生', 'おなま', 'impudence, sauciness'), +('現ナマ', 'げんナマ', 'cold cash, hard cash'), +('生る', 'なる', 'to bear fruit'), +('生す', 'なす', 'to have a child'), +('生す', 'むす', 'to grow (of moss, etc.)'), +('中', 'なか', 'inside, interior, among, within, middle, center, centre, during, while, middle, midst, amid, interval, gap, mean, average, second (of three, e.g. sons, volumes), middle, medium grade, medium quality, red-light district'), +('半ば', 'なかば', 'middle, halfway, midway, half (of), one half, half (e.g. done, jokingly), partly, in part, partially, mostly, almost, nearly'), +('お腹', 'おなか', 'belly, abdomen, stomach'), +('市中', 'しちゅう', 'in the city, in the community'), +('内', 'うち', 'inside, within, while (e.g. one is young), during, within (e.g. a day), in the course of, among, amongst, (out) of, between, in (secret, chaos, poverty, etc.), amidst, with (e.g. success), within oneself, one''s feelings, inner thoughts, we, our company, our organization, one''s home, one''s family, my spouse, my husband, my wife, signed on behalf of (husband''s name) by his wife, I, me, imperial palace grounds, emperor'), +('碁打ち鳥飼い馬鹿の中', 'ごうちとりかいばかのうち', 'go players and bird keepers are idiots (both activities demand a lot of time)'), +('此の内', 'このうち', 'meanwhile, the other day, recently'), +('当たる', 'あたる', 'to be hit, to strike, to touch, to be in contact, to be affixed, to be equivalent to, to be applicable, to apply to, to be right on the money (of a prediction, criticism, etc.), to be selected (in a lottery, etc.), to win, to be successful, to go well, to be a hit, to face, to confront, to lie (in the direction of), to undertake, to be assigned, to be stricken (by food poisoning, heat, etc.), to be afflicted, to be called on (e.g. by a teacher), to treat (esp. harshly), to lash out at, to be unnecessary, to be hitting well, to be on a hitting streak, to feel a bite (in fishing), (of fruit, etc.) to be bruised, to spoil, to feel (something) out, to probe into, to check (i.e. by comparison), to shave, to be a relative of a person, to be a ... in relation to ..., to stand in a relationship'), +('夕', 'ゆう', 'evening'), +('夕方', 'ゆうがた', 'evening, dusk'), +('昨夕', 'さくゆう', 'yesterday evening, last night'), +('春の夕', 'はるのゆう', 'spring evening'), +('草', 'くさ', 'grass, weed, herb, thatch, ninja, not genuine, substandard, LOL, haha'), +('草木', 'くさき', 'plants, vegetation'), +('水草', 'みずくさ', 'water plant, aquatic plant, waterweed, hydrophyte'), +('若草', 'わかくさ', 'green grass, young (fresh) grass'), +('大きい', 'おおきい', 'big, large, great, loud, extensive, spacious, important, decisive, valuable, older, grown up'), +('千', 'せん', '1,000, thousand'), +('千尋', 'せんじん', 'great depth, bottomless, great height'), +('百千', 'ひゃくせん', 'a large number, all sorts, hundreds and thousands'), +('8000', 'はっせん', '8000, eight thousand, many'), +('虫', 'むし', 'insect, bug, cricket, moth, worm, roundworm, (one''s) unconscious, thing inside one''s body that stirs one''s feelings and thoughts, nervousness, fretfulness, person devoted to one thing, single-minded person, valve core, mushi (type of game played with a stripped deck)'), +('虫歯', 'むしば', 'cavity, tooth decay, decayed tooth, dental caries'), +('苦虫', 'にがむし', 'bitter-tasting bug'), +('馬追虫', 'うまおいむし', 'Hexacentrus japonicus (species of katydid), Hexacentrus unicolor (species of katydid)'), +('石', 'いし', 'stone, jewel, precious stone, flint (in a lighter), stone (in go), stone (in the bladder, kidney etc.), calculus, rock (in rock-paper-scissors), stone'), +('石炭', 'せきたん', 'coal'), +('墓石', 'ぼせき', 'tombstone, gravestone'), +('敷石', 'しきいし', 'paving stone, pavement'), +('川', 'かわ', 'river, stream, River, the ... river'), +('川上', 'かわかみ', 'upper reaches of a river, upstream'), +('堀川', 'ほりかわ', 'canal'), +('山川', 'さんせん', 'mountains and rivers'), +('町', 'まち', 'town, block, neighbourhood, neighborhood, downtown, main street, street, road'), +('街角', 'まちかど', 'street corner'), +('室町', 'むろまち', 'Muromachi period (1336-1573)'), +('門前町', 'もんぜんまち', 'town originally built around a temple or shrine'), +('村', 'むら', 'village'), +('村長', 'そんちょう', 'village headman, village mayor'), +('選手村', 'せんしゅむら', 'Olympic village, athlete''s village'), +('隣村', 'りんそん', 'neighboring village, neighbouring village'), +('先', 'さき', 'point, tip, end, nozzle, head (of a line), front, first, before, ahead (of), (the way) ahead, beyond, future, previous, prior, former, recent, last, destination, rest (e.g. of a story), continuation, remaining part, the other party'), +('先ほど', 'さきほど', 'a short while ago, a moment ago, just now, some time ago'), +('この先', 'このさき', 'beyond this point, ahead, from now on, after this, in the future'), +('小手先', 'こてさき', 'tip of the hand, (use of) one''s hands, cheap trick, superficial wit, superficial cleverness, cheap, makeshift (e.g. measures), shortsighted, perfunctory, halfhearted'), +('先ず', 'まず', 'first (of all), firstly, to begin with, before anything else, probably, most likely, almost certainly, virtually, more or less (satisfactory), on the whole, reasonably, anyway, at any rate, for now (at least), for the time being'), +('まず第一に', 'まずだいいちに', 'first of all, in the first place, to begin with, for starters'), +('天津', 'あまつ', 'heavenly, imperial'), +('天津乙女', 'あまつおとめ', 'celestial maiden'), +('天', 'あめ', 'sky'), +('天地', 'てんち', 'heaven and earth, the universe, nature, top and bottom, realm, sphere, world, top and bottom, gods of heaven and earth'), +('足', 'あし', 'foot, paw, arm (of an octopus, squid, etc.), leg, gait, pace, bottom structural component (i.e. radical) of a kanji, means of transportation, money, coin'), +('足跡', 'あしあと', 'footprints, record of page visitors (e.g. in social networking sites)'), +('駆け足', 'かけあし', 'running fast, double time, cantering, doing things in a hurry'), +('客足', 'きゃくあし', 'customer traffic, customers, custom'), +('足りる', 'たりる', 'to be sufficient, to be enough, to be worth doing, to be worthy of, to deserve, to do (the job), to serve, to answer'), +('足る', 'たる', 'to be sufficient, to be enough, to be worth doing, to be worthy of, to deserve, to do (the job), to serve, to answer'), +('足るを知る', 'たるをしる', 'to know one has enough, to be satisfied with one''s lot in life'), +('足す', 'たす', 'to add (numbers), to add (something), to top up (with something), to take care of (e.g. one''s business)'), +('青', 'あお', 'blue, azure, green, green light (traffic), black (horse coat color), blue 5-point card, immature, unripe, young'), +('青い', 'あおい', 'blue, azure, green, pale, gray, grey, unripe, inexperienced'), +('プロシア青', 'プロシアあお', 'Prussian blue'), +('深青', 'ふかあお', 'dark blue, deep blue, navy blue'), +('青い', 'あおい', 'blue, azure, green, pale, gray, grey, unripe, inexperienced'), +('青色', 'あおいろ', 'blue'), +('正しい', 'ただしい', 'right, correct, proper, righteous, just, honest, truthful, lawful'), +('正しい行い', 'ただしいおこない', 'conducting oneself properly, right conduct, doing the right thing'), +('正す', 'ただす', 'to correct, to rectify, to reform, to amend, to redress, to straighten (one''s posture, collar, etc.), to adjust'), +('糺す', 'ただす', 'to ascertain, to confirm, to verify, to make sure of'), +('正', 'まさ', 'exact, precise'), +('正に', 'まさに', 'exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally'), +('正に', 'まさに', 'exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally'), +('赤', 'あか', 'red, crimson, scarlet, red-containing colour (e.g. brown, pink, orange), Red (i.e. communist), red light (traffic), red ink (i.e. in finance or proof-reading), (in) the red, complete, total, perfect, obvious, copper, red 5-point card'), +('銅', 'どう', 'copper (Cu), bronze (medal)'), +('紅赤', 'べにあか', 'bright red tinged with yellow, variety of sweet potato with red skin and sweet yellow flesh (product of the Kawagoe region)'), +('真赤', 'まあか', 'bright red, deep red'), +('赤い', 'あかい', 'red, crimson, scarlet, vermilion, vermillion, Red, communist, beautiful'), +('赤色', 'あかいろ', 'red, red color (colour), red-colored, red, communism, the left'), +('赤らむ', 'あからむ', 'to become red, to redden, to blush'), +('赤らめる', 'あからめる', 'to blush, to redden'), +('竹', 'たけ', 'bamboo (any grass of subfamily Bambusoideae), middle (of a three-tier ranking system)'), +('竹林', 'ちくりん', 'bamboo thicket, bamboo grove'), +('笛竹', 'ふえたけ', 'bamboo flute, bamboo for making flutes, wind and string instruments'), +('苦竹', 'にがたけ', 'Japanese timber bamboo (Phyllostachys bambsoides), giant timber bamboo, madake, Simon bamboo (Pleioblastus simonii)'), +('田', 'た', 'rice field'), +('田んぼ', 'たんぼ', 'paddy field, farm'), +('新田', 'しんでん', 'new rice field, newly developed rice field, wasteland or marshland newly reclaimed as a rice field (Edo period)'), +('沼田', 'ぬまた', 'marshy rice field or paddy'), +('早い', 'はやい', 'fast, quick, rapid, swift, speedy, brisk, prompt, early, soon, earlier than usual, premature, too soon, too early, easy, simple, quick, fast, as soon as ..., the moment ..., the instant ...'), +('早い話が', 'はやいはなしが', 'in short, in a nutshell, in a word, to cut a long story short'), +('早', 'はや', 'already, now, by this time, quick, early, fast, rapid'), +('甲矢', 'はや', 'arrow with feathers that curve to the left (the first of two arrows to be fired)'), +('早々', 'はやはや', 'quickly'), +('なる早', 'なるはや', 'as soon as possible, ASAP'), +('早まる', 'はやまる', 'to be brought forward (e.g. by three hours), to be moved up, to be advanced, to be hasty, to be rash, to quicken, to speed up, to gather speed'), +('早める', 'はやめる', 'to bring forward (e.g. by 3 hours), to advance, to hasten (e.g. one''s death), to expedite, to precipitate, to quicken (e.g. one''s step), to speed up, to accelerate'), +('土', 'つち', 'earth, soil, dirt, clay, mud, the earth (historically, esp. as opposed to the heavens), the ground, the land, low-quality torinoko-gami (containing mud), (period of) refraining from construction in the direction of the god of the earth (in Onmyōdō)'), +('土埃', 'つちぼこり', 'dust, cloud of dust'), +('盛り土', 'もりど', 'embankment (for road, railway, etc.), raising the ground level, fill'), +('赤土', 'あかつち', 'red clay, tuff loam, dark-red paint'), +('男', 'おとこ', 'man, male, fellow, guy, chap, bloke, male lover, boyfriend, man, manliness, manly honor, manly honour, manly reputation'), +('男の子', 'おとこのこ', 'boy, son, baby boy, young man'), +('雨男', 'あめおとこ', 'man who brings the rain with him wherever he goes, man who is constantly unlucky with the weather'), +('年男', 'としおとこ', 'man born in a year with the same Chinese zodiac sign as the current year'), +('雄', 'お', 'male, manly, brave, heroic, larger (of the two), greater, man, husband'), +('男', 'おとこ', 'man, male, fellow, guy, chap, bloke, male lover, boyfriend, man, manliness, manly honor, manly honour, manly reputation'), +('丈夫', 'じょうふ', 'hero, manly person, warrior'), +('愛上男', 'あいうえお', 'skilled male lover'), +('二', 'に', 'two, 2'), +('二つ', 'ふたつ', 'two'), +('二つ', 'ふたつ', 'two'), +('二つ目', 'ふたつめ', 'one after next, second'), +('再び', 'ふたたび', 'again, once more, a second time'), +('日', 'ひ', 'day, days, sun, sunshine, sunlight, (the) day, daytime, daylight, date, deadline, (past) days, time (e.g. of one''s childhood), case (esp. unfortunate), event'), +('日付', 'ひづけ', 'date, dating'), +('在りし日', 'ありしひ', 'past days, bygone days, days of yore, the olden days, while still alive, during one''s lifetime'), +('あくる日', 'あくるひ', 'next day, following day'), +('入る', 'いる', 'to get in, to go in, to come in, to flow into, to set, to set in'), +('入るを量りて出ずるを為す', 'いるをはかりていずるをなす', 'consider your income before spending'), +('入れる', 'いれる', 'to put in, to let in, to take in, to bring in, to insert, to install (e.g. software), to set (a jewel, etc.), to ink in (e.g. tattoo), to admit, to accept, to employ, to hire, to accept, to comply, to grant, to adopt (a policy, etc.), to take (advice, etc.), to listen to, to pay attention to, to include, to pay (one''s rent, etc.), to cast (a vote), to make (tea, coffee, etc.), to turn on (a switch, etc.), to send (a fax), to call'), +('入る', 'はいる', 'to enter, to go into, to break into, to join, to enroll, to contain, to hold, to accommodate, to have (an income of), to get turned on, to start functioning, to start working, to get, to obtain, to receive, to score'), +('木', 'き', 'tree, shrub, bush, wood, timber'), +('木綿', 'もめん', 'cotton (material), red silk-cotton tree (Bombax ceiba)'), +('接ぎ木', 'つぎき', 'grafting'), +('雑木', 'ぞうき', 'various kinds of small trees, assorted trees'), +('力', 'ちから', 'force, strength, might, vigour, vigor, energy, capability, ability, proficiency, capacity, faculty, efficacy, effect, effort, endeavours, endeavors, exertions, power, authority, influence, good offices, agency, support, help, aid, assistance, stress, emphasis, means, resources'), +('力強い', 'ちからづよい', 'powerful, strong, forceful, vigorous, reassuring, encouraging'), +('強い力', 'つよいちから', 'strong interaction, strong force'), +('弱い力', 'よわいちから', 'weak force, weak interaction'), +('名', 'な', 'name, given name, title, fame, renown, reputation, pretext, pretense, justification, appearance'), +('名前', 'なまえ', 'name, given name, first name'), +('あだ名', 'あだな', 'nickname'), +('片仮名', 'かたかな', 'katakana, angular Japanese syllabary used primarily for loanwords'), +('目', 'め', 'eye, eyeball, eyesight, sight, vision, look, stare, gaze, glance, notice, attention, observation, eyes (of the world, public, etc.), an experience, viewpoint, discrimination, discernment, judgement, eye (e.g. for quality), appearance, chance to succeed, possibility, spacing (between crossed strands of a net, mesh, etc.), opening, stitch, texture, weave, grain (of wood), eye (of a storm, needle, etc.), intersection (on a go board), square (on a chess board), dot (on a dice), pip, rolled number, graduation, division (of a scale), tooth (of a saw, comb, etc.), ordinal number suffix, somewhat, -ish, point (e.g. of change)'), +('目下', 'めした', 'subordinate, subordinates, inferior, inferiors, junior'), +('見る目', 'みるめ', 'discerning eye, an eye (for something), good judgement, public eye, (in) the eyes of others, people watching, public opinion, appearance, sight, impression, point of view, way of looking (at)'), +('蛇の目', 'じゃのめ', 'bull''s-eye (pattern), double ring (pattern), umbrella with bull''s-eye pattern'), +('六', 'ろく', 'six, 6'), +('難しい', 'むずかしい', 'difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky'), +('六つ', 'むっつ', 'six, six years of age, six o''clock (old time system)'), +('難しい', 'むずかしい', 'difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky'), +('六つ', 'むっつ', 'six, six years of age, six o''clock (old time system)'), +('6日', 'むいか', '6th day of the month, six days'), +('六日間戦争', 'むいかかんせんそう', 'Six-Day War (June 5-10, 1967), Third Arab-Israeli War'), +('元', 'もと', 'origin, source, base, basis, foundation, root, cause, ingredient, material, base, mix, stock, (someone''s) side, (someone''s) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip'), +('元々', 'もともと', 'originally, by nature, from the start'), +('大本', 'おおもと', 'root, origin, source, cause, basis, foundation, Ōmoto (religion)'), +('旗本', 'はたもと', 'shogunal vassal, direct retainer of a shogun'), +('年', 'とし', 'year, age, years, past one''s prime, old age'), +('年月', 'としつき', 'months and years'), +('いい年', 'いいとし', 'mature age, advanced age, maturity, age when one is old enough to know better'), +('御年', 'おんとし', 'age (esp. advanced)'), +('文', 'ふみ', 'letter, writings'), +('文香', 'ふみこう', 'scented insert (to enclose with a letter), perfumed insert'), +('雁の文', 'かりのふみ', '(a) letter'), +('日文', 'ひふみ', 'Hifumi (script)'), +('綾', 'あや', 'figure, design, twill weave, pattern of diagonal stripes, style (of writing), figure (of speech), design, plot, plan, minor market fluctuation, technical correction, cat''s cradle, lease rod (in a loom)'), +('文無鳥', 'あやなしどり', 'lesser cuckoo (Cuculus poliocephalus)'), +('言葉は身の文', 'ことばはみのあや', 'words betray one''s character'), +('白', 'しろ', 'white, innocence, innocent person, blank space, white go stone, white dragon tile, skewered grilled pig intestine'), +('白い', 'しろい', 'white'), +('面白', 'おもしろ', 'amusing, funny, interesting'), +('蘿蔔', 'すずしろ', 'daikon (variety of large white Oriental radish, Raphanus sativus var. longipinnatus) (primarily used in context of the seven spring herbs)'), +('白い', 'しろい', 'white'), +('白色', 'しろいろ', 'white'), +('百', 'もも', 'hundred, 100, (a great) many'), +('百重', 'ももえ', 'piling up highly, becoming a large pile'), +('八', 'はち', 'eight, 8'), +('八百屋', 'やおや', 'greengrocer, fruit and vegetable shop'), +('八つ', 'やっつ', 'eight, eight years of age, two o''clock (old time system)'), +('八つ当たり', 'やつあたり', 'venting one''s anger (on someone or something), taking out one''s anger on'), +('八つ', 'やっつ', 'eight, eight years of age, two o''clock (old time system)'), +('8日', 'ようか', '8th day of the month, eight days'), +('林', 'はやし', 'wood, woods, forest, grove, copse, thicket, bunch (of something), cluster, line, collection'), +('立つ', 'たつ', 'to stand, to rise, to stand up, to find oneself (e.g. in a difficult position), to depart (on a plane, train, etc.)'), +('立つ瀬', 'たつせ', 'predicament, one''s ground, one''s position'), +('出立', 'しゅったつ', 'departure'), +('突立', 'とったつ', 'stand straight up'), +('立てる', 'たてる', 'to stand up, to put up, to set up, to erect, to raise, to thrust into, to bury into, to dig into, to make (a noise), to start (a rumour), to raise (a cloud of dust, etc.), to cause, to make, to establish, to set up, to develop, to formulate, to put up (a political candidate), to make (one''s leader), to treat with respect, to give (someone) their due, to make (someone) look good, to avoid embarrassing (someone), to sharpen, to make clear, to shut, to close, to make tea (matcha), to perform the tea ceremony, to divide by, to do ... vigorously'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(470, '九'), +(471, '九'), +(472, '九'), +(473, '九'), +(474, '休'), +(475, '休'), +(476, '休'), +(477, '貝'), +(478, '貝'), +(479, '貝'), +(480, '貝'), +(481, '右'), +(482, '右'), +(483, '右'), +(484, '右'), +(485, '気'), +(486, '気'), +(487, '気'), +(488, '気'), +(489, '円'), +(490, '円'), +(491, '円'), +(492, '円'), +(493, '円'), +(494, '円'), +(495, '円'), +(496, '円'), +(497, '雨'), +(498, '雨'), +(499, '雨'), +(500, '雨'), +(501, '下'), +(502, '下'), +(503, '下'), +(504, '下'), +(505, '下'), +(506, '下'), +(507, '下'), +(508, '下'), +(509, '下'), +(510, '下'), +(511, '下'), +(512, '下'), +(513, '下'), +(514, '下'), +(515, '下'), +(516, '下'), +(517, '下'), +(518, '下'), +(519, '下'), +(520, '下'), +(521, '見'), +(522, '見'), +(523, '見'), +(524, '見'), +(525, '見'), +(526, '空'), +(527, '空'), +(528, '空'), +(529, '空'), +(530, '空'), +(531, '空'), +(532, '空'), +(533, '空'), +(534, '空'), +(535, '空'), +(536, '空'), +(537, '空'), +(538, '空'), +(539, '空'), +(540, '月'), +(541, '月'), +(542, '月'), +(543, '月'), +(544, '玉'), +(545, '玉'), +(546, '玉'), +(547, '玉'), +(548, '花'), +(549, '花'), +(550, '花'), +(551, '花'), +(552, '音'), +(553, '音'), +(554, '音'), +(555, '音'), +(556, '音'), +(557, '音'), +(558, '音'), +(559, '音'), +(560, '一'), +(561, '一'), +(562, '金'), +(563, '金'), +(564, '金'), +(565, '金'), +(566, '学'), +(567, '口'), +(568, '口'), +(569, '口'), +(570, '口'), +(571, '犬'), +(572, '犬'), +(573, '犬'), +(574, '犬'), +(575, '火'), +(576, '火'), +(577, '火'), +(578, '火'), +(579, '五'), +(580, '五'), +(581, '五'), +(582, '五'), +(583, '左'), +(584, '左'), +(585, '左'), +(586, '左'), +(587, '山'), +(588, '山'), +(589, '山'), +(590, '山'), +(591, '三'), +(592, '三'), +(593, '三'), +(594, '三'), +(595, '三'), +(596, '三'), +(597, '子'), +(598, '子'), +(599, '子'), +(600, '子'), +(601, '子'), +(602, '子'), +(603, '子'), +(604, '子'), +(605, '四'), +(606, '四'), +(607, '四'), +(608, '四'), +(609, '四'), +(610, '四'), +(611, '四'), +(612, '四'), +(613, '四'), +(614, '四'), +(615, '糸'), +(616, '糸'), +(617, '糸'), +(618, '糸'), +(619, '字'), +(620, '字'), +(621, '字'), +(622, '字'), +(623, '字'), +(624, '耳'), +(625, '耳'), +(626, '耳'), +(627, '耳'), +(628, '車'), +(629, '車'), +(630, '車'), +(631, '手'), +(632, '手'), +(633, '手'), +(634, '手'), +(635, '女'), +(636, '女'), +(637, '女'), +(638, '女'), +(639, '女'), +(640, '女'), +(641, '女'), +(642, '女'), +(643, '小'), +(644, '小'), +(645, '十'), +(646, '十'), +(647, '十'), +(648, '十'), +(649, '十'), +(650, '十'), +(651, '十'), +(652, '十'), +(653, '出'), +(654, '出'), +(655, '出'), +(656, '出'), +(657, '出'), +(658, '七'), +(659, '七'), +(660, '七'), +(661, '七'), +(662, '七'), +(663, '七'), +(664, '森'), +(665, '森'), +(666, '森'), +(667, '森'), +(668, '上'), +(669, '上'), +(670, '上'), +(671, '上'), +(672, '上'), +(673, '上'), +(674, '上'), +(675, '上'), +(676, '上'), +(677, '上'), +(678, '上'), +(679, '上'), +(680, '上'), +(681, '上'), +(682, '上'), +(683, '上'), +(684, '上'), +(685, '上'), +(686, '上'), +(687, '人'), +(688, '人'), +(689, '人'), +(690, '人'), +(691, '水'), +(692, '水'), +(693, '水'), +(694, '水'), +(695, '生'), +(696, '生'), +(697, '生'), +(698, '生'), +(699, '生'), +(700, '生'), +(701, '生'), +(702, '生'), +(703, '生'), +(704, '生'), +(705, '生'), +(706, '生'), +(707, '生'), +(708, '生'), +(709, '生'), +(710, '生'), +(711, '生'), +(712, '生'), +(713, '生'), +(714, '生'), +(715, '生'), +(716, '生'), +(717, '生'), +(718, '生'), +(719, '生'), +(720, '中'), +(721, '中'), +(722, '中'), +(723, '中'), +(724, '中'), +(725, '中'), +(726, '中'), +(727, '中'), +(728, '夕'), +(729, '夕'), +(730, '夕'), +(731, '夕'), +(732, '草'), +(733, '草'), +(734, '草'), +(735, '草'), +(736, '大'), +(737, '千'), +(738, '千'), +(739, '千'), +(740, '千'), +(741, '虫'), +(742, '虫'), +(743, '虫'), +(744, '虫'), +(745, '石'), +(746, '石'), +(747, '石'), +(748, '石'), +(749, '川'), +(750, '川'), +(751, '川'), +(752, '川'), +(753, '町'), +(754, '町'), +(755, '町'), +(756, '町'), +(757, '村'), +(758, '村'), +(759, '村'), +(760, '村'), +(761, '先'), +(762, '先'), +(763, '先'), +(764, '先'), +(765, '先'), +(766, '先'), +(767, '天'), +(768, '天'), +(769, '天'), +(770, '天'), +(771, '足'), +(772, '足'), +(773, '足'), +(774, '足'), +(775, '足'), +(776, '足'), +(777, '足'), +(778, '足'), +(779, '青'), +(780, '青'), +(781, '青'), +(782, '青'), +(783, '青'), +(784, '青'), +(785, '正'), +(786, '正'), +(787, '正'), +(788, '正'), +(789, '正'), +(790, '正'), +(791, '正'), +(792, '赤'), +(793, '赤'), +(794, '赤'), +(795, '赤'), +(796, '赤'), +(797, '赤'), +(798, '赤'), +(799, '赤'), +(800, '竹'), +(801, '竹'), +(802, '竹'), +(803, '竹'), +(804, '田'), +(805, '田'), +(806, '田'), +(807, '田'), +(808, '早'), +(809, '早'), +(810, '早'), +(811, '早'), +(812, '早'), +(813, '早'), +(814, '早'), +(815, '早'), +(816, '土'), +(817, '土'), +(818, '土'), +(819, '土'), +(820, '男'), +(821, '男'), +(822, '男'), +(823, '男'), +(824, '男'), +(825, '男'), +(826, '男'), +(827, '男'), +(828, '二'), +(829, '二'), +(830, '二'), +(831, '二'), +(832, '二'), +(833, '日'), +(834, '日'), +(835, '日'), +(836, '日'), +(837, '入'), +(838, '入'), +(839, '入'), +(840, '入'), +(841, '木'), +(842, '木'), +(843, '木'), +(844, '木'), +(845, '力'), +(846, '力'), +(847, '力'), +(848, '力'), +(849, '名'), +(850, '名'), +(851, '名'), +(852, '名'), +(853, '目'), +(854, '目'), +(855, '目'), +(856, '目'), +(857, '六'), +(858, '六'), +(859, '六'), +(860, '六'), +(861, '六'), +(862, '六'), +(863, '六'), +(864, '本'), +(865, '本'), +(866, '本'), +(867, '本'), +(868, '年'), +(869, '年'), +(870, '年'), +(871, '年'), +(872, '文'), +(873, '文'), +(874, '文'), +(875, '文'), +(876, '文'), +(877, '文'), +(878, '文'), +(879, '白'), +(880, '白'), +(881, '白'), +(882, '白'), +(883, '白'), +(884, '白'), +(885, '百'), +(886, '百'), +(887, '八'), +(888, '八'), +(889, '八'), +(890, '八'), +(891, '八'), +(892, '八'), +(893, '林'), +(894, '立'), +(895, '立'), +(896, '立'), +(897, '立'), +(898, '立'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("ここの"), +("ここの.つ"), +("やす.む"), +("やす.まる"), +("やす.める"), +("かい"), +("みぎ"), +("き"), +("まる.い"), +("まる"), +("まど"), +("まど.か"), +("まろ.やか"), +("あめ"), +("あま-"), +("-さめ"), +("した"), +("しも"), +("もと"), +("さ.げる"), +("さ.がる"), +("くだ.る"), +("くだ.り"), +("くだ.す"), +("-くだ.す"), +("くだ.さる"), +("お.ろす"), +("お.りる"), +("み.る"), +("み.える"), +("み.せる"), +("そら"), +("あ.く"), +("あ.き"), +("あ.ける"), +("から"), +("す.く"), +("す.かす"), +("むな.しい"), +("つき"), +("たま"), +("たま-"), +("-だま"), +("はな"), +("おと"), +("ね"), +("ひと-"), +("ひと.つ"), +("かね"), +("かな-"), +("-がね"), +("まな.ぶ"), +("くち"), +("いぬ"), +("いぬ-"), +("ひ"), +("-び"), +("ほ-"), +("いつ"), +("いつ.つ"), +("ひだり"), +("やま"), +("み"), +("み.つ"), +("みっ.つ"), +("こ"), +("-こ"), +("ね"), +("よ"), +("よ.つ"), +("よっ.つ"), +("よん"), +("いと"), +("あざ"), +("あざな"), +("-な"), +("みみ"), +("くるま"), +("て"), +("て-"), +("-て"), +("た-"), +("おんな"), +("め"), +("ちい.さい"), +("こ-"), +("お-"), +("さ-"), +("とお"), +("と"), +("そ"), +("で.る"), +("-で"), +("だ.す"), +("-だ.す"), +("い.でる"), +("い.だす"), +("なな"), +("なな.つ"), +("なの"), +("もり"), +("うえ"), +("-うえ"), +("うわ-"), +("かみ"), +("あ.げる"), +("-あ.げる"), +("あ.がる"), +("-あ.がる"), +("あ.がり"), +("-あ.がり"), +("のぼ.る"), +("のぼ.り"), +("のぼ.せる"), +("のぼ.す"), +("たてまつ.る"), +("ひと"), +("-り"), +("-と"), +("みず"), +("みず-"), +("い.きる"), +("い.かす"), +("い.ける"), +("う.まれる"), +("うま.れる"), +("う.まれ"), +("うまれ"), +("う.む"), +("お.う"), +("は.える"), +("は.やす"), +("き"), +("なま"), +("なま-"), +("な.る"), +("な.す"), +("む.す"), +("-う"), +("なか"), +("うち"), +("あた.る"), +("ゆう"), +("くさ"), +("くさ-"), +("-ぐさ"), +("おお-"), +("おお.きい"), +("-おお.いに"), +("ち"), +("むし"), +("いし"), +("かわ"), +("まち"), +("むら"), +("さき"), +("ま.ず"), +("あまつ"), +("あめ"), +("あま-"), +("あし"), +("た.りる"), +("た.る"), +("た.す"), +("あお"), +("あお-"), +("あお.い"), +("ただ.しい"), +("ただ.す"), +("まさ"), +("まさ.に"), +("あか"), +("あか-"), +("あか.い"), +("あか.らむ"), +("あか.らめる"), +("たけ"), +("た"), +("はや.い"), +("はや"), +("はや-"), +("はや.まる"), +("はや.める"), +("さ-"), +("つち"), +("おとこ"), +("お"), +("ふた"), +("ふた.つ"), +("ふたたび"), +("ひ"), +("-び"), +("-か"), +("い.る"), +("-い.る"), +("-い.り"), +("い.れる"), +("-い.れ"), +("はい.る"), +("き"), +("こ-"), +("ちから"), +("な"), +("-な"), +("め"), +("-め"), +("ま-"), +("む"), +("む.つ"), +("むっ.つ"), +("むい"), +("もと"), +("とし"), +("ふみ"), +("あや"), +("しろ"), +("しら-"), +("しろ.い"), +("もも"), +("や"), +("や.つ"), +("やっ.つ"), +("よう"), +("はやし"), +("た.つ"), +("-た.つ"), +("た.ち-"), +("た.てる"), +("-た.てる"), +("た.て-"), +("たて-"), +("-た.て"), +("-だ.て"), +("-だ.てる"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('九', 'ここの'), +('九', 'ここの.つ'), +('休', 'やす.む'), +('休', 'やす.まる'), +('休', 'やす.める'), +('貝', 'かい'), +('右', 'みぎ'), +('気', 'き'), +('円', 'まる.い'), +('円', 'まる'), +('円', 'まど'), +('円', 'まど.か'), +('円', 'まろ.やか'), +('雨', 'あめ'), +('雨', 'あま-'), +('雨', '-さめ'), +('下', 'した'), +('下', 'しも'), +('下', 'もと'), +('下', 'さ.げる'), +('下', 'さ.がる'), +('下', 'くだ.る'), +('下', 'くだ.り'), +('下', 'くだ.す'), +('下', '-くだ.す'), +('下', 'くだ.さる'), +('下', 'お.ろす'), +('下', 'お.りる'), +('見', 'み.る'), +('見', 'み.える'), +('見', 'み.せる'), +('空', 'そら'), +('空', 'あ.く'), +('空', 'あ.き'), +('空', 'あ.ける'), +('空', 'から'), +('空', 'す.く'), +('空', 'す.かす'), +('空', 'むな.しい'), +('月', 'つき'), +('玉', 'たま'), +('玉', 'たま-'), +('玉', '-だま'), +('花', 'はな'), +('音', 'おと'), +('音', 'ね'), +('一', 'ひと-'), +('一', 'ひと.つ'), +('金', 'かね'), +('金', 'かな-'), +('金', '-がね'), +('学', 'まな.ぶ'), +('口', 'くち'), +('犬', 'いぬ'), +('犬', 'いぬ-'), +('火', 'ひ'), +('火', '-び'), +('火', 'ほ-'), +('五', 'いつ'), +('五', 'いつ.つ'), +('左', 'ひだり'), +('山', 'やま'), +('三', 'み'), +('三', 'み.つ'), +('三', 'みっ.つ'), +('子', 'こ'), +('子', '-こ'), +('子', 'ね'), +('四', 'よ'), +('四', 'よ.つ'), +('四', 'よっ.つ'), +('四', 'よん'), +('糸', 'いと'), +('字', 'あざ'), +('字', 'あざな'), +('字', '-な'), +('耳', 'みみ'), +('車', 'くるま'), +('手', 'て'), +('手', 'て-'), +('手', '-て'), +('手', 'た-'), +('女', 'おんな'), +('女', 'め'), +('小', 'ちい.さい'), +('小', 'こ-'), +('小', 'お-'), +('小', 'さ-'), +('十', 'とお'), +('十', 'と'), +('十', 'そ'), +('出', 'で.る'), +('出', '-で'), +('出', 'だ.す'), +('出', '-だ.す'), +('出', 'い.でる'), +('出', 'い.だす'), +('七', 'なな'), +('七', 'なな.つ'), +('七', 'なの'), +('森', 'もり'), +('上', 'うえ'), +('上', '-うえ'), +('上', 'うわ-'), +('上', 'かみ'), +('上', 'あ.げる'), +('上', '-あ.げる'), +('上', 'あ.がる'), +('上', '-あ.がる'), +('上', 'あ.がり'), +('上', '-あ.がり'), +('上', 'のぼ.る'), +('上', 'のぼ.り'), +('上', 'のぼ.せる'), +('上', 'のぼ.す'), +('上', 'たてまつ.る'), +('人', 'ひと'), +('人', '-り'), +('人', '-と'), +('水', 'みず'), +('水', 'みず-'), +('生', 'い.きる'), +('生', 'い.かす'), +('生', 'い.ける'), +('生', 'う.まれる'), +('生', 'うま.れる'), +('生', 'う.まれ'), +('生', 'うまれ'), +('生', 'う.む'), +('生', 'お.う'), +('生', 'は.える'), +('生', 'は.やす'), +('生', 'き'), +('生', 'なま'), +('生', 'なま-'), +('生', 'な.る'), +('生', 'な.す'), +('生', 'む.す'), +('生', '-う'), +('中', 'なか'), +('中', 'うち'), +('中', 'あた.る'), +('夕', 'ゆう'), +('草', 'くさ'), +('草', 'くさ-'), +('草', '-ぐさ'), +('大', 'おお-'), +('大', 'おお.きい'), +('大', '-おお.いに'), +('千', 'ち'), +('虫', 'むし'), +('石', 'いし'), +('川', 'かわ'), +('町', 'まち'), +('村', 'むら'), +('先', 'さき'), +('先', 'ま.ず'), +('天', 'あまつ'), +('天', 'あめ'), +('天', 'あま-'), +('足', 'あし'), +('足', 'た.りる'), +('足', 'た.る'), +('足', 'た.す'), +('青', 'あお'), +('青', 'あお-'), +('青', 'あお.い'), +('正', 'ただ.しい'), +('正', 'ただ.す'), +('正', 'まさ'), +('正', 'まさ.に'), +('赤', 'あか'), +('赤', 'あか-'), +('赤', 'あか.い'), +('赤', 'あか.らむ'), +('赤', 'あか.らめる'), +('竹', 'たけ'), +('田', 'た'), +('早', 'はや.い'), +('早', 'はや'), +('早', 'はや-'), +('早', 'はや.まる'), +('早', 'はや.める'), +('早', 'さ-'), +('土', 'つち'), +('男', 'おとこ'), +('男', 'お'), +('二', 'ふた'), +('二', 'ふた.つ'), +('二', 'ふたたび'), +('日', 'ひ'), +('日', '-び'), +('日', '-か'), +('入', 'い.る'), +('入', '-い.る'), +('入', '-い.り'), +('入', 'い.れる'), +('入', '-い.れ'), +('入', 'はい.る'), +('木', 'き'), +('木', 'こ-'), +('力', 'ちから'), +('名', 'な'), +('名', '-な'), +('目', 'め'), +('目', '-め'), +('目', 'ま-'), +('六', 'む'), +('六', 'む.つ'), +('六', 'むっ.つ'), +('六', 'むい'), +('本', 'もと'), +('年', 'とし'), +('文', 'ふみ'), +('文', 'あや'), +('白', 'しろ'), +('白', 'しら-'), +('白', 'しろ.い'), +('百', 'もも'), +('八', 'や'), +('八', 'や.つ'), +('八', 'やっ.つ'), +('八', 'よう'), +('林', 'はやし'), +('立', 'た.つ'), +('立', '-た.つ'), +('立', 'た.ち-'), +('立', 'た.てる'), +('立', '-た.てる'), +('立', 'た.て-'), +('立', 'たて-'), +('立', '-た.て'), +('立', '-だ.て'), +('立', '-だ.てる'); + +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("引", 4, "pull, tug, jerk, admit, install, quote, refer to", "弓", 3, 218, 2, true), +("雲", 12, "cloud", "雨", 2, 1256, 2, true), +("園", 13, "park, garden, yard, farm", "囗", 3, 628, 2, true), +("何", 7, "what", "人", 5, 340, 2, true), +("羽", 6, "feathers, counter for birds, rabbits", "羽", 2, 748, 2, true), +("科", 9, "department, course, section", "禾", 3, 531, 2, true), +("夏", 10, "summer", "夊", 4, 659, 2, true), +("画", 8, "brush-stroke, picture", "田", 4, 199, 2, true), +("遠", 13, "distant, far", "辵", 3, 887, 2, true), +("回", 6, "-times, round, game, revolve, counter for occurrences", "囗", 3, 50, 2, true), +("歌", 14, "song, sing", "欠", 4, 519, 2, true), +("海", 9, "sea, ocean", "水", 4, 200, 2, true), +("会", 6, "meeting, meet, party, association, interview, join", "人", 4, 4, 2, true), +("絵", 12, "picture, drawing, painting, sketch", "糸", 3, 895, 2, true), +("外", 5, "outside", "夕", 5, 81, 2, true), +("角", 7, "angle, corner, square, horn, antlers", "角", 2, 805, 2, true), +("家", 10, "house, home, family, professional, expert, performer", "宀", 4, 133, 2, true), +("活", 9, "lively, resuscitation, being helped, living", "水", 3, 171, 2, true), +("楽", 13, "music, comfort, ease", "木", 4, 373, 2, true), +("丸", 3, "round, full (month), perfection, -ship, pills, make round, roll up, curl up, seduce, explain away", "丶", 2, 542, 2, true), +("岩", 8, "boulder, rock, cliff", "山", 2, 787, 2, true), +("顔", 18, "face, expression", "頁", 3, 676, 2, true), +("汽", 7, "vapor, steam", "水", 1, 2020, 2, true), +("記", 10, "scribe, account, narrative", "言", 3, 149, 2, true), +("間", 12, "interval, space", "門", 5, 33, 2, true), +("魚", 11, "fish", "魚", 4, 1208, 2, true), +("帰", 10, "homecoming, arrive at, lead to, result in", "巾", 4, 504, 2, true), +("牛", 4, "cow", "牛", 4, 1202, 2, true), +("教", 11, "teach, faith, doctrine", "攴", 4, 166, 2, true), +("強", 11, "strong", "弓", 4, 112, 2, true), +("弓", 3, "bow, bow (archery, violin)", "弓", 1, 1802, 2, true), +("京", 8, "capital, 10**16", "亠", 4, 74, 2, true), +("兄", 5, "elder brother, big brother", "儿", 4, 1219, 2, true), +("近", 7, "near, early, akin, tantamount", "辵", 4, 194, 2, true), +("形", 7, "shape, form, style", "彡", 3, 418, 2, true), +("言", 7, "say, word", "言", 4, 83, 2, true), +("元", 4, "beginning, former time, origin", "儿", 4, 192, 2, true), +("原", 10, "meadow, original, primitive, field, plain, prairie, tundra, wilderness", "厂", 3, 172, 2, true), +("戸", 4, "door, counter for houses, door radical (no. 63)", "戶", 2, 575, 2, true), +("計", 9, "plot, plan, scheme, measure", "言", 4, 228, 2, true), +("古", 5, "old", "口", 4, 509, 2, true), +("語", 14, "word, speech, language", "言", 5, 301, 2, true), +("考", 6, "consider, think over", "老", 4, 196, 2, true), +("光", 6, "ray, light", "儿", 3, 527, 2, true), +("午", 4, "noon, sign of the horse, 11AM-1PM, seventh sign of Chinese zodiac", "十", 5, 154, 2, true), +("交", 6, "mingle, mixing, association, coming & going", "亠", 3, 178, 2, true), +("谷", 7, "valley", "谷", 2, 508, 2, true), +("後", 9, "behind, back, later", "彳", 5, 26, 2, true), +("今", 4, "now", "人", 5, 49, 2, true), +("国", 8, "country", "囗", 5, 3, 2, true), +("黒", 11, "black", "黑", 4, 573, 2, true), +("細", 11, "dainty, get thin, taper, slender, narrow, detailed, precise", "糸", 2, 537, 2, true), +("行", 6, "going, journey, carry out, conduct, act, line, row, bank", "行", 5, 20, 2, true), +("黄", 11, "yellow", "黃", 2, 1240, 2, true), +("高", 10, "tall, high, expensive", "高", 5, 65, 2, true), +("作", 7, "make, production, prepare, build", "人", 4, 103, 2, true), +("才", 3, "genius, years old, cubic shaku", "手", 3, 1497, 2, true), +("合", 6, "fit, suit, join, 0.1", "口", 3, 41, 2, true), +("広", 5, "wide, broad, spacious", "广", 4, 263, 2, true), +("工", 3, "craft, construction, katakana e radical (no. 48)", "工", 4, 299, 2, true), +("公", 4, "public, prince, official, governmental", "八", 4, 118, 2, true), +("社", 7, "company, firm, office, association, shrine", "示", 4, 21, 2, true), +("春", 9, "springtime, spring (season)", "日", 4, 579, 2, true), +("寺", 6, "Buddhist temple", "寸", 2, 879, 2, true), +("算", 14, "calculate, divining, number, abacus, probability", "竹", 2, 361, 2, true), +("秋", 9, "autumn", "禾", 4, 635, 2, true), +("止", 4, "stop, halt", "止", 4, 310, 2, true), +("時", 10, "time, hour", "日", 5, 16, 2, true), +("首", 9, "neck, counter for songs and poems", "首", 3, 98, 2, true), +("室", 9, "room, apartment, chamber, greenhouse, cellar", "宀", 4, 550, 2, true), +("市", 5, "market, city, town", "巾", 3, 42, 2, true), +("弱", 10, "weak, frail", "弓", 2, 958, 2, true), +("少", 4, "few, little", "小", 4, 287, 2, true), +("紙", 10, "paper", "糸", 4, 559, 2, true), +("思", 9, "think", "心", 4, 132, 2, true), +("書", 10, "write", "曰", 5, 169, 2, true), +("姉", 8, "elder sister", "女", 4, 1473, 2, true), +("場", 12, "location, place", "土", 4, 52, 2, true), +("矢", 5, "dart, arrow", "矢", 1, 1294, 2, true), +("自", 6, "oneself", "自", 4, 19, 2, true), +("週", 11, "week", "辵", 4, 540, 2, true), +("食", 9, "eat, food", "食", 5, 328, 2, true), +("新", 13, "new", "斤", 4, 51, 2, true), +("図", 7, "map, drawing, plan, extraordinary, audacious", "囗", 4, 539, 2, true), +("数", 13, "number, strength, fate, law, figures", "攴", 3, 148, 2, true), +("心", 4, "heart, mind, spirit, heart radical (no. 61)", "心", 4, 157, 2, true), +("親", 16, "parent, intimacy, relative, familiarity, dealer (cards)", "見", 4, 406, 2, true), +("声", 7, "voice", "士", 3, 388, 2, true), +("西", 6, "west, Spain", "西", 5, 259, 2, true), +("雪", 11, "snow", "雨", 3, 1131, 2, true), +("色", 6, "color", "色", 4, 621, 2, true), +("晴", 12, "clear up", "日", 3, 1022, 2, true), +("星", 9, "star, spot, dot, mark", "日", 2, 844, 2, true), +("線", 15, "line, track", "糸", 2, 382, 2, true), +("切", 4, "cut, cutoff, be sharp", "刀", 4, 324, 2, true), +("前", 9, "in front, before", "刀", 5, 27, 2, true), +("船", 11, "ship, boat", "舟", 3, 713, 2, true), +("走", 7, "run", "走", 4, 626, 2, true), +("組", 11, "association, braid, plait, construct, assemble, unite, cooperate, grapple", "糸", 3, 204, 2, true), +("多", 6, "many, frequent, much", "夕", 4, 139, 2, true), +("体", 7, "body, substance, object, reality, counter for images", "人", 4, 88, 2, true), +("太", 4, "plump, thick, big around", "大", 3, 552, 2, true), +("直", 8, "straightaway, honesty, frankness, fix, repair", "目", 3, 246, 2, true), +("電", 13, "electricity", "雨", 5, 268, 2, true), +("長", 8, "long, leader, superior, senior", "長", 5, 12, 2, true), +("当", 6, "hit, right, appropriate, himself", "彐", 3, 91, 2, true), +("台", 5, "pedestal, a stand, counter for machines and vehicles", "口", 4, 262, 2, true), +("朝", 12, "morning, dynasty, regime, epoch, period, (North) Korea", "月", 4, 248, 2, true), +("地", 6, "ground, earth", "土", 4, 40, 2, true), +("知", 8, "know, wisdom", "矢", 4, 205, 2, true), +("頭", 16, "head, counter for large animals", "頁", 3, 433, 2, true), +("同", 6, "same, agree, equal", "口", 4, 15, 2, true), +("昼", 9, "daytime, noon", "日", 4, 1115, 2, true), +("鳥", 11, "bird, chicken", "鳥", 4, 1043, 2, true), +("点", 9, "spot, point, mark, speck, decimal point", "火", 3, 165, 2, true), +("通", 10, "traffic, pass through, avenue, commute, counter for letters, notes, documents, etc.", "辵", 4, 80, 2, true), +("答", 12, "solution, answer", "竹", 4, 486, 2, true), +("店", 8, "store, shop", "广", 4, 378, 2, true), +("内", 4, "inside, within, between, among, house, home", "冂", 3, 44, 2, true), +("弟", 7, "younger brother, faithful service to elders", "弓", 4, 1161, 2, true), +("池", 6, "pond, cistern, pool, reservoir", "水", 2, 827, 2, true), +("道", 12, "road-way, street, district, journey, course, moral, teachings", "辵", 4, 207, 2, true), +("読", 14, "read", "言", 5, 618, 2, true), +("冬", 5, "winter", "冫", 4, 1090, 2, true), +("刀", 2, "sword, saber, knife", "刀", 1, 1794, 2, true), +("東", 8, "east", "木", 5, 37, 2, true), +("茶", 9, "tea", "艸", 4, 1116, 2, true), +("南", 9, "south", "十", 5, 341, 2, true), +("肉", 6, "meat", "肉", 4, 986, 2, true), +("馬", 10, "horse", "馬", 3, 639, 2, true), +("売", 7, "sell", "士", 4, 202, 2, true), +("買", 12, "buy", "貝", 4, 520, 2, true), +("父", 4, "father", "父", 5, 646, 2, true), +("分", 4, "part, minute of time, segment, share, degree, one's lot, duty, understand, know, rate, 1%, chances, shaku/100", "刀", NULL, 24, 2, true), +("半", 5, "half, middle, odd number, semi-, part-", "十", 5, 224, 2, true), +("麦", 7, "barley, wheat", "麥", 2, 1615, 2, true), +("聞", 14, "hear, ask, listen", "耳", 5, 319, 2, true), +("米", 6, "rice, USA, metre", "米", 3, 61, 2, true), +("母", 5, "mother", "毋", 5, 570, 2, true), +("方", 4, "direction, person, alternative", "方", 4, 46, 2, true), +("番", 12, "turn, number in a series", "田", 3, 348, 2, true), +("歩", 8, "walk, counter for steps", "止", 4, 554, 2, true), +("里", 7, "ri, village, parent's home, league", "里", NULL, 1096, 2, true), +("理", 11, "logic, arrangement, reason, justice, truth", "玉", 4, 86, 2, true), +("来", 7, "come, due, next, cause, become", "木", 5, 102, 2, true), +("妹", 8, "younger sister", "女", 4, 1446, 2, true), +("万", 3, "ten thousand, 10,000", "一", 5, 375, 2, true), +("夜", 8, "night, evening", "夕", 4, 487, 2, true), +("用", 5, "utilize, business, service, use, employ", "用", 4, 107, 2, true), +("鳴", 14, "chirp, cry, bark, sound, ring, echo, honk", "鳥", 3, 1279, 2, true), +("北", 5, "north", "匕", 5, 153, 2, true), +("門", 8, "gate, counter for cannons", "門", 2, 452, 2, true), +("話", 13, "tale, talk", "言", 5, 134, 2, true), +("毛", 4, "fur, hair, feather, down", "毛", 2, 1179, 2, true), +("野", 11, "plains, field, rustic, civilian life", "里", 4, 120, 2, true), +("風", 9, "wind, air, style, manner", "風", 4, 558, 2, true), +("友", 4, "friend", "又", 5, 622, 2, true), +("明", 8, "bright, light", "日", 4, 67, 2, true), +("曜", 18, "weekday", "日", 4, 940, 2, true), +("毎", 6, "every", "毋", 5, 436, 2, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("イン"), +("ウン"), +("エン"), +("カ"), +("ウ"), +("カ"), +("カ"), +("ガ"), +("ゲ"), +("ガ"), +("カク"), +("エ"), +("カイ"), +("エン"), +("オン"), +("カイ"), +("エ"), +("カ"), +("カイ"), +("カイ"), +("エ"), +("カイ"), +("エ"), +("ガイ"), +("ゲ"), +("カク"), +("カ"), +("ケ"), +("カツ"), +("ガク"), +("ラク"), +("ゴウ"), +("ガン"), +("ガン"), +("ガン"), +("キ"), +("キ"), +("カン"), +("ケン"), +("ギョ"), +("キ"), +("ギュウ"), +("キョウ"), +("キョウ"), +("ゴウ"), +("キュウ"), +("キョウ"), +("ケイ"), +("キン"), +("ケイ"), +("キョウ"), +("キン"), +("コン"), +("ケイ"), +("ギョウ"), +("ゲン"), +("ゴン"), +("ゲン"), +("ガン"), +("ゲン"), +("コ"), +("ケイ"), +("コ"), +("ゴ"), +("コウ"), +("コウ"), +("ゴ"), +("コウ"), +("コク"), +("ゴ"), +("コウ"), +("コン"), +("キン"), +("コク"), +("コク"), +("サイ"), +("コウ"), +("ギョウ"), +("アン"), +("コウ"), +("オウ"), +("コウ"), +("サク"), +("サ"), +("サイ"), +("ゴウ"), +("ガッ"), +("カッ"), +("コウ"), +("コウ"), +("ク"), +("グ"), +("コウ"), +("ク"), +("シャ"), +("シュン"), +("ジ"), +("サン"), +("シュウ"), +("シ"), +("ジ"), +("シュ"), +("シツ"), +("シ"), +("ジャク"), +("ショウ"), +("シ"), +("シ"), +("ショ"), +("シ"), +("ジョウ"), +("チョウ"), +("シ"), +("ジ"), +("シ"), +("シュウ"), +("ショク"), +("ジキ"), +("シン"), +("ズ"), +("ト"), +("スウ"), +("ス"), +("サク"), +("ソク"), +("シュ"), +("シン"), +("シン"), +("セイ"), +("ショウ"), +("セイ"), +("サイ"), +("ス"), +("セツ"), +("ショク"), +("シキ"), +("セイ"), +("セイ"), +("ショウ"), +("セン"), +("セツ"), +("サイ"), +("ゼン"), +("セン"), +("ソウ"), +("ソ"), +("タ"), +("タイ"), +("テイ"), +("タイ"), +("タ"), +("チョク"), +("ジキ"), +("ジカ"), +("デン"), +("チョウ"), +("トウ"), +("ダイ"), +("タイ"), +("チョウ"), +("チ"), +("ジ"), +("チ"), +("トウ"), +("ズ"), +("ト"), +("ドウ"), +("チュウ"), +("チョウ"), +("テン"), +("ツウ"), +("ツ"), +("トウ"), +("テン"), +("ナイ"), +("ダイ"), +("テイ"), +("ダイ"), +("デ"), +("チ"), +("ドウ"), +("トウ"), +("ドク"), +("トク"), +("トウ"), +("トウ"), +("トウ"), +("トウ"), +("チャ"), +("サ"), +("ナン"), +("ナ"), +("ニク"), +("バ"), +("バイ"), +("バイ"), +("フ"), +("ブン"), +("フン"), +("ブ"), +("ハン"), +("バク"), +("ブン"), +("モン"), +("ベイ"), +("マイ"), +("メエトル"), +("ボ"), +("ホウ"), +("バン"), +("ホ"), +("ブ"), +("フ"), +("リ"), +("リ"), +("ライ"), +("タイ"), +("マイ"), +("マン"), +("バン"), +("ヤ"), +("ヨウ"), +("メイ"), +("ホク"), +("モン"), +("ワ"), +("モウ"), +("ヤ"), +("ショ"), +("フウ"), +("フ"), +("ユウ"), +("メイ"), +("ミョウ"), +("ミン"), +("ヨウ"), +("マイ"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('引', 'イン'), +('雲', 'ウン'), +('園', 'エン'), +('何', 'カ'), +('羽', 'ウ'), +('科', 'カ'), +('夏', 'カ'), +('夏', 'ガ'), +('夏', 'ゲ'), +('画', 'ガ'), +('画', 'カク'), +('画', 'エ'), +('画', 'カイ'), +('遠', 'エン'), +('遠', 'オン'), +('回', 'カイ'), +('回', 'エ'), +('歌', 'カ'), +('海', 'カイ'), +('会', 'カイ'), +('会', 'エ'), +('絵', 'カイ'), +('絵', 'エ'), +('外', 'ガイ'), +('外', 'ゲ'), +('角', 'カク'), +('家', 'カ'), +('家', 'ケ'), +('活', 'カツ'), +('楽', 'ガク'), +('楽', 'ラク'), +('楽', 'ゴウ'), +('丸', 'ガン'), +('岩', 'ガン'), +('顔', 'ガン'), +('汽', 'キ'), +('記', 'キ'), +('間', 'カン'), +('間', 'ケン'), +('魚', 'ギョ'), +('帰', 'キ'), +('牛', 'ギュウ'), +('教', 'キョウ'), +('強', 'キョウ'), +('強', 'ゴウ'), +('弓', 'キュウ'), +('京', 'キョウ'), +('京', 'ケイ'), +('京', 'キン'), +('兄', 'ケイ'), +('兄', 'キョウ'), +('近', 'キン'), +('近', 'コン'), +('形', 'ケイ'), +('形', 'ギョウ'), +('言', 'ゲン'), +('言', 'ゴン'), +('元', 'ゲン'), +('元', 'ガン'), +('原', 'ゲン'), +('戸', 'コ'), +('計', 'ケイ'), +('古', 'コ'), +('語', 'ゴ'), +('考', 'コウ'), +('光', 'コウ'), +('午', 'ゴ'), +('交', 'コウ'), +('谷', 'コク'), +('後', 'ゴ'), +('後', 'コウ'), +('今', 'コン'), +('今', 'キン'), +('国', 'コク'), +('黒', 'コク'), +('細', 'サイ'), +('行', 'コウ'), +('行', 'ギョウ'), +('行', 'アン'), +('黄', 'コウ'), +('黄', 'オウ'), +('高', 'コウ'), +('作', 'サク'), +('作', 'サ'), +('才', 'サイ'), +('合', 'ゴウ'), +('合', 'ガッ'), +('合', 'カッ'), +('広', 'コウ'), +('工', 'コウ'), +('工', 'ク'), +('工', 'グ'), +('公', 'コウ'), +('公', 'ク'), +('社', 'シャ'), +('春', 'シュン'), +('寺', 'ジ'), +('算', 'サン'), +('秋', 'シュウ'), +('止', 'シ'), +('時', 'ジ'), +('首', 'シュ'), +('室', 'シツ'), +('市', 'シ'), +('弱', 'ジャク'), +('少', 'ショウ'), +('紙', 'シ'), +('思', 'シ'), +('書', 'ショ'), +('姉', 'シ'), +('場', 'ジョウ'), +('場', 'チョウ'), +('矢', 'シ'), +('自', 'ジ'), +('自', 'シ'), +('週', 'シュウ'), +('食', 'ショク'), +('食', 'ジキ'), +('新', 'シン'), +('図', 'ズ'), +('図', 'ト'), +('数', 'スウ'), +('数', 'ス'), +('数', 'サク'), +('数', 'ソク'), +('数', 'シュ'), +('心', 'シン'), +('親', 'シン'), +('声', 'セイ'), +('声', 'ショウ'), +('西', 'セイ'), +('西', 'サイ'), +('西', 'ス'), +('雪', 'セツ'), +('色', 'ショク'), +('色', 'シキ'), +('晴', 'セイ'), +('星', 'セイ'), +('星', 'ショウ'), +('線', 'セン'), +('切', 'セツ'), +('切', 'サイ'), +('前', 'ゼン'), +('船', 'セン'), +('走', 'ソウ'), +('組', 'ソ'), +('多', 'タ'), +('体', 'タイ'), +('体', 'テイ'), +('太', 'タイ'), +('太', 'タ'), +('直', 'チョク'), +('直', 'ジキ'), +('直', 'ジカ'), +('電', 'デン'), +('長', 'チョウ'), +('当', 'トウ'), +('台', 'ダイ'), +('台', 'タイ'), +('朝', 'チョウ'), +('地', 'チ'), +('地', 'ジ'), +('知', 'チ'), +('頭', 'トウ'), +('頭', 'ズ'), +('頭', 'ト'), +('同', 'ドウ'), +('昼', 'チュウ'), +('鳥', 'チョウ'), +('点', 'テン'), +('通', 'ツウ'), +('通', 'ツ'), +('答', 'トウ'), +('店', 'テン'), +('内', 'ナイ'), +('内', 'ダイ'), +('弟', 'テイ'), +('弟', 'ダイ'), +('弟', 'デ'), +('池', 'チ'), +('道', 'ドウ'), +('道', 'トウ'), +('読', 'ドク'), +('読', 'トク'), +('読', 'トウ'), +('冬', 'トウ'), +('刀', 'トウ'), +('東', 'トウ'), +('茶', 'チャ'), +('茶', 'サ'), +('南', 'ナン'), +('南', 'ナ'), +('肉', 'ニク'), +('馬', 'バ'), +('売', 'バイ'), +('買', 'バイ'), +('父', 'フ'), +('分', 'ブン'), +('分', 'フン'), +('分', 'ブ'), +('半', 'ハン'), +('麦', 'バク'), +('聞', 'ブン'), +('聞', 'モン'), +('米', 'ベイ'), +('米', 'マイ'), +('米', 'メエトル'), +('母', 'ボ'), +('方', 'ホウ'), +('番', 'バン'), +('歩', 'ホ'), +('歩', 'ブ'), +('歩', 'フ'), +('里', 'リ'), +('理', 'リ'), +('来', 'ライ'), +('来', 'タイ'), +('妹', 'マイ'), +('万', 'マン'), +('万', 'バン'), +('夜', 'ヤ'), +('用', 'ヨウ'), +('鳴', 'メイ'), +('北', 'ホク'), +('門', 'モン'), +('話', 'ワ'), +('毛', 'モウ'), +('野', 'ヤ'), +('野', 'ショ'), +('風', 'フウ'), +('風', 'フ'), +('友', 'ユウ'), +('明', 'メイ'), +('明', 'ミョウ'), +('明', 'ミン'), +('曜', 'ヨウ'), +('毎', 'マイ'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('引用', 'インヨウ', 'quotation, citation, reference'), +('引退', 'インタイ', 'retirement'), +('延引', 'エンイン', 'delay, procrastination'), +('勾引', 'コウイン', 'arrest, custody, apprehending, abduction'), +('雲泥の差', 'ウンデイノサ', 'wide difference, a world of difference'), +('雲散霧消', 'ウンサンムショウ', 'vanishing like mist'), +('黒雲', 'クロクモ', 'dark clouds, black clouds'), +('青雲', 'セイウン', 'blue sky, erudition, detachment from the world, high rank'), +('園', 'ソノ', 'garden (esp. man-made), orchard, park, plantation, place, location'), +('園芸', 'エンゲイ', 'horticulture, gardening'), +('入園', 'ニュウエン', 'enrollment in kindergarten, enrolment in nursery school, entering a park, garden, zoo, etc.'), +('農園', 'ノウエン', 'farm, plantation'), +('誰何', 'スイカ', 'challenging (an unknown person), asking a person''s identity'), +('非可換幾何', 'ヒカカンキカ', 'noncommutative geometry, NCG'), +('羽', 'ウ', 'fifth degree (of the Japanese and Chinese pentatonic scale)'), +('羽毛', 'ウモウ', 'feathers, plumage, down'), +('奥羽', 'オウウ', 'Ōu (the two former provinces of Mutsu and Dewa), Tōhoku'), +('小翼羽', 'ショウヨクウ', 'alula, bastard wing'), +('科', 'カ', 'department, section, faculty, school, arm, course (of study), branch of study, specialization, (taxonomical) family'), +('科学', 'カガク', 'science'), +('小児科', 'ショウニカ', 'pediatrics'), +('歯科', 'シカ', 'dentistry'), +('夏', 'カ', 'Xia dynasty (of China; c. 2070-1600 BCE; possibly mythological), Hsia dynasty'), +('夏期休暇', 'カキキュウカ', 'summer vacation, summer holidays'), +('初夏', 'ショカ', 'early summer, fourth month of the lunar calendar'), +('盛夏', 'セイカ', 'midsummer, height of summer'), +('夏', 'ゲ', 'summer (on the lunisolar calendar: 16th day of the 4th month to the 15th day of the 7th month)'), +('夏至', 'ゲシ', 'summer solstice'), +('一夏', 'イチゲ', 'one summer (during which a monk attends a summer retreat)'), +('半夏', 'ハンゲ', 'crow dipper (Pinellia tuber), 11th day after the summer solstice, last seed-sowing and rice-planting day'), +('絵', 'エ', 'picture, drawing, painting, sketch, image (TV, film, etc.), picture, footage'), +('画家', 'ガカ', 'painter, artist'), +('録画', 'ロクガ', '(video) recording'), +('版画', 'ハンガ', 'woodcut, woodblock print, art print'), +('画', 'カク', 'stroke (of a kanji, etc.)'), +('描く', 'エガク', 'to draw, to paint, to sketch, to depict, to describe, to picture in one''s mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)'), +('計画', 'ケイカク', 'plan, project, schedule, scheme, program, programme'), +('企画', 'キカク', 'planning, plan, project, arrangements'), +('絵', 'エ', 'picture, drawing, painting, sketch, image (TV, film, etc.), picture, footage'), +('描く', 'エガク', 'to draw, to paint, to sketch, to depict, to describe, to picture in one''s mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)'), +('似顔絵', 'ニガオエ', 'portrait, likeness, sketch (of a face)'), +('影絵', 'カゲエ', 'shadow picture, silhouette, shadowgraph'), +('遠慮', 'エンリョ', 'reserve, constraint, restraint, modesty, diffidence, hesitation, holding back, discretion, tact, thoughtfulness, declining, refraining, forethought, foresight'), +('遠足', 'エンソク', 'excursion, outing, trip'), +('敬遠', 'ケイエン', 'pretending to respect (someone) while in fact staying distant, keeping at arm''s length, giving a wide berth, avoiding (something unpleasant), shying away from, giving (the batter) an "intentional walk"'), +('以遠', 'イエン', 'beyond, further than'), +('遠忌', 'オンキ', '13th or later anniversary of a death'), +('遠諱', 'オンキ', 'semicentennial memorial service'), +('久遠', 'クオン', 'eternity'), +('回', 'カイ', 'counter for occurrences, a time, an instance, inning (baseball), round, game, episode, chapter, instalment, Hui (people), Islam'), +('回復', 'カイフク', 'restoration, rehabilitation, recovery, return, replevin, improvement, recovery (from an illness), recuperation, convalescence'), +('何回', 'ナンカイ', 'how many times'), +('撤回', 'テッカイ', 'withdrawal, retraction, revocation, repeal'), +('回向', 'エコウ', 'memorial service, prayers for the repose of the soul, transfer of merit'), +('回向偈', 'エコウゲ', 'closing recital that transfers the merit of the service to a buddha, a bodhisattva, or the dead'), +('歌手', 'カシュ', 'singer'), +('歌留多', 'カルタ', 'karuta (traditional Japanese playing cards; esp. hyakunin isshu karuta)'), +('短歌', 'タンカ', 'tanka, 31-mora Japanese poem'), +('演歌', 'エンカ', 'enka, traditional-style Japanese popular ballad, troubadour'), +('海岸', 'カイガン', 'coast, beach'), +('海外', 'カイガイ', 'foreign, abroad, overseas'), +('航海', 'コウカイ', '(sea) voyage, navigation, sailing, passage, cruise'), +('領海', 'リョウカイ', 'territorial waters'), +('会', 'カイ', 'meeting, assembly, party, gathering, conference, athletic meet, society, association, club'), +('会議', 'カイギ', 'meeting, conference, session, assembly, council, convention, congress'), +('国会', 'コッカイ', 'National Diet, legislative assembly of Japan (1947-), Imperial Diet, legislative assembly of Japan (1889-1947), legislative assembly, parliament, congress'), +('集会', 'シュウカイ', 'meeting, assembly, gathering, congregation, convention, rally'), +('会', 'エ', 'gathering (esp. Buddhist, festive, etc.)'), +('会釈', 'エシャク', 'slight bow (as a greeting or sign of gratitude), nod, salutation, consideration, thoughtfulness'), +('一期一会', 'イチゴイチエ', 'once-in-a-lifetime encounter, one time, one meeting'), +('法会', 'ホウエ', 'Buddhist service (e.g. memorial service)'), +('絵画', 'カイガ', 'painting, picture'), +('絵画館', 'カイガカン', 'art or picture gallery'), +('絵', 'エ', 'picture, drawing, painting, sketch, image (TV, film, etc.), picture, footage'), +('絵の具', 'エノグ', 'paint, coloring materials, colors, colours'), +('油絵', 'アブラエ', 'oil painting'), +('巴', 'トモエ', 'tomoe, heraldic design composed of two or more interlocked comma-shaped figures'), +('外', 'ガイ', 'outside of, not covered by'), +('外国', 'ガイコク', 'foreign country'), +('除外', 'ジョガイ', 'exception, exclusion'), +('域外', 'イキガイ', 'outside the area'), +('外科', 'ゲカ', 'surgery, department of surgery (hospital, etc.)'), +('外科医', 'ゲカイ', 'surgeon'), +('角', 'カク', 'angle, square, cube, bishop, third degree (of the Japanese and Chinese pentatonic scale), Chinese "horn" constellation (one of the 28 mansions), jiao (monetary unit of China; one-tenth of a yuan)'), +('角度', 'カクド', 'angle'), +('三角', 'サンカク', 'triangle, triangular shape'), +('内角', 'ナイカク', 'interior angle, internal angle, inside corner'), +('家', 'カ', '-ist, -er'), +('家族', 'カゾク', 'family'), +('画家', 'ガカ', 'painter, artist'), +('実業家', 'ジツギョウカ', 'businessman, entrepreneur, captain of industry'), +('家', 'ケ', 'house (e.g. of Tokugawa), family'), +('家来', 'ケライ', 'retainer, retinue, servant'), +('分家', 'ブンケ', 'branch family, cadet family, establishing a branch family'), +('本家', 'ホンケ', 'head house (family), birthplace, originator'), +('活', 'カツ', 'living, life, judo art of resuscitation, action, activity'), +('活動', 'カツドウ', 'activity (of a person, organization, animal, volcano, etc.), action, movie (esp. during the silent movie period)'), +('生活', 'セイカツ', 'living, life (one''s daily existence), livelihood'), +('私生活', 'シセイカツ', 'private life'), +('楽', 'ガク', 'music, old Japanese court music, gagaku'), +('楽譜', 'ガクフ', 'score, sheet music'), +('邦楽', 'ホウガク', 'Japanese music (esp. traditional Japanese music)'), +('室内楽', 'シツナイガク', 'chamber music'), +('楽', 'ラク', 'comfort, ease, relief, (at) peace, relaxation, easy, simple, without trouble, without hardships, (economically) comfortable, raku pottery, sukha (happiness)'), +('楽園', 'ラクエン', 'paradise, Eden, Elysium'), +('極楽', 'ゴクラク', 'Sukhavati (Amitabha''s Pure Land), paradise, heaven on earth'), +('享楽', 'キョウラク', 'enjoyment, pleasure'), +('猿楽', 'サルガク', 'sarugaku (form of theatre popular in Japan during the 11th to 14th centuries), noh, fooling around'), +('丸', 'ガン', 'fishball, meatball, pill'), +('丸薬', 'ガンヤク', 'pill'), +('一丸', 'イチガン', 'one lump, one body, one group'), +('雷丸', 'ライガン', 'raigan (Omphalia lapidescens), parasitic fungus which grows on bamboo, used in Chinese medicine'), +('岩石', 'ガンセキ', 'rock'), +('頑丈', 'ガンジョウ', 'solid, firm, stout, burly, strong, sturdy'), +('砂岩', 'サガン', 'sandstone'), +('石灰岩', 'セッカイガン', 'limestone'), +('顔', 'カオ', 'face, visage, look, expression, countenance, honor, honour, face, influence, notoriety'), +('顔色', 'カオイロ', 'complexion, one''s colour, one''s color, countenance, expression, one''s face'), +('洗顔', 'センガン', 'face-washing'), +('美顔', 'ビガン', 'beautiful face'), +('汽車', 'キシャ', 'train (esp. long distance train), steam train'), +('汽船', 'キセン', 'steamship, steamboat, steamer'), +('記', 'キ', 'account, history, chronicle, annals, record, Kojiki, Records of Ancient Matters'), +('記憶', 'キオク', 'memory, recollection, remembrance, memory, storage'), +('暗記', 'アンキ', 'memorization, memorisation, learning by heart'), +('筆記', 'ヒッキ', '(taking) notes, copying'), +('間', 'カン', 'interval, period of time, among, between, inter-, good opportunity, chance, estrangement, discord, alienation, spy, secret agent'), +('間隔', 'カンカク', 'space, interval, space character, whitespace'), +('この間', 'コノアイダ', 'the other day, lately, recently, during this period, meanwhile, in the meantime'), +('年間', 'ネンカン', '(period of) a year, during the era (of)'), +('間', 'ケン', 'ken (6 shaku, approx. 1.818 m), counter used to number the gaps between pillars'), +('間数', 'ケンスウ', 'number of ken (in length or breadth)'), +('世間', 'セケン', 'world, society, people, the public'), +('六百間', 'ロッピャッケン', 'roppyakken (type of card game)'), +('魚雷', 'ギョライ', 'torpedo'), +('魚介類', 'ギョカイルイ', 'marine products, seafood, fish and shellfish'), +('鮮魚', 'センギョ', 'fresh fish'), +('稚魚', 'チギョ', 'fry, juvenile fish, fingerling'), +('帰宅', 'キタク', 'returning home'), +('帰還', 'キカン', 'repatriation, return, (electrical) feedback'), +('直帰', 'チョッキ', 'returning home directly'), +('社会復帰', 'シャカイフッキ', 'rehabilitation (in society)'), +('牛', 'ウシ', 'cattle (Bos taurus), cow, bull, ox, calf, beef, Chinese "Ox" constellation (one of the 28 mansions)'), +('妓夫', 'ギュウ', 'pimp, brothel tout'), +('雌牛', 'メウシ', 'cow, heifer'), +('肉牛', 'ニクギュウ', 'beef cattle'), +('教室', 'キョウシツ', 'classroom, lecture room, department (in a university), class, lessons, course, school (for a particular discipline), teaching establishment'), +('教会', 'キョウカイ', 'church, congregation'), +('布教', 'フキョウ', 'propagation (e.g. a religion), proselytizing, missionary work'), +('説教', 'セッキョウ', 'sermon, preaching, homily, remonstration, scolding, lecturing'), +('強', 'キョウ', 'a little over, a little more than, powerhouse, one of the biggest, one of the most powerful, upper (seismic intensity)'), +('強力', 'キョウリョク', 'powerful, strong'), +('勉強', 'ベンキョウ', 'study, diligence, working hard, experience, lesson (for the future), discount, price reduction'), +('補強', 'ホキョウ', 'reinforcement, strengthening'), +('強盗', 'ゴウトウ', 'robber, mugger, robbery, burglary'), +('強引', 'ゴウイン', 'overbearing, coercive, pushy, forcible, high-handed'), +('弓', 'キュウ', 'bow (and arrow), unit of distance to an archery target (approx. six feet), unit of distance for land surveying (approx. eight feet)'), +('弓道', 'キュウドウ', 'kyudo, Japanese archery'), +('洋弓', 'ヨウキュウ', '(Western) archery, Western-style bow'), +('鰓弓', 'サイキュウ', 'branchial arch, gill arch'), +('京', 'キョウ', 'imperial capital (esp. Kyoto), final word of an iroha poem, 10^16, 10,000,000,000,000,000, ten quadrillion'), +('京都', 'キョウト', 'Kyoto (city, prefecture)'), +('上京', 'ジョウキョウ', 'going (up) to the capital, going to Tokyo'), +('帰京', 'キキョウ', 'returning (home) to Tokyo, returning to the capital'), +('京', 'キョウ', 'imperial capital (esp. Kyoto), final word of an iroha poem, 10^16, 10,000,000,000,000,000, ten quadrillion'), +('京葉', 'ケイヨウ', 'Tokyo and Chiba'), +('英京', 'エイキョウ', 'British capital, London'), +('キン族', 'キンゾク', 'Kinh (people), Vietnamese (people)'), +('南京', 'ナンキン', 'Nanjing (China), Nanking, pumpkin, squash, Chinese, Southeast Asian, foreign, rare, precious, cute'), +('兄', 'ケイ', 'you, Mr, Mister, older brother, elder brother'), +('兄弟', 'キョウダイ', 'siblings, brothers and sisters, brothers, siblings-in-law, brothers-in-law, sisters-in-law, mate, friend'), +('従兄', 'ジュウケイ', 'cousin (older male)'), +('実兄', 'ジッケイ', 'biological older brother'), +('兄弟', 'キョウダイ', 'siblings, brothers and sisters, brothers, siblings-in-law, brothers-in-law, sisters-in-law, mate, friend'), +('兄妹', 'ケイマイ', 'older brother and younger sister'), +('近所', 'キンジョ', 'neighbourhood, neighborhood'), +('近代', 'キンダイ', 'present day, modern times, recent times, early modern period (in Japan, usu. from the Meiji Restoration until the end of World War II)'), +('近々', 'チカヂカ', 'soon, before long, shortly, in the near future, close (by), near, nearby'), +('接近', 'セッキン', 'getting closer, drawing nearer, approaching, being not much different, being near (age, skill, etc.), becoming close (i.e. friendly), becoming intimate'), +('近流', 'コンル', 'banishment (to a nearby province), the least severe of the three banishment punishments under the ritsuryō system'), +('形', 'ケイ', 'form, tense, adjective, i-adjective (in Japanese)'), +('形式', 'ケイシキ', 'form (as opposed to substance), format, form, style, manner, formality, form, mode, form, form (bilinear, quadratic, etc.)'), +('変形', 'ヘンケイ', 'transformation, variation, metamorphosis, modification, deformation, variety, deformity, monster'), +('図形', 'ズケイ', 'figure, shape, graphic'), +('形相', 'ギョウソウ', 'look (esp. an angry or upset look), expression'), +('奇形', 'キケイ', 'deformity, malformation, strange shape, unusual shape'), +('大仰', 'オオギョウ', 'exaggerated, overblown, pretentious'), +('言', 'ゲン', 'word, remark, statement'), +('言語', 'ゲンゴ', 'language'), +('一言', 'ヒトコト', 'single word, a few words, brief comment'), +('証言', 'ショウゲン', 'testimony, (verbal) evidence'), +('言語', 'ゲンゴ', 'language'), +('言語道断', 'ゴンゴドウダン', 'outrageous, preposterous, scandalous, inexcusable, absurd, execrable'), +('一言', 'ヒトコト', 'single word, a few words, brief comment'), +('助言', 'ジョゲン', 'advice, counsel, suggestion, tip, hint'), +('元', 'ゲン', 'unknown (e.g. in an equation), element (of a set), yuan (monetary unit of China), New Taiwan dollar, Yuan dynasty (of China; 1271-1368), Yüan dynasty, Mongol dynasty'), +('元気', 'ゲンキ', 'lively, full of spirit, energetic, vigorous, vital, spirited, healthy, well, fit, in good health'), +('還元', 'カンゲン', 'restoration, return, reduction, resolution, deoxidization, deoxidation'), +('復元', 'フクゲン', 'restoration (to original state or location), reconstruction, reversion'), +('元来', 'ガンライ', 'originally, essentially, naturally, by nature, really, actually, in the first place, to begin with'), +('元日', 'ガンジツ', 'New Year''s Day'), +('原', 'ゲン', 'original, primitive, primary, fundamental, raw'), +('原因', 'ゲンイン', 'cause, origin, source'), +('復元', 'フクゲン', 'restoration (to original state or location), reconstruction, reversion'), +('中原', 'チュウゲン', 'middle of a field, middle of a country, field of contest'), +('戸', 'コ', 'counter for houses, households, apartments, etc.'), +('戸籍', 'コセキ', 'family register, census'), +('一戸', 'イッコ', 'one house, household'), +('下戸', 'ゲコ', 'non-drinker, someone who cannot drink'), +('計', 'ケイ', 'plan, meter, measuring device, (in) total, total (of)'), +('計画', 'ケイカク', 'plan, project, schedule, scheme, program, programme'), +('設計', 'セッケイ', 'plan, design, layout'), +('合計', 'ゴウケイ', 'sum total, total amount'), +('故郷', 'フルサト', 'hometown, birthplace, native place, one''s old home, ruins, historic remains'), +('古典', 'コテン', 'classic (work, esp. book), the classics'), +('稽古', 'ケイコ', 'practice, practising, training, study'), +('最古', 'サイコ', 'the oldest, the earliest'), +('語', 'ゴ', 'word, language, speech'), +('語学', 'ゴガク', 'study of foreign languages, linguistics'), +('国語', 'コクゴ', 'national language, Japanese language (esp. as a school subject in Japan), one''s native language, mother tongue, native Japanese words (as opposed to loanwords and Chinese-derived words)'), +('主語', 'シュゴ', 'subject'), +('考', 'コウ', 'thought, report on one''s investigation into ..., deceased father'), +('考慮', 'コウリョ', 'consideration, taking into account'), +('選考', 'センコウ', 'selection, screening'), +('思考', 'シコウ', 'thought, consideration, thinking'), +('光景', 'コウケイ', 'scene, spectacle, sight, view'), +('光線', 'コウセン', 'beam, light ray'), +('観光', 'カンコウ', 'sightseeing, tourism'), +('日光', 'ニッコウ', 'sunlight, sunshine, sunbeams, Nikkō (city in Tochigi)'), +('午前', 'ゴゼン', 'morning, a.m.'), +('午後', 'ゴゴ', 'afternoon, p.m.'), +('端午', 'タンゴ', 'Boy''s Day celebration (May 5)'), +('亭午', 'テイゴ', 'noon'), +('交', 'コウ', 'association, fellowship, change (of season, year, etc.)'), +('交差点', 'コウサテン', 'crossing, intersection'), +('絶交', 'ゼッコウ', 'breaking off a relationship, permanent breach of friendship, rupture'), +('性交', 'セイコウ', 'sexual intercourse'), +('谷底平野', 'コクテイヘイヤ', 'valley plain'), +('渓谷', 'ケイコク', 'valley (with a river running through it), gorge, ravine, canyon'), +('盤谷', 'バンコク', 'Bangkok (Thailand)'), +('後', 'ゴ', 'after'), +('後生大事', 'ゴショウダイジ', 'with religious zeal, with utmost devotion, take great care of'), +('前後', 'ゼンゴ', 'front and rear, front and back, before and behind, back and forth, before and after, around, about, approximately, order, context, consequences, just when, around the time of, inversion, reversion, getting out of order, co-occurring, happening at the same time'), +('産後', 'サンゴ', 'postpartum, after childbirth'), +('後者', 'コウシャ', 'the latter'), +('後輩', 'コウハイ', 'junior (at work, school, etc.), younger people, younger student'), +('向後', 'コウゴ', 'hereafter'), +('先後', 'センゴ', 'before and after, earlier and later, order, sequence, occurring almost simultaneously, inversion (of order)'), +('今', 'コン', 'the current ..., this, today''s ...'), +('今月', 'コンゲツ', 'this month'), +('当今', 'トウコン', 'nowadays, these days, at present'), +('方今', 'ホウコン', 'present time, now, nowadays'), +('今古', 'キンコ', 'now and anciently'), +('今上', 'キンジョウ', 'His Majesty the Emperor, the present emperor, the reigning emperor'), +('国際', 'コクサイ', 'international, diplomatic intercourse'), +('国語', 'コクゴ', 'national language, Japanese language (esp. as a school subject in Japan), one''s native language, mother tongue, native Japanese words (as opposed to loanwords and Chinese-derived words)'), +('大国', 'タイコク', 'large country, major nation, great power, province of the highest rank (ritsuryō system)'), +('開国', 'カイコク', 'founding a country, opening of a country (e.g. Japan) to the world, ending (a policy of) national seclusion'), +('黒板', 'コクバン', 'blackboard'), +('黒色', 'クロイロ', 'black (colour, color)'), +('大黒', 'ダイコク', 'god of wealth, monk''s wife'), +('二黒', 'ジコク', 'second of nine traditional astrological signs (corresponding to Saturn and southwest)'), +('細', 'サイ', 'detail, details'), +('細菌', 'サイキン', 'bacterium, bacteria, germ'), +('些細', 'ササイ', 'trivial, trifling, slight, insignificant'), +('精細', 'セイサイ', 'fine, minute, detailed, meticulous, precise'), +('行', 'コウ', 'going, travelling, traveling, journey, trip, act, action, bank, counter for banks, counter for groups or parties of people, type of classical Chinese verse (usu. an epic from the Tang period onwards), shopping district (of similar merchants; in the Sui and Tang periods), merchants'' guild (in the Tang period)'), +('行動', 'コウドウ', 'action, conduct, behaviour, behavior, mobilization, mobilisation'), +('旅行', 'リョコウ', 'travel, trip, journey, excursion, tour'), +('実行', 'ジッコウ', 'execution (e.g. of a plan), carrying out, practice, action, implementation, fulfillment, realization'), +('行', 'ギョウ', 'line (of text), row, verse, carya (austerities), samskara (formations), semi-cursive style (of writing Chinese characters), running style'), +('行儀', 'ギョウギ', 'manners, behavior, behaviour'), +('施行', 'シコウ', 'putting in force (a law), putting into operation, putting into effect, enforcement, carrying out (a plan, policy, etc.), execution'), +('執行', 'シッコウ', 'execution, carrying out, performance, enforcement, exercise, service, conduct, execution, lead monk performing various tasks in a temple'), +('行脚', 'アンギャ', 'pilgrimage, walking tour, travelling (on foot)'), +('行火', 'アンカ', 'bed warmer, foot warmer'), +('黄色', 'キイロ', 'yellow, amber'), +('紅葉', 'コウヨウ', 'autumn colours, fall colors, leaves changing color (colour), leaves turning red, red leaves, leaves turning yellow, yellow leaves, (Japanese) maple (Acer japonicum), venison, layered colors in garments, resembling autumn colors'), +('玄黄', 'ゲンコウ', 'black and yellow silk (offered to gods), heaven and earth'), +('天地玄黄', 'テンチゲンコウ', 'Heaven is black and earth is yellow, heaven and earth'), +('黄色', 'キイロ', 'yellow, amber'), +('黄金', 'オウゴン', 'gold (Au), golden, prosperous, excellent, superb, money (esp. ōban coin), cash'), +('卵黄', 'ランオウ', 'egg yolk'), +('六フッ化硫黄', 'ロクフッカイオウ', 'sulfur hexafluoride'), +('高', 'コウ', 'high, high school'), +('高校', 'コウコウ', 'senior high school, high school'), +('最高', 'サイコウ', 'best, supreme, wonderful, finest, highest, maximum, most, uppermost, supreme'), +('中高', 'チュウコウ', 'middle and high school, medium and high (level)'), +('作', 'サク', 'work (e.g. of art), production, harvest, cultivation, farming, crop, yield, technique'), +('作文', 'サクブン', 'writing (an essay, prose, etc.), composition, formal writing with little real meaning'), +('製作', 'セイサク', 'manufacture, production'), +('制作', 'セイサク', 'work (film, book), production, creation, turning (something) out, development'), +('作', 'サク', 'work (e.g. of art), production, harvest, cultivation, farming, crop, yield, technique'), +('作文', 'サクブン', 'writing (an essay, prose, etc.), composition, formal writing with little real meaning'), +('操作', 'ソウサ', 'operation, management, handling, manipulating (to one''s benefit), manipulation, influencing'), +('動作', 'ドウサ', 'movement (of the body), action, motion, gesture, bearing, carriage, behaviour, behavior, demeanour, demeanor, operation (of a machine, software, etc.), running, working, functioning'), +('歳', 'サイ', '-years-old'), +('才', 'サイ', 'ability, gift, talent, aptitude, genius, sai, traditional unit of volume, approx. 1.8 ml'), +('何歳', 'ナンサイ', 'how old, what age'), +('三才', 'サンサイ', 'the three powers (heaven, earth and man), everything in the universe'), +('合', 'ゴウ', 'gō, traditional unit of volume, approx. 0.1804 litres, gō, traditional unit of area, approx 0.33 metres square, one-tenth of the way from the base to the summit of a mountain, conjunction, sum, total, synthesis (in dialectics), minor premise (in hetuvidya), counter for covered containers, counter for matches, battles, etc.'), +('合格', 'ゴウカク', 'passing (an exam), pass, success, passing grade, meeting (specifications, standards, etc.), passing (inspection), qualification, being found eligible'), +('会合', 'カイゴウ', 'meeting, assembly, gathering, association, conjunction'), +('総合', 'ソウゴウ', 'synthesis, combination, integration, putting together, synthesis, colligation'), +('合致', 'ガッチ', 'agreement, concurrence, conformance, compliance'), +('合唱', 'ガッショウ', 'singing together, singing in union, chorus, ensemble singing, choral singing, chorus'), +('合戦', 'カッセン', 'battle, fight, fighting, engagement, contest'), +('合羽', 'カッパ', 'raincoat'), +('広告', 'コウコク', 'advertisement, advertising, announcement, notice'), +('広大', 'コウダイ', 'vast, extensive, immense, huge, large, grand, magnificent'), +('曠々', 'コウコウ', 'extensive, spacious'), +('工', 'コウ', '(factory) worker'), +('工業', 'コウギョウ', '(manufacturing) industry'), +('着工', 'チャッコウ', 'starting (construction) work'), +('加工', 'カコウ', 'manufacturing, processing, treatment, machining'), +('工夫', 'クフウ', 'devising (a way), contriving, figuring out, coming up with, working out, inventing, device, design, idea, plan, invention, dedication to spiritual improvement (esp. through Zen meditation)'), +('工面', 'クメン', 'contrivance, managing (to raise money), one''s financial condition'), +('細工', 'サイク', 'work, workmanship, craftsmanship, handiwork, artifice, trick, device, tampering, doctoring'), +('寄せ木細工', 'ヨセギザイク', 'wooden mosaic work, parquetry, wooden mosaic (e.g. on a piece of furniture), marquetry, marqueterie'), +('具合', 'グアイ', 'condition, state, health, state (of health), way, manner, circumstance, luck, face, dignity, decency, propriety'), +('工面', 'クメン', 'contrivance, managing (to raise money), one''s financial condition'), +('公', 'コウ', 'public matter, governmental matter, prince, duke, lord, sir, familiar or derogatory suffix'), +('公園', 'コウエン', '(public) park'), +('王侯', 'オウコウ', 'king and princes, noble rank'), +('大公', 'タイコウ', 'archduke'), +('公家', 'クゲ', 'court noble, nobility, Imperial Court'), +('公廨', 'クガイ', 'government office'), +('夙', 'シュク', 'outcasts common around the Kyoto region from the Kamakura period to the Edo period'), +('社', 'シャ', 'company, association, society, regional Chinese god of the earth (or a village built in its honour), counter for companies, shrines, etc.'), +('社会', 'シャカイ', 'society, public, community, the world, social studies'), +('入社', 'ニュウシャ', 'joining a company, getting a job with a company, starting work at a company'), +('出社', 'シュッシャ', 'going to work (e.g. in the morning), coming to work'), +('春機', 'シュンキ', 'sexual desire'), +('春季', 'シュンキ', 'spring season'), +('昨春', 'サクシュン', 'last spring, the spring of last year'), +('売春', 'バイシュン', 'prostitution'), +('寺', 'ジ', 'counter for temples'), +('寺院', 'ジイン', 'Buddhist temple, religious building, church, cathedral, mosque'), +('国分寺', 'コクブンジ', 'state-supported provincial temple (Nara period)'), +('古寺', 'コジ', 'old temple'), +('算', 'サン', 'divining sticks, counting, calculation'), +('算数', 'サンスウ', 'arithmetic, calculation'), +('予算', 'ヨサン', 'estimate (of costs), budget'), +('計算', 'ケイサン', 'calculation, reckoning, count, forecast'), +('秋風', 'アキカゼ', 'autumn breeze, fall breeze'), +('秋晴れ', 'アキバレ', 'clear autumnal weather'), +('今秋', 'コンシュウ', 'this autumn, this fall, autumn of this year'), +('中秋', 'チュウシュウ', '15th day of the 8th lunar month, eighth month of the lunar calendar'), +('止血', 'シケツ', 'stopping of bleeding, stanching, hemostasis, haemostasis'), +('止音器', 'シオンキ', '(piano) damper'), +('禁止', 'キンシ', 'prohibition, inhibition, ban'), +('中止', 'チュウシ', 'interruption, discontinuance, suspension, stoppage, cancellation (of a planned event), calling off'), +('時', 'ジ', 'hour, o''clock, (specified) time, when ..., during ...'), +('時間', 'ジカン', 'time, hour, period, class, lesson'), +('零時', 'レイジ', 'twelve o''clock, midnight, noon'), +('平時', 'ヘイジ', 'peacetime, time of peace, ordinary times, normal times'), +('首', 'シュ', 'counter for songs and poems'), +('首級', 'シュキュウ', 'decapitated head of an enemy'), +('自首', 'ジシュ', 'surrender (to the authorities), giving oneself up, turning oneself in'), +('元首', 'ゲンシュ', 'sovereign, ruler, head of state'), +('室', 'シツ', 'room, wife (of someone of high rank), scabbard, Chinese "Encampment" constellation (one of the 28 mansions)'), +('室内', 'シツナイ', 'indoor, inside the room'), +('個室', 'コシツ', 'single (room), room for one, one''s own room, private room, private compartment, private room (in a restaurant, etc.), private dining room, (toilet) stall'), +('入室', 'ニュウシツ', 'entering a room, studying under a Buddhist teacher'), +('市', 'シ', 'city'), +('市民', 'シミン', 'citizen, citizenry, public, city inhabitant, townspeople, bourgeoisie, middle class'), +('同市', 'ドウシ', 'same city'), +('田園都市', 'デンエントシ', 'garden city'), +('弱', 'ジャク', 'little less than, slightly fewer than, just under, weakness, the weak, lower (seismic intensity)'), +('弱点', 'ジャクテン', 'weak point, weakness, shortcoming, defect, flaw, sore spot, tender spot'), +('衰弱', 'スイジャク', 'weakness, debility, breakdown, prostration'), +('薄弱', 'ハクジャク', 'feebleness, weakness, weak'), +('少', 'ショウ', 'small, little, few'), +('少輔', 'ショウ', 'assistant vice-minister (ritsuryō system, early Meiji period)'), +('減少', 'ゲンショウ', 'decrease, reduction, decline'), +('最少', 'サイショウ', 'fewest, least, smallest (number), lowest, minimum, youngest'), +('紙', 'シ', 'newspaper'), +('紙幣', 'シヘイ', 'paper money, note, bill'), +('表紙', 'ヒョウシ', 'cover (of a book, magazine, etc.), binding, to appear on the cover of a magazine'), +('製紙', 'セイシ', 'papermaking, paper manufacture'), +('思想', 'シソウ', 'thought, idea, ideology'), +('思考', 'シコウ', 'thought, consideration, thinking'), +('相思', 'ソウシ', 'mutual affection, mutual love'), +('哀思', 'アイシ', 'sad feeling'), +('書', 'ショ', 'book, document, calligraphy (esp. Chinese), penmanship, handwriting, letter, note'), +('書斎', 'ショサイ', 'study, library, den, home office, reading room'), +('読書', 'ドクショ', 'reading (a book)'), +('清書', 'セイショ', 'fair copy, clean copy'), +('姉', 'シ', 'honorific suffix used after the name of a woman of equal or higher status'), +('姉妹', 'シマイ', 'sisters'), +('従姉', 'ジュウシ', 'cousin (older female)'), +('兄姉', 'ケイシ', 'brother and sister'), +('場', 'ジョウ', 'place, spot, grounds, arena, stadium, range, course'), +('場外', 'ジョウガイ', 'outside the hall (or stadium, market, etc.), off the grounds, off the premises, off-track'), +('会場', 'カイジョウ', 'assembly hall, meeting place, venue, site, grounds'), +('入場', 'ニュウジョウ', 'entrance, admission, entering'), +('矢状', 'シジョウ', 'sagittal'), +('矢状縫合', 'シジョウホウゴウ', 'sagittal suture'), +('弓矢', 'ユミヤ', 'bow and arrow, weapon, arms'), +('嚆矢', 'コウシ', 'whistling arrow used to signal the start of battle, start (e.g. of a movement), beginning, dawn'), +('自', 'ジ', 'self-, from ..., this ... (in contrast to some other ...), aforementioned'), +('自転車', 'ジテンシャ', 'bicycle, bike'), +('出自', 'シュツジ', 'origin, birthplace, descent, lineage, ancestry, stock'), +('海自', 'カイジ', 'Maritime Self-Defense Force'), +('自然', 'シゼン', 'nature, natural, spontaneous, automatic, naturally, spontaneously, automatically'), +('自然科学', 'シゼンカガク', 'natural science'), +('己がじし', 'オノガジシ', 'each and every one, individually'), +('週', 'シュウ', 'week'), +('週間', 'シュウカン', 'week'), +('隔週', 'カクシュウ', 'every other week, every two weeks'), +('先々週', 'センセンシュウ', 'week before last'), +('食', 'ショク', 'food, foodstuff, eating, appetite, meal, portion'), +('食', 'ショク', 'eclipse (solar, lunar, etc.), occultation'), +('給食', 'キュウショク', 'provision of lunch (e.g. at office, school, etc.), providing a meal, lunch service'), +('外食', 'ガイショク', 'eating out, dining out'), +('食', 'ショク', 'food, foodstuff, eating, appetite, meal, portion'), +('食堂', 'ジキドウ', 'dining hall (at a temple)'), +('断食', 'ダンジキ', 'fasting, fast'), +('飲食', 'インショク', 'food and drink, eating and drinking'), +('新', 'シン', 'new, neo-, newness, novelty, Gregorian calendar, Xin dynasty (of China; 9-23 CE), Hsin dynasty'), +('新聞', 'シンブン', 'newspaper'), +('一新', 'イッシン', 'complete change, reform, restoration, remodeling, remodelling, renewal'), +('更新', 'コウシン', 'renewal, update, replacement, renovation, breaking (a record)'), +('図', 'ズ', 'drawing, picture, diagram, figure, illustration, chart, graph, sight, scene'), +('図書館', 'トショカン', 'library'), +('合図', 'アイズ', 'sign, signal, cue'), +('指図', 'サシズ', 'directions, instructions, orders, command'), +('図書館', 'トショカン', 'library'), +('図書', 'トショ', 'books'), +('不図', 'フト', 'suddenly, casually, accidentally, incidentally, unexpectedly, unintentionally'), +('意図', 'イト', 'intention, aim, design'), +('数', 'スウ', 'several, a number of, quantity, amount, counting, figures, numbers, number, numeral, figure, number, destiny, fate, course of events, trend'), +('数学', 'スウガク', 'mathematics'), +('算数', 'サンスウ', 'arithmetic, calculation'), +('日数', 'ニッスウ', 'number of days'), +('数', 'スウ', 'several, a number of, quantity, amount, counting, figures, numbers, number, numeral, figure, number, destiny, fate, course of events, trend'), +('数学', 'スウガク', 'mathematics'), +('数牌', 'シューパイ', 'suited tiles'), +('心', 'シン', 'heart, mind, spirit, vitality, inner strength, bottom of one''s heart, core (of one''s character), nature, centre, center, core, heart, heart (organ), Chinese "Heart" constellation (one of the 28 mansions), friend'), +('心臓', 'シンゾウ', 'heart, guts, nerve, cheek, gall, spine, central part'), +('安心', 'アンシン', 'relief, peace of mind'), +('決心', 'ケッシン', 'determination, resolution'), +('親', 'シン', 'intimacy, closeness, friendliness, close relative, pro- (e.g. pro-American)'), +('親切', 'シンセツ', 'kind, gentle, considerate, generous, friendly, nice'), +('ご両親', 'ゴリョウシン', '(someone else''s) parents, both parents'), +('近親', 'キンシン', 'near relative'), +('声明', 'セイメイ', 'declaration, statement, proclamation'), +('声楽', 'セイガク', 'vocal music'), +('第一声', 'ダイイッセイ', 'first words said (e.g. when meeting someone), first thing out of one''s mouth, first speech, inaugural address, first tone (in Chinese), level tone'), +('肉声', 'ニクセイ', 'natural voice (without a microphone)'), +('声', 'ショウ', 'voice, sound, tone (of Chinese character), tone mark, stress (in pronunciation), intonation, accent'), +('声点', 'ショウテン', 'tone mark, mark placed in one of the four corners of a Chinese character to indicate the tone'), +('高声', 'コウセイ', 'loud voice, high-pitched voice'), +('上声', 'ジョウショウ', 'rising tone (in Chinese), (of a Japanese accent) having a high, flat tone'), +('西', 'セイ', 'Spain, Spanish (language)'), +('西洋', 'セイヨウ', 'the West, the Occident, Western countries'), +('南西', 'ナンセイ', 'southwest'), +('北北西', 'ホクホクセイ', 'north-northwest'), +('西方', 'セイホウ', 'western direction, Western Pure Land (Amitabha''s Buddhist paradise), western fighter in a match (e.g. sumo)'), +('西遊', 'セイユウ', 'westward trip, trip to the West'), +('西瓜', 'スイカ', 'watermelon (Citrullus lanatus)'), +('西班牙', 'スペイン', 'Spain'), +('瑞西', 'スイス', 'Switzerland'), +('仏蘭西', 'フランス', 'France'), +('雪辱', 'セツジョク', 'vindication of honour, vindication of honor, making up for loss, revenge'), +('雪山', 'ユキヤマ', 'snowy mountain, permanently snow-covered mountain, pile of snow, Himalayas'), +('除雪', 'ジョセツ', 'snow removal'), +('積雪', 'セキセツ', 'fallen snow, snow cover'), +('色', 'ショク', 'counter for colours'), +('脚色', 'キャクショク', 'dramatization (e.g. of a novel), dramatisation, adaptation (for the stage or screen), embellishment (of the facts), exaggeration, dramatization, embroidery'), +('金色', 'キンイロ', 'gold (colour, color)'), +('色', 'シキ', 'rupa (form), visible objects (i.e. color and form)'), +('色彩', 'シキサイ', 'colour, color, hue, tints'), +('彩色', 'サイシキ', 'colouring, coloring, colouration, coloration, painting'), +('極彩色', 'ゴクサイシキ', 'richly colored, richly coloured'), +('晴天', 'セイテン', 'fine weather (i.e. little or no clouds), fair weather, clear weather, clear sky, fair skies'), +('晴耕雨読', 'セイコウウドク', 'working in the field in fine weather and reading at home in rainy weather, living in quiet retirement dividing time between work and intellectual pursuits'), +('画竜点睛', 'ガリョウテンセイ', 'finishing touches, last vital touch'), +('好晴', 'コウセイ', 'clear weather, good weather'), +('星', 'セイ', 'Chinese "star" constellation (one of the 28 mansions), Singapore'), +('星座', 'セイザ', 'constellation, astrological sign, star sign, zodiac sign'), +('衛星', 'エイセイ', '(natural) satellite, moon, (artificial) satellite'), +('恒星', 'コウセイ', 'star'), +('客星', 'カクセイ', 'celestial body seen only for a short time (e.g. comet)'), +('七星', 'シチセイ', 'the Big Dipper (asterism), the Plough, the Plow'), +('線', 'セン', 'line, stripe, stria, line (e.g. telephone line), wire, ray (e.g. X-ray), beam, line (e.g. of a railroad), track, route, lane, outline, contours, form, level, division, line (of action), position, approach, policy, principle, impression one leaves, air one gives off'), +('線路', 'センロ', 'railway track, railway line, railroad, railway, track, line'), +('脱線', 'ダッセン', 'derailment, digression, deviation'), +('曲線', 'キョクセン', 'curve'), +('切', 'セツ', 'eager, earnest, ardent, kind, keen, acute, OFF (on switch)'), +('切実', 'セツジツ', 'earnest, sincere, acute, keen, fervent, pressing, urgent, serious, severe, pertinent, appropriate'), +('大切', 'タイセツ', 'important, significant, serious, crucial, precious, valuable, dear, cherished, beloved, careful'), +('哀切', 'アイセツ', 'pathetic, plaintive'), +('切断', 'セツダン', 'cutting, severance, section, amputation, disconnection'), +('家財一切', 'カザイイッサイ', 'complete set of household goods'), +('費用一切', 'ヒヨウイッサイ', 'all expenses'), +('前', 'ゼン', 'last (i.e. immediately preceding), previous, ex-, former, pre- (e.g. premodern), before, before, earlier'), +('前者', 'ゼンシャ', 'the former'), +('中前', 'チュウゼン', 'front of center field, front of centre field'), +('風前', 'フウゼン', 'where the wind blows'), +('船便', 'フナビン', 'surface mail (ship), sea mail, ferry service, steamer service'), +('船舶', 'センパク', 'vessel, ship, shipping, seacraft'), +('乗船', 'ジョウセン', 'embarking (a ship), embarkation, boarding, ship (carrying someone)'), +('造船', 'ゾウセン', 'shipbuilding'), +('走', 'ソウ', 'run, race'), +('走行', 'ソウコウ', 'running (of a car, bus, etc.), traveling, travelling, running (of a program)'), +('ご馳走', 'ゴチソウ', 'treat (esp. food and drink), entertainment, treating someone (to a meal), taking someone to dinner, gorgeous dinner, feast, excellent food, special dish, delicacy'), +('逃走', 'トウソウ', 'flight, desertion, escape'), +('組織', 'ソシキ', 'organization, organisation, formation, structure, construction, setup, constitution, system (e.g. railroad, transport, party, etc.), tissue, texture (of a rock), weave (of a fabric)'), +('組閣', 'ソカク', 'formation of a cabinet'), +('労組', 'ロウソ', 'labor union, labour union, trade union'), +('改組', 'カイソ', 'reorganization, reorganisation, reshuffle'), +('多', 'タ', 'multi-'), +('多分', 'タブン', 'perhaps, probably, generous, many, much, great'), +('歌留多', 'カルタ', 'karuta (traditional Japanese playing cards; esp. hyakunin isshu karuta)'), +('過多', 'カタ', 'excess, surplus, superabundance'), +('体', 'タイ', 'body, physique, posture, shape, form, style, substance, identity, reality, field, counter for humanoid forms (e.g. dolls, statues, corpses, etc.), typeface, type'), +('体育', 'タイイク', 'physical education, PE, gym (class)'), +('形態', 'ケイタイ', 'form, shape, figure, morph'), +('抗体', 'コウタイ', 'antibody'), +('体', 'テイ', 'appearance, air, condition, state, form'), +('体裁', 'テイサイ', '(outward) appearance, (proper) format (e.g. of an essay), form, style, appearances, decency, show, display, lip-service, insincere words, glib talk'), +('身体', 'シンタイ', 'body, physical system, (the) person'), +('風体', 'フウテイ', 'appearance, look, dress'), +('太陽', 'タイヨウ', 'Sun'), +('太鼓', 'タイコ', 'drum'), +('太太', 'タイタイ', 'wife'), +('馬太', 'マタイ', 'Matthew (the Apostle)'), +('太陽', 'タイヨウ', 'Sun'), +('太鼓', 'タイコ', 'drum'), +('歌留多', 'カルタ', 'karuta (traditional Japanese playing cards; esp. hyakunin isshu karuta)'), +('丸太', 'マルタ', 'log, dace (Tribolodon hakonensis), test subject (of human experiments performed by Unit 731 during WWII), prostitute dressed as a Buddhist nun'), +('直', 'チョク', 'direct, in person, frankness, honesty, simplicity, cheerfulness, correctness, being straight, night duty, shift (e.g. in a factory)'), +('直接', 'チョクセツ', 'direct, immediate, personal, firsthand'), +('硬直', 'コウチョク', 'stiffening, rigidity, rigor, stiffness, ossification, petrification'), +('宿直', 'シュクチョク', 'night watch, night guard, night shift'), +('直', 'ジキ', 'soon, in a moment, before long, shortly, nearby, close, direct, spot transaction, cash transaction'), +('直に', 'ジキニ', 'immediately, right away, at once, soon, shortly, in a moment, before long, easily, readily'), +('高直', 'コウジキ', 'expensive, valuable'), +('バカ正直', 'バカショウジキ', 'honest to a fault, foolishly honest, naively honest'), +('直', 'ジカ', 'direct'), +('直に', 'ジカニ', 'directly, in person, firsthand'), +('電車', 'デンシャ', 'train, electric train'), +('電気', 'デンキ', 'electricity, (electric) light'), +('停電', 'テイデン', 'power outage, electricity outage, blackout, failure of electricity supply'), +('感電', 'カンデン', 'receiving an electric shock'), +('長', 'チョウ', 'head, chief, leader, elder, merit, strong point, superiority, major'), +('長期', 'チョウキ', 'long-term'), +('成長', 'セイチョウ', 'growth, development, growing up, becoming an adult, growth (of a company, the economy, etc.)'), +('生長', 'セイチョウ', 'growth (of a plant)'), +('当', 'トウ', 'this, our, the ... in question, the said ..., right, justice, fairness'), +('当時', 'トウジ', 'at that time, in those days'), +('担当', 'タントウ', 'being in charge (of an area of responsibility), being responsible (for a work role, etc.)'), +('該当', 'ガイトウ', 'corresponding to, being applicable to, being relevant to, coming under, falling under, fulfilling (requirements), meeting (conditions), qualifying for'), +('台', 'ダイ', 'stand, rack, table, bench, podium, pedestal, platform, stage, support, holder, rack, counter for machines, incl. vehicles, setting (e.g. in jewellery), level (e.g. price level), range (e.g. after physical units), period (of time, e.g. a decade of one''s life), elevated area, viewing platform, dish tray, meal, tall building, tower'), +('台所', 'ダイドコロ', 'kitchen, financial situation'), +('管区気象台', 'カンクキショウダイ', 'district meteorological observatory'), +('気象台', 'キショウダイ', 'meteorological observatory'), +('台', 'タイ', 'Taiwan'), +('台風', 'タイフウ', 'typhoon, hurricane'), +('舞台', 'ブタイ', 'stage (of a theatre, concert hall, etc.), (stage) performance, setting (of a story), scene, sphere (of activity), stage (e.g. political stage), scene, arena, world'), +('屋台', 'ヤタイ', 'cart (esp. a food cart), stall, stand, festival float, portable shrine dedicated to a god and shaped like a house, dancing platform, stage prop fashioned after a large building, framework (of a house, etc.), house (esp. a small and miserable house)'), +('朝', 'チョウ', 'dynasty, reign, period, epoch, age, court, North Korea'), +('朝刊', 'チョウカン', 'morning newspaper'), +('チューダー朝', 'チューダーチョウ', 'Tudor dynasty (of England; 1485-1603)'), +('本朝', 'ホンチョウ', 'this land, our country, Imperial Court'), +('地', 'チ', 'earth, ground, land, soil, place, territory, bottom (of a package, book, etc.), earth (one of the five elements)'), +('地下鉄', 'チカテツ', 'underground train, subway'), +('位置', 'イチ', 'place, position, location, position, standing, status, situation'), +('産地', 'サンチ', 'producing area'), +('地', 'ジ', 'ground, land, earth, soil, the region in question, the local area, skin, texture, fabric, material, weave, base, background, one''s true nature, narrative (i.e. descriptive part of a story), real life, actuality, captured territory (in the game of go), noh chorus, accompaniment music (in Japanese dance), basic phrase (in Japanese music; usu. repetitive), base part (of multiple shamisens)'), +('地震', 'ジシン', 'earthquake'), +('下地', 'シタジ', 'groundwork, foundation, inclination, aptitude, elementary knowledge (of), grounding (in), undercoat, first coat, soy sauce'), +('築地', 'ツイジ', 'mud wall with a roof, roofed mud wall'), +('知', 'チ', 'wisdom, jnana (higher knowledge)'), +('知恵', 'チエ', 'wisdom, wit, sagacity, sense, intelligence, prajna (insight leading to enlightenment)'), +('承知', 'ショウチ', 'knowledge, awareness, acceptance, consent, assent, agreement, compliance, acknowledgment, acknowledgement, forgiving, pardoning, excusing'), +('通知', 'ツウチ', 'notice, notification, report, posting, notification (on a smartphone, PC, etc.)'), +('頭', 'トウ', 'counter for large animals (e.g. head of cattle), counter for insects in a collection, counter for helmets, masks, etc.'), +('頭取', 'トウドリ', '(bank) president, greenroom manager (in a theater)'), +('先頭', 'セントウ', 'head (of a line, group, etc.), front, lead, forefront, vanguard'), +('没頭', 'ボットウ', 'immersing oneself in, being absorbed in, devoting oneself to, giving oneself up entirely to'), +('頭', 'ズ', 'head'), +('頭痛', 'ズツウ', 'headache'), +('馬頭', 'メズ', 'horse-headed demon (in hell)'), +('竜頭', 'リュウズ', 'crown (of a watch), stem, cannon (of a bell), something in the shape of a dragon''s head (esp. a helmet crest)'), +('頭', 'トウ', 'counter for large animals (e.g. head of cattle), counter for insects in a collection, counter for helmets, masks, etc.'), +('頭取', 'トウドリ', '(bank) president, greenroom manager (in a theater)'), +('鳥兜', 'トリカブト', 'aconite (esp. species Aconitum japonicum), wolfsbane, monkshood, traditional bugaku hat'), +('同', 'ドウ', 'the same, the said, likewise'), +('同一', 'ドウイツ', 'identical, same, one and the same, equal, fair, equal treatment, without discrimination'), +('共同', 'キョウドウ', 'cooperation, collaboration, association, partnership, (acting in) unison, community, communal use, common possession, sharing'), +('混同', 'コンドウ', 'confusion, mixing, merger'), +('昼間', 'ヒルマ', 'daytime, during the day, time from sunrise until sunset, diurnal period'), +('昼食', 'チュウショク', 'lunch, midday meal, food served at a tea party (tea ceremony)'), +('炎昼', 'エンチュウ', 'hot summer early afternoon'), +('春昼', 'シュンチュウ', 'spring day (which seems long and quiet)'), +('鳥類', 'チョウルイ', 'birds'), +('鶏肉', 'トリニク', 'chicken meat, fowl, poultry, bird meat'), +('愛鳥', 'アイチョウ', 'pet bird'), +('海鳥', 'ウミドリ', 'sea bird'), +('点', 'テン', 'dot, spot, point, speck, mark, mark (in an exam, etc.), grade, score, points, point (in a game), score, goal, run, point, point, aspect, matter, detail, part, respect, way, viewpoint, (punctuation) mark (e.g. comma, period, decimal point), dot, "dot" stroke (in a Chinese character), counter for points, marks, goals, etc., counter for goods, items, articles of clothing, works of art, etc.'), +('点数', 'テンスウ', 'marks, points, score, grade, runs (baseball), number of items, number of articles'), +('焦点', 'ショウテン', 'focus, focal point, focus (of attention, a discussion, etc.), point at issue, central point, focus'), +('採点', 'サイテン', 'marking, grading, scoring'), +('通', 'ツウ', 'authority, expert, connoisseur, well-informed person, counter for messages, letters, notes, documents, etc., understanding (esp. of male-female relations), tact, insight, supernatural powers, magical powers'), +('通過', 'ツウカ', 'passing through (a tunnel, station, town, etc.), passing by (e.g. of a typhoon), transit, passage (of a bill, e.g. through parliament), carriage, passing (an examination, inspection, etc.), clearing'), +('共通', 'キョウツウ', 'common, shared, mutual, to be common (to), to be shared (by), -wide'), +('開通', 'カイツウ', 'opening (of a new road, railway, etc.), going into operation (e.g. telephone communication), beginning services, reopening (e.g. of a road to traffic), resumption of services'), +('通', 'ツウ', 'authority, expert, connoisseur, well-informed person, counter for messages, letters, notes, documents, etc., understanding (esp. of male-female relations), tact, insight, supernatural powers, magical powers'), +('通過', 'ツウカ', 'passing through (a tunnel, station, town, etc.), passing by (e.g. of a typhoon), transit, passage (of a bill, e.g. through parliament), carriage, passing (an examination, inspection, etc.), clearing'), +('答案', 'トウアン', 'examination paper, examination script, answer sheet, answer (to an exam question)'), +('答申', 'トウシン', 'report, reply, findings'), +('解答', 'カイトウ', 'answer, solution'), +('回答', 'カイトウ', 'reply, answer'), +('店', 'テン', 'store, shop, restaurant'), +('店員', 'テンイン', 'employee (of a store), shop assistant, clerk, salesperson'), +('来店', 'ライテン', 'coming to a store (restaurant, bar, shop, etc.)'), +('開店', 'カイテン', 'opening a new shop, opening a shop (for the day)'), +('内', 'ナイ', 'inside, within'), +('内容', 'ナイヨウ', 'contents, content, substance, matter, detail, import'), +('家庭内', 'カテイナイ', 'within the family, in the home, domestic'), +('校内', 'コウナイ', 'within a school'), +('内裏', 'ダイリ', 'imperial palace, festival dolls representing the emperor and the empress'), +('内府', 'ナイフ', 'Minister of the Interior (669-1868 CE), Lord Keeper of the Privy Seal (1885-1945 CE)'), +('境内', 'ケイダイ', 'grounds (esp. of shrines and temples), compound, churchyard, precincts'), +('海内', 'カイダイ', 'the whole country'), +('弟', 'オトウト', 'younger brother, little brother, kid brother, brother-in-law (spouse''s younger brother or younger sister''s husband), pupil, apprentice'), +('弟子', 'デシ', 'pupil, disciple, adherent, follower, apprentice, young person, teacher''s student-helper'), +('愚弟', 'グテイ', '(one''s) younger brother, foolish younger brother'), +('子弟', 'シテイ', 'children, sons, children and younger brothers, young people'), +('親兄弟', 'オヤキョウダイ', 'parents and siblings, one''s relatives'), +('姉弟', 'シテイ', 'older sister and younger brother'), +('弟子', 'デシ', 'pupil, disciple, adherent, follower, apprentice, young person, teacher''s student-helper'), +('弟子入り', 'デシイリ', 'becoming a pupil (of), becoming an apprentice'), +('池魚の殃', 'チギョノワザワイ', 'collateral damage, getting embroiled in someone else''s dispute, having a fire spread to one''s own house'), +('池沼', 'チショウ', 'ponds and swamps, retard, mentally disabled person'), +('蓄電池', 'チクデンチ', 'storage battery'), +('給水池', 'キュウスイチ', 'reservoir'), +('道', 'ドウ', 'road, path, street, route, way, set of practices, rules for conducting oneself, Buddhist teachings, Taoism, modern administrative region of Japan (Hokkaido), historical administrative region of Japan (Tokaido, Tosando, etc.), province (Tang-era administrative region of China), province (modern administrative region of Korea)'), +('道具', 'ドウグ', 'tool, implement, instrument, utensil, apparatus, device, means, furniture'), +('歩道', 'ホドウ', 'footpath, walkway, sidewalk, pavement'), +('報道', 'ホウドウ', 'report (of news), reporting, news, information, (media) coverage'), +('有道', 'ユウドウ', 'being good, being virtuous, virtuous person'), +('不道', 'フドウ', 'inhuman, immoral, unreasonable, outrageous, wicked, barbarity (one of the eight unpardonable crimes, incl. killing three people in one family, or dismembering a corpse)'), +('読書', 'ドクショ', 'reading (a book)'), +('読者', 'ドクシャ', 'reader'), +('朗読', 'ロウドク', 'reading aloud, recitation'), +('購読', 'コウドク', 'buying and reading (book, magazine, etc.), subscribing (incl. free subscriptions), taking (e.g. newspaper)'), +('読書', 'ドクショ', 'reading (a book)'), +('読本', 'トクホン', 'reading-book, reader, guidebook, manual, textbook (esp. a pre-war elementary school Japanese language textbook)'), +('読点', 'トウテン', 'comma'), +('句読', 'クトウ', 'breaks and pauses (in a sentence), punctuation, way of reading (esp. kanbun)'), +('吏読', 'リト', 'Idu (archaic writing system that uses Chinese characters to represent the Korean language)'), +('冬季', 'トウキ', '(season of) winter'), +('冬期', 'トウキ', 'winter, wintertime, winter term'), +('越冬', 'エットウ', 'passing the winter, hibernation'), +('春夏秋冬', 'シュンカシュウトウ', 'spring, summer, autumn (fall) and winter, the four seasons'), +('刀', 'カタナ', 'sword (esp. Japanese single-edged), katana, scalpel, chisel, burin, graver, knife money (knife-shaped commodity money used in ancient China)'), +('刀匠', 'トウショウ', 'swordsmith'), +('小刀', 'コガタナ', '(small) knife, short sword, small sword'), +('太刀', 'タチ', 'long sword (esp. the tachi, worn on the hip edge down by samurai), large sword, straight single-edged Japanese sword (from the mid-Heian period or earlier), guandao, Chinese glaive'), +('東洋', 'トウヨウ', 'the East, the Orient, (East) Asia, Japan'), +('東西', 'トウザイ', 'east and west, Orient and Occident, East and West, ladies and gentlemen!, your attention, please!, roll-up, roll-up'), +('関東', 'カントウ', 'Kantō, region consisting of Tokyo and surrounding prefectures, Kantō, north-eastern half of Japan (during the feudal era)'), +('北北東', 'ホクホクトウ', 'north-northeast, north-north-east'), +('茶', 'チャ', 'tea, tea plant (Camellia sinensis), tea preparation, making tea, brown, mockery'), +('茶色', 'チャイロ', 'light brown, tawny'), +('こげ茶', 'コゲチャ', 'dark brown, olive brown'), +('抹茶', 'マッチャ', 'matcha, powdered green tea'), +('茶道', 'サドウ', 'tea ceremony, Way of Tea, sadō'), +('茶飯事', 'サハンジ', 'commonly occurring thing, commonplace event, bread and butter item'), +('喫茶', 'キッサ', 'tea drinking, teahouse, tearoom, coffee lounge, coffee shop, (rather formal) cafe'), +('歌声喫茶', 'ウタゴエキッサ', 'utagoe coffeehouse, sing-along tearoom, coffee shop in which customers can sing in chorus accompanied by a band'), +('南', 'ナン', 'south wind tile, winning hand with a pung (or kong) of south wind tiles'), +('南極', 'ナンキョク', 'South Pole, the Antarctic, Antarctica'), +('指南', 'シナン', 'instruction (in martial arts, performance, etc.), teaching, coaching'), +('東南', 'トウナン', 'south-east'), +('南', 'ナン', 'south wind tile, winning hand with a pung (or kong) of south wind tiles'), +('南極', 'ナンキョク', 'South Pole, the Antarctic, Antarctica'), +('肉', 'ニク', 'flesh, meat, flesh (of a fruit), pulp, the physical body (as opposed to the spirit), flesh, thickness, content, substance, flesh, ink pad'), +('肉親', 'ニクシン', 'blood relationship, blood relative'), +('食肉', 'ショクニク', 'meat (for consumption)'), +('中肉', 'チュウニク', 'medium build, meat of medium quality'), +('馬鹿', 'バカ', 'idiot, moron, fool, trivial matter, folly, absurdity, stupid, foolish, dull, absurd, ridiculous, fervent enthusiast, nut, person singularly obsessed with something, Mactra chinensis (species of trough shell)'), +('馬鹿らしい', 'バカラシイ', 'absurd, foolish, stupid, silly, nonsense, ludicrous, preposterous, laughable, ridiculous'), +('出馬', 'シュツバ', 'running (for election), coming forward as a candidate, going on horseback (to a battle), going in person, letting out a horse, taking out a horse'), +('玖馬', 'キューバ', 'Cuba'), +('売買', 'バイバイ', 'trade, buying and selling, trafficking (e.g. of humans, arms, drugs), dealing'), +('売店', 'バイテン', 'stand, stall, booth, kiosk, store'), +('販売', 'ハンバイ', 'sales, selling, marketing'), +('発売', 'ハツバイ', 'sale, offering for sale, release (for sale), launch (product)'), +('買収', 'バイシュウ', 'acquisition (esp. corporate), buy-out, takeover, purchase, bribery, buying off, corruption'), +('買収計画', 'バイシュウケイカク', 'purchasing plan, acquisition plan'), +('売買', 'バイバイ', 'trade, buying and selling, trafficking (e.g. of humans, arms, drugs), dealing'), +('人身売買', 'ジンシンバイバイ', 'slave trade, white-slave trade, human trafficking'), +('父母', 'フボ', 'father and mother, parents'), +('父子', 'フシ', 'father and child, father and son, father and daughter'), +('祖父', 'ソフ', 'grandfather, old man, kyogen mask used for the role of an old man'), +('叔父', 'オジ', 'uncle'), +('分', 'ブン', 'part, portion, share, amount, worth (as in "two days'' worth"), enough (for), one''s means, one''s place, one''s lot, one''s social position, one''s duty, one''s part, condition, state (of affairs), extent, rate (as in "at this rate"), in proportion to, just as much as, to the same degree, content (e.g. alcohol), percentage, equivalent to (e.g. an old brother)'), +('分析', 'ブンセキ', 'analysis'), +('区分', 'クブン', 'division, section, demarcation, partition, segmentation, subdivision, (traffic) lane, compartment, classification, sorting'), +('等分', 'トウブン', 'division into equal parts, equal parts'), +('分', 'フン', 'minute (unit of time), fun (one tenth of a monme, 5.787 grains)'), +('分別', 'フンベツ', 'discretion, prudence, good sense, judgement, judgment, wisdom, discernment'), +('毎分', 'マイフン', 'every minute, per minute'), +('壊変毎分', 'カイヘンマイフン', 'disintegration per minute, dpm'), +('分', 'ブ', 'one-tenth, one percent (one-tenth of a wari), 3 mm (one-tenth of a sun), 2.4 mm (one-tenth of a mon, a traditional unit used to measure shoe sizes), 0.1 degree (one-tenth of a do, used to measure body temperature on any temperature scale), one-quarter of a ryō (obsolete unit of currency), thickness, advantageous circumstances, one-tenth of a monme of silver'), +('分', 'ブン', 'part, portion, share, amount, worth (as in "two days'' worth"), enough (for), one''s means, one''s place, one''s lot, one''s social position, one''s duty, one''s part, condition, state (of affairs), extent, rate (as in "at this rate"), in proportion to, just as much as, to the same degree, content (e.g. alcohol), percentage, equivalent to (e.g. an old brother)'), +('一分', 'イチブ', 'one tenth, one hundredth, one percent, one tenth of a sun, one quarter ryō (an old coin)'), +('節分', 'セツブン', 'setsubun, last day of winter in the traditional Japanese calendar (usu. February 3 or 4), day of the bean scattering ceremony, last day of any season (according to the traditional Japanese calendar)'), +('半', 'ハン', 'half, semi-, half-past, odd number, han (unit of land area, approx. 595.8 m^2)'), +('半端', 'ハンパ', 'remnant, fragment, incomplete set, incompleteness, fraction, odd sum, halfway, half-hearted, perfunctory, irresponsible, foolish'), +('四畳半', 'ヨジョウハン', 'four and a half tatami mats, four-and-a-half-mat room, small room esp. for assignations'), +('過半', 'カハン', 'the greater part'), +('麦芽', 'バクガ', 'malt'), +('麦価', 'バクカ', 'price of wheat'), +('精麦', 'セイバク', 'polished barley or wheat'), +('米麦', 'ベイバク', 'rice and barley, corn'), +('聞見', 'ブンケン', 'information, experience, knowledge, observation'), +('聞香', 'ブンコウ', 'smelling incense, savoring incense, distinguishing incense by smell, incense-smelling party'), +('見聞', 'ケンブン', 'information, experience, knowledge, observation'), +('スポーツ新聞', 'スポーツシンブン', 'sports newspaper'), +('聞見', 'ブンケン', 'information, experience, knowledge, observation'), +('聞香', 'ブンコウ', 'smelling incense, savoring incense, distinguishing incense by smell, incense-smelling party'), +('見聞', 'ケンブン', 'information, experience, knowledge, observation'), +('奏聞', 'ソウモン', 'reporting to the Emperor'), +('米', 'ベイ', '(United States of) America, USA'), +('米価', 'ベイカ', 'rice price'), +('渡米', 'トベイ', 'going to the United States'), +('英米', 'エイベイ', 'the United Kingdom and the United States, Britain and America, Anglo-American'), +('精米', 'セイマイ', 'rice polishing, polished rice'), +('白米', 'ハクマイ', 'polished rice, (uncooked) white rice'), +('母校', 'ボコウ', 'alma mater'), +('母国', 'ボコク', 'one''s home country, one''s homeland'), +('祖母', 'ソボ', 'grandmother'), +('海月', 'クラゲ', 'jellyfish, medusa'), +('方', 'ホウ', 'direction, way, side, area (in a particular direction), side (of an argument, etc.), one''s part, type, category, field (of study, etc.), indicates one side of a comparison, way, method, manner, means, length (of each side of a square)'), +('方向', 'ホウコウ', 'direction, orientation, bearing, way, course (e.g. of action)'), +('地方', 'チホウ', 'district, region, area, locality, the country, countryside, the provinces, rural area, civilian society'), +('処方', 'ショホウ', 'prescription, formulation, formula, recipe'), +('番', 'バン', 'number (in a series), (one''s) turn, watch, guard, lookout, rank, standing, position, bout, match, pieces (in a collection)'), +('番号', 'バンゴウ', 'number, series of digits'), +('当番', 'トウバン', 'being on duty, person on duty, one''s turn'), +('119番', 'ヒャクジュウキュウバン', '119 (ambulance and fire brigade emergency telephone number in Japan)'), +('歩', 'ホ', 'step, stride, counter for steps'), +('歩道', 'ホドウ', 'footpath, walkway, sidewalk, pavement'), +('譲歩', 'ジョウホ', 'concession, conciliation, compromise'), +('遊歩', 'ユウホ', 'walk, promenade'), +('歩', 'ブ', 'bu, traditional unit of area, approx. 3.31 square metres, commission, percentage, exactly, precisely'), +('歩留まり', 'ブドマリ', 'yield, yield rate'), +('町歩', 'チョウブ', 'hectare (2.471 acres)'), +('町段畝歩', 'チョウタンセブ', 'units of square measure (for rice fields, forests, etc.)'), +('歩', 'フ', 'pawn'), +('歩兵', 'フヒョウ', 'pawn'), +('敵歩', 'テキフ', 'opponents pawn'), +('里', 'リ', 'Japanese league, ri, old Japanese unit of distance, approx. 3.927 km or 2.44 miles, neighbourhood (under the ritsuryō system; orig. of 50 homes), unit of area (approx. 654 m by 654 m)'), +('俚言', 'リゲン', 'dialect, language of the common people, colloquial language, slang'), +('故郷', 'フルサト', 'hometown, birthplace, native place, one''s old home, ruins, historic remains'), +('郷里', 'キョウリ', 'hometown, birthplace'), +('理', 'リ', 'reason, principle, logic, general principle (as opposed to individual concrete phenomenon), (in neo-Confucianism) the underlying principles of the cosmos'), +('理由', 'リユウ', 'reason, pretext, motive'), +('料理', 'リョウリ', 'cooking, cookery, cuisine, meal, food, dish, item on a menu, (easily) dealing with something, handling (well)'), +('代理', 'ダイリ', 'representation, agency, proxy, proxy, agent, representative, deputy, substitute, surrogate, stand-in'), +('来', 'ライ', 'next (year, spring, etc.), coming, since (e.g. last month), for (e.g. 20 years)'), +('来月', 'ライゲツ', 'next month'), +('未来', 'ミライ', 'the (distant) future, future tense, the world to come'), +('出来', 'シュッタイ', 'occurrence, happening, taking place, completion'), +('出来', 'シュッタイ', 'occurrence, happening, taking place, completion'), +('妹君', 'イモウトギミ', '(younger) sister'), +('義妹', 'ギマイ', 'sister-in-law (spouse''s younger sister or younger brother''s wife), younger stepsister, younger adopted sister, non-blood-related younger sister'), +('弟妹', 'テイマイ', 'younger brother and sister'), +('万', 'マン', '10,000, ten thousand, myriad, everything, all, various'), +('万年筆', 'マンネンヒツ', 'fountain pen'), +('億万', 'オクマン', 'millions and millions'), +('永万', 'エイマン', 'Eiman era (1165.6.5-1166.8.27)'), +('万', 'バン', 'completely, absolutely, totally'), +('万一', 'マンイチ', '(unlikely event of) emergency, the worst(-case scenario), 10000 to 1, (if) by some chance, by some possibility, in the unlikely event that'), +('千万', 'センバン', 'exceedingly, extremely, very many, indeed'), +('奇怪千万', 'キカイセンバン', 'very strange (mysterious, weird), bizarre, monstrous, outrageous'), +('夜', 'ヤ', 'counter for nights'), +('夜間', 'ヤカン', 'night, nighttime'), +('徹夜', 'テツヤ', 'staying up all night'), +('同夜', 'ドウヤ', 'the same night, that night'), +('用', 'ヨウ', 'business, task, errand, engagement, use, purpose, for the use of ..., used for ..., made for ..., call of nature, excretion'), +('用意', 'ヨウイ', 'preparation, arrangements, provision, getting ready, laying out (e.g. a meal)'), +('利用', 'リヨウ', 'use, utilization, utilisation, application'), +('使用', 'シヨウ', 'use, application, employment, utilization, utilisation'), +('鳴管', 'メイカン', 'syrinx (part of a bird), lower larynx'), +('鳴禽', 'メイキン', 'songbird, oscine'), +('共鳴', 'キョウメイ', 'resonance, sympathy (with a view, idea, etc.)'), +('百家争鳴', 'ヒャッカソウメイ', 'let a hundred schools of thought contend'), +('北上', 'ホクジョウ', 'going north'), +('北欧', 'ホクオウ', 'Northern Europe, Nordic countries, Scandinavia'), +('極北', 'キョクホク', 'extreme north, North Pole'), +('西北', 'セイホク', 'north-west'), +('門', 'モン', 'gate, branch of learning based on the teachings of a single master, division, phylum, counter for cannons'), +('門戸', 'モンコ', 'door'), +('入門', 'ニュウモン', 'becoming a pupil (of), becoming a disciple, entering an institution, beginning training, introduction (to), primer, guide'), +('宗門', 'シュウモン', '(religious) denomination, sect'), +('話', 'ワ', 'counter for stories, episodes of TV series, etc.'), +('話題', 'ワダイ', 'topic, subject, much talked about, topical, in the news, hot'), +('会話', 'カイワ', 'conversation, talk, chat'), +('世話', 'セワ', 'care, looking after, help, assistance, aid, trouble, bother, good offices, recommendation, introduction, everyday life, everyday affairs, everyday language, sewamono (Edo-period drama about contemporary life)'), +('毛', 'モウ', 'one-thousandth, 0.03 mm (one-thousandth of a sun), 0.01 percent (one-thousandth of a wari), 3.75 milligrams (one-thousandth of a monme), old monetary unit (0.0001 yen)'), +('毛布', 'モウフ', 'blanket'), +('不毛', 'フモウ', 'barren, sterile, infertile, unproductive (e.g. discussion), fruitless'), +('再生毛', 'サイセイモウ', 'recycled wool, reclaimed wool'), +('野', 'ノ', 'plain, field, hidden (structural) member, wild, lacking a political post'), +('野菜', 'ヤサイ', 'vegetable'), +('広野', 'コウヤ', 'wide plain'), +('内野', 'ナイヤ', 'infield, diamond'), +('風', 'フウ', 'method, manner, way, style, appearance, air, tendency, folk song (genre of the Shi Jing), wind (one of the five elements)'), +('風邪', 'カゼ', '(common) cold, influenza, flu, ague, inflammatory respiratory system illness (in general)'), +('和風', 'ワフウ', 'Japanese style, light wind, moderate breeze'), +('洋風', 'ヨウフウ', 'Western style'), +('振り', 'フリ', 'swing, shake, wave, swinging, appearance, behaviour, pretence (pretense), show, pretending (to), going to restaurant, hotel etc. without a reservation or introduction, move (dance), postures, lead in (e.g. to a running joke, asking a question), lead up, unsewn part of a hanging sleeve on a traditional Japanese woman''s garment, counter for swords, blades, etc., not wearing underwear or pants'), +('風', 'フウ', 'method, manner, way, style, appearance, air, tendency, folk song (genre of the Shi Jing), wind (one of the five elements)'), +('中風', 'チュウフウ', 'palsy, paralysis'), +('破風', 'ハフ', 'gable'), +('友', 'ユウ', 'friend, affection (for siblings)'), +('友情', 'ユウジョウ', 'friendship, fellowship, camaraderie'), +('親友', 'シンユウ', 'close friend, bosom friend, buddy, crony, chum'), +('盟友', 'メイユウ', 'sworn friend'), +('明', 'メイ', 'brightness, discernment, insight, an eye (for), eyesight, vision, nth year in the Meiji era (1868.9.8-1912.7.30)'), +('明確', 'メイカク', 'clear, precise, definite, distinct'), +('説明', 'セツメイ', 'explanation, exposition, description, account, caption, legend'), +('証明', 'ショウメイ', 'proof, testimony, demonstration, verification, certification'), +('明', 'ミョウ', 'vidya (wisdom), mantra, the coming (July 4, etc.)'), +('明日', 'アシタ', 'tomorrow, near future'), +('光明', 'コウミョウ', 'bright light, hope, bright future, light emanating from a buddha or bodhisattva, symbolizing their wisdom and compassion'), +('内明', 'ナイミョウ', 'adhyatmavidya (inner studies, ancient Indian philosophy)'), +('明', 'ミン', 'Ming dynasty (of China; 1368-1644)'), +('明楽', 'ミンガク', 'Ming-era Chinese music (popularized in Japan during the early 17th century)'), +('曜日', 'ヨウビ', 'day of the week'), +('曜霊', 'ヨウレイ', 'the sun'), +('晃曜', 'コウヨウ', 'dazzling brightness'), +('宿曜', 'スクヨウ', 'form of astrology based on the Xiuyaojing'), +('毎', 'マイ', 'every (usu. with events, e.g. every weekend), each'), +('毎朝', 'マイアサ', 'every morning'), +('毎々', 'マイマイ', 'each time, frequently, always'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(899, '引'), +(900, '引'), +(901, '引'), +(902, '引'), +(903, '雲'), +(904, '雲'), +(905, '雲'), +(906, '雲'), +(907, '園'), +(908, '園'), +(909, '園'), +(910, '園'), +(911, '何'), +(912, '何'), +(913, '羽'), +(914, '羽'), +(915, '羽'), +(916, '羽'), +(917, '科'), +(918, '科'), +(919, '科'), +(920, '科'), +(921, '夏'), +(922, '夏'), +(923, '夏'), +(924, '夏'), +(925, '夏'), +(926, '夏'), +(927, '夏'), +(928, '夏'), +(929, '画'), +(930, '画'), +(931, '画'), +(932, '画'), +(933, '画'), +(934, '画'), +(935, '画'), +(936, '画'), +(937, '画'), +(938, '画'), +(939, '画'), +(940, '画'), +(941, '遠'), +(942, '遠'), +(943, '遠'), +(944, '遠'), +(945, '遠'), +(946, '遠'), +(947, '遠'), +(948, '回'), +(949, '回'), +(950, '回'), +(951, '回'), +(952, '回'), +(953, '回'), +(954, '歌'), +(955, '歌'), +(956, '歌'), +(957, '歌'), +(958, '海'), +(959, '海'), +(960, '海'), +(961, '海'), +(962, '会'), +(963, '会'), +(964, '会'), +(965, '会'), +(966, '会'), +(967, '会'), +(968, '会'), +(969, '会'), +(970, '絵'), +(971, '絵'), +(972, '絵'), +(973, '絵'), +(974, '絵'), +(975, '絵'), +(976, '外'), +(977, '外'), +(978, '外'), +(979, '外'), +(980, '外'), +(981, '外'), +(982, '角'), +(983, '角'), +(984, '角'), +(985, '角'), +(986, '家'), +(987, '家'), +(988, '家'), +(989, '家'), +(990, '家'), +(991, '家'), +(992, '家'), +(993, '家'), +(994, '活'), +(995, '活'), +(996, '活'), +(997, '活'), +(998, '楽'), +(999, '楽'), +(1000, '楽'), +(1001, '楽'), +(1002, '楽'), +(1003, '楽'), +(1004, '楽'), +(1005, '楽'), +(1006, '楽'), +(1007, '丸'), +(1008, '丸'), +(1009, '丸'), +(1010, '丸'), +(1011, '岩'), +(1012, '岩'), +(1013, '岩'), +(1014, '岩'), +(1015, '顔'), +(1016, '顔'), +(1017, '顔'), +(1018, '顔'), +(1019, '汽'), +(1020, '汽'), +(1021, '記'), +(1022, '記'), +(1023, '記'), +(1024, '記'), +(1025, '間'), +(1026, '間'), +(1027, '間'), +(1028, '間'), +(1029, '間'), +(1030, '間'), +(1031, '間'), +(1032, '間'), +(1033, '魚'), +(1034, '魚'), +(1035, '魚'), +(1036, '魚'), +(1037, '帰'), +(1038, '帰'), +(1039, '帰'), +(1040, '帰'), +(1041, '牛'), +(1042, '牛'), +(1043, '牛'), +(1044, '牛'), +(1045, '教'), +(1046, '教'), +(1047, '教'), +(1048, '教'), +(1049, '強'), +(1050, '強'), +(1051, '強'), +(1052, '強'), +(1053, '強'), +(1054, '強'), +(1055, '弓'), +(1056, '弓'), +(1057, '弓'), +(1058, '弓'), +(1059, '京'), +(1060, '京'), +(1061, '京'), +(1062, '京'), +(1063, '京'), +(1064, '京'), +(1065, '京'), +(1066, '京'), +(1067, '京'), +(1068, '兄'), +(1069, '兄'), +(1070, '兄'), +(1071, '兄'), +(1072, '兄'), +(1073, '兄'), +(1074, '近'), +(1075, '近'), +(1076, '近'), +(1077, '近'), +(1078, '近'), +(1079, '形'), +(1080, '形'), +(1081, '形'), +(1082, '形'), +(1083, '形'), +(1084, '形'), +(1085, '形'), +(1086, '言'), +(1087, '言'), +(1088, '言'), +(1089, '言'), +(1090, '言'), +(1091, '言'), +(1092, '言'), +(1093, '言'), +(1094, '元'), +(1095, '元'), +(1096, '元'), +(1097, '元'), +(1098, '元'), +(1099, '元'), +(1100, '原'), +(1101, '原'), +(1102, '原'), +(1103, '原'), +(1104, '戸'), +(1105, '戸'), +(1106, '戸'), +(1107, '戸'), +(1108, '計'), +(1109, '計'), +(1110, '計'), +(1111, '計'), +(1112, '古'), +(1113, '古'), +(1114, '古'), +(1115, '古'), +(1116, '語'), +(1117, '語'), +(1118, '語'), +(1119, '語'), +(1120, '考'), +(1121, '考'), +(1122, '考'), +(1123, '考'), +(1124, '光'), +(1125, '光'), +(1126, '光'), +(1127, '光'), +(1128, '午'), +(1129, '午'), +(1130, '午'), +(1131, '午'), +(1132, '交'), +(1133, '交'), +(1134, '交'), +(1135, '交'), +(1136, '谷'), +(1137, '谷'), +(1138, '谷'), +(1139, '後'), +(1140, '後'), +(1141, '後'), +(1142, '後'), +(1143, '後'), +(1144, '後'), +(1145, '後'), +(1146, '後'), +(1147, '今'), +(1148, '今'), +(1149, '今'), +(1150, '今'), +(1151, '今'), +(1152, '今'), +(1153, '国'), +(1154, '国'), +(1155, '国'), +(1156, '国'), +(1157, '黒'), +(1158, '黒'), +(1159, '黒'), +(1160, '黒'), +(1161, '細'), +(1162, '細'), +(1163, '細'), +(1164, '細'), +(1165, '行'), +(1166, '行'), +(1167, '行'), +(1168, '行'), +(1169, '行'), +(1170, '行'), +(1171, '行'), +(1172, '行'), +(1173, '行'), +(1174, '行'), +(1175, '黄'), +(1176, '黄'), +(1177, '黄'), +(1178, '黄'), +(1179, '黄'), +(1180, '黄'), +(1181, '黄'), +(1182, '黄'), +(1183, '高'), +(1184, '高'), +(1185, '高'), +(1186, '高'), +(1187, '作'), +(1188, '作'), +(1189, '作'), +(1190, '作'), +(1191, '作'), +(1192, '作'), +(1193, '作'), +(1194, '作'), +(1195, '才'), +(1196, '才'), +(1197, '才'), +(1198, '才'), +(1199, '合'), +(1200, '合'), +(1201, '合'), +(1202, '合'), +(1203, '合'), +(1204, '合'), +(1205, '合'), +(1206, '合'), +(1207, '広'), +(1208, '広'), +(1209, '広'), +(1210, '工'), +(1211, '工'), +(1212, '工'), +(1213, '工'), +(1214, '工'), +(1215, '工'), +(1216, '工'), +(1217, '工'), +(1218, '工'), +(1219, '工'), +(1220, '公'), +(1221, '公'), +(1222, '公'), +(1223, '公'), +(1224, '公'), +(1225, '公'), +(1226, '公'), +(1227, '社'), +(1228, '社'), +(1229, '社'), +(1230, '社'), +(1231, '春'), +(1232, '春'), +(1233, '春'), +(1234, '春'), +(1235, '寺'), +(1236, '寺'), +(1237, '寺'), +(1238, '寺'), +(1239, '算'), +(1240, '算'), +(1241, '算'), +(1242, '算'), +(1243, '秋'), +(1244, '秋'), +(1245, '秋'), +(1246, '秋'), +(1247, '止'), +(1248, '止'), +(1249, '止'), +(1250, '止'), +(1251, '時'), +(1252, '時'), +(1253, '時'), +(1254, '時'), +(1255, '首'), +(1256, '首'), +(1257, '首'), +(1258, '首'), +(1259, '室'), +(1260, '室'), +(1261, '室'), +(1262, '室'), +(1263, '市'), +(1264, '市'), +(1265, '市'), +(1266, '市'), +(1267, '弱'), +(1268, '弱'), +(1269, '弱'), +(1270, '弱'), +(1271, '少'), +(1272, '少'), +(1273, '少'), +(1274, '少'), +(1275, '紙'), +(1276, '紙'), +(1277, '紙'), +(1278, '紙'), +(1279, '思'), +(1280, '思'), +(1281, '思'), +(1282, '思'), +(1283, '書'), +(1284, '書'), +(1285, '書'), +(1286, '書'), +(1287, '姉'), +(1288, '姉'), +(1289, '姉'), +(1290, '姉'), +(1291, '場'), +(1292, '場'), +(1293, '場'), +(1294, '場'), +(1295, '矢'), +(1296, '矢'), +(1297, '矢'), +(1298, '矢'), +(1299, '自'), +(1300, '自'), +(1301, '自'), +(1302, '自'), +(1303, '自'), +(1304, '自'), +(1305, '自'), +(1306, '週'), +(1307, '週'), +(1308, '週'), +(1309, '週'), +(1310, '食'), +(1311, '食'), +(1312, '食'), +(1313, '食'), +(1314, '食'), +(1315, '食'), +(1316, '食'), +(1317, '食'), +(1318, '新'), +(1319, '新'), +(1320, '新'), +(1321, '新'), +(1322, '図'), +(1323, '図'), +(1324, '図'), +(1325, '図'), +(1326, '図'), +(1327, '図'), +(1328, '図'), +(1329, '図'), +(1330, '数'), +(1331, '数'), +(1332, '数'), +(1333, '数'), +(1334, '数'), +(1335, '数'), +(1336, '数'), +(1337, '心'), +(1338, '心'), +(1339, '心'), +(1340, '心'), +(1341, '親'), +(1342, '親'), +(1343, '親'), +(1344, '親'), +(1345, '声'), +(1346, '声'), +(1347, '声'), +(1348, '声'), +(1349, '声'), +(1350, '声'), +(1351, '声'), +(1352, '声'), +(1353, '西'), +(1354, '西'), +(1355, '西'), +(1356, '西'), +(1357, '西'), +(1358, '西'), +(1359, '西'), +(1360, '西'), +(1361, '西'), +(1362, '西'), +(1363, '雪'), +(1364, '雪'), +(1365, '雪'), +(1366, '雪'), +(1367, '色'), +(1368, '色'), +(1369, '色'), +(1370, '色'), +(1371, '色'), +(1372, '色'), +(1373, '色'), +(1374, '晴'), +(1375, '晴'), +(1376, '晴'), +(1377, '晴'), +(1378, '星'), +(1379, '星'), +(1380, '星'), +(1381, '星'), +(1382, '星'), +(1383, '星'), +(1384, '線'), +(1385, '線'), +(1386, '線'), +(1387, '線'), +(1388, '切'), +(1389, '切'), +(1390, '切'), +(1391, '切'), +(1392, '切'), +(1393, '切'), +(1394, '切'), +(1395, '前'), +(1396, '前'), +(1397, '前'), +(1398, '前'), +(1399, '船'), +(1400, '船'), +(1401, '船'), +(1402, '船'), +(1403, '走'), +(1404, '走'), +(1405, '走'), +(1406, '走'), +(1407, '組'), +(1408, '組'), +(1409, '組'), +(1410, '組'), +(1411, '多'), +(1412, '多'), +(1413, '多'), +(1414, '多'), +(1415, '体'), +(1416, '体'), +(1417, '体'), +(1418, '体'), +(1419, '体'), +(1420, '体'), +(1421, '体'), +(1422, '体'), +(1423, '太'), +(1424, '太'), +(1425, '太'), +(1426, '太'), +(1427, '太'), +(1428, '太'), +(1429, '太'), +(1430, '太'), +(1431, '直'), +(1432, '直'), +(1433, '直'), +(1434, '直'), +(1435, '直'), +(1436, '直'), +(1437, '直'), +(1438, '直'), +(1439, '直'), +(1440, '直'), +(1441, '電'), +(1442, '電'), +(1443, '電'), +(1444, '電'), +(1445, '長'), +(1446, '長'), +(1447, '長'), +(1448, '長'), +(1449, '当'), +(1450, '当'), +(1451, '当'), +(1452, '当'), +(1453, '台'), +(1454, '台'), +(1455, '台'), +(1456, '台'), +(1457, '台'), +(1458, '台'), +(1459, '台'), +(1460, '台'), +(1461, '朝'), +(1462, '朝'), +(1463, '朝'), +(1464, '朝'), +(1465, '地'), +(1466, '地'), +(1467, '地'), +(1468, '地'), +(1469, '地'), +(1470, '地'), +(1471, '地'), +(1472, '地'), +(1473, '知'), +(1474, '知'), +(1475, '知'), +(1476, '知'), +(1477, '頭'), +(1478, '頭'), +(1479, '頭'), +(1480, '頭'), +(1481, '頭'), +(1482, '頭'), +(1483, '頭'), +(1484, '頭'), +(1485, '頭'), +(1486, '頭'), +(1487, '頭'), +(1488, '同'), +(1489, '同'), +(1490, '同'), +(1491, '同'), +(1492, '昼'), +(1493, '昼'), +(1494, '昼'), +(1495, '昼'), +(1496, '鳥'), +(1497, '鳥'), +(1498, '鳥'), +(1499, '鳥'), +(1500, '点'), +(1501, '点'), +(1502, '点'), +(1503, '点'), +(1504, '通'), +(1505, '通'), +(1506, '通'), +(1507, '通'), +(1508, '通'), +(1509, '通'), +(1510, '答'), +(1511, '答'), +(1512, '答'), +(1513, '答'), +(1514, '店'), +(1515, '店'), +(1516, '店'), +(1517, '店'), +(1518, '内'), +(1519, '内'), +(1520, '内'), +(1521, '内'), +(1522, '内'), +(1523, '内'), +(1524, '内'), +(1525, '内'), +(1526, '弟'), +(1527, '弟'), +(1528, '弟'), +(1529, '弟'), +(1530, '弟'), +(1531, '弟'), +(1532, '弟'), +(1533, '弟'), +(1534, '池'), +(1535, '池'), +(1536, '池'), +(1537, '池'), +(1538, '道'), +(1539, '道'), +(1540, '道'), +(1541, '道'), +(1542, '道'), +(1543, '道'), +(1544, '読'), +(1545, '読'), +(1546, '読'), +(1547, '読'), +(1548, '読'), +(1549, '読'), +(1550, '読'), +(1551, '読'), +(1552, '読'), +(1553, '冬'), +(1554, '冬'), +(1555, '冬'), +(1556, '冬'), +(1557, '刀'), +(1558, '刀'), +(1559, '刀'), +(1560, '刀'), +(1561, '東'), +(1562, '東'), +(1563, '東'), +(1564, '東'), +(1565, '茶'), +(1566, '茶'), +(1567, '茶'), +(1568, '茶'), +(1569, '茶'), +(1570, '茶'), +(1571, '茶'), +(1572, '茶'), +(1573, '南'), +(1574, '南'), +(1575, '南'), +(1576, '南'), +(1577, '南'), +(1578, '南'), +(1579, '肉'), +(1580, '肉'), +(1581, '肉'), +(1582, '肉'), +(1583, '馬'), +(1584, '馬'), +(1585, '馬'), +(1586, '馬'), +(1587, '売'), +(1588, '売'), +(1589, '売'), +(1590, '売'), +(1591, '買'), +(1592, '買'), +(1593, '買'), +(1594, '買'), +(1595, '父'), +(1596, '父'), +(1597, '父'), +(1598, '父'), +(1599, '分'), +(1600, '分'), +(1601, '分'), +(1602, '分'), +(1603, '分'), +(1604, '分'), +(1605, '分'), +(1606, '分'), +(1607, '分'), +(1608, '分'), +(1609, '分'), +(1610, '分'), +(1611, '半'), +(1612, '半'), +(1613, '半'), +(1614, '半'), +(1615, '麦'), +(1616, '麦'), +(1617, '麦'), +(1618, '麦'), +(1619, '聞'), +(1620, '聞'), +(1621, '聞'), +(1622, '聞'), +(1623, '聞'), +(1624, '聞'), +(1625, '聞'), +(1626, '聞'), +(1627, '米'), +(1628, '米'), +(1629, '米'), +(1630, '米'), +(1631, '米'), +(1632, '米'), +(1633, '母'), +(1634, '母'), +(1635, '母'), +(1636, '母'), +(1637, '方'), +(1638, '方'), +(1639, '方'), +(1640, '方'), +(1641, '番'), +(1642, '番'), +(1643, '番'), +(1644, '番'), +(1645, '歩'), +(1646, '歩'), +(1647, '歩'), +(1648, '歩'), +(1649, '歩'), +(1650, '歩'), +(1651, '歩'), +(1652, '歩'), +(1653, '歩'), +(1654, '歩'), +(1655, '歩'), +(1656, '里'), +(1657, '里'), +(1658, '里'), +(1659, '里'), +(1660, '理'), +(1661, '理'), +(1662, '理'), +(1663, '理'), +(1664, '来'), +(1665, '来'), +(1666, '来'), +(1667, '来'), +(1668, '来'), +(1669, '妹'), +(1670, '妹'), +(1671, '妹'), +(1672, '万'), +(1673, '万'), +(1674, '万'), +(1675, '万'), +(1676, '万'), +(1677, '万'), +(1678, '万'), +(1679, '万'), +(1680, '夜'), +(1681, '夜'), +(1682, '夜'), +(1683, '夜'), +(1684, '用'), +(1685, '用'), +(1686, '用'), +(1687, '用'), +(1688, '鳴'), +(1689, '鳴'), +(1690, '鳴'), +(1691, '鳴'), +(1692, '北'), +(1693, '北'), +(1694, '北'), +(1695, '北'), +(1696, '門'), +(1697, '門'), +(1698, '門'), +(1699, '門'), +(1700, '話'), +(1701, '話'), +(1702, '話'), +(1703, '話'), +(1704, '毛'), +(1705, '毛'), +(1706, '毛'), +(1707, '毛'), +(1708, '野'), +(1709, '野'), +(1710, '野'), +(1711, '野'), +(1712, '風'), +(1713, '風'), +(1714, '風'), +(1715, '風'), +(1716, '風'), +(1717, '風'), +(1718, '風'), +(1719, '風'), +(1720, '友'), +(1721, '友'), +(1722, '友'), +(1723, '友'), +(1724, '明'), +(1725, '明'), +(1726, '明'), +(1727, '明'), +(1728, '明'), +(1729, '明'), +(1730, '明'), +(1731, '明'), +(1732, '明'), +(1733, '明'), +(1734, '曜'), +(1735, '曜'), +(1736, '曜'), +(1737, '曜'), +(1738, '毎'), +(1739, '毎'), +(1740, '毎'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("ひ.く"), +("ひ.ける"), +("くも"), +("-ぐも"), +("その"), +("なに"), +("なん"), +("なに-"), +("なん-"), +("は"), +("わ"), +("はね"), +("なつ"), +("えが.く"), +("かく.する"), +("かぎ.る"), +("はかりごと"), +("はか.る"), +("とお.い"), +("まわ.る"), +("-まわ.る"), +("-まわ.り"), +("まわ.す"), +("-まわ.す"), +("まわ.し-"), +("-まわ.し"), +("もとお.る"), +("か.える"), +("うた"), +("うた.う"), +("うみ"), +("あ.う"), +("あ.わせる"), +("あつ.まる"), +("そと"), +("ほか"), +("はず.す"), +("はず.れる"), +("と-"), +("かど"), +("つの"), +("いえ"), +("や"), +("うち"), +("い.きる"), +("い.かす"), +("い.ける"), +("たの.しい"), +("たの.しむ"), +("この.む"), +("まる"), +("まる.める"), +("まる.い"), +("いわ"), +("かお"), +("しる.す"), +("あいだ"), +("ま"), +("あい"), +("うお"), +("さかな"), +("-ざかな"), +("かえ.る"), +("かえ.す"), +("おく.る"), +("とつ.ぐ"), +("うし"), +("おし.える"), +("おそ.わる"), +("つよ.い"), +("つよ.まる"), +("つよ.める"), +("し.いる"), +("こわ.い"), +("ゆみ"), +("みやこ"), +("あに"), +("ちか.い"), +("かた"), +("-がた"), +("かたち"), +("なり"), +("い.う"), +("こと"), +("もと"), +("はら"), +("と"), +("はか.る"), +("はか.らう"), +("ふる.い"), +("ふる-"), +("-ふる.す"), +("かた.る"), +("かた.らう"), +("かんが.える"), +("かんが.え"), +("ひか.る"), +("ひかり"), +("うま"), +("まじ.わる"), +("まじ.える"), +("ま.じる"), +("まじ.る"), +("ま.ざる"), +("ま.ぜる"), +("-か.う"), +("か.わす"), +("かわ.す"), +("こもごも"), +("たに"), +("きわ.まる"), +("のち"), +("うし.ろ"), +("うしろ"), +("あと"), +("おく.れる"), +("いま"), +("くに"), +("くろ"), +("くろ.ずむ"), +("くろ.い"), +("ほそ.い"), +("ほそ.る"), +("こま.か"), +("こま.かい"), +("い.く"), +("ゆ.く"), +("-ゆ.き"), +("-ゆき"), +("-い.き"), +("-いき"), +("おこな.う"), +("おこ.なう"), +("き"), +("こ-"), +("たか.い"), +("たか"), +("-だか"), +("たか.まる"), +("たか.める"), +("つく.る"), +("つく.り"), +("-づく.り"), +("あ.う"), +("-あ.う"), +("あ.い"), +("あい-"), +("-あ.い"), +("-あい"), +("あ.わす"), +("あ.わせる"), +("-あ.わせる"), +("ひろ.い"), +("ひろ.まる"), +("ひろ.める"), +("ひろ.がる"), +("ひろ.げる"), +("おおやけ"), +("やしろ"), +("はる"), +("てら"), +("そろ"), +("あき"), +("とき"), +("と.まる"), +("-ど.まり"), +("と.める"), +("-と.める"), +("-ど.め"), +("とど.める"), +("とど.め"), +("とど.まる"), +("や.める"), +("や.む"), +("-や.む"), +("よ.す"), +("-さ.す"), +("-さ.し"), +("とき"), +("-どき"), +("くび"), +("むろ"), +("いち"), +("よわ.い"), +("よわ.る"), +("よわ.まる"), +("よわ.める"), +("すく.ない"), +("すこ.し"), +("かみ"), +("おも.う"), +("おもえら.く"), +("おぼ.す"), +("か.く"), +("-が.き"), +("-がき"), +("あね"), +("はは"), +("ば"), +("や"), +("みずか.ら"), +("おの.ずから"), +("おの.ずと"), +("く.う"), +("く.らう"), +("た.べる"), +("は.む"), +("あたら.しい"), +("あら.た"), +("あら-"), +("にい-"), +("え"), +("はか.る"), +("かず"), +("かぞ.える"), +("しばしば"), +("せ.める"), +("わずらわ.しい"), +("こころ"), +("-ごころ"), +("おや"), +("おや-"), +("した.しい"), +("した.しむ"), +("こえ"), +("こわ-"), +("にし"), +("ゆき"), +("いろ"), +("は.れる"), +("は.れ"), +("は.れ-"), +("-ば.れ"), +("は.らす"), +("ほし"), +("-ぼし"), +("すじ"), +("き.る"), +("-き.る"), +("き.り"), +("-き.り"), +("-ぎ.り"), +("き.れる"), +("-き.れる"), +("き.れ"), +("-き.れ"), +("-ぎ.れ"), +("まえ"), +("-まえ"), +("ふね"), +("ふな-"), +("はし.る"), +("く.む"), +("くみ"), +("-ぐみ"), +("おお.い"), +("まさ.に"), +("まさ.る"), +("からだ"), +("かたち"), +("ふと.い"), +("ふと.る"), +("ただ.ちに"), +("なお.す"), +("-なお.す"), +("なお.る"), +("なお.き"), +("す.ぐ"), +("なが.い"), +("おさ"), +("あ.たる"), +("あ.たり"), +("あ.てる"), +("あ.て"), +("まさ.に"), +("まさ.にべし"), +("うてな"), +("われ"), +("つかさ"), +("あさ"), +("し.る"), +("し.らせる"), +("あたま"), +("かしら"), +("-がしら"), +("かぶり"), +("おな.じ"), +("ひる"), +("とり"), +("つ.ける"), +("つ.く"), +("た.てる"), +("さ.す"), +("とぼ.す"), +("とも.す"), +("ぼち"), +("とお.る"), +("とお.り"), +("-とお.り"), +("-どお.り"), +("とお.す"), +("とお.し"), +("-どお.し"), +("かよ.う"), +("こた.える"), +("こた.え"), +("みせ"), +("たな"), +("うち"), +("おとうと"), +("いけ"), +("みち"), +("いう"), +("よ.む"), +("-よ.み"), +("ふゆ"), +("かたな"), +("そり"), +("ひがし"), +("みなみ"), +("しし"), +("うま"), +("うま-"), +("ま"), +("う.る"), +("う.れる"), +("か.う"), +("ちち"), +("わ.ける"), +("わ.け"), +("わ.かれる"), +("わ.かる"), +("わ.かつ"), +("なか.ば"), +("むぎ"), +("き.く"), +("き.こえる"), +("こめ"), +("よね"), +("はは"), +("も"), +("かた"), +("-かた"), +("-がた"), +("つが.い"), +("ある.く"), +("あゆ.む"), +("さと"), +("ことわり"), +("く.る"), +("きた.る"), +("きた.す"), +("き.たす"), +("き.たる"), +("き"), +("こ"), +("いもうと"), +("よろず"), +("よ"), +("よる"), +("もち.いる"), +("な.く"), +("な.る"), +("な.らす"), +("きた"), +("かど"), +("と"), +("はな.す"), +("はなし"), +("け"), +("の"), +("の-"), +("かぜ"), +("かざ-"), +("とも"), +("あ.かり"), +("あか.るい"), +("あか.るむ"), +("あか.らむ"), +("あき.らか"), +("あ.ける"), +("-あ.け"), +("あ.く"), +("あ.くる"), +("あ.かす"), +("ごと"), +("-ごと.に"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('引', 'ひ.く'), +('引', 'ひ.ける'), +('雲', 'くも'), +('雲', '-ぐも'), +('園', 'その'), +('何', 'なに'), +('何', 'なん'), +('何', 'なに-'), +('何', 'なん-'), +('羽', 'は'), +('羽', 'わ'), +('羽', 'はね'), +('夏', 'なつ'), +('画', 'えが.く'), +('画', 'かく.する'), +('画', 'かぎ.る'), +('画', 'はかりごと'), +('画', 'はか.る'), +('遠', 'とお.い'), +('回', 'まわ.る'), +('回', '-まわ.る'), +('回', '-まわ.り'), +('回', 'まわ.す'), +('回', '-まわ.す'), +('回', 'まわ.し-'), +('回', '-まわ.し'), +('回', 'もとお.る'), +('回', 'か.える'), +('歌', 'うた'), +('歌', 'うた.う'), +('海', 'うみ'), +('会', 'あ.う'), +('会', 'あ.わせる'), +('会', 'あつ.まる'), +('外', 'そと'), +('外', 'ほか'), +('外', 'はず.す'), +('外', 'はず.れる'), +('外', 'と-'), +('角', 'かど'), +('角', 'つの'), +('家', 'いえ'), +('家', 'や'), +('家', 'うち'), +('活', 'い.きる'), +('活', 'い.かす'), +('活', 'い.ける'), +('楽', 'たの.しい'), +('楽', 'たの.しむ'), +('楽', 'この.む'), +('丸', 'まる'), +('丸', 'まる.める'), +('丸', 'まる.い'), +('岩', 'いわ'), +('顔', 'かお'), +('記', 'しる.す'), +('間', 'あいだ'), +('間', 'ま'), +('間', 'あい'), +('魚', 'うお'), +('魚', 'さかな'), +('魚', '-ざかな'), +('帰', 'かえ.る'), +('帰', 'かえ.す'), +('帰', 'おく.る'), +('帰', 'とつ.ぐ'), +('牛', 'うし'), +('教', 'おし.える'), +('教', 'おそ.わる'), +('強', 'つよ.い'), +('強', 'つよ.まる'), +('強', 'つよ.める'), +('強', 'し.いる'), +('強', 'こわ.い'), +('弓', 'ゆみ'), +('京', 'みやこ'), +('兄', 'あに'), +('近', 'ちか.い'), +('形', 'かた'), +('形', '-がた'), +('形', 'かたち'), +('形', 'なり'), +('言', 'い.う'), +('言', 'こと'), +('元', 'もと'), +('原', 'はら'), +('戸', 'と'), +('計', 'はか.る'), +('計', 'はか.らう'), +('古', 'ふる.い'), +('古', 'ふる-'), +('古', '-ふる.す'), +('語', 'かた.る'), +('語', 'かた.らう'), +('考', 'かんが.える'), +('考', 'かんが.え'), +('光', 'ひか.る'), +('光', 'ひかり'), +('午', 'うま'), +('交', 'まじ.わる'), +('交', 'まじ.える'), +('交', 'ま.じる'), +('交', 'まじ.る'), +('交', 'ま.ざる'), +('交', 'ま.ぜる'), +('交', '-か.う'), +('交', 'か.わす'), +('交', 'かわ.す'), +('交', 'こもごも'), +('谷', 'たに'), +('谷', 'きわ.まる'), +('後', 'のち'), +('後', 'うし.ろ'), +('後', 'うしろ'), +('後', 'あと'), +('後', 'おく.れる'), +('今', 'いま'), +('国', 'くに'), +('黒', 'くろ'), +('黒', 'くろ.ずむ'), +('黒', 'くろ.い'), +('細', 'ほそ.い'), +('細', 'ほそ.る'), +('細', 'こま.か'), +('細', 'こま.かい'), +('行', 'い.く'), +('行', 'ゆ.く'), +('行', '-ゆ.き'), +('行', '-ゆき'), +('行', '-い.き'), +('行', '-いき'), +('行', 'おこな.う'), +('行', 'おこ.なう'), +('黄', 'き'), +('黄', 'こ-'), +('高', 'たか.い'), +('高', 'たか'), +('高', '-だか'), +('高', 'たか.まる'), +('高', 'たか.める'), +('作', 'つく.る'), +('作', 'つく.り'), +('作', '-づく.り'), +('合', 'あ.う'), +('合', '-あ.う'), +('合', 'あ.い'), +('合', 'あい-'), +('合', '-あ.い'), +('合', '-あい'), +('合', 'あ.わす'), +('合', 'あ.わせる'), +('合', '-あ.わせる'), +('広', 'ひろ.い'), +('広', 'ひろ.まる'), +('広', 'ひろ.める'), +('広', 'ひろ.がる'), +('広', 'ひろ.げる'), +('公', 'おおやけ'), +('社', 'やしろ'), +('春', 'はる'), +('寺', 'てら'), +('算', 'そろ'), +('秋', 'あき'), +('秋', 'とき'), +('止', 'と.まる'), +('止', '-ど.まり'), +('止', 'と.める'), +('止', '-と.める'), +('止', '-ど.め'), +('止', 'とど.める'), +('止', 'とど.め'), +('止', 'とど.まる'), +('止', 'や.める'), +('止', 'や.む'), +('止', '-や.む'), +('止', 'よ.す'), +('止', '-さ.す'), +('止', '-さ.し'), +('時', 'とき'), +('時', '-どき'), +('首', 'くび'), +('室', 'むろ'), +('市', 'いち'), +('弱', 'よわ.い'), +('弱', 'よわ.る'), +('弱', 'よわ.まる'), +('弱', 'よわ.める'), +('少', 'すく.ない'), +('少', 'すこ.し'), +('紙', 'かみ'), +('思', 'おも.う'), +('思', 'おもえら.く'), +('思', 'おぼ.す'), +('書', 'か.く'), +('書', '-が.き'), +('書', '-がき'), +('姉', 'あね'), +('姉', 'はは'), +('場', 'ば'), +('矢', 'や'), +('自', 'みずか.ら'), +('自', 'おの.ずから'), +('自', 'おの.ずと'), +('食', 'く.う'), +('食', 'く.らう'), +('食', 'た.べる'), +('食', 'は.む'), +('新', 'あたら.しい'), +('新', 'あら.た'), +('新', 'あら-'), +('新', 'にい-'), +('図', 'え'), +('図', 'はか.る'), +('数', 'かず'), +('数', 'かぞ.える'), +('数', 'しばしば'), +('数', 'せ.める'), +('数', 'わずらわ.しい'), +('心', 'こころ'), +('心', '-ごころ'), +('親', 'おや'), +('親', 'おや-'), +('親', 'した.しい'), +('親', 'した.しむ'), +('声', 'こえ'), +('声', 'こわ-'), +('西', 'にし'), +('雪', 'ゆき'), +('色', 'いろ'), +('晴', 'は.れる'), +('晴', 'は.れ'), +('晴', 'は.れ-'), +('晴', '-ば.れ'), +('晴', 'は.らす'), +('星', 'ほし'), +('星', '-ぼし'), +('線', 'すじ'), +('切', 'き.る'), +('切', '-き.る'), +('切', 'き.り'), +('切', '-き.り'), +('切', '-ぎ.り'), +('切', 'き.れる'), +('切', '-き.れる'), +('切', 'き.れ'), +('切', '-き.れ'), +('切', '-ぎ.れ'), +('前', 'まえ'), +('前', '-まえ'), +('船', 'ふね'), +('船', 'ふな-'), +('走', 'はし.る'), +('組', 'く.む'), +('組', 'くみ'), +('組', '-ぐみ'), +('多', 'おお.い'), +('多', 'まさ.に'), +('多', 'まさ.る'), +('体', 'からだ'), +('体', 'かたち'), +('太', 'ふと.い'), +('太', 'ふと.る'), +('直', 'ただ.ちに'), +('直', 'なお.す'), +('直', '-なお.す'), +('直', 'なお.る'), +('直', 'なお.き'), +('直', 'す.ぐ'), +('長', 'なが.い'), +('長', 'おさ'), +('当', 'あ.たる'), +('当', 'あ.たり'), +('当', 'あ.てる'), +('当', 'あ.て'), +('当', 'まさ.に'), +('当', 'まさ.にべし'), +('台', 'うてな'), +('台', 'われ'), +('台', 'つかさ'), +('朝', 'あさ'), +('知', 'し.る'), +('知', 'し.らせる'), +('頭', 'あたま'), +('頭', 'かしら'), +('頭', '-がしら'), +('頭', 'かぶり'), +('同', 'おな.じ'), +('昼', 'ひる'), +('鳥', 'とり'), +('点', 'つ.ける'), +('点', 'つ.く'), +('点', 'た.てる'), +('点', 'さ.す'), +('点', 'とぼ.す'), +('点', 'とも.す'), +('点', 'ぼち'), +('通', 'とお.る'), +('通', 'とお.り'), +('通', '-とお.り'), +('通', '-どお.り'), +('通', 'とお.す'), +('通', 'とお.し'), +('通', '-どお.し'), +('通', 'かよ.う'), +('答', 'こた.える'), +('答', 'こた.え'), +('店', 'みせ'), +('店', 'たな'), +('内', 'うち'), +('弟', 'おとうと'), +('池', 'いけ'), +('道', 'みち'), +('道', 'いう'), +('読', 'よ.む'), +('読', '-よ.み'), +('冬', 'ふゆ'), +('刀', 'かたな'), +('刀', 'そり'), +('東', 'ひがし'), +('南', 'みなみ'), +('肉', 'しし'), +('馬', 'うま'), +('馬', 'うま-'), +('馬', 'ま'), +('売', 'う.る'), +('売', 'う.れる'), +('買', 'か.う'), +('父', 'ちち'), +('分', 'わ.ける'), +('分', 'わ.け'), +('分', 'わ.かれる'), +('分', 'わ.かる'), +('分', 'わ.かつ'), +('半', 'なか.ば'), +('麦', 'むぎ'), +('聞', 'き.く'), +('聞', 'き.こえる'), +('米', 'こめ'), +('米', 'よね'), +('母', 'はは'), +('母', 'も'), +('方', 'かた'), +('方', '-かた'), +('方', '-がた'), +('番', 'つが.い'), +('歩', 'ある.く'), +('歩', 'あゆ.む'), +('里', 'さと'), +('理', 'ことわり'), +('来', 'く.る'), +('来', 'きた.る'), +('来', 'きた.す'), +('来', 'き.たす'), +('来', 'き.たる'), +('来', 'き'), +('来', 'こ'), +('妹', 'いもうと'), +('万', 'よろず'), +('夜', 'よ'), +('夜', 'よる'), +('用', 'もち.いる'), +('鳴', 'な.く'), +('鳴', 'な.る'), +('鳴', 'な.らす'), +('北', 'きた'), +('門', 'かど'), +('門', 'と'), +('話', 'はな.す'), +('話', 'はなし'), +('毛', 'け'), +('野', 'の'), +('野', 'の-'), +('風', 'かぜ'), +('風', 'かざ-'), +('友', 'とも'), +('明', 'あ.かり'), +('明', 'あか.るい'), +('明', 'あか.るむ'), +('明', 'あか.らむ'), +('明', 'あき.らか'), +('明', 'あ.ける'), +('明', '-あ.け'), +('明', 'あ.く'), +('明', 'あ.くる'), +('明', 'あ.かす'), +('毎', 'ごと'), +('毎', '-ごと.に'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('引く', 'ひく', 'to pull, to tug, to lead (e.g. a horse), to draw (attention, sympathy, etc.), to attract (e.g. interest), to draw back (e.g. one''s hand), to draw in (one''s chin, stomach, etc.), to pull in, to draw (a card, mahjong tile, etc.), to draw (a line, plan, etc.), to catch (a cold), to play (a stringed or keyboard instrument), to look up (in a dictionary, phone book, etc.), to consult, to check, to haul, to pull (vehicles), to subtract, to deduct, to recede, to ebb, to fade, to be descend from, to inherit (a characteristic), to quote, to cite, to raise (as evidence), to lay on (electricity, gas, etc.), to install (e.g. a telephone), to supply (e.g. water), to hold (e.g. a note), to apply (e.g. lipstick), to oil (e.g. a pan), to wax (e.g. a floor), to move back, to draw back, to recede, to lessen, to subside, to ebb, to go down (e.g. of swelling), to resign, to retire, to quit'), +('引く手', 'ひくて', 'admirer, inducer'), +('引ける', 'ひける', 'to close, to be over, to break up (e.g. school), to lose one''s nerve, to feel daunted'), +('雲', 'くも', 'cloud'), +('雲行き', 'くもゆき', 'weather, look of the sky, situation, turn of affairs, signs, way the wind is blowing'), +('黒雲', 'くろくも', 'dark clouds, black clouds'), +('白雲', 'しらくも', 'white clouds'), +('園', 'その', 'garden (esp. man-made), orchard, park, plantation, place, location'), +('園生', 'えんせい', 'garden (esp. with trees), park'), +('竹の園', 'たけのその', 'bamboo garden, Imperial family'), +('学びの園', 'まなびのその', 'educational institution'), +('何', 'なに', 'what, you-know-what, that thing, whatsit, whachamacallit, what''s-his-name, what''s-her-name, penis, (one''s) thing, dick, (not) at all, (not) in the slightest, what?, huh?, hey!, come on!, oh, no (it''s fine), why (it''s nothing), oh (certainly not)'), +('何方', 'どちら', 'which way, which direction, where, which one (esp. of two alternatives), who'), +('何々', 'なになに', 'what, so-and-so, such and such, something (or other), what?, wait, hang on, well, well, let''s see, no, oh (not at all), please, there, there'), +('何', 'なん', 'what, how many, many, a lot of, several, a few, some'), +('何か', 'なにか', 'something, some, any, somehow, for some reason, (so) what (are you trying to say)?, what (do you mean)?'), +('羽', 'はね', 'feather, plume, down, wing, blade (of a fan, propeller, etc.), shuttlecock (in badminton), shuttlecock (in hanetsuki), arrow feathers'), +('葉書', 'はがき', 'postcard, memo, note, card'), +('白羽', 'しらは', 'white feather'), +('切り羽', 'きりは', 'face (of a wall of coal or ore, etc.), working face (of a mine)'), +('羽', 'わ', 'counter for birds, rabbits, etc.'), +('出羽', 'でわ', 'Dewa (former province located in present-day Yamagata and Akita prefectures)'), +('羽', 'はね', 'feather, plume, down, wing, blade (of a fan, propeller, etc.), shuttlecock (in badminton), shuttlecock (in hanetsuki), arrow feathers'), +('羽音', 'はおと', 'flapping sound (of wings), fluttering, hum (of insects), buzz (of bees, etc.), whizz (of a flying arrow), whoosh'), +('夏', 'なつ', 'summer'), +('夏休み', 'なつやすみ', 'summer vacation, summer holiday'), +('初夏', 'しょか', 'early summer, fourth month of the lunar calendar'), +('常夏', 'とこなつ', 'everlasting summer'), +('描く', 'えがく', 'to draw, to paint, to sketch, to depict, to describe, to picture in one''s mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)'), +('画する', 'かくする', 'to draw (a line), to demarcate, to mark, to divide, to map out, to plan'), +('遠い', 'とおい', 'far, distant, far away, a long way off, in the distance, distant (past), remote (in time), remote, far-removed (in time), distant (relationship or kinship), having little to do (with someone), far (from something else in quality, degree, etc.), not similar, way off, hard (of hearing), nearsighted'), +('遠い昔', 'とおいむかし', 'remote past, far ago, time immemorial'), +('回る', 'まわる', 'to turn, to revolve, to visit several places, to function well, to pass a certain time, to go or come around (to another place, point of view), to go via, to stop at, to earn interest'), +('回す', 'まわす', 'to turn, to rotate, to spin, to twist, to gyrate, to pass around, to send around, to hand around, to circulate, to move (someone or something to where its needed), to send, to bring, to transfer, to forward, to direct, to submit, to turn (to a new use), to use (for something else), to turn on (something that turns or has a rotating part, e.g. a washing machine), to start up (e.g. an engine), to give (something) a spin, to put (someone in a position), to make (e.g. an enemy of), to ... around (e.g. chase, fool, play), to do all over, to do everywhere, to do completely, to surround (something) with, to enclose with, to put (an arm) around (e.g. someone''s waist), to reach around, to invest (money), to lend, to dial (a telephone number), to gang-rape, to operate (e.g. business, shop)'), +('回る', 'もとおる', 'to wander around'), +('歌', 'うた', 'song, singing, classical Japanese poem (esp. tanka), modern poetry'), +('歌う', 'うたう', 'to sing, to sing of (love, beauty, etc.) in a poem, to express in the form of a poem, to recite (a poem)'), +('短歌', 'たんか', 'tanka, 31-mora Japanese poem'), +('替え歌', 'かえうた', 'parody (of a song), new lyrics to an old melody, song parody'), +('歌う', 'うたう', 'to sing, to sing of (love, beauty, etc.) in a poem, to express in the form of a poem, to recite (a poem)'), +('歌うたい', 'うたうたい', 'singer, vocalist, nagauta singer (in kabuki), singer of noh chants'), +('海', 'うみ', 'sea, ocean, waters'), +('海路', 'かいろ', 'sea route'), +('内海', 'うちうみ', 'inlet, bay, inland sea'), +('血の海', 'ちのうみ', 'sea of blood, pool of blood'), +('会う', 'あう', 'to meet, to encounter, to see, to have an accident, to have a bad experience'), +('会う約束', 'あうやくそく', 'appointment, rendezvous, date'), +('会わせる', 'あわせる', 'to make (someone) to meet, to let (someone) meet, to expose to, to subject to'), +('外', 'そと', 'outside, exterior, the open (air), other place, somewhere else, outside one''s group (family, company, etc.)'), +('外国', 'がいこく', 'foreign country'), +('大外', 'おおそと', 'far out wide, far outside'), +('家の外', 'いえのそと', 'outside the house'), +('他', 'ほか', 'other (place, thing, person), the rest, et al., outside, beyond, nothing except, nothing but, nothing apart from, nothing aside from, no choice (but to), besides..., in addition to...'), +('外人', 'がいじん', 'foreigner (esp. one of European ancestry), gaijin, outsider'), +('この外', 'このほか', 'besides, moreover, in addition'), +('思いのほか', 'おもいのほか', 'unexpectedly, surprisingly'), +('外す', 'はずす', 'to remove, to take off, to detach, to unfasten, to undo, to drop (e.g. from a team), to remove (from a position), to exclude, to expel, to leave (e.g. one''s seat), to go away from, to step out, to slip away, to dodge (a question, blow, etc.), to evade, to sidestep, to avoid (e.g. peak season), to miss (a target, chance, punch, etc.)'), +('外れる', 'はずれる', 'to be disconnected, to get out of place, to be off, to be out (e.g. of gear), to miss the mark, to get it wrong (e.g. guess, expectation), to draw a blank (e.g. lottery), to be removed, to be excluded, to be contrary to, to go against'), +('角', 'かど', 'corner, edge, (street) corner, turning, rough edges (of one''s character, words, etc.), abrasiveness, harshness, sharpness'), +('角地', 'かどち', 'corner lot'), +('四つ角', 'よつかど', 'four corners, crossroads, intersecting street, street corner'), +('塩角', 'しおかど', 'sharp taste of (refined) salt'), +('角', 'つの', 'horn, antler, antenna, feeler, tentacle (e.g. of a snail), horn-like projection (e.g. peaks of whipped cream)'), +('角隠し', 'つのかくし', 'bride''s head-dress'), +('枝角', 'えだづの', 'antler'), +('豊穣の角', 'ほうじょうのつの', 'cornucopia, horn of plenty'), +('家', 'いえ', 'house, residence, dwelling, family, household, lineage, family name'), +('家主', 'やぬし', 'landlord, landlady, house owner, home owner, head of the household'), +('本家', 'ほんけ', 'head house (family), birthplace, originator'), +('小家', 'こいえ', 'small and simple home'), +('屋', 'や', 'shop, store, restaurant, someone who sells (something) or works as (something), someone with a (certain) personality trait, house, roof'), +('家内', 'かない', '(my) wife, inside the home, one''s family'), +('隠れ家', 'かくれが', 'hiding place, hideout, refuge, retreat, hideaway'), +('長屋', 'ながや', 'tenement house, row house'), +('家', 'うち', 'house, one''s house, one''s home, one''s family, one''s household'), +('家中', 'うちじゅう', 'whole family, entire family, all (members of) the family, all over the house, throughout the house, retainer of a daimyo, feudal domain, clan'), +('生きる', 'いきる', 'to live, to exist, to make a living, to subsist, to be in effect, to be in use, to function, to come to life, to be enlivened, to be safe (in baseball, go, etc.)'), +('生かす', 'いかす', 'to make (the best) use of, to put to good use, to leverage (skills, attributes, experience, etc.), to capitalise on (experience, etc.), to let live, to keep alive, to revive, to resuscitate, to bring back to life, to restore (a deleted passage; in proofreading)'), +('生ける', 'いける', 'to arrange (flowers), to plant, living, live'), +('楽しい', 'たのしい', 'enjoyable, fun, pleasant, happy, delightful'), +('楽しい思い出', 'たのしいおもいで', 'happy memory, sweet memory'), +('楽しむ', 'たのしむ', 'to enjoy (oneself)'), +('丸', 'まる', 'circle, entirety, whole, full, complete, money, dough, moola, enclosure inside a castle''s walls, soft-shelled turtle, suffix for ship names, suffix for names of people (esp. infants), suffix for names of swords, armour, musical instruments, etc., suffix for names of dogs, horses, etc.'), +('丸い', 'まるい', 'round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable'), +('本丸', 'ほんまる', 'inner citadel, core, center, centre, focus, crux'), +('鳳凰丸', 'ほうおうまる', 'Hōō Maru (Western-style Japanese frigate, launched in 1853)'), +('丸める', 'まるめる', 'to make round, to roll up, to curl up, to seduce, to cajole, to explain away, to round off (a fraction), to lump together'), +('丸い', 'まるい', 'round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable'), +('丸一日', 'まるいちにち', 'the whole day, all the day'), +('岩', 'いわ', 'rock, boulder, crag, cliff, anchor'), +('岩場', 'いわば', 'rocky area, rocky tract, rocky stretch (of a climb), wall (of rock)'), +('一枚岩', 'いちまいいわ', 'monolith, large slab of rock'), +('浮岩', 'うきいわ', 'rock partially submerged in water, rock partially emerging from the water, pumice stone'), +('顔', 'かお', 'face, visage, look, expression, countenance, honor, honour, face, influence, notoriety'), +('顔つき', 'かおつき', '(outward) looks, features, face, countenance, expression'), +('知らん顔', 'しらんかお', 'feigned ignorance, pretending not to recognize (someone), unconcerned air, indifference'), +('いい顔', 'いいかお', 'big-shot, influential person, happy face, smiling face, sympathetic attitude, getting along with, being all smiles'), +('記す', 'しるす', 'to write down, to note, to jot down, to remember'), +('間', 'あいだ', 'space (between), gap, interval, distance, stretch, period of time (during, while), duration, interval, between (two parties or things), among (a group), relations (between), relationship, midpoint, average, halfway, middle ground, due to, because of'), +('間柄', 'あいだがら', 'relationship, relation, terms (good, friendly, etc.)'), +('この間', 'このあいだ', 'the other day, lately, recently, during this period, meanwhile, in the meantime'), +('候間', 'そうろうあいだ', 'as ...'), +('間', 'ま', 'time, pause, space, room'), +('間に合う', 'まにあう', 'to be in time (for), to serve (suit, meet) the purpose, to be good enough, to be enough, to manage, to make do'), +('大広間', 'おおひろま', 'main hall, great hall, large hall, reception hall'), +('晴れ間', 'はれま', 'break (in the weather, esp. rain or snow), interval of clear weather, patch of blue sky, period of serenity'), +('間', 'あいだ', 'space (between), gap, interval, distance, stretch, period of time (during, while), duration, interval, between (two parties or things), among (a group), relations (between), relationship, midpoint, average, halfway, middle ground, due to, because of'), +('間柄', 'あいだがら', 'relationship, relation, terms (good, friendly, etc.)'), +('波間', 'なみま', 'interval between the waves, gap between waves'), +('幕間', 'まくあい', 'intermission (between acts), interlude'), +('魚', 'さかな', 'fish'), +('魚市場', 'うおいちば', 'fish market'), +('川魚', 'かわうお', 'river fish, freshwater fish'), +('活魚', 'かつぎょ', 'live fish and shellfish (kept in a tank in a restaurant)'), +('魚', 'さかな', 'fish'), +('魚釣り', 'さかなつり', 'fishing'), +('旬の魚', 'しゅんのさかな', 'fish in season'), +('帰る', 'かえる', 'to return, to come home, to go home, to go back, to leave (of a guest, customer, etc.), to get home, to get to home plate'), +('帰す', 'かえす', 'to send (someone) back, to send (someone) home'), +('牛', 'うし', 'cattle (Bos taurus), cow, bull, ox, calf, beef, Chinese "Ox" constellation (one of the 28 mansions)'), +('牛車', 'ぎゅうしゃ', 'ox carriage (for Heian-era nobles), oxcart'), +('雌牛', 'めうし', 'cow, heifer'), +('去勢牛', 'きょせいうし', 'ox, bullock'), +('教える', 'おしえる', 'to teach, to instruct, to tell, to inform, to show, to preach'), +('教わる', 'おそわる', 'to be taught, to learn, to take lessons in'), +('強い', 'つよい', 'strong, potent, competent, domineering, tough, strong, brawny, powerful, healthy, rugged, good (at), skilled, knowledgeable, being able to handle, know how to deal (with), durable (against), resistant (to), resilient, firm, rigid, solid, intense, strong, fierce, high, dependable, trustworthy'), +('強い心', 'つよいこころ', 'stout heart, strong mind'), +('強まる', 'つよまる', 'to get strong, to gain strength'), +('強める', 'つよめる', 'to strengthen, to emphasize, to emphasise'), +('強いる', 'しいる', 'to force, to compel, to coerce, to press, to impose'), +('強い', 'こわい', 'tough, stiff, hard, inflexible, obstinate, stubborn, tired, worn out'), +('強飯', 'こわめし', 'glutinous rice with red beans (eaten on celebratory occasions), mochi rice with red beans'), +('弓', 'ゆみ', 'bow (weapon), archery, bow (for a violin, etc.)'), +('弓なり', 'ゆみなり', 'bow shape, arc, arch, segment (of a circle)'), +('大弓', 'だいきゅう', 'bow, longbow'), +('上げ弓', 'あげゆみ', 'up-bow (technique used when playing a string instrument)'), +('都', 'みやこ', 'capital (esp. Kyoto, Japan''s former capital), seat of government, capital (of music, fashion, etc.), city (e.g. of light), location of the Imperial Palace'), +('長岡京', 'ながおかきょう', 'Nagaoka-kyō (capital of Japan 784-794), Nagaokakyō (city)'), +('兄', 'あに', 'older brother, elder brother'), +('兄貴', 'あにき', 'elder brother, one''s senior, older man, man older than oneself'), +('中の兄', 'なかのあに', 'middle brother'), +('義理の兄', 'ぎりのあに', 'one''s brother-in-law, stepbrother (elder)'), +('近い', 'ちかい', 'near, close, short (distance), close (in time), soon, close (relationship), friendly, intimate, closely related, similar, almost the same, close to, nearly'), +('近いうちに', 'ちかいうちに', 'before long'), +('形', 'かた', 'shape, appearance, collateral, obverse of an old "zeni" coin'), +('形', 'かたち', 'form, shape, figure, visage'), +('館', 'やかた', 'mansion, palace, manor house, castle, nobleman, noblewoman, dignitary, cabin (on a boat, carriage, etc.)'), +('借金のカタ', 'しゃっきんのカタ', 'security for a loan, collateral'), +('形', 'かたち', 'form, shape, figure, visage'), +('形作る', 'かたちづくる', 'to form, to shape, to make, to mold, to mould, to build up'), +('顔かたち', 'かおかたち', 'features, looks'), +('姿形', 'すがたかたち', 'appearance, figure, shape, form'), +('形', 'なり', 'style, way, shape, form, appearance, state'), +('形体', 'なりかたち', 'one''s appearance'), +('生成り', 'きなり', 'unbleached cloth, unbleached colour (color), unbleached, undyed'), +('二形', 'ふたなり', 'hermaphrodite, androgyny, hermaphroditism'), +('言う', 'いう', 'to say, to utter, to declare, to name, to call, to go (e.g. "the alarm went ping"), to make a noise'), +('言うまでもない', 'いうまでもない', 'goes without saying, needless to say, obvious'), +('言', 'げん', 'word, remark, statement'), +('言葉', 'ことば', 'language, dialect, word, phrase, expression, term, speech, (manner of) speaking, (use of) language, words, remark, statement, comment, learning to speak, language acquisition'), +('一言', 'ひとこと', 'single word, a few words, brief comment'), +('伝言', 'つてこと', 'verbal message, word (from someone), rumour, rumor'), +('元', 'もと', 'origin, source, base, basis, foundation, root, cause, ingredient, material, base, mix, stock, (someone''s) side, (someone''s) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip'), +('元', 'もと', 'former, ex-, past, one-time, earlier times, the past, previous state, formerly, previously, originally, before'), +('家元', 'いえもと', 'head of a school (of music, dance), head family of a school'), +('胸元', 'むなもと', 'breast, chest, pit of the stomach, solar plexus, epigastrium'), +('原', 'はら', 'field, plain, prairie, tundra, moor, wilderness'), +('原っぱ', 'はらっぱ', 'open field, empty lot, plain'), +('萩原', 'はぎはら', 'reedy field'), +('笹原', 'ささはら', 'field of bamboo grass'), +('戸', 'と', 'door (esp. Japanese-style), shutter, window shutter, entrance (to a home), narrows'), +('戸棚', 'とだな', 'cupboard, locker, closet, wardrobe, cabinet'), +('鳴門', 'なると', 'strait with a roaring tidal ebb and flow, whirlpool, maelstrom, kamaboko with a spiral whirlpool-like pattern, cooking technique where ingredients are cut in a spiral pattern, Naruto (city in Tokushima), Naruto Strait, Naruto wakame'), +('引き戸', 'ひきど', 'sliding door'), +('計る', 'はかる', 'to measure, to weigh, to survey, to time (sound, gauge, estimate), to conjecture, to infer, to surmise'), +('計らう', 'はからう', 'to manage, to arrange, to see to (a matter), to dispose of, to consult (with), to talk (to)'), +('古い', 'ふるい', 'old, aged, ancient, antiquated, antique, timeworn, long, since long ago, time-honored, of the distant past, long-ago, stale, threadbare, hackneyed, corny, old-fashioned, outmoded, out-of-date'), +('古家', 'ふるいえ', 'old house, deserted house'), +('語る', 'かたる', 'to talk about, to speak of, to tell, to narrate, to recite, to chant, to indicate, to show'), +('語るに落ちる', 'かたるにおちる', 'to let slip a secret, to let the cat out of the bag'), +('語らう', 'かたらう', 'to talk, to tell, to recite, to pledge, to conspire with'), +('考える', 'かんがえる', 'to think (about, of), to think over, to ponder, to contemplate, to reflect (on), to meditate (on), to consider, to bear in mind, to allow for, to take into consideration, to think (that), to believe, to hold (a view), to judge, to conclude, to suspect, to intend (to do), to think of (doing), to plan, to predict, to anticipate, to expect, to imagine, to come up with, to think up, to contrive, to devise, to consider (as), to regard (as), to look on (as), to take, to view'), +('考え', 'かんがえ', 'thinking, thought, view, opinion, concept, idea, notion, imagination, intention, plan, design, consideration, judgement, deliberation, reflection, wish, hope, expectation'), +('考える', 'かんがえる', 'to think (about, of), to think over, to ponder, to contemplate, to reflect (on), to meditate (on), to consider, to bear in mind, to allow for, to take into consideration, to think (that), to believe, to hold (a view), to judge, to conclude, to suspect, to intend (to do), to think of (doing), to plan, to predict, to anticipate, to expect, to imagine, to come up with, to think up, to contrive, to devise, to consider (as), to regard (as), to look on (as), to take, to view'), +('光る', 'ひかる', 'to shine, to glitter, to be bright'), +('光る棒', 'ひかるぼう', 'glowstick, neon light stick'), +('光', 'ひかり', 'light, illumination, ray, beam, gleam, glow, happiness, hope, influence, power, vision, eyesight'), +('光り輝く', 'ひかりかがやく', 'to shine, to glitter'), +('越光', 'こしひかり', 'Koshihikari (variety of rice)'), +('柔らかな光', 'やわらかなひかり', 'soft light'), +('午', 'うま', 'the Horse (seventh sign of the Chinese zodiac), hour of the Horse (around noon, 11am-1pm, or 12 noon-2pm), south, fifth month of the lunar calendar'), +('午年', 'うまどし', 'year of the Horse'), +('庚午', 'かのえうま', 'Metal Horse (7th year of the sexagenary cycle, e.g. 1930, 1990, 2050)'), +('甲午', 'きのえうま', 'Wood Horse (31st year of the sexagenary cycle, e.g. 1954, 2014, 2074)'), +('交わる', 'まじわる', 'to cross, to intersect, to join, to meet, to associate with, to mingle with, to consort with, to have a sexual relationship, to copulate'), +('交える', 'まじえる', 'to mix, to combine, to include, to exchange (words, fire, etc.), to cross (e.g. swords), to join together'), +('混じる', 'まじる', 'to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join'), +('混じる', 'まじる', 'to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join'), +('混ざる', 'まざる', 'to be mixed, to be blended with, to associate with, to mingle with, to join'), +('混ぜる', 'まぜる', 'to mix, to stir, to blend'), +('交わす', 'かわす', 'to exchange (messages, greetings, arguments, etc.), to intersect, to cross, to interlace, ... with one another, ... to each other'), +('交わす', 'かわす', 'to exchange (messages, greetings, arguments, etc.), to intersect, to cross, to interlace, ... with one another, ... to each other'), +('交々', 'こもごも', 'alternately, in succession'), +('谷', 'たに', 'valley'), +('谷間', 'たにま', 'valley, ravine, chasm, dell, cleavage (breasts), slum'), +('気圧の谷', 'きあつのたに', 'low pressure trough'), +('不気味の谷', 'ぶきみのたに', 'uncanny valley (hypothesis about humanoid robots)'), +('極まる', 'きわまる', 'to reach an extreme, to reach a limit, to terminate, to come to an end, extremely, to be stuck, to be in a dilemma, to be at a loss, to be decided, to be settled'), +('後', 'のち', 'later, afterwards, future, after one''s death, descendant'), +('後に', 'のちに', 'later on, subsequently, by and by, after a while'), +('後々', 'のちのち', 'future, distant future'), +('この後', 'このあと', 'after this, henceforth, henceforward, from now on'), +('後ろ', 'うしろ', 'back, behind, rear'), +('後ろ姿', 'うしろすがた', 'retreating figure, appearance from behind'), +('後ろ', 'うしろ', 'back, behind, rear'), +('後ろ姿', 'うしろすがた', 'retreating figure, appearance from behind'), +('後', 'あと', 'behind, rear, after, later, remainder, the rest, more (e.g. five more minutes), left, also, in addition, descendant, successor, heir, after one''s death, past, previous'), +('後回し', 'あとまわし', 'putting off, postponing'), +('亡き後', 'なきあと', 'after one''s death'), +('後々', 'あとあと', 'future, distant future'), +('遅れる', 'おくれる', 'to be late, to be delayed, to fall behind schedule, to be overdue, to fall behind (in a race, one''s studies, etc.), to lag behind, to be behind (the times), to be bereaved of, to be preceded by (someone) in death, to be slow (of a clock or watch)'), +('今', 'いま', 'now, the present time, just now, soon, immediately, another, more'), +('今に', 'いまに', 'before long, even now'), +('中今', 'なかいま', 'the present (esp. as a privileged moment in eternity)'), +('今が今', 'いまがいま', 'just now'), +('国', 'くに', 'country, state, region, national government, central government, home (i.e. hometown, home country), province (of Japan), land, earth'), +('国境', 'こっきょう', 'national border, provincial border'), +('お国', 'おくに', 'your native country, your hometown, my home country (i.e. Japan), countryside, country, daimyo''s territory (Edo period)'), +('現国', 'うつしくに', 'world of mankind, this world'), +('黒', 'くろ', 'black, black go stone, guilt, guilty person'), +('黒い', 'くろい', 'black, dark, blackish, sun-tanned (skin), suspicious, criminal, illicit, darkened and dirty, sooty, covered in dirt, evil, wicked, black-hearted, inauspicious, ill-boding, unlucky'), +('黒ずむ', 'くろずむ', 'to blacken, to darken'), +('黒い', 'くろい', 'black, dark, blackish, sun-tanned (skin), suspicious, criminal, illicit, darkened and dirty, sooty, covered in dirt, evil, wicked, black-hearted, inauspicious, ill-boding, unlucky'), +('黒色', 'くろいろ', 'black (colour, color)'), +('細い', 'ほそい', 'thin, slender, fine, unlucky'), +('細い糸', 'ほそいいと', 'fine thread'), +('細る', 'ほそる', 'to get thin, to taper off'), +('細か', 'こまか', 'small, fine, detailed, stingy'), +('細かい', 'こまかい', 'small, fine, minute, minor, trivial, sensitive, attentive, careful, frugal, stingy'), +('細かい', 'こまかい', 'small, fine, minute, minor, trivial, sensitive, attentive, careful, frugal, stingy'), +('細かいこと', 'こまかいこと', 'trifles, minor details'), +('行く', 'いく', 'to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination'), +('行く先', 'ゆくさき', 'destination, whereabouts, future, prospects'), +('行く', 'いく', 'to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination'), +('行方', 'ゆくえ', '(one''s) whereabouts, destination, where one is headed, outcome, course (of events), development, direction, tide, future, journey ahead'), +('行う', 'おこなう', 'to perform, to do, to conduct oneself, to carry out'), +('行う', 'おこなう', 'to perform, to do, to conduct oneself, to carry out'), +('黄', 'き', 'yellow'), +('黄色', 'きいろ', 'yellow, amber'), +('海気', 'かいき', 'sea air, sea breeze, ocean and atmosphere, type of yarn-dyed silk goods'), +('高い', 'たかい', 'high, tall, expensive, high-priced, high (level), above average (in degree, quality, etc.), loud, high-pitched, shrill'), +('高いびき', 'たかいびき', 'loud snoring'), +('高', 'たか', 'quantity, amount, volume, number, amount of money'), +('高い', 'たかい', 'high, tall, expensive, high-priced, high (level), above average (in degree, quality, etc.), loud, high-pitched, shrill'), +('威高', 'いたか', 'arrogant'), +('背高', 'せいたか', 'tallness, tall person'), +('高まる', 'たかまる', 'to rise, to swell, to be promoted'), +('高める', 'たかめる', 'to raise, to lift, to boost, to enhance'), +('作る', 'つくる', 'to make, to produce, to manufacture, to build, to construct, to prepare (food), to brew (alcohol), to raise, to grow, to cultivate, to train, to till, to draw up (a document), to make out, to prepare, to write, to create (an artistic work, etc.), to compose, to coin (a phrase), to organize, to organise, to establish, to found, to have (a child), to make up (one''s face, etc.), to fabricate (an excuse, etc.), to give a (false) appearance, to feign (a smile, etc.), to put on a show of emotion, to form (a line, etc.), to set (a record), to commit (a sin, etc.)'), +('作り', 'つくり', 'making, producing, manufacturing, building, construction, make, structure, appearance (attire, make-up, etc.), build, physique, sashimi, forced (smile, etc.)'), +('作り上げる', 'つくりあげる', 'to build up, to complete, to construct, to create, to put together, to make up, to fabricate, to invent, to cook up'), +('合う', 'あう', 'to come together, to merge, to unite, to meet, to fit, to match, to suit, to agree with, to be correct, to be profitable, to be equitable, to do ... to each other, to do ... together'), +('合うも不思議、合わぬも不思議', 'あうもふしぎあわぬもふしぎ', 'dreams and fortune-telling are hit-and-miss'), +('合い', 'あい', 'between-season wear, spring and autumn clothing, spring and fall clothing, together, condition, situation, state, -ish'), +('合図', 'あいず', 'sign, signal, cue'), +('待合', 'まちあい', 'rendezvous, meeting, assignation, area where guests gather before the start of a tea ceremony, waiting room, meeting place for assignations, drinking, etc.'), +('地合い', 'じあい', 'texture (cloth, fabric, paper), market tone, undertone, balance between the position of white and black stones (in go)'), +('合わす', 'あわす', 'to match (rhythm, speed, etc.), to join together, to unite, to combine, to add up, to face, to be opposite (someone), to compare, to check with, to cause to meet (e.g. an unpleasant fate), to place together, to connect, to overlap, to mix, to combine, to put blade to blade, to fight'), +('合わせる', 'あわせる', 'to match (rhythm, speed, etc.), to join together, to unite, to combine, to add up, to face, to be opposite (someone), to compare, to check with, to cause to meet (e.g. an unpleasant fate), to place together, to connect, to overlap, to mix, to combine, to put blade to blade, to fight'), +('合わせる顔がない', 'あわせるかおがない', 'too ashamed to meet'), +('広い', 'ひろい', 'spacious, vast, wide'), +('広い支持', 'ひろいしじ', 'broad support, wide-ranging support'), +('広まる', 'ひろまる', 'to spread, to be propagated'), +('広める', 'ひろめる', 'to spread, to propagate, to popularize, to disseminate, to broaden, to extend, to widen, to enlarge'), +('広がる', 'ひろがる', 'to spread (out), to extend, to stretch, to reach to, to get around, to fill (e.g. a space)'), +('広げる', 'ひろげる', 'to spread, to extend, to expand, to enlarge, to widen, to broaden, to unfold, to open, to unroll, to unwrap, to scatter about, to spread around, to make flourish, to cause to prosper'), +('公', 'おおやけ', 'official, governmental, formal, public (use, matter, forum, etc.), common, being public knowledge, being out in the open, exposure to public view'), +('公にする', 'おおやけにする', 'to make public'), +('社', 'やしろ', '(Shinto) shrine'), +('大社', 'たいしゃ', 'grand shrine, famous shrine, Izumo Grand Shrine'), +('村のお社', 'むらのおやしろ', 'village shrine'), +('春', 'はる', 'spring, springtime, New Year, prime (of life), height (of one''s prosperity), heyday, adolescence, puberty, sexuality, sexual desire'), +('春先', 'はるさき', 'beginning of spring'), +('小春', 'こはる', '10th month of the lunisolar calendar (traditional first month of winter, approx. November), late autumn, late fall'), +('行く春', 'ゆくはる', 'the fading of spring'), +('寺', 'てら', 'temple (Buddhist)'), +('寺子屋', 'てらこや', 'temple elementary school (during the Edo period)'), +('宮寺', 'ぐうじ', 'Buddhist temple within a Shinto shrine'), +('算盤', 'そろばん', 'abacus, soroban, calculation (esp. of profit and loss), reckoning'), +('算盤勘定', 'そろばんかんじょう', 'counting on the abacus, cost-benefit calculation, profit calculation'), +('電算', 'でんそろ', 'electronic calculator combined with a soroban'), +('秋', 'あき', 'autumn, fall'), +('秋風', 'あきかぜ', 'autumn breeze, fall breeze'), +('春秋', 'しゅんじゅう', 'spring and autumn, spring and fall, years, age, The Spring and Autumn Annals, The Chronicles of Lu, Chunqiu, Ch''un Ch''iu'), +('中秋', 'ちゅうしゅう', '15th day of the 8th lunar month, eighth month of the lunar calendar'), +('時', 'とき', 'time, hour, moment, occasion, case, chance, opportunity, season, the times, the age, the day, tense'), +('危急存亡の秋', 'ききゅうそんぼうのとき', 'crisis, critical moment, critical time'), +('止まる', 'とまる', 'to stop (moving), to come to a stop, to stop (doing, working, being supplied), to come to a halt, to cease, to be stopped, to be suspended, to alight, to perch on'), +('止める', 'とめる', 'to stop, to turn off, to park, to prevent, to suppress (a cough), to hold back (tears), to hold (one''s breath), to relieve (pain), to stop (someone from doing something), to dissuade, to forbid, to prohibit, to notice, to be aware of, to concentrate on, to pay attention to, to remember, to bear in mind, to fix (in place), to fasten, to tack, to pin, to nail, to button, to staple, to detain, to keep in custody'), +('留める', 'とどめる', 'to stop, to stay (e.g. the night), to cease, to put an end to, to contain, to keep (in position, in place), to limit, to record (e.g. a fact), to retain'), +('止め', 'とどめ', 'finishing blow, coup de grâce'), +('留める', 'とどめる', 'to stop, to stay (e.g. the night), to cease, to put an end to, to contain, to keep (in position, in place), to limit, to record (e.g. a fact), to retain'), +('止まる', 'とどまる', 'to remain, to abide, to stay (in the one place), to be limited to, to be confined to, to only account for'), +('とどまるところを知らない', 'とどまるところをしらない', 'knowing no bounds, showing no signs of stopping or slowing down'), +('止める', 'やめる', 'to stop (an activity), to cease, to discontinue, to end, to quit, to cancel, to abandon, to give up, to abolish, to abstain, to refrain'), +('止む', 'やむ', 'to cease, to stop, to be over'), +('やむを得ない', 'やむをえない', 'cannot be helped, unavoidable'), +('止す', 'よす', 'to cease, to desist, to cut it out, to lay off (an activity), to drop (a subject) to abolish, to resign, to give up'), +('時', 'とき', 'time, hour, moment, occasion, case, chance, opportunity, season, the times, the age, the day, tense'), +('時々', 'ときどき', 'sometimes, occasionally, at times, from time to time, now and then, once in a while, at intervals, seasonal, of the season, appropriate (for the season or occasion)'), +('ある時', 'あるとき', 'on one occasion, once, at one point, at one time'), +('切り替え時', 'きりかえとき', 'time to switch over, response time'), +('首', 'くび', 'neck, head, dismissal, discharge, firing (from a job)'), +('首飾り', 'くびかざり', 'necklace, choker'), +('縛り首', 'しばりくび', '(death by) hanging'), +('猪首', 'いくび', 'bull neck'), +('室', 'むろ', 'greenhouse, icehouse, cellar'), +('室町', 'むろまち', 'Muromachi period (1336-1573)'), +('石室', 'せきしつ', 'stone hut, rock chamber, tomb, stone burial chamber'), +('氷室', 'こおりむろ', 'ice house, ice room, cold room'), +('市', 'いち', 'market, fair'), +('市場', 'いちば', '(town) market, (street) market, marketplace'), +('骨董市', 'こっとういち', 'antique market, flea market'), +('草市', 'くさいち', 'flower market during Obon, fair of plants and flowers (as offerings)'), +('弱い', 'よわい', 'weak, frail, delicate, tender, unskilled, weak (wine)'), +('弱い者', 'よわいもの', 'weak person, the weak'), +('弱る', 'よわる', 'to weaken, to grow weak, to wane, to decline (of one''s health), to be downcast, to be dejected, to be dispirited, to be troubled, to be at a loss, to be perplexed, to be annoyed'), +('弱まる', 'よわまる', 'to abate, to weaken, to be emaciated, to be dejected, to be perplexed'), +('弱める', 'よわめる', 'to weaken'), +('少ない', 'すくない', 'few, a little, scarce, insufficient, seldom'), +('少し', 'すこし', 'small quantity, little, few, something, little while, short distance'), +('少しも', 'すこしも', '(not) at all, (not) a bit, (not) in the least, (not) in the slightest'), +('紙', 'かみ', 'paper'), +('紙くず', 'かみくず', 'wastepaper, scrap of paper, paper scraps'), +('インディア紙', 'インディアかみ', 'India paper'), +('頸上', 'くびかみ', 'neckband, round upright collar (on some traditional Japanese clothing)'), +('思う', 'おもう', 'to think, to consider, to believe, to reckon, to think (of doing), to plan (to do), to judge, to assess, to regard, to imagine, to suppose, to dream, to expect, to look forward to, to feel, to be (in a state of mind), to desire, to want, to recall, to remember'), +('思う存分', 'おもうぞんぶん', 'to one''s heart''s content, to one''s complete satisfaction, as much as one likes, heartily, thoroughly, without restraint'), +('書く', 'かく', 'to write, to compose, to pen, to draw, to paint'), +('姉', 'あね', 'older sister, elder sister'), +('姉さん', 'ねえさん', 'older sister, elder sister, young lady, miss, ma''am'), +('大姉', 'おおあね', 'eldest sister'), +('場', 'ば', 'place, spot, space, field, discipline, sphere, realm, occasion, situation, scene (of a play, movie, etc.), session (of the stock market), field, table, area in which cards are laid out (in a card game), round (east, south, etc.), field, field'), +('場合', 'ばあい', 'case, situation'), +('本場', 'ほんば', 'home (of something), place famous for its ..., center (e.g. of manufacture), best place (for), place of origin, birthplace, cradle, morning session, last session in the morning'), +('役場', 'やくば', 'town hall'), +('矢', 'や', 'arrow, wedge, chock'), +('矢先', 'やさき', 'arrowhead, target of a flying arrow, brunt (of an attack), the very moment (when), the point (of doing)'), +('弓矢', 'ゆみや', 'bow and arrow, weapon, arms'), +('洗い矢', 'あらいや', 'ramrod, cleaning rod'), +('自ら', 'みずから', 'oneself, oneself, for oneself, personally, in person'), +('自ら進んで', 'みずからすすんで', 'by choice, of one''s own free will, on one''s own initiative, off one''s own bat'), +('自ずから', 'おのずから', 'naturally, in due course, by itself, of its own accord'), +('自ずから明らか', 'おのずからあきらか', 'self-evident'), +('自ずと', 'おのずと', 'naturally, in due course, by itself, of its own accord'), +('食う', 'くう', 'to eat, to live, to make a living, to survive, to bite, to sting (as insects do), to tease, to torment, to taunt, to make light of, to make fun of, to encroach on, to eat into, to consume, to defeat a superior, to threaten a position, to consume time and-or resources, to receive something (usu. an unfavourable event), to have sexual relations with a woman, esp. for the first time'), +('食うや食わず', 'くうやくわず', '(living) from hand to mouth, living on the fringe of subsistence'), +('食らう', 'くらう', 'to eat, to drink, to wolf, to knock back, to receive (e.g. a blow), to be on the receiving end (of something undesirable), to undergo (trouble)'), +('食べる', 'たべる', 'to eat, to live on (e.g. a salary), to live off, to subsist on'), +('食べるラー油', 'たべるラーゆ', 'chili oil mixed with chopped garlic, onions, etc.'), +('食む', 'はむ', 'to eat (fodder, grass, etc.), to receive (a salary), to receive a stipend from one''s lord'), +('新しい', 'あたらしい', 'new, novel, fresh, recent, latest, up-to-date, modern'), +('新しいもの好き', 'あたらしいものずき', 'neophilia, love of new or novel things, one who loves new or novel things'), +('新た', 'あらた', 'new, fresh, novel'), +('新田', 'しんでん', 'new rice field, newly developed rice field, wasteland or marshland newly reclaimed as a rice field (Edo period)'), +('図る', 'はかる', 'to plan, to attempt, to devise, to plot, to conspire, to scheme, to aim for, to strive for, to work towards, to seek, to deceive, to trick, to take in'), +('数', 'かず', 'number, amount'), +('数多く', 'かずおおく', 'in great numbers'), +('日数', 'にっすう', 'number of days'), +('手数', 'てすう', 'trouble, bother, number of moves (in go, shogi, etc.), number of punches (in boxing)'), +('数える', 'かぞえる', 'to count, to enumerate'), +('屡々', 'しばしば', 'often, again and again, frequently, repeatedly'), +('心', 'こころ', 'mind, heart, spirit, the meaning of a phrase (riddle, etc.)'), +('心得る', 'こころえる', 'to know, to understand, to be aware of, to regard as, to take for, to consent, to agree'), +('我が心', 'わがこころ', 'my heart'), +('静心', 'しずごころ', 'calm mind, placid temperament'), +('親', 'おや', 'parent, parents, mother and father, dealer (in cards, mahjong, etc.), banker, founder, inventor, (pet) owner, key, parent (organization), main, ancestor, forefather'), +('親指', 'おやゆび', 'thumb, big toe'), +('母親', 'ははおや', 'mother'), +('名付け親', 'なづけおや', 'godparent, namer, first person to give something its name'), +('親しい', 'したしい', 'close (e.g. friend), familiar, friendly, intimate, familiar (e.g. story), well-known (to one), close (relatives), closely related'), +('親しむ', 'したしむ', 'to be intimate with, to befriend'), +('声', 'こえ', 'voice, singing (of a bird), chirping (of an insect), hoot, voice, opinion (as expressed in words), view, wish, attitude, will, sound, sense (of something''s arrival), feeling, voice, voiced sound'), +('声が枯れる', 'こえがかれる', 'to become hoarse'), +('一声', 'いっせい', 'voice, cry, shout'), +('険しい声', 'けわしいこえ', 'sharp voice'), +('西', 'にし', 'west'), +('西日', 'にしび', 'westering sun, setting sun, afternoon sun'), +('南西', 'なんせい', 'southwest'), +('東は東西は西', 'ひがしはひがしにしはにし', 'East is East, and West is West'), +('雪', 'ゆき', 'snow, snowfall'), +('雪国', 'ゆきぐに', 'snow country, snowy region'), +('細雪', 'ささめゆき', 'light snow fall, small snow flakes'), +('粉雪', 'こなゆき', 'powder snow, powdery snow'), +('色', 'いろ', 'colour, color, hue, tint, tinge, shade, complexion, skin colour, skin color, look (on one''s face), expression, appearance, air, feeling, personality, character, tone (of one''s voice, etc.), tune, sound, ring, love, lust, sensuality, love affair, lover, paramour, beauty, sexiness, physical appeal, kind, type, variety'), +('色々', 'いろいろ', 'various, all sorts of, variety of, various colors (colours)'), +('金色', 'きんいろ', 'gold (colour, color)'), +('七色', 'なないろ', 'seven colours (of the rainbow), prismatic colors, blend of seven spices (cayenne, sesame, Japanese pepper, citrus peel, etc.)'), +('晴れる', 'はれる', 'to clear up, to clear away, to be sunny, to stop raining, to refresh (e.g. spirits), to be cleared (e.g. of a suspicion), to be dispelled, to be banished'), +('晴れ', 'はれ', 'clear weather, fine weather, formal, ceremonial, public, cleared of suspicion'), +('晴れる', 'はれる', 'to clear up, to clear away, to be sunny, to stop raining, to refresh (e.g. spirits), to be cleared (e.g. of a suspicion), to be dispelled, to be banished'), +('晴らす', 'はらす', 'to dispel, to clear away, to refresh (oneself), to accomplish a goal, to make it sunny, to make clouds disappear'), +('星', 'ほし', 'star (usu. not including the Sun), planet (usu. not including Earth), heavenly body, star (glyph, symbol, shape), star (actor, player, etc.), small dot, spot, fleck, star point (in go), hoshi, intersection marked with a dot, perp, perpetrator, mark, offender, suspect, bullseye, one''s star (that determines one''s fate), one''s fortune, point, score'), +('星空', 'ほしぞら', 'starry sky'), +('四三の星', 'しそうのほし', 'the Big Dipper (asterism), the Plough, the Plow'), +('希望の星', 'きぼうのほし', 'ray of light, ray of hope, promising talent'), +('切る', 'きる', 'to cut, to cut through, to perform (surgery), to sever (connections, ties), to turn off (e.g. the light), to terminate (e.g. a conversation), to hang up (the phone), to disconnect, to punch (a ticket), to tear off (a stub), to open (something sealed), to start, to set (a limit), to do (something) in less or within a certain time, to issue (cheques, vouchers, etc.), to reduce, to decrease, to discount, to shake off (water, etc.), to let drip-dry, to let drain, to cross, to traverse, to criticize sharply, to act decisively, to do (something noticeable), to go first, to make (certain facial expressions, in kabuki), to turn (vehicle, steering wheel, etc.), to curl (a ball), to bend, to cut, to shuffle (cards), to discard a tile, to dismiss, to sack, to let go, to expulse, to excommunicate, to dig (a groove), to cut (a stencil, on a mimeograph), to trump, to cut (the connection between two groups) (in go), to start a fire (with wood-wood friction or by striking a metal against stone), to draw (a shape) in the air (with a sword, etc.), to finish, to complete'), +('切り', 'きり', 'end, finish, stop, bounds, limits, delivery date (of a futures contract), finale (of a noh song), end of an act (in jōruri or kabuki), final performance of the day (in vaudeville), counter for slices (esp. thick slices), counter for cuts (e.g. fish, meat), only, just, since, after, remaining (in a particular state)'), +('切り抜き', 'きりぬき', 'clipping (of newspaper article, etc.), cutting, scrap (for a scrapbook), cut-out (picture, coloured paper, etc.)'), +('封切り', 'ふうきり', 'premiere, first showing, release (film)'), +('爪切り', 'つめきり', 'nail clippers'), +('切れる', 'きれる', 'to break, to snap, to be cut, to split, to crack, to be injured, to wear out, to be worn out, to break, to burst, to collapse, to wear off, to stop working, to go dead, to expire (time limit, etc.), to run out, to become due, to run out (of stock, etc.), to be exhausted, to be used up, to be sold out, to be out of, to be broken off (e.g. of a relationship), to break up, to have severed ties, to be cut off, to be disconnected, to cut well, to be sharp, to be sharp-minded, to be keen, to be shrewd, to be quick-witted, to be able, to be short of, to drop under (a certain figure), to beat (e.g. a record time), to dry off, to curve, to veer, to shuffle (cards), to get angry, to snap, to blow one''s top, to lose one''s temper, to flip, to be able to do completely'), +('切れ', 'きれ', 'piece, slice, strip, scrap, cloth, sharpness, agility, counter for scraps, pieces, etc.'), +('切れる', 'きれる', 'to break, to snap, to be cut, to split, to crack, to be injured, to wear out, to be worn out, to break, to burst, to collapse, to wear off, to stop working, to go dead, to expire (time limit, etc.), to run out, to become due, to run out (of stock, etc.), to be exhausted, to be used up, to be sold out, to be out of, to be broken off (e.g. of a relationship), to break up, to have severed ties, to be cut off, to be disconnected, to cut well, to be sharp, to be sharp-minded, to be keen, to be shrewd, to be quick-witted, to be able, to be short of, to drop under (a certain figure), to beat (e.g. a record time), to dry off, to curve, to veer, to shuffle (cards), to get angry, to snap, to blow one''s top, to lose one''s temper, to flip, to be able to do completely'), +('布切れ', 'ぬのぎれ', 'piece of cloth'), +('前', 'まえ', 'in front (of), before (e.g. a building), before, earlier, previously, prior, ago, (minutes) to (the hour), (the) front, frontal part, fore, head (e.g. of a line), forward, ahead, (in the) presence (of), in front (of someone), previous (e.g. page), prior (e.g. engagement), first (e.g. half), former (e.g. example), portion, helping, front (of one''s body or clothing), breast (of a coat, kimono, etc.), privates, private parts, criminal record, previous conviction, (a) prior'), +('前売り', 'まえうり', 'advance sale, booking'), +('この前', 'このまえ', 'the other day, previously, before, earlier, recently, last time, last (Sunday, summer, etc.), previous (e.g. mayor, chapter), preceding'), +('出前', 'でまえ', 'home delivery (of food), outside catering'), +('船', 'ふね', 'ship, boat, watercraft, vessel, seaplane, tank, tub, vat, trough, counter for boat-shaped containers (e.g. of sashimi)'), +('船貝', 'ふねがい', 'Arca avellana (species of ark shell)'), +('大船', 'おおぶね', 'large boat'), +('釣り船', 'つりぶね', 'fishing boat, boat-shaped hanging flower vase'), +('走る', 'はしる', 'to run, to run (of a vehicle), to drive, to travel, to move, to sail, to rush (to), to dash, to race, to retreat, to flee, to defect (to), to run away, to abscond, to elope, to flash (of lightning), to streak, to shoot (through; e.g. of pain), to run (through), to flare, to flit (e.g. across one''s face), to spread quickly (of news, shock, etc.), to go (e.g. bad, to extremes), to become, to turn, to take to (e.g. crime), to get carried away by (e.g. one''s emotions), to get involved in, to get wrapped up in, to run (through; of a road, street, etc.), to extend (e.g. of a mountain range), to stretch, to lie'), +('組む', 'くむ', 'to cross (legs or arms), to link (arms), to put together, to construct, to assemble, to produce (e.g. TV program), to braid, to plait, to grapple, to wrestle, to unite, to join, to link up, to form an alliance, to set (e.g. type), to issue (e.g. money order)'), +('組', 'くみ', 'class (of students), group (of people), party, team, crew, lot, bunch, set, crime family, organized-crime syndicate, set (of items), assortment, deck (of cards), pack, typesetting, composition'), +('組合', 'くみあい', 'association, union, guild'), +('仕組み', 'しくみ', 'structure, construction, arrangement, contrivance, mechanism, workings, plan, plot, contrivance'), +('取り組み', 'とりくみ', 'effort, initiative, dealing with, grappling with, wrestling with, bout (in sports, etc.), match'), +('多い', 'おおい', 'many, numerous, a lot, large amount of, large quantity of, a lot, much, frequent, common'), +('体', 'からだ', 'body, torso, trunk, build, physique, frame, figure, health, constitution, corpse, dead body'), +('体つき', 'からだつき', 'body build, figure'), +('お体', 'おからだ', 'body'), +('御体', 'おんからだ', 'body of Christ (Eucharist)'), +('形体', 'なりかたち', 'one''s appearance'), +('太い', 'ふとい', 'fat, thick, deep (of a voice), thick, sonorous, daring, shameless, brazen, audacious'), +('太藺', 'ふとい', 'softstem bulrush (Scirpus tabernaemontani)'), +('太る', 'ふとる', 'to put on weight, to gain weight, to grow fat, to get stout'), +('直ちに', 'ただちに', 'at once, immediately, right away, without delay, directly (face, lead to, etc.), automatically (mean, result in, etc.)'), +('治す', 'なおす', 'to cure, to heal, to fix, to correct, to repair, to do over again, to replace, to put back as it was, to convert (into a different state), to transform'), +('直る', 'なおる', 'to get mended, to be repaired, to be fixed, to return to normal, to recover (e.g. one''s temper), to be restored, to improve, to rally, to come right, to be corrected, to get put right, to be rectified, to come right, to cure (itself), to get cured, to sit properly, to be promoted, to rise, to have one''s crimes forgiven'), +('直き', 'なおき', 'straight, upright'), +('直ぐ', 'すぐ', 'immediately, at once, right away, directly, soon, before long, shortly, easily, readily, without difficulty, right (near), nearby, just (handy), honest, upright, frank, straightforward'), +('直ぐに', 'すぐに', 'immediately, right away, at once, instantly'), +('真直ぐ', 'ますぐ', 'straight (ahead), direct, upright, erect, straightforward, honest, frank'), +('長い', 'ながい', 'long (distance, length), long (time), protracted, prolonged'), +('長居', 'ながい', 'long visit, overstaying'), +('長', 'おさ', 'head, chief, leader, the greatest (of all the ...)'), +('長亀', 'おさがめ', 'leatherback turtle (Dermochelys coriacea)'), +('田長', 'たおさ', 'master of the rice field, chief farmer, lesser cuckoo (Cuculus poliocephalus)'), +('死出田長', 'しでたおさ', 'lesser cuckoo (Cuculus poliocephalus)'), +('当たる', 'あたる', 'to be hit, to strike, to touch, to be in contact, to be affixed, to be equivalent to, to be applicable, to apply to, to be right on the money (of a prediction, criticism, etc.), to be selected (in a lottery, etc.), to win, to be successful, to go well, to be a hit, to face, to confront, to lie (in the direction of), to undertake, to be assigned, to be stricken (by food poisoning, heat, etc.), to be afflicted, to be called on (e.g. by a teacher), to treat (esp. harshly), to lash out at, to be unnecessary, to be hitting well, to be on a hitting streak, to feel a bite (in fishing), (of fruit, etc.) to be bruised, to spoil, to feel (something) out, to probe into, to check (i.e. by comparison), to shave, to be a relative of a person, to be a ... in relation to ..., to stand in a relationship'), +('当たるも八卦当たらぬも八卦', 'あたるもはっけあたらぬもはっけ', 'a prediction may or may not come true, only god knows what will happen'), +('当たり', 'あたり', 'hit, success, guess, prediction, affability, friendliness, sensation, touch, bruise (on fruit), situation in which a stone or chain of stones may be captured on the next move (in the game of go), bite (of a fish on a hook), strike, per, each'), +('当たり前', 'あたりまえ', 'natural, reasonable, obvious, usual, common, ordinary, commonplace, the norm'), +('当てる', 'あてる', 'to hit, to expose, to apply (e.g. patch), to put on, to put against, to hold on, to hold against, to allot, to call on someone (e.g. in class), to guess (an answer), to make a hit (e.g. in a lottery)'), +('当て', 'あて', 'aim, object, purpose, end, expectations, prospects, hopes, something that can be relied upon, snack served with alcoholic drink, pad, guard, blow, strike, addressed to, per'), +('当てる', 'あてる', 'to hit, to expose, to apply (e.g. patch), to put on, to put against, to hold on, to hold against, to allot, to call on someone (e.g. in class), to guess (an answer), to make a hit (e.g. in a lottery)'), +('引き当て', 'ひきあて', 'mortgage, security'), +('額当て', 'ひたいあて', '(military) headband with reinforced metal plate, red headband'), +('正に', 'まさに', 'exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally'), +('台', 'うてな', 'tower, stand, pedestal, calyx'), +('弾正台', 'だんじょうだい', 'Imperial Prosecuting and Investigating Office (1869-1871 CE), Imperial Prosecuting and Investigating Office (under the ritsuryō system)'), +('朝', 'あさ', 'morning, breakfast, next morning'), +('朝ご飯', 'あさごはん', 'breakfast'), +('後の朝', 'のちのあした', 'the morning after (having slept together)'), +('霜朝', 'しもあさ', 'frosty morning'), +('知る', 'しる', 'to know, to be aware (of), to be conscious (of), to learn (of), to find out, to discover, to sense, to feel, to notice, to realize, to understand, to comprehend, to grasp, to appreciate, to remember, to be familiar with, to be acquainted with, to experience, to go through, to know (e.g. hardship), to get acquainted with (a person), to get to know, to have to do with, to be concerned with, to be one''s concern, to be one''s responsibility'), +('知る限り', 'しるかぎり', 'as far as I know'), +('吾唯足知', 'われただたるをしる', 'I am content with what I am (have), Rich is the person who is content with what he is'), +('知らせる', 'しらせる', 'to notify, to advise, to inform'), +('頭', 'あたま', 'head, hair (on one''s head), mind, brains, intellect, leader, chief, boss, captain, top, tip, beginning, start, head, person, down payment, deposit, top structural component of a kanji, pair'), +('頭打ち', 'あたまうち', 'reaching a peak, reaching the limit, plateauing, maxing out'), +('石頭', 'いしあたま', 'obstinate person, stubbornness, pigheadedness, hard head (like a rock)'), +('ごま塩頭', 'ごましおあたま', 'salt and pepper hair, dark hair streaked with gray'), +('頭', 'あたま', 'head, hair (on one''s head), mind, brains, intellect, leader, chief, boss, captain, top, tip, beginning, start, head, person, down payment, deposit, top structural component of a kanji, pair'), +('頭文字', 'かしらもじ', 'first letter of a word, capital letter (at the start of a word or sentence), initials (of one''s name)'), +('鯛の尾より鰯の頭', 'たいのおよりいわしのかしら', 'better be the head of a dog than the tail of a lion'), +('め組の頭', 'めぐみのかしら', 'fire brigade chief (in Edo), chief fireman'), +('頭', 'こうべ', 'head'), +('頭を振る', 'かぶりをふる', 'to shake one''s head (in denial)'), +('同じ', 'おなじ', 'same, identical, equal, uniform, equivalent, similar, common (origin), changeless, alike, anyway, anyhow, in either case'), +('同じく', 'おなじく', 'similarly, same (idea), same (name)'), +('昼', 'ひる', 'noon, midday, daytime, lunch'), +('昼ご飯', 'ひるごはん', 'lunch, midday meal'), +('小昼', 'こひる', 'just before noon, late-morning snack'), +('夜昼', 'よるひる', 'day and night'), +('鳥', 'とり', 'bird, bird meat (esp. chicken meat), fowl, poultry'), +('鳥居', 'とりい', 'torii, Shinto shrine archway'), +('焼き鳥', 'やきとり', 'yakitori, chicken pieces (or sometimes beef or pork offal) grilled on a skewer, grilled and skewered bird (esp. sparrow), failing to win a single hand during a half-game'), +('花鶏', 'あとり', 'brambling (bird) (Fringilla montifringilla)'), +('点ける', 'つける', 'to turn on, to switch on, to light up'), +('点く', 'つく', 'to be lit (e.g. electricity comes on), to be lighted, to catch fire'), +('点てる', 'たてる', 'to make tea (matcha), to perform the tea ceremony'), +('注す', 'さす', 'to pour, to add (liquid), to serve (drinks), to put on (lipstick, etc.), to apply, to colour, to dye, to light (a fire), to burn'), +('灯す', 'ともす', 'to light (a candle, lamp, etc.), to turn on (a light)'), +('灯す', 'ともす', 'to light (a candle, lamp, etc.), to turn on (a light)'), +('通る', 'とおる', 'to go by, to go past, to go along, to travel along, to pass through, to use (a road), to take (a route), to go via, to go by way of, to run (between; of a rail service, bus route, etc.), to operate (between), to connect, to go indoors, to go into a room, to be admitted, to be shown in, to be ushered in, to come in, to penetrate, to pierce, to skewer, to go through, to come through, to permeate, to soak into, to spread throughout, to carry (e.g. of a voice), to reach far, to be passed on (e.g. of a customer''s order to the kitchen), to be relayed, to be conveyed, to pass (a test, a bill in the House, etc.), to be approved, to be accepted, to go by (a name), to be known as, to be accepted as, to have a reputation for, to be coherent, to be logical, to be reasonable, to be comprehensible, to be understandable, to make sense, to get across (e.g. of one''s point), to be understood, to pass for, to come across as, to seem like, to be straight (e.g. wood grain), to be well-informed, to be wise, to do ... completely, to do ... thoroughly'), +('通り', 'とおり', 'avenue, street, way, road, coming and going, street traffic, flow (of water, air, etc.), transmission (of sound), reach (e.g. of voice), fame, reputation, popularity, the same status or way, as (e.g. as expected, as I said), understanding, comprehension, counter for sets of things, counter for methods, ways, types'), +('通り過ぎる', 'とおりすぎる', 'to go past, to pass, to pass by'), +('通す', 'とおす', 'to stick through, to force through, to spread throughout, to thoroughly diffuse, to make a path between two points, to proceed in a logical manner, to let pass, to allow through, to lead (someone) into (a house, room, etc.), to show in, to go through (a middleman), to (look, listen) through (a window, wall, etc.), to pass (a law, applicant, etc.), to force to accept, to force agreement, to continue (in a state), to persist in, to do to the entirety of, to cover all of, to span the whole ..., to do from beginning to end without a break, to convey (one''s ideas, etc.) to the other party, to do to the end, to carry through, to complete'), +('通し', 'とおし', 'continuing from beginning to end, continuous run, consecutive run, appetizer, starter, hors d''oeuvre, performance of an entire play'), +('通し切符', 'とおしきっぷ', 'through ticket (e.g. rail, air), ticket good for multiple performances (e.g. both matinee and evening shows), all-day ticket, season ticket'), +('切通し', 'きりどおし', 'road (or railway) cut through hilly terrain, cutting'), +('通う', 'かよう', 'to go to and from (a place), to go back and forth between, to run between (e.g. bus, train, etc.), to ply between, to go to (school, work, etc.), to attend, to commute, to frequent, to circulate (e.g. blood, electricity), to be communicated (e.g. thought), to resemble'), +('答える', 'こたえる', 'to answer, to reply'), +('答え', 'こたえ', 'answer, reply, response, answer, solution, result'), +('答える', 'こたえる', 'to answer, to reply'), +('店', 'みせ', 'store, shop, establishment, restaurant'), +('店先', 'みせさき', 'storefront, shopfront'), +('酒店', 'さかだな', 'alcohol-selling shop'), +('茶店', 'さてん', 'tea house'), +('店', 'たな', 'merchant''s home, rented home, store, shop'), +('店子', 'たなこ', 'tenant (esp. in contrast to a landlord), renter'), +('お店', 'おたな', 'merchant''s home (esp. used by apprentices, etc.), (your) rental home'), +('内', 'うち', 'inside, within, while (e.g. one is young), during, within (e.g. a day), in the course of, among, amongst, (out) of, between, in (secret, chaos, poverty, etc.), amidst, with (e.g. success), within oneself, one''s feelings, inner thoughts, we, our company, our organization, one''s home, one''s family, my spouse, my husband, my wife, signed on behalf of (husband''s name) by his wife, I, me, imperial palace grounds, emperor'), +('内訳', 'うちわけ', 'itemization (of expenses), the items, breakdown, classification'), +('幕内', 'まくうち', 'highest-ranking division'), +('幕の内', 'まくのうち', 'box lunch (containing rice and 10-15 small portions of fish, meat, and vegetables), highest-ranking division, intermission (between acts), interlude'), +('弟', 'おとうと', 'younger brother, little brother, kid brother, brother-in-law (spouse''s younger brother or younger sister''s husband), pupil, apprentice'), +('弟君', 'おとうとぎみ', 'younger brother'), +('池', 'いけ', 'pond'), +('池蝶貝', 'いけちょうがい', 'Hyriopsis schlegelii (species of freshwater mussel)'), +('用水池', 'ようすいいけ', 'reservoir'), +('人工池', 'じんこういけ', 'artificial pool'), +('道', 'みち', 'road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method'), +('道順', 'みちじゅん', 'route, way, course, directions'), +('回り道', 'まわりみち', 'detour, diversion'), +('花道', 'はなみち', 'elevated walkway through the audience to the stage (kabuki), honourable end to a career'), +('読む', 'よむ', 'to read, to recite (e.g. a sutra), to chant, to predict, to guess, to forecast, to read (someone''s thoughts), to see (e.g. into someone''s heart), to divine, to decipher, to count, to estimate, to read (a kanji) with its native Japanese reading'), +('冬', 'ふゆ', 'winter'), +('冬場', 'ふゆば', 'wintertime, winter season'), +('真冬', 'まふゆ', 'midwinter, dead of winter'), +('初冬', 'しょとう', 'early winter, tenth month of the lunar calendar'), +('刀', 'かたな', 'sword (esp. Japanese single-edged), katana, scalpel, chisel, burin, graver, knife money (knife-shaped commodity money used in ancient China)'), +('刀折れ矢尽きて', 'かたなおれやつきて', 'having exhausted every available means, having broken one''s sword and exhausted one''s arrows'), +('一刀', 'いっとう', 'sword, blade, single stroke'), +('返す刀', 'かえすかたな', 'attacking one opponent then immediately attacking another'), +('剃刀', 'かみそり', 'razor'), +('オッカムの剃刀', 'オッカムのかみそり', 'Occam''s razor, Ockham''s razor'), +('東', 'ひがし', 'east'), +('東西', 'とうざい', 'east and west, Orient and Occident, East and West, ladies and gentlemen!, your attention, please!, roll-up, roll-up'), +('犬が西向きゃ尾は東', 'いぬがにしむきゃおはひがし', 'that goes without saying, water is wet, when a dog turns west, its tail turns east'), +('南', 'みなみ', 'south'), +('南アフリカ', 'みなみアフリカ', 'South Africa'), +('東南', 'とうなん', 'south-east'), +('西南', 'せいなん', 'south-west'), +('肉', 'しし', 'flesh (esp. of an animal), meat'), +('肉合い', 'ししあい', 'fleshiness, plumpness'), +('鹿', 'かのしし', 'deer meat, deer'), +('脯', 'ほしし', 'dried meat, jerky'), +('馬', 'うま', 'horse, horse racing, promoted bishop'), +('馬車', 'ばしゃ', 'coach (horse-drawn), carriage, wagon, cart'), +('白馬', 'はくば', 'white horse, unrefined sake'), +('竹馬', 'たけうま', 'stilts (for walking), hobby horse'), +('馬来西亜', 'マレーシア', 'Malaysia'), +('馬尼剌', 'マニラ', 'Manila (Philippines)'), +('羅馬', 'ローマ', 'Rome'), +('巴奈馬', 'パナマ', 'Panama'), +('売る', 'うる', 'to sell'), +('売れる', 'うれる', 'to sell (well), to be well known, to be popular, to be famous'), +('買う', 'かう', 'to buy, to purchase, to value, to have a high opinion, to stir, to provoke, to draw upon oneself'), +('父', 'ちち', 'father'), +('父親', 'ちちおや', 'father'), +('亡き父', 'なきちち', '(one''s) late father'), +('建国の父', 'けんこくのちち', 'founding father'), +('分ける', 'わける', 'to divide (into), to split (into), to part, to separate, to divide up, to classify, to sort out, to divide out, to share, to distribute, to deal out, to dish out, to distinguish, to discriminate, to differentiate (between), to break up (a fight), to mediate, to call a draw, to tie, to push one''s way through (a crowd), to sell'), +('分け', 'わけ', 'sharing, division, draw, tie'), +('分ける', 'わける', 'to divide (into), to split (into), to part, to separate, to divide up, to classify, to sort out, to divide out, to share, to distribute, to deal out, to dish out, to distinguish, to discriminate, to differentiate (between), to break up (a fight), to mediate, to call a draw, to tie, to push one''s way through (a crowd), to sell'), +('申し訳', 'もうしわけ', 'apology, excuse'), +('追分', 'おいわけ', 'forked road'), +('分かれる', 'わかれる', 'to branch, to fork, to diverge, to separate, to split, to divide, to disperse, to scatter'), +('分かる', 'わかる', 'to understand, to comprehend, to grasp, to see, to get, to follow, to become clear, to be known, to be discovered, to be realized, to be realised, to be found out, I know!, I think so too!'), +('分かつ', 'わかつ', 'to divide, to separate, to share, to distribute, to distinguish'), +('半ば', 'なかば', 'middle, halfway, midway, half (of), one half, half (e.g. done, jokingly), partly, in part, partially, mostly, almost, nearly'), +('半ば過ぎ', 'なかばすぎ', 'beyond the middle'), +('麦', 'むぎ', 'wheat, barley, oat (oats)'), +('麦茶', 'むぎちゃ', 'barley tea'), +('蕎麦', 'そば', 'buckwheat (Fagopyrum esculentum), soba, Japanese buckwheat noodles, Chinese-style noodles'), +('はだか麦', 'はだかむぎ', 'naked barley (Hordeum vulgare var. nudum)'), +('聞く', 'きく', 'to hear, to listen (e.g. to music), to ask, to enquire, to query, to hear about, to hear of, to learn of, to follow (advice, order, etc.), to obey, to listen to, to comply with, to hear (e.g. a plea), to grant (a request), to accept (e.g. an argument), to give consideration to, to smell (esp. incense), to sample (a fragrance), to taste (alcohol), to try'), +('聞く耳を持たない', 'きくみみをもたない', 'to turn a deaf ear to, to not listen to, to not get the message'), +('聞こえる', 'きこえる', 'to be heard, to be audible, to reach one''s ears, to sound (like), to come across (as), to be well known, to be famous, to accept (someone''s words), to agree, to understand'), +('米', 'こめ', '(husked grains of) rice, staple (product, etc.), necessity'), +('米屋', 'こめや', 'rice shop, rice dealer'), +('お米', 'おこめ', '(husked grains of) rice'), +('アルボリオ米', 'アルボリオこめ', 'arborio rice (Italian variety)'), +('米', 'よね', '88 years old, rice'), +('米沢牛', 'よねざわぎゅう', 'Yonezawa beef'), +('白米', 'はくまい', 'polished rice, (uncooked) white rice'), +('母', 'はは', 'mother'), +('母親', 'ははおや', 'mother'), +('必要は発明の母', 'ひつようははつめいのはは', 'necessity is the mother of invention'), +('失敗は成功の母', 'しっぱいはせいこうのはは', 'failure is the mother of success'), +('母屋', 'もや', 'purlin (structural beam in a roof), purline, main building (of a manor), central room (in traditional palatial-style architecture)'), +('母屋桁', 'もやげた', 'purlin (structural beam in a roof), purline'), +('雲母', 'うんも', 'mica, isinglass'), +('乳母', 'うば', 'wet nurse, nursing mother'), +('方', 'かた', 'direction, way, person, lady, gentleman, method of, manner of, way of, care of ..., person in charge of ..., side (e.g. "on my mother''s side")'), +('方々', 'かたがた', 'people, (all) persons, everyone, ladies and gentlemen, you (usu. plural)'), +('見方', 'みかた', 'viewpoint, point of view, way of looking (at something), view, angle, way of appreciating (e.g. opera), way of understanding, how to read (a map, train timetable, etc.)'), +('使い方', 'つかいかた', 'way of using (something), way to use, how to use, usage, use, way of handling (employees, subordinates, etc.), way of treating, treatment, management'), +('番い', 'つがい', 'pair (esp. of mated animals), brace, couple, (anatomical) joint'), +('つがい目', 'つがいめ', 'joint, hinge'), +('手番', 'てつがい', 'plan, arrangements'), +('歩く', 'あるく', 'to walk'), +('歩む', 'あゆむ', 'to walk, to go on foot, to tread (a figurative path), to follow, to lead (a life), to experience, to advance towards (e.g. a solution), to set out (e.g. on the path to destruction, ruin, etc.), to embark (on the road to ...)'), +('里', 'さと', 'village, hamlet, countryside, country, home (of one''s parents, etc.), hometown, one''s origins, one''s upbringing, one''s past'), +('里心', 'さとごころ', 'homesickness, nostalgia'), +('故郷', 'ふるさと', 'hometown, birthplace, native place, one''s old home, ruins, historic remains'), +('お里', 'おさと', 'one''s parents'' home, one''s origins, one''s upbringing, one''s past'), +('理', 'ことわり', 'reason, logic, sense, natural way of things'), +('来る', 'くる', 'to come (spatially or temporally), to approach, to arrive, to come back, to do ... and come back, to come to be, to become, to get, to grow, to continue, to come from, to be caused by, to derive from, to come to (i.e. "when it comes to spinach ...")'), +('来る日も来る日も', 'くるひもくるひも', 'day after day, day in and day out, every single day'), +('来る', 'きたる', 'next (e.g. "next April"), forthcoming, coming, to come, to arrive, to be due to'), +('来るべき', 'きたるべき', 'expected to arrive (occur) in the near future'), +('来す', 'きたす', 'to cause, to induce, to bring about a result or state, to produce'), +('来す', 'きたす', 'to cause, to induce, to bring about a result or state, to produce'), +('来る', 'きたる', 'next (e.g. "next April"), forthcoming, coming, to come, to arrive, to be due to'), +('来るべき', 'きたるべき', 'expected to arrive (occur) in the near future'), +('来す', 'きたす', 'to cause, to induce, to bring about a result or state, to produce'), +('来次第', 'きしだい', 'as soon as (he, she, it) comes'), +('行き来', 'ゆきき', 'coming and going, keeping in touch, visiting each other, street traffic, highway'), +('不出来', 'ふでき', 'bad job, poor workmanship, bungle'), +('来い', 'こい', 'come!, come on!'), +('来し方', 'きしかた', 'the past'), +('妹', 'いもうと', 'younger sister'), +('妹さん', 'いもうとさん', 'younger sister'), +('万', 'まん', '10,000, ten thousand, myriad, everything, all, various'), +('万代', 'ばんだい', 'thousands of years, eternity, all generations'), +('八百万', 'やおよろず', 'myriad, countless things'), +('500万', 'ごひゃくまん', '5,000,000, five million, many'), +('夜', 'よる', 'evening, night, dinner'), +('夜明け', 'よあけ', 'dawn, daybreak'), +('幾夜', 'いくよ', 'how many nights, some nights, several nights, a number of nights'), +('毎夜', 'まいよ', 'every evening, every night'), +('夜', 'よる', 'evening, night, dinner'), +('夜遅く', 'よるおそく', 'late at night, at a late hour'), +('御寝', 'およる', 'sleep, rest'), +('水晶の夜', 'すいしょうのよる', 'Kristallnacht (night of concerted violence against Jews in Germany and Austria from November 9-10, 1938)'), +('用いる', 'もちいる', 'to use, to make use of, to utilize, to utilise'), +('鳴く', 'なく', 'to make sound (of an animal), to call, to cry, to whine, to sing, to chirp, to make a meld call (e.g. pung, kong)'), +('鳴く蝉よりも鳴かぬ蛍が身を焦がす', 'なくせみよりもなかぬほたるがみをこがす', 'empty vessels make the most noise, the silent firefly burns with more passion than the crying cicada'), +('鳴る', 'なる', 'to sound, to ring, to resound, to echo, to roar, to rumble'), +('鳴門', 'なると', 'strait with a roaring tidal ebb and flow, whirlpool, maelstrom, kamaboko with a spiral whirlpool-like pattern, cooking technique where ingredients are cut in a spiral pattern, Naruto (city in Tokushima), Naruto Strait, Naruto wakame'), +('鳴らす', 'ならす', 'to ring, to sound, to chime, to beat, to snort (nose), to snap (fingers), to crack (joints), to be popular, to be esteemed, to be reputed, to state, to insist, to complain, to fart (loudly)'), +('北', 'きた', 'north, the North, northern territories, North Korea, north wind'), +('北アイルランド', 'きたアイルランド', 'Northern Ireland'), +('西北', 'せいほく', 'north-west'), +('門', 'もん', 'gate, branch of learning based on the teachings of a single master, division, phylum, counter for cannons'), +('門出', 'かどで', 'setting off (on a long journey), setting out, departure (e.g. for the front), leaving home, starting a new life, starting life anew'), +('帝', 'みかど', 'emperor (of Japan), mikado, (the gates of an) imperial residence'), +('口は災いの門', 'くちはわざわいのかど', 'words can lead to disaster, the tongue is the root of calamities, the more you open your mouth the more likely you are to put your foot in it'), +('戸', 'と', 'door (esp. Japanese-style), shutter, window shutter, entrance (to a home), narrows'), +('門浪', 'となみ', 'waves in narrow straits'), +('鳴門', 'なると', 'strait with a roaring tidal ebb and flow, whirlpool, maelstrom, kamaboko with a spiral whirlpool-like pattern, cooking technique where ingredients are cut in a spiral pattern, Naruto (city in Tokushima), Naruto Strait, Naruto wakame'), +('長門', 'ながと', 'Nagato (former province located in the west of present-day Yamaguchi Prefecture)'), +('話す', 'はなす', 'to talk, to speak, to converse, to chat, to tell, to explain, to narrate, to mention, to describe, to discuss, to speak (a language)'), +('話', 'はなし', 'talk, speech, chat, conversation, topic, subject, discussions, negotiation, argument, rumor, talk, hearsay, tale, story, fable, circumstances, particulars'), +('話し合う', 'はなしあう', 'to discuss, to talk together'), +('いい話', 'いいはなし', 'good story, heartwarming story, good prospect (e.g. marriage, business)'), +('固い話', 'かたいはなし', 'serious topic (of conversation)'), +('毛', 'け', 'hair, fur, wool, down, plumage, feathers'), +('毛皮', 'けがわ', 'fur, skin, pelt, kanji "fur" radical'), +('お毛々', 'おけけ', 'pubic hair'), +('猫っ毛', 'ねこっけ', 'fine, soft hair'), +('野', 'の', 'plain, field, hidden (structural) member, wild, lacking a political post'), +('野原', 'のはら', 'field, plain, prairie, moor'), +('広野', 'こうや', 'wide plain'), +('裾野', 'すその', 'foot of a mountain, plain at the foot of a mountain, range, spread, extent, encompassing circle'), +('風', 'かぜ', 'wind, breeze, draught, draft, manner, behaviour, behavior, cold, influenza'), +('風邪', 'かぜ', '(common) cold, influenza, flu, ague, inflammatory respiratory system illness (in general)'), +('涼風', 'りょうふう', 'cool breeze, refreshing breeze'), +('西風', 'にしかぜ', 'west wind'), +('友', 'とも', 'friend, companion, comrade, pal, accompaniment, companion (e.g. book), complement, accessory'), +('友達', 'ともだち', 'friend, companion'), +('リア友', 'リアとも', 'real-life friend (as opposed to online friend)'), +('酒のお供', 'さけのおとも', 'appetizer or snack served with drinks, accompaniment to an (alcoholic) drink'), +('明かり', 'あかり', 'light, illumination, glow, gleam, lamp, light'), +('明かり窓', 'あかりまど', 'transom, skylight, dormer window'), +('明るい', 'あかるい', 'light, well-lit, well-lighted, bright (of a colour), brightly-coloured, brightly-colored, cheerful, bright, spirited, sunny (e.g. disposition), encouraging (for the future of a project, etc.), promising, of fair prospects, familiar (with), knowledgeable (about), well versed (in), fair (e.g. politics), clean, impartial'), +('明るむ', 'あかるむ', 'to brighten, to grow light'), +('明らむ', 'あからむ', 'to become luminous at dawn (esp. the sky)'), +('明らか', 'あきらか', 'clear, obvious, evident, plain, definite, bright, light'), +('明らかにする', 'あきらかにする', 'to make clear, to clarify, to disclose, to make public'), +('開ける', 'あける', 'to open (a door, etc.), to unwrap (e.g. parcel, package), to unlock, to open (for business, etc.), to empty, to remove, to make space, to make room, to move out, to clear out, to be away from (e.g. one''s house), to leave (temporarily), to dawn, to grow light, to end (of a period, season), to begin (of the New Year), to leave (one''s schedule) open, to make time (for), to make (a hole), to open up (a hole)'), +('開く', 'あく', 'to open (e.g. doors), to open (e.g. business, etc.), to be empty, to be vacant, to be available, to be free, to be open (e.g. neckline, etc.), to have been opened (of one''s eyes, mouth, etc.), to come to an end, to open (one''s eyes, mouth, etc.), to have a hole, to form a gap, to have an interval (between events)'), +('明くる', 'あくる', 'next (day, morning, etc.), following'), +('明くる', 'あくる', 'next (day, morning, etc.), following'), +('あくる日', 'あくるひ', 'next day, following day'), +('明かす', 'あかす', 'to pass (the night), to spend, to reveal, to divulge, to disclose, to expose, to prove, to verify'), +('毎', 'ごと', 'each, every'), +('毎に', 'ごとに', 'one by one, each, every, at intervals of'), +('月ごと', 'つきごと', 'monthly'), +('戸ごと', 'こごと', 'from door to door'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(1741, '引'), +(1742, '引'), +(1743, '引'), +(1744, '雲'), +(1745, '雲'), +(1746, '雲'), +(1747, '雲'), +(1748, '園'), +(1749, '園'), +(1750, '園'), +(1751, '園'), +(1752, '何'), +(1753, '何'), +(1754, '何'), +(1755, '何'), +(1756, '何'), +(1757, '羽'), +(1758, '羽'), +(1759, '羽'), +(1760, '羽'), +(1761, '羽'), +(1762, '羽'), +(1763, '羽'), +(1764, '羽'), +(1765, '夏'), +(1766, '夏'), +(1767, '夏'), +(1768, '夏'), +(1769, '画'), +(1770, '画'), +(1771, '遠'), +(1772, '遠'), +(1773, '回'), +(1774, '回'), +(1775, '回'), +(1776, '歌'), +(1777, '歌'), +(1778, '歌'), +(1779, '歌'), +(1780, '歌'), +(1781, '歌'), +(1782, '海'), +(1783, '海'), +(1784, '海'), +(1785, '海'), +(1786, '会'), +(1787, '会'), +(1788, '会'), +(1789, '外'), +(1790, '外'), +(1791, '外'), +(1792, '外'), +(1793, '外'), +(1794, '外'), +(1795, '外'), +(1796, '外'), +(1797, '外'), +(1798, '外'), +(1799, '角'), +(1800, '角'), +(1801, '角'), +(1802, '角'), +(1803, '角'), +(1804, '角'), +(1805, '角'), +(1806, '角'), +(1807, '家'), +(1808, '家'), +(1809, '家'), +(1810, '家'), +(1811, '家'), +(1812, '家'), +(1813, '家'), +(1814, '家'), +(1815, '家'), +(1816, '家'), +(1817, '活'), +(1818, '活'), +(1819, '活'), +(1820, '楽'), +(1821, '楽'), +(1822, '楽'), +(1823, '丸'), +(1824, '丸'), +(1825, '丸'), +(1826, '丸'), +(1827, '丸'), +(1828, '丸'), +(1829, '丸'), +(1830, '岩'), +(1831, '岩'), +(1832, '岩'), +(1833, '岩'), +(1834, '顔'), +(1835, '顔'), +(1836, '顔'), +(1837, '顔'), +(1838, '記'), +(1839, '間'), +(1840, '間'), +(1841, '間'), +(1842, '間'), +(1843, '間'), +(1844, '間'), +(1845, '間'), +(1846, '間'), +(1847, '間'), +(1848, '間'), +(1849, '間'), +(1850, '間'), +(1851, '魚'), +(1852, '魚'), +(1853, '魚'), +(1854, '魚'), +(1855, '魚'), +(1856, '魚'), +(1857, '魚'), +(1858, '帰'), +(1859, '帰'), +(1860, '牛'), +(1861, '牛'), +(1862, '牛'), +(1863, '牛'), +(1864, '教'), +(1865, '教'), +(1866, '強'), +(1867, '強'), +(1868, '強'), +(1869, '強'), +(1870, '強'), +(1871, '強'), +(1872, '強'), +(1873, '弓'), +(1874, '弓'), +(1875, '弓'), +(1876, '弓'), +(1877, '京'), +(1878, '京'), +(1879, '兄'), +(1880, '兄'), +(1881, '兄'), +(1882, '兄'), +(1883, '近'), +(1884, '近'), +(1885, '形'), +(1886, '形'), +(1887, '形'), +(1888, '形'), +(1889, '形'), +(1890, '形'), +(1891, '形'), +(1892, '形'), +(1893, '形'), +(1894, '形'), +(1895, '形'), +(1896, '形'), +(1897, '言'), +(1898, '言'), +(1899, '言'), +(1900, '言'), +(1901, '言'), +(1902, '言'), +(1903, '元'), +(1904, '元'), +(1905, '元'), +(1906, '元'), +(1907, '原'), +(1908, '原'), +(1909, '原'), +(1910, '原'), +(1911, '戸'), +(1912, '戸'), +(1913, '戸'), +(1914, '戸'), +(1915, '計'), +(1916, '計'), +(1917, '古'), +(1918, '古'), +(1919, '語'), +(1920, '語'), +(1921, '語'), +(1922, '考'), +(1923, '考'), +(1924, '考'), +(1925, '光'), +(1926, '光'), +(1927, '光'), +(1928, '光'), +(1929, '光'), +(1930, '光'), +(1931, '午'), +(1932, '午'), +(1933, '午'), +(1934, '午'), +(1935, '交'), +(1936, '交'), +(1937, '交'), +(1938, '交'), +(1939, '交'), +(1940, '交'), +(1941, '交'), +(1942, '交'), +(1943, '交'), +(1944, '谷'), +(1945, '谷'), +(1946, '谷'), +(1947, '谷'), +(1948, '谷'), +(1949, '後'), +(1950, '後'), +(1951, '後'), +(1952, '後'), +(1953, '後'), +(1954, '後'), +(1955, '後'), +(1956, '後'), +(1957, '後'), +(1958, '後'), +(1959, '後'), +(1960, '後'), +(1961, '後'), +(1962, '今'), +(1963, '今'), +(1964, '今'), +(1965, '今'), +(1966, '国'), +(1967, '国'), +(1968, '国'), +(1969, '国'), +(1970, '黒'), +(1971, '黒'), +(1972, '黒'), +(1973, '黒'), +(1974, '黒'), +(1975, '細'), +(1976, '細'), +(1977, '細'), +(1978, '細'), +(1979, '細'), +(1980, '細'), +(1981, '細'), +(1982, '行'), +(1983, '行'), +(1984, '行'), +(1985, '行'), +(1986, '行'), +(1987, '行'), +(1988, '黄'), +(1989, '黄'), +(1990, '黄'), +(1991, '高'), +(1992, '高'), +(1993, '高'), +(1994, '高'), +(1995, '高'), +(1996, '高'), +(1997, '高'), +(1998, '高'), +(1999, '作'), +(2000, '作'), +(2001, '作'), +(2002, '合'), +(2003, '合'), +(2004, '合'), +(2005, '合'), +(2006, '合'), +(2007, '合'), +(2008, '合'), +(2009, '合'), +(2010, '合'), +(2011, '広'), +(2012, '広'), +(2013, '広'), +(2014, '広'), +(2015, '広'), +(2016, '広'), +(2017, '公'), +(2018, '公'), +(2019, '社'), +(2020, '社'), +(2021, '社'), +(2022, '春'), +(2023, '春'), +(2024, '春'), +(2025, '春'), +(2026, '寺'), +(2027, '寺'), +(2028, '寺'), +(2029, '算'), +(2030, '算'), +(2031, '算'), +(2032, '秋'), +(2033, '秋'), +(2034, '秋'), +(2035, '秋'), +(2036, '秋'), +(2037, '秋'), +(2038, '止'), +(2039, '止'), +(2040, '止'), +(2041, '止'), +(2042, '止'), +(2043, '止'), +(2044, '止'), +(2045, '止'), +(2046, '止'), +(2047, '止'), +(2048, '止'), +(2049, '時'), +(2050, '時'), +(2051, '時'), +(2052, '時'), +(2053, '首'), +(2054, '首'), +(2055, '首'), +(2056, '首'), +(2057, '室'), +(2058, '室'), +(2059, '室'), +(2060, '室'), +(2061, '市'), +(2062, '市'), +(2063, '市'), +(2064, '市'), +(2065, '弱'), +(2066, '弱'), +(2067, '弱'), +(2068, '弱'), +(2069, '弱'), +(2070, '少'), +(2071, '少'), +(2072, '少'), +(2073, '紙'), +(2074, '紙'), +(2075, '紙'), +(2076, '紙'), +(2077, '思'), +(2078, '思'), +(2079, '書'), +(2080, '姉'), +(2081, '姉'), +(2082, '姉'), +(2083, '場'), +(2084, '場'), +(2085, '場'), +(2086, '場'), +(2087, '矢'), +(2088, '矢'), +(2089, '矢'), +(2090, '矢'), +(2091, '自'), +(2092, '自'), +(2093, '自'), +(2094, '自'), +(2095, '自'), +(2096, '食'), +(2097, '食'), +(2098, '食'), +(2099, '食'), +(2100, '食'), +(2101, '食'), +(2102, '新'), +(2103, '新'), +(2104, '新'), +(2105, '新'), +(2106, '図'), +(2107, '数'), +(2108, '数'), +(2109, '数'), +(2110, '数'), +(2111, '数'), +(2112, '数'), +(2113, '心'), +(2114, '心'), +(2115, '心'), +(2116, '心'), +(2117, '親'), +(2118, '親'), +(2119, '親'), +(2120, '親'), +(2121, '親'), +(2122, '親'), +(2123, '声'), +(2124, '声'), +(2125, '声'), +(2126, '声'), +(2127, '西'), +(2128, '西'), +(2129, '西'), +(2130, '西'), +(2131, '雪'), +(2132, '雪'), +(2133, '雪'), +(2134, '雪'), +(2135, '色'), +(2136, '色'), +(2137, '色'), +(2138, '色'), +(2139, '晴'), +(2140, '晴'), +(2141, '晴'), +(2142, '晴'), +(2143, '星'), +(2144, '星'), +(2145, '星'), +(2146, '星'), +(2147, '切'), +(2148, '切'), +(2149, '切'), +(2150, '切'), +(2151, '切'), +(2152, '切'), +(2153, '切'), +(2154, '切'), +(2155, '切'), +(2156, '前'), +(2157, '前'), +(2158, '前'), +(2159, '前'), +(2160, '船'), +(2161, '船'), +(2162, '船'), +(2163, '船'), +(2164, '走'), +(2165, '組'), +(2166, '組'), +(2167, '組'), +(2168, '組'), +(2169, '組'), +(2170, '多'), +(2171, '体'), +(2172, '体'), +(2173, '体'), +(2174, '体'), +(2175, '体'), +(2176, '太'), +(2177, '太'), +(2178, '太'), +(2179, '直'), +(2180, '直'), +(2181, '直'), +(2182, '直'), +(2183, '直'), +(2184, '直'), +(2185, '直'), +(2186, '長'), +(2187, '長'), +(2188, '長'), +(2189, '長'), +(2190, '長'), +(2191, '長'), +(2192, '当'), +(2193, '当'), +(2194, '当'), +(2195, '当'), +(2196, '当'), +(2197, '当'), +(2198, '当'), +(2199, '当'), +(2200, '当'), +(2201, '当'), +(2202, '台'), +(2203, '台'), +(2204, '朝'), +(2205, '朝'), +(2206, '朝'), +(2207, '朝'), +(2208, '知'), +(2209, '知'), +(2210, '知'), +(2211, '知'), +(2212, '頭'), +(2213, '頭'), +(2214, '頭'), +(2215, '頭'), +(2216, '頭'), +(2217, '頭'), +(2218, '頭'), +(2219, '頭'), +(2220, '頭'), +(2221, '頭'), +(2222, '同'), +(2223, '同'), +(2224, '昼'), +(2225, '昼'), +(2226, '昼'), +(2227, '昼'), +(2228, '鳥'), +(2229, '鳥'), +(2230, '鳥'), +(2231, '鳥'), +(2232, '点'), +(2233, '点'), +(2234, '点'), +(2235, '点'), +(2236, '点'), +(2237, '点'), +(2238, '通'), +(2239, '通'), +(2240, '通'), +(2241, '通'), +(2242, '通'), +(2243, '通'), +(2244, '通'), +(2245, '通'), +(2246, '答'), +(2247, '答'), +(2248, '答'), +(2249, '店'), +(2250, '店'), +(2251, '店'), +(2252, '店'), +(2253, '店'), +(2254, '店'), +(2255, '店'), +(2256, '内'), +(2257, '内'), +(2258, '内'), +(2259, '内'), +(2260, '弟'), +(2261, '弟'), +(2262, '池'), +(2263, '池'), +(2264, '池'), +(2265, '池'), +(2266, '道'), +(2267, '道'), +(2268, '道'), +(2269, '道'), +(2270, '読'), +(2271, '冬'), +(2272, '冬'), +(2273, '冬'), +(2274, '冬'), +(2275, '刀'), +(2276, '刀'), +(2277, '刀'), +(2278, '刀'), +(2279, '刀'), +(2280, '刀'), +(2281, '東'), +(2282, '東'), +(2283, '東'), +(2284, '南'), +(2285, '南'), +(2286, '南'), +(2287, '南'), +(2288, '肉'), +(2289, '肉'), +(2290, '肉'), +(2291, '肉'), +(2292, '馬'), +(2293, '馬'), +(2294, '馬'), +(2295, '馬'), +(2296, '馬'), +(2297, '馬'), +(2298, '馬'), +(2299, '馬'), +(2300, '売'), +(2301, '売'), +(2302, '買'), +(2303, '父'), +(2304, '父'), +(2305, '父'), +(2306, '父'), +(2307, '分'), +(2308, '分'), +(2309, '分'), +(2310, '分'), +(2311, '分'), +(2312, '分'), +(2313, '分'), +(2314, '分'), +(2315, '半'), +(2316, '半'), +(2317, '麦'), +(2318, '麦'), +(2319, '麦'), +(2320, '麦'), +(2321, '聞'), +(2322, '聞'), +(2323, '聞'), +(2324, '米'), +(2325, '米'), +(2326, '米'), +(2327, '米'), +(2328, '米'), +(2329, '米'), +(2330, '米'), +(2331, '母'), +(2332, '母'), +(2333, '母'), +(2334, '母'), +(2335, '母'), +(2336, '母'), +(2337, '母'), +(2338, '母'), +(2339, '方'), +(2340, '方'), +(2341, '方'), +(2342, '方'), +(2343, '番'), +(2344, '番'), +(2345, '番'), +(2346, '歩'), +(2347, '歩'), +(2348, '里'), +(2349, '里'), +(2350, '里'), +(2351, '里'), +(2352, '理'), +(2353, '来'), +(2354, '来'), +(2355, '来'), +(2356, '来'), +(2357, '来'), +(2358, '来'), +(2359, '来'), +(2360, '来'), +(2361, '来'), +(2362, '来'), +(2363, '来'), +(2364, '来'), +(2365, '来'), +(2366, '来'), +(2367, '妹'), +(2368, '妹'), +(2369, '万'), +(2370, '万'), +(2371, '万'), +(2372, '万'), +(2373, '夜'), +(2374, '夜'), +(2375, '夜'), +(2376, '夜'), +(2377, '夜'), +(2378, '夜'), +(2379, '夜'), +(2380, '夜'), +(2381, '用'), +(2382, '鳴'), +(2383, '鳴'), +(2384, '鳴'), +(2385, '鳴'), +(2386, '鳴'), +(2387, '北'), +(2388, '北'), +(2389, '北'), +(2390, '門'), +(2391, '門'), +(2392, '門'), +(2393, '門'), +(2394, '門'), +(2395, '門'), +(2396, '門'), +(2397, '門'), +(2398, '話'), +(2399, '話'), +(2400, '話'), +(2401, '話'), +(2402, '話'), +(2403, '毛'), +(2404, '毛'), +(2405, '毛'), +(2406, '毛'), +(2407, '野'), +(2408, '野'), +(2409, '野'), +(2410, '野'), +(2411, '風'), +(2412, '風'), +(2413, '風'), +(2414, '風'), +(2415, '友'), +(2416, '友'), +(2417, '友'), +(2418, '友'), +(2419, '明'), +(2420, '明'), +(2421, '明'), +(2422, '明'), +(2423, '明'), +(2424, '明'), +(2425, '明'), +(2426, '明'), +(2427, '明'), +(2428, '明'), +(2429, '明'), +(2430, '明'), +(2431, '明'), +(2432, '毎'), +(2433, '毎'), +(2434, '毎'), +(2435, '毎'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("ひ.く"), +("ひ.ける"), +("くも"), +("-ぐも"), +("その"), +("なに"), +("なん"), +("なに-"), +("なん-"), +("は"), +("わ"), +("はね"), +("なつ"), +("えが.く"), +("かく.する"), +("かぎ.る"), +("はかりごと"), +("はか.る"), +("とお.い"), +("まわ.る"), +("-まわ.る"), +("-まわ.り"), +("まわ.す"), +("-まわ.す"), +("まわ.し-"), +("-まわ.し"), +("もとお.る"), +("か.える"), +("うた"), +("うた.う"), +("うみ"), +("あ.う"), +("あ.わせる"), +("あつ.まる"), +("そと"), +("ほか"), +("はず.す"), +("はず.れる"), +("と-"), +("かど"), +("つの"), +("いえ"), +("や"), +("うち"), +("い.きる"), +("い.かす"), +("い.ける"), +("たの.しい"), +("たの.しむ"), +("この.む"), +("まる"), +("まる.める"), +("まる.い"), +("いわ"), +("かお"), +("しる.す"), +("あいだ"), +("ま"), +("あい"), +("うお"), +("さかな"), +("-ざかな"), +("かえ.る"), +("かえ.す"), +("おく.る"), +("とつ.ぐ"), +("うし"), +("おし.える"), +("おそ.わる"), +("つよ.い"), +("つよ.まる"), +("つよ.める"), +("し.いる"), +("こわ.い"), +("ゆみ"), +("みやこ"), +("あに"), +("ちか.い"), +("かた"), +("-がた"), +("かたち"), +("なり"), +("い.う"), +("こと"), +("もと"), +("はら"), +("と"), +("はか.る"), +("はか.らう"), +("ふる.い"), +("ふる-"), +("-ふる.す"), +("かた.る"), +("かた.らう"), +("かんが.える"), +("かんが.え"), +("ひか.る"), +("ひかり"), +("うま"), +("まじ.わる"), +("まじ.える"), +("ま.じる"), +("まじ.る"), +("ま.ざる"), +("ま.ぜる"), +("-か.う"), +("か.わす"), +("かわ.す"), +("こもごも"), +("たに"), +("きわ.まる"), +("のち"), +("うし.ろ"), +("うしろ"), +("あと"), +("おく.れる"), +("いま"), +("くに"), +("くろ"), +("くろ.ずむ"), +("くろ.い"), +("ほそ.い"), +("ほそ.る"), +("こま.か"), +("こま.かい"), +("い.く"), +("ゆ.く"), +("-ゆ.き"), +("-ゆき"), +("-い.き"), +("-いき"), +("おこな.う"), +("おこ.なう"), +("き"), +("こ-"), +("たか.い"), +("たか"), +("-だか"), +("たか.まる"), +("たか.める"), +("つく.る"), +("つく.り"), +("-づく.り"), +("あ.う"), +("-あ.う"), +("あ.い"), +("あい-"), +("-あ.い"), +("-あい"), +("あ.わす"), +("あ.わせる"), +("-あ.わせる"), +("ひろ.い"), +("ひろ.まる"), +("ひろ.める"), +("ひろ.がる"), +("ひろ.げる"), +("おおやけ"), +("やしろ"), +("はる"), +("てら"), +("そろ"), +("あき"), +("とき"), +("と.まる"), +("-ど.まり"), +("と.める"), +("-と.める"), +("-ど.め"), +("とど.める"), +("とど.め"), +("とど.まる"), +("や.める"), +("や.む"), +("-や.む"), +("よ.す"), +("-さ.す"), +("-さ.し"), +("とき"), +("-どき"), +("くび"), +("むろ"), +("いち"), +("よわ.い"), +("よわ.る"), +("よわ.まる"), +("よわ.める"), +("すく.ない"), +("すこ.し"), +("かみ"), +("おも.う"), +("おもえら.く"), +("おぼ.す"), +("か.く"), +("-が.き"), +("-がき"), +("あね"), +("はは"), +("ば"), +("や"), +("みずか.ら"), +("おの.ずから"), +("おの.ずと"), +("く.う"), +("く.らう"), +("た.べる"), +("は.む"), +("あたら.しい"), +("あら.た"), +("あら-"), +("にい-"), +("え"), +("はか.る"), +("かず"), +("かぞ.える"), +("しばしば"), +("せ.める"), +("わずらわ.しい"), +("こころ"), +("-ごころ"), +("おや"), +("おや-"), +("した.しい"), +("した.しむ"), +("こえ"), +("こわ-"), +("にし"), +("ゆき"), +("いろ"), +("は.れる"), +("は.れ"), +("は.れ-"), +("-ば.れ"), +("は.らす"), +("ほし"), +("-ぼし"), +("すじ"), +("き.る"), +("-き.る"), +("き.り"), +("-き.り"), +("-ぎ.り"), +("き.れる"), +("-き.れる"), +("き.れ"), +("-き.れ"), +("-ぎ.れ"), +("まえ"), +("-まえ"), +("ふね"), +("ふな-"), +("はし.る"), +("く.む"), +("くみ"), +("-ぐみ"), +("おお.い"), +("まさ.に"), +("まさ.る"), +("からだ"), +("かたち"), +("ふと.い"), +("ふと.る"), +("ただ.ちに"), +("なお.す"), +("-なお.す"), +("なお.る"), +("なお.き"), +("す.ぐ"), +("なが.い"), +("おさ"), +("あ.たる"), +("あ.たり"), +("あ.てる"), +("あ.て"), +("まさ.に"), +("まさ.にべし"), +("うてな"), +("われ"), +("つかさ"), +("あさ"), +("し.る"), +("し.らせる"), +("あたま"), +("かしら"), +("-がしら"), +("かぶり"), +("おな.じ"), +("ひる"), +("とり"), +("つ.ける"), +("つ.く"), +("た.てる"), +("さ.す"), +("とぼ.す"), +("とも.す"), +("ぼち"), +("とお.る"), +("とお.り"), +("-とお.り"), +("-どお.り"), +("とお.す"), +("とお.し"), +("-どお.し"), +("かよ.う"), +("こた.える"), +("こた.え"), +("みせ"), +("たな"), +("うち"), +("おとうと"), +("いけ"), +("みち"), +("いう"), +("よ.む"), +("-よ.み"), +("ふゆ"), +("かたな"), +("そり"), +("ひがし"), +("みなみ"), +("しし"), +("うま"), +("うま-"), +("ま"), +("う.る"), +("う.れる"), +("か.う"), +("ちち"), +("わ.ける"), +("わ.け"), +("わ.かれる"), +("わ.かる"), +("わ.かつ"), +("なか.ば"), +("むぎ"), +("き.く"), +("き.こえる"), +("こめ"), +("よね"), +("はは"), +("も"), +("かた"), +("-かた"), +("-がた"), +("つが.い"), +("ある.く"), +("あゆ.む"), +("さと"), +("ことわり"), +("く.る"), +("きた.る"), +("きた.す"), +("き.たす"), +("き.たる"), +("き"), +("こ"), +("いもうと"), +("よろず"), +("よ"), +("よる"), +("もち.いる"), +("な.く"), +("な.る"), +("な.らす"), +("きた"), +("かど"), +("と"), +("はな.す"), +("はなし"), +("け"), +("の"), +("の-"), +("かぜ"), +("かざ-"), +("とも"), +("あ.かり"), +("あか.るい"), +("あか.るむ"), +("あか.らむ"), +("あき.らか"), +("あ.ける"), +("-あ.け"), +("あ.く"), +("あ.くる"), +("あ.かす"), +("ごと"), +("-ごと.に"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('引', 'ひ.く'), +('引', 'ひ.ける'), +('雲', 'くも'), +('雲', '-ぐも'), +('園', 'その'), +('何', 'なに'), +('何', 'なん'), +('何', 'なに-'), +('何', 'なん-'), +('羽', 'は'), +('羽', 'わ'), +('羽', 'はね'), +('夏', 'なつ'), +('画', 'えが.く'), +('画', 'かく.する'), +('画', 'かぎ.る'), +('画', 'はかりごと'), +('画', 'はか.る'), +('遠', 'とお.い'), +('回', 'まわ.る'), +('回', '-まわ.る'), +('回', '-まわ.り'), +('回', 'まわ.す'), +('回', '-まわ.す'), +('回', 'まわ.し-'), +('回', '-まわ.し'), +('回', 'もとお.る'), +('回', 'か.える'), +('歌', 'うた'), +('歌', 'うた.う'), +('海', 'うみ'), +('会', 'あ.う'), +('会', 'あ.わせる'), +('会', 'あつ.まる'), +('外', 'そと'), +('外', 'ほか'), +('外', 'はず.す'), +('外', 'はず.れる'), +('外', 'と-'), +('角', 'かど'), +('角', 'つの'), +('家', 'いえ'), +('家', 'や'), +('家', 'うち'), +('活', 'い.きる'), +('活', 'い.かす'), +('活', 'い.ける'), +('楽', 'たの.しい'), +('楽', 'たの.しむ'), +('楽', 'この.む'), +('丸', 'まる'), +('丸', 'まる.める'), +('丸', 'まる.い'), +('岩', 'いわ'), +('顔', 'かお'), +('記', 'しる.す'), +('間', 'あいだ'), +('間', 'ま'), +('間', 'あい'), +('魚', 'うお'), +('魚', 'さかな'), +('魚', '-ざかな'), +('帰', 'かえ.る'), +('帰', 'かえ.す'), +('帰', 'おく.る'), +('帰', 'とつ.ぐ'), +('牛', 'うし'), +('教', 'おし.える'), +('教', 'おそ.わる'), +('強', 'つよ.い'), +('強', 'つよ.まる'), +('強', 'つよ.める'), +('強', 'し.いる'), +('強', 'こわ.い'), +('弓', 'ゆみ'), +('京', 'みやこ'), +('兄', 'あに'), +('近', 'ちか.い'), +('形', 'かた'), +('形', '-がた'), +('形', 'かたち'), +('形', 'なり'), +('言', 'い.う'), +('言', 'こと'), +('元', 'もと'), +('原', 'はら'), +('戸', 'と'), +('計', 'はか.る'), +('計', 'はか.らう'), +('古', 'ふる.い'), +('古', 'ふる-'), +('古', '-ふる.す'), +('語', 'かた.る'), +('語', 'かた.らう'), +('考', 'かんが.える'), +('考', 'かんが.え'), +('光', 'ひか.る'), +('光', 'ひかり'), +('午', 'うま'), +('交', 'まじ.わる'), +('交', 'まじ.える'), +('交', 'ま.じる'), +('交', 'まじ.る'), +('交', 'ま.ざる'), +('交', 'ま.ぜる'), +('交', '-か.う'), +('交', 'か.わす'), +('交', 'かわ.す'), +('交', 'こもごも'), +('谷', 'たに'), +('谷', 'きわ.まる'), +('後', 'のち'), +('後', 'うし.ろ'), +('後', 'うしろ'), +('後', 'あと'), +('後', 'おく.れる'), +('今', 'いま'), +('国', 'くに'), +('黒', 'くろ'), +('黒', 'くろ.ずむ'), +('黒', 'くろ.い'), +('細', 'ほそ.い'), +('細', 'ほそ.る'), +('細', 'こま.か'), +('細', 'こま.かい'), +('行', 'い.く'), +('行', 'ゆ.く'), +('行', '-ゆ.き'), +('行', '-ゆき'), +('行', '-い.き'), +('行', '-いき'), +('行', 'おこな.う'), +('行', 'おこ.なう'), +('黄', 'き'), +('黄', 'こ-'), +('高', 'たか.い'), +('高', 'たか'), +('高', '-だか'), +('高', 'たか.まる'), +('高', 'たか.める'), +('作', 'つく.る'), +('作', 'つく.り'), +('作', '-づく.り'), +('合', 'あ.う'), +('合', '-あ.う'), +('合', 'あ.い'), +('合', 'あい-'), +('合', '-あ.い'), +('合', '-あい'), +('合', 'あ.わす'), +('合', 'あ.わせる'), +('合', '-あ.わせる'), +('広', 'ひろ.い'), +('広', 'ひろ.まる'), +('広', 'ひろ.める'), +('広', 'ひろ.がる'), +('広', 'ひろ.げる'), +('公', 'おおやけ'), +('社', 'やしろ'), +('春', 'はる'), +('寺', 'てら'), +('算', 'そろ'), +('秋', 'あき'), +('秋', 'とき'), +('止', 'と.まる'), +('止', '-ど.まり'), +('止', 'と.める'), +('止', '-と.める'), +('止', '-ど.め'), +('止', 'とど.める'), +('止', 'とど.め'), +('止', 'とど.まる'), +('止', 'や.める'), +('止', 'や.む'), +('止', '-や.む'), +('止', 'よ.す'), +('止', '-さ.す'), +('止', '-さ.し'), +('時', 'とき'), +('時', '-どき'), +('首', 'くび'), +('室', 'むろ'), +('市', 'いち'), +('弱', 'よわ.い'), +('弱', 'よわ.る'), +('弱', 'よわ.まる'), +('弱', 'よわ.める'), +('少', 'すく.ない'), +('少', 'すこ.し'), +('紙', 'かみ'), +('思', 'おも.う'), +('思', 'おもえら.く'), +('思', 'おぼ.す'), +('書', 'か.く'), +('書', '-が.き'), +('書', '-がき'), +('姉', 'あね'), +('姉', 'はは'), +('場', 'ば'), +('矢', 'や'), +('自', 'みずか.ら'), +('自', 'おの.ずから'), +('自', 'おの.ずと'), +('食', 'く.う'), +('食', 'く.らう'), +('食', 'た.べる'), +('食', 'は.む'), +('新', 'あたら.しい'), +('新', 'あら.た'), +('新', 'あら-'), +('新', 'にい-'), +('図', 'え'), +('図', 'はか.る'), +('数', 'かず'), +('数', 'かぞ.える'), +('数', 'しばしば'), +('数', 'せ.める'), +('数', 'わずらわ.しい'), +('心', 'こころ'), +('心', '-ごころ'), +('親', 'おや'), +('親', 'おや-'), +('親', 'した.しい'), +('親', 'した.しむ'), +('声', 'こえ'), +('声', 'こわ-'), +('西', 'にし'), +('雪', 'ゆき'), +('色', 'いろ'), +('晴', 'は.れる'), +('晴', 'は.れ'), +('晴', 'は.れ-'), +('晴', '-ば.れ'), +('晴', 'は.らす'), +('星', 'ほし'), +('星', '-ぼし'), +('線', 'すじ'), +('切', 'き.る'), +('切', '-き.る'), +('切', 'き.り'), +('切', '-き.り'), +('切', '-ぎ.り'), +('切', 'き.れる'), +('切', '-き.れる'), +('切', 'き.れ'), +('切', '-き.れ'), +('切', '-ぎ.れ'), +('前', 'まえ'), +('前', '-まえ'), +('船', 'ふね'), +('船', 'ふな-'), +('走', 'はし.る'), +('組', 'く.む'), +('組', 'くみ'), +('組', '-ぐみ'), +('多', 'おお.い'), +('多', 'まさ.に'), +('多', 'まさ.る'), +('体', 'からだ'), +('体', 'かたち'), +('太', 'ふと.い'), +('太', 'ふと.る'), +('直', 'ただ.ちに'), +('直', 'なお.す'), +('直', '-なお.す'), +('直', 'なお.る'), +('直', 'なお.き'), +('直', 'す.ぐ'), +('長', 'なが.い'), +('長', 'おさ'), +('当', 'あ.たる'), +('当', 'あ.たり'), +('当', 'あ.てる'), +('当', 'あ.て'), +('当', 'まさ.に'), +('当', 'まさ.にべし'), +('台', 'うてな'), +('台', 'われ'), +('台', 'つかさ'), +('朝', 'あさ'), +('知', 'し.る'), +('知', 'し.らせる'), +('頭', 'あたま'), +('頭', 'かしら'), +('頭', '-がしら'), +('頭', 'かぶり'), +('同', 'おな.じ'), +('昼', 'ひる'), +('鳥', 'とり'), +('点', 'つ.ける'), +('点', 'つ.く'), +('点', 'た.てる'), +('点', 'さ.す'), +('点', 'とぼ.す'), +('点', 'とも.す'), +('点', 'ぼち'), +('通', 'とお.る'), +('通', 'とお.り'), +('通', '-とお.り'), +('通', '-どお.り'), +('通', 'とお.す'), +('通', 'とお.し'), +('通', '-どお.し'), +('通', 'かよ.う'), +('答', 'こた.える'), +('答', 'こた.え'), +('店', 'みせ'), +('店', 'たな'), +('内', 'うち'), +('弟', 'おとうと'), +('池', 'いけ'), +('道', 'みち'), +('道', 'いう'), +('読', 'よ.む'), +('読', '-よ.み'), +('冬', 'ふゆ'), +('刀', 'かたな'), +('刀', 'そり'), +('東', 'ひがし'), +('南', 'みなみ'), +('肉', 'しし'), +('馬', 'うま'), +('馬', 'うま-'), +('馬', 'ま'), +('売', 'う.る'), +('売', 'う.れる'), +('買', 'か.う'), +('父', 'ちち'), +('分', 'わ.ける'), +('分', 'わ.け'), +('分', 'わ.かれる'), +('分', 'わ.かる'), +('分', 'わ.かつ'), +('半', 'なか.ば'), +('麦', 'むぎ'), +('聞', 'き.く'), +('聞', 'き.こえる'), +('米', 'こめ'), +('米', 'よね'), +('母', 'はは'), +('母', 'も'), +('方', 'かた'), +('方', '-かた'), +('方', '-がた'), +('番', 'つが.い'), +('歩', 'ある.く'), +('歩', 'あゆ.む'), +('里', 'さと'), +('理', 'ことわり'), +('来', 'く.る'), +('来', 'きた.る'), +('来', 'きた.す'), +('来', 'き.たす'), +('来', 'き.たる'), +('来', 'き'), +('来', 'こ'), +('妹', 'いもうと'), +('万', 'よろず'), +('夜', 'よ'), +('夜', 'よる'), +('用', 'もち.いる'), +('鳴', 'な.く'), +('鳴', 'な.る'), +('鳴', 'な.らす'), +('北', 'きた'), +('門', 'かど'), +('門', 'と'), +('話', 'はな.す'), +('話', 'はなし'), +('毛', 'け'), +('野', 'の'), +('野', 'の-'), +('風', 'かぜ'), +('風', 'かざ-'), +('友', 'とも'), +('明', 'あ.かり'), +('明', 'あか.るい'), +('明', 'あか.るむ'), +('明', 'あか.らむ'), +('明', 'あき.らか'), +('明', 'あ.ける'), +('明', '-あ.け'), +('明', 'あ.く'), +('明', 'あ.くる'), +('明', 'あ.かす'), +('毎', 'ごと'), +('毎', '-ごと.に'); + +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("悪", 11, "bad, vice, rascal, false, evil, wrong", "心", 4, 530, 3, true), +("暗", 13, "darkness, disappear, shade, informal, grow dark, be blinded", "日", 3, 1040, 3, true), +("安", 6, "relax, cheap, low, quiet, rested, contented, peaceful", "宀", 4, 144, 3, true), +("委", 8, "committee, entrust to, leave to, devote, discard", "女", 2, 187, 3, true), +("医", 7, "doctor, medicine", "匸", 4, 437, 3, true), +("運", 12, "carry, luck, destiny, fate, lot, transport, progress, advance", "辵", 4, 255, 3, true), +("央", 5, "center, middle", "大", 2, 582, 3, true), +("駅", 14, "station", "馬", 4, 724, 3, true), +("院", 10, "Inst., institution, temple, mansion, school", "阜", 4, 150, 3, true), +("飲", 12, "drink, smoke, take", "食", 4, 969, 3, true), +("界", 9, "world, boundary", "田", 4, 158, 3, true), +("温", 12, "warm", "水", 2, 838, 3, true), +("化", 4, "change, take the form of, influence, enchant, delude, -ization", "匕", 3, 89, 3, true), +("屋", 9, "roof, house, shop, dealer, seller", "尸", 4, 616, 3, true), +("泳", 8, "swim", "水", 3, 1223, 3, true), +("育", 8, "bring up, grow up, raise, rear", "肉", 3, 369, 3, true), +("荷", 10, "baggage, shoulder-pole load, bear (a burden), shoulder (a gun), load, cargo, freight", "艸", 2, 1230, 3, true), +("意", 13, "idea, mind, heart, taste, thought, desire, care, liking", "心", 4, 99, 3, true), +("員", 10, "employee, member, number, the one in charge", "口", 4, 54, 3, true), +("横", 15, "sideways, side, horizontal, width, woof, unreasonable, perverse", "木", 3, 480, 3, true), +("寒", 12, "cold", "宀", 3, 1456, 3, true), +("館", 16, "building, mansion, large building, palace", "食", 4, 613, 3, true), +("岸", 8, "beach", "山", 2, 556, 3, true), +("開", 12, "open, unfold, unseal", "門", 4, 59, 3, true), +("感", 13, "emotion, feeling, sensation", "心", 3, 233, 3, true), +("階", 12, "storey, stair, counter for storeys of a building", "阜", 2, 513, 3, true), +("期", 12, "period, time, date, term", "月", 3, 117, 3, true), +("漢", 13, "Sino-, China", "水", 4, 1487, 3, true), +("客", 9, "guest, visitor, customer, client", "宀", 3, 557, 3, true), +("起", 10, "rouse, wake up, get up", "走", 4, 374, 3, true), +("級", 9, "class, rank, grade", "糸", 1, 785, 3, true), +("銀", 14, "silver", "金", 4, 395, 3, true), +("宮", 10, "Shinto shrine, constellations, palace, princess", "宀", 1, 367, 3, true), +("去", 5, "gone, past, quit, leave, elapse, eliminate, divorce", "厶", 4, 440, 3, true), +("血", 6, "blood", "血", 2, 832, 3, true), +("具", 8, "tool, utensil, means, possess, ingredients, counter for armor, suits, sets of furniture", "八", 3, 629, 3, true), +("君", 7, "mister, you, ruler, male name suffix", "口", 3, 947, 3, true), +("橋", 16, "bridge", "木", 2, 553, 3, true), +("苦", 8, "suffering, trial, worry, hardship, feel bitter, scowl", "艸", 3, 623, 3, true), +("究", 7, "research, study", "穴", 4, 368, 3, true), +("決", 7, "decide, fix, agree upon, appoint", "水", 3, 71, 3, true), +("軽", 12, "lightly, trifling, unimportant", "車", 2, 790, 3, true), +("係", 9, "person in charge, connection, duty, concern oneself", "人", 3, 232, 3, true), +("球", 11, "ball, sphere", "玉", 3, 302, 3, true), +("局", 7, "bureau, board, office, affair, conclusion, court lady, lady-in-waiting, her apartment", "尸", 3, 286, 3, true), +("急", 9, "hurry, emergency, sudden, steep", "心", 4, 309, 3, true), +("研", 9, "polish, study of, sharpen", "石", 4, 336, 3, true), +("区", 4, "ward, district", "匸", 2, 137, 3, true), +("曲", 6, "bend, music, melody, composition, pleasure, injustice, fault, curve, crooked, perverse, lean", "曰", 3, 810, 3, true), +("庫", 10, "warehouse, storehouse", "广", 2, 852, 3, true), +("業", 13, "business, vocation, arts, performance", "木", 4, 43, 3, true), +("県", 9, "prefecture", "目", 2, 140, 3, true), +("向", 6, "yonder, facing, beyond, confront, defy, tend toward, approach", "口", 3, 182, 3, true), +("湖", 12, "lake", "水", 2, 1344, 3, true), +("号", 5, "nickname, number, item, title, pseudonym, name, call", "口", 3, 585, 3, true), +("幸", 8, "happiness, blessing, fortune", "干", 3, 786, 3, true), +("皿", 5, "dish, a helping, plate", "皿", 2, 1812, 3, true), +("港", 12, "harbor", "水", 3, 495, 3, true), +("仕", 5, "attend, doing, official, serve", "人", 4, 439, 3, true), +("根", 10, "root, radical, head (pimple)", "木", 2, 620, 3, true), +("使", 8, "use, send on a mission, order, messenger, envoy, ambassador, cause", "人", 4, 219, 3, true), +("始", 8, "commence, begin", "女", 4, 244, 3, true), +("死", 6, "death, die", "歹", 4, 229, 3, true), +("指", 9, "finger, point to, indicate, put into, play (chess), measure (ruler)", "手", 3, 155, 3, true), +("歯", 12, "tooth, cog", "止", 3, 1106, 3, true), +("次", 6, "next, order, sequence", "欠", 3, 222, 3, true), +("詩", 13, "poem, poetry", "言", 1, 1196, 3, true), +("祭", 11, "ritual, offer prayers, celebrate, deify, enshrine, worship", "示", 2, 1124, 3, true), +("式", 6, "style, ceremony, rite, function, method, system, form, expression", "弋", 3, 251, 3, true), +("実", 8, "reality, truth, seed, fruit, nut", "宀", 3, 68, 3, true), +("持", 9, "hold, have", "手", 4, 119, 3, true), +("主", 5, "lord, chief, master, main thing, principal", "丶", 4, 95, 3, true), +("者", 8, "someone, person", "老", 4, 38, 3, true), +("写", 5, "copy, be photographed, describe", "冖", 4, 453, 3, true), +("集", 12, "gather, meet, congregate, swarm, flock", "隹", 4, 210, 3, true), +("住", 7, "dwell, reside, live, inhabit", "人", 4, 270, 3, true), +("章", 11, "badge, chapter, composition, poem, design", "立", 2, 990, 3, true), +("消", 10, "extinguish, blow out, turn off, neutralize, cancel", "水", 3, 345, 3, true), +("酒", 10, "sake, alcohol", "酉", 3, 1006, 3, true), +("州", 6, "state, province", "巛", 2, 386, 3, true), +("拾", 9, "pick up, gather, find, go on foot, ten", "手", 2, 1479, 3, true), +("終", 11, "end, finish", "糸", 4, 256, 3, true), +("所", 8, "place, extent", "戶", 3, 221, 3, true), +("習", 11, "learn", "羽", 4, 706, 3, true), +("重", 9, "heavy, important, esteem, respect, heap up, pile up, nest of boxes, -fold", "里", 4, 193, 3, true), +("取", 8, "take, fetch, take up", "又", 3, 122, 3, true), +("守", 6, "guard, protect, defend, obey", "宀", 3, 457, 3, true), +("商", 11, "make a deal, selling, dealing in, merchant", "口", 3, 413, 3, true), +("助", 7, "help, rescue, assist", "力", 3, 397, 3, true), +("宿", 11, "inn, lodging, relay station, dwell, lodge, be pregnant, home, dwelling", "宀", 3, 701, 3, true), +("暑", 12, "sultry, hot, summer heat", "日", 1, 1442, 3, true), +("勝", 12, "victory, win, prevail, excel", "力", 3, 185, 3, true), +("昭", 9, "shining, bright", "日", 1, 697, 3, true), +("申", 5, "have the honor to, sign of the monkey, 3-5PM, ninth sign of Chinese zodiac", "田", 3, 492, 3, true), +("植", 12, "plant", "木", 2, 699, 3, true), +("乗", 9, "ride, power, multiplication, record, counter for vehicles, board, mount, join", "丿", 3, 377, 3, true), +("神", 9, "gods, mind, soul", "示", 3, 347, 3, true), +("受", 8, "accept, undergo, answer (phone), take, get, catch, receive", "又", 3, 136, 3, true), +("深", 11, "deep, heighten, intensify, strengthen", "水", 3, 484, 3, true), +("進", 11, "advance, proceed, progress, promote", "辵", 3, 142, 3, true), +("身", 7, "somebody, person, one's station in life", "身", NULL, 320, 3, true), +("真", 10, "true, reality, Buddhist sect", "目", 4, 279, 3, true), +("世", 5, "generation, world, society, public", "一", 4, 135, 3, true), +("昔", 8, "once upon a time, antiquity, old times", "日", 3, 1197, 3, true), +("族", 11, "tribe, family", "方", 4, 393, 3, true), +("息", 10, "breath, respiration, son, interest (on money), nuture, rest, coming to an end", "心", 3, 882, 3, true), +("相", 9, "inter-, mutual, together, each other, minister of state, councillor, aspect, phase, physiognomy", "目", 3, 45, 3, true), +("待", 9, "wait, depend on", "彳", 4, 391, 3, true), +("打", 5, "strike, hit, knock, pound, dozen", "手", 3, 239, 3, true), +("談", 15, "discuss, talk", "言", 3, 272, 3, true), +("柱", 9, "pillar, post, cylinder, support", "木", 2, 1119, 3, true), +("注", 8, "pour, irrigate, shed (tears), flow into, concentrate on, notes, comment, annotate", "水", 4, 497, 3, true), +("炭", 9, "charcoal, coal", "火", 2, 1307, 3, true), +("対", 7, "vis-a-vis, opposite, even, equal, versus, anti-, compare", "寸", 3, 34, 3, true), +("整", 16, "organize, arranging, tune, tone, meter, key (music)", "攴", 1, 478, 3, true), +("送", 9, "escort, send", "辵", 4, 311, 3, true), +("他", 5, "other, another, the others", "人", 3, 543, 3, true), +("短", 12, "short, brevity, fault, defect, weak point", "矢", 2, 689, 3, true), +("帳", 11, "notebook, account book, album, curtain, veil, net, tent", "巾", 1, 1459, 3, true), +("想", 13, "concept, think, idea, thought", "心", 3, 381, 3, true), +("調", 15, "tune, tone, meter, key (music), writing style, prepare, exorcise, investigate, harmonize, mediate", "言", 3, 87, 3, true), +("速", 10, "quick, fast", "辵", 3, 576, 3, true), +("代", 5, "substitute, change, convert, replace, period, age, counter for decades of ages, eras, etc., generation, charge, rate, fee", "人", 4, 66, 3, true), +("着", 12, "don, arrive, wear, counter for suits of clothing", "目", 4, 376, 3, true), +("第", 11, "No., residence", "竹", 1, 160, 3, true), +("全", 6, "whole, entire, all, complete, fulfill", "入", 3, 75, 3, true), +("題", 18, "topic, subject", "頁", 4, 96, 3, true), +("庭", 10, "courtyard, garden, yard", "广", 3, 816, 3, true), +("定", 8, "determine, fix, establish, decide", "宀", 3, 48, 3, true), +("丁", 2, "street, ward, town, counter for guns, tools, leaves or cakes of something, even number, 4th calendar sign", "一", 1, 1312, 3, true), +("都", 11, "metropolis, capital, all, everything", "邑", 3, 123, 3, true), +("笛", 11, "flute, clarinet, pipe, whistle, bagpipe, piccolo", "竹", 1, 1928, 3, true), +("追", 9, "chase, drive away, follow, pursue, meanwhile", "辵", 3, 411, 3, true), +("鉄", 13, "iron", "金", 2, 672, 3, true), +("転", 11, "revolve, turn around, change", "車", 4, 327, 3, true), +("湯", 12, "hot water, bath, hot spring", "水", 2, 1356, 3, true), +("島", 10, "island", "山", 2, 245, 3, true), +("登", 12, "ascend, climb up", "癶", 3, 566, 3, true), +("童", 12, "juvenile, child", "立", 2, 1138, 3, true), +("度", 9, "degrees, occurrence, time, counter for occurrences, consider, attitude", "广", 4, 110, 3, true), +("豆", 7, "beans, pea, midget", "豆", 1, 1422, 3, true), +("動", 11, "move, motion, change, confusion, shift, shake", "力", 4, 73, 3, true), +("投", 7, "throw, discard, abandon, launch into, join, invest in, hurl, give up, sell at a loss", "手", 3, 236, 3, true), +("事", 8, "matter, thing, fact, business, reason, possibly", "亅", 4, 18, 3, true), +("等", 12, "etc., and so forth, class (first), quality, equal, similar", "竹", 3, 798, 3, true), +("筆", 12, "writing brush, writing, painting brush, handwriting", "竹", 2, 1132, 3, true), +("氷", 5, "icicle, ice, hail, freeze, congeal", "水", 2, 1450, 3, true), +("波", 8, "waves, billows, Poland", "水", 2, 740, 3, true), +("美", 9, "beauty, beautiful", "羊", 3, 462, 3, true), +("発", 9, "departure, discharge, publish, emit, start from, disclose, counter for gunshots", "癶", 4, 32, 3, true), +("悲", 12, "grieve, sad, deplore, regret", "心", 3, 1014, 3, true), +("病", 10, "ill, sick", "疒", 4, 384, 3, true), +("表", 8, "surface, table, chart, diagram", "衣", 3, 77, 3, true), +("配", 10, "distribute, spouse, exile, rationing", "酉", 3, 359, 3, true), +("秒", 9, "second (1/60 minute)", "禾", 2, 1015, 3, true), +("反", 4, "anti-", "又", 3, 191, 3, true), +("負", 9, "defeat, negative, -, minus, bear, owe, assume a responsibility", "貝", 3, 443, 3, true), +("部", 11, "section, bureau, dept, class, copy, part, portion, counter for copies of a newspaper or magazine", "邑", 3, 36, 3, true), +("農", 13, "agriculture, farmers", "辰", 2, 385, 3, true), +("鼻", 14, "nose, snout", "鼻", 2, 1632, 3, true), +("畑", 9, "farm, field, garden, one's specialty, (kokuji)", "田", NULL, 1176, 3, true), +("箱", 15, "box, chest, case, bin, railway car", "竹", 3, 1357, 3, true), +("服", 8, "clothing, admit, obey, discharge", "月", 4, 873, 3, true), +("皮", 5, "pelt, skin, hide, leather, skin radical (no. 107)", "皮", 2, 1092, 3, true), +("福", 13, "blessing, fortune, luck, wealth", "示", 3, 467, 3, true), +("倍", 10, "double, twice, times, fold", "人", 2, 714, 3, true), +("品", 9, "goods, refinement, dignity, article, counter for meal courses", "口", 4, 225, 3, true), +("板", 8, "plank, board, plate, stage", "木", 2, 926, 3, true), +("物", 8, "thing, object, matter", "牛", 4, 215, 3, true), +("坂", 7, "slope, incline, hill", "土", 2, 865, 3, true), +("返", 7, "return, answer, fade, repay", "辵", 3, 685, 3, true), +("様", 14, "Esq., way, manner, situation, polite suffix", "木", 3, 493, 3, true), +("薬", 16, "medicine, chemical, enamel, gunpowder, benefit", "艸", 3, 702, 3, true), +("予", 4, "beforehand, previous, myself, I", "亅", 3, 180, 3, true), +("平", 5, "even, flat, peace", "干", 3, 128, 3, true), +("落", 12, "fall, drop, come down, village, hamlet", "艸", 3, 420, 3, true), +("油", 8, "oil, fat", "水", 2, 690, 3, true), +("味", 8, "flavor, taste", "口", 4, 442, 3, true), +("流", 10, "current, a sink, flow, forfeit", "水", 3, 280, 3, true), +("有", 6, "possess, have, exist, happen, occur, approx", "月", 4, 282, 3, true), +("洋", 9, "ocean, sea, foreign, Western style", "水", 4, 763, 3, true), +("放", 8, "set free, release, fire, shoot, emit, banish, liberate", "攴", 3, 288, 3, true), +("遊", 12, "play", "辵", 3, 941, 3, true), +("勉", 10, "exertion, endeavour, encourage, strive, make effort, diligent", "力", 4, 1066, 3, true), +("由", 5, "wherefore, a reason", "田", 3, 325, 3, true), +("面", 9, "mask, face, features, surface", "面", 3, 186, 3, true), +("陽", 12, "sunshine, yang principle, positive, male, heaven, daytime", "阜", 3, 1071, 3, true), +("役", 7, "duty, war, campaign, drafted labor, office, service, role", "彳", 3, 315, 3, true), +("問", 11, "question, ask, problem", "口", 4, 64, 3, true), +("命", 8, "fate, command, decree, destiny, life, appoint", "口", 3, 465, 3, true), +("葉", 12, "leaf, plane, lobe, needle, blade, spear, counter for flat things, fragment, piece", "艸", 3, 414, 3, true), +("列", 6, "file, row, rank, tier, column", "刀", 3, 927, 3, true), +("羊", 6, "sheep", "羊", 1, 1852, 3, true), +("和", 8, "harmony, Japanese style, peace, soften, Japan", "口", 3, 124, 3, true), +("礼", 5, "salute, bow, ceremony, thanks, remuneration", "示", 3, 1185, 3, true), +("路", 13, "path, route, road, distance", "足", 3, 529, 3, true), +("練", 14, "practice, gloss, train, drill, polish, refine", "糸", 2, 788, 3, true), +("緑", 14, "green", "糸", 2, 1180, 3, true), +("両", 6, "both, old Japanese coin, counter for carriages (e.g., in a train), two", "一", 3, 247, 3, true), +("旅", 10, "trip, travel", "方", 4, 783, 3, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("アク"), +("オ"), +("アン"), +("アン"), +("イ"), +("イ"), +("ウン"), +("オウ"), +("エキ"), +("イン"), +("イン"), +("オン"), +("カイ"), +("オン"), +("カ"), +("ケ"), +("オク"), +("エイ"), +("イク"), +("カ"), +("イ"), +("イン"), +("オウ"), +("カン"), +("カン"), +("ガン"), +("カイ"), +("カン"), +("カイ"), +("キ"), +("ゴ"), +("カン"), +("キャク"), +("カク"), +("キ"), +("キュウ"), +("ギン"), +("キュウ"), +("グウ"), +("ク"), +("クウ"), +("キョ"), +("コ"), +("ケツ"), +("グ"), +("クン"), +("キョウ"), +("ク"), +("キュウ"), +("ク"), +("ケツ"), +("ケイ"), +("キョウ"), +("キン"), +("ケイ"), +("キュウ"), +("キョク"), +("キュウ"), +("ケン"), +("ク"), +("オウ"), +("コウ"), +("キョク"), +("コ"), +("ク"), +("ギョウ"), +("ゴウ"), +("ケン"), +("コウ"), +("コ"), +("ゴウ"), +("コウ"), +("ベイ"), +("コウ"), +("シ"), +("ジ"), +("コン"), +("シ"), +("シ"), +("シ"), +("シ"), +("シ"), +("ジ"), +("シ"), +("シ"), +("サイ"), +("シキ"), +("ジツ"), +("シツ"), +("ジ"), +("シュ"), +("ス"), +("シュウ"), +("シャ"), +("シャ"), +("ジャ"), +("シュウ"), +("ジュウ"), +("ヂュウ"), +("チュウ"), +("ショウ"), +("ショウ"), +("シュ"), +("シュウ"), +("ス"), +("シュウ"), +("ジュウ"), +("シュウ"), +("ショ"), +("シュウ"), +("ジュ"), +("ジュウ"), +("チョウ"), +("シュ"), +("シュ"), +("ス"), +("ショウ"), +("ジョ"), +("シュク"), +("ショ"), +("ショウ"), +("ショウ"), +("シン"), +("ショク"), +("ジョウ"), +("ショウ"), +("シン"), +("ジン"), +("ジュ"), +("シン"), +("シン"), +("シン"), +("シン"), +("セイ"), +("セ"), +("ソウ"), +("セキ"), +("シャク"), +("ゾク"), +("ソク"), +("ソウ"), +("ショウ"), +("タイ"), +("ダ"), +("ダース"), +("ダン"), +("チュウ"), +("チュウ"), +("タン"), +("タイ"), +("ツイ"), +("セイ"), +("ソウ"), +("タ"), +("タン"), +("チョウ"), +("ソウ"), +("ソ"), +("チョウ"), +("ソク"), +("ダイ"), +("タイ"), +("チャク"), +("ジャク"), +("ダイ"), +("テイ"), +("ゼン"), +("ダイ"), +("テイ"), +("テイ"), +("ジョウ"), +("チョウ"), +("テイ"), +("チン"), +("トウ"), +("チ"), +("ト"), +("ツ"), +("テキ"), +("ツイ"), +("テツ"), +("テン"), +("トウ"), +("トウ"), +("トウ"), +("ト"), +("ドウ"), +("ショウ"), +("チョウ"), +("ドウ"), +("ド"), +("ト"), +("タク"), +("トウ"), +("ズ"), +("ドウ"), +("トウ"), +("ジ"), +("ズ"), +("トウ"), +("ヒツ"), +("ヒョウ"), +("ハ"), +("ビ"), +("ミ"), +("ハツ"), +("ホツ"), +("ヒ"), +("ビョウ"), +("ヘイ"), +("ヒョウ"), +("ハイ"), +("ビョウ"), +("ハン"), +("ホン"), +("タン"), +("ホ"), +("フ"), +("ブ"), +("ノウ"), +("ビ"), +("ソウ"), +("フク"), +("ヒ"), +("フク"), +("バイ"), +("ヒン"), +("ホン"), +("ハン"), +("バン"), +("ブツ"), +("モツ"), +("ハン"), +("ヘン"), +("ヨウ"), +("ショウ"), +("ヤク"), +("ヨ"), +("シャ"), +("ヘイ"), +("ビョウ"), +("ヒョウ"), +("ラク"), +("ユ"), +("ユウ"), +("ミ"), +("リュウ"), +("ル"), +("ユウ"), +("ウ"), +("ヨウ"), +("ホウ"), +("ユウ"), +("ユ"), +("ベン"), +("ユ"), +("ユウ"), +("ユイ"), +("メン"), +("ベン"), +("ヨウ"), +("ヤク"), +("エキ"), +("モン"), +("メイ"), +("ミョウ"), +("ヨウ"), +("レツ"), +("レ"), +("ヨウ"), +("ワ"), +("オ"), +("カ"), +("レイ"), +("ライ"), +("ロ"), +("ル"), +("レン"), +("リョク"), +("ロク"), +("リョウ"), +("リョ"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('悪', 'アク'), +('悪', 'オ'), +('暗', 'アン'), +('安', 'アン'), +('委', 'イ'), +('医', 'イ'), +('運', 'ウン'), +('央', 'オウ'), +('駅', 'エキ'), +('院', 'イン'), +('飲', 'イン'), +('飲', 'オン'), +('界', 'カイ'), +('温', 'オン'), +('化', 'カ'), +('化', 'ケ'), +('屋', 'オク'), +('泳', 'エイ'), +('育', 'イク'), +('荷', 'カ'), +('意', 'イ'), +('員', 'イン'), +('横', 'オウ'), +('寒', 'カン'), +('館', 'カン'), +('岸', 'ガン'), +('開', 'カイ'), +('感', 'カン'), +('階', 'カイ'), +('期', 'キ'), +('期', 'ゴ'), +('漢', 'カン'), +('客', 'キャク'), +('客', 'カク'), +('起', 'キ'), +('級', 'キュウ'), +('銀', 'ギン'), +('宮', 'キュウ'), +('宮', 'グウ'), +('宮', 'ク'), +('宮', 'クウ'), +('去', 'キョ'), +('去', 'コ'), +('血', 'ケツ'), +('具', 'グ'), +('君', 'クン'), +('橋', 'キョウ'), +('苦', 'ク'), +('究', 'キュウ'), +('究', 'ク'), +('決', 'ケツ'), +('軽', 'ケイ'), +('軽', 'キョウ'), +('軽', 'キン'), +('係', 'ケイ'), +('球', 'キュウ'), +('局', 'キョク'), +('急', 'キュウ'), +('研', 'ケン'), +('区', 'ク'), +('区', 'オウ'), +('区', 'コウ'), +('曲', 'キョク'), +('庫', 'コ'), +('庫', 'ク'), +('業', 'ギョウ'), +('業', 'ゴウ'), +('県', 'ケン'), +('向', 'コウ'), +('湖', 'コ'), +('号', 'ゴウ'), +('幸', 'コウ'), +('皿', 'ベイ'), +('港', 'コウ'), +('仕', 'シ'), +('仕', 'ジ'), +('根', 'コン'), +('使', 'シ'), +('始', 'シ'), +('死', 'シ'), +('指', 'シ'), +('歯', 'シ'), +('次', 'ジ'), +('次', 'シ'), +('詩', 'シ'), +('祭', 'サイ'), +('式', 'シキ'), +('実', 'ジツ'), +('実', 'シツ'), +('持', 'ジ'), +('主', 'シュ'), +('主', 'ス'), +('主', 'シュウ'), +('者', 'シャ'), +('写', 'シャ'), +('写', 'ジャ'), +('集', 'シュウ'), +('住', 'ジュウ'), +('住', 'ヂュウ'), +('住', 'チュウ'), +('章', 'ショウ'), +('消', 'ショウ'), +('酒', 'シュ'), +('州', 'シュウ'), +('州', 'ス'), +('拾', 'シュウ'), +('拾', 'ジュウ'), +('終', 'シュウ'), +('所', 'ショ'), +('習', 'シュウ'), +('習', 'ジュ'), +('重', 'ジュウ'), +('重', 'チョウ'), +('取', 'シュ'), +('守', 'シュ'), +('守', 'ス'), +('商', 'ショウ'), +('助', 'ジョ'), +('宿', 'シュク'), +('暑', 'ショ'), +('勝', 'ショウ'), +('昭', 'ショウ'), +('申', 'シン'), +('植', 'ショク'), +('乗', 'ジョウ'), +('乗', 'ショウ'), +('神', 'シン'), +('神', 'ジン'), +('受', 'ジュ'), +('深', 'シン'), +('進', 'シン'), +('身', 'シン'), +('真', 'シン'), +('世', 'セイ'), +('世', 'セ'), +('世', 'ソウ'), +('昔', 'セキ'), +('昔', 'シャク'), +('族', 'ゾク'), +('息', 'ソク'), +('相', 'ソウ'), +('相', 'ショウ'), +('待', 'タイ'), +('打', 'ダ'), +('打', 'ダース'), +('談', 'ダン'), +('柱', 'チュウ'), +('注', 'チュウ'), +('炭', 'タン'), +('対', 'タイ'), +('対', 'ツイ'), +('整', 'セイ'), +('送', 'ソウ'), +('他', 'タ'), +('短', 'タン'), +('帳', 'チョウ'), +('想', 'ソウ'), +('想', 'ソ'), +('調', 'チョウ'), +('速', 'ソク'), +('代', 'ダイ'), +('代', 'タイ'), +('着', 'チャク'), +('着', 'ジャク'), +('第', 'ダイ'), +('第', 'テイ'), +('全', 'ゼン'), +('題', 'ダイ'), +('庭', 'テイ'), +('定', 'テイ'), +('定', 'ジョウ'), +('丁', 'チョウ'), +('丁', 'テイ'), +('丁', 'チン'), +('丁', 'トウ'), +('丁', 'チ'), +('都', 'ト'), +('都', 'ツ'), +('笛', 'テキ'), +('追', 'ツイ'), +('鉄', 'テツ'), +('転', 'テン'), +('湯', 'トウ'), +('島', 'トウ'), +('登', 'トウ'), +('登', 'ト'), +('登', 'ドウ'), +('登', 'ショウ'), +('登', 'チョウ'), +('童', 'ドウ'), +('度', 'ド'), +('度', 'ト'), +('度', 'タク'), +('豆', 'トウ'), +('豆', 'ズ'), +('動', 'ドウ'), +('投', 'トウ'), +('事', 'ジ'), +('事', 'ズ'), +('等', 'トウ'), +('筆', 'ヒツ'), +('氷', 'ヒョウ'), +('波', 'ハ'), +('美', 'ビ'), +('美', 'ミ'), +('発', 'ハツ'), +('発', 'ホツ'), +('悲', 'ヒ'), +('病', 'ビョウ'), +('病', 'ヘイ'), +('表', 'ヒョウ'), +('配', 'ハイ'), +('秒', 'ビョウ'), +('反', 'ハン'), +('反', 'ホン'), +('反', 'タン'), +('反', 'ホ'), +('負', 'フ'), +('部', 'ブ'), +('農', 'ノウ'), +('鼻', 'ビ'), +('箱', 'ソウ'), +('服', 'フク'), +('皮', 'ヒ'), +('福', 'フク'), +('倍', 'バイ'), +('品', 'ヒン'), +('品', 'ホン'), +('板', 'ハン'), +('板', 'バン'), +('物', 'ブツ'), +('物', 'モツ'), +('坂', 'ハン'), +('返', 'ヘン'), +('様', 'ヨウ'), +('様', 'ショウ'), +('薬', 'ヤク'), +('予', 'ヨ'), +('予', 'シャ'), +('平', 'ヘイ'), +('平', 'ビョウ'), +('平', 'ヒョウ'), +('落', 'ラク'), +('油', 'ユ'), +('油', 'ユウ'), +('味', 'ミ'), +('流', 'リュウ'), +('流', 'ル'), +('有', 'ユウ'), +('有', 'ウ'), +('洋', 'ヨウ'), +('放', 'ホウ'), +('遊', 'ユウ'), +('遊', 'ユ'), +('勉', 'ベン'), +('由', 'ユ'), +('由', 'ユウ'), +('由', 'ユイ'), +('面', 'メン'), +('面', 'ベン'), +('陽', 'ヨウ'), +('役', 'ヤク'), +('役', 'エキ'), +('問', 'モン'), +('命', 'メイ'), +('命', 'ミョウ'), +('葉', 'ヨウ'), +('列', 'レツ'), +('列', 'レ'), +('羊', 'ヨウ'), +('和', 'ワ'), +('和', 'オ'), +('和', 'カ'), +('礼', 'レイ'), +('礼', 'ライ'), +('路', 'ロ'), +('路', 'ル'), +('練', 'レン'), +('緑', 'リョク'), +('緑', 'ロク'), +('両', 'リョウ'), +('旅', 'リョ'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('悪', 'アク', 'evil, wickedness, (role of) the villain (in theatre, etc.), the bad guy'), +('悪魔', 'アクマ', 'devil, demon, fiend, Satan, the Devil, Māra, evil spirits or forces that hinder one''s path to enlightenment'), +('改悪', 'カイアク', 'deterioration, changing for the worse'), +('害悪', 'ガイアク', 'harm, injury, evil (influence)'), +('悪寒', 'オカン', 'chill, shakes, ague'), +('悪血', 'アクチ', 'impure blood'), +('嫌悪', 'ケンオ', 'disgust, hate, repugnance, loathing'), +('憎悪', 'ゾウオ', 'hatred, abhorrence, loathing, detestation'), +('暗', 'アン', 'darkness'), +('暗記', 'アンキ', 'memorization, memorisation, learning by heart'), +('明暗', 'メイアン', 'light and darkness, light and shade'), +('冥暗', 'メイアン', 'gloom, shade'), +('安全', 'アンゼン', 'safety, security'), +('安心', 'アンシン', 'relief, peace of mind'), +('治安', 'チアン', 'public order, public peace, public security, law and order'), +('平安', 'ヘイアン', 'peace, tranquility, tranquillity, Heian period (794-1185)'), +('委員', 'イイン', 'committee member'), +('委託', 'イタク', 'entrusting (something to a person), consignment (of goods), putting in someone''s charge, trust, commission'), +('公取委', 'コウトリイ', 'Japan Fair Trade Commission'), +('公委', 'コウイ', 'public safety commission'), +('医', 'イ', 'medicine, the healing art, healing, curing, doctor'), +('医者', 'イシャ', '(medical) doctor, physician'), +('軍医', 'グンイ', 'military physician or surgeon'), +('校医', 'コウイ', 'school doctor'), +('運', 'ウン', 'fortune, luck'), +('運転手', 'ウンテンシュ', 'driver, chauffeur'), +('機運', 'キウン', 'opportunity, chance, good time (to do), trend, tendency, momentum'), +('命運', 'メイウン', 'fate, destiny'), +('央', 'オウ', 'middle, centre, center'), +('中央', 'チュウオウ', 'centre, center, middle, heart, capital, seat of government'), +('道央', 'ドウオウ', 'central Hokkaido'), +('駅', 'エキ', 'railway station, train station, staging post on a highway (in pre-modern Japan), counter for railway stations and bus stations'), +('駅員', 'エキイン', '(train) station attendant, station employee, station staff'), +('宿駅', 'シュクエキ', 'relay station, post station, stage'), +('終着駅', 'シュウチャクエキ', 'terminal station'), +('院', 'イン', 'house of parliament (congress, diet, etc.), graduate school, postgraduate school, institution (often medical), institutional building, government office, sub-temple, minor temple building, temple, cloister, imperial palace, title bestowed on empresses, princesses, etc., former (esp. of emperors, daimyos, etc.), late'), +('院内', 'インナイ', 'inside the House, inside the Diet, inside the hospital'), +('入院', 'ニュウイン', 'hospitalization, hospitalisation'), +('退院', 'タイイン', 'leaving hospital, discharge from hospital'), +('飲', 'イン', 'drinking (sometimes esp. alcohol), drink, drinking party'), +('飲酒', 'インシュ', 'drinking alcohol'), +('試飲', 'シイン', 'sampling a drink, tasting'), +('暴飲', 'ボウイン', 'heavy drinking'), +('飲食', 'インショク', 'food and drink, eating and drinking'), +('飲酒', 'オンジュ', 'consumption of alcohol (as prohibited by one of the Buddhist precepts), Buddhist precept prohibiting the consumption of alcohol'), +('界', 'カイ', 'community, circles, world, kingdom, erathem, field (electrical), border, boundary, division'), +('界隈', 'カイワイ', 'neighborhood, neighbourhood, vicinity'), +('他界', 'タカイ', 'death, the next world, to pass away, to die'), +('動物界', 'ドウブツカイ', 'Animalia, animal kingdom'), +('温度', 'オンド', 'temperature'), +('温暖', 'オンダン', 'warm, mild, temperate'), +('保温', 'ホオン', 'retaining warmth, keeping heat in, heat insulation'), +('室温', 'シツオン', 'room temperature'), +('化', 'カ', 'action of making something, -ification'), +('化学', 'カガク', 'chemistry'), +('変化', 'ヘンカ', 'change, variation, alteration, mutation, transition, transformation, transfiguration, metamorphosis, variety, diversity, inflection, declension, conjugation, sidestepping'), +('消化', 'ショウカ', 'digestion (of food), digestion (of information), assimilation, thorough understanding, consumption, absorption, using up, meeting (e.g. a quota), completion, losing one''s form and turning into something else'), +('化粧', 'ケショウ', 'make-up, makeup, cosmetics, decoration, dressing, veneer'), +('化粧水', 'ケショウスイ', 'skin lotion, face lotion'), +('応化', 'オウゲ', 'assumption of a suitable form (by a buddha or bodhisattva)'), +('教化', 'キョウケ', 'guidance, teaching people and leading them to Buddhism'), +('屋', 'オク', 'house, building, roof'), +('屋上', 'オクジョウ', 'rooftop'), +('廃屋', 'ハイオク', 'dilapidated house, deserted house'), +('草屋', 'ソウオク', 'thatched hut'), +('泳者', 'エイシャ', 'a swimmer'), +('泳動', 'エイドウ', 'migration, movement, phoresis'), +('水泳', 'スイエイ', 'swimming'), +('競泳', 'キョウエイ', 'competitive swimming, swimming race'), +('育児', 'イクジ', 'childcare, child-rearing, nursing, upbringing'), +('育成', 'イクセイ', 'rearing, training, nurture, cultivation, promotion'), +('飼育', 'シイク', 'breeding, raising, rearing'), +('生育', 'セイイク', 'birth and growth, giving birth and raising, development, breeding'), +('荷', 'カ', 'counter for loads (that can be carried on one''s shoulders)'), +('加担', 'カタン', 'support, participation, assistance, complicity, conspiracy'), +('出荷', 'シュッカ', 'shipping, shipment, forwarding'), +('入荷', 'ニュウカ', 'arrival of goods, goods received'), +('意', 'イ', 'feelings, thoughts, meaning'), +('意味', 'イミ', 'meaning, significance, sense'), +('用意', 'ヨウイ', 'preparation, arrangements, provision, getting ready, laying out (e.g. a meal)'), +('同意', 'ドウイ', 'agreement, consent, approval, assent, same opinion, same view, same meaning'), +('員', 'イン', 'member'), +('員数', 'インズウ', '(total) number (of people or things), count, quota'), +('船員', 'センイン', 'sailor, seaman, seafarer'), +('一員', 'イチイン', 'one person, one member'), +('横断', 'オウダン', 'crossing, traversing, traversing horizontally, passing west to east (or east to west), cutting horizontally'), +('横行', 'オウコウ', 'walking sideways, staggering, striding, being rampant, being widespread, being prevalent'), +('専横', 'センオウ', 'arbitrariness, despotism, high-handedness, tyranny'), +('正横', 'セイオウ', 'abeam'), +('寒', 'カン', 'midwinter, cold season, coldest days of the year'), +('寒気', 'サムケ', 'chill, the shivers, shivering fit, cold, coldness, cold air'), +('悪寒', 'オカン', 'chill, shakes, ague'), +('防寒', 'ボウカン', 'protection against cold'), +('館', 'カン', 'house, hall, building'), +('館内', 'カンナイ', 'in the building'), +('美術館', 'ビジュツカン', 'art museum, art gallery'), +('開館', 'カイカン', 'opening (for that day''s business; of a library, museum, cinema, etc.), opening (of a new library, museum, cinema, etc.)'), +('岸壁', 'ガンペキ', 'quay, wharf, jetty, wall-like shoreline, cliff wall'), +('岸頭', 'ガントウ', 'shore, wharf'), +('護岸', 'ゴガン', 'river dike'), +('対岸', 'タイガン', 'opposite shore'), +('開始', 'カイシ', 'start, commencement, beginning, initiation'), +('開会', 'カイカイ', 'opening of a meeting'), +('展開', 'テンカイ', 'development, evolution, progression, unfolding, (plot) twist, expansion, spreading out, extending, deployment, building up, expansion (of an algebraic expression), development (of a three-dimensional shape), extraction (of compressed data), decompression, unpacking'), +('打開', 'ダカイ', 'break in the deadlock'), +('感', 'カン', 'feeling, sensation, emotion, admiration, impression, interjection'), +('感覚', 'カンカク', 'sense, sensation, feeling, intuition'), +('同感', 'ドウカン', 'same feeling, same sentiment, same opinion, sympathy, agreement, concurrence'), +('痛感', 'ツウカン', 'feeling keenly, fully realizing'), +('階', 'カイ', 'storey, story, floor, stairs, stage (in chronostratigraphy), counter for storeys and floors of a building'), +('階段', 'カイダン', 'stairs, stairway, staircase'), +('中二階', 'チュウニカイ', 'mezzanine floor'), +('位階', 'イカイ', 'court rank'), +('期', 'キ', 'period, time, opportunity, chance, occasion, age, term (e.g. in office), session (e.g. of parliament), stage (e.g. of a disease), season (e.g. of a TV series)'), +('期間', 'キカン', 'period, term, interval'), +('延期', 'エンキ', 'postponement, deferment, adjournment'), +('予期', 'ヨキ', 'expectation, assume will happen, forecast'), +('期', 'ゴ', 'time, moment, limit, time of death, last moment, midnight in red-light districts during the Edo period'), +('期日', 'キジツ', 'fixed date, settlement date'), +('一期', 'イチゴ', 'one''s whole life, one''s lifetime'), +('非業の最期', 'ヒゴウノサイゴ', 'unnatural death, violent death'), +('漢', 'カン', 'China, Han dynasty (of China; 202 BCE-220 CE), Han (majority Chinese ethnic group), man'), +('漢字', 'カンジ', 'kanji, Chinese character'), +('分からず屋', 'ワカラズヤ', 'obstinate person, blockhead'), +('門外漢', 'モンガイカン', 'outsider, layman, amateur'), +('客', 'キャク', 'guest, visitor, customer, client, shopper, spectator, audience, tourist, sightseer, passenger, counter for containers used to entertain guests'), +('客席', 'キャクセキ', 'guest seating (e.g. theater, stadium), passenger seat (e.g. taxi), audience'), +('論客', 'ロンキャク', 'controversialist'), +('賓客', 'ヒンキャク', 'guest of honour, guest of honor, privileged guest, visitor'), +('客', 'キャク', 'guest, visitor, customer, client, shopper, spectator, audience, tourist, sightseer, passenger, counter for containers used to entertain guests'), +('客車', 'キャクシャ', 'passenger car'), +('論客', 'ロンキャク', 'controversialist'), +('賓客', 'ヒンキャク', 'guest of honour, guest of honor, privileged guest, visitor'), +('起床', 'キショウ', 'rising (from one''s bed), getting up, getting out of bed'), +('起源', 'キゲン', 'origin, beginning, source, rise'), +('喚起', 'カンキ', 'arousal, excitation, awakening, evocation'), +('再起', 'サイキ', 'comeback, recovery, restoration, rally'), +('級', 'キュウ', 'class (e.g. school), grade, rank, kyū, kyu, junior rank in martial arts, go, shogi, etc.'), +('級友', 'キュウユウ', 'classmate'), +('上級', 'ジョウキュウ', 'upper level, upper grade, high rank, advanced level, senior level, upper class'), +('高級', 'コウキュウ', 'high-class, high-grade, high-quality, high-end, luxury, high-ranking, high-level, senior'), +('銀', 'ギン', 'silver (Ag), silver coin, money, silver medal, silver colour, silver color, bank, silver general'), +('銀行', 'ギンコウ', 'bank, banking institution'), +('世銀', 'セギン', 'World Bank'), +('水銀', 'スイギン', 'mercury (Hg)'), +('宮', 'キュウ', 'palace, tonic (of the Japanese and Chinese pentatonic scale), ancient Chinese punishment (castration for men, or confinement for women), zodiacal sign'), +('宮殿', 'キュウデン', 'palace'), +('離宮', 'リキュウ', 'imperial villa, royal villa, detached palace'), +('巨蟹宮', 'キョカイキュウ', 'Cancer (4th zodiacal sign), the Crab'), +('宮司', 'グウジ', 'chief priest'), +('宮寺', 'グウジ', 'Buddhist temple within a Shinto shrine'), +('二宮', 'ニグウ', 'the Two Ise Shrines'), +('東宮', 'トウグウ', 'crown prince'), +('宮内庁', 'クナイチョウ', 'Imperial Household Agency'), +('宮内', 'クナイ', 'inside the Imperial Palace, Department of the Imperial Household'), +('月宮', 'ゲッキュウ', 'moon palace of the Hindu god Chandra'), +('夙', 'シュク', 'outcasts common around the Kyoto region from the Kamakura period to the Edo period'), +('内宮', 'ナイクウ', 'Inner Ise Shrine'), +('外宮', 'ゲクウ', 'outer shrine of the Ise Grand Shrine'), +('去年', 'キョネン', 'last year'), +('去就', 'キョシュウ', 'leaving or staying, (one''s) course of action, (one''s) position, (one''s) attitude'), +('除去', 'ジョキョ', 'removal, getting rid of'), +('死去', 'シキョ', 'death, decease, passing away'), +('去年', 'キョネン', 'last year'), +('大過去', 'ダイカコ', 'past perfect tense, pluperfect'), +('不定過去', 'フテイカコ', 'aorist tense (in Greek), past-perfective tense'), +('血液', 'ケツエキ', 'blood'), +('血圧', 'ケツアツ', 'blood pressure'), +('輸血', 'ユケツ', 'blood transfusion'), +('出血', 'シュッケツ', 'bleeding, haemorrhage, hemorrhage, bleeding money, red ink, selling below cost'), +('具', 'グ', 'tool, means, ingredients (added to soup, rice, etc.), counter for sets of armor, utensils, furniture, etc.'), +('具合', 'グアイ', 'condition, state, health, state (of health), way, manner, circumstance, luck, face, dignity, decency, propriety'), +('玩具', 'オモチャ', 'toy, (person or thing treated as a) plaything'), +('敬具', 'ケイグ', 'Yours sincerely, Yours truly, Sincerely yours'), +('君', 'クン', 'Mr (junior), master, boy'), +('君主', 'クンシュ', 'ruler, monarch, sovereign'), +('細君', 'サイクン', 'one''s wife, wife (of someone below the speaker in rank)'), +('名君', 'メイクン', 'wise ruler, enlightened monarch, benevolent lord'), +('橋', 'キョウ', 'pons (pontes), pons Varolii, pontine, part of the brain stem (links the medulla oblongata and cerebellum with the midbrain)'), +('橋梁', 'キョウリョウ', 'bridge'), +('桟橋', 'サンバシ', 'wharf, bridge, jetty, pier'), +('石橋', 'イシバシ', 'stone bridge'), +('苦', 'ク', 'pain, anguish, suffering, distress, anxiety, worry, trouble, difficulty, hardship, duhkha (suffering)'), +('苦痛', 'クツウ', 'pain, agony, bitterness'), +('刻苦', 'コック', 'hard work'), +('病苦', 'ビョウク', 'pain of sickness'), +('究極', 'キュウキョク', 'ultimate, final, last, eventual'), +('究明', 'キュウメイ', 'investigation (esp. in academic and scientific contexts)'), +('研究', 'ケンキュウ', 'study, research, investigation'), +('追究', 'ツイキュウ', 'investigation (e.g. academically, of the unknown), close inquiry (enquiry)'), +('究竟', 'クキョウ', 'culmination, conclusion'), +('究竟', 'クッキョウ', 'after all, in the end, finally, excellent, superb, handy, appropriate, ideal, robust, brawny, muscular, strong, sturdy'), +('決', 'ケツ', 'decision, vote'), +('決意', 'ケツイ', 'decision, determination, resolution'), +('解決', 'カイケツ', 'settlement, solution, resolution'), +('可決', 'カケツ', 'approval, adoption (of a motion, bill, etc.), passage'), +('軽', 'ケイ', 'light (e.g. aircraft, truck), light motor vehicle (up to 660cc and 64bhp), kei car'), +('軽快', 'ケイカイ', 'light (of movements), nimble, sprightly, springy, light-hearted, cheerful, buoyant, jaunty, casual (e.g. clothing), rhythmical (e.g. melody), taking a turn for the better (of an illness), receding of symptoms, recovery, convalescence'), +('軽々', 'ケイケイ', 'indiscreetly, thoughtlessly, carelessly, frivolously'), +('酌量減軽', 'シャクリョウゲンケイ', 'reduction of punishment in the light of extenuating circumstances'), +('軽忽', 'キョウコツ', 'indiscreet, thoughtless, absurd, laughable, disdaining, belittling'), +('常不軽', 'ジョウフキョウ', 'Sadaparibhuta (bodhisattva)'), +('剽軽', 'ヒョウキン', 'facetious, droll, funny'), +('係争', 'ケイソウ', 'dispute, contention, conflict, controversy'), +('係数', 'ケイスウ', 'coefficient, factor, proportional constant'), +('相関関係', 'ソウカンカンケイ', 'correlation, interrelation, intertwining'), +('三角関係', 'サンカクカンケイ', 'love triangle, eternal triangle'), +('球', 'キュウ', 'sphere, globe, ball, bulb, ball, sphere, counter for pitches'), +('球技', 'キュウギ', 'ball game (e.g. baseball, tennis, soccer), billiards'), +('打球', 'ダキュウ', 'hitting (a ball with a bat, racket, golf club, etc.), batting, batted ball, struck ball'), +('投球', 'トウキュウ', 'pitching, throwing a ball, bowling (in cricket), pitched ball'), +('局', 'キョク', 'bureau, department, office (e.g. post, telephone), broadcasting station (e.g. television, radio), channel, exchange, affair, situation, game (of go, shogi, etc.)'), +('局員', 'キョクイン', 'clerk, (bureau, post-office) staff'), +('観光局', 'カンコウキョク', '(national) tourist bureau, tourist board, tourist office'), +('医局', 'イキョク', 'medical office (esp. in a hospital), doctor''s office'), +('急', 'キュウ', 'sudden, abrupt, unexpected, urgent, pressing, steep, sharp, precipitous, rapid, swift, fast, emergency, crisis, danger, urgency, hurrying, haste, (in gagaku or noh) end of a song'), +('急行', 'キュウコウ', 'hurrying (to somewhere), rushing, hastening, express (train)'), +('準急', 'ジュンキュウ', 'semi-express train, local express train, sub-express train'), +('快急', 'カイキュウ', 'rapid express (train)'), +('研究室', 'ケンキュウシツ', 'laboratory, seminar room, professor''s office'), +('研究', 'ケンキュウ', 'study, research, investigation'), +('予研', 'ヨケン', 'National Institute of Health'), +('技研', 'ギケン', 'technical research institute'), +('区', 'ク', 'ward, borough, city (in Tokyo), district (e.g. electoral), section, zone (e.g. postal)'), +('区別', 'クベツ', 'distinction, differentiation, classification'), +('学区', 'ガック', 'school district, school area'), +('鉱区', 'コウク', 'mining area, mine lot'), +('曲', 'キョク', 'composition, piece of music, song, track (on a record), tune, melody, air, enjoyment, fun, interest, pleasure'), +('曲目', 'キョクモク', 'name of a piece of music, (musical) number, (musical) program, programme, selection (of music), list of songs'), +('作曲', 'サッキョク', 'composition (of music), setting, writing music'), +('選曲', 'センキョク', 'selection of music, song selection'), +('庫内', 'コナイ', 'inside (a refrigerator, warehouse, etc.)'), +('住宅金融公庫', 'ジュウタクキンユウコウコ', 'Government Housing Loan Corporation'), +('公庫', 'コウコ', 'finance corporation'), +('蔵', 'クラ', 'warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator'), +('庫院', 'クイン', 'kitchen-cum-office of a Zen temple or monastery, where meals are prepared and senior priests have their offices'), +('業', 'ギョウ', 'work, business, company, agency, study'), +('業者', 'ギョウシャ', 'trader, dealer, businessperson, company, vendor, supplier, manufacturer, maker, contractor, fellow trader, people in the same trade'), +('授業', 'ジュギョウ', 'lesson, class work, teaching, instruction'), +('卒業', 'ソツギョウ', 'graduation, completion (of a course), moving on (from), outgrowing (something), leaving (a group, company, etc.), quitting'), +('業', 'ゴウ', 'karma, result of one''s karma, fate, destiny, uncontrollable temper'), +('業因', 'ゴウイン', 'karma'), +('罪業', 'ザイゴウ', 'sin, iniquity, crime'), +('正業', 'ショウゴウ', 'right action, correct meditative activity (in Jodo, saying the name of Amitabha)'), +('県', 'ケン', 'prefecture (Japan), county (China, Taiwan, Norway, etc.), department (France), province (Italy, Spain, etc.)'), +('県知事', 'ケンチジ', 'prefectural governor'), +('兵庫県', 'ヒョウゴケン', 'Hyōgo Prefecture (Kinki area)'), +('同県', 'ドウケン', 'the same prefecture'), +('向上', 'コウジョウ', 'elevation, rise, improvement, advancement, progress'), +('向後', 'コウゴ', 'hereafter'), +('傾向', 'ケイコウ', 'tendency, trend, inclination'), +('志向', 'シコウ', 'intention, aim, preference (for), orientation (towards a goal)'), +('湖', 'コ', 'lake (in place names)'), +('湖畔', 'コハン', 'lake shore'), +('琵琶湖', 'ビワコ', 'Lake Biwa, Biwako'), +('汽水湖', 'キスイコ', 'brackish lake'), +('号', 'ゴウ', 'number, edition, make, model, issue, part of that group, sobriquet, pen-name, size (of printing types, canvases, knitting needles, etc.), suffix attached to names of ships, trains, airplanes, etc.'), +('号車', 'ゴウシャ', 'suffix for train car numbers'), +('符号', 'フゴウ', 'sign, mark, symbol, code, sign (e.g. positive, negative)'), +('年号', 'ネンゴウ', 'name of an imperial era (e.g. Heisei, Shōwa), Japanese era name'), +('幸', 'サチ', 'good luck, fortune, happiness, harvest, yield'), +('幸運', 'コウウン', 'good luck, fortune'), +('親不孝', 'オヤフコウ', 'lack of filial piety, disobedience to one''s parents'), +('御幸', 'ギョウキ', 'imperial visit, imperial outing'), +('器皿', 'キベイ', 'bowl, plate, dish'), +('港', 'コウ', 'harbour'), +('港内', 'コウナイ', 'inside the harbour, inside the harbor'), +('入港', 'ニュウコウ', 'entry into port, arriving in harbor'), +('開港', 'カイコウ', 'opening a port (seaport, airport, etc.), starting operations at a port, opening a port to foreign vessels or trade'), +('仕', 'シ', 'official, civil service'), +('仕事', 'シゴト', 'work, job, labor, labour, business, task, assignment, occupation, employment, work'), +('社会奉仕', 'シャカイホウシ', 'voluntary social service'), +('勤労奉仕', 'キンロウホウシ', 'labor service, labour service'), +('仕込み', 'ジコミ', 'learned at ..., acquired at ...'), +('仕丁', 'シチョウ', 'men pressed into forced labor (ritsuryō system), palanquin bearer (Edo period)'), +('致仕', 'チシ', 'resignation, seventy years of age'), +('根', 'コン', 'stick-to-itiveness, perseverance, persistence, radical (esp. one that tends to ionize easily), root, indriya (faculty of the body having a specific function, i.e. the sensory organs)'), +('根気', 'コンキ', 'patience, perseverance, persistence, tenacity, energy'), +('利根', 'リコン', 'intelligence, cleverness, innate aptitude'), +('球根', 'キュウコン', '(plant) bulb'), +('使', 'シ', 'messenger, police and judicial chief (Heian and Kamakura periods), klesha (polluting thoughts such as greed, hatred and delusion, which result in suffering)'), +('使用', 'シヨウ', 'use, application, employment, utilization, utilisation'), +('行使', 'コウシ', 'use, exercise (of one''s right, authority, power, etc.)'), +('酷使', 'コクシ', 'exploitation, overuse, abuse'), +('始終', 'シジュウ', 'continuously, from beginning to end, from first to last'), +('始発', 'シハツ', 'first departure (of the day), first train, first bus, departing one''s home station (of a train, bus, etc.)'), +('開始', 'カイシ', 'start, commencement, beginning, initiation'), +('創始', 'ソウシ', 'creation, founding, initiating'), +('死', 'シ', 'death, decease, (an) out, death penalty (by strangulation or decapitation; most severe of the five ritsuryō punishments)'), +('死ぬ', 'シヌ', 'to die, to pass away, to lose spirit, to lose vigor, to look dead, to cease, to stop'), +('生死', 'セイシ', 'life and death, life or death, samsara (cycle of death and rebirth), death'), +('水死', 'スイシ', 'death by drowning'), +('指導', 'シドウ', 'guidance, leadership, instruction, direction, coaching, shido (disciplinary action for a minor infringement of the rules of judo)'), +('指定', 'シテイ', 'designation, specification, assignment, appointment, pointing at'), +('中指', 'ナカユビ', 'middle finger, long finger, second finger, tall finger, middle toe, third toe'), +('食指', 'ショクシ', 'index finger, forefinger'), +('歯', 'シ', 'tooth, age, years'), +('歯科医', 'シカイ', 'dentist'), +('抜歯', 'バッシ', 'tooth extraction'), +('義歯', 'ギシ', 'artificial tooth'), +('次', 'ジ', 'next, hypo- (i.e. containing an element with low valence), order, sequence, time, times'), +('次回', 'ジカイ', 'next time (occasion)'), +('目次', 'モクジ', 'table of contents, contents'), +('数次', 'スウジ', 'several times'), +('次第', 'シダイ', 'depending on, as soon as, immediately after, upon, as (e.g. "as one is told", "as one wishes"), whatever (e.g. "whatever is at hand"), order, program, programme, precedence, circumstances, course of events, state of things, reason'), +('次第に', 'シダイニ', 'gradually (progress into a state), in sequence, in order, in turn'), +('路次', 'ロジ', 'way, path, route, along the way, along the road'), +('詩', 'シ', 'poem, poetry, verse, Chinese poem'), +('詩人', 'シジン', 'poet'), +('風物詩', 'フウブツシ', 'feature of the season, something characteristic of a particular season, poem about natural scenery or a particular season'), +('近代詩', 'キンダイシ', 'modern poetry, modern-style poetry'), +('祭日', 'サイジツ', 'national holiday, festival day'), +('祭壇', 'サイダン', 'altar'), +('感謝祭', 'カンシャサイ', 'Thanksgiving (Day)'), +('葬祭', 'ソウサイ', 'funerals and ceremonial occasions'), +('式', 'シキ', 'equation, formula, expression, ceremony, style, enforcement regulations (of the ritsuryō)'), +('式典', 'シキテン', 'ceremony, rites'), +('形式', 'ケイシキ', 'form (as opposed to substance), format, form, style, manner, formality, form, mode, form, form (bilinear, quadratic, etc.)'), +('挙式', 'キョシキ', 'holding a ceremony, wedding ceremony'), +('実', 'ジツ', 'truth, reality, sincerity, honesty, fidelity, content, substance, (good) result'), +('実現', 'ジツゲン', 'implementation (e.g. of a system), materialization, materialisation, realization, realisation, actualization, actualisation'), +('充実', 'ジュウジツ', 'fullness, completeness, perfection, substantiality, enhancement, improvement, enrichment, upgrading, replenishment, repletion'), +('名実', 'メイジツ', 'in name and in reality, nominally and virtually, form and contents'), +('故実', 'コジツ', 'ancient practices, old customs'), +('持', 'ジ', 'draw (in go, poetry contest, etc.), tie'), +('持参', 'ジサン', 'bringing, taking, carrying'), +('維持', 'イジ', 'maintenance, preservation, improvement'), +('支持', 'シジ', 'support, backing, endorsement, approval, propping up, holding up, support'), +('主', 'シュ', '(one''s) master, Lord, the main thing, the majority, the primary concern'), +('主義', 'シュギ', 'doctrine, rule, principle, -ism'), +('君主', 'クンシュ', 'ruler, monarch, sovereign'), +('救世主', 'キュウセイシュ', 'saviour, savior, messiah, Messiah, Jesus Christ'), +('主', 'ス', 'honorific (or familiar) suffix used after a name'), +('法主', 'ホッス', 'high priest'), +('座主', 'ザス', 'temple''s head priest'), +('主', 'シュ', '(one''s) master, Lord, the main thing, the majority, the primary concern'), +('主従', 'シュウジュウ', 'master and servant, lord and retainer, employer and employee'), +('者', 'シャ', 'person, -er, expert, geisha, prostitute'), +('学者', 'ガクシャ', 'scholar, academic, scientist, learned person, person of learning'), +('参加者', 'サンカシャ', 'participant, entrant, player, competitor'), +('写真', 'シャシン', 'photograph, photo, picture, snapshot, snap, moving picture, movie'), +('写真家', 'シャシンカ', 'photographer'), +('描写', 'ビョウシャ', 'depiction, description, portrayal'), +('映写', 'エイシャ', 'projection'), +('集', 'シュウ', 'collection, compilation'), +('集団', 'シュウダン', 'group, mass'), +('編集', 'ヘンシュウ', 'editing, compilation'), +('募集', 'ボシュウ', 'recruitment, invitation, selection, advertisement, taking applications, raising (funds, donations, etc.), collection, subscription, solicitation, flotation (of shares, loans, etc.)'), +('住', 'ジュウ', 'dwelling, living'), +('住所', 'ジュウショ', 'address, residence, domicile'), +('衣食住', 'イショクジュウ', 'food, clothing and shelter, necessities of life'), +('移住', 'イジュウ', 'migration, immigration'), +('章', 'ショウ', 'chapter, section, medal, badge, insignia'), +('章句', 'ショウク', 'chapter and verse, paragraph, passage'), +('序章', 'ジョショウ', 'prologue, preface'), +('受章', 'ジュショウ', 'reception of a decoration, reception of an order'), +('消防', 'ショウボウ', 'fire fighting, fire department, fire brigade'), +('消費', 'ショウヒ', 'consumption, expenditure, spending'), +('解消', 'カイショウ', 'cancellation, liquidation, resolution, reduction (e.g. of stress)'), +('抹消', 'マッショウ', 'erasure, striking off, crossing out, cancellation, deletion'), +('酒', 'サケ', 'alcohol, sake'), +('酒造', 'シュゾウ', 'sake brewing'), +('飲酒', 'インシュ', 'drinking alcohol'), +('洋酒', 'ヨウシュ', 'Western wine and spirits, Western liquor'), +('州', 'シュウ', 'state (US, Australia, India, Germany, etc.), province (e.g. Canada), canton (e.g. Switzerland), oblast (e.g. Russia), department (e.g. ancient China), continent, dear'), +('州政府', 'シュウセイフ', 'state government'), +('広州', 'コウシュウ', 'Guangzhou (China), Kwangchow, Canton'), +('沿海州', 'エンカイシュウ', '(Russian) maritime provinces'), +('州', 'ス', 'sandbank, sandbar'), +('洲浜', 'スハマ', 'sandy beach, sandbar that projects into the ocean, particularly in a wavy form, designs and objects with a wavy pattern, sweet mochi cake'), +('白州', 'シラス', 'white sandbar, white sandbank, area in a garden or entrance of a house laid with white sand or pebbles, gravel separating a noh stage from the audience, court of law in the Edo period, in which the parties sat on white sand'), +('中州', 'ナカス', 'sandbank (in a river), sandbar'), +('収集', 'シュウシュウ', 'collecting, accumulating, gathering, collection (of art, stamps, insects, etc.), garbage collection, waste collection'), +('拾得', 'シュウトク', 'finding (lost property), picking up'), +('収拾', 'シュウシュウ', 'control, bringing under control, settling (a matter), putting in order'), +('十', 'ジュウ', 'ten, 10, ten years of age, book containing a collection of poems'), +('10万', 'ジュウマン', '100,000, hundred thousand'), +('終了', 'シュウリョウ', 'end, close, termination'), +('終点', 'シュウテン', 'terminus, last stop (e.g. train)'), +('有終', 'ユウシュウ', 'carrying out to the end, bringing to completion'), +('無終', 'ムシュウ', 'endlessness'), +('所', 'ショ', 'counter for places'), +('所々', 'トコロドコロ', 'here and there, in places'), +('住所', 'ジュウショ', 'address, residence, domicile'), +('所々', 'トコロドコロ', 'here and there, in places'), +('習慣', 'シュウカン', 'habit, (social) custom, practice, convention'), +('習性', 'シュウセイ', 'habit, behavior, behaviour, trait, nature'), +('練習', 'レンシュウ', 'practice, training, drill, (an) exercise, workout'), +('学習', 'ガクシュウ', 'study, learning, tutorial'), +('近習', 'キンジュ', 'attendant'), +('重', 'ジュウ', 'jūbako, multi-tiered food box, heavy, serious, extreme, -fold, -ply'), +('重視', 'ジュウシ', 'regarding as important, attaching importance to, taking a serious view of, putting emphasis on'), +('偏重', 'ヘンチョウ', 'attaching too much importance to, placing disproportionate emphasis on, making too much of'), +('比重', 'ヒジュウ', 'specific gravity, relative density, relative importance, weight'), +('重宝', 'チョウホウ', 'convenient, useful, handy, helpful, finding useful, coming in handy, using often, (priceless) treasure'), +('重複', 'チョウフク', 'duplication, repetition, overlapping, redundancy, restoration'), +('尊重', 'ソンチョウ', 'respect, esteem, regard'), +('偏重', 'ヘンチョウ', 'attaching too much importance to, placing disproportionate emphasis on, making too much of'), +('取', 'シュ', 'appropriation, obtaining'), +('取材', 'シュザイ', 'news coverage, collecting data (e.g. for an article), covering (something for media), interview'), +('聴取', 'チョウシュ', 'hearing (of a statement, opinion, explanation, etc.), asking, questioning (e.g. a suspect), enquiry, listening (e.g. to the radio)'), +('採取', 'サイシュ', 'picking, collecting, harvesting, gathering, extraction'), +('守備', 'シュビ', 'defense, defence'), +('守衛', 'シュエイ', 'security guard, doorkeeper'), +('保守', 'ホシュ', 'maintenance, conservatism, conservativeness, conservation'), +('遵守', 'ジュンシュ', 'observance (of laws, rules, etc.), adherence, obeying, following, abiding by, compliance'), +('守護', 'シュゴ', 'protection, safeguard, shugo (Kamakura or Muromachi period military governor)'), +('居留守', 'イルス', 'pretending to be out'), +('神の留守', 'カミノルス', 'absence of the gods from their shrines in October (while they are visiting the Grand Shrine of Izumo)'), +('商', 'ショウ', 'quotient, business, merchant, dealer, second degree (of the Japanese and Chinese pentatonic scale), Shang dynasty (of China; approx. 1600-1046 BCE), Yin dynasty'), +('商人', 'ショウニン', 'merchant, trader, tradesman, dealer, shopkeeper'), +('通商', 'ツウショウ', 'commerce, trade'), +('画商', 'ガショウ', 'picture dealer, commercial art gallery'), +('助', 'ジョ', 'help, rescue, assistant'), +('助手', 'ジョシュ', 'assistant, helper, assistant (to a professor)'), +('援助', 'エンジョ', 'assistance, aid, support'), +('救助', 'キュウジョ', 'relief, aid, rescue'), +('宿', 'シュク', 'lodging, relay station, post town, constellation, mansion (in Chinese astronomy)'), +('夙', 'シュク', 'outcasts common around the Kyoto region from the Kamakura period to the Edo period'), +('合宿', 'ガッシュク', 'lodging together, training camp, boarding house'), +('寄宿', 'キシュク', 'lodging, boarding, room and board, board and lodging, boarding house, residence hall, dormitory'), +('暑', 'ショ', 'heat, midsummer'), +('暑中見舞', 'ショチュウミマイ', 'summer greeting card, inquiry after someone''s health in the hot season'), +('残暑', 'ザンショ', 'late summer heat, lingering summer heat'), +('避暑', 'ヒショ', 'escaping the summer heat, going somewhere cooler during the summer, summering'), +('勝', 'ショウ', 'win, victory, beautiful scenery, scenic spot, counter for wins'), +('勝敗', 'ショウハイ', 'victory or defeat, outcome (of a game, battle, etc.)'), +('優勝', 'ユウショウ', 'overall victory, championship, winning the title, (being in) heaven, bliss, perfect contentment'), +('大勝', 'タイショウ', 'great victory, crushing victory'), +('昭', 'ショウ', 'nth year in the Shōwa era (1926.12.25-1989.1.7)'), +('昭和', 'ショウワ', 'Shōwa era (1926.12.25-1989.1.7), reminiscent of the Shōwa era, Shōwa-nostalgic, old-fashioned, quaint, old-school'), +('昭昭', 'ショウショウ', 'clear, bright, plain, obvious'), +('申請', 'シンセイ', 'application, request, petition'), +('申告', 'シンコク', 'report, return (e.g. tax), statement, declaration, notification, filing'), +('答申', 'トウシン', 'report, reply, findings'), +('内申', 'ナイシン', 'unofficial report, confidential report'), +('植物', 'ショクブツ', 'plant, vegetation'), +('植民地', 'ショクミンチ', 'colony, (Japanese) settlement (in Brazil)'), +('入植', 'ニュウショク', 'settlement, immigration'), +('移植', 'イショク', 'transplanting (a plant), transplant, grafting, transplantation (of an organ, tissue, etc.), transplant, embryo transfer, embryo transplant, porting (software)'), +('乗', 'ジョウ', '(nth) power, counter for vehicles, multiplication, Buddha''s teachings'), +('乗客', 'ジョウキャク', 'passenger'), +('便乗', 'ビンジョウ', 'taking advantage of (an opportunity), jumping on the bandwagon, taking passage (in), getting a lift, getting a ride'), +('搭乗', 'トウジョウ', 'embarkation, boarding (an aeroplane, airplane)'), +('神', 'シン', 'spirit, psyche, god, deity, divinity, kami'), +('神経', 'シンケイ', 'nerve, nerves, sensitivity'), +('安心', 'アンシン', 'relief, peace of mind'), +('失神', 'シッシン', 'faint, trance, swoon, stupefaction'), +('神', 'シン', 'spirit, psyche, god, deity, divinity, kami'), +('神社', 'ジンジャ', 'Shinto shrine'), +('天神', 'テンジン', 'heavenly god, heavenly gods, spirit of Sugawara no Michizane, Tenmangu shrine (dedicated to Michizane''s spirit), pit of a dried plum, dried plum, tenjin hairstyle, prostitute of the second-highest class (Edo period), tuning peg (on a biwa or shamisen)'), +('石神', 'シャクジン', 'stone which is worshipped, image of a god in stone'), +('受', 'ジュ', 'vedana (sensation)'), +('受験', 'ジュケン', 'taking an examination (esp. for entrance to a school or university)'), +('享受', 'キョウジュ', 'reception, acceptance, enjoyment, being given'), +('傍受', 'ボウジュ', 'interception, monitoring, tapping'), +('親切', 'シンセツ', 'kind, gentle, considerate, generous, friendly, nice'), +('深刻', 'シンコク', 'serious, severe, grave, acute'), +('海深', 'カイシン', 'depth of the sea'), +('最深', 'サイシン', 'deepest'), +('進歩', 'シンポ', 'progress, advance, improvement, development'), +('進学', 'シンガク', 'entering a higher-level school, esp. going on to university'), +('前進', 'ゼンシン', 'advance, moving forward, progress'), +('行進', 'コウシン', 'march, parade'), +('身長', 'シンチョウ', 'height (of body), stature'), +('心身', 'シンシン', 'mind and body'), +('出身', 'シュッシン', 'one''s origin (e.g. city, country, parentage, school)'), +('変身', 'ヘンシン', 'metamorphosis, disguise, transformation, shapeshifting, morphing'), +('真', 'シン', 'truth, reality, genuineness, seriousness, logical truth, printed style writing, star performer'), +('誠に', 'マコトニ', 'indeed, really, absolutely, truly, actually, very, quite'), +('組み写真', 'クミシャシン', 'composite or montage photograph'), +('迫真', 'ハクシン', 'realistic, true to life'), +('世', 'セイ', 'counter for generations, epoch'), +('世紀', 'セイキ', 'century, era, of the century (e.g. fight of the century)'), +('中世', 'チュウセイ', 'Middle Ages (in Japan esp. the Kamakura and Muromachi periods), medieval times, mediaeval times'), +('近世', 'キンセイ', 'recent past, recent times, early modern period (from the Azuchi-Momoyama period to the end of the Edo period)'), +('世', 'セイ', 'counter for generations, epoch'), +('世界', 'セカイ', 'the world, society, the universe, sphere, circle, world, world-renowned, world-famous, realm governed by one Buddha, space'), +('出世', 'シュッセ', 'success in life, getting ahead, successful career, promotion, climbing the corporate ladder, eminence'), +('立身出世', 'リッシンシュッセ', 'success in life'), +('昔日', 'セキジツ', 'old days'), +('昔時', 'セキジ', 'old times, former times'), +('今昔', 'コンジャク', 'past and present'), +('往昔', 'オウセキ', 'ancient times'), +('族', 'ゾク', 'tribe, clan, band, family, (taxonomical) tribe, group (of the periodic table)'), +('族長', 'ゾクチョウ', 'patriarch, head of a family'), +('家族', 'カゾク', 'family'), +('語族', 'ゴゾク', 'language family, family of languages'), +('息', 'ソク', 'son, interest (on a loan, deposit, etc.)'), +('息子', 'ムスコ', 'son, penis'), +('休息', 'キュウソク', 'rest, relief, relaxation'), +('消息', 'ショウソク', 'news (from someone), letter, contact, (someone''s) whereabouts, (someone''s) movements'), +('相', 'ソウ', 'aspect, appearance, look, physiognomy (as an indication of one''s fortune), aspect, phase (e.g. solid, liquid and gaseous)'), +('相続', 'ソウゾク', 'succession, inheritance'), +('粗相', 'ソソウ', 'carelessness, careless mistake, blunder, wetting oneself, soiling oneself, crude, coarse'), +('世相', 'セソウ', 'social conditions, phase of life, (sign of) the times, state of society'), +('相', 'ショウ', 'minister of state'), +('相伴', 'ショウバン', 'partaking, participating, taking part in, sharing (something with someone)'), +('蔵相', 'ゾウショウ', 'Minister of Finance'), +('厚相', 'コウショウ', 'Welfare Minister'), +('待望', 'タイボウ', 'waiting expectantly, waiting eagerly, looking forward to, long-awaited'), +('待遇', 'タイグウ', 'treatment, reception, service, working conditions, salary, pay, remuneration'), +('招待', 'ショウタイ', 'invitation'), +('応対', 'オウタイ', 'dealing with (people, customers, complaints, etc.), receiving (callers, visitors, etc.), attending to, handling, serving'), +('打', 'ダ', 'hitting a ball (with a bat, golf club, etc.), batting, stroke'), +('打', 'ダース', 'dozen'), +('快打', 'カイダ', 'clean hit'), +('二塁打', 'ニルイダ', 'two-base hit, double'), +('打', 'ダース', 'dozen'), +('談', 'ダン', 'talk, story, conversation'), +('談話', 'ダンワ', 'talk, conversation, dialogue, informal expression of opinion, off-the-cuff remarks, comment, discourse'), +('冗談', 'ジョウダン', 'joke, jest, funny story'), +('相談', 'ソウダン', 'consultation, discussion, discussing, asking (someone) for advice'), +('柱', 'チュウ', 'bridge (of a koto, etc.), cylinder, prism'), +('柱穴', 'チュウケツ', 'posthole (archaeology)'), +('支柱', 'シチュウ', 'prop, stay, support, brace, fulcrum'), +('氷柱', 'ツララ', 'icicle, ice pillar (for cooling a room), ice'), +('注', 'チュウ', 'annotation, explanatory note, comment'), +('注意', 'チュウイ', 'attention, notice, heed, care, caution, precaution, advice, warning, caution'), +('発注', 'ハッチュウ', 'ordering (materials), placing an order, order'), +('傾注', 'ケイチュウ', 'devoting (oneself) to, concentrating (one''s efforts) on'), +('炭鉱', 'タンコウ', 'coal mine, (coal) pit, colliery, coal-mine shaft'), +('炭素', 'タンソ', 'carbon (C)'), +('木炭', 'モクタン', 'charcoal'), +('活性炭', 'カッセイタン', 'activated charcoal, activated carbon'), +('対', 'タイ', 'opposite, opposition, versus, vs., v., to (e.g. "winning a game five to three"), equal footing, equal terms, against ..., anti-, toward ..., to ...'), +('対象', 'タイショウ', 'target, object (of worship, study, etc.), subject (of taxation, etc.)'), +('反対', 'ハンタイ', 'opposition, resistance, antagonism, hostility, objection, dissent, reverse, opposite, inverse, contrary'), +('絶対', 'ゼッタイ', 'absolutely, definitely, unconditionally, absolute, unconditional, unmistakable, absoluteness'), +('対', 'ツイ', 'pair, couple, set, antithesis, counter for items that come in pairs, counter for sets (of clothes, small furniture, utensils, etc.)'), +('対になる', 'ツイニナル', 'to form a pair, to pair up'), +('一対', 'イッツイ', 'pair, couple'), +('双対', 'ソウツイ', 'duality'), +('整理', 'セイリ', 'sorting, arrangement, organization, putting in order, adjustment, regulation, liquidation, settlement, consolidation, clearance (e.g. debt), paying off, retrenchment, curtailment, cutting down, disposal'), +('整備', 'セイビ', 'maintenance, servicing, putting in place, establishment, development, preparation, provision, outfitting'), +('調整', 'チョウセイ', 'adjustment, regulation, coordination, reconciliation, tuning, fixing, tailoring'), +('修整', 'シュウセイ', 'adjustment, retouching (in photography)'), +('送料', 'ソウリョウ', 'postage, carriage, shipping charge'), +('送別', 'ソウベツ', 'farewell, send-off'), +('放送', 'ホウソウ', 'broadcasting, broadcast, program, announcement'), +('郵送', 'ユウソウ', 'mailing, posting'), +('他', 'タ', 'other (esp. people and abstract matters)'), +('他人', 'タニン', 'another person, other people, others, unrelated person (i.e. not related by blood), outsider, stranger'), +('自他', 'ジタ', 'oneself and others, (in philosophy) subject and object, transitivity, transitive and intransitive verbs, first person and third person, self-salvation and salvation by faith'), +('排他', 'ハイタ', 'exclusion'), +('短', 'タン', 'fault, defect, weak point, minor, 5-point card'), +('短期', 'タンキ', 'short-term'), +('長短', 'チョウタン', '(relative) length, advantages and disadvantages, pluses and minuses, strong and weak points, merits and demerits'), +('車高短', 'シャコウタン', 'lowered car, car with lowered suspension'), +('帳', 'チョウ', 'book, register'), +('帳消し', 'チョウケシ', 'writing off (a debt), cancellation, balancing the books, cancelling out (gains or losses), making even, making up (for), offsetting, undoing, wiping out'), +('記帳', 'キチョウ', 'registry, entry, book-keeping, signature'), +('台帳', 'ダイチョウ', 'account book, ledger, register'), +('想', 'ソウ', 'conception, idea, thought, samjna (perception)'), +('想像', 'ソウゾウ', 'imagination, supposition, guess'), +('連想', 'レンソウ', 'association (of ideas), being reminded (of something), suggestion'), +('空想', 'クウソウ', 'daydream, fantasy, fancy, vision'), +('想', 'ソウ', 'conception, idea, thought, samjna (perception)'), +('想像', 'ソウゾウ', 'imagination, supposition, guess'), +('お愛想', 'オアイソ', 'compliments, civilities, courtesies, flattery, hospitality, special treatment, entertainment, bill (at a restaurant), check'), +('調', 'チョウ', 'pitch, tone, key, time, tempo, mood, tendency, style, tax paid in kind (ritsuryō period), first a tax on rice fields and households, then on individuals'), +('調査', 'チョウサ', 'investigation, examination, inquiry, enquiry, survey'), +('強調', 'キョウチョウ', 'emphasis, stress, highlighting, underlining, underscoring, accentuating (a feature or certain part), accenting, strong tone (of the market), firm tone'), +('協調', 'キョウチョウ', 'cooperation, conciliation, harmony, coordination'), +('速', 'ソク', 'gear, speed (e.g. 4-speed transmission)'), +('速度', 'ソクド', 'speed, velocity, pace, rate, velocity'), +('加速', 'カソク', 'acceleration, speeding up'), +('減速', 'ゲンソク', 'deceleration'), +('代', 'ダイ', 'charge, cost, price, generation, age, (school) year, cohort, reign, era, a representative of, on behalf of, for (someone), switchboard number, counter for decades of ages, eras, etc., counter for generations (of inheritors to a throne, etc.), proxy application company, pronoun'), +('代金', 'ダイキン', 'price, cost, charge, payment, bill, fee'), +('近代', 'キンダイ', 'present day, modern times, recent times, early modern period (in Japan, usu. from the Meiji Restoration until the end of World War II)'), +('江戸時代', 'エドジダイ', 'Edo period (1603-1868)'), +('代謝', 'タイシャ', 'metabolism, renewal, regeneration, replacing the old with the new'), +('代赭', 'タイシャ', 'red ocher (ochre)'), +('交代', 'コウタイ', 'alternation, change, relief, relay, shift, substitution (sports, etc.), taking turns'), +('永代', 'エイタイ', 'permanence, eternity'), +('着', 'チャク', 'counter for suits of clothing, arriving at ...'), +('着々', 'チャクチャク', 'steadily'), +('到着', 'トウチャク', 'arrival'), +('執着', 'シュウチャク', 'attachment, adhesion, tenacity, fixation, obsession'), +('着す', 'ジャクス', 'to insist on, to cling to, to adhere to'), +('執着', 'シュウチャク', 'attachment, adhesion, tenacity, fixation, obsession'), +('愛着', 'アイチャク', 'attachment (esp. to things), love, affection'), +('第', 'ダイ', 'prefix for forming ordinal numbers'), +('第一', 'ダイイチ', 'first, foremost, number one, most important, best, greatest, most, above all, besides, in any case, to begin with'), +('落第', 'ラクダイ', 'failure (in an examination), failing to advance (to the next year), falling short of the standard, not making the grade'), +('及第', 'キュウダイ', 'passing (an examination), making the grade'), +('邸宅', 'テイタク', 'mansion, residence'), +('全', 'ゼン', 'all, whole, entire, complete, total, pan-, complete (set), in total'), +('全部', 'ゼンブ', 'all, entire, whole, altogether'), +('腎不全', 'ジンフゼン', 'kidney failure, renal failure'), +('大全', 'タイゼン', 'complete collection, large collection, complete works'), +('題', 'ダイ', 'title, subject, theme, topic, problem (on a test), question, counter for questions (on a test)'), +('題名', 'ダイメイ', 'title, caption, heading'), +('出題', 'シュツダイ', 'setting a question (for an exam, quiz, etc.), setting a theme (for composition of poetry)'), +('表題', 'ヒョウダイ', 'title, index, heading, headline, caption'), +('庭園', 'テイエン', 'garden, park'), +('庭球', 'テイキュウ', 'tennis'), +('家庭', 'カテイ', 'home, household, family, hearth'), +('前庭', 'ゼンテイ', 'front garden, front yard, vestibule (of the ear)'), +('定期', 'テイキ', 'fixed period, fixed term, regular, periodic, periodical, fixed-term commuter pass, fixed-term deposit, futures contracts'), +('定価', 'テイカ', 'list price, regular price, established price'), +('予定', 'ヨテイ', 'plans, arrangement, schedule, program, programme, expectation, estimate'), +('否定', 'ヒテイ', 'denial, negation, repudiation, disavowal, negation, NOT operation'), +('定', 'ジョウ', 'certainty, reality, actuality, regular, permanent, samadhi (state of intense concentration achieved through meditation)'), +('定規', 'ジョウギ', '(measuring) ruler'), +('勘定', 'カンジョウ', 'calculation, computation, counting, reckoning, count, bill, check, account, payment (of a bill), settlement (of an account), consideration, allowance'), +('改定', 'カイテイ', 'revision (of a rule, price, etc.), alteration, change'), +('丁', 'チョウ', 'counter for leaves in a book (esp. one with traditional Japanese-style binding), counter for blocks of tofu, counter for servings in a restaurant, counter for long and narrow things such as guns, scissors, spades, hoes, inksticks, palanquins, candles, jinrikishas, shamisen, oars, etc., even number, 109.09 m'), +('丁度', 'チョウド', 'exactly, precisely, just, right, opportunely, fortunately, just (like), as if, as though'), +('一丁', 'イッチョウ', 'one sheet, one page, one leaf, one block of tofu, one serving (in a restaurant), one long and narrow thing (e.g. guns, scissors, spades, hoes, inksticks, palanquins, candles, jinrikishas, shamisen, oars, etc.), one chō (unit of distance, 109.09 m), one game, one task, well then, come then'), +('丁々', 'チョウチョウ', 'clashing of swords, felling of trees, ringing of an ax'), +('丁', 'テイ', 'fourth rank, fourth class, fourth party (in a contract, etc.), fourth sign of the Chinese calendar, Denmark'), +('丁寧', 'テイネイ', 'polite, courteous, civil, careful, close, thorough, conscientious'), +('装丁', 'ソウテイ', 'binding (of a book), design (of a book cover)'), +('正丁', 'セイテイ', 'man in good health between 21 and 60 years of age to whom applied various corvee and taxes (under the ritsuryō system)'), +('丁幾', 'チンキ', 'tincture'), +('亜爾然丁', 'アルゼンチン', 'Argentina'), +('丁々', 'チョウチョウ', 'clashing of swords, felling of trees, ringing of an ax'), +('丁々', 'チョウチョウ', 'clashing of swords, felling of trees, ringing of an ax'), +('丁', 'チョウ', 'counter for leaves in a book (esp. one with traditional Japanese-style binding), counter for blocks of tofu, counter for servings in a restaurant, counter for long and narrow things such as guns, scissors, spades, hoes, inksticks, palanquins, candles, jinrikishas, shamisen, oars, etc., even number, 109.09 m'), +('丁度', 'チョウド', 'exactly, precisely, just, right, opportunely, fortunately, just (like), as if, as though'), +('都', 'ト', 'Metropolis (of Tokyo), (Tokyo) Metropolitan District, metropolitan prefecture, counter for cities and towns, capital'), +('都会', 'トカイ', 'city, Tokyo Metropolitan Assembly'), +('科威都', 'クウェート', 'Kuwait'), +('東都', 'トウト', 'the Eastern Capital (now Tokyo), Yedo, Edo'), +('都合', 'ツゴウ', 'circumstances, condition, convenience, to arrange, to manage, to lend money, to raise money, in all, in total, all told'), +('都合がいい', 'ツゴウガイイ', 'convenient'), +('笛子', 'テキシ', 'dizi, Chinese bamboo transverse flute'), +('警笛', 'ケイテキ', 'horn, alarm, whistle, foghorn'), +('横笛', 'ヨコブエ', 'transverse flute (e.g. a fife)'), +('追加', 'ツイカ', 'addition, supplement, appending, appendix'), +('追及', 'ツイキュウ', 'investigation (e.g. into someone''s guilt), questioning, pressing, hounding, pinning down, catching up, overtaking'), +('訴追', 'ソツイ', 'prosecution, indictment, impeachment'), +('猛追', 'モウツイ', 'hot pursuit, hot chase'), +('鉄', 'テツ', 'iron (Fe), strong and hard (as iron), railway, railway enthusiast'), +('鉄道', 'テツドウ', 'railroad, railway, rail transport'), +('私鉄', 'シテツ', 'private railway'), +('国鉄', 'コクテツ', 'national railway, Japan National Railways (1949-1987)'), +('転', 'テン', 'change in pronunciation or meaning of a word, sound change, word with an altered pronunciation or meaning, turning or twisting part of a text (in Chinese poetry)'), +('転々', 'テンテン', 'moving from place to place, being passed around repeatedly, rolling about'), +('運転', 'ウンテン', 'operation (of a machine), running, working, driving (a vehicle), use (of capital, funds, etc.), management, investment'), +('回転', 'カイテン', 'rotation, revolution, turn, spin, working (e.g. of one''s mind), function, turnover (of goods, funds, etc.), circulation, flow (of customers), rotation, curl, slalom (alpine skiing event)'), +('湯治', 'トウジ', 'hot-spring cure, taking the baths'), +('湯液', 'トウエキ', 'decoction (in Chinese medicine)'), +('銭湯', 'セントウ', 'public bath, bathhouse'), +('給湯', 'キュウトウ', 'hot-water supply'), +('島', 'トウ', 'Island, insula, island, islet'), +('島国', 'シマグニ', 'island country'), +('孤島', 'コトウ', 'solitary island, isolated island'), +('列島', 'レットウ', 'archipelago, chain of islands'), +('登場', 'トウジョウ', 'entry (on stage), appearance (on screen), entrance, introduction (into a market)'), +('登校', 'トウコウ', 'attendance (at school), going to school'), +('完登', 'カントウ', 'completing a climb, completing a route (up a mountain), completing a series of climbs (e.g. the Seven Summits), peak bagging'), +('先登', 'セントウ', 'going first, arriving first'), +('登山', 'トザン', 'mountain climbing, ascending a mountain, ascent'), +('登場', 'トウジョウ', 'entry (on stage), appearance (on screen), entrance, introduction (into a market)'), +('能登', 'ノト', 'Noto (former province located in the north of present-day Ishikawa Prefecture), Noto (peninsula)'), +('童話', 'ドウワ', 'children''s story, fairy tale'), +('童謡', 'ドウヨウ', 'children''s song, nursery rhyme'), +('天童', 'テンドウ', 'cherub, gods disguised as children, children parading as cherubs'), +('悪童', 'アクドウ', 'bad boy, naughty child, brat'), +('度', 'ド', 'degree (angle, temperature, scale, etc.), counter for occurrences, strength (of glasses), glasses prescription, alcohol content (percentage), alcohol by volume, extent, degree, limit, presence of mind, composure'), +('度胸', 'ドキョウ', 'courage, bravery, pluck, nerve, grit, guts'), +('丁度', 'チョウド', 'exactly, precisely, just, right, opportunely, fortunately, just (like), as if, as though'), +('再度', 'サイド', 'a second time, again, once more, twice'), +('屹度', 'キット', 'surely, undoubtedly, almost certainly, most likely (e.g. 90 percent), sternly, severely, having no slack, rigid, stiff, tight, suddenly, abruptly, instantly'), +('法度', 'ハット', 'law, ban, prohibition, ordinance'), +('支度', 'シタク', 'preparation, arrangements'), +('臆度', 'オクタク', 'guessing, speculation, supposition, hypothesis'), +('豆腐', 'トウフ', 'tofu, bean curd, beancurd'), +('豆乳', 'トウニュウ', 'soy milk'), +('緑豆', 'リョクトウ', 'mung bean (Vigna radiata), green gram'), +('菜豆', 'サイトウ', 'haricot, kidney bean'), +('豆打', 'ズンダ', 'mashed boiled green soybeans'), +('小豆', 'アズキ', 'adzuki bean (Vigna angularis)'), +('大豆', 'ダイズ', 'soya bean (Glycine max), soybean, soy'), +('動', 'ドウ', 'motion'), +('動物', 'ドウブツ', 'animal'), +('行動', 'コウドウ', 'action, conduct, behaviour, behavior, mobilization, mobilisation'), +('移動', 'イドウ', 'movement, transfer, migration, removal, travel, mobile, moving, traveling, travelling, roving'), +('投', 'トウ', 'pitching ability, counter for throws (of a javelin, bowling ball, etc.), counter for casts (of a line)'), +('投票', 'トウヒョウ', 'voting, ballot, poll, vote'), +('好投', 'コウトウ', 'good (nice) pitching'), +('継投', 'ケイトウ', 'relieving the (starting) pitcher'), +('事', 'ジ', 'individual concrete phenomenon (as opposed to a general principle)'), +('事故', 'ジコ', 'accident, incident, trouble, circumstances, reasons'), +('返事', 'ヘンジ', 'reply, answer, response'), +('食事', 'ショクジ', 'meal, dinner, diet'), +('等', 'トウ', 'class, order, rank, et cetera, etc., and the like, equal, iso-'), +('等分', 'トウブン', 'division into equal parts, equal parts'), +('一等', 'イットウ', 'first class, first rank, first grade, first place, first prize, one degree, one level, one grade, most, best'), +('中等', 'チュウトウ', 'second grade, medium quality, average, middle class, secondary grade'), +('筆', 'フデ', 'writing brush, paintbrush, pen, writing with a brush, drawing with a brush, penmanship, something drawn with a brush, writing (composing text), the written word, (land) lot, plot'), +('筆舌', 'ヒツゼツ', 'written and spoken words, description'), +('加筆', 'カヒツ', 'improvement (to a piece of writing or painting), revision, correction, touching up'), +('特筆', 'トクヒツ', 'special mention'), +('氷柱', 'ツララ', 'icicle, ice pillar (for cooling a room), ice'), +('氷山', 'ヒョウザン', 'iceberg'), +('樹氷', 'ジュヒョウ', 'frost on trees, hoarfrost (on trees), frost-covered trees'), +('解氷', 'カイヒョウ', 'a thaw'), +('波', 'ハ', 'counter for waves (of a repeated occurrence)'), +('波長', 'ハチョウ', 'wavelength'), +('脳波', 'ノウハ', 'brain waves, electroencephalogram, EEG'), +('横波', 'ヨコナミ', 'transverse wave, beam sea'), +('美', 'ビ', 'beauty'), +('美術館', 'ビジュツカン', 'art museum, art gallery'), +('賛美', 'サンビ', 'praise, glorification, extolment'), +('華美', 'カビ', 'splendor, splendour, gorgeousness, pomp, magnificence, showiness, gaudiness, extravagance, luxury'), +('御', 'ミ', 'august, beautiful'), +('見事', 'ミゴト', 'splendid, magnificent, excellent, fine, superb, beautiful, admirable, utter (esp. defeat), total, complete, something worth seeing, sight, spectacle'), +('発', 'ハツ', 'departure, departing (from ...), departing (at time ...), sending, sent (by ...), sent (at ...), engine, counter for gunshots, bursts of gas, etc., counter for bullets, bombs, etc., counter for blows (punches)'), +('発', 'ハツ', 'green dragon tile, winning hand with a pung (or kong) of green dragon tiles'), +('再発', 'サイハツ', 'return, relapse, recurrence'), +('開発', 'カイハツ', 'development, exploitation (of resources)'), +('発熱', 'ハツネツ', 'generation of heat, (attack of) fever, pyrexia'), +('発議', 'ハツギ', 'proposal, suggestion, motion, initiative'), +('開発', 'カイハツ', 'development, exploitation (of resources)'), +('悲', 'ヒ', 'karuna (compassion)'), +('悲劇', 'ヒゲキ', 'tragedy, tragic drama, tragic play, tragedy, calamity, disaster'), +('大慈大悲', 'ダイジダイヒ', 'great compassion and mercy'), +('無慈悲', 'ムジヒ', 'merciless, ruthless, pitiless, unfeeling'), +('病', 'ビョウ', 'disease, -pathy'), +('病院', 'ビョウイン', 'hospital, clinic, doctor''s office, doctor''s surgery, infirmary'), +('看病', 'カンビョウ', 'nursing (a patient)'), +('闘病', 'トウビョウ', 'fighting against an illness'), +('表', 'ヒョウ', 'table, chart, list, memorial to an emperor'), +('表現', 'ヒョウゲン', 'expression, presentation, representation, notation'), +('代表', 'ダイヒョウ', 'representation, representative, delegate, delegation, exemplification, typification, being representative of, being typical of, representative example, exemplar, model, leader, switchboard number, main number'), +('公表', 'コウヒョウ', 'official announcement, proclamation'), +('配達', 'ハイタツ', 'delivery'), +('配偶者', 'ハイグウシャ', 'spouse, wife, husband, partner'), +('支配', 'シハイ', 'rule, domination, control, direction, management, guidance, control (of one''s destiny, public opinion, etc.), governing, influence, sway, government'), +('増配', 'ゾウハイ', 'increased ration, increased dividend'), +('秒', 'ビョウ', 'second (unit of time), arc second'), +('秒速', 'ビョウソク', 'speed per second, velocity per second, instant, moment, a few seconds'), +('壊変毎秒', 'カイヘンマイビョウ', 'decays per second, disintegrations per second, dps'), +('閏秒', 'ウルウビョウ', 'leap second'), +('反', 'ハン', 'anti-, antithesis, fanqie, traditional Chinese spelling system in which two characters are used: the first one for the onset, the second one for rhyme and tone'), +('反対', 'ハンタイ', 'opposition, resistance, antagonism, hostility, objection, dissent, reverse, opposite, inverse, contrary'), +('違反', 'イハン', 'violation, offense, offence, breach, transgression, infringement, contravention'), +('造反', 'ゾウハン', 'rebellion'), +('反故', 'ホゴ', 'wastepaper, scrap paper'), +('謀反', 'ムホン', 'rebellion, uprising, insurrection, treason'), +('反', 'タン', 'variable measure of fabric (28.8 cm in width), for kimonos: at least 10 m in length, for haori: at least 7.27 m in length, for other clothes: at least 6.06 m in length, 300 tsubo (991.74 meters square, 0.24506 acres), six ken (10.91 m)'), +('反物', 'タンモノ', 'fabric, cloth, textiles, drapery, dry-goods, piece goods, measure of kimono material'), +('減反', 'ゲンタン', 'reduction (of crop size), reduction of acreage (under cultivation)'), +('一反', 'イッタン', 'one-tenth hectare'), +('反故にする', 'ホゴニスル', 'to throw away as useless, to scrap, to make null and void, to renege, to annul, to revoke'), +('反故', 'ホゴ', 'wastepaper, scrap paper'), +('負', 'フ', 'negative, minus'), +('負債', 'フサイ', 'debt, liabilities'), +('自負', 'ジフ', 'pride, self-confidence, thinking highly of oneself, being proud of one''s abilities or achievements'), +('正負', 'セイフ', 'positive and negative, +-, plus and minus'), +('部', 'ブ', 'department (in an organization), division, bureau, club, part, component, element, category, counter for copies of a newspaper or magazine'), +('部長', 'ブチョウ', 'head (chief, director) of a section or department, head of a (school) club, head of a (school) team'), +('入部', 'ニュウブ', 'joining a club'), +('述部', 'ジュツブ', 'predicate'), +('農', 'ノウ', 'farming, agriculture'), +('農家', 'ノウカ', 'farmer, farming family, farmhouse'), +('酪農', 'ラクノウ', 'dairy farming'), +('営農', 'エイノウ', 'farming, agriculture'), +('鼻声', 'ハナゴエ', 'nasal voice'), +('鼻汁', 'ハナジル', '(liquid) nasal mucus, nasal discharge, pituita, snot'), +('阿鼻', 'アビ', 'Avici (lowest level of hell)'), +('擤鼻', 'コウビ', 'nose-blowing'), +('書箱', 'ショソウ', 'bookcase'), +('服', 'フク', 'clothes (esp. Western clothes), counter for doses of medicine, gulps of tea, drags of a cigarette, etc.'), +('服装', 'フクソウ', 'garments, attire'), +('克服', 'コクフク', 'conquest (of a difficulty, illness, handicap, etc.), overcoming, bringing under control, subjugation, victory over'), +('征服', 'セイフク', 'conquest, subjugation, overcoming (a difficulty), conquering (e.g. a mountain), mastery (of a skill)'), +('皮膚', 'ヒフ', 'skin'), +('皮肉', 'ヒニク', 'irony, sarcasm, cynicism, satire, unexpected, different from what one expected, not as one had planned, (only) surface, something superficial, skin and bone, body'), +('表皮', 'ヒョウヒ', 'epidermis, cuticle, bark, epidermis, facade'), +('上皮', 'ウワカワ', 'outer layer (e.g. of skin), cuticle, epidermis, bark, rind, crust, film (on the surface of a liquid), scum, epithelium'), +('福', 'フク', 'good fortune, happiness, blessing, good luck'), +('福祉', 'フクシ', 'welfare, well-being, social welfare, social security, social service'), +('祝福', 'シュクフク', 'celebration (of a joyous occasion), blessing, giving one''s blessing, wishing (someone) good luck, blessing (from God)'), +('大福', 'ダイフク', 'great fortune, good luck, rice cake stuffed with bean jam'), +('倍', 'バイ', 'double, twice (as much), times (as much), -fold, 1-nth, 1 to n, 1 in n'), +('倍増', 'バイゾウ', 'doubling, double'), +('一倍', 'イチバイ', 'multiplying by one, original amount, (even) more, double, twice (as much), twofold'), +('逓倍', 'テイバイ', 'multiplication (e.g. of frequencies)'), +('品', 'ヒン', 'elegance, grace, refinement, class, dignity, article, item, counter for items (of food, etc.), counter for dishes or courses (at a restaurant)'), +('品質', 'ヒンシツ', 'quality (of a product or a service)'), +('用品', 'ヨウヒン', 'articles, supplies (e.g. office supplies), things (for), utensils, goods, equipment'), +('遺留品', 'イリュウヒン', 'article left behind (at a crime scene, after death, etc.)'), +('品', 'ホン', 'court rank, level, grade, chapter, section, volume'), +('品題', 'ホンダイ', 'chapter title, section title, volume title'), +('九品', 'クホン', 'nine levels of Amitabha''s Pure Land, Amitabha''s Pure Land, nine-tiered lotus leaf platform in Amitabha''s Pure Land'), +('版画', 'ハンガ', 'woodcut, woodblock print, art print'), +('板門店', 'パンムンジョム', 'Panmunjon (Korea), Joint Security Area (Korean Demilitarized Zone)'), +('合板', 'ゴウハン', 'veneer board, plywood, joint publication'), +('鋼板', 'コウハン', 'steel sheet, steel plate'), +('板状', 'バンジョウ', 'board, plank or sheet shaped'), +('版木', 'ハンギ', '(printing) block, woodcut'), +('一枚看板', 'イチマイカンバン', 'leading player, prima donna, box-office star, best item one has (to show), one''s sole Sunday best, one''s single area of expertise'), +('アクリル板', 'アクリルバン', 'acrylic plate, acrylic board'), +('物', 'ブツ', 'stock, products, stolen goods, loot, spoils'), +('物理', 'ブツリ', 'laws of nature, physical laws, physics'), +('私物', 'シブツ', 'private property, personal belongings, personal effects'), +('木造建築物', 'モクゾウケンチクブツ', 'wooden building, timber building'), +('財物', 'ザイブツ', 'property'), +('幣物', 'ヘイモツ', 'Shinto offerings, present to a guest'), +('坂路', 'ハンロ', 'ramp, slope'), +('京阪', 'ケイハン', 'Kyoto and Osaka, Kyoto-Osaka area'), +('登坂', 'トウハン', 'climbing a slope (hill), ascending a hill'), +('遍', 'ヘン', 'number of times'), +('返', 'ヘン', 'reply, answer'), +('代返', 'ダイヘン', 'answer a roll call for another'), +('往返', 'オウヘン', 'round trip'), +('様', 'ヨウ', 'appearing ..., looking ..., way to ..., method of ...ing, form, style, design, like, similar to, thing (thought or spoken)'), +('様子', 'ヨウス', 'state, state of affairs, situation, circumstances, appearance, look, aspect, sign, indication'), +('一様', 'イチヨウ', 'uniform, equal, even, the same, identical, common, ordinary, usual'), +('この様', 'コノヨウ', 'like this, this sort, this way'), +('薬', 'ヤク', 'dope, narcotic, drug'), +('薬品', 'ヤクヒン', 'medicine, chemicals'), +('投薬', 'トウヤク', 'administration, medication, dosage'), +('製薬', 'セイヤク', 'medicine manufacture, drug manufacture'), +('予', 'ヨ', 'I, me'), +('予定', 'ヨテイ', 'plans, arrangement, schedule, program, programme, expectation, estimate'), +('起訴猶予', 'キソユウヨ', 'suspension of indictment, leaving charge on the file'), +('執行猶予', 'シッコウユウヨ', 'stay of execution, suspended sentence'), +('平', 'ヘイ', 'nth year in the Heisei era (1989.1.8-2019.4.30)'), +('平均', 'ヘイキン', 'average, mean, balance, equilibrium'), +('公平', 'コウヘイ', 'fairness, impartiality, justice, objectivity'), +('和平', 'ワヘイ', 'peace'), +('平等', 'ビョウドウ', 'equality, impartiality, evenness'), +('平等主義', 'ビョウドウシュギ', 'principle of equality'), +('寛平', 'カンピョウ', 'Kanpyō era (889.4.27-898.4.26), Kanbyō era'), +('天平', 'テンピョウ', 'Tenpyō era (729.8.5-749.4.14), Tenbyō era, Tenhei era'), +('平仄', 'ヒョウソク', 'meter (in Chinese poetry), consistency'), +('平韻', 'ヒョウイン', 'level-tone rhyme (of Chinese)'), +('落第', 'ラクダイ', 'failure (in an examination), failing to advance (to the next year), falling short of the standard, not making the grade'), +('落ち葉', 'オチバ', 'fallen leaves, leaf litter, falling leaves, leaf fall, dropping leaves, defoliation, deciduous'), +('転落', 'テンラク', 'fall, tumble, spill, plunge, dive, fall (in position, standing, etc.), downfall, descent, degradation, comedown, demotion'), +('墜落', 'ツイラク', 'fall, crash (e.g. aircraft)'), +('油断', 'ユダン', 'negligence, carelessness, inattention, unpreparedness'), +('油井', 'ユセイ', 'oil well'), +('給油', 'キュウユ', 'refueling (a car, plane, etc.), lubricating (a machine), oiling'), +('軽油', 'ケイユ', 'diesel oil, diesel fuel, gas oil, light oil'), +('油色', 'ユショク', 'coating a painting with a layer of transparent oil'), +('油然', 'ユウゼン', 'gushingly, freely (welling up), copiously'), +('味', 'ミ', '(sense of) taste, counter for food, drink, medicine, etc.'), +('味噌', 'ミソ', 'miso, fermented condiment usu. made from soybeans, innards (from crabs, shrimps, etc.) resembling miso, key (main) point, good part (of something), weakling, weak person, try'), +('中身', 'ナカミ', 'contents, interior, filling, substance, content, (sword) blade'), +('吟味', 'ギンミ', 'close examination, careful investigation, close inspection, careful selection, inquiry, enquiry, scrutiny, testing, investigation of a crime, inquiry into someone''s guilt, winner (of the most rounds, i.e. a full game), reciting and appreciating traditional poetry'), +('流', 'リュウ', 'fashion, way, style, manner, school (of thought), class, rank, rate, current (electrical, water, etc.), flow, stream'), +('旒', 'リュウ', 'counter for flags, banners, etc.'), +('交流', 'コウリュウ', 'exchange (e.g. cultural), interchange, interaction, mingling, mixing, coming together, alternating current, AC'), +('合流', 'ゴウリュウ', 'confluence (of rivers), merge (of traffic), conflux, junction, joining, union (e.g. of forces), linking up, merging, coming together'), +('流', 'ル', 'exile (second most severe of the five ritsuryō punishments)'), +('流布', 'ルフ', 'circulation, dissemination'), +('配流', 'ハイル', 'exile, banishment'), +('中流', 'チュウル', 'banishment (to a somewhat distant province), middle-degree punishment of the three banishment punishments under the ritsuryō system'), +('有', 'ユウ', 'existence, possession, having, limited company'), +('有名', 'ユウメイ', 'famous, fame'), +('保有', 'ホユウ', 'possession, retention, maintenance'), +('共有', 'キョウユウ', 'joint ownership, co-ownership, sharing (e.g. a viewpoint), sharing (files, devices on a network, posts on social media, etc.)'), +('有', 'ウ', 'bhava (becoming, existence)'), +('有無', 'ウム', 'existence or nonexistence, presence or absence, consent or refusal, yes or no'), +('保有', 'ホユウ', 'possession, retention, maintenance'), +('共有', 'キョウユウ', 'joint ownership, co-ownership, sharing (e.g. a viewpoint), sharing (files, devices on a network, posts on social media, etc.)'), +('洋', 'ヨウ', 'Occident and Orient (esp. the Occident), ocean, sea, foreign, Western, European'), +('洋服', 'ヨウフク', 'Western-style clothes (cf. traditional Japanese clothes)'), +('南氷洋', 'ナンヒョウヨウ', 'Antarctic Ocean'), +('環太平洋', 'カンタイヘイヨウ', 'Pacific Rim'), +('放送', 'ホウソウ', 'broadcasting, broadcast, program, announcement'), +('放る', 'ホウル', 'to throw, to fling, to hurl, to toss, to neglect, to abandon, to leave alone, to give up on, to leave undone, to leave unfinished'), +('開放', 'カイホウ', 'opening (a door, window, etc.), leaving open, opening up (e.g. to the public), allowing (public) access'), +('解放', 'カイホウ', 'release, unleashing, liberation, emancipation, setting free, deallocation (of computer memory)'), +('遊園地', 'ユウエンチ', 'amusement park'), +('遊泳', 'ユウエイ', 'swimming, bathing, getting on in the world'), +('浮遊', 'フユウ', 'floating, drifting, suspension, wandering (about)'), +('外遊', 'ガイユウ', 'foreign travel'), +('遊園地', 'ユウエンチ', 'amusement park'), +('遊泳', 'ユウエイ', 'swimming, bathing, getting on in the world'), +('勉強', 'ベンキョウ', 'study, diligence, working hard, experience, lesson (for the future), discount, price reduction'), +('勉学', 'ベンガク', 'study, pursuit of knowledge'), +('猛勉', 'モウベン', 'studying hard, cramming'), +('のこ勉', 'ノコベン', 'staying behind after school to do private study'), +('由来', 'ユライ', 'origin, source, history, derivation, originally, from the start, by nature'), +('由緒', 'ユイショ', 'history, pedigree, lineage'), +('経由', 'ケイユ', 'going through, going via, going by way of'), +('来由', 'ライユ', 'origin, cause'), +('経由', 'ケイユ', 'going through, going via, going by way of'), +('事由', 'ジユウ', 'reason, cause'), +('由緒', 'ユイショ', 'history, pedigree, lineage'), +('由緒ある', 'ユイショアル', 'venerable, prestigious, with a long history'), +('面', 'メン', 'face, mask, face guard, (in kendo) striking the head, surface (esp. a geometrical surface), page, aspect, facet, side, chamfer, counter for broad, flat objects, levels or stages, e.g. in a video game'), +('面倒', 'メンドウ', 'trouble, bother, trouble, difficulty, care, attention'), +('真正面', 'マショウメン', 'directly opposite, right in front'), +('対面', 'タイメン', 'meeting face-to-face, seeing in person, facing (each other), opposing (traffic, etc.), confronting'), +('陽', 'ヨウ', '(the) positive, yang (in Chinese divination), the open, visible place, public place'), +('陽気', 'ヨウキ', 'cheerful, jovial, merry, lively, weather, season, spirit of yang'), +('山陽', 'サンヨウ', 'south side of a mountain, Sanyo district'), +('陰陽', 'インヨウ', 'cosmic dual forces, yin and yang, sun and moon, etc.'), +('役', 'ヤク', 'role, assignment, responsibility, duty, function, job, service, position (of responsibility), post, office, part (in a play, film, etc.), role, character, scoring combination (in mahjong, card games, etc.), meld, hand, yaku'), +('役に立つ', 'ヤクニタツ', 'to be helpful, to be useful'), +('配役', 'ハイヤク', 'casting (of a play, film, etc.), cast'), +('代役', 'ダイヤク', 'substitute (actor), stand-in, fill-in, understudy, double'), +('役', 'エキ', 'war, campaign, battle, unpaid work (ritsuryō system), forced labor'), +('役務', 'エキム', 'labor, labour, service'), +('退役', 'タイエキ', 'retiring from military service'), +('就役', 'シュウエキ', 'being placed on duty, going into commission (of a warship, freighter, etc.), being placed in commission'), +('問', 'モン', 'counter for questions'), +('問題', 'モンダイ', 'question (e.g. on a test), problem, problem (e.g. societal, political), question, issue, subject (e.g. of research), case, matter, question (i.e. doubt), public discussion, controversy, trouble, problem, inconvenience, difficulty'), +('質問', 'シツモン', 'question, inquiry, enquiry'), +('訪問', 'ホウモン', 'call, visit'), +('命', 'メイ', 'order, command, decree, life, destiny, fate'), +('命じる', 'メイジル', 'to order, to command, to appoint'), +('任命', 'ニンメイ', 'appointment, nomination, ordination, commission, designation'), +('運命', 'ウンメイ', 'fate, destiny, lot'), +('命婦', 'ミョウブ', 'title for high-ranking court ladies'), +('延命', 'エンメイ', 'keeping alive longer, prolonging life, life extension, life-support'), +('安心立命', 'アンシンリツメイ', 'spiritual peace and enlightenment, keeping an unperturbed mind through faith'), +('葉', 'ヨウ', 'counter for leaves, pieces of paper, etc., counter for boats'), +('葉胃', 'ヨウイ', 'omasum, psalterium, third compartment of the stomach in ruminants'), +('紅葉', 'コウヨウ', 'autumn colours, fall colors, leaves changing color (colour), leaves turning red, red leaves, leaves turning yellow, yellow leaves, (Japanese) maple (Acer japonicum), venison, layered colors in garments, resembling autumn colors'), +('枝葉', 'シヨウ', 'branches and leaves, foliage, unimportant details, nonessentials, side issue, digression'), +('列', 'レツ', 'row, line, file, column, queue, rank, procession, company (of someone), group, ranks, sequence, counter for rows'), +('列伝', 'レツデン', 'series of biographies'), +('陳列', 'チンレツ', 'exhibition, display, putting on show'), +('参列', 'サンレツ', 'attendance, participation, presence'), +('列', 'レツ', 'row, line, file, column, queue, rank, procession, company (of someone), group, ranks, sequence, counter for rows'), +('列車', 'レッシャ', 'train, railway train'), +('加密列', 'カミツレ', 'German chamomile (Matricaria recutita), German camomile'), +('羊毛', 'ヨウモウ', 'wool'), +('羊肉', 'ヨウニク', 'mutton, lamb (meat)'), +('羝羊', 'テイヨウ', 'ram (sheep), someone who lives their life by instinct'), +('羚羊', 'レイヨウ', 'antelope'), +('和', 'ワ', 'sum, harmony, peace, Japan, Japanese-style'), +('和服', 'ワフク', 'Japanese clothes'), +('緩和', 'カンワ', 'relief, mitigation, alleviation, relaxation (of restrictions, tensions, etc.), easing, softening'), +('調和', 'チョウワ', 'harmony, accord, reconciliation, agreement'), +('阿蘭陀', 'オランダ', 'Netherlands, Holland'), +('和尚', 'オショウ', 'priestly teacher, preceptor, monk (esp. the head monk of a temple), priest, head priest, second highest priestly rank in Buddhism, master (of one''s art, trade, etc.)'), +('和尚', 'オショウ', 'priestly teacher, preceptor, monk (esp. the head monk of a temple), priest, head priest, second highest priestly rank in Buddhism, master (of one''s art, trade, etc.)'), +('和声', 'ワセイ', 'harmony, concord, consonance'), +('諧和', 'カイワ', 'gentle mutual affection, harmony, harmony'), +('礼', 'レイ', 'thanks, gratitude, manners, etiquette, bow, reward, gift, ceremony, ritual, key money'), +('礼儀', 'レイギ', 'manners, courtesy, etiquette'), +('洗礼', 'センレイ', 'baptism, christening, initiation (into a society, group, etc.), baptism, one''s first experience of something, baptism (by fire, etc.)'), +('謝礼', 'シャレイ', 'reward, honorarium, remuneration'), +('礼拝', 'レイハイ', 'worship (esp. Christian), adoration, divine service, worship (esp. Buddhist and Shinto)'), +('礼拝堂', 'レイハイドウ', 'chapel, place of worship (esp. Christian), place of worship (esp. Buddhist and Shinto)'), +('失礼', 'シツレイ', 'discourtesy, impoliteness, excuse me, goodbye, to leave, to be rude'), +('頂礼', 'チョウライ', 'prostration, placing knees, hands and forehead on the ground to show utmost respect'), +('路上', 'ロジョウ', 'on the road, on the street, in the street, on the way'), +('路地', 'ロジ', 'alley, alleyway, lane, bare earth (i.e. ground not covered by a roof), open field, outdoors (non-greenhouse cultivation of crops), teahouse garden, path through a gate (or through a garden, etc.)'), +('針路', 'シンロ', 'course, direction'), +('活路', 'カツロ', 'means of survival, means of escape, way out of a difficulty'), +('路加', 'ルカ', 'St Luke'), +('舎路', 'シアトル', 'Seattle'), +('練習', 'レンシュウ', 'practice, training, drill, (an) exercise, workout'), +('練達', 'レンタツ', 'expert(ise), skill, dexterity'), +('訓練', 'クンレン', 'training, drill, practice, discipline'), +('熟練', 'ジュクレン', 'skill, dexterity, proficiency'), +('緑茶', 'リョクチャ', 'green tea, Japanese tea'), +('緑色', 'ミドリイロ', 'green, emerald green, green color of new foliage, verdure'), +('新緑', 'シンリョク', 'fresh verdure, new green leaves'), +('常緑', 'ジョウリョク', 'evergreen'), +('緑青', 'ロクショウ', 'verdigris, green rust, copper rust'), +('四緑', 'シロク', 'fourth of nine traditional astrological signs (corresponding to Jupiter and south-east)'), +('両', 'リョウ', 'both (hands, parents, sides, etc.), counter for carriages (e.g. in a train), counter for vehicles, ryō, tael, traditional unit of weight (for gold, silver and drugs), 4-5 monme, 15-19 g, ryō, pre-Meiji unit of currency, orig. the value of one ryō of gold, ryō, traditional measure of fabric, 2 tan, ryō, tael, unit of weight under the ritsuryō system, 1/16 kin, 42-43 g, counter for suits of clothing, sets of armor, etc.'), +('両親', 'リョウシン', 'parents, both parents'), +('一両', 'イチリョウ', 'one vehicle, one ryō (an old coin)'), +('十両', 'ジュウリョウ', 'second highest division, wrestlers of the second highest division'), +('旅', 'リョ', '500-man battalion (Zhou-dynasty Chinese army)'), +('旅行', 'リョコウ', 'travel, trip, journey, excursion, tour'), +('長旅', 'ナガタビ', 'long journey, long trip'), +('行旅', 'コウリョ', 'traveling, travelling, traveler, traveller'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(2436, '悪'), +(2437, '悪'), +(2438, '悪'), +(2439, '悪'), +(2440, '悪'), +(2441, '悪'), +(2442, '悪'), +(2443, '悪'), +(2444, '暗'), +(2445, '暗'), +(2446, '暗'), +(2447, '暗'), +(2448, '安'), +(2449, '安'), +(2450, '安'), +(2451, '安'), +(2452, '委'), +(2453, '委'), +(2454, '委'), +(2455, '委'), +(2456, '医'), +(2457, '医'), +(2458, '医'), +(2459, '医'), +(2460, '運'), +(2461, '運'), +(2462, '運'), +(2463, '運'), +(2464, '央'), +(2465, '央'), +(2466, '央'), +(2467, '駅'), +(2468, '駅'), +(2469, '駅'), +(2470, '駅'), +(2471, '院'), +(2472, '院'), +(2473, '院'), +(2474, '院'), +(2475, '飲'), +(2476, '飲'), +(2477, '飲'), +(2478, '飲'), +(2479, '飲'), +(2480, '飲'), +(2481, '界'), +(2482, '界'), +(2483, '界'), +(2484, '界'), +(2485, '温'), +(2486, '温'), +(2487, '温'), +(2488, '温'), +(2489, '化'), +(2490, '化'), +(2491, '化'), +(2492, '化'), +(2493, '化'), +(2494, '化'), +(2495, '化'), +(2496, '化'), +(2497, '屋'), +(2498, '屋'), +(2499, '屋'), +(2500, '屋'), +(2501, '泳'), +(2502, '泳'), +(2503, '泳'), +(2504, '泳'), +(2505, '育'), +(2506, '育'), +(2507, '育'), +(2508, '育'), +(2509, '荷'), +(2510, '荷'), +(2511, '荷'), +(2512, '荷'), +(2513, '意'), +(2514, '意'), +(2515, '意'), +(2516, '意'), +(2517, '員'), +(2518, '員'), +(2519, '員'), +(2520, '員'), +(2521, '横'), +(2522, '横'), +(2523, '横'), +(2524, '横'), +(2525, '寒'), +(2526, '寒'), +(2527, '寒'), +(2528, '寒'), +(2529, '館'), +(2530, '館'), +(2531, '館'), +(2532, '館'), +(2533, '岸'), +(2534, '岸'), +(2535, '岸'), +(2536, '岸'), +(2537, '開'), +(2538, '開'), +(2539, '開'), +(2540, '開'), +(2541, '感'), +(2542, '感'), +(2543, '感'), +(2544, '感'), +(2545, '階'), +(2546, '階'), +(2547, '階'), +(2548, '階'), +(2549, '期'), +(2550, '期'), +(2551, '期'), +(2552, '期'), +(2553, '期'), +(2554, '期'), +(2555, '期'), +(2556, '期'), +(2557, '漢'), +(2558, '漢'), +(2559, '漢'), +(2560, '漢'), +(2561, '客'), +(2562, '客'), +(2563, '客'), +(2564, '客'), +(2565, '客'), +(2566, '客'), +(2567, '客'), +(2568, '客'), +(2569, '起'), +(2570, '起'), +(2571, '起'), +(2572, '起'), +(2573, '級'), +(2574, '級'), +(2575, '級'), +(2576, '級'), +(2577, '銀'), +(2578, '銀'), +(2579, '銀'), +(2580, '銀'), +(2581, '宮'), +(2582, '宮'), +(2583, '宮'), +(2584, '宮'), +(2585, '宮'), +(2586, '宮'), +(2587, '宮'), +(2588, '宮'), +(2589, '宮'), +(2590, '宮'), +(2591, '宮'), +(2592, '宮'), +(2593, '宮'), +(2594, '宮'), +(2595, '去'), +(2596, '去'), +(2597, '去'), +(2598, '去'), +(2599, '去'), +(2600, '去'), +(2601, '去'), +(2602, '血'), +(2603, '血'), +(2604, '血'), +(2605, '血'), +(2606, '具'), +(2607, '具'), +(2608, '具'), +(2609, '具'), +(2610, '君'), +(2611, '君'), +(2612, '君'), +(2613, '君'), +(2614, '橋'), +(2615, '橋'), +(2616, '橋'), +(2617, '橋'), +(2618, '苦'), +(2619, '苦'), +(2620, '苦'), +(2621, '苦'), +(2622, '究'), +(2623, '究'), +(2624, '究'), +(2625, '究'), +(2626, '究'), +(2627, '究'), +(2628, '決'), +(2629, '決'), +(2630, '決'), +(2631, '決'), +(2632, '軽'), +(2633, '軽'), +(2634, '軽'), +(2635, '軽'), +(2636, '軽'), +(2637, '軽'), +(2638, '軽'), +(2639, '係'), +(2640, '係'), +(2641, '係'), +(2642, '係'), +(2643, '球'), +(2644, '球'), +(2645, '球'), +(2646, '球'), +(2647, '局'), +(2648, '局'), +(2649, '局'), +(2650, '局'), +(2651, '急'), +(2652, '急'), +(2653, '急'), +(2654, '急'), +(2655, '研'), +(2656, '研'), +(2657, '研'), +(2658, '研'), +(2659, '区'), +(2660, '区'), +(2661, '区'), +(2662, '区'), +(2663, '曲'), +(2664, '曲'), +(2665, '曲'), +(2666, '曲'), +(2667, '庫'), +(2668, '庫'), +(2669, '庫'), +(2670, '庫'), +(2671, '庫'), +(2672, '業'), +(2673, '業'), +(2674, '業'), +(2675, '業'), +(2676, '業'), +(2677, '業'), +(2678, '業'), +(2679, '業'), +(2680, '県'), +(2681, '県'), +(2682, '県'), +(2683, '県'), +(2684, '向'), +(2685, '向'), +(2686, '向'), +(2687, '向'), +(2688, '湖'), +(2689, '湖'), +(2690, '湖'), +(2691, '湖'), +(2692, '号'), +(2693, '号'), +(2694, '号'), +(2695, '号'), +(2696, '幸'), +(2697, '幸'), +(2698, '幸'), +(2699, '幸'), +(2700, '皿'), +(2701, '港'), +(2702, '港'), +(2703, '港'), +(2704, '港'), +(2705, '仕'), +(2706, '仕'), +(2707, '仕'), +(2708, '仕'), +(2709, '仕'), +(2710, '仕'), +(2711, '仕'), +(2712, '根'), +(2713, '根'), +(2714, '根'), +(2715, '根'), +(2716, '使'), +(2717, '使'), +(2718, '使'), +(2719, '使'), +(2720, '始'), +(2721, '始'), +(2722, '始'), +(2723, '始'), +(2724, '死'), +(2725, '死'), +(2726, '死'), +(2727, '死'), +(2728, '指'), +(2729, '指'), +(2730, '指'), +(2731, '指'), +(2732, '歯'), +(2733, '歯'), +(2734, '歯'), +(2735, '歯'), +(2736, '次'), +(2737, '次'), +(2738, '次'), +(2739, '次'), +(2740, '次'), +(2741, '次'), +(2742, '次'), +(2743, '詩'), +(2744, '詩'), +(2745, '詩'), +(2746, '詩'), +(2747, '祭'), +(2748, '祭'), +(2749, '祭'), +(2750, '祭'), +(2751, '式'), +(2752, '式'), +(2753, '式'), +(2754, '式'), +(2755, '実'), +(2756, '実'), +(2757, '実'), +(2758, '実'), +(2759, '実'), +(2760, '持'), +(2761, '持'), +(2762, '持'), +(2763, '持'), +(2764, '主'), +(2765, '主'), +(2766, '主'), +(2767, '主'), +(2768, '主'), +(2769, '主'), +(2770, '主'), +(2771, '主'), +(2772, '主'), +(2773, '者'), +(2774, '者'), +(2775, '者'), +(2776, '写'), +(2777, '写'), +(2778, '写'), +(2779, '写'), +(2780, '集'), +(2781, '集'), +(2782, '集'), +(2783, '集'), +(2784, '住'), +(2785, '住'), +(2786, '住'), +(2787, '住'), +(2788, '章'), +(2789, '章'), +(2790, '章'), +(2791, '章'), +(2792, '消'), +(2793, '消'), +(2794, '消'), +(2795, '消'), +(2796, '酒'), +(2797, '酒'), +(2798, '酒'), +(2799, '酒'), +(2800, '州'), +(2801, '州'), +(2802, '州'), +(2803, '州'), +(2804, '州'), +(2805, '州'), +(2806, '州'), +(2807, '州'), +(2808, '拾'), +(2809, '拾'), +(2810, '拾'), +(2811, '拾'), +(2812, '拾'), +(2813, '終'), +(2814, '終'), +(2815, '終'), +(2816, '終'), +(2817, '所'), +(2818, '所'), +(2819, '所'), +(2820, '所'), +(2821, '習'), +(2822, '習'), +(2823, '習'), +(2824, '習'), +(2825, '習'), +(2826, '重'), +(2827, '重'), +(2828, '重'), +(2829, '重'), +(2830, '重'), +(2831, '重'), +(2832, '重'), +(2833, '重'), +(2834, '取'), +(2835, '取'), +(2836, '取'), +(2837, '取'), +(2838, '守'), +(2839, '守'), +(2840, '守'), +(2841, '守'), +(2842, '守'), +(2843, '守'), +(2844, '守'), +(2845, '商'), +(2846, '商'), +(2847, '商'), +(2848, '商'), +(2849, '助'), +(2850, '助'), +(2851, '助'), +(2852, '助'), +(2853, '宿'), +(2854, '宿'), +(2855, '宿'), +(2856, '宿'), +(2857, '暑'), +(2858, '暑'), +(2859, '暑'), +(2860, '暑'), +(2861, '勝'), +(2862, '勝'), +(2863, '勝'), +(2864, '勝'), +(2865, '昭'), +(2866, '昭'), +(2867, '昭'), +(2868, '申'), +(2869, '申'), +(2870, '申'), +(2871, '申'), +(2872, '植'), +(2873, '植'), +(2874, '植'), +(2875, '植'), +(2876, '乗'), +(2877, '乗'), +(2878, '乗'), +(2879, '乗'), +(2880, '神'), +(2881, '神'), +(2882, '神'), +(2883, '神'), +(2884, '神'), +(2885, '神'), +(2886, '神'), +(2887, '神'), +(2888, '受'), +(2889, '受'), +(2890, '受'), +(2891, '受'), +(2892, '深'), +(2893, '深'), +(2894, '深'), +(2895, '深'), +(2896, '進'), +(2897, '進'), +(2898, '進'), +(2899, '進'), +(2900, '身'), +(2901, '身'), +(2902, '身'), +(2903, '身'), +(2904, '真'), +(2905, '真'), +(2906, '真'), +(2907, '真'), +(2908, '世'), +(2909, '世'), +(2910, '世'), +(2911, '世'), +(2912, '世'), +(2913, '世'), +(2914, '世'), +(2915, '世'), +(2916, '昔'), +(2917, '昔'), +(2918, '昔'), +(2919, '昔'), +(2920, '族'), +(2921, '族'), +(2922, '族'), +(2923, '族'), +(2924, '息'), +(2925, '息'), +(2926, '息'), +(2927, '息'), +(2928, '相'), +(2929, '相'), +(2930, '相'), +(2931, '相'), +(2932, '相'), +(2933, '相'), +(2934, '相'), +(2935, '相'), +(2936, '待'), +(2937, '待'), +(2938, '待'), +(2939, '待'), +(2940, '打'), +(2941, '打'), +(2942, '打'), +(2943, '打'), +(2944, '打'), +(2945, '談'), +(2946, '談'), +(2947, '談'), +(2948, '談'), +(2949, '柱'), +(2950, '柱'), +(2951, '柱'), +(2952, '柱'), +(2953, '注'), +(2954, '注'), +(2955, '注'), +(2956, '注'), +(2957, '炭'), +(2958, '炭'), +(2959, '炭'), +(2960, '炭'), +(2961, '対'), +(2962, '対'), +(2963, '対'), +(2964, '対'), +(2965, '対'), +(2966, '対'), +(2967, '対'), +(2968, '対'), +(2969, '整'), +(2970, '整'), +(2971, '整'), +(2972, '整'), +(2973, '送'), +(2974, '送'), +(2975, '送'), +(2976, '送'), +(2977, '他'), +(2978, '他'), +(2979, '他'), +(2980, '他'), +(2981, '短'), +(2982, '短'), +(2983, '短'), +(2984, '短'), +(2985, '帳'), +(2986, '帳'), +(2987, '帳'), +(2988, '帳'), +(2989, '想'), +(2990, '想'), +(2991, '想'), +(2992, '想'), +(2993, '想'), +(2994, '想'), +(2995, '想'), +(2996, '調'), +(2997, '調'), +(2998, '調'), +(2999, '調'), +(3000, '速'), +(3001, '速'), +(3002, '速'), +(3003, '速'), +(3004, '代'), +(3005, '代'), +(3006, '代'), +(3007, '代'), +(3008, '代'), +(3009, '代'), +(3010, '代'), +(3011, '代'), +(3012, '着'), +(3013, '着'), +(3014, '着'), +(3015, '着'), +(3016, '着'), +(3017, '着'), +(3018, '着'), +(3019, '第'), +(3020, '第'), +(3021, '第'), +(3022, '第'), +(3023, '第'), +(3024, '全'), +(3025, '全'), +(3026, '全'), +(3027, '全'), +(3028, '題'), +(3029, '題'), +(3030, '題'), +(3031, '題'), +(3032, '庭'), +(3033, '庭'), +(3034, '庭'), +(3035, '庭'), +(3036, '定'), +(3037, '定'), +(3038, '定'), +(3039, '定'), +(3040, '定'), +(3041, '定'), +(3042, '定'), +(3043, '定'), +(3044, '丁'), +(3045, '丁'), +(3046, '丁'), +(3047, '丁'), +(3048, '丁'), +(3049, '丁'), +(3050, '丁'), +(3051, '丁'), +(3052, '丁'), +(3053, '丁'), +(3054, '丁'), +(3055, '丁'), +(3056, '丁'), +(3057, '丁'), +(3058, '都'), +(3059, '都'), +(3060, '都'), +(3061, '都'), +(3062, '都'), +(3063, '都'), +(3064, '笛'), +(3065, '笛'), +(3066, '笛'), +(3067, '追'), +(3068, '追'), +(3069, '追'), +(3070, '追'), +(3071, '鉄'), +(3072, '鉄'), +(3073, '鉄'), +(3074, '鉄'), +(3075, '転'), +(3076, '転'), +(3077, '転'), +(3078, '転'), +(3079, '湯'), +(3080, '湯'), +(3081, '湯'), +(3082, '湯'), +(3083, '島'), +(3084, '島'), +(3085, '島'), +(3086, '島'), +(3087, '登'), +(3088, '登'), +(3089, '登'), +(3090, '登'), +(3091, '登'), +(3092, '登'), +(3093, '登'), +(3094, '童'), +(3095, '童'), +(3096, '童'), +(3097, '童'), +(3098, '度'), +(3099, '度'), +(3100, '度'), +(3101, '度'), +(3102, '度'), +(3103, '度'), +(3104, '度'), +(3105, '度'), +(3106, '豆'), +(3107, '豆'), +(3108, '豆'), +(3109, '豆'), +(3110, '豆'), +(3111, '豆'), +(3112, '豆'), +(3113, '動'), +(3114, '動'), +(3115, '動'), +(3116, '動'), +(3117, '投'), +(3118, '投'), +(3119, '投'), +(3120, '投'), +(3121, '事'), +(3122, '事'), +(3123, '事'), +(3124, '事'), +(3125, '等'), +(3126, '等'), +(3127, '等'), +(3128, '等'), +(3129, '筆'), +(3130, '筆'), +(3131, '筆'), +(3132, '筆'), +(3133, '氷'), +(3134, '氷'), +(3135, '氷'), +(3136, '氷'), +(3137, '波'), +(3138, '波'), +(3139, '波'), +(3140, '波'), +(3141, '美'), +(3142, '美'), +(3143, '美'), +(3144, '美'), +(3145, '美'), +(3146, '美'), +(3147, '発'), +(3148, '発'), +(3149, '発'), +(3150, '発'), +(3151, '発'), +(3152, '発'), +(3153, '発'), +(3154, '悲'), +(3155, '悲'), +(3156, '悲'), +(3157, '悲'), +(3158, '病'), +(3159, '病'), +(3160, '病'), +(3161, '病'), +(3162, '表'), +(3163, '表'), +(3164, '表'), +(3165, '表'), +(3166, '配'), +(3167, '配'), +(3168, '配'), +(3169, '配'), +(3170, '秒'), +(3171, '秒'), +(3172, '秒'), +(3173, '秒'), +(3174, '反'), +(3175, '反'), +(3176, '反'), +(3177, '反'), +(3178, '反'), +(3179, '反'), +(3180, '反'), +(3181, '反'), +(3182, '反'), +(3183, '反'), +(3184, '反'), +(3185, '反'), +(3186, '負'), +(3187, '負'), +(3188, '負'), +(3189, '負'), +(3190, '部'), +(3191, '部'), +(3192, '部'), +(3193, '部'), +(3194, '農'), +(3195, '農'), +(3196, '農'), +(3197, '農'), +(3198, '鼻'), +(3199, '鼻'), +(3200, '鼻'), +(3201, '鼻'), +(3202, '箱'), +(3203, '服'), +(3204, '服'), +(3205, '服'), +(3206, '服'), +(3207, '皮'), +(3208, '皮'), +(3209, '皮'), +(3210, '皮'), +(3211, '福'), +(3212, '福'), +(3213, '福'), +(3214, '福'), +(3215, '倍'), +(3216, '倍'), +(3217, '倍'), +(3218, '倍'), +(3219, '品'), +(3220, '品'), +(3221, '品'), +(3222, '品'), +(3223, '品'), +(3224, '品'), +(3225, '品'), +(3226, '板'), +(3227, '板'), +(3228, '板'), +(3229, '板'), +(3230, '板'), +(3231, '板'), +(3232, '板'), +(3233, '板'), +(3234, '物'), +(3235, '物'), +(3236, '物'), +(3237, '物'), +(3238, '物'), +(3239, '物'), +(3240, '坂'), +(3241, '坂'), +(3242, '坂'), +(3243, '返'), +(3244, '返'), +(3245, '返'), +(3246, '返'), +(3247, '様'), +(3248, '様'), +(3249, '様'), +(3250, '様'), +(3251, '薬'), +(3252, '薬'), +(3253, '薬'), +(3254, '薬'), +(3255, '予'), +(3256, '予'), +(3257, '予'), +(3258, '予'), +(3259, '平'), +(3260, '平'), +(3261, '平'), +(3262, '平'), +(3263, '平'), +(3264, '平'), +(3265, '平'), +(3266, '平'), +(3267, '平'), +(3268, '平'), +(3269, '落'), +(3270, '落'), +(3271, '落'), +(3272, '落'), +(3273, '油'), +(3274, '油'), +(3275, '油'), +(3276, '油'), +(3277, '油'), +(3278, '油'), +(3279, '味'), +(3280, '味'), +(3281, '味'), +(3282, '味'), +(3283, '流'), +(3284, '流'), +(3285, '流'), +(3286, '流'), +(3287, '流'), +(3288, '流'), +(3289, '流'), +(3290, '流'), +(3291, '有'), +(3292, '有'), +(3293, '有'), +(3294, '有'), +(3295, '有'), +(3296, '有'), +(3297, '有'), +(3298, '有'), +(3299, '洋'), +(3300, '洋'), +(3301, '洋'), +(3302, '洋'), +(3303, '放'), +(3304, '放'), +(3305, '放'), +(3306, '放'), +(3307, '遊'), +(3308, '遊'), +(3309, '遊'), +(3310, '遊'), +(3311, '遊'), +(3312, '遊'), +(3313, '勉'), +(3314, '勉'), +(3315, '勉'), +(3316, '勉'), +(3317, '由'), +(3318, '由'), +(3319, '由'), +(3320, '由'), +(3321, '由'), +(3322, '由'), +(3323, '由'), +(3324, '由'), +(3325, '面'), +(3326, '面'), +(3327, '面'), +(3328, '面'), +(3329, '陽'), +(3330, '陽'), +(3331, '陽'), +(3332, '陽'), +(3333, '役'), +(3334, '役'), +(3335, '役'), +(3336, '役'), +(3337, '役'), +(3338, '役'), +(3339, '役'), +(3340, '役'), +(3341, '問'), +(3342, '問'), +(3343, '問'), +(3344, '問'), +(3345, '命'), +(3346, '命'), +(3347, '命'), +(3348, '命'), +(3349, '命'), +(3350, '命'), +(3351, '命'), +(3352, '葉'), +(3353, '葉'), +(3354, '葉'), +(3355, '葉'), +(3356, '列'), +(3357, '列'), +(3358, '列'), +(3359, '列'), +(3360, '列'), +(3361, '列'), +(3362, '列'), +(3363, '羊'), +(3364, '羊'), +(3365, '羊'), +(3366, '羊'), +(3367, '和'), +(3368, '和'), +(3369, '和'), +(3370, '和'), +(3371, '和'), +(3372, '和'), +(3373, '和'), +(3374, '和'), +(3375, '和'), +(3376, '礼'), +(3377, '礼'), +(3378, '礼'), +(3379, '礼'), +(3380, '礼'), +(3381, '礼'), +(3382, '礼'), +(3383, '礼'), +(3384, '路'), +(3385, '路'), +(3386, '路'), +(3387, '路'), +(3388, '路'), +(3389, '路'), +(3390, '練'), +(3391, '練'), +(3392, '練'), +(3393, '練'), +(3394, '緑'), +(3395, '緑'), +(3396, '緑'), +(3397, '緑'), +(3398, '緑'), +(3399, '緑'), +(3400, '両'), +(3401, '両'), +(3402, '両'), +(3403, '両'), +(3404, '旅'), +(3405, '旅'), +(3406, '旅'), +(3407, '旅'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("わる.い"), +("わる-"), +("あ.し"), +("にく.い"), +("-にく.い"), +("ああ"), +("いずくに"), +("いずくんぞ"), +("にく.む"), +("くら.い"), +("くら.む"), +("くれ.る"), +("やす.い"), +("やす.まる"), +("やす"), +("やす.らか"), +("ゆだ.ねる"), +("い.やす"), +("い.する"), +("くすし"), +("はこ.ぶ"), +("の.む"), +("-の.み"), +("あたた.か"), +("あたた.かい"), +("あたた.まる"), +("あたた.める"), +("ぬく"), +("ば.ける"), +("ば.かす"), +("ふ.ける"), +("け.する"), +("や"), +("およ.ぐ"), +("そだ.つ"), +("そだ.ち"), +("そだ.てる"), +("はぐく.む"), +("に"), +("よこ"), +("さむ.い"), +("やかた"), +("たて"), +("きし"), +("ひら.く"), +("ひら.き"), +("-びら.き"), +("ひら.ける"), +("あ.く"), +("あ.ける"), +("きざはし"), +("お.きる"), +("お.こる"), +("お.こす"), +("おこ.す"), +("た.つ"), +("しろがね"), +("みや"), +("さ.る"), +("-さ.る"), +("ち"), +("そな.える"), +("つぶさ.に"), +("きみ"), +("-ぎみ"), +("はし"), +("くる.しい"), +("-ぐる.しい"), +("くる.しむ"), +("くる.しめる"), +("にが.い"), +("にが.る"), +("きわ.める"), +("き.める"), +("-ぎ.め"), +("き.まる"), +("さ.く"), +("かる.い"), +("かろ.やか"), +("かろ.んじる"), +("かか.る"), +("かかり"), +("-がかり"), +("かか.わる"), +("たま"), +("つぼね"), +("いそ.ぐ"), +("いそ.ぎ"), +("せ.く"), +("と.ぐ"), +("ま.がる"), +("ま.げる"), +("くま"), +("くら"), +("わざ"), +("か.ける"), +("む.く"), +("む.い"), +("-む.き"), +("む.ける"), +("-む.け"), +("む.かう"), +("む.かい"), +("む.こう"), +("む.こう-"), +("むこ"), +("むか.い"), +("みずうみ"), +("さけ.ぶ"), +("よびな"), +("さいわ.い"), +("さち"), +("しあわ.せ"), +("さら"), +("みなと"), +("つか.える"), +("ね"), +("-ね"), +("つか.う"), +("つか.い"), +("-つか.い"), +("-づか.い"), +("はじ.める"), +("-はじ.める"), +("はじ.まる"), +("し.ぬ"), +("し.に-"), +("ゆび"), +("さ.す"), +("-さ.し"), +("よわい"), +("は"), +("よわ.い"), +("よわい.する"), +("つ.ぐ"), +("つぎ"), +("うた"), +("まつ.る"), +("まつ.り"), +("まつり"), +("み"), +("みの.る"), +("まこと"), +("みの"), +("みち.る"), +("も.つ"), +("-も.ち"), +("も.てる"), +("ぬし"), +("おも"), +("あるじ"), +("もの"), +("うつ.す"), +("うつ.る"), +("うつ-"), +("うつ.し"), +("あつ.まる"), +("あつ.める"), +("つど.う"), +("す.む"), +("す.まう"), +("-ず.まい"), +("き.える"), +("け.す"), +("さけ"), +("さか-"), +("す"), +("ひろ.う"), +("お.わる"), +("-お.わる"), +("おわ.る"), +("お.える"), +("つい"), +("つい.に"), +("ところ"), +("-ところ"), +("どころ"), +("とこ"), +("なら.う"), +("なら.い"), +("え"), +("おも.い"), +("おも.り"), +("おも.なう"), +("かさ.ねる"), +("かさ.なる"), +("おも"), +("と.る"), +("と.り"), +("と.り-"), +("とり"), +("-ど.り"), +("まも.る"), +("まも.り"), +("もり"), +("-もり"), +("かみ"), +("あきな.う"), +("たす.ける"), +("たす.かる"), +("す.ける"), +("すけ"), +("やど"), +("やど.る"), +("やど.す"), +("あつ.い"), +("か.つ"), +("-が.ち"), +("まさ.る"), +("すぐ.れる"), +("かつ"), +("もう.す"), +("もう.し-"), +("さる"), +("う.える"), +("う.わる"), +("の.る"), +("-の.り"), +("の.せる"), +("かみ"), +("かん-"), +("こう-"), +("う.ける"), +("-う.け"), +("う.かる"), +("ふか.い"), +("-ぶか.い"), +("ふか.まる"), +("ふか.める"), +("み-"), +("すす.む"), +("すす.める"), +("み"), +("ま"), +("ま-"), +("まこと"), +("よ"), +("むかし"), +("いき"), +("あい-"), +("ま.つ"), +("-ま.ち"), +("う.つ"), +("う.ち-"), +("ぶ.つ"), +("はしら"), +("そそ.ぐ"), +("さ.す"), +("つ.ぐ"), +("すみ"), +("あいて"), +("こた.える"), +("そろ.い"), +("つれあ.い"), +("なら.ぶ"), +("むか.う"), +("ととの.える"), +("ととの.う"), +("おく.る"), +("ほか"), +("みじか.い"), +("とばり"), +("おも.う"), +("しら.べる"), +("しら.べ"), +("ととの.う"), +("ととの.える"), +("はや.い"), +("はや-"), +("はや.める"), +("すみ.やか"), +("か.わる"), +("かわ.る"), +("かわ.り"), +("か.わり"), +("-がわ.り"), +("-が.わり"), +("か.える"), +("よ"), +("しろ"), +("き.る"), +("き.せる"), +("つ.く"), +("つ.ける"), +("まった.く"), +("すべ.て"), +("にわ"), +("さだ.める"), +("さだ.まる"), +("さだ.か"), +("ひのと"), +("みやこ"), +("ふえ"), +("お.う"), +("くろがね"), +("ころ.がる"), +("ころ.げる"), +("ころ.がす"), +("ころ.ぶ"), +("まろ.ぶ"), +("うたた"), +("うつ.る"), +("くる.めく"), +("ゆ"), +("しま"), +("のぼ.る"), +("あ.がる"), +("わらべ"), +("たび"), +("-た.い"), +("まめ"), +("まめ-"), +("うご.く"), +("うご.かす"), +("な.げる"), +("-な.げ"), +("こと"), +("つか.う"), +("つか.える"), +("ひと.しい"), +("など"), +("-ら"), +("ふで"), +("こおり"), +("ひ"), +("こお.る"), +("なみ"), +("うつく.しい"), +("た.つ"), +("あば.く"), +("おこ.る"), +("つか.わす"), +("はな.つ"), +("かな.しい"), +("かな.しむ"), +("や.む"), +("-や.み"), +("やまい"), +("おもて"), +("-おもて"), +("あらわ.す"), +("あらわ.れる"), +("あら.わす"), +("くば.る"), +("そ.る"), +("そ.らす"), +("かえ.す"), +("かえ.る"), +("-かえ.る"), +("ま.ける"), +("ま.かす"), +("お.う"), +("-べ"), +("はな"), +("はた"), +("はたけ"), +("-ばたけ"), +("はこ"), +("かわ"), +("しな"), +("いた"), +("もの"), +("もの-"), +("さか"), +("かえ.す"), +("-かえ.す"), +("かえ.る"), +("-かえ.る"), +("さま"), +("さん"), +("くすり"), +("あらかじ.め"), +("たい.ら"), +("たい.らげる"), +("ひら"), +("お.ちる"), +("お.ち"), +("お.とす"), +("あぶら"), +("あじ"), +("あじ.わう"), +("なが.れる"), +("なが.れ"), +("なが.す"), +("-なが.す"), +("あ.る"), +("はな.す"), +("-っぱな.し"), +("はな.つ"), +("はな.れる"), +("こ.く"), +("ほう.る"), +("あそ.ぶ"), +("あそ.ばす"), +("つと.める"), +("よし"), +("よ.る"), +("おも"), +("おもて"), +("つら"), +("ひ"), +("と.う"), +("と.い"), +("とん"), +("いのち"), +("は"), +("ひつじ"), +("やわ.らぐ"), +("やわ.らげる"), +("なご.む"), +("なご.やか"), +("あ.える"), +("-じ"), +("みち"), +("ね.る"), +("ね.り"), +("みどり"), +("てる"), +("ふたつ"), +("たび"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('悪', 'わる.い'), +('悪', 'わる-'), +('悪', 'あ.し'), +('悪', 'にく.い'), +('悪', '-にく.い'), +('悪', 'ああ'), +('悪', 'いずくに'), +('悪', 'いずくんぞ'), +('悪', 'にく.む'), +('暗', 'くら.い'), +('暗', 'くら.む'), +('暗', 'くれ.る'), +('安', 'やす.い'), +('安', 'やす.まる'), +('安', 'やす'), +('安', 'やす.らか'), +('委', 'ゆだ.ねる'), +('医', 'い.やす'), +('医', 'い.する'), +('医', 'くすし'), +('運', 'はこ.ぶ'), +('飲', 'の.む'), +('飲', '-の.み'), +('温', 'あたた.か'), +('温', 'あたた.かい'), +('温', 'あたた.まる'), +('温', 'あたた.める'), +('温', 'ぬく'), +('化', 'ば.ける'), +('化', 'ば.かす'), +('化', 'ふ.ける'), +('化', 'け.する'), +('屋', 'や'), +('泳', 'およ.ぐ'), +('育', 'そだ.つ'), +('育', 'そだ.ち'), +('育', 'そだ.てる'), +('育', 'はぐく.む'), +('荷', 'に'), +('横', 'よこ'), +('寒', 'さむ.い'), +('館', 'やかた'), +('館', 'たて'), +('岸', 'きし'), +('開', 'ひら.く'), +('開', 'ひら.き'), +('開', '-びら.き'), +('開', 'ひら.ける'), +('開', 'あ.く'), +('開', 'あ.ける'), +('階', 'きざはし'), +('起', 'お.きる'), +('起', 'お.こる'), +('起', 'お.こす'), +('起', 'おこ.す'), +('起', 'た.つ'), +('銀', 'しろがね'), +('宮', 'みや'), +('去', 'さ.る'), +('去', '-さ.る'), +('血', 'ち'), +('具', 'そな.える'), +('具', 'つぶさ.に'), +('君', 'きみ'), +('君', '-ぎみ'), +('橋', 'はし'), +('苦', 'くる.しい'), +('苦', '-ぐる.しい'), +('苦', 'くる.しむ'), +('苦', 'くる.しめる'), +('苦', 'にが.い'), +('苦', 'にが.る'), +('究', 'きわ.める'), +('決', 'き.める'), +('決', '-ぎ.め'), +('決', 'き.まる'), +('決', 'さ.く'), +('軽', 'かる.い'), +('軽', 'かろ.やか'), +('軽', 'かろ.んじる'), +('係', 'かか.る'), +('係', 'かかり'), +('係', '-がかり'), +('係', 'かか.わる'), +('球', 'たま'), +('局', 'つぼね'), +('急', 'いそ.ぐ'), +('急', 'いそ.ぎ'), +('急', 'せ.く'), +('研', 'と.ぐ'), +('曲', 'ま.がる'), +('曲', 'ま.げる'), +('曲', 'くま'), +('庫', 'くら'), +('業', 'わざ'), +('県', 'か.ける'), +('向', 'む.く'), +('向', 'む.い'), +('向', '-む.き'), +('向', 'む.ける'), +('向', '-む.け'), +('向', 'む.かう'), +('向', 'む.かい'), +('向', 'む.こう'), +('向', 'む.こう-'), +('向', 'むこ'), +('向', 'むか.い'), +('湖', 'みずうみ'), +('号', 'さけ.ぶ'), +('号', 'よびな'), +('幸', 'さいわ.い'), +('幸', 'さち'), +('幸', 'しあわ.せ'), +('皿', 'さら'), +('港', 'みなと'), +('仕', 'つか.える'), +('根', 'ね'), +('根', '-ね'), +('使', 'つか.う'), +('使', 'つか.い'), +('使', '-つか.い'), +('使', '-づか.い'), +('始', 'はじ.める'), +('始', '-はじ.める'), +('始', 'はじ.まる'), +('死', 'し.ぬ'), +('死', 'し.に-'), +('指', 'ゆび'), +('指', 'さ.す'), +('指', '-さ.し'), +('歯', 'よわい'), +('歯', 'は'), +('歯', 'よわ.い'), +('歯', 'よわい.する'), +('次', 'つ.ぐ'), +('次', 'つぎ'), +('詩', 'うた'), +('祭', 'まつ.る'), +('祭', 'まつ.り'), +('祭', 'まつり'), +('実', 'み'), +('実', 'みの.る'), +('実', 'まこと'), +('実', 'みの'), +('実', 'みち.る'), +('持', 'も.つ'), +('持', '-も.ち'), +('持', 'も.てる'), +('主', 'ぬし'), +('主', 'おも'), +('主', 'あるじ'), +('者', 'もの'), +('写', 'うつ.す'), +('写', 'うつ.る'), +('写', 'うつ-'), +('写', 'うつ.し'), +('集', 'あつ.まる'), +('集', 'あつ.める'), +('集', 'つど.う'), +('住', 'す.む'), +('住', 'す.まう'), +('住', '-ず.まい'), +('消', 'き.える'), +('消', 'け.す'), +('酒', 'さけ'), +('酒', 'さか-'), +('州', 'す'), +('拾', 'ひろ.う'), +('終', 'お.わる'), +('終', '-お.わる'), +('終', 'おわ.る'), +('終', 'お.える'), +('終', 'つい'), +('終', 'つい.に'), +('所', 'ところ'), +('所', '-ところ'), +('所', 'どころ'), +('所', 'とこ'), +('習', 'なら.う'), +('習', 'なら.い'), +('重', 'え'), +('重', 'おも.い'), +('重', 'おも.り'), +('重', 'おも.なう'), +('重', 'かさ.ねる'), +('重', 'かさ.なる'), +('重', 'おも'), +('取', 'と.る'), +('取', 'と.り'), +('取', 'と.り-'), +('取', 'とり'), +('取', '-ど.り'), +('守', 'まも.る'), +('守', 'まも.り'), +('守', 'もり'), +('守', '-もり'), +('守', 'かみ'), +('商', 'あきな.う'), +('助', 'たす.ける'), +('助', 'たす.かる'), +('助', 'す.ける'), +('助', 'すけ'), +('宿', 'やど'), +('宿', 'やど.る'), +('宿', 'やど.す'), +('暑', 'あつ.い'), +('勝', 'か.つ'), +('勝', '-が.ち'), +('勝', 'まさ.る'), +('勝', 'すぐ.れる'), +('勝', 'かつ'), +('申', 'もう.す'), +('申', 'もう.し-'), +('申', 'さる'), +('植', 'う.える'), +('植', 'う.わる'), +('乗', 'の.る'), +('乗', '-の.り'), +('乗', 'の.せる'), +('神', 'かみ'), +('神', 'かん-'), +('神', 'こう-'), +('受', 'う.ける'), +('受', '-う.け'), +('受', 'う.かる'), +('深', 'ふか.い'), +('深', '-ぶか.い'), +('深', 'ふか.まる'), +('深', 'ふか.める'), +('深', 'み-'), +('進', 'すす.む'), +('進', 'すす.める'), +('身', 'み'), +('真', 'ま'), +('真', 'ま-'), +('真', 'まこと'), +('世', 'よ'), +('昔', 'むかし'), +('息', 'いき'), +('相', 'あい-'), +('待', 'ま.つ'), +('待', '-ま.ち'), +('打', 'う.つ'), +('打', 'う.ち-'), +('打', 'ぶ.つ'), +('柱', 'はしら'), +('注', 'そそ.ぐ'), +('注', 'さ.す'), +('注', 'つ.ぐ'), +('炭', 'すみ'), +('対', 'あいて'), +('対', 'こた.える'), +('対', 'そろ.い'), +('対', 'つれあ.い'), +('対', 'なら.ぶ'), +('対', 'むか.う'), +('整', 'ととの.える'), +('整', 'ととの.う'), +('送', 'おく.る'), +('他', 'ほか'), +('短', 'みじか.い'), +('帳', 'とばり'), +('想', 'おも.う'), +('調', 'しら.べる'), +('調', 'しら.べ'), +('調', 'ととの.う'), +('調', 'ととの.える'), +('速', 'はや.い'), +('速', 'はや-'), +('速', 'はや.める'), +('速', 'すみ.やか'), +('代', 'か.わる'), +('代', 'かわ.る'), +('代', 'かわ.り'), +('代', 'か.わり'), +('代', '-がわ.り'), +('代', '-が.わり'), +('代', 'か.える'), +('代', 'よ'), +('代', 'しろ'), +('着', 'き.る'), +('着', 'き.せる'), +('着', 'つ.く'), +('着', 'つ.ける'), +('全', 'まった.く'), +('全', 'すべ.て'), +('庭', 'にわ'), +('定', 'さだ.める'), +('定', 'さだ.まる'), +('定', 'さだ.か'), +('丁', 'ひのと'), +('都', 'みやこ'), +('笛', 'ふえ'), +('追', 'お.う'), +('鉄', 'くろがね'), +('転', 'ころ.がる'), +('転', 'ころ.げる'), +('転', 'ころ.がす'), +('転', 'ころ.ぶ'), +('転', 'まろ.ぶ'), +('転', 'うたた'), +('転', 'うつ.る'), +('転', 'くる.めく'), +('湯', 'ゆ'), +('島', 'しま'), +('登', 'のぼ.る'), +('登', 'あ.がる'), +('童', 'わらべ'), +('度', 'たび'), +('度', '-た.い'), +('豆', 'まめ'), +('豆', 'まめ-'), +('動', 'うご.く'), +('動', 'うご.かす'), +('投', 'な.げる'), +('投', '-な.げ'), +('事', 'こと'), +('事', 'つか.う'), +('事', 'つか.える'), +('等', 'ひと.しい'), +('等', 'など'), +('等', '-ら'), +('筆', 'ふで'), +('氷', 'こおり'), +('氷', 'ひ'), +('氷', 'こお.る'), +('波', 'なみ'), +('美', 'うつく.しい'), +('発', 'た.つ'), +('発', 'あば.く'), +('発', 'おこ.る'), +('発', 'つか.わす'), +('発', 'はな.つ'), +('悲', 'かな.しい'), +('悲', 'かな.しむ'), +('病', 'や.む'), +('病', '-や.み'), +('病', 'やまい'), +('表', 'おもて'), +('表', '-おもて'), +('表', 'あらわ.す'), +('表', 'あらわ.れる'), +('表', 'あら.わす'), +('配', 'くば.る'), +('反', 'そ.る'), +('反', 'そ.らす'), +('反', 'かえ.す'), +('反', 'かえ.る'), +('反', '-かえ.る'), +('負', 'ま.ける'), +('負', 'ま.かす'), +('負', 'お.う'), +('部', '-べ'), +('鼻', 'はな'), +('畑', 'はた'), +('畑', 'はたけ'), +('畑', '-ばたけ'), +('箱', 'はこ'), +('皮', 'かわ'), +('品', 'しな'), +('板', 'いた'), +('物', 'もの'), +('物', 'もの-'), +('坂', 'さか'), +('返', 'かえ.す'), +('返', '-かえ.す'), +('返', 'かえ.る'), +('返', '-かえ.る'), +('様', 'さま'), +('様', 'さん'), +('薬', 'くすり'), +('予', 'あらかじ.め'), +('平', 'たい.ら'), +('平', 'たい.らげる'), +('平', 'ひら'), +('落', 'お.ちる'), +('落', 'お.ち'), +('落', 'お.とす'), +('油', 'あぶら'), +('味', 'あじ'), +('味', 'あじ.わう'), +('流', 'なが.れる'), +('流', 'なが.れ'), +('流', 'なが.す'), +('流', '-なが.す'), +('有', 'あ.る'), +('放', 'はな.す'), +('放', '-っぱな.し'), +('放', 'はな.つ'), +('放', 'はな.れる'), +('放', 'こ.く'), +('放', 'ほう.る'), +('遊', 'あそ.ぶ'), +('遊', 'あそ.ばす'), +('勉', 'つと.める'), +('由', 'よし'), +('由', 'よ.る'), +('面', 'おも'), +('面', 'おもて'), +('面', 'つら'), +('陽', 'ひ'), +('問', 'と.う'), +('問', 'と.い'), +('問', 'とん'), +('命', 'いのち'), +('葉', 'は'), +('羊', 'ひつじ'), +('和', 'やわ.らぐ'), +('和', 'やわ.らげる'), +('和', 'なご.む'), +('和', 'なご.やか'), +('和', 'あ.える'), +('路', '-じ'), +('路', 'みち'), +('練', 'ね.る'), +('練', 'ね.り'), +('緑', 'みどり'), +('両', 'てる'), +('両', 'ふたつ'), +('旅', 'たび'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('悪い', 'わるい', 'bad, poor, undesirable, poor (quality), inferior, insufficient, evil, sinful, ugly, not beautiful, at fault, to blame, in the wrong, bad (at doing something), unprofitable, unbeneficial, sorry, (my) bad, unforgivable'), +('悪い行い', 'わるいおこない', 'bad deed, evil deed'), +('悪し', 'あし', 'bad, evil'), +('悪し様に', 'あしざまに', 'unfavourably, unfavorably, disparagingly, insultingly, ill'), +('憎い', 'にくい', 'hateful, abominable, poor-looking, detestable, amazing, fantastic, admirable, lovely, wonderful'), +('難い', 'にくい', 'difficult to ..., hard to ...'), +('安んぞ', 'いずくんぞ', 'how, why'), +('憎む', 'にくむ', 'to hate, to detest'), +('暗い', 'くらい', 'dark, gloomy, murky, depressed, dispirited, down in the dumps, dark (mood), dark (in colour), dull, ill-boding, dark (e.g. past), suspicious, unlikely (to succeed), hopeless, unpromising, unfamiliar (with), ignorant (of)'), +('暗い過去', 'くらいかこ', 'shadowy past, murky past'), +('眩む', 'くらむ', 'to be dazzled by, to be dizzied by, to be disoriented by, to be lost in (greed, lust, etc.), to become dark'), +('暮れる', 'くれる', 'to get dark, to grow dark, to end (of a day, year, season, etc.), to come to an end, to close, to be sunk in (e.g. despair), to be lost in (e.g. thought), to be overcome with'), +('安い', 'やすい', 'cheap, inexpensive, calm, peaceful, quiet'), +('休まる', 'やすまる', 'to be rested, to feel at ease, to repose, to be relieved'), +('安', 'やす', 'cheap, rash, thoughtless, careless, indiscreet, frivolous'), +('安い', 'やすい', 'cheap, inexpensive, calm, peaceful, quiet'), +('円安', 'えんやす', 'depreciation of the yen, weak yen'), +('目安', 'めやす', 'criterion, standard, yardstick, reference, aim, rough estimate, approximation'), +('安らか', 'やすらか', 'peaceful, tranquil, calm, restful'), +('安らかにお眠りください', 'やすらかにおねむりください', 'rest in peace, requiescat in pace, RIP'), +('委ねる', 'ゆだねる', 'to entrust (a matter) to, to leave to, to abandon oneself to (e.g. pleasure), to yield to (e.g. anger), to devote oneself to'), +('医する', 'いする', 'to cure, to heal'), +('薬師', 'くすし', 'doctor'), +('運ぶ', 'はこぶ', 'to carry, to transport, to move, to convey, to come, to go, to wield (a tool, etc.), to use, to go (well, etc.), to proceed, to progress'), +('飲む', 'のむ', 'to drink, to gulp, to swallow, to take (medicine), to smoke (tobacco), to engulf, to overwhelm, to keep down, to suppress, to accept (e.g. demand, condition), to make light of, to conceal'), +('飲む打つ買う', 'のむうつかう', 'drinking, gambling, and buying women in prostitution'), +('暖か', 'あたたか', 'warm, mild, genial'), +('暖かい', 'あたたかい', 'warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money'), +('暖かい', 'あたたかい', 'warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money'), +('温かい歓迎', 'あたたかいかんげい', 'warm reception, cordial welcome, warm greeting'), +('温まる', 'あたたまる', 'to warm oneself, to sun oneself, to warm up, to get warm'), +('温める', 'あたためる', 'to warm, to heat, to sit on (an idea, etc.), to keep to oneself'), +('温', 'ぬく', 'idiot, dummy, slow person'), +('温い', 'ぬるい', 'lukewarm, tepid, lenient, slow, stupid'), +('温々', 'ぬくぬく', 'snugly, cosily, warmly, comfortably, carefree, easily, safely, without hardship, freshly made and still warm, imprudently, shamelessly'), +('化ける', 'ばける', 'to take the form of (esp. in ref. to a spirit, fox, raccoon dog, etc.), to assume the shape of, to turn oneself into, to transform oneself into, to disguise oneself as, to change radically, to metamorphose, to improve unexpectedly and dramatically (esp. of an actor, artist, rikishi, etc.)'), +('化かす', 'ばかす', 'to bewitch, to confuse, to enchant, to delude'), +('老ける', 'ふける', 'to age, to grow old (esp. in appearance), to show marks of age'), +('屋', 'や', 'shop, store, restaurant, someone who sells (something) or works as (something), someone with a (certain) personality trait, house, roof'), +('屋根', 'やね', 'roof'), +('山小屋', 'やまごや', 'mountain hut (esp. one that offers lodging to climbers and hikers), mountain cottage, mountain shanty'), +('古着屋', 'ふるぎや', 'second hand clothes shop, someone who sells second hand clothes'), +('泳ぐ', 'およぐ', 'to swim, to struggle through (a crowd), to make one''s way through the world, to get along (in life), to totter, to lose one''s balance'), +('育つ', 'そだつ', 'to be raised (e.g. child), to be brought up, to grow (up)'), +('育ち', 'そだち', 'growth, breeding, growing up (in, as), upbringing'), +('育ち盛り', 'そだちざかり', 'growth period (in children)'), +('育てる', 'そだてる', 'to raise, to rear, to bring up, to train, to teach, to educate, to promote the growth of, to nurture, to foster, to develop'), +('育む', 'はぐくむ', 'to raise, to bring up, to rear, to cultivate, to foster, to nurture'), +('荷', 'に', 'load, baggage, cargo, freight, goods, burden, responsibility'), +('荷物', 'にもつ', 'luggage, baggage, package, burden, payload (of a packet, cell, etc.)'), +('浮き荷', 'うきに', 'flotsam'), +('抜き荷', 'ぬきに', 'pilfered goods'), +('横', 'よこ', 'horizontal (as opposed to vertical), lying down, side-to-side (as opposed to front-to-back), width, breadth, side (of a box, etc.), beside, aside, next to, unconnected'), +('横切る', 'よこぎる', 'to cross (e.g. road), to traverse'), +('真横', 'まよこ', '(right at the) side, just beside'), +('縦中横', 'たてちゅうよこ', 'using horizontal characters in vertical writing'), +('寒い', 'さむい', 'cold (e.g. weather), uninteresting (esp. joke), lame, dull, weak, corny'), +('館', 'やかた', 'mansion, palace, manor house, castle, nobleman, noblewoman, dignitary, cabin (on a boat, carriage, etc.)'), +('夏館', 'なつやかた', 'villa arranged appropriately for summer, mansion arranged appropriately for summer'), +('恐怖の館', 'きょうふのやかた', 'house of horrors'), +('館', 'やかた', 'mansion, palace, manor house, castle, nobleman, noblewoman, dignitary, cabin (on a boat, carriage, etc.)'), +('岸', 'きし', 'bank, coast, shore'), +('岸辺', 'きしべ', 'shore, bank (of a body of water)'), +('片岸', 'かたぎし', 'one bank (of a river)'), +('彼の岸', 'かのきし', 'nirvana'), +('開く', 'ひらく', 'to open, to undo, to unseal, to unpack, to bloom, to unfold, to spread out, to open (for business, e.g. in the morning), to be wide (gap, etc.), to widen, to hold (meeting, party, etc.), to give, to open, to found (nation, dynasty, sect, etc.), to open (a new business), to set up, to establish, to start, to open (ports, borders, etc.), to open (an account), to open up (new land, path, etc.), to clear, to develop, to open (a file, etc.), to extract (root), to reduce (equation), to cut open (fish), to change (kanji into hiragana), to flare (e.g. skirt), to slacken (into a poor posture)'), +('開き', 'ひらき', 'opening, gap, dried and opened fish'), +('開き直る', 'ひらきなおる', 'to become defiant, to fight back, to turn upon, to take the offensive'), +('開ける', 'ひらける', 'to open out (of a view, scenery, etc.), to spread out, to become clear (of a road, visibility, etc.), to open up, to improve (of luck, prospects, etc.), to get better, to develop (of a town, civilization, etc.), to become civilized, to modernize, to grow, to advance (of knowledge, ideas, etc.), to be sensible, to be understanding, to be enlightened, to open (of a new road, railway, etc.), to be opened to traffic, to become populous, to become densely built, to become bustling'), +('開く', 'あく', 'to open (e.g. doors), to open (e.g. business, etc.), to be empty, to be vacant, to be available, to be free, to be open (e.g. neckline, etc.), to have been opened (of one''s eyes, mouth, etc.), to come to an end, to open (one''s eyes, mouth, etc.), to have a hole, to form a gap, to have an interval (between events)'), +('開ける', 'あける', 'to open (a door, etc.), to unwrap (e.g. parcel, package), to unlock, to open (for business, etc.), to empty, to remove, to make space, to make room, to move out, to clear out, to be away from (e.g. one''s house), to leave (temporarily), to dawn, to grow light, to end (of a period, season), to begin (of the New Year), to leave (one''s schedule) open, to make time (for), to make (a hole), to open up (a hole)'), +('階', 'きざはし', 'stairs, stairs at the front of a noh stage'), +('起きる', 'おきる', 'to get up, to rise, to blaze up (fire), to wake up, to be awake, to stay awake, to occur (usu. of unfavourable incidents), to happen, to take place'), +('起こる', 'おこる', 'to occur, to happen'), +('起こす', 'おこす', 'to raise, to raise up, to set up, to pick up, to wake, to wake up, to waken, to awaken, to cause, to bring about, to lead to, to trigger, to give rise to, to create, to generate (e.g. heat, electricity), to produce, to start, to begin, to launch, to establish, to found, to set up, to open, to plough, to plow, to till, to fall ill with, to transcribe, to write down (what is spoken), to turn over (a card)'), +('起こす', 'おこす', 'to raise, to raise up, to set up, to pick up, to wake, to wake up, to waken, to awaken, to cause, to bring about, to lead to, to trigger, to give rise to, to create, to generate (e.g. heat, electricity), to produce, to start, to begin, to launch, to establish, to found, to set up, to open, to plough, to plow, to till, to fall ill with, to transcribe, to write down (what is spoken), to turn over (a card)'), +('起つ', 'たつ', 'to rise up, to initiate (political) action'), +('銀', 'ぎん', 'silver (Ag), silver coin, money, silver medal, silver colour, silver color, bank, silver general'), +('銀鯵', 'しろがねあじ', 'lookdown (Selene vomer)'), +('宮', 'みや', 'shrine, palace, imperial residence, Imperial prince, Imperial princess, headboard with built-in shelves, drawers, etc., temple'), +('宮家', 'みやけ', 'house of a prince of the blood'), +('若宮', 'わかみや', 'young imperial prince, child of the imperial family, shrine dedicated to a child of the god of the main shrine, newly built shrine (to which a divided tutelary deity has just been transferred)'), +('大宮', 'おおみや', 'imperial palace, shrine, Grand Empress Dowager, Empress Dowager, woman of imperial lineage who has borne a child, elderly woman of imperial lineage'), +('去る', 'さる', 'to leave, to go away, to pass, to elapse, to be distant, to send away, to drive off, to divorce, to (do) completely, last ... (e.g. "last April")'), +('去る者追わず', 'さるものおわず', 'do not chase the one who leaves'), +('血', 'ち', 'blood, blood, ancestry, lineage, stock, (the) blood, feelings, passions'), +('血筋', 'ちすじ', 'lineage, stock, descent, strain, blood relationship'), +('生き血', 'いきち', 'lifeblood'), +('悪血', 'あくち', 'impure blood'), +('備える', 'そなえる', 'to furnish with, to equip with, to provide, to install, to prepare for, to make preparations for, to make provision for, to possess (all that is needed), to be endowed with, to be equipped with, to be born with, to have since birth'), +('具に', 'つぶさに', 'in detail, with great care, completely, fully'), +('君', 'きみ', 'you, buddy, pal, monarch, ruler, sovereign, (one''s) master, he, she'), +('君たち', 'きみたち', 'you (plural), all of you, you all'), +('大君', 'おおきみ', 'emperor, king, prince'), +('嫁が君', 'よめがきみ', 'mouse'), +('橋', 'はし', 'bridge'), +('橋渡し', 'はしわたし', 'mediation, good offices, go-between, intermediary, mediator, bridge (between), building a bridge'), +('船橋', 'ふなばし', 'pontoon bridge, floating bridge, bridge (of a ship)'), +('浮き橋', 'うきはし', 'floating bridge, pontoon bridge'), +('苦しい', 'くるしい', 'painful, difficult, tough, hard, distressing, (psychologically) difficult, stressful, awkward (e.g. position), straitened (circumstances), tight (financial situation), needy, struggling, strained (interpretation, explanation, etc.), lame (e.g. excuse), forced (e.g. smile), far-fetched, hard to do, unpleasant'), +('苦しい言い訳', 'くるしいいいわけ', 'lame excuse, poor excuse'), +('苦しむ', 'くるしむ', 'to suffer, to groan, to be worried'), +('苦しめる', 'くるしめる', 'to torment, to pain, to inflict (physical) pain, to hurt, to harass, to cause (emotional) pain, to afflict, to distress, to bother, to trouble, to stump, to baffle'), +('苦い', 'にがい', 'bitter'), +('苦い薬', 'にがいくすり', 'bitter medicine'), +('苦る', 'にがる', 'to feel bitter, to scowl'), +('極める', 'きわめる', 'to carry to extremes, to go to the end of something, to investigate thoroughly, to master'), +('決める', 'きめる', 'to decide, to choose, to determine, to make up one''s mind, to resolve, to set one''s heart on, to settle, to arrange, to set, to appoint, to fix, to clinch (a victory), to decide (the outcome of a match), to persist in doing, to go through with, to always do, to have made a habit of, to take for granted, to assume, to dress up, to dress to kill, to dress to the nines, to carry out successfully (a move in sports, a pose in dance, etc.), to succeed in doing, to immobilize with a double-arm lock (in sumo, judo, etc.), to eat or drink something, to take illegal drugs'), +('決まる', 'きまる', 'to be decided, to be settled, to be fixed, to be arranged, to be unchanging, to be the same (as always), to be fixed, to be set, to be a fixed rule, to be destined, to be a convention, to be a custom, to be common knowledge, to be well executed (of a manoeuvre in a sport, game, etc.), to go well, to succeed, to connect (of a punch), to look good (of clothing), to look sharp, to be stylish, to suit one, to be held in place (of a hairdo), to be struck and held (of a pose in kabuki)'), +('決る', 'しゃくる', 'to dig out, to gouge out, to hollow out, to scoop, to ladle, to bail, to jerk (one''s chin)'), +('軽い', 'かるい', 'light (i.e. not heavy), feeling light (i.e. offering little resistance, moving easily), light (i.e. of foot), effortless, nimble, agile, non-serious, minor, unimportant, trivial, slight, small, gentle, soft, easy, lighthearted (e.g. joke), easy, simple, indiscriminate'), +('軽石', 'かるいし', 'pumice stone'), +('軽やか', 'かろやか', 'light, easy, non-serious, minor'), +('軽んじる', 'かろんじる', 'to look down on, to make light of'), +('係る', 'かかる', 'to be the work of, to be the result of, to be done by, to concern, to affect, to involve, to relate to'), +('係', 'かかり', 'charge, duty, person in charge, official, clerk, connection, linking'), +('係員', 'かかりいん', 'person in charge, official, attendant'), +('口座係', 'こうざかかり', 'teller (in bank)'), +('応接係', 'おうせつかかり', 'receptionist, desk clerk'), +('関わる', 'かかわる', 'to be affected, to be influenced, to be concerned with, to have to do with, to stick to (opinions)'), +('玉', 'たま', 'ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, okonomiyaki, coin, precious, beautiful, excellent'), +('玉突き', 'たまつき', 'billiards, pool, serial collisions (of cars)'), +('電気の球', 'でんきのたま', 'electric (light) bulb'), +('局', 'つぼね', 'court lady, lady-in-waiting (Heian period), separate room in a palace (esp. for a lady) (Heian period), room for a very low class prostitute, very low class prostitute'), +('局女郎', 'つぼねじょろう', 'prostitute of the lowest class (Edo period)'), +('御局', 'おつぼね', 'court lady with her own private chamber or office, low-class prostitute (Edo period)'), +('お局', 'おつぼね', 'senior female worker who supervises junior employees in a domineering fashion'), +('急ぐ', 'いそぐ', 'to hurry, to rush, to hasten, to make something happen sooner'), +('急ぎ', 'いそぎ', 'haste, hurry, expedition, speed, dispatch'), +('急ぎ足', 'いそぎあし', 'fast pace, quick pace'), +('急く', 'せく', 'to hurry, to rush'), +('研ぐ', 'とぐ', 'to sharpen, to hone, to whet, to grind, to wash (rice), to scour, to polish, to burnish'), +('曲がる', 'まがる', 'to bend, to curve, to warp, to wind, to twist, to turn, to be awry, to be askew, to be crooked'), +('曲げる', 'まげる', 'to bend, to crook, to bow, to curve, to curl, to lean, to tilt, to incline, to slant, to bend (the truth), to distort, to twist, to pervert, to yield (a point), to depart (from a principle), to ignore (what one really thinks), to pawn'), +('隈', 'くま', 'corner, nook, recess, shade, shadow, dark area, dark circles (under the eyes), dark rings, shading, gradation, kumadori, style of kabuki makeup used for violent roles'), +('蔵', 'くら', 'warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator'), +('蔵入れ', 'くらいれ', 'warehousing, storing in a warehouse'), +('神庫', 'ほくら', 'small shrine, depository for sacred objects'), +('業', 'わざ', 'deed, act, work, performance'), +('業師', 'わざし', 'tricky wrestler, shrewd fellow'), +('寝技', 'ねわざ', 'pinning technique (in wrestling or judo), underhanded dealings'), +('投げ技', 'なげわざ', 'throw or throwing technique (sumo, judo)'), +('向く', 'むく', 'to turn toward, to look (up, down, etc.), to face (e.g. east) (of a building, window, etc.), to look out on, to front (on), to point (of an arrow, compass needle, etc.), to be suited to, to be fit for, to go towards, to turn to (of one''s interests, feelings, etc.), to be inclined (to do)'), +('向いている', 'むいている', 'to be cut out for (e.g. a job), to be suited (to)'), +('向ける', 'むける', 'to turn towards, to point'), +('向かう', 'むかう', 'to face, to go towards, to head towards'), +('向かうところ敵無し', 'むかうところてきなし', 'unbeatable, invincible, irresistible'), +('向い', 'むかい', 'facing, opposite, across the street, other side'), +('向かい合う', 'むかいあう', 'to be opposite, to face each other'), +('向こう', 'むこう', 'opposite side, other side, opposite direction, over there, that way, far away, beyond, the other party, the other person, future (starting now)'), +('向こう側', 'むこうがわ', 'other side, opposite side, other party'), +('向こう', 'むこう', 'opposite side, other side, opposite direction, over there, that way, far away, beyond, the other party, the other person, future (starting now)'), +('向こう側', 'むこうがわ', 'other side, opposite side, other party'), +('向い', 'むかい', 'facing, opposite, across the street, other side'), +('向かい合う', 'むかいあう', 'to be opposite, to face each other'), +('湖', 'みずうみ', 'lake'), +('白鳥の湖', 'はくちょうのみずうみ', 'Swan Lake (ballet)'), +('幸い', 'さいわい', 'happiness, blessedness, luck, fortune, felicity, luckily, fortunately'), +('幸いなことに', 'さいわいなことに', 'fortunately, luckily, thankfully'), +('幸', 'さち', 'good luck, fortune, happiness, harvest, yield'), +('幸あれ', 'さちあれ', 'good luck!, all the best'), +('川の幸', 'かわのさち', 'catch (fish) of the river, products of the river, fruits of the river'), +('山幸', 'やまさち', 'food of the mountains (wild game, mountain vegetables, mushrooms, etc.), fruits of the land'), +('幸せ', 'しあわせ', 'happiness, good fortune, luck, blessing'), +('幸せ者', 'しあわせもの', 'fortunate person, lucky fellow, lucky dog'), +('皿', 'さら', 'plate, dish, platter, disc, serving, helping, course, kanji radical 108 (at the bottom)'), +('皿洗い', 'さらあらい', 'washing-up, dish-washing'), +('手皿', 'てさら', 'holding food over one''s hand'), +('一皿', 'ひとさら', 'plate, dish (of food)'), +('港', 'みなと', 'harbour, harbor, port'), +('港町', 'みなとまち', 'port city, harbor city, harbour city'), +('仕える', 'つかえる', 'to serve, to work for, to attend'), +('根', 'ね', 'root (of a plant), root (of a tooth, hair, etc.), center (of a pimple, etc.), root (of all evil, etc.), source, origin, cause, basis, one''s true nature, (fishing) reef'), +('根回し', 'ねまわし', 'laying the groundwork, behind-the-scenes maneuvering, consensus-building process, digging around the roots of a tree (before transplanting)'), +('島根', 'しまね', 'Shimane (prefecture), island country'), +('尾根', 'おね', '(mountain) ridge'), +('使う', 'つかう', 'to use (a tool, method, etc.), to make use of, to put to use, to use (a person, animal, puppet, etc.), to employ, to handle, to manage, to manipulate, to use (time, money, etc.), to spend, to consume, to use (language), to speak'), +('使い', 'つかい', 'errand, mission, going as envoy, messenger, bearer, errand boy, errand girl, familiar spirit, use, usage, user, trainer, tamer, charmer'), +('使い道', 'つかいみち', 'purpose, utility, objective, way to use something'), +('春の使い', 'はるのつかい', 'Japanese bush warbler, messenger of spring'), +('始める', 'はじめる', 'to start, to begin, to commence, to initiate, to originate, to start up (a business, society, etc.), to open (e.g. a store), to establish, to start ..., to begin to ...'), +('始まる', 'はじまる', 'to begin, to start, to commence, to happen (again), to begin (anew), to date (from), to originate (in)'), +('死ぬ', 'しぬ', 'to die, to pass away, to lose spirit, to lose vigor, to look dead, to cease, to stop'), +('死ぬほど', 'しぬほど', 'to death (bored, scared, etc.), to distraction, like crazy, like mad, so much, dying (e.g. for a drink)'), +('指', 'ゆび', 'finger, toe, digit'), +('指輪', 'ゆびわ', '(finger) ring'), +('中指', 'なかゆび', 'middle finger, long finger, second finger, tall finger, middle toe, third toe'), +('突き指', 'つきゆび', 'jamming a finger, stubbing a toe, spraining a finger (toe)'), +('指す', 'さす', 'to point, to nominate, to select someone, to specify some person, to identify, to indicate, to point out, to play (a game of shogi), to move (a piece), to extend one''s arm straight ahead (in dance)'), +('刺股', 'さすまた', 'sasumata, man catcher, two-pronged weapon for catching criminals'), +('齢', 'よわい', '(one''s) age'), +('歯', 'は', 'tooth'), +('歯医者', 'はいしゃ', 'dentist'), +('継ぎ歯', 'つぎば', 'capped tooth, (dental) crown'), +('年端', 'としは', 'age, years (old)'), +('齢', 'よわい', '(one''s) age'), +('次ぐ', 'つぐ', 'to rank next to, to come after'), +('次ぐ身', 'つぐみ', 'next in line, heir'), +('次', 'つぎ', 'next, following, subsequent, stage, station'), +('次々', 'つぎつぎ', 'in succession, one by one'), +('取次', 'とりつぎ', 'agency, commission, distributor, intermediation, reception (of guests), conveyance (of messages)'), +('中継ぎ', 'なかつぎ', 'joining, joint, intermediation, acting as an intermediary, relaying, taking over, middle relief pitcher, middle reliever, pole-shaped item with a join in the middle, tea container with a lid that is the same size as the body'), +('歌', 'うた', 'song, singing, classical Japanese poem (esp. tanka), modern poetry'), +('唐歌', 'からうた', 'Chinese poem'), +('祭る', 'まつる', 'to deify, to enshrine, to pray, to worship'), +('祭り', 'まつり', 'festival, feast, harassment by an Internet pitchfork mob, online shaming, flaming, galore (as in "goals galore"), frenzy, mania'), +('祭り上げる', 'まつりあげる', 'to set up (in high position), to kick upstairs, to hold sacred, to worship'), +('お祭り', 'おまつり', 'festival, feast, carnival'), +('秋祭り', 'あきまつり', 'autumn festival, fall festival'), +('祭り', 'まつり', 'festival, feast, harassment by an Internet pitchfork mob, online shaming, flaming, galore (as in "goals galore"), frenzy, mania'), +('祭り上げる', 'まつりあげる', 'to set up (in high position), to kick upstairs, to hold sacred, to worship'), +('お祭り', 'おまつり', 'festival, feast, carnival'), +('秋祭り', 'あきまつり', 'autumn festival, fall festival'), +('実', 'み', 'fruit, nut, seed, (in broth) pieces of meat, vegetable, etc., content, substance'), +('実る', 'みのる', 'to bear fruit, to ripen'), +('浮き実', 'うきみ', 'soup garnish'), +('桷', 'ずみ', 'Toringo crabapple (Malus sieboldii)'), +('実る', 'みのる', 'to bear fruit, to ripen'), +('実るほど頭の下がる稲穂かな', 'みのるほどあたまのさがるいなほかな', 'the more learned, the more humble, the boughs bearing the most hang lowest'), +('誠', 'まこと', 'truth, reality, sincerity, honesty, integrity, fidelity, that''s right'), +('実に', 'じつに', 'indeed, really, absolutely, truly, actually, very, quite'), +('嘘から出たまこと', 'うそからでたまこと', 'something intended as a lie or joke which (by chance) ends up being true, lie turned truth'), +('実る', 'みのる', 'to bear fruit, to ripen'), +('実り', 'みのり', 'ripening (of a crop), crop, harvest'), +('持つ', 'もつ', 'to hold (in one''s hand), to take, to carry, to possess, to have, to own, to maintain, to keep, to last, to be durable, to keep, to survive, to take charge of, to be in charge of, to hold (meeting, etc.), to have (opportunity, etc.), to have "it", to have that special something, to be blessed with good luck'), +('持子', 'もつご', 'stone moroko (Pseudorasbora parva), topmouth gudgeon'), +('持てる', 'もてる', 'to be able to possess (hold, get, etc.), to be well liked, to be popular, to be pampered (spoiled, doted upon, etc.), to be welcomed, to endure (the tests of time, the elements, etc.), to last, possessed, held, rich, wealthy, affluent'), +('持てる者', 'もてるもの', '(the) haves, those who have'), +('主', 'ぬし', 'head (of a household, etc.), leader, master, owner, proprietor, proprietress, subject (of a rumour, etc.), doer (of a deed), guardian spirit (e.g. long-resident beast, usu. with mystical powers), long-time resident (or employee, etc.), husband, you'), +('馬主', 'うまぬし', 'owner of a horse (esp. racehorse), registered owner (of a racehorse)'), +('船主', 'せんしゅ', 'shipowner'), +('主', 'おも', 'chief, main, principal, important, main secondary or supporting role (in kyogen)'), +('主に', 'おもに', 'mainly, primarily'), +('主', 'あるじ', 'head (of a household), proprietor (of a store), proprietress, landlord, landlady, master (of a servant), entertaining someone as one''s guest'), +('女主', 'おんなあるじ', 'female owner, proprietress, landlady'), +('坊の主', 'ぼうのあるじ', 'master of the priests quarters'), +('者', 'もの', 'person'), +('者ども', 'ものども', 'you, people'), +('臆病者', 'おくびょうもの', 'coward, wimp'), +('幸せ者', 'しあわせもの', 'fortunate person, lucky fellow, lucky dog'), +('写す', 'うつす', 'to transcribe, to duplicate, to reproduce, to imitate, to trace, to describe, to film, to picture, to photograph'), +('写る', 'うつる', 'to be photographed, to be projected'), +('写し', 'うつし', 'copy, duplicate, facsimile, transcript'), +('映し出す', 'うつしだす', 'to project, to show, to portray, to depict, to describe, to reflect'), +('集まる', 'あつまる', 'to gather, to collect, to assemble'), +('集める', 'あつめる', 'to collect, to assemble, to gather'), +('集う', 'つどう', 'to meet, to assemble, to congregate'), +('住む', 'すむ', 'to live (of humans), to reside, to inhabit, to dwell, to abide'), +('住まう', 'すまう', 'to live, to reside, to inhabit'), +('消える', 'きえる', 'to disappear, to vanish, to go out of sight, to go away, to become lost, to go out (of a fire, light, etc.), to die, to turn off (e.g. of a TV screen), to fade (of a feeling, impression, etc.), to vanish (e.g. of hope), to go away (e.g. of a smell, itchiness, sleepiness), to disappear, to fade away (e.g. of footsteps), to wear away (e.g. of an inscription), to rub out (of writing), to fade (e.g. of ink), to be lost (e.g. of a tradition), to die out, to disappear'), +('消す', 'けす', 'to erase, to delete, to cross out, to turn off (power), to switch off, to extinguish, to put out, to bump off'), +('酒', 'さけ', 'alcohol, sake'), +('酒飲み', 'さけのみ', '(heavy) drinker, drunkard, tippler, boozer'), +('手酌酒', 'てじゃくさけ', 'pouring one''s own drinks, drinking alone'), +('小酒', 'こさけ', 'small drink, small amount of alcohol'), +('州', 'す', 'sandbank, sandbar'), +('洲浜', 'すはま', 'sandy beach, sandbar that projects into the ocean, particularly in a wavy form, designs and objects with a wavy pattern, sweet mochi cake'), +('白州', 'しらす', 'white sandbar, white sandbank, area in a garden or entrance of a house laid with white sand or pebbles, gravel separating a noh stage from the audience, court of law in the Edo period, in which the parties sat on white sand'), +('中州', 'なかす', 'sandbank (in a river), sandbar'), +('拾う', 'ひろう', 'to pick up, to find, to gather'), +('終わる', 'おわる', 'to end, to come to an end, to close, to finish'), +('終わる', 'おわる', 'to end, to come to an end, to close, to finish'), +('終える', 'おえる', 'to finish, to graduate'), +('終', 'つい', 'end, final, end of life, death, never, not at all'), +('遂に', 'ついに', 'finally, at last, in the end, after all, never (happened)'), +('遂に', 'ついに', 'finally, at last, in the end, after all, never (happened)'), +('所', 'ところ', 'place, spot, scene, site, address, district, area, locality, one''s house, point, aspect, side, facet, passage (in text), part, space, room, thing, matter, whereupon, as a result, about to, on the verge of, was just doing, was in the process of doing, have just done, just finished doing'), +('所が', 'ところが', 'even so, however, still, whereupon, even though, nevertheless, on the contrary, as a matter of fact, despite'), +('至る所', 'いたるところ', 'everywhere, all over, throughout'), +('ここの所', 'ここのところ', 'of late, lately, this part, this point, here'), +('所か', 'どころか', 'far from, anything but, not at all, let alone, to say nothing of, not to mention, much less'), +('所ではない', 'どころではない', 'not the time for, not the place for, far from, anything but, ... is out of the question, ... isn''t the word for it'), +('所々', 'ところどころ', 'here and there, in places'), +('見どころ', 'みどころ', 'point worthy of note, good point, part worth seeing, highlight, good scene, (signs of) promise, good prospects (for the future)'), +('所', 'ところ', 'place, spot, scene, site, address, district, area, locality, one''s house, point, aspect, side, facet, passage (in text), part, space, room, thing, matter, whereupon, as a result, about to, on the verge of, was just doing, was in the process of doing, have just done, just finished doing'), +('所が', 'ところが', 'even so, however, still, whereupon, even though, nevertheless, on the contrary, as a matter of fact, despite'), +('早いとこ', 'はやいとこ', 'promptly, quickly'), +('僕んとこ', 'ぼくんとこ', 'at my place'), +('習う', 'ならう', 'to take lessons in, to be taught, to learn (from a teacher), to study (under a teacher), to get training in'), +('習うより慣れろ', 'ならうよりなれろ', 'experience is the best teacher, custom makes all things easy, you learn best by doing, practice makes perfect, it is better to grow accustomed than to be taught'), +('習い', 'ならい', 'as is habit, the way life normally is'), +('習い事', 'ならいごと', 'accomplishment, lessons (in an art, skill, etc.), practice'), +('見習い', 'みならい', 'apprenticeship, probation, learning by observation, apprentice, trainee, probationer'), +('行儀見習い', 'ぎょうぎみならい', 'learning good manners through apprenticeship (to an upper-class family)'), +('重', 'え', '-fold, -ply'), +('八重', 'やえ', 'multilayered, doubled'), +('九重', 'ここのえ', 'ninefold, imperial palace, the Court'), +('重い', 'おもい', 'heavy, weighty, heavy (feeling), depressed, gloomy, blue, uneasy, slow, sluggish, lumbering, ponderous, clumsy, important (position, responsibility, etc.), serious, grave, serious (punishment, illness, etc.), severe, critical, solid, established, dignified, sensible'), +('重いソフト', 'おもいソフト', 'resource-hungry software (CPU, memory, etc.), bloatware'), +('重り', 'おもり', 'weight, sinker (fishing)'), +('重ねる', 'かさねる', 'to pile up, to heap up, to stack up, to put on top of another, to repeat many times over, to go through repeatedly, to accumulate'), +('重なる', 'かさなる', 'to be piled up, to lie on top of one another, to come one after another, to happen over and over, to pile up (e.g. stress), to accumulate, to overlap (each other), to occur at the same time, to happen simultaneously'), +('主', 'おも', 'chief, main, principal, important, main secondary or supporting role (in kyogen)'), +('重い', 'おもい', 'heavy, weighty, heavy (feeling), depressed, gloomy, blue, uneasy, slow, sluggish, lumbering, ponderous, clumsy, important (position, responsibility, etc.), serious, grave, serious (punishment, illness, etc.), severe, critical, solid, established, dignified, sensible'), +('身重', 'みおも', 'pregnant'), +('気重', 'きおも', 'heavy-hearted'), +('取る', 'とる', 'to take, to pick up, to grab, to catch, to pass, to hand, to give, to get, to obtain, to acquire, to win, to receive, to earn, to take (e.g. a vacation), to adopt (a method, proposal, etc.), to take (a measure, attitude, etc.), to choose, to remove, to get rid of, to take off, to take away, to steal, to rob, to eat, to have (e.g. lunch), to take (e.g. vitamins), to pick (e.g. flowers), to gather, to extract (e.g. juice), to catch (e.g. fish), to take up (time, space), to occupy, to spare, to set aside, to secure, to reserve, to save, to put aside, to keep, to take (e.g. a joke), to interpret, to understand, to make out, to grasp, to record, to take down, to subscribe to (e.g. a newspaper), to take, to buy, to get, to order, to have delivered, to charge, to fine, to take (tax), to take (e.g. a wife), to take on (e.g. an apprentice), to adopt, to accept, to compete (in sumo, cards, etc.), to play'), +('取るに足らない', 'とるにたらない', 'insignificant, inconsequential, trifling, negligible, of little importance'), +('取り', 'とり', 'taking, taker, collecting, collector, remover, removal, last performer of the day (usu. the star performer), last performance of the day, active partner (e.g. in judo demonstration), emphatic or formal prefix'), +('取り替える', 'とりかえる', 'to exchange, to swap, to barter, to replace, to substitute'), +('ちり取り', 'ちりとり', 'dustpan'), +('関取', 'せきとり', 'ranking wrestler in the makuuchi (senior-grade) or juryo (junior-grade) divisions'), +('取り', 'とり', 'taking, taker, collecting, collector, remover, removal, last performer of the day (usu. the star performer), last performance of the day, active partner (e.g. in judo demonstration), emphatic or formal prefix'), +('取り替える', 'とりかえる', 'to exchange, to swap, to barter, to replace, to substitute'), +('ちり取り', 'ちりとり', 'dustpan'), +('関取', 'せきとり', 'ranking wrestler in the makuuchi (senior-grade) or juryo (junior-grade) divisions'), +('守る', 'まもる', 'to protect, to guard, to defend, to keep (i.e. a promise), to abide (by the rules), to observe, to obey, to follow'), +('守り', 'まもり', 'protection, defense, defence, providence, amulet, charm, talisman'), +('守り抜く', 'まもりぬく', 'to hold fast, to protect to the end'), +('島主', 'とうしゅ', 'island chief'), +('山守', 'やまもり', 'ranger (forest), mountain guardian'), +('守り', 'もり', 'babysitting, babysitter, protecting, keeping, keeper'), +('守り立てる', 'もりたてる', 'to support, to back up, to rally round, to revive (e.g. a company), to boost (e.g. morale), to bring up, to raise'), +('子守', 'こもり', 'looking after a baby, taking care of a baby, babysitting, babysitter'), +('井守', 'いもり', 'newt (esp. the Japanese fire belly newt, Cynops pyrrhogaster)'), +('守', 'かみ', 'director (of the provincial governors under the ritsuryō system)'), +('肥後守', 'ひごのかみ', 'higonokami, type of folding knife with metal handle'), +('薩摩の守', 'さつまのかみ', 'traveling while deliberately not paying a fare (travelling)'), +('商う', 'あきなう', 'to trade in (commercial goods), to deal in, to sell'), +('助ける', 'たすける', 'to save, to rescue, to help, to assist, to support (financially), to contribute (to), to provide aid, to facilitate, to stimulate, to promote, to contribute to'), +('助かる', 'たすかる', 'to be saved, to be rescued, to survive, to escape harm, to be spared damage, to be helped, to be saved trouble'), +('助', 'すけ', 'assistance, help, helper, babe, chick, broad'), +('助手', 'じょしゅ', 'assistant, helper, assistant (to a professor)'), +('福助', 'ふくすけ', 'large-headed dwarf statue, bringer of good luck'), +('デコ助', 'デコすけ', 'big forehead, fivehead, asshole'), +('宿', 'やど', 'lodging, inn, hotel, house, home, dwelling, home of a servant''s parents (or guarantor, etc.)'), +('宿屋', 'やどや', 'inn'), +('連れ込み宿', 'つれこみやど', 'hotel catering for lovers, hotel that rents rooms by the hour'), +('相宿', 'あいやど', 'staying in the same inn or hotel, rooming together'), +('宿る', 'やどる', 'to dwell, to live, to remain, to stay at, to take shelter at, to stop at, to lodge at, to be pregnant, to be part of a constellation, to be a parasite (bugs, plants, etc.)'), +('宿す', 'やどす', 'to house, to contain, to harbour (a feeling), to hold (e.g. dew on leaves), to carry (a baby), to be pregnant, to give lodging to, to accommodate'), +('暑い', 'あつい', 'hot, warm, sultry, heated, passionate, impassioned, burning (desire, etc.), on everybody''s mind, on the radar, du jour, interested (gaze, etc.)'), +('暑い盛り', 'あついさかり', 'heat of the day, hottest part of the day'), +('勝つ', 'かつ', 'to win, to gain victory'), +('鰹節', 'かつおぶし', 'katsuobushi, small pieces of sliced dried bonito'), +('勝る', 'まさる', 'to excel, to surpass, to exceed, to have an edge, to be superior, to outrival, to outweigh, to preponderate'), +('優るとも劣らない', 'まさるともおとらない', 'not at all inferior to, rival or surpass, compare favorably (with)'), +('優れる', 'すぐれる', 'to surpass, to outstrip, to excel'), +('勝つ', 'かつ', 'to win, to gain victory'), +('鰹節', 'かつおぶし', 'katsuobushi, small pieces of sliced dried bonito'), +('申す', 'もうす', 'to say, to be called, to do'), +('申すまでもなく', 'もうすまでもなく', 'needless to say, obviously, of course'), +('申', 'さる', 'the Monkey (ninth sign of the Chinese zodiac), hour of the Monkey (around 4pm, 3-5pm, or 4-6pm), west-southwest, 7th month of the lunar calendar'), +('申年', 'さるどし', 'year of the Monkey'), +('庚申', 'かのえさる', 'Metal Monkey (57th of the sexagenary cycle, e.g. 1920, 1980, 2040), Shōmen Kongō (deity), kōshin-machi (religious wake)'), +('甲申', 'きのえさる', 'Wood Monkey (21st year of the sexagenary cycle, e.g. 1944, 2004, 2064)'), +('植える', 'うえる', 'to plant, to grow, to raise, to insert, to transplant, to implant, to set (type), to inoculate (e.g. an infectious agent), to instill (idea, value, etc.), to inculcate'), +('植わる', 'うわる', 'to be planted'), +('乗る', 'のる', 'to get on (train, plane, bus, ship, etc.), to get in, to board, to take, to embark, to get on (e.g. a footstool), to step on, to jump on, to sit on, to mount, to reach, to go over, to pass, to follow, to stay (on track), to go with (the times, etc.), to take part, to participate, to join, to get into the swing (and sing, dance, etc.), to be deceived, to be taken in, to be carried, to be spread, to be scattered, to stick, to attach, to take, to go on'), +('伸るか反るか', 'のるかそるか', 'win or lose, sink or swim, make or break, all or nothing'), +('乗せる', 'のせる', 'to place on (something), to give (someone) a ride, to give a lift, to pick up, to help on board, to load (luggage), to carry, to take on board, to send out (on the airwaves, etc.), to deceive, to take for a ride, to (sing) along with (musical accompaniment), to let (someone) take part, to excite (someone), to publish (an article), to run (an ad)'), +('神', 'かみ', 'god, deity, divinity, spirit, kami, incredible, fantastic, amazing, Emperor (of Japan), thunder'), +('神様', 'かみさま', 'God, god, ace, king, superior person, god (amongst men)'), +('大神', 'おおかみ', 'god'), +('ギ神', 'ギかみ', 'Greek mythology'), +('受ける', 'うける', 'to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well'), +('受かる', 'うかる', 'to pass (examination)'), +('深い', 'ふかい', 'deep, profound, dense, thick, close (relationship), intense, strong, late'), +('深い愛情', 'ふかいあいじょう', 'deep affection, devotion, profound attachment'), +('深まる', 'ふかまる', 'to deepen, to heighten, to intensify'), +('深める', 'ふかめる', 'to deepen, to heighten, to intensify'), +('進む', 'すすむ', 'to advance, to go forward, to precede, to go ahead (of), to make progress, to improve, to deepen, to heighten, to be fast (of a clock), to be ahead, to do of one''s own free will'), +('進める', 'すすめる', 'to advance, to move forward, to put (a clock, watch) forward, to carry forward (plans, work, etc.), to proceed with, to make progress in, to further, to advance, to hasten, to speed up, to raise, to elevate, to promote, to develop, to stimulate (e.g. one''s appetite)'), +('身', 'み', 'body, oneself, one''s place, one''s position, main part, meat (as opposed to bone, skin, etc.), wood (as opposed to bark), blade (as opposed to its handle), container (as opposed to its lid)'), +('味方', 'みかた', 'friend, ally, supporter, taking sides with, supporting, standing by, backing up'), +('中身', 'なかみ', 'contents, interior, filling, substance, content, (sword) blade'), +('受身', 'うけみ', 'the defensive, passive attitude, passivity, passiveness, the passive, passive voice, ukemi (the art of falling safely)'), +('真', 'ま', 'just, right, due (east), pure, genuine, true, truth'), +('愛', 'まな', 'beloved, dear'), +('秀真', 'ほつま', 'Hotsuma (script)'), +('誠に', 'まことに', 'indeed, really, absolutely, truly, actually, very, quite'), +('実しやか', 'まことしやか', 'plausible (but untrue), credible (e.g. of a lie), specious, truthy'), +('嘘から出たまこと', 'うそからでたまこと', 'something intended as a lie or joke which (by chance) ends up being true, lie turned truth'), +('世', 'よ', 'world, society, public, life, lifetime, age, era, period, epoch, generation, reign, rule, the times, world (of existence)'), +('世の中', 'よのなか', 'society, the world, the times'), +('あの世', 'あのよ', 'the other world, the next world, the world beyond, world after death'), +('この世', 'このよ', 'this world, this life, world of the living'), +('昔', 'むかし', 'olden days, former'), +('昔話', 'むかしばなし', 'old tale, folk tale, legend, reminiscence'), +('一昔', 'ひとむかし', 'ages, long time, decade, ten years (ago)'), +('遥か昔', 'はるかむかし', 'long ago'), +('息', 'いき', 'breath, breathing, tone, mood'), +('意気込む', 'いきごむ', 'to be enthusiastic about, to be eager, to be keen'), +('鼻息', 'はないき', 'nasal breathing, breathing through one''s nose, person''s pleasure, excitement'), +('寝息', 'ねいき', 'breathing of a sleeping person'), +('待つ', 'まつ', 'to wait, to await, to look forward to, to anticipate, to depend on, to need'), +('待つ身は長い', 'まつみはながい', 'a watched pot never boils'), +('打つ', 'うつ', 'to hit, to strike, to knock, to beat, to punch, to slap, to tap, to bang, to clap, to pound, to strike (noon, etc.), to sound (cymbals, etc.), to beat (a drum, etc.), to beat (rhythmically, e.g. pulse, waves, etc.), to move, to impress, to touch, to drive in, to hammer in, to put in, to inject, to vaccinate, to type, to send, to transmit, to insert, to write in, to mark, to make (noodles, etc.), to prepare, to till (soil), to sprinkle, to throw, to cast, to do, to carry out, to play, to perform, to engage in (gambling, etc.), to pay (a deposit, etc.), to visit (on a pilgrimage), to line (a coat), to bind (a criminal)'), +('打つ手', 'うつて', 'way to do (something)'), +('打つ', 'ぶつ', 'to hit (a person), to strike, to beat, to deliver (a speech), to give (an address)'), +('打つかる', 'ぶつかる', 'to strike against, to collide with, to bump into, to conflict, to encounter, to meet, to clash'), +('柱', 'はしら', 'pillar, post, support, prop, mainstay, counter for buddhas, gods, nobles, etc.'), +('柱穴', 'ちゅうけつ', 'posthole (archaeology)'), +('杖柱', 'つえはしら', 'person upon whom one relies'), +('心の柱', 'しんのはしら', 'central pillar of a pagoda'), +('注ぐ', 'そそぐ', 'to pour (into), to sprinkle on (from above), to water (e.g. plants), to pour onto, to spray, to shed (tears), to concentrate one''s energy (strength, attention, etc.) on, to devote to, to fix (one''s eyes) on, to flow into (e.g. of a river), to run into, to drain into, to fall (of rain, snow), to pour down'), +('注す', 'さす', 'to pour, to add (liquid), to serve (drinks), to put on (lipstick, etc.), to apply, to colour, to dye, to light (a fire), to burn'), +('注ぐ', 'つぐ', 'to pour (into a vessel), to fill (a cup, bowl, etc.) with, to dish out (food or drink)'), +('炭', 'すみ', 'charcoal, charred remains'), +('炭火', 'すみび', 'charcoal fire'), +('正炭', 'しょうすみ', 'first adding of charcoal to the fire (tea ceremony)'), +('竹炭', 'たけすみ', 'bamboo charcoal'), +('対手', 'たいしゅ', 'opponent (in combat)'), +('向かう', 'むかう', 'to face, to go towards, to head towards'), +('整える', 'ととのえる', 'to put in order, to arrange, to tidy up, to straighten, to adjust, to fix, to get ready, to prepare, to arrange, to supply, to assemble, to buy, to work out (e.g. business deal), to arrange (e.g. marriage), to settle'), +('整う', 'ととのう', 'to be ready, to be prepared, to be arranged, to be in order, to be put in order, to be well-ordered, to be well-proportioned, to be harmonious, to be adjusted, to be regulated, to be refined (e.g. of a face), to be settled (e.g. treaty, contract), to be completed'), +('送る', 'おくる', 'to send (a thing), to dispatch, to despatch, to transmit, to take or escort (a person somewhere), to see off (a person), to bid farewell (to the departed), to bury, to spend (time), to live one''s life, to pass (down the line), to affix okurigana'), +('他', 'ほか', 'other (place, thing, person), the rest, et al., outside, beyond, nothing except, nothing but, nothing apart from, nothing aside from, no choice (but to), besides..., in addition to...'), +('他に', 'ほかに', 'in addition, besides'), +('殊の外', 'ことのほか', 'exceedingly, extremely, exceptionally, unusually, unexpectedly'), +('短い', 'みじかい', 'short, brief'), +('帳', 'とばり', 'curtain, hanging, bunting'), +('夜の帳', 'よるのとばり', 'veil of darkness, curtain of night'), +('思う', 'おもう', 'to think, to consider, to believe, to reckon, to think (of doing), to plan (to do), to judge, to assess, to regard, to imagine, to suppose, to dream, to expect, to look forward to, to feel, to be (in a state of mind), to desire, to want, to recall, to remember'), +('調べる', 'しらべる', 'to examine, to look up, to investigate, to check up, to sense, to study, to inquire, to search'), +('調べ', 'しらべ', 'investigation, inspection, examination, tune, note, melody'), +('調べる', 'しらべる', 'to examine, to look up, to investigate, to check up, to sense, to study, to inquire, to search'), +('取り調べ', 'とりしらべ', 'investigation (e.g. by police or prosecutors), examination, inquiry, enquiry'), +('整う', 'ととのう', 'to be ready, to be prepared, to be arranged, to be in order, to be put in order, to be well-ordered, to be well-proportioned, to be harmonious, to be adjusted, to be regulated, to be refined (e.g. of a face), to be settled (e.g. treaty, contract), to be completed'), +('整える', 'ととのえる', 'to put in order, to arrange, to tidy up, to straighten, to adjust, to fix, to get ready, to prepare, to arrange, to supply, to assemble, to buy, to work out (e.g. business deal), to arrange (e.g. marriage), to settle'), +('早い', 'はやい', 'fast, quick, rapid, swift, speedy, brisk, prompt, early, soon, earlier than usual, premature, too soon, too early, easy, simple, quick, fast, as soon as ..., the moment ..., the instant ...'), +('早める', 'はやめる', 'to bring forward (e.g. by 3 hours), to advance, to hasten (e.g. one''s death), to expedite, to precipitate, to quicken (e.g. one''s step), to speed up, to accelerate'), +('速やか', 'すみやか', 'quick, speedy, prompt, rapid, swift'), +('替わる', 'かわる', 'to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch'), +('代わる代わる', 'かわるがわる', 'alternately, by turns'), +('替わる', 'かわる', 'to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch'), +('代わる代わる', 'かわるがわる', 'alternately, by turns'), +('代わり', 'かわり', 'substitute, replacement, substituting, replacing, stand-in, proxy, alternate, deputy, relief, successor, compensation, exchange, return, another helping, second helping, seconds, refill, upcoming program, upcoming programme'), +('代わりに', 'かわりに', 'instead of, in place of, as a substitute for, in exchange for, in return for, to make up for'), +('代わり', 'かわり', 'substitute, replacement, substituting, replacing, stand-in, proxy, alternate, deputy, relief, successor, compensation, exchange, return, another helping, second helping, seconds, refill, upcoming program, upcoming programme'), +('代わりに', 'かわりに', 'instead of, in place of, as a substitute for, in exchange for, in return for, to make up for'), +('換える', 'かえる', 'to replace, to exchange, to interchange, to substitute'), +('世', 'よ', 'world, society, public, life, lifetime, age, era, period, epoch, generation, reign, rule, the times, world (of existence)'), +('代々', 'だいだい', 'for generations, hereditary, generation after generation'), +('千代', 'ちよ', 'thousand years, very long period, forever'), +('君が代', 'きみがよ', 'Imperial reign, Kimigayo (Japanese national anthem)'), +('代', 'しろ', 'substitution, material, price, margin (e.g. for stapling, etc.), area required for something, shiro (unit of land area equal to one-fiftieth of a tan; approx. 19.83 m.sq.)'), +('代物', 'しろもの', 'article, goods, product, fine thing, fellow, affair, stuff, prostitute, price, cost, money'), +('地代', 'ちだい', 'land rent'), +('阿代', 'あしろ', 'Ophidion asiro (species of cusk eel)'), +('着る', 'きる', 'to wear (from the shoulders down), to put on, to take (the blame, responsibility), to bear'), +('着類', 'きるい', 'clothing'), +('着せる', 'きせる', 'to put clothes on (someone), to dress, to clothe, to cover, to coat, to plate, to gild, to veneer, to pin (e.g. a crime on someone), to lay (blame), to charge (with an offence), to give (a bad name), to remind someone of (their indebtedness)'), +('着く', 'つく', 'to arrive at, to reach, to sit on, to sit at (e.g. the table)'), +('付ける', 'つける', 'to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit'), +('全く', 'まったく', 'really, truly, entirely, completely, wholly, perfectly, indeed, good grief'), +('全くする', 'まったくする', 'to accomplish, to fulfill, to carry out'), +('全て', 'すべて', 'everything, all, the whole, entirely, completely, wholly, all'), +('すべての爆弾の母', 'すべてのばくだんのはは', 'mother of all bombs, MOAB'), +('庭', 'にわ', 'garden, yard, courtyard, field (of action), area'), +('庭木', 'にわき', 'garden tree'), +('前庭', 'ぜんてい', 'front garden, front yard, vestibule (of the ear)'), +('奥庭', 'おくにわ', 'inner garden, back yard'), +('定める', 'さだめる', 'to decide, to determine, to establish, to lay down, to prescribe, to provide, to stipulate, to bring peace (to), to make peaceful'), +('定まる', 'さだまる', 'to become settled, to be fixed'), +('定か', 'さだか', 'definite, sure'), +('丁', 'てい', 'fourth rank, fourth class, fourth party (in a contract, etc.), fourth sign of the Chinese calendar, Denmark'), +('丁卯', 'ひのとう', 'Fire Rabbit (4th term of the sexagenary cycle, e.g. 1927, 1987, 2047)'), +('都', 'みやこ', 'capital (esp. Kyoto, Japan''s former capital), seat of government, capital (of music, fashion, etc.), city (e.g. of light), location of the Imperial Palace'), +('都入り', 'みやこいり', 'arriving in the capital'), +('京の都', 'きょうのみやこ', 'Kyoto'), +('花の都', 'はなのみやこ', 'the gay city (of Paris), capital of flowers, Kyoto'), +('笛', 'ふえ', 'flute, fife, pipe, recorder, flageolet, shakuhachi, clarinet, whistle'), +('笛吹き', 'ふえふき', 'flute player, flutist, flautist, piper'), +('鷺笛', 'さぎふえ', 'longspine snipefish (Macroramphosus scolopax), common bellowsfish, snipe-fish, snipefish, spine trumpet fish, trumpetfish'), +('笙の笛', 'しょうのふえ', 'shō (Japanese free reed musical instrument)'), +('追う', 'おう', 'to chase, to run after, to pursue, to follow after, to follow (a set order, a trend, etc.), to drive out, to get rid of, to oust, to expel, to drive (e.g. a herd), to be pressed (e.g. for time)'), +('黒金', 'くろがね', 'iron'), +('転がる', 'ころがる', 'to roll, to tumble, to fall over, to roll over, to lie down, to be scattered about, to be lying around, (of a situation or outcome) to change, to turn out, to come easily, to be common, to fall into one''s hands, to grow on trees'), +('転がる石には苔は付かない', 'ころがるいしにはこけはつかない', 'a rolling stone gathers no moss'), +('転げる', 'ころげる', 'to roll over, to tumble, to roll about (with laughter)'), +('転がす', 'ころがす', 'to roll, to wheel, to trundle, to drive (a car), to turn over, to tip over, to throw down, to leave, to buy and sell (quickly for a profit)'), +('転ぶ', 'ころぶ', 'to fall down, to fall over, to turn out, to play out, to abandon Christianity (and convert to Buddhism), to apostatize, to roll, to tumble, (for a geisha) to prostitute (herself) in secret'), +('転ぶ', 'ころぶ', 'to fall down, to fall over, to turn out, to play out, to abandon Christianity (and convert to Buddhism), to apostatize, to roll, to tumble, (for a geisha) to prostitute (herself) in secret'), +('転', 'うたた', 'more and more, increasingly, all the more'), +('うたた寝', 'うたたね', 'doze, nap, snooze'), +('眩めく', 'くるめく', 'to spin, to revolve, to twirl, to be dizzy, to feel faint, to bustle about'), +('湯', 'ゆ', 'hot water, hot bath, hot spring, molten iron'), +('湯気', 'ゆげ', 'steam, vapour, vapor'), +('茶の湯', 'ちゃのゆ', 'tea ceremony, chanoyu'), +('共同湯', 'きょうどうゆ', 'public bath, communal bath'), +('島', 'しま', 'island, one''s territory (e.g. of a sex worker, organized crime gang), one''s turf'), +('島国', 'しまぐに', 'island country'), +('千島', 'ちしま', 'Kurile Islands'), +('広島', 'ひろしま', 'Hiroshima (city, prefecture)'), +('上る', 'のぼる', 'to ascend, to go up, to climb, to ascend (as a natural process, e.g. the Sun), to rise, to go to (the capital), to be promoted, to add up to, to advance (in price), to swim up (a river), to sail up, to come up (on the agenda)'), +('童', 'わらべ', 'child'), +('わらべ歌', 'わらべうた', 'children''s song, nursery song'), +('京童', 'きょうわらべ', 'Kyoto''s children, Kyoto''s young people, who are noisy and gossiping on the least pretext'), +('小童', 'こわっぱ', 'boy, child, youth, brat'), +('度', 'たび', 'time (three times, each time, etc.), times'), +('度々', 'たびたび', 'often, again and again, over and over again, repeatedly, frequently'), +('この度', 'このたび', 'this occasion, at this time, now'), +('中度', 'なかたび', 'midway (through), halfway'), +('豆', 'まめ', 'legume (esp. edible legumes or their seeds, e.g. beans, peas, pulses), bean, pea, soya bean (Glycine max), soybean, soy, female genitalia (esp. the clitoris), kidney, small, miniature, baby, midget, small-scale, child'), +('豆類', 'まめるい', 'pulse (edible seeds of various leguminous crops), plant yielding pulse'), +('枝豆', 'えだまめ', 'edamame (green soybeans)'), +('ライ豆', 'ライまめ', 'lima bean (Phaseolus lunatus), butter bean'), +('動く', 'うごく', 'to move, to stir, to shift, to shake, to swing, to operate, to run, to go, to work, to make a move, to take action, to act, to go into action, to be touched, to be influenced, to change, to vary, to fluctuate, to waver, to be transferred'), +('動く歩道', 'うごくほどう', 'moving walkway, moving sidewalk, travelator'), +('動かす', 'うごかす', 'to move, to shift, to stir, to budge, to change position, to inspire, to rouse, to move (e.g. feeling), to influence, to change, to alter, to deny, to operate, to set in motion, to get going, to mobilize (e.g. troops), to mobilise, to deploy, to manage (e.g. funds)'), +('投げる', 'なげる', 'to throw, to hurl, to fling, to toss, to cast, to give up, to abandon, to throw away, to cast (a glance, shadow, doubt, etc.)'), +('事', 'こと', 'thing, matter, incident, occurrence, event, something serious, trouble, crisis, circumstances, situation, state of affairs, work, business, affair, after an inflectable word, creates a noun phrase indicating something the speaker does not feel close to, nominalizing suffix, pretending to ..., playing make-believe ..., alias, also known as, otherwise known as, or, necessity, need, you should ..., I advise that you ..., it''s important to ...'), +('事故', 'じこ', 'accident, incident, trouble, circumstances, reasons'), +('神事', 'しんじ', 'Shinto ritual'), +('いい事', 'いいこと', 'good thing, nice thing, good excuse, good grounds, good opportunity, interjection used to impress an idea or to urge a response'), +('仕える', 'つかえる', 'to serve, to work for, to attend'), +('等しい', 'ひとしい', 'equal, identical, the same, no different (to), just like, equivalent'), +('等', 'など', 'et cetera, etc., and the like, and so forth, or something, the likes of, for example, for instance, for one'), +('筆', 'ふで', 'writing brush, paintbrush, pen, writing with a brush, drawing with a brush, penmanship, something drawn with a brush, writing (composing text), the written word, (land) lot, plot'), +('筆跡', 'ひっせき', 'handwriting, calligraphy specimen, example of penmanship, holograph'), +('面相筆', 'めんそうふで', 'fine-point brushes'), +('焼き筆', 'やきふで', 'wooden stick with a burned tip (used to create underdrawings)'), +('氷', 'こおり', 'ice, shaved ice (usually served with flavored simple syrup)'), +('氷水', 'こおりみず', 'ice water, shaved ice (usually served with flavored simple syrup)'), +('人造氷', 'じんぞうこおり', 'artificial ice'), +('雪氷', 'せっぴょう', 'snow and ice, snow ice, frozen snow'), +('氷', 'ひ', 'ice, hail'), +('氷柱', 'つらら', 'icicle, ice pillar (for cooling a room), ice'), +('薄ら氷', 'うすらひ', 'thin ice'), +('凍る', 'こおる', 'to freeze, to be frozen over, to congeal'), +('波', 'なみ', 'wave, ups and downs'), +('波打つ', 'なみうつ', 'to dash against (of waves), to billow, to roll, to wave (e.g. in the wind), to heave, to pound (of a heart), to undulate'), +('高波', 'たかなみ', 'high waves, heavy seas'), +('横波', 'よこなみ', 'transverse wave, beam sea'), +('美しい', 'うつくしい', 'beautiful, pretty, lovely, sweet, pure (heart, friendship, etc.)'), +('立つ', 'たつ', 'to stand, to rise, to stand up, to find oneself (e.g. in a difficult position), to depart (on a plane, train, etc.)'), +('暴く', 'あばく', 'to disclose, to divulge, to expose, to open (a grave), to dig out'), +('悲しい', 'かなしい', 'sad, miserable, unhappy, sorrowful, sad, lamentable, deplorable, grievous'), +('悲しいかな', 'かなしいかな', 'sad to say, how sad, alas'), +('悲しむ', 'かなしむ', 'to be sad, to mourn for, to regret'), +('悲しむべき境遇', 'かなしむべききょうぐう', 'pitiable condition'), +('病む', 'やむ', 'to fall ill, to suffer from (e.g. a disease), to have something wrong with (e.g. an inner organ)'), +('病', 'やまい', 'illness, disease, bad habit, weakness, fault'), +('病は気から', 'やまいはきから', 'sickness and health start with the mind'), +('恋病', 'こいやまい', 'lovesickness'), +('躁鬱病', 'そううつびょう', 'manic depression, manic-depressive psychosis, bipolar disorder'), +('表', 'おもて', 'surface, face (i.e. the visible side of an object), front (of a building, etc.), obverse side (i.e. "head") of a coin, outside, exterior, appearance, public, first half (of an inning), top (of an inning), cover (for tatami mats, etc.), foreground, Omotesenke school of tea ceremony'), +('表裏', 'ひょうり', 'front and back, inside and outside, two sides, both sides, duplicity, double-dealing, being two-faced'), +('京表', 'きょうおもて', 'vicinity of Kyoto'), +('中表', 'なかおもて', 'cloth folded inside out'), +('表す', 'あらわす', 'to represent, to signify, to stand for, to reveal, to show, to display, to express, to make widely known'), +('現れる', 'あらわれる', 'to appear, to come in sight, to become visible, to come out, to embody, to materialize, to materialise, to be expressed (e.g. emotions), to become apparent (e.g. trends, effects)'), +('表す', 'あらわす', 'to represent, to signify, to stand for, to reveal, to show, to display, to express, to make widely known'), +('配る', 'くばる', 'to distribute, to hand out, to deliver, to deal out, to serve out, to allot, to allocate, to place (staff, soldiers, etc.), to station'), +('反る', 'そる', 'to warp, to curve, to arch, to bend, to bend backward (body or body part, e.g. fingers)'), +('反らす', 'そらす', 'to bend, to warp, to curve'), +('返す', 'かえす', 'to return (something), to restore, to put back, to turn over, to turn upside down, to overturn, to pay back, to retaliate, to reciprocate, to respond (with), to retort, to reply, to say back, to do ... back (e.g. speak back, throw back), to do again, to do repeatedly'), +('返る', 'かえる', 'to return, to come back, to go back, to turn over, to become extremely, to become completely'), +('負ける', 'まける', 'to lose, to be defeated, to succumb, to give in, to surrender, to yield, to be inferior to, to break out in a rash due to (e.g. lacquer, shaving, etc.), to reduce the price, to give a discount, to throw in (something extra) for free'), +('負けるが勝ち', 'まけるがかち', 'he that fights and runs away may live to fight another day, sometimes you have to lose to win, losing is winning'), +('負かす', 'まかす', 'to defeat'), +('負う', 'おう', 'to bear, to carry on one''s back, to take responsibility for, to accept a duty, to receive (wound), to incur (damage), to be injured, to owe'), +('負うた子に教えられて浅瀬を渡る', 'おうたこにおしえられてあさせをわたる', 'some things can be learned from the young, a fool may give a wise man counsel, to be led across the shallows by the child on one''s shoulders'), +('鼻', 'はな', 'nose'), +('鼻水', 'はなみず', 'nasal mucus, dripping nose, snot'), +('目鼻', 'めはな', 'eyes and nose, looks, facial features, shape, form'), +('赤鼻', 'あかはな', 'red nose'), +('畑', 'はたけ', 'field (for growing wheat, fruit, vegetables, etc.), cultivated land, vegetable plot, kitchen garden, plantation, field (of specialization), sphere, area, line, womb, birth, birthplace'), +('畑違い', 'はたけちがい', 'out of one''s line, out of one''s field'), +('田畑', 'たはた', 'fields (of rice and other crops)'), +('焼き畑', 'やきばた', 'land made arable by the slash-and-burn method, swidden, slash-and-burn farming'), +('畑', 'はたけ', 'field (for growing wheat, fruit, vegetables, etc.), cultivated land, vegetable plot, kitchen garden, plantation, field (of specialization), sphere, area, line, womb, birth, birthplace'), +('畑違い', 'はたけちがい', 'out of one''s line, out of one''s field'), +('田畑', 'たはた', 'fields (of rice and other crops)'), +('箱', 'はこ', 'box, case, chest, package, pack, crate, car (of a train, etc.), shamisen case, shamisen, public building, community building, man who carries a geisha''s shamisen, receptacle for human waste, feces (faeces), counter for boxes (or boxed objects)'), +('箱詰め', 'はこづめ', 'boxing, packing into a box, something packed into a box'), +('リサイクル用の箱', 'リサイクルようのはこ', 'recycling bin, recycling box'), +('契約の箱', 'けいやくのはこ', 'Ark of the Covenant'), +('皮', 'かわ', 'skin, hide, pelt, fur, rind, peel, husk, bark, shell, sheath, wrapping, mask (hiding one''s true nature), seeming'), +('皮切り', 'かわきり', 'beginning, start'), +('一皮', 'ひとかわ', 'unmasking'), +('薄皮', 'うすかわ', 'thin skin'), +('品', 'しな', 'article, item, thing, goods, stock, quality, flirtatiousness, coquetry'), +('品物', 'しなもの', 'goods, article, thing'), +('一品', 'いっぴん', 'item, article, dish, course, finest item'), +('極め付きの品', 'きわめつきのしな', 'article of certified genuineness'), +('板', 'いた', 'board, plank, sheet (of metal), plate (of glass), pane, slab, cutting board, chopping board, chef (esp. of high-end Japanese cuisine), cook, stage (i.e. at a theatre)'), +('板につく', 'いたにつく', 'to get used to, to become accustomed to, to be at home (on the stage)'), +('まな板', 'まないた', 'chopping board, cutting board'), +('厚板', 'あついた', 'plank, thick board, plate glass, heavy metal sheet (esp. welding), heavy brocaded obi'), +('物', 'もの', 'thing, object, article, stuff, substance, one''s things, possessions, property, belongings, things, something, anything, everything, nothing, quality, reason, the way of things, used to emphasize emotion, judgment, etc., used to indicate a common occurrence in the past (after a verb in past tense), used to indicate a general tendency, used to indicate something that should happen, item classified as ..., item related to ..., work in the genre of ..., cause of ..., cause for ..., somehow, somewhat, for some reason, really, truly'), +('物語', 'ものがたり', 'story, tale, narrative, account, fable, legend'), +('化け物', 'ばけもの', 'goblin, apparition, monster, ghost, phantom, spectre, specter'), +('落とし物', 'おとしもの', 'lost property, something dropped and left behind'), +('坂', 'さか', 'slope, incline, hill, milestone, (age) mark'), +('坂道', 'さかみち', 'hill road'), +('大阪', 'おおさか', 'Osaka (city, prefecture)'), +('海境', 'うなさか', 'boundary between the world of men and the world of the sea god'), +('返す', 'かえす', 'to return (something), to restore, to put back, to turn over, to turn upside down, to overturn, to pay back, to retaliate, to reciprocate, to respond (with), to retort, to reply, to say back, to do ... back (e.g. speak back, throw back), to do again, to do repeatedly'), +('返す刀', 'かえすかたな', 'attacking one opponent then immediately attacking another'), +('返る', 'かえる', 'to return, to come back, to go back, to turn over, to become extremely, to become completely'), +('様', 'さま', 'Mr., Mrs., Miss, Ms., makes a word more polite (usu. in fixed expressions), state, situation, appearance, manner'), +('様々', 'さまざま', 'various, varied, diverse, all sorts of'), +('ご苦労様', 'ごくろうさま', 'thank you (for your hard work), I appreciate your efforts'), +('お疲れ様', 'おつかれさま', 'thank you (for your hard work), good work, see you, goodbye, goodnight'), +('唐行きさん', 'からゆきさん', 'karayuki-san, young Japanese women who were sent to work (mainly as prostitutes) in foreign countries, esp. in Southeast Asia (Meiji to early Showa)'), +('愛様', 'いとさん', 'daughter (of a good family)'), +('薬', 'くすり', 'medicine, pharmaceuticals, (legal) drugs, pill, ointment, salve, efficacious chemical (gunpowder, pesticide, etc.), (pottery) glaze, (illegal) drug, narcotic, small bribe'), +('薬指', 'くすりゆび', 'ring finger, third finger, fourth finger (in piano-playing), fourth toe'), +('予め', 'あらかじめ', 'beforehand, in advance, previously'), +('平ら', 'たいら', 'flat, level, even, smooth, calm, tranquil, placid, composed, stable, relaxed (sitting posture), comfortable, plateau, tableland, plain'), +('平らげる', 'たいらげる', 'to eat up (completely), to put down (a rebellion), to suppress, to subjugate, to make flat, to level out'), +('平らげる', 'たいらげる', 'to eat up (completely), to put down (a rebellion), to suppress, to subjugate, to make flat, to level out'), +('平', 'ひら', 'something broad and flat, common, ordinary, plain, rank-and-file, low-ranking employee, freshman, novice, private'), +('平日', 'へいじつ', 'weekday, ordinary days (i.e. non-holiday), kanji radical 73'), +('手のひら', 'てのひら', 'palm (of the hand)'), +('嘉平次平', 'かへいじひら', 'hakama fabric made from meisen silk'), +('落ちる', 'おちる', 'to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one''s gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone''s hands), to become someone''s possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths'), +('落ち', 'おち', 'slip, omission, upshot, denouement, outcome, final result, punch line (of a joke)'), +('落ちる', 'おちる', 'to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one''s gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone''s hands), to become someone''s possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths'), +('付け落ち', 'つけおち', 'omission in a bill'), +('鳩尾', 'みぞおち', 'pit of the stomach, solar plexus, place where water falls'), +('落とす', 'おとす', 'to drop, to lose, to let fall, to shed (light), to cast (one''s gaze), to pour in (liquid), to leave behind, to clean off (dirt, makeup, paint, etc.), to remove (e.g. stains or facial hair), to lose, to spend money at a certain place, to omit, to leave out, to secretly let escape, to lose (a match), to reject (an applicant), to fail (a course), to defeat (in an election), to lower (e.g. shoulders or voice), to lessen (e.g. production or body weight), to worsen (quality), to reduce (e.g. rank or popularity), to speak badly of, to make light of, to fall into straitened circumstances, to fall into (e.g. a dilemma or sin), to make one''s own, to have one''s bid accepted, to force surrender, to take (e.g. an enemy camp or castle), to forcefully convince, to press for a confession, to deal with, to download, to copy from a computer to another medium, to make someone swoon (judo), to finish a story (e.g. with the punch line), to finish (a period, e.g. of fasting), to win over, to seduce, to conquer (unwillingness)'), +('油', 'あぶら', 'oil'), +('油絵', 'あぶらえ', 'oil painting'), +('匂い油', 'においあぶら', 'perfumed hair oil'), +('機械油', 'きかいあぶら', 'machine oil'), +('味', 'あじ', 'flavor, flavour, taste, charm, appeal, uniqueness, attractiveness, experience, taste (e.g. of victory), smart, clever, witty, strange'), +('味わう', 'あじわう', 'to taste, to savor, to savour, to relish, to appreciate, to enjoy, to relish, to digest, to experience, to go through, to taste (e.g. victory), to know (e.g. pain)'), +('切れ味', 'きれあじ', 'sharpness, cutting ability, quickness (of wit), incisiveness, technical proficiency, skill, peppiness (of a ball)'), +('下味', 'したあじ', 'seasoning of food'), +('味わう', 'あじわう', 'to taste, to savor, to savour, to relish, to appreciate, to enjoy, to relish, to digest, to experience, to go through, to taste (e.g. victory), to know (e.g. pain)'), +('流れる', 'ながれる', 'to stream, to flow (liquid, time, etc.), to run (ink), to be washed away, to be carried, to drift, to float (e.g. clouds), to wander, to stray, to sweep (e.g. rumour, fire), to spread, to circulate, to be heard (e.g. music), to be played, to lapse (e.g. into indolence, despair), to pass, to elapse, to be transmitted, to be called off, to be forfeited, to disappear, to be removed'), +('流れ', 'ながれ', 'flow (of a fluid or gas), stream, current, flow (of people, things), passage (of time), tide, passing, (changing) trends, tendency, course (of events), (step-by-step) procedure, process, group of people who remain together after the end of an event, descent, ancestry, school, forfeiture, foreclosure, cancellation, drifting, wandering, roaming'), +('流れる', 'ながれる', 'to stream, to flow (liquid, time, etc.), to run (ink), to be washed away, to be carried, to drift, to float (e.g. clouds), to wander, to stray, to sweep (e.g. rumour, fire), to spread, to circulate, to be heard (e.g. music), to be played, to lapse (e.g. into indolence, despair), to pass, to elapse, to be transmitted, to be called off, to be forfeited, to disappear, to be removed'), +('流す', 'ながす', 'to drain, to pour, to spill, to shed (blood, tears), to wash away, to distribute (e.g. electricity over wires, music over a PA system, etc.), to circulate, to broadcast, to beam, to cruise (e.g. taxi), to float, to set adrift, to call off (a meeting, etc.), to exile, to banish'), +('有る', 'ある', 'to be, to exist, to live, to have, to be located, to be equipped with, to happen, to come about'), +('ある限り', 'あるかぎり', 'all (there is), as long as there is'), +('放す', 'はなす', 'to release, to let go, to free, to set free, to let loose, to turn loose, to add (pieces of eggplant, potato, etc.) to water, broth, etc.'), +('放つ', 'はなつ', 'to fire (gun, arrow, questions, etc.), to shoot, to hit (e.g. baseball), to break wind, to set free, to release, to let loose, to emit (e.g. light), to give off (e.g. a scent), to send out (a person to carry out a duty), to set fire to'), +('放れる', 'はなれる', 'to get free (from), to be freed, to be released'), +('放く', 'こく', 'to let loose (e.g. a fart), to utter (e.g. a lie), to say, to do'), +('放る', 'ほうる', 'to throw, to fling, to hurl, to toss, to neglect, to abandon, to leave alone, to give up on, to leave undone, to leave unfinished'), +('遊ぶ', 'あそぶ', 'to play (games, sports), to enjoy oneself, to have a good time, to mess about (with alcohol, gambling, philandery, etc.), to be idle, to do nothing, to be unused, to meet up (with friends), to hang out, to give oneself up (to gambling, drinking, etc.), to go to (for pleasure or for study), to tease (someone), to play (with), to intentionally throw a ball to lower the batter''s concentration'), +('遊糸', 'ゆうし', 'gossamer, heat haze, shimmer of hot air'), +('遊ばす', 'あそばす', 'to let (someone) play, to keep (someone) amused, to entertain, to leave idle, to not make use of, to let go to waste, to do, to do'), +('努める', 'つとめる', 'to endeavor (endeavour), to try, to strive, to make an effort, to exert oneself, to be diligent, to be committed (to doing something)'), +('由', 'よし', 'reason, significance, cause, piece of information that one has heard, I hear that ..., it is said that ...'), +('由ありげ', 'よしありげ', 'meaningful, suggestive, seeming to be with a history, seeming to be with circumstances that are hard to explain'), +('候由', 'そうろうよし', 'I hear that ...'), +('依る', 'よる', 'to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at'), +('面', 'おもて', 'face, surface, mask (esp. a noh or kyogen mask)'), +('面白い', 'おもしろい', 'interesting, fascinating, intriguing, enthralling, amusing, funny, comical, enjoyable, fun, entertaining, pleasant, agreeable, good, satisfactory, favourable, desirable, encouraging'), +('水の面', 'みのも', 'surface of the water, face of the water'), +('面', 'おもて', 'face, surface, mask (esp. a noh or kyogen mask)'), +('面伏せ', 'おもてぶせ', 'being so embarrassed as to keep one''s face down'), +('細面', 'ほそおもて', 'slender face'), +('面', 'つら', 'face, mug, surface, cheek meat, cheek, cheeks, surrounding area'), +('面汚し', 'つらよごし', 'disgrace, shame'), +('赤面', 'あかつら', 'red face, villain (in kabuki, jōruri, etc.)'), +('横面', 'よこつら', 'side of face'), +('陽', 'ひ', 'sun, sunshine, sunlight'), +('日差し', 'ひざし', 'sunlight, rays of the Sun'), +('問う', 'とう', 'to ask, to inquire, to blame (someone) for, to accuse of, to pursue (question of responsibility), to charge with, to care about, to regard as important, to call into question, to doubt, to question'), +('問うに落ちず語るに落ちる', 'とうにおちずかたるにおちる', 'to keep a secret when asked about it, but let it slip inadvertently when chatting on another occasion'), +('問い', 'とい', 'question, query'), +('問い合わせ', 'といあわせ', 'enquiry, inquiry, query, interrogation, ENQ'), +('更問', 'さらとい', 'follow-up question, additional question'), +('問屋', 'とんや', 'wholesale store, wholesale dealer, wholesaler'), +('命', 'いのち', 'life, life force, lifetime, lifespan, most important thing, foundation, core, paired tattoos of the "life" kanji on the upper arms of a man and woman (indicating unwavering love), fate, destiny, karma'), +('命からがら', 'いのちからがら', 'for dear life, barely escaping alive'), +('貴い命', 'たっといいのち', 'precious life'), +('露の命', 'つゆのいのち', 'life as evanescent as the dew'), +('葉', 'は', 'leaf, blade (of grass), (pine) needle'), +('葉書', 'はがき', 'postcard, memo, note, card'), +('枝葉', 'しよう', 'branches and leaves, foliage, unimportant details, nonessentials, side issue, digression'), +('一葉', 'いちよう', 'one leaf, one page, one sheet, one card, one photo, one boat'), +('羊', 'ひつじ', 'sheep (Ovis aries)'), +('羊飼い', 'ひつじかい', 'shepherd, shepherdess'), +('牡羊', 'おひつじ', 'ram (sheep)'), +('迷える子羊', 'まよえるこひつじ', 'stray sheep, lost lamb, person at a loss for what to do'), +('和らぐ', 'やわらぐ', 'to soften, to calm down, to be eased, to be mitigated, to subside, to abate'), +('和らげる', 'やわらげる', 'to soften, to moderate, to relieve'), +('和む', 'なごむ', 'to be softened, to calm down'), +('和やか', 'なごやか', 'mild, calm, gentle, quiet, congenial, amicable, amiable, friendly, genial, harmonious, peaceful'), +('和える', 'あえる', 'to dress (vegetables, salad, etc.)'), +('道', 'みち', 'road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method'), +('道教え', 'みちおしえ', 'tiger beetle (esp. the Japanese tiger beetle, Cicindela japonica)'), +('回り道', 'まわりみち', 'detour, diversion'), +('長路', 'ながみち', 'long road, far journey'), +('練る', 'ねる', 'to knead, to thicken into a paste (stirring over a flame), to polish (a plan, etc.), to refine, to elaborate, to work out, to train, to drill, to exercise, to gloss (silk), to soften, to degum, to tan (leather), to temper (steel), to walk in procession, to parade, to march'), +('練り', 'ねり', 'kneading, gloss, tempering, paste (e.g. bean paste, mustard paste), parading of portable shrines and floats at festivals'), +('練り直す', 'ねりなおす', 'to knead again, to rework, to revise, to polish'), +('緑', 'みどり', 'green, greenery (esp. fresh verdure)'), +('緑色', 'みどりいろ', 'green, emerald green, green color of new foliage, verdure'), +('黄緑', 'きみどり', 'pea green, yellow-green'), +('青緑', 'あおみどり', 'blue-green, turquoise, aqua, spirogyra, algae forming pond scum'), +('旅', 'たび', 'travel, trip, journey'), +('旅先', 'たびさき', 'destination, place one stays during a trip'), +('長旅', 'ながたび', 'long journey, long trip'), +('あてなき旅', 'あてなきたび', 'journey without a destination'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(3408, '悪'), +(3409, '悪'), +(3410, '悪'), +(3411, '悪'), +(3412, '悪'), +(3413, '悪'), +(3414, '悪'), +(3415, '悪'), +(3416, '暗'), +(3417, '暗'), +(3418, '暗'), +(3419, '暗'), +(3420, '安'), +(3421, '安'), +(3422, '安'), +(3423, '安'), +(3424, '安'), +(3425, '安'), +(3426, '安'), +(3427, '安'), +(3428, '委'), +(3429, '医'), +(3430, '医'), +(3431, '運'), +(3432, '飲'), +(3433, '飲'), +(3434, '温'), +(3435, '温'), +(3436, '温'), +(3437, '温'), +(3438, '温'), +(3439, '温'), +(3440, '温'), +(3441, '温'), +(3442, '温'), +(3443, '化'), +(3444, '化'), +(3445, '化'), +(3446, '屋'), +(3447, '屋'), +(3448, '屋'), +(3449, '屋'), +(3450, '泳'), +(3451, '育'), +(3452, '育'), +(3453, '育'), +(3454, '育'), +(3455, '育'), +(3456, '荷'), +(3457, '荷'), +(3458, '荷'), +(3459, '荷'), +(3460, '横'), +(3461, '横'), +(3462, '横'), +(3463, '横'), +(3464, '寒'), +(3465, '館'), +(3466, '館'), +(3467, '館'), +(3468, '館'), +(3469, '岸'), +(3470, '岸'), +(3471, '岸'), +(3472, '岸'), +(3473, '開'), +(3474, '開'), +(3475, '開'), +(3476, '開'), +(3477, '開'), +(3478, '開'), +(3479, '階'), +(3480, '起'), +(3481, '起'), +(3482, '起'), +(3483, '起'), +(3484, '起'), +(3485, '銀'), +(3486, '銀'), +(3487, '宮'), +(3488, '宮'), +(3489, '宮'), +(3490, '宮'), +(3491, '去'), +(3492, '去'), +(3493, '血'), +(3494, '血'), +(3495, '血'), +(3496, '血'), +(3497, '具'), +(3498, '具'), +(3499, '君'), +(3500, '君'), +(3501, '君'), +(3502, '君'), +(3503, '橋'), +(3504, '橋'), +(3505, '橋'), +(3506, '橋'), +(3507, '苦'), +(3508, '苦'), +(3509, '苦'), +(3510, '苦'), +(3511, '苦'), +(3512, '苦'), +(3513, '苦'), +(3514, '究'), +(3515, '決'), +(3516, '決'), +(3517, '決'), +(3518, '軽'), +(3519, '軽'), +(3520, '軽'), +(3521, '軽'), +(3522, '係'), +(3523, '係'), +(3524, '係'), +(3525, '係'), +(3526, '係'), +(3527, '係'), +(3528, '球'), +(3529, '球'), +(3530, '球'), +(3531, '局'), +(3532, '局'), +(3533, '局'), +(3534, '局'), +(3535, '急'), +(3536, '急'), +(3537, '急'), +(3538, '急'), +(3539, '研'), +(3540, '曲'), +(3541, '曲'), +(3542, '曲'), +(3543, '庫'), +(3544, '庫'), +(3545, '庫'), +(3546, '業'), +(3547, '業'), +(3548, '業'), +(3549, '業'), +(3550, '向'), +(3551, '向'), +(3552, '向'), +(3553, '向'), +(3554, '向'), +(3555, '向'), +(3556, '向'), +(3557, '向'), +(3558, '向'), +(3559, '向'), +(3560, '向'), +(3561, '向'), +(3562, '向'), +(3563, '湖'), +(3564, '湖'), +(3565, '幸'), +(3566, '幸'), +(3567, '幸'), +(3568, '幸'), +(3569, '幸'), +(3570, '幸'), +(3571, '幸'), +(3572, '幸'), +(3573, '皿'), +(3574, '皿'), +(3575, '皿'), +(3576, '皿'), +(3577, '港'), +(3578, '港'), +(3579, '仕'), +(3580, '根'), +(3581, '根'), +(3582, '根'), +(3583, '根'), +(3584, '使'), +(3585, '使'), +(3586, '使'), +(3587, '使'), +(3588, '始'), +(3589, '始'), +(3590, '死'), +(3591, '死'), +(3592, '指'), +(3593, '指'), +(3594, '指'), +(3595, '指'), +(3596, '指'), +(3597, '指'), +(3598, '歯'), +(3599, '歯'), +(3600, '歯'), +(3601, '歯'), +(3602, '歯'), +(3603, '歯'), +(3604, '次'), +(3605, '次'), +(3606, '次'), +(3607, '次'), +(3608, '次'), +(3609, '次'), +(3610, '詩'), +(3611, '詩'), +(3612, '祭'), +(3613, '祭'), +(3614, '祭'), +(3615, '祭'), +(3616, '祭'), +(3617, '祭'), +(3618, '祭'), +(3619, '祭'), +(3620, '祭'), +(3621, '実'), +(3622, '実'), +(3623, '実'), +(3624, '実'), +(3625, '実'), +(3626, '実'), +(3627, '実'), +(3628, '実'), +(3629, '実'), +(3630, '実'), +(3631, '実'), +(3632, '持'), +(3633, '持'), +(3634, '持'), +(3635, '持'), +(3636, '主'), +(3637, '主'), +(3638, '主'), +(3639, '主'), +(3640, '主'), +(3641, '主'), +(3642, '主'), +(3643, '主'), +(3644, '者'), +(3645, '者'), +(3646, '者'), +(3647, '者'), +(3648, '写'), +(3649, '写'), +(3650, '写'), +(3651, '写'), +(3652, '集'), +(3653, '集'), +(3654, '集'), +(3655, '住'), +(3656, '住'), +(3657, '消'), +(3658, '消'), +(3659, '酒'), +(3660, '酒'), +(3661, '酒'), +(3662, '酒'), +(3663, '州'), +(3664, '州'), +(3665, '州'), +(3666, '州'), +(3667, '拾'), +(3668, '終'), +(3669, '終'), +(3670, '終'), +(3671, '終'), +(3672, '終'), +(3673, '終'), +(3674, '所'), +(3675, '所'), +(3676, '所'), +(3677, '所'), +(3678, '所'), +(3679, '所'), +(3680, '所'), +(3681, '所'), +(3682, '所'), +(3683, '所'), +(3684, '所'), +(3685, '所'), +(3686, '習'), +(3687, '習'), +(3688, '習'), +(3689, '習'), +(3690, '習'), +(3691, '習'), +(3692, '重'), +(3693, '重'), +(3694, '重'), +(3695, '重'), +(3696, '重'), +(3697, '重'), +(3698, '重'), +(3699, '重'), +(3700, '重'), +(3701, '重'), +(3702, '重'), +(3703, '重'), +(3704, '取'), +(3705, '取'), +(3706, '取'), +(3707, '取'), +(3708, '取'), +(3709, '取'), +(3710, '取'), +(3711, '取'), +(3712, '取'), +(3713, '取'), +(3714, '守'), +(3715, '守'), +(3716, '守'), +(3717, '守'), +(3718, '守'), +(3719, '守'), +(3720, '守'), +(3721, '守'), +(3722, '守'), +(3723, '守'), +(3724, '守'), +(3725, '守'), +(3726, '商'), +(3727, '助'), +(3728, '助'), +(3729, '助'), +(3730, '助'), +(3731, '助'), +(3732, '助'), +(3733, '宿'), +(3734, '宿'), +(3735, '宿'), +(3736, '宿'), +(3737, '宿'), +(3738, '宿'), +(3739, '暑'), +(3740, '暑'), +(3741, '勝'), +(3742, '勝'), +(3743, '勝'), +(3744, '勝'), +(3745, '勝'), +(3746, '勝'), +(3747, '勝'), +(3748, '申'), +(3749, '申'), +(3750, '申'), +(3751, '申'), +(3752, '申'), +(3753, '申'), +(3754, '植'), +(3755, '植'), +(3756, '乗'), +(3757, '乗'), +(3758, '乗'), +(3759, '神'), +(3760, '神'), +(3761, '神'), +(3762, '神'), +(3763, '受'), +(3764, '受'), +(3765, '深'), +(3766, '深'), +(3767, '深'), +(3768, '深'), +(3769, '進'), +(3770, '進'), +(3771, '身'), +(3772, '身'), +(3773, '身'), +(3774, '身'), +(3775, '真'), +(3776, '真'), +(3777, '真'), +(3778, '真'), +(3779, '真'), +(3780, '真'), +(3781, '世'), +(3782, '世'), +(3783, '世'), +(3784, '世'), +(3785, '昔'), +(3786, '昔'), +(3787, '昔'), +(3788, '昔'), +(3789, '息'), +(3790, '息'), +(3791, '息'), +(3792, '息'), +(3793, '待'), +(3794, '待'), +(3795, '打'), +(3796, '打'), +(3797, '打'), +(3798, '打'), +(3799, '柱'), +(3800, '柱'), +(3801, '柱'), +(3802, '柱'), +(3803, '注'), +(3804, '注'), +(3805, '注'), +(3806, '炭'), +(3807, '炭'), +(3808, '炭'), +(3809, '炭'), +(3810, '対'), +(3811, '対'), +(3812, '整'), +(3813, '整'), +(3814, '送'), +(3815, '他'), +(3816, '他'), +(3817, '他'), +(3818, '短'), +(3819, '帳'), +(3820, '帳'), +(3821, '想'), +(3822, '調'), +(3823, '調'), +(3824, '調'), +(3825, '調'), +(3826, '調'), +(3827, '調'), +(3828, '速'), +(3829, '速'), +(3830, '速'), +(3831, '代'), +(3832, '代'), +(3833, '代'), +(3834, '代'), +(3835, '代'), +(3836, '代'), +(3837, '代'), +(3838, '代'), +(3839, '代'), +(3840, '代'), +(3841, '代'), +(3842, '代'), +(3843, '代'), +(3844, '代'), +(3845, '代'), +(3846, '代'), +(3847, '代'), +(3848, '着'), +(3849, '着'), +(3850, '着'), +(3851, '着'), +(3852, '着'), +(3853, '全'), +(3854, '全'), +(3855, '全'), +(3856, '全'), +(3857, '庭'), +(3858, '庭'), +(3859, '庭'), +(3860, '庭'), +(3861, '定'), +(3862, '定'), +(3863, '定'), +(3864, '丁'), +(3865, '丁'), +(3866, '都'), +(3867, '都'), +(3868, '都'), +(3869, '都'), +(3870, '笛'), +(3871, '笛'), +(3872, '笛'), +(3873, '笛'), +(3874, '追'), +(3875, '鉄'), +(3876, '転'), +(3877, '転'), +(3878, '転'), +(3879, '転'), +(3880, '転'), +(3881, '転'), +(3882, '転'), +(3883, '転'), +(3884, '転'), +(3885, '湯'), +(3886, '湯'), +(3887, '湯'), +(3888, '湯'), +(3889, '島'), +(3890, '島'), +(3891, '島'), +(3892, '島'), +(3893, '登'), +(3894, '童'), +(3895, '童'), +(3896, '童'), +(3897, '童'), +(3898, '度'), +(3899, '度'), +(3900, '度'), +(3901, '度'), +(3902, '豆'), +(3903, '豆'), +(3904, '豆'), +(3905, '豆'), +(3906, '動'), +(3907, '動'), +(3908, '動'), +(3909, '投'), +(3910, '事'), +(3911, '事'), +(3912, '事'), +(3913, '事'), +(3914, '事'), +(3915, '等'), +(3916, '等'), +(3917, '筆'), +(3918, '筆'), +(3919, '筆'), +(3920, '筆'), +(3921, '氷'), +(3922, '氷'), +(3923, '氷'), +(3924, '氷'), +(3925, '氷'), +(3926, '氷'), +(3927, '氷'), +(3928, '氷'), +(3929, '波'), +(3930, '波'), +(3931, '波'), +(3932, '波'), +(3933, '美'), +(3934, '発'), +(3935, '発'), +(3936, '悲'), +(3937, '悲'), +(3938, '悲'), +(3939, '悲'), +(3940, '病'), +(3941, '病'), +(3942, '病'), +(3943, '病'), +(3944, '病'), +(3945, '表'), +(3946, '表'), +(3947, '表'), +(3948, '表'), +(3949, '表'), +(3950, '表'), +(3951, '表'), +(3952, '配'), +(3953, '反'), +(3954, '反'), +(3955, '反'), +(3956, '反'), +(3957, '負'), +(3958, '負'), +(3959, '負'), +(3960, '負'), +(3961, '負'), +(3962, '鼻'), +(3963, '鼻'), +(3964, '鼻'), +(3965, '鼻'), +(3966, '畑'), +(3967, '畑'), +(3968, '畑'), +(3969, '畑'), +(3970, '畑'), +(3971, '畑'), +(3972, '畑'), +(3973, '箱'), +(3974, '箱'), +(3975, '箱'), +(3976, '箱'), +(3977, '皮'), +(3978, '皮'), +(3979, '皮'), +(3980, '皮'), +(3981, '品'), +(3982, '品'), +(3983, '品'), +(3984, '品'), +(3985, '板'), +(3986, '板'), +(3987, '板'), +(3988, '板'), +(3989, '物'), +(3990, '物'), +(3991, '物'), +(3992, '物'), +(3993, '坂'), +(3994, '坂'), +(3995, '坂'), +(3996, '坂'), +(3997, '返'), +(3998, '返'), +(3999, '返'), +(4000, '様'), +(4001, '様'), +(4002, '様'), +(4003, '様'), +(4004, '様'), +(4005, '様'), +(4006, '薬'), +(4007, '薬'), +(4008, '予'), +(4009, '平'), +(4010, '平'), +(4011, '平'), +(4012, '平'), +(4013, '平'), +(4014, '平'), +(4015, '平'), +(4016, '落'), +(4017, '落'), +(4018, '落'), +(4019, '落'), +(4020, '落'), +(4021, '落'), +(4022, '油'), +(4023, '油'), +(4024, '油'), +(4025, '油'), +(4026, '味'), +(4027, '味'), +(4028, '味'), +(4029, '味'), +(4030, '味'), +(4031, '流'), +(4032, '流'), +(4033, '流'), +(4034, '流'), +(4035, '有'), +(4036, '有'), +(4037, '放'), +(4038, '放'), +(4039, '放'), +(4040, '放'), +(4041, '放'), +(4042, '遊'), +(4043, '遊'), +(4044, '遊'), +(4045, '勉'), +(4046, '由'), +(4047, '由'), +(4048, '由'), +(4049, '由'), +(4050, '面'), +(4051, '面'), +(4052, '面'), +(4053, '面'), +(4054, '面'), +(4055, '面'), +(4056, '面'), +(4057, '面'), +(4058, '面'), +(4059, '面'), +(4060, '陽'), +(4061, '陽'), +(4062, '問'), +(4063, '問'), +(4064, '問'), +(4065, '問'), +(4066, '問'), +(4067, '問'), +(4068, '命'), +(4069, '命'), +(4070, '命'), +(4071, '命'), +(4072, '葉'), +(4073, '葉'), +(4074, '葉'), +(4075, '葉'), +(4076, '羊'), +(4077, '羊'), +(4078, '羊'), +(4079, '羊'), +(4080, '和'), +(4081, '和'), +(4082, '和'), +(4083, '和'), +(4084, '和'), +(4085, '路'), +(4086, '路'), +(4087, '路'), +(4088, '路'), +(4089, '練'), +(4090, '練'), +(4091, '練'), +(4092, '緑'), +(4093, '緑'), +(4094, '緑'), +(4095, '緑'), +(4096, '旅'), +(4097, '旅'), +(4098, '旅'), +(4099, '旅'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("わる.い"), +("わる-"), +("あ.し"), +("にく.い"), +("-にく.い"), +("ああ"), +("いずくに"), +("いずくんぞ"), +("にく.む"), +("くら.い"), +("くら.む"), +("くれ.る"), +("やす.い"), +("やす.まる"), +("やす"), +("やす.らか"), +("ゆだ.ねる"), +("い.やす"), +("い.する"), +("くすし"), +("はこ.ぶ"), +("の.む"), +("-の.み"), +("あたた.か"), +("あたた.かい"), +("あたた.まる"), +("あたた.める"), +("ぬく"), +("ば.ける"), +("ば.かす"), +("ふ.ける"), +("け.する"), +("や"), +("およ.ぐ"), +("そだ.つ"), +("そだ.ち"), +("そだ.てる"), +("はぐく.む"), +("に"), +("よこ"), +("さむ.い"), +("やかた"), +("たて"), +("きし"), +("ひら.く"), +("ひら.き"), +("-びら.き"), +("ひら.ける"), +("あ.く"), +("あ.ける"), +("きざはし"), +("お.きる"), +("お.こる"), +("お.こす"), +("おこ.す"), +("た.つ"), +("しろがね"), +("みや"), +("さ.る"), +("-さ.る"), +("ち"), +("そな.える"), +("つぶさ.に"), +("きみ"), +("-ぎみ"), +("はし"), +("くる.しい"), +("-ぐる.しい"), +("くる.しむ"), +("くる.しめる"), +("にが.い"), +("にが.る"), +("きわ.める"), +("き.める"), +("-ぎ.め"), +("き.まる"), +("さ.く"), +("かる.い"), +("かろ.やか"), +("かろ.んじる"), +("かか.る"), +("かかり"), +("-がかり"), +("かか.わる"), +("たま"), +("つぼね"), +("いそ.ぐ"), +("いそ.ぎ"), +("せ.く"), +("と.ぐ"), +("ま.がる"), +("ま.げる"), +("くま"), +("くら"), +("わざ"), +("か.ける"), +("む.く"), +("む.い"), +("-む.き"), +("む.ける"), +("-む.け"), +("む.かう"), +("む.かい"), +("む.こう"), +("む.こう-"), +("むこ"), +("むか.い"), +("みずうみ"), +("さけ.ぶ"), +("よびな"), +("さいわ.い"), +("さち"), +("しあわ.せ"), +("さら"), +("みなと"), +("つか.える"), +("ね"), +("-ね"), +("つか.う"), +("つか.い"), +("-つか.い"), +("-づか.い"), +("はじ.める"), +("-はじ.める"), +("はじ.まる"), +("し.ぬ"), +("し.に-"), +("ゆび"), +("さ.す"), +("-さ.し"), +("よわい"), +("は"), +("よわ.い"), +("よわい.する"), +("つ.ぐ"), +("つぎ"), +("うた"), +("まつ.る"), +("まつ.り"), +("まつり"), +("み"), +("みの.る"), +("まこと"), +("みの"), +("みち.る"), +("も.つ"), +("-も.ち"), +("も.てる"), +("ぬし"), +("おも"), +("あるじ"), +("もの"), +("うつ.す"), +("うつ.る"), +("うつ-"), +("うつ.し"), +("あつ.まる"), +("あつ.める"), +("つど.う"), +("す.む"), +("す.まう"), +("-ず.まい"), +("き.える"), +("け.す"), +("さけ"), +("さか-"), +("す"), +("ひろ.う"), +("お.わる"), +("-お.わる"), +("おわ.る"), +("お.える"), +("つい"), +("つい.に"), +("ところ"), +("-ところ"), +("どころ"), +("とこ"), +("なら.う"), +("なら.い"), +("え"), +("おも.い"), +("おも.り"), +("おも.なう"), +("かさ.ねる"), +("かさ.なる"), +("おも"), +("と.る"), +("と.り"), +("と.り-"), +("とり"), +("-ど.り"), +("まも.る"), +("まも.り"), +("もり"), +("-もり"), +("かみ"), +("あきな.う"), +("たす.ける"), +("たす.かる"), +("す.ける"), +("すけ"), +("やど"), +("やど.る"), +("やど.す"), +("あつ.い"), +("か.つ"), +("-が.ち"), +("まさ.る"), +("すぐ.れる"), +("かつ"), +("もう.す"), +("もう.し-"), +("さる"), +("う.える"), +("う.わる"), +("の.る"), +("-の.り"), +("の.せる"), +("かみ"), +("かん-"), +("こう-"), +("う.ける"), +("-う.け"), +("う.かる"), +("ふか.い"), +("-ぶか.い"), +("ふか.まる"), +("ふか.める"), +("み-"), +("すす.む"), +("すす.める"), +("み"), +("ま"), +("ま-"), +("まこと"), +("よ"), +("むかし"), +("いき"), +("あい-"), +("ま.つ"), +("-ま.ち"), +("う.つ"), +("う.ち-"), +("ぶ.つ"), +("はしら"), +("そそ.ぐ"), +("さ.す"), +("つ.ぐ"), +("すみ"), +("あいて"), +("こた.える"), +("そろ.い"), +("つれあ.い"), +("なら.ぶ"), +("むか.う"), +("ととの.える"), +("ととの.う"), +("おく.る"), +("ほか"), +("みじか.い"), +("とばり"), +("おも.う"), +("しら.べる"), +("しら.べ"), +("ととの.う"), +("ととの.える"), +("はや.い"), +("はや-"), +("はや.める"), +("すみ.やか"), +("か.わる"), +("かわ.る"), +("かわ.り"), +("か.わり"), +("-がわ.り"), +("-が.わり"), +("か.える"), +("よ"), +("しろ"), +("き.る"), +("き.せる"), +("つ.く"), +("つ.ける"), +("まった.く"), +("すべ.て"), +("にわ"), +("さだ.める"), +("さだ.まる"), +("さだ.か"), +("ひのと"), +("みやこ"), +("ふえ"), +("お.う"), +("くろがね"), +("ころ.がる"), +("ころ.げる"), +("ころ.がす"), +("ころ.ぶ"), +("まろ.ぶ"), +("うたた"), +("うつ.る"), +("くる.めく"), +("ゆ"), +("しま"), +("のぼ.る"), +("あ.がる"), +("わらべ"), +("たび"), +("-た.い"), +("まめ"), +("まめ-"), +("うご.く"), +("うご.かす"), +("な.げる"), +("-な.げ"), +("こと"), +("つか.う"), +("つか.える"), +("ひと.しい"), +("など"), +("-ら"), +("ふで"), +("こおり"), +("ひ"), +("こお.る"), +("なみ"), +("うつく.しい"), +("た.つ"), +("あば.く"), +("おこ.る"), +("つか.わす"), +("はな.つ"), +("かな.しい"), +("かな.しむ"), +("や.む"), +("-や.み"), +("やまい"), +("おもて"), +("-おもて"), +("あらわ.す"), +("あらわ.れる"), +("あら.わす"), +("くば.る"), +("そ.る"), +("そ.らす"), +("かえ.す"), +("かえ.る"), +("-かえ.る"), +("ま.ける"), +("ま.かす"), +("お.う"), +("-べ"), +("はな"), +("はた"), +("はたけ"), +("-ばたけ"), +("はこ"), +("かわ"), +("しな"), +("いた"), +("もの"), +("もの-"), +("さか"), +("かえ.す"), +("-かえ.す"), +("かえ.る"), +("-かえ.る"), +("さま"), +("さん"), +("くすり"), +("あらかじ.め"), +("たい.ら"), +("たい.らげる"), +("ひら"), +("お.ちる"), +("お.ち"), +("お.とす"), +("あぶら"), +("あじ"), +("あじ.わう"), +("なが.れる"), +("なが.れ"), +("なが.す"), +("-なが.す"), +("あ.る"), +("はな.す"), +("-っぱな.し"), +("はな.つ"), +("はな.れる"), +("こ.く"), +("ほう.る"), +("あそ.ぶ"), +("あそ.ばす"), +("つと.める"), +("よし"), +("よ.る"), +("おも"), +("おもて"), +("つら"), +("ひ"), +("と.う"), +("と.い"), +("とん"), +("いのち"), +("は"), +("ひつじ"), +("やわ.らぐ"), +("やわ.らげる"), +("なご.む"), +("なご.やか"), +("あ.える"), +("-じ"), +("みち"), +("ね.る"), +("ね.り"), +("みどり"), +("てる"), +("ふたつ"), +("たび"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('悪', 'わる.い'), +('悪', 'わる-'), +('悪', 'あ.し'), +('悪', 'にく.い'), +('悪', '-にく.い'), +('悪', 'ああ'), +('悪', 'いずくに'), +('悪', 'いずくんぞ'), +('悪', 'にく.む'), +('暗', 'くら.い'), +('暗', 'くら.む'), +('暗', 'くれ.る'), +('安', 'やす.い'), +('安', 'やす.まる'), +('安', 'やす'), +('安', 'やす.らか'), +('委', 'ゆだ.ねる'), +('医', 'い.やす'), +('医', 'い.する'), +('医', 'くすし'), +('運', 'はこ.ぶ'), +('飲', 'の.む'), +('飲', '-の.み'), +('温', 'あたた.か'), +('温', 'あたた.かい'), +('温', 'あたた.まる'), +('温', 'あたた.める'), +('温', 'ぬく'), +('化', 'ば.ける'), +('化', 'ば.かす'), +('化', 'ふ.ける'), +('化', 'け.する'), +('屋', 'や'), +('泳', 'およ.ぐ'), +('育', 'そだ.つ'), +('育', 'そだ.ち'), +('育', 'そだ.てる'), +('育', 'はぐく.む'), +('荷', 'に'), +('横', 'よこ'), +('寒', 'さむ.い'), +('館', 'やかた'), +('館', 'たて'), +('岸', 'きし'), +('開', 'ひら.く'), +('開', 'ひら.き'), +('開', '-びら.き'), +('開', 'ひら.ける'), +('開', 'あ.く'), +('開', 'あ.ける'), +('階', 'きざはし'), +('起', 'お.きる'), +('起', 'お.こる'), +('起', 'お.こす'), +('起', 'おこ.す'), +('起', 'た.つ'), +('銀', 'しろがね'), +('宮', 'みや'), +('去', 'さ.る'), +('去', '-さ.る'), +('血', 'ち'), +('具', 'そな.える'), +('具', 'つぶさ.に'), +('君', 'きみ'), +('君', '-ぎみ'), +('橋', 'はし'), +('苦', 'くる.しい'), +('苦', '-ぐる.しい'), +('苦', 'くる.しむ'), +('苦', 'くる.しめる'), +('苦', 'にが.い'), +('苦', 'にが.る'), +('究', 'きわ.める'), +('決', 'き.める'), +('決', '-ぎ.め'), +('決', 'き.まる'), +('決', 'さ.く'), +('軽', 'かる.い'), +('軽', 'かろ.やか'), +('軽', 'かろ.んじる'), +('係', 'かか.る'), +('係', 'かかり'), +('係', '-がかり'), +('係', 'かか.わる'), +('球', 'たま'), +('局', 'つぼね'), +('急', 'いそ.ぐ'), +('急', 'いそ.ぎ'), +('急', 'せ.く'), +('研', 'と.ぐ'), +('曲', 'ま.がる'), +('曲', 'ま.げる'), +('曲', 'くま'), +('庫', 'くら'), +('業', 'わざ'), +('県', 'か.ける'), +('向', 'む.く'), +('向', 'む.い'), +('向', '-む.き'), +('向', 'む.ける'), +('向', '-む.け'), +('向', 'む.かう'), +('向', 'む.かい'), +('向', 'む.こう'), +('向', 'む.こう-'), +('向', 'むこ'), +('向', 'むか.い'), +('湖', 'みずうみ'), +('号', 'さけ.ぶ'), +('号', 'よびな'), +('幸', 'さいわ.い'), +('幸', 'さち'), +('幸', 'しあわ.せ'), +('皿', 'さら'), +('港', 'みなと'), +('仕', 'つか.える'), +('根', 'ね'), +('根', '-ね'), +('使', 'つか.う'), +('使', 'つか.い'), +('使', '-つか.い'), +('使', '-づか.い'), +('始', 'はじ.める'), +('始', '-はじ.める'), +('始', 'はじ.まる'), +('死', 'し.ぬ'), +('死', 'し.に-'), +('指', 'ゆび'), +('指', 'さ.す'), +('指', '-さ.し'), +('歯', 'よわい'), +('歯', 'は'), +('歯', 'よわ.い'), +('歯', 'よわい.する'), +('次', 'つ.ぐ'), +('次', 'つぎ'), +('詩', 'うた'), +('祭', 'まつ.る'), +('祭', 'まつ.り'), +('祭', 'まつり'), +('実', 'み'), +('実', 'みの.る'), +('実', 'まこと'), +('実', 'みの'), +('実', 'みち.る'), +('持', 'も.つ'), +('持', '-も.ち'), +('持', 'も.てる'), +('主', 'ぬし'), +('主', 'おも'), +('主', 'あるじ'), +('者', 'もの'), +('写', 'うつ.す'), +('写', 'うつ.る'), +('写', 'うつ-'), +('写', 'うつ.し'), +('集', 'あつ.まる'), +('集', 'あつ.める'), +('集', 'つど.う'), +('住', 'す.む'), +('住', 'す.まう'), +('住', '-ず.まい'), +('消', 'き.える'), +('消', 'け.す'), +('酒', 'さけ'), +('酒', 'さか-'), +('州', 'す'), +('拾', 'ひろ.う'), +('終', 'お.わる'), +('終', '-お.わる'), +('終', 'おわ.る'), +('終', 'お.える'), +('終', 'つい'), +('終', 'つい.に'), +('所', 'ところ'), +('所', '-ところ'), +('所', 'どころ'), +('所', 'とこ'), +('習', 'なら.う'), +('習', 'なら.い'), +('重', 'え'), +('重', 'おも.い'), +('重', 'おも.り'), +('重', 'おも.なう'), +('重', 'かさ.ねる'), +('重', 'かさ.なる'), +('重', 'おも'), +('取', 'と.る'), +('取', 'と.り'), +('取', 'と.り-'), +('取', 'とり'), +('取', '-ど.り'), +('守', 'まも.る'), +('守', 'まも.り'), +('守', 'もり'), +('守', '-もり'), +('守', 'かみ'), +('商', 'あきな.う'), +('助', 'たす.ける'), +('助', 'たす.かる'), +('助', 'す.ける'), +('助', 'すけ'), +('宿', 'やど'), +('宿', 'やど.る'), +('宿', 'やど.す'), +('暑', 'あつ.い'), +('勝', 'か.つ'), +('勝', '-が.ち'), +('勝', 'まさ.る'), +('勝', 'すぐ.れる'), +('勝', 'かつ'), +('申', 'もう.す'), +('申', 'もう.し-'), +('申', 'さる'), +('植', 'う.える'), +('植', 'う.わる'), +('乗', 'の.る'), +('乗', '-の.り'), +('乗', 'の.せる'), +('神', 'かみ'), +('神', 'かん-'), +('神', 'こう-'), +('受', 'う.ける'), +('受', '-う.け'), +('受', 'う.かる'), +('深', 'ふか.い'), +('深', '-ぶか.い'), +('深', 'ふか.まる'), +('深', 'ふか.める'), +('深', 'み-'), +('進', 'すす.む'), +('進', 'すす.める'), +('身', 'み'), +('真', 'ま'), +('真', 'ま-'), +('真', 'まこと'), +('世', 'よ'), +('昔', 'むかし'), +('息', 'いき'), +('相', 'あい-'), +('待', 'ま.つ'), +('待', '-ま.ち'), +('打', 'う.つ'), +('打', 'う.ち-'), +('打', 'ぶ.つ'), +('柱', 'はしら'), +('注', 'そそ.ぐ'), +('注', 'さ.す'), +('注', 'つ.ぐ'), +('炭', 'すみ'), +('対', 'あいて'), +('対', 'こた.える'), +('対', 'そろ.い'), +('対', 'つれあ.い'), +('対', 'なら.ぶ'), +('対', 'むか.う'), +('整', 'ととの.える'), +('整', 'ととの.う'), +('送', 'おく.る'), +('他', 'ほか'), +('短', 'みじか.い'), +('帳', 'とばり'), +('想', 'おも.う'), +('調', 'しら.べる'), +('調', 'しら.べ'), +('調', 'ととの.う'), +('調', 'ととの.える'), +('速', 'はや.い'), +('速', 'はや-'), +('速', 'はや.める'), +('速', 'すみ.やか'), +('代', 'か.わる'), +('代', 'かわ.る'), +('代', 'かわ.り'), +('代', 'か.わり'), +('代', '-がわ.り'), +('代', '-が.わり'), +('代', 'か.える'), +('代', 'よ'), +('代', 'しろ'), +('着', 'き.る'), +('着', 'き.せる'), +('着', 'つ.く'), +('着', 'つ.ける'), +('全', 'まった.く'), +('全', 'すべ.て'), +('庭', 'にわ'), +('定', 'さだ.める'), +('定', 'さだ.まる'), +('定', 'さだ.か'), +('丁', 'ひのと'), +('都', 'みやこ'), +('笛', 'ふえ'), +('追', 'お.う'), +('鉄', 'くろがね'), +('転', 'ころ.がる'), +('転', 'ころ.げる'), +('転', 'ころ.がす'), +('転', 'ころ.ぶ'), +('転', 'まろ.ぶ'), +('転', 'うたた'), +('転', 'うつ.る'), +('転', 'くる.めく'), +('湯', 'ゆ'), +('島', 'しま'), +('登', 'のぼ.る'), +('登', 'あ.がる'), +('童', 'わらべ'), +('度', 'たび'), +('度', '-た.い'), +('豆', 'まめ'), +('豆', 'まめ-'), +('動', 'うご.く'), +('動', 'うご.かす'), +('投', 'な.げる'), +('投', '-な.げ'), +('事', 'こと'), +('事', 'つか.う'), +('事', 'つか.える'), +('等', 'ひと.しい'), +('等', 'など'), +('等', '-ら'), +('筆', 'ふで'), +('氷', 'こおり'), +('氷', 'ひ'), +('氷', 'こお.る'), +('波', 'なみ'), +('美', 'うつく.しい'), +('発', 'た.つ'), +('発', 'あば.く'), +('発', 'おこ.る'), +('発', 'つか.わす'), +('発', 'はな.つ'), +('悲', 'かな.しい'), +('悲', 'かな.しむ'), +('病', 'や.む'), +('病', '-や.み'), +('病', 'やまい'), +('表', 'おもて'), +('表', '-おもて'), +('表', 'あらわ.す'), +('表', 'あらわ.れる'), +('表', 'あら.わす'), +('配', 'くば.る'), +('反', 'そ.る'), +('反', 'そ.らす'), +('反', 'かえ.す'), +('反', 'かえ.る'), +('反', '-かえ.る'), +('負', 'ま.ける'), +('負', 'ま.かす'), +('負', 'お.う'), +('部', '-べ'), +('鼻', 'はな'), +('畑', 'はた'), +('畑', 'はたけ'), +('畑', '-ばたけ'), +('箱', 'はこ'), +('皮', 'かわ'), +('品', 'しな'), +('板', 'いた'), +('物', 'もの'), +('物', 'もの-'), +('坂', 'さか'), +('返', 'かえ.す'), +('返', '-かえ.す'), +('返', 'かえ.る'), +('返', '-かえ.る'), +('様', 'さま'), +('様', 'さん'), +('薬', 'くすり'), +('予', 'あらかじ.め'), +('平', 'たい.ら'), +('平', 'たい.らげる'), +('平', 'ひら'), +('落', 'お.ちる'), +('落', 'お.ち'), +('落', 'お.とす'), +('油', 'あぶら'), +('味', 'あじ'), +('味', 'あじ.わう'), +('流', 'なが.れる'), +('流', 'なが.れ'), +('流', 'なが.す'), +('流', '-なが.す'), +('有', 'あ.る'), +('放', 'はな.す'), +('放', '-っぱな.し'), +('放', 'はな.つ'), +('放', 'はな.れる'), +('放', 'こ.く'), +('放', 'ほう.る'), +('遊', 'あそ.ぶ'), +('遊', 'あそ.ばす'), +('勉', 'つと.める'), +('由', 'よし'), +('由', 'よ.る'), +('面', 'おも'), +('面', 'おもて'), +('面', 'つら'), +('陽', 'ひ'), +('問', 'と.う'), +('問', 'と.い'), +('問', 'とん'), +('命', 'いのち'), +('葉', 'は'), +('羊', 'ひつじ'), +('和', 'やわ.らぐ'), +('和', 'やわ.らげる'), +('和', 'なご.む'), +('和', 'なご.やか'), +('和', 'あ.える'), +('路', '-じ'), +('路', 'みち'), +('練', 'ね.る'), +('練', 'ね.り'), +('緑', 'みどり'), +('両', 'てる'), +('両', 'ふたつ'), +('旅', 'たび'); + +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("媛", 12, "beautiful woman, princess", "女", 1, 1735, 4, true), +("塩", 13, "salt", "土", 2, 1148, 4, true), +("岡", 8, "mount, hill, knoll", "山", NULL, 463, 4, true), +("英", 8, "England, English, hero, outstanding, calyx", "艸", 4, 430, 4, true), +("茨", 9, "briar, thorn", "艸", NULL, 1203, 4, true), +("印", 6, "stamp, seal, mark, imprint, symbol, emblem, trademark, evidence, souvenir, India", "卩", 2, 682, 4, true), +("愛", 13, "love, affection, favourite", "心", 3, 640, 4, true), +("栄", 9, "flourish, prosperity, honor, glory, splendor", "木", 2, 920, 4, true), +("位", 7, "rank, grade, throne, crown, about, some", "人", 3, 276, 4, true), +("芽", 8, "bud, sprout, spear, germ", "艸", 1, 1691, 4, true), +("衣", 6, "garment, clothes, dressing", "衣", 2, 1214, 4, true), +("課", 15, "chapter, lesson, section, department, division, counter for chapters (of a book)", "言", 2, 455, 4, true), +("案", 10, "plan, suggestion, draft, ponder, fear, proposition, idea, expectation, worry, table, bench", "木", 1, 206, 4, true), +("億", 15, "hundred million, 10**8", "人", 2, 716, 4, true), +("以", 5, "by means of, because, in view of, compared with", "人", 4, 126, 4, true), +("改", 7, "reformation, change, modify, mend, renew, examine, inspect, search", "攴", 2, 147, 4, true), +("果", 8, "fruit, reward, carry out, achieve, complete, end, finish, succeed", "木", 3, 258, 4, true), +("加", 5, "add, addition, increase, join, include, Canada", "力", 3, 130, 4, true), +("賀", 12, "congratulations, joy", "貝", 1, 1056, 5, true), +("貨", 11, "freight, goods, property", "貝", 2, 822, 4, true), +("械", 11, "contraption, fetter, machine, instrument", "木", 2, 1321, 4, true), +("街", 12, "boulevard, street, town", "行", 1, 891, 4, true), +("覚", 12, "memorize, learn, remember, awake, sober up", "見", 3, 710, 4, true), +("各", 6, "each, every, either", "口", 2, 243, 4, true), +("管", 14, "pipe, tube, wind instrument, drunken talk, control, jurisdiction", "竹", 2, 517, 4, true), +("岐", 7, "branch off, fork in road, scene, arena, theater", "山", 1, 1428, 4, true), +("議", 20, "deliberation, consultation, debate, consideration", "言", 3, 25, 4, true), +("希", 7, "hope, beg, request, pray, beseech, Greece, dilute (acid), rare, few, phenomenal", "巾", 2, 896, 4, true), +("共", 6, "together, both, neither, all, and, alike, with", "八", 3, 174, 4, true), +("観", 18, "outlook, look, appearance, condition, view", "見", 3, 476, 4, true), +("泣", 8, "cry, weep, moan", "水", 1, 1380, 4, true), +("旗", 14, "national flag, banner, standard", "方", 1, 1190, 4, true), +("給", 12, "salary, wage, gift, allow, grant, bestow on", "糸", 3, 615, 4, true), +("協", 8, "co-, cooperation", "十", 2, 121, 4, true), +("挙", 10, "raise, plan, project, behavior, actions", "手", 1, 257, 4, true), +("季", 8, "seasons", "子", 2, 842, 4, true), +("官", 8, "bureaucrat, the government, organ", "宀", 3, 230, 4, true), +("鏡", 19, "mirror, speculum, barrel-head, round rice-cake offering", "金", 1, 1506, 4, true), +("関", 14, "connection, barrier, gateway, involve, concerning", "門", 3, 70, 4, true), +("願", 19, "petition, request, vow, wish, hope", "頁", 3, 894, 4, true), +("求", 7, "request, want, wish for, require, demand", "水", 3, 220, 4, true), +("機", 16, "loom, mechanism, machine, airplane, opportunity, potency, efficacy, occasion", "木", 3, 127, 4, true), +("潟", 15, "lagoon", "水", 1, 1204, 4, true), +("漁", 14, "fishing, fishery", "水", 2, 1094, 4, true), +("害", 10, "harm, injury", "宀", 3, 358, 4, true), +("完", 7, "perfect, completion, end", "宀", 3, 595, 4, true), +("器", 15, "utensil, vessel, receptacle, implement, instrument, ability, container, tool, set", "口", 1, 525, 4, true), +("競", 20, "emulate, compete with, bid, sell at auction, bout, contest, race", "立", 2, 610, 4, true), +("好", 6, "fond, pleasing, like something", "女", 3, 423, 4, true), +("験", 18, "verification, effect, testing", "馬", 4, 410, 4, true), +("功", 5, "achievement, merits, success, honor, credit", "力", 1, 857, 4, true), +("群", 13, "flock, group, crowd, herd, swarm, cluster", "羊", 2, 1012, 5, true), +("建", 9, "build", "廴", 4, 300, 4, true), +("径", 8, "diameter, path, method", "彳", 1, 1435, 4, true), +("郡", 10, "county, district", "邑", 1, 965, 4, true), +("軍", 9, "army, force, troops, war, battle", "車", 2, 189, 4, true), +("芸", 7, "technique, art, craft, performance, acting, trick, stunt", "艸", 2, 719, 4, true), +("欠", 4, "lack, gap, fail, yawning radical (no. 76)", "欠", 3, 860, 4, true), +("極", 12, "poles, settlement, conclusion, end, highest rank, electric poles, very, extremely, most, highly, 10**48", "木", 2, 460, 4, true), +("健", 11, "healthy, health, strength, persistence", "人", 1, 572, 4, true), +("香", 9, "incense, smell, perfume", "香", 2, 859, 4, true), +("候", 10, "climate, season, weather, wait for, expect", "人", 3, 510, 4, true), +("佐", 7, "assistant, help", "人", 1, 474, 4, true), +("熊", 14, "bear", "火", 1, 1105, 4, true), +("菜", 11, "vegetable, side dish, greens", "艸", 2, 1327, 4, true), +("結", 12, "tie, bind, contract, join, organize, do up hair, fasten", "糸", 1, 162, 4, true), +("最", 12, "utmost, most, extreme", "曰", 3, 82, 4, true), +("訓", 10, "instruction, Japanese character reading, explanation, read", "言", 2, 1134, 4, true), +("差", 10, "distinction, difference, variation, discrepancy, margin, balance", "工", 3, 449, 4, true), +("材", 7, "lumber, log, timber, wood, materials, ingredients, talent", "木", 2, 565, 4, true), +("埼", 11, "cape, spit, promontory", "土", NULL, 971, 4, true), +("札", 5, "tag, paper money, counter for bonds, placard, bid", "木", 2, 921, 4, true), +("景", 12, "scenery, view", "日", 3, 419, 4, true), +("崎", 11, "promontory, cape, spit", "山", 1, 533, 4, true), +("固", 8, "harden, set, clot, curdle", "囗", 2, 750, 4, true), +("刷", 8, "printing, print, brush", "刀", 2, 1352, 4, true), +("康", 11, "ease, peace", "广", 1, 760, 4, true), +("察", 14, "guess, presume, surmise, judge, understand", "宀", 3, 477, 4, true), +("参", 8, "nonplussed, three (in documents), going, coming, visiting, visit, be defeated, die, be madly in love, participate, take part in", "厶", 3, 201, 4, true), +("昨", 9, "yesterday, previous", "日", 3, 226, 4, true), +("散", 12, "scatter, disperse, spend, squander", "攴", 3, 758, 4, true), +("産", 11, "products, bear, give birth, yield, childbirth, native, property", "生", 3, 161, 4, true), +("松", 8, "pine tree", "木", 1, 471, 4, true), +("種", 14, "species, kind, class, variety, seed", "禾", 3, 461, 4, true), +("笑", 10, "laugh", "竹", 3, 913, 4, true), +("試", 13, "test, try, attempt, experiment, ordeal", "言", 4, 392, 4, true), +("児", 7, "newborn babe, child, young of animals", "儿", 2, 679, 4, true), +("辞", 13, "resign, word, term, expression", "辛", 3, 633, 4, true), +("残", 10, "remainder, leftover, balance", "歹", 3, 380, 4, true), +("失", 5, "lose, error, fault, disadvantage, loss", "大", 3, 447, 4, true), +("焼", 12, "bake, burning", "火", 2, 982, 4, true), +("祝", 9, "celebrate, congratulate", "示", 2, 1184, 4, true), +("唱", 11, "chant, recite, call upon, yell", "口", 1, 1123, 4, true), +("鹿", 11, "deer", "鹿", 1, 957, 4, true), +("治", 8, "reign, be at peace, calm down, subdue, quell, govt, cure, heal, rule, conserve", "水", 3, 109, 4, true), +("初", 7, "first time, beginning", "刀", 3, 152, 4, true), +("司", 5, "director, official, govt office, rule, administer", "口", 1, 759, 4, true), +("周", 8, "circumference, circuit, lap", "口", 2, 562, 4, true), +("借", 10, "borrow, rent", "人", 4, 932, 4, true), +("氏", 4, "family name, surname, clan", "氏", 1, 84, 4, true), +("説", 14, "opinion, theory, explanation, rumor", "言", 3, 326, 4, true), +("節", 13, "node, season, period, occasion, verse, clause, stanza, honor, joint, knuckle, knob, knot, tune, melody", "竹", 1, 934, 4, true), +("然", 12, "sort of thing, so, if so, in that case, well", "火", 3, 401, 4, true), +("戦", 13, "war, battle, match", "戈", 3, 78, 4, true), +("縄", 15, "straw rope, cord", "糸", 1, 1075, 4, true), +("臣", 7, "retainer, subject", "臣", 2, 1249, 4, true), +("城", 9, "castle", "土", 2, 795, 6, true), +("浅", 9, "shallow, superficial, frivolous, wretched, shameful", "水", 2, 1253, 4, true), +("清", 11, "pure, purify, cleanse, exorcise, Manchu dynasty", "水", 2, 705, 4, true), +("滋", 12, "nourishing, more & more, be luxuriant, planting, turbidity", "水", 1, 1563, 4, true), +("争", 6, "contend, dispute, argue", "亅", 3, 271, 4, true), +("折", 7, "fold, break, fracture, bend, yield, submit", "手", 3, 962, 4, true), +("選", 15, "elect, select, choose, prefer", "辵", 3, 57, 4, true), +("信", 9, "faith, truth, fidelity, trust", "人", 3, 208, 4, true), +("成", 6, "turn into, become, get, grow, elapse, reach", "戈", 3, 116, 4, true), +("席", 10, "seat, mat, occasion, place", "巾", 3, 370, 4, true), +("井", 4, "well, well crib, town, community", "二", 1, 339, 4, true), +("巣", 11, "nest, rookery, hive, cobweb, den", "巛", 1, 1588, 4, true), +("省", 9, "focus, government ministry, conserve", "目", 2, 548, 4, true), +("順", 12, "obey, order, turn, right, docility, occasion", "頁", 2, 779, 4, true), +("照", 13, "illuminate, shine, compare, bashful", "火", 2, 1004, 4, true), +("束", 7, "bundle, sheaf, ream, tie in bundles, govern, manage, control", "木", 3, 918, 4, true), +("積", 16, "volume, product (x*y), acreage, contents, pile up, stack, load, amass", "禾", 3, 541, 4, true), +("側", 11, "side, lean, oppose, regret", "人", 3, 216, 4, true), +("隊", 12, "regiment, party, company, squad", "阜", 1, 605, 4, true), +("帯", 10, "sash, belt, obi, zone, region", "巾", 2, 746, 4, true), +("卒", 8, "graduate, soldier, private, die", "十", 2, 772, 4, true), +("静", 14, "quiet", "青", 3, 764, 4, true), +("倉", 10, "godown, warehouse, storehouse, cellar, treasury", "人", 1, 1114, 4, true), +("達", 12, "accomplished, reach, arrive, attain", "辵", 3, 500, 4, true), +("続", 13, "continue, series, sequel", "糸", 3, 141, 4, true), +("孫", 10, "grandchild, descendants", "子", 2, 1388, 4, true), +("置", 13, "placement, put, set, deposit, leave behind, keep, employ, pawn", "网", 3, 277, 4, true), +("仲", 6, "go-between, relationship", "人", 2, 919, 4, true), +("単", 9, "simple, one, single, merely", "十", 3, 586, 4, true), +("底", 8, "bottom, sole, depth, bottom price, base, kind, sort", "广", 2, 867, 4, true), +("兆", 6, "portent, 10**12, trillion, sign, omen, symptoms", "儿", 2, 1174, 4, true), +("低", 7, "lower, short, humble", "人", 2, 435, 4, true), +("典", 8, "code, ceremony, law, rule", "八", 1, 1055, 4, true), +("伝", 6, "transmit, go along, walk along, follow, report, communicate, legend, tradition", "人", 3, 416, 4, true), +("阪", 7, "heights, slope", "阜", NULL, 503, 4, true), +("奈", 8, "Nara, what?", "大", 1, 841, 4, true), +("標", 15, "signpost, seal, mark, stamp, imprint, symbol, emblem, trademark, evidence, souvenir, target", "木", 1, 686, 4, true), +("的", 8, "bull's eye, mark, target, object, adjective ending", "白", NULL, 105, 4, true), +("博", 12, "Dr., command, esteem, win acclaim, Ph.D., exposition, fair", "十", 1, 794, 4, true), +("梅", 10, "plum", "木", 1, 1232, 4, true), +("飛", 9, "fly, skip (pages), scatter", "飛", 3, 580, 4, true), +("票", 11, "ballot, label, ticket, sign", "示", 1, 489, 4, true), +("沖", 7, "open sea, offing, rise high into sky", "水", 1, 929, 4, true), +("不", 4, "negative, non-, bad, ugly, clumsy", "一", 4, 101, 4, true), +("働", 13, "work, (kokuji)", "人", 3, 417, 4, true), +("梨", 11, "pear tree", "木", 1, 1331, 4, true), +("特", 10, "special", "牛", 4, 234, 4, true), +("灯", 6, "lamp, a light, light, counter for lights", "火", 2, 1605, 4, true), +("必", 5, "invariably, certain, inevitable", "心", 3, 265, 4, true), +("熱", 15, "heat, temperature, fever, mania, passion", "火", 3, 700, 4, true), +("栃", 9, "horse chestnut, (kokuji)", "木", NULL, 1427, 4, true), +("府", 8, "borough, urban prefecture, govt office, representative body, storehouse", "广", 2, 170, 4, true), +("徒", 10, "on foot, junior, emptiness, vanity, futility, uselessness, ephemeral thing, gang, set, party, people", "彳", 3, 817, 4, true), +("念", 8, "wish, sense, idea, thought, feeling, desire, attention", "心", 3, 390, 4, true), +("努", 7, "toil, diligent, as much as possible", "力", 3, 749, 4, true), +("阜", 8, "hill, mound, left village radical (no. 170)", "阜", NULL, 1532, 4, true), +("副", 11, "vice-, assistant, aide, duplicate, copy", "刀", 2, 360, 4, true), +("富", 12, "wealth, enrich, abundant", "宀", 3, 644, 5, true), +("夫", 4, "husband, man", "大", 3, 335, 4, true), +("敗", 11, "failure, defeat, reversal", "攴", 3, 516, 4, true), +("別", 7, "separate, branch off, diverge, fork, another, extra, specially", "刀", 4, 214, 4, true), +("兵", 7, "soldier, private, troops, army, warfare, strategy, tactics", "八", 2, 522, 4, true), +("辺", 5, "environs, boundary, border, vicinity", "辵", 2, 428, 4, true), +("付", 5, "adhere, attach, refer to, append", "人", 3, 322, 4, true), +("飯", 12, "meal, boiled rice", "食", 4, 1046, 4, true), +("徳", 14, "benevolence, virtue, goodness, commanding respect", "彳", 1, 1091, 5, true), +("便", 9, "convenience, facility, excrement, feces, letter, chance", "人", 3, 729, 4, true), +("変", 9, "unusual, change, strange", "夂", 3, 238, 4, true), +("包", 5, "wrap, pack up, cover, conceal", "勹", 2, 954, 4, true), +("望", 11, "ambition, full moon, hope, desire, aspire to, expect", "月", 3, 470, 4, true), +("法", 8, "method, law, rule, principle, model, system", "水", 3, 100, 4, true), +("牧", 8, "breed, care for, shepherd, feed, pasture", "牛", 1, 1360, 4, true), +("利", 7, "profit, advantage, benefit", "刀", 3, 203, 4, true), +("輪", 15, "wheel, ring, circle, link, loop, counter for wheels and flowers", "車", 2, 693, 4, true), +("無", 12, "nothingness, none, ain't, nothing, nil, not", "火", NULL, 274, 4, true), +("勇", 9, "courage, cheer up, be in high spirits, bravery, heroism", "力", 2, 1319, 4, true), +("浴", 10, "bathe, be favored with, bask in", "水", 2, 1136, 4, true), +("末", 5, "end, close, tip, powder, posterity", "木", 3, 456, 4, true), +("満", 12, "full, fullness, enough, satisfy", "水", 3, 515, 4, true), +("約", 9, "promise, approximately, shrink", "糸", 3, 94, 4, true), +("要", 9, "need, main point, essence, pivot, key to", "西", 3, 106, 4, true), +("陸", 11, "land, six", "阜", 2, 736, 4, true), +("類", 18, "sort, kind, variety, class, genus", "頁", 3, 678, 4, true), +("良", 7, "good, pleasing, skilled", "艮", 3, 501, 4, true), +("養", 15, "foster, bring up, rear, develop, nurture", "食", 1, 888, 4, true), +("料", 10, "fee, materials", "斗", 4, 295, 4, true), +("民", 5, "people, nation, subjects", "氏", 3, 28, 4, true), +("未", 5, "un-, not yet, hitherto, still, even now, sign of the ram, 1-3PM, eighth sign of Chinese zodiac", "木", 3, 650, 4, true), +("例", 8, "example, custom, usage, precedent", "人", 3, 399, 4, true), +("老", 6, "old man, old age, grow old", "老", 3, 803, 4, true), +("冷", 7, "cool, cold (beer, person), chill", "冫", 3, 667, 4, true), +("連", 10, "take along, lead, join, connect, party, gang, clique", "辵", 3, 30, 4, true), +("令", 5, "orders, laws, command, decree, good", "人", 2, 804, 4, true), +("労", 7, "labor, thank for, reward for, toil, trouble", "力", 3, 398, 4, true), +("量", 12, "quantity, measure, weight, amount, consider, estimate, surmise", "里", 2, 469, 4, true), +("録", 16, "record", "金", 2, 546, 4, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("エン"), +("エン"), +("コウ"), +("エイ"), +("シ"), +("ジ"), +("イン"), +("アイ"), +("エイ"), +("ヨウ"), +("イ"), +("ガ"), +("イ"), +("エ"), +("カ"), +("アン"), +("オク"), +("イ"), +("カイ"), +("カ"), +("カ"), +("ガ"), +("カ"), +("カイ"), +("ガイ"), +("カイ"), +("カク"), +("カク"), +("カン"), +("キ"), +("ギ"), +("ギ"), +("キ"), +("ケ"), +("キョウ"), +("カン"), +("キュウ"), +("キ"), +("キュウ"), +("キョウ"), +("キョ"), +("キ"), +("カン"), +("キョウ"), +("ケイ"), +("カン"), +("ガン"), +("キュウ"), +("グ"), +("キ"), +("セキ"), +("ギョ"), +("リョウ"), +("ガイ"), +("カン"), +("キ"), +("キョウ"), +("ケイ"), +("コウ"), +("ケン"), +("ゲン"), +("コウ"), +("ク"), +("グン"), +("ケン"), +("コン"), +("ケイ"), +("グン"), +("グン"), +("ゲイ"), +("ウン"), +("ケツ"), +("ケン"), +("キョク"), +("ゴク"), +("ケン"), +("コウ"), +("キョウ"), +("コウ"), +("サ"), +("ユウ"), +("サイ"), +("ケツ"), +("ケチ"), +("サイ"), +("シュ"), +("クン"), +("キン"), +("サ"), +("ザイ"), +("キ"), +("サツ"), +("ケイ"), +("キ"), +("コ"), +("サツ"), +("コウ"), +("サツ"), +("サン"), +("シン"), +("サク"), +("サン"), +("サン"), +("ショウ"), +("シュ"), +("ショウ"), +("シ"), +("ジ"), +("ニ"), +("ゲイ"), +("ジ"), +("ザン"), +("サン"), +("シツ"), +("ショウ"), +("シュク"), +("シュウ"), +("ショウ"), +("ロク"), +("ジ"), +("チ"), +("ショ"), +("シ"), +("シュウ"), +("シャク"), +("シ"), +("セツ"), +("ゼイ"), +("セツ"), +("セチ"), +("ゼン"), +("ネン"), +("セン"), +("ジョウ"), +("シン"), +("ジン"), +("ジョウ"), +("セイ"), +("セン"), +("セイ"), +("ショウ"), +("シン"), +("ジ"), +("シ"), +("ソウ"), +("セツ"), +("シャク"), +("セン"), +("シン"), +("セイ"), +("ジョウ"), +("セキ"), +("セイ"), +("ショウ"), +("ソウ"), +("セイ"), +("ショウ"), +("ジュン"), +("ショウ"), +("ソク"), +("セキ"), +("ソク"), +("タイ"), +("タイ"), +("ソツ"), +("シュツ"), +("セイ"), +("ジョウ"), +("ソウ"), +("タツ"), +("ダ"), +("ゾク"), +("ショク"), +("コウ"), +("キョウ"), +("ソン"), +("チ"), +("チュウ"), +("タン"), +("テイ"), +("チョウ"), +("テイ"), +("テン"), +("デン"), +("デン"), +("テン"), +("ハン"), +("ナ"), +("ナイ"), +("ダイ"), +("ヒョウ"), +("テキ"), +("ハク"), +("バク"), +("バイ"), +("ヒ"), +("ヒョウ"), +("チュウ"), +("フ"), +("ブ"), +("ドウ"), +("リ"), +("トク"), +("トウ"), +("ヒツ"), +("ネツ"), +("フ"), +("ト"), +("ネン"), +("ド"), +("フ"), +("フウ"), +("フク"), +("フ"), +("フウ"), +("フ"), +("フウ"), +("ブ"), +("ハイ"), +("ベツ"), +("ヘイ"), +("ヒョウ"), +("ヘン"), +("フ"), +("ハン"), +("トク"), +("ベン"), +("ビン"), +("ヘン"), +("ホウ"), +("ボウ"), +("モウ"), +("ホウ"), +("ハッ"), +("ホッ"), +("フラン"), +("ボク"), +("リ"), +("リン"), +("ム"), +("ブ"), +("ユウ"), +("ヨク"), +("マツ"), +("バツ"), +("マン"), +("バン"), +("ヤク"), +("ヨウ"), +("リク"), +("ロク"), +("ルイ"), +("リョウ"), +("ヨウ"), +("リョウ"), +("リョウ"), +("ミン"), +("ミ"), +("ビ"), +("レイ"), +("ロウ"), +("レイ"), +("レン"), +("レイ"), +("ロウ"), +("リョウ"), +("ロク"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('媛', 'エン'), +('塩', 'エン'), +('岡', 'コウ'), +('英', 'エイ'), +('茨', 'シ'), +('茨', 'ジ'), +('印', 'イン'), +('愛', 'アイ'), +('栄', 'エイ'), +('栄', 'ヨウ'), +('位', 'イ'), +('芽', 'ガ'), +('衣', 'イ'), +('衣', 'エ'), +('課', 'カ'), +('案', 'アン'), +('億', 'オク'), +('以', 'イ'), +('改', 'カイ'), +('果', 'カ'), +('加', 'カ'), +('賀', 'ガ'), +('貨', 'カ'), +('械', 'カイ'), +('街', 'ガイ'), +('街', 'カイ'), +('覚', 'カク'), +('各', 'カク'), +('管', 'カン'), +('岐', 'キ'), +('岐', 'ギ'), +('議', 'ギ'), +('希', 'キ'), +('希', 'ケ'), +('共', 'キョウ'), +('観', 'カン'), +('泣', 'キュウ'), +('旗', 'キ'), +('給', 'キュウ'), +('協', 'キョウ'), +('挙', 'キョ'), +('季', 'キ'), +('官', 'カン'), +('鏡', 'キョウ'), +('鏡', 'ケイ'), +('関', 'カン'), +('願', 'ガン'), +('求', 'キュウ'), +('求', 'グ'), +('機', 'キ'), +('潟', 'セキ'), +('漁', 'ギョ'), +('漁', 'リョウ'), +('害', 'ガイ'), +('完', 'カン'), +('器', 'キ'), +('競', 'キョウ'), +('競', 'ケイ'), +('好', 'コウ'), +('験', 'ケン'), +('験', 'ゲン'), +('功', 'コウ'), +('功', 'ク'), +('群', 'グン'), +('建', 'ケン'), +('建', 'コン'), +('径', 'ケイ'), +('郡', 'グン'), +('軍', 'グン'), +('芸', 'ゲイ'), +('芸', 'ウン'), +('欠', 'ケツ'), +('欠', 'ケン'), +('極', 'キョク'), +('極', 'ゴク'), +('健', 'ケン'), +('香', 'コウ'), +('香', 'キョウ'), +('候', 'コウ'), +('佐', 'サ'), +('熊', 'ユウ'), +('菜', 'サイ'), +('結', 'ケツ'), +('結', 'ケチ'), +('最', 'サイ'), +('最', 'シュ'), +('訓', 'クン'), +('訓', 'キン'), +('差', 'サ'), +('材', 'ザイ'), +('埼', 'キ'), +('札', 'サツ'), +('景', 'ケイ'), +('崎', 'キ'), +('固', 'コ'), +('刷', 'サツ'), +('康', 'コウ'), +('察', 'サツ'), +('参', 'サン'), +('参', 'シン'), +('昨', 'サク'), +('散', 'サン'), +('産', 'サン'), +('松', 'ショウ'), +('種', 'シュ'), +('笑', 'ショウ'), +('試', 'シ'), +('児', 'ジ'), +('児', 'ニ'), +('児', 'ゲイ'), +('辞', 'ジ'), +('残', 'ザン'), +('残', 'サン'), +('失', 'シツ'), +('焼', 'ショウ'), +('祝', 'シュク'), +('祝', 'シュウ'), +('唱', 'ショウ'), +('鹿', 'ロク'), +('治', 'ジ'), +('治', 'チ'), +('初', 'ショ'), +('司', 'シ'), +('周', 'シュウ'), +('借', 'シャク'), +('氏', 'シ'), +('説', 'セツ'), +('説', 'ゼイ'), +('節', 'セツ'), +('節', 'セチ'), +('然', 'ゼン'), +('然', 'ネン'), +('戦', 'セン'), +('縄', 'ジョウ'), +('臣', 'シン'), +('臣', 'ジン'), +('城', 'ジョウ'), +('城', 'セイ'), +('浅', 'セン'), +('清', 'セイ'), +('清', 'ショウ'), +('清', 'シン'), +('滋', 'ジ'), +('滋', 'シ'), +('争', 'ソウ'), +('折', 'セツ'), +('折', 'シャク'), +('選', 'セン'), +('信', 'シン'), +('成', 'セイ'), +('成', 'ジョウ'), +('席', 'セキ'), +('井', 'セイ'), +('井', 'ショウ'), +('巣', 'ソウ'), +('省', 'セイ'), +('省', 'ショウ'), +('順', 'ジュン'), +('照', 'ショウ'), +('束', 'ソク'), +('積', 'セキ'), +('側', 'ソク'), +('隊', 'タイ'), +('帯', 'タイ'), +('卒', 'ソツ'), +('卒', 'シュツ'), +('静', 'セイ'), +('静', 'ジョウ'), +('倉', 'ソウ'), +('達', 'タツ'), +('達', 'ダ'), +('続', 'ゾク'), +('続', 'ショク'), +('続', 'コウ'), +('続', 'キョウ'), +('孫', 'ソン'), +('置', 'チ'), +('仲', 'チュウ'), +('単', 'タン'), +('底', 'テイ'), +('兆', 'チョウ'), +('低', 'テイ'), +('典', 'テン'), +('典', 'デン'), +('伝', 'デン'), +('伝', 'テン'), +('阪', 'ハン'), +('奈', 'ナ'), +('奈', 'ナイ'), +('奈', 'ダイ'), +('標', 'ヒョウ'), +('的', 'テキ'), +('博', 'ハク'), +('博', 'バク'), +('梅', 'バイ'), +('飛', 'ヒ'), +('票', 'ヒョウ'), +('沖', 'チュウ'), +('不', 'フ'), +('不', 'ブ'), +('働', 'ドウ'), +('梨', 'リ'), +('特', 'トク'), +('灯', 'トウ'), +('必', 'ヒツ'), +('熱', 'ネツ'), +('府', 'フ'), +('徒', 'ト'), +('念', 'ネン'), +('努', 'ド'), +('阜', 'フ'), +('阜', 'フウ'), +('副', 'フク'), +('富', 'フ'), +('富', 'フウ'), +('夫', 'フ'), +('夫', 'フウ'), +('夫', 'ブ'), +('敗', 'ハイ'), +('別', 'ベツ'), +('兵', 'ヘイ'), +('兵', 'ヒョウ'), +('辺', 'ヘン'), +('付', 'フ'), +('飯', 'ハン'), +('徳', 'トク'), +('便', 'ベン'), +('便', 'ビン'), +('変', 'ヘン'), +('包', 'ホウ'), +('望', 'ボウ'), +('望', 'モウ'), +('法', 'ホウ'), +('法', 'ハッ'), +('法', 'ホッ'), +('法', 'フラン'), +('牧', 'ボク'), +('利', 'リ'), +('輪', 'リン'), +('無', 'ム'), +('無', 'ブ'), +('勇', 'ユウ'), +('浴', 'ヨク'), +('末', 'マツ'), +('末', 'バツ'), +('満', 'マン'), +('満', 'バン'), +('約', 'ヤク'), +('要', 'ヨウ'), +('陸', 'リク'), +('陸', 'ロク'), +('類', 'ルイ'), +('良', 'リョウ'), +('養', 'ヨウ'), +('養', 'リョウ'), +('料', 'リョウ'), +('民', 'ミン'), +('未', 'ミ'), +('未', 'ビ'), +('例', 'レイ'), +('老', 'ロウ'), +('冷', 'レイ'), +('連', 'レン'), +('令', 'レイ'), +('労', 'ロウ'), +('量', 'リョウ'), +('録', 'ロク'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('才媛', 'サイエン', 'literary woman, talented woman'), +('塩', 'エン', 'salt (e.g. sodium chloride, calcium sulfate, etc.), chloride'), +('塩分', 'エンブン', 'salt, salt content'), +('減塩', 'ゲンエン', 'reduction of salt, sodium restriction'), +('岩塩', 'ガンエン', 'halite, rock salt'), +('岡陵', 'コウリョウ', 'hill'), +('英', 'エイ', 'United Kingdom, Britain, English (language)'), +('英語', 'エイゴ', 'English (language)'), +('蒲公英', 'タンポポ', 'dandelion (esp. species Taraxacum platycarpum)'), +('和英', 'ワエイ', 'Japanese-English, Japanese-English dictionary'), +('印', 'イン', 'stamp, seal, chop, seal impression, seal, sealing, stamp, mark, print, mudra (symbolic hand gesture), ninja hand sign, India'), +('印刷', 'インサツ', 'printing'), +('調印', 'チョウイン', 'signature, signing, sealing'), +('証印', 'ショウイン', 'a seal affixed to a document'), +('愛', 'アイ', 'love, affection, care, attachment, craving, desire, agape, Ireland'), +('愛情', 'アイジョウ', 'love, affection'), +('恋愛', 'レンアイ', 'love, love-making, passion, emotion, affections'), +('割愛', 'カツアイ', 'omitting (reluctantly), leaving out, dropping, giving up (reluctantly), parting with, sharing, sparing'), +('栄', 'エイ', 'honor, honour, glory, prosperity'), +('栄養', 'エイヨウ', 'nutrition, nourishment'), +('繁栄', 'ハンエイ', 'prosperity, thriving, flourishing'), +('共栄', 'キョウエイ', 'mutual prosperity'), +('位', 'イ', 'rank, place (e.g. first place), decimal place, counter for ghosts'), +('位置', 'イチ', 'place, position, location, position, standing, status, situation'), +('地位', 'チイ', '(social) position, status, standing, position (in a company, organization, etc.), post, rank'), +('即位', 'ソクイ', 'accession to the throne, enthronement'), +('芽球', 'ガキュウ', 'gemmule, blast (cell)'), +('芽殖孤虫', 'ガショクコチュウ', 'Sparganum proliferum (species of worm)'), +('発芽', 'ハツガ', 'germination, sprouting, budding'), +('萌芽', 'ホウガ', 'germination, germ, sprout, bud, sign'), +('衣', 'キヌ', 'clothing, garment, dress'), +('衣服', 'イフク', 'clothes'), +('白衣', 'ハクイ', 'white clothes, white robe, white gown (worn by doctors, chemists, etc.), commoner without rank (in ancient China), layperson'), +('着衣', 'チャクイ', 'clothes (that one is wearing), wearing clothes'), +('衣鉢', 'イハツ', 'mysteries of one''s master''s art, robes and a bowl (monk''s key possessions auctioned off at his funeral), transmission of the dharma from master to disciple (in Zen)'), +('衣紋', 'エモン', 'dress, clothes, drapery'), +('白衣', 'ハクイ', 'white clothes, white robe, white gown (worn by doctors, chemists, etc.), commoner without rank (in ancient China), layperson'), +('衣替え', 'コロモガエ', 'seasonal change of clothing, changing one''s dress for the season, renovation, facelift, redesign, redecoration, new appearance, fresh look'), +('課', 'カ', 'lesson, section (in an organization), division, department, counter for lessons and chapters (of a book)'), +('課長', 'カチョウ', 'section manager, section chief'), +('賦課', 'フカ', 'levy, imposition'), +('会計課', 'カイケイカ', 'accounts section, accounting section'), +('案', 'アン', 'idea, plan, proposal, suggestion, (government) bill, draft, rough copy, expectation, desk, stand'), +('案内', 'アンナイ', 'guidance, leading (the way), showing around, information, notice, notification, announcement (of one''s arrival), invitation, acquaintance, knowledge'), +('提案', 'テイアン', 'proposal, proposition, suggestion'), +('考案', 'コウアン', 'plan, device, idea, design, contrivance, conception, invention'), +('億', 'オク', '10^8, 100,000,000, hundred million'), +('億劫', 'オックウ', 'troublesome, bothersome, tiresome, annoying'), +('十億', 'ジュウオク', '1,000,000,000, billion'), +('100億', 'ヒャクオク', '10,000,000,000, ten billion'), +('以上', 'イジョウ', 'not less than, ... and over, ... and above, ... and upwards, ... or more, beyond (e.g. one''s expectations), above, more than, further than, above-mentioned, aforementioned, foregoing, since ..., seeing that ..., now that ..., once ..., that''s all, that is the end, the end'), +('以下', 'イカ', 'not exceeding, and downward, ... and below, below (e.g. standard), under (e.g. a level), the below-mentioned, the following, the rest'), +('縞曹以', 'シマソイ', 'threestripe rockfish (Sebastes trivittatus)'), +('斑曹以', 'ムラソイ', 'spotbelly rockfish (Sebastes pachycephalus)'), +('改', 'カイ', 'revision'), +('改善', 'カイゼン', 'betterment, improvement, kaizen (Japanese business philosophy of continuous improvement)'), +('更改', 'コウカイ', 'renewal, extension, revision'), +('契約更改', 'ケイヤクコウカイ', 'contract renewal'), +('果', 'カ', 'phala (attained state, result), enlightenment (as the fruits of one''s Buddhist practice), fruit, counter for pieces of fruit'), +('果物', 'クダモノ', 'fruit'), +('無花果', 'イチジク', 'common fig (Ficus carica), fig, fig tree'), +('青果', 'セイカ', 'fruit(s) and vegetables, produce'), +('加', 'カ', 'addition, increase, Canada'), +('加減', 'カゲン', 'degree, extent, amount, balance, state, condition, (health) condition, state of health, adjustment, moderation, regulation, addition and subtraction, slight sign of ..., slight state of ..., just right for ...'), +('亜米利加', 'アメリカ', '(United States of) America, United States, US, USA, America (land mass), the Americas'), +('阿弗利加', 'アフリカ', 'Africa'), +('賀', 'ガ', 'congratulation, celebration'), +('賀正', 'ガショウ', 'A Happy New Year!'), +('祝賀', 'シュクガ', 'celebration, congratulations'), +('年賀', 'ネンガ', 'New Year''s greetings, New Year''s call, New Year''s gift'), +('貨物', 'カモツ', 'cargo, freight, money or assets'), +('貨幣', 'カヘイ', 'money, currency, coinage'), +('基軸通貨', 'キジクツウカ', 'key currency'), +('英貨', 'エイカ', 'British currency, pound sterling'), +('工作機械', 'コウサクキカイ', 'machine tools'), +('産業機械', 'サンギョウキカイ', 'industrial machinery'), +('街', 'ガイ', 'street, quarter, district, area'), +('街頭', 'ガイトウ', '(on the) street'), +('ウォール街', 'ウォールガイ', 'Wall Street'), +('中華街', 'チュウカガイ', 'Chinatown'), +('街道', 'カイドウ', 'highway (esp. one existing from the Edo period), main road, highway (e.g. to success), path (to becoming ...), subdistrict (in China)'), +('街道筋', 'カイドウスジ', 'highway route (Edo period), main route'), +('覚悟', 'カクゴ', 'readiness, preparedness, resolution, resignation'), +('覚醒', 'カクセイ', 'waking up, awakening, arousal, revival, disillusion, disillusionment, awakening'), +('錯覚', 'サッカク', 'optical illusion, hallucination, misapprehension, delusion'), +('自覚', 'ジカク', 'self-consciousness, self-awareness'), +('各', 'カク', 'each, every, all'), +('各自', 'カクジ', 'each (person), everyone, individual, respective'), +('管', 'カン', 'pipe, tube'), +('管理', 'カンリ', 'control, management (e.g. of a business)'), +('保管', 'ホカン', 'charge, custody, safekeeping, deposit, storage'), +('所管', 'ショカン', 'jurisdiction'), +('岐路', 'キロ', 'forked road, crossroads'), +('分岐', 'ブンキ', 'divergence, ramification, bifurcation, branching off'), +('多岐', 'タキ', 'digression, many divergences'), +('岐阜', 'ギフ', 'Gifu (city, prefecture)'), +('岐阜県', 'ギフケン', 'Gifu Prefecture (Chūbu area)'), +('伊邪那岐', 'イザナギ', 'Izanagi (deity)'), +('議', 'ギ', 'discussion, deliberation, thought, opinion'), +('議員', 'ギイン', 'member of an assembly, member of the Diet, member of parliament, member of Congress'), +('会議', 'カイギ', 'meeting, conference, session, assembly, council, convention, congress'), +('抗議', 'コウギ', 'protest, objection'), +('希', 'キ', 'dilute, rare'), +('希望', 'キボウ', 'hope, wish, aspiration, (bright) prospects, expectation'), +('古希', 'コキ', '70th birthday, ancient Greek (language)'), +('七十古希', 'シチジュウコキ', 'men seldom live to be seventy, few people live to be seventy'), +('希有', 'ケウ', 'rare, uncommon'), +('共同', 'キョウドウ', 'cooperation, collaboration, association, partnership, (acting in) unison, community, communal use, common possession, sharing'), +('共通', 'キョウツウ', 'common, shared, mutual, to be common (to), to be shared (by), -wide'), +('反共', 'ハンキョウ', 'anticommunist'), +('中共', 'チュウキョウ', 'Chinese Communist Party, Chinese Communists, Communist China'), +('観', 'カン', 'look, appearance, spectacle, sight, observation meditation, outlook on ..., view of ...'), +('観客', 'カンキャク', 'audience, spectator, spectators'), +('楽観', 'ラッカン', 'optimism, taking an optimistic view'), +('直感', 'チョッカン', 'intuition, instinct, insight, hunch, immediacy'), +('泣訴', 'キュウソ', 'imploring with tears in one''s eyes'), +('号泣', 'ゴウキュウ', 'crying loudly, bawling, wailing, lamentation, crying one''s eyes out (without making noise), breaking into a flood of tears, crying buckets, weeping'), +('哀泣', 'アイキュウ', 'crying with sadness'), +('旗色', 'ハタイロ', 'situation, outlook, one''s allegiance, affiliation, position'), +('旗艦', 'キカン', 'flagship'), +('日章旗', 'ニッショウキ', 'the Japanese (rising sun) flag'), +('校旗', 'コウキ', 'school flag'), +('給', 'キュウ', 'wage, recompense'), +('給料', 'キュウリョウ', 'salary, wages, pay'), +('支給', 'シキュウ', 'provision, supply, payment, allowance, grant'), +('供給', 'キョウキュウ', 'supply, provision'), +('協力', 'キョウリョク', 'cooperation, collaboration, help, support'), +('共同', 'キョウドウ', 'cooperation, collaboration, association, partnership, (acting in) unison, community, communal use, common possession, sharing'), +('妥協', 'ダキョウ', 'compromise, giving in'), +('生協', 'セイキョウ', 'co-op, (consumers'') cooperative'), +('挙', 'キョ', 'action, behavior, behaviour, move, recommendation (of a person for a position)'), +('挙式', 'キョシキ', 'holding a ceremony, wedding ceremony'), +('選挙', 'センキョ', 'election'), +('列挙', 'レッキョ', 'enumeration, list'), +('季', 'キ', 'season (in nature, sports, etc.), seasonal word or phrase (in haiku), year'), +('季節', 'キセツ', 'season, time of year'), +('夏季', 'カキ', 'summer season'), +('秋季', 'シュウキ', 'fall season, autumn season'), +('官', 'カン', 'government service, the bureaucracy'), +('官庁', 'カンチョウ', 'government office, government agency, authorities'), +('退官', 'タイカン', 'retirement from office'), +('仕官', 'シカン', 'government service, entering government service, finding a new lord or master to serve (of a ronin)'), +('鏡面', 'キョウメン', 'mirror surface, lens surface'), +('鏡台', 'キョウダイ', 'dresser'), +('内視鏡', 'ナイシキョウ', 'endoscope'), +('万華鏡', 'マンゲキョウ', 'kaleidoscope'), +('明鏡', 'メイキョウ', 'polished mirror, clear mirror'), +('鸞鏡', 'ランキョウ', 'mirror with a mythical Chinese bird carved into the back, (in Japan) 9th note of the ancient chromatic scale (approx. A sharp)'), +('関', 'カン', 'barrier, gate'), +('関係', 'カンケイ', 'relation, relationship, connection, participation, involvement, concern, influence, effect, sexual relations, sexual relationship, related to, connected to'), +('連関', 'レンカン', 'connection, relation, linkage'), +('通関', 'ツウカン', 'customs clearance'), +('願', 'ガン', 'prayer, wish, vow'), +('願書', 'ガンショ', '(written) application, written request, petition, written prayer for a shrine or Buddhist temple'), +('志願', 'シガン', 'aspiration, volunteering, desire, application'), +('請願', 'セイガン', 'petition'), +('求人', 'キュウジン', 'recruiting, job offer, job vacancy'), +('求職', 'キュウショク', 'job hunting, seeking employment'), +('要求', 'ヨウキュウ', 'demand, firm request, requisition, requirement, desire'), +('請求', 'セイキュウ', 'claim, demand, charge, application, request, billing (for a service)'), +('求道', 'キュウドウ', 'seeking after truth'), +('求不得苦', 'グフトクク', 'the pain of not getting what one seeks'), +('勤求', 'ゴング', 'inquiring the Buddha way'), +('欣求', 'ゴング', 'earnest aspiration (to go to paradise)'), +('機', 'キ', 'chance, opportunity, machine, aircraft, counter for aircraft, counter for (remaining) lives'), +('機会', 'キカイ', 'chance, opportunity'), +('発条', 'バネ', 'spring, spring (in one''s legs), bounce, springboard, impetus'), +('待機', 'タイキ', 'standing by, awaiting an opportunity, being on alert, quarantine'), +('潟湖', 'セキコ', 'lagoon'), +('漁業', 'ギョギョウ', 'fishing industry, fishery'), +('漁船', 'ギョセン', 'fishing boat'), +('出漁', 'シュツギョ', 'going fishing'), +('大漁', 'タイリョウ', 'big catch (fishing), good haul'), +('漁', 'リョウ', 'fishing, gathering seafood (e.g. clams, seaweed), catch (e.g. of fish), haul'), +('漁師', 'リョウシ', 'fisherman'), +('大漁', 'タイリョウ', 'big catch (fishing), good haul'), +('豊漁', 'ホウリョウ', 'good catch, good haul'), +('害', 'ガイ', 'injury, harm, evil influence, damage'), +('害する', 'ガイスル', 'to injure, to damage, to harm, to hurt, to kill, to hinder, to obstruct'), +('迫害', 'ハクガイ', 'persecution, oppression'), +('妨害', 'ボウガイ', 'disturbance, obstruction, hindrance, jamming, interference'), +('完', 'カン', 'The End, Finis, completion, conclusion, end, providing fully'), +('完成', 'カンセイ', 'completion, perfection, accomplishment'), +('補完', 'ホカン', 'complementation, supplementation, completion'), +('未完', 'ミカン', 'incomplete, unfinished'), +('器', 'キ', 'device, instrument, vessel, container, ability, capacity, calibre, caliber'), +('機械', 'キカイ', 'machine, mechanism, instrument, appliance, apparatus'), +('磁器', 'ジキ', 'porcelain (esp. hard-paste porcelain), china, chinaware'), +('宝器', 'ホウキ', 'treasured article or vessel, outstanding individual'), +('競争', 'キョウソウ', 'competition, contest, rivalry, race, competition (between organisms or species)'), +('競技', 'キョウギ', 'game, match, contest'), +('競馬', 'ケイバ', 'horse racing'), +('競売', 'キョウバイ', 'auction'), +('好', 'コウ', 'good'), +('幸運', 'コウウン', 'good luck, fortune'), +('愛好', 'アイコウ', 'love, adoration'), +('友好', 'ユウコウ', 'friendship'), +('験', 'ゲン', 'effect, efficacy, omen'), +('検算', 'ケンザン', 'verification of accounts, checking figures, arithmetic check'), +('試験', 'シケン', 'examination, exam, test, trial, experiment, test'), +('経験', 'ケイケン', 'experience'), +('験', 'ゲン', 'effect, efficacy, omen'), +('ゲン担ぎ', 'ゲンカツギ', 'superstition, acting superstitiously (for good luck)'), +('霊験', 'レイゲン', 'miraculous efficacy, miracle, miraculous virtue'), +('功', 'コウ', 'merit, success, meritorious deed, achievement, accumulated experience'), +('功績', 'コウセキ', 'achievement, meritorious deed, distinguished service, contribution'), +('即効', 'ソッコウ', 'immediate effect, instant effect'), +('奏功', 'ソウコウ', 'success, achievement, fruition'), +('工夫', 'クフウ', 'devising (a way), contriving, figuring out, coming up with, working out, inventing, device, design, idea, plan, invention, dedication to spiritual improvement (esp. through Zen meditation)'), +('効能', 'コウノウ', 'effect, efficacy, virtue, benefit'), +('群', 'グン', 'group, bunch, crowd, throng, swarm, band, group'), +('群集', 'グンシュウ', 'crowd, community, group, herd, gathering, assembly'), +('症候群', 'ショウコウグン', 'syndrome'), +('層群', 'ソウグン', '(geol) group'), +('建築', 'ケンチク', 'construction, architecture (of buildings)'), +('建設', 'ケンセツ', 'construction, establishment'), +('再建', 'サイケン', 'rebuilding, reconstruction, rehabilitation, protoform reconstruction'), +('封建', 'ホウケン', 'feudalistic'), +('建立', 'コンリュウ', '(act of) building (temple, monument, etc.), erection'), +('再建', 'サイコン', '(temple or shrine) rebuilding'), +('径', 'ケイ', 'diameter'), +('経路', 'ケイロ', 'course, route, path, channel, process, means'), +('半径', 'ハンケイ', 'radius'), +('口径', 'コウケイ', 'aperture, bore, calibre, caliber'), +('郡', 'グン', 'district, county, district (of 2-20 50-home neighbourhoods or townships, in the ritsuryō period), commandery (in China)'), +('郡部', 'グンブ', 'rural districts, counties'), +('共産国家郡', 'キョウサンコッカグン', 'Communist bloc'), +('国郡', 'コクグン', 'provinces and districts'), +('軍', 'グン', 'army, armed forces, troops, military authorities, team, group, troupe'), +('軍隊', 'グンタイ', 'armed forces, military, troops'), +('将軍', 'ショウグン', 'general, shogun'), +('行軍', 'コウグン', 'march, marching'), +('芸', 'ゲイ', 'art, craft, accomplishment, artistic skill, technique, performance'), +('芸術', 'ゲイジュツ', '(fine) art, the arts'), +('文芸', 'ブンゲイ', 'literature, the arts, art and literature, liberal arts'), +('無芸', 'ムゲイ', 'lacking talent, lacking accomplishments'), +('芸香', 'ウンコウ', 'common rue (Ruta graveolens)'), +('耕耘', 'コウウン', 'plowing and weeding, farming, cultivation, tillage'), +('欠', 'ケツ', 'lack, deficiency, vacancy, absence, non-attendance'), +('欠乏', 'ケツボウ', 'want, shortage, famine'), +('病欠', 'ビョウケツ', 'absence due to illness, sick leave'), +('補欠', 'ホケツ', 'filling a vacancy, supplementation, substitute, deputy, alternate, spare'), +('欠伸', 'アクビ', 'yawn, yawning, kanji "yawning" radical (radical 76)'), +('欠缺', 'ケンケツ', 'lacuna, gap where something is lacked'), +('極', 'キョク', 'pole, climax, extreme, extremity, culmination, height, zenith, nadir'), +('極端', 'キョクタン', 'extreme, extremity'), +('両極', 'リョウキョク', 'both extremities, North and South Poles, positive and negative poles'), +('登極', 'トウキョク', '(Imperial) accession'), +('極', 'ゴク', 'quite, very, 10^48, quindecillion'), +('極秘', 'ゴクヒ', 'absolute secrecy'), +('極々', 'ゴクゴク', 'extremely, highly'), +('失礼至極', 'シツレイシゴク', 'extremely rude, impertinent, impolite'), +('健康', 'ケンコウ', 'health, healthy, sound, fit, wholesome'), +('健在', 'ケンザイ', 'in good health, alive and well, going strong'), +('豪健', 'ゴウケン', 'strong and full of vigour'), +('質実剛健', 'シツジツゴウケン', 'unaffected and sincere, with fortitude and vigor (vigour)'), +('香', 'コウ', 'incense'), +('香水', 'コウスイ', 'perfume, scent'), +('線香', 'センコウ', 'incense stick'), +('焼香', 'ショウコウ', 'burning (offer) incense'), +('香', 'キョウ', 'lance'), +('香車', 'キョウシャ', 'lance'), +('異香', 'イキョウ', 'great fragrance'), +('茴香', 'ウイキョウ', 'fennel (Foeniculum vulgare)'), +('候', 'コウ', 'season, weather'), +('候補', 'コウホ', 'candidate, contender, prospect, pick, choice, list, candidacy, candidature, nomination'), +('時候', 'ジコウ', 'season, time of the year'), +('症候', 'ショウコウ', 'symptoms'), +('佐保姫', 'サホヒメ', 'Saohime, goddess of Spring'), +('佐官', 'サカン', 'field officer'), +('少佐', 'ショウサ', 'major, lieutenant commander, wing commander'), +('大佐', 'タイサ', 'colonel, (navy) captain'), +('熊害', 'ユウガイ', 'damages caused by bears (on human settlements, including attacks on humans)'), +('熊掌', 'ユウショウ', 'bear''s palm (meat treasured in ancient China)'), +('菜', 'サイ', 'side dish'), +('菜園', 'サイエン', 'vegetable garden'), +('野菜', 'ヤサイ', 'vegetable'), +('山菜', 'サンサイ', 'edible wild plants'), +('結論', 'ケツロン', 'conclusion (of an argument, discussion, study, etc.), conclusion'), +('結合', 'ケツゴウ', 'combination, union, binding, catenation, coupling, joining, bond'), +('団結', 'ダンケツ', 'unity, union, solidarity, combination, teaming up'), +('終結', 'シュウケツ', 'end, close'), +('結縁', 'ケチエン', 'making a connection (with Buddha)'), +('結願', 'ケチガン', 'expiration of term of a vow'), +('最', 'サイ', 'the most, the extreme, prime, conspicuous'), +('最近', 'サイキン', 'recently, lately, these days, nowadays, right now, nearest, closest'), +('訓', 'クン', 'native Japanese reading of a Chinese character, precept, lesson, one''s teachings'), +('訓練', 'クンレン', 'training, drill, practice, discipline'), +('教訓', 'キョウクン', 'lesson, precept, teachings, moral'), +('特訓', 'トックン', 'special training, intensive training, crash course'), +('庭訓', 'テイキン', 'home education'), +('家訓', 'カクン', 'family precepts, family motto, rule of the home'), +('差', 'サ', 'difference, variation, difference'), +('差し', 'サシ', 'between (e.g. two people), face to face, hindrance, impediment, arrhythmic section of recitative in noh music, playing with only 2 players, prefix used for stress or emphasis, counter for traditional dance songs'), +('交差', 'コウサ', 'crossing, intersection, (genetic) crossing over'), +('雲泥の差', 'ウンデイノサ', 'wide difference, a world of difference'), +('材', 'ザイ', 'wood, lumber, timber, (raw) material, stuff, talent, ability, capable person'), +('材料', 'ザイリョウ', 'materials, ingredients, material (for a novel, experiment, etc.), subject matter, grounds (for a decision, judgement, etc.), basis, evidence, data, (market) factor'), +('人材', 'ジンザイ', 'capable person, talented person, human resources, personnel'), +('取材', 'シュザイ', 'news coverage, collecting data (e.g. for an article), covering (something for media), interview'), +('札', 'サツ', 'banknote, bill, note, paper money'), +('札束', 'サツタバ', 'roll of banknotes'), +('入札', 'ニュウサツ', 'bid, tender, bidding'), +('応札', 'オウサツ', 'making a bid, tendering a bid'), +('景', 'ケイ', 'vista, view, scene, scenic view, counter for scenes (in a play)'), +('景色', 'ケシキ', 'scenery, scene, landscape'), +('八景', 'ハッケイ', 'eight picturesque sights'), +('殺風景', 'サップウケイ', 'dreary, bleak, monotonous, barren, tasteless, unrefined'), +('崎崖', 'キガイ', 'steepness of a mountain'), +('崎嶇', 'キク', 'steep (mountain), precipitous, hard (life), difficult, troubled'), +('川崎', 'カワサキ', 'Kawasaki (city)'), +('長崎', 'ナガサキ', 'Nagasaki (city, prefecture)'), +('固定', 'コテイ', 'fixing (in place), being fixed (in place), securing, anchoring, fastening down, fixing (e.g. salary, capital), keeping the same, fixation (histology), user name (on an online forum like 2ch where the majority of users post anonymously), user of an online handle (instead of posting anonymously)'), +('固体', 'コタイ', 'solid (body), solid matter, solid-state'), +('凝固', 'ギョウコ', 'coagulation, freezing, solidification'), +('簡明強固', 'カンメイキョウコ', 'plain and sturdy'), +('刷', 'サツ', 'printing, impression, issue'), +('刷数', 'サツスウ', 'number (of books) printed'), +('印刷', 'インサツ', 'printing'), +('増刷', 'ゾウサツ', 'additional printing (esp. of books, etc.), additional run'), +('康安', 'コウアン', 'Kōan era (of the Northern Court) (1361.3.29-1362.9.23)'), +('康永', 'コウエイ', 'Kōei era (of the Northern Court) (1342.4.27-1345.10.21)'), +('小康', 'ショウコウ', 'lull, breathing spell, respite, remission (of an illness), becoming stable'), +('安康', 'アンコウ', 'calm and peaceful period of time'), +('察', 'サツ', 'cops, police'), +('診察', 'シンサツ', 'medical examination'), +('観察', 'カンサツ', 'observation, survey, watching'), +('三', 'サン', 'three, 3'), +('参加', 'サンカ', 'participation, joining, entry'), +('持参', 'ジサン', 'bringing, taking, carrying'), +('墓参り', 'ハカマイリ', 'visit to a grave'), +('参', 'シン', 'Chinese "Three Stars" constellation (one of the 28 mansions)'), +('参差', 'シンシ', 'of uneven heights or lengths'), +('昨', 'サク', 'last (year), yesterday'), +('昨日', 'キノウ', 'yesterday'), +('一昨', 'イッサク', 'one previous'), +('一昨昨', 'イッサクサク', 'three (days, years, etc.) ago, two ... before last'), +('散歩', 'サンポ', 'walk, stroll'), +('散布', 'サンプ', 'dissemination, scattering, sprinkling, spraying'), +('解散', 'カイサン', 'breaking up (a meeting, gathering, etc.), dispersal (e.g. of a crowd), dissolution (of a company, organization, etc.), winding-up, disbandment, split-up, dissolution (of the Diet, Parliament, etc.)'), +('拡散', 'カクサン', 'spreading, disseminating, scattering, diffusion (of light, gas)'), +('産', 'サン', '(giving) birth, childbirth, delivery, confinement, native of, product of, assets, property, fortune'), +('産業', 'サンギョウ', 'industry, livelihood, occupation'), +('生産', 'セイサン', 'production, manufacture'), +('倒産', 'トウサン', '(corporate) bankruptcy, insolvency, commercial failure, failed business'), +('松明', 'タイマツ', 'torch (made of pine, bamboo, reed, etc.), flambeau, torchlight'), +('松竹梅', 'ショウチクバイ', 'pine, bamboo and plum (an auspicious grouping), high, middle and low (ranking), top, middle and bottom, upper, medium, lower, first, second and third (class)'), +('老松', 'ロウショウ', 'old pine tree'), +('翠松', 'スイショウ', 'verdant pine, green pine'), +('種', 'シュ', 'kind, variety, (biological) species, (logical) species'), +('種類', 'シュルイ', 'variety, kind, type, category, counter for kinds, species, etc.'), +('職種', 'ショクシュ', 'type of occupation, occupational category'), +('業種', 'ギョウシュ', 'type of industry'), +('笑納', 'ショウノウ', 'please accept (this)'), +('笑気', 'ショウキ', 'laughing gas, nitrous oxide'), +('微笑', 'ビショウ', 'smile'), +('爆笑', 'バクショウ', 'roar of laughter (from multiple people), burst of laughter, uproarious laughter, laughing hard (of a single person)'), +('試', 'シ', 'testing, experiment, test, examination, exam, trial'), +('試合', 'シアイ', 'match, game, bout, contest'), +('公試', 'コウシ', 'national examinations'), +('考試', 'コウシ', 'test, exam'), +('児', 'ジ', 'child, boy, I, me'), +('児童', 'ジドウ', 'children, juvenile'), +('新生児', 'シンセイジ', 'newborn baby'), +('遺児', 'イジ', 'orphan, child left by the deceased, abandoned child'), +('辞', 'ジ', 'address (e.g. opening or closing remarks), speech, words, ci (Chinese literary form), ancillary word'), +('辞書', 'ジショ', 'dictionary, lexicon, letter of resignation'), +('返事', 'ヘンジ', 'reply, answer, response'), +('固辞', 'コジ', 'firm refusal'), +('残', 'ザン', 'remaining, left-over, excess'), +('残念', 'ザンネン', 'regrettable, unfortunate, disappointing, vexing'), +('敗残', 'ハイザン', 'survival after defeat, decline (of a person, business, etc.), ruin'), +('遺残', 'イザン', 'persistence, vestigial remnant'), +('失', 'シツ', 'loss (of something), disadvantage, mistake, error, failure, flaw, defect, error'), +('失業', 'シツギョウ', 'unemployment, losing one''s job, becoming unemployed'), +('紛失', 'フンシツ', 'loss, going missing'), +('喪失', 'ソウシツ', 'loss, forfeit'), +('焼死', 'ショウシ', 'death by fire'), +('焼酎', 'ショウチュウ', 'shōchū, Japanese spirit distilled from sweet potatoes, rice, etc.'), +('燃焼', 'ネンショウ', 'burning, combustion'), +('全焼', 'ゼンショウ', 'burned down, entirely destroyed'), +('祝', 'シュク', 'public holiday, celebration (of)'), +('祝日', 'シュクジツ', 'national holiday, public holiday'), +('慶祝', 'ケイシュク', 'congratulation, celebration'), +('奉祝', 'ホウシュク', 'celebration'), +('祝儀', 'シュウギ', 'celebration, celebratory event, wedding ceremony, congratulatory gift, tip, gratuity'), +('祝儀袋', 'シュウギブクロ', 'special envelope for monetary gifts'), +('唱和', 'ショウワ', 'cheering in chorus, saying in unison'), +('唱歌', 'ショウカ', 'singing, song, music class (at pre-WWII schools), song for music classes'), +('合唱', 'ガッショウ', 'singing together, singing in union, chorus, ensemble singing, choral singing, chorus'), +('歌唱', 'カショウ', 'song, singing'), +('鹿', 'シカ', 'deer (esp. the sika deer, Cervus nippon), cervid'), +('鹿砦', 'ロクサイ', 'abatis'), +('馴鹿', 'トナカイ', 'reindeer (Rangifer tarandus)'), +('神鹿', 'シンロク', 'deer raised upon the grounds of a shrine (who serve as messengers of the gods)'), +('治療', 'チリョウ', '(medical) treatment, care, therapy, cure, remedy'), +('治世', 'チセイ', 'rule, reign, peaceful times'), +('統治', 'トウチ', 'rule, reign, government, governing'), +('明治', 'メイジ', 'Meiji era (1868.9.8-1912.7.30)'), +('治', 'チ', 'politics, government, administration, rule, peace, medical treatment, cure'), +('治療', 'チリョウ', '(medical) treatment, care, therapy, cure, remedy'), +('統治', 'トウチ', 'rule, reign, government, governing'), +('全治', 'ゼンチ', 'complete recovery, healing'), +('初級', 'ショキュウ', 'elementary level, beginner level'), +('初版', 'ショハン', 'first edition'), +('年初', 'ネンショ', 'beginning of the year'), +('原初', 'ゲンショ', 'origin, source, beginning, starting point'), +('司', 'シ', 'office (government department beneath a bureau under the ritsuryō system)'), +('司会', 'シカイ', 'leading a meeting, presiding over a meeting, officiating at a ceremony, chairmanship, chairman, presenter, host, moderator, master of ceremonies'), +('公司', 'コンス', 'company (in China), firm'), +('にぎり寿司', 'ニギリズシ', 'nigirizushi, hand-formed sushi with a topping of seafood, etc.'), +('周', 'シュウ', 'counter for laps or circuits, perimeter, Zhou dynasty (of China; approx. 1046-256 BCE), Chou dynasty'), +('周囲', 'シュウイ', 'surroundings, environs, circumference'), +('一周', 'イッシュウ', 'one round, one circuit, one revolution, one lap, one turn'), +('円周', 'エンシュウ', 'circumference'), +('借家', 'シャクヤ', 'house for rent, rented house, renting a house'), +('借家人', 'シャクヤニン', 'tenant, renter'), +('拝借', 'ハイシャク', 'borrowing'), +('賃貸借', 'チンタイシャク', 'renting, leasing'), +('氏', 'シ', 'Mr, Mrs, Ms, Miss, clan, he, him, counter for people'), +('氏名', 'シメイ', '(full) name, identity'), +('両氏', 'リョウシ', 'both persons'), +('同氏', 'ドウシ', 'the said person, he, she, same surname'), +('説', 'セツ', 'theory, doctrine, opinion, view, rumour, rumor, gossip, hearsay'), +('説明', 'セツメイ', 'explanation, exposition, description, account, caption, legend'), +('解説', 'カイセツ', 'explanation, commentary, exposition, elucidation'), +('力説', 'リキセツ', 'emphasizing (a point, argument, etc.), stressing, insistence, arguing strongly (for, against)'), +('遊説', 'ユウゼイ', 'election tour, election campaign, stumping'), +('全国遊説', 'ゼンコクユウゼイ', 'nationwide election campaign'), +('節', 'セツ', 'occasion, time, section (of a literary work or piece of music), passage, paragraph, verse, stanza, clause, season, term, one''s principles, integrity, node (of a plant stem), (taxonomical) section, knot (nautical mile per hour)'), +('節約', 'セツヤク', 'economising, saving'), +('調節', 'チョウセツ', 'regulation, adjustment, control'), +('国慶節', 'コッケイセツ', 'anniversary of founding (of PRC), national celebration time'), +('節', 'セチ', 'season, time of the year, seasonal festival, seasonal banquet, seasonal feast'), +('節分', 'セツブン', 'setsubun, last day of winter in the traditional Japanese calendar (usu. February 3 or 4), day of the bean scattering ceremony, last day of any season (according to the traditional Japanese calendar)'), +('然', 'ゼン', '-like'), +('然諾', 'ゼンダク', 'consent, saying yes'), +('必然', 'ヒツゼン', 'inevitable, necessary, certain, sure, inevitability, necessity'), +('漠然', 'バクゼン', 'vague, obscure, indistinct, hazy, ambiguous'), +('寂然', 'セキゼン', 'lonely, desolate, forlornness, desolation'), +('自然', 'ジネン', 'occurring naturally (without human influence)'), +('戦', 'セン', 'war, battle, match, game, competition'), +('戦争', 'センソウ', 'war, fighting, fierce competition'), +('休戦', 'キュウセン', 'cease-fire, truce, armistice'), +('敗戦', 'ハイセン', 'defeat, lost battle, losing a war'), +('縄文', 'ジョウモン', 'straw-rope pattern pressed into earthenware, Jōmon period (ca. 14000-1000 BCE)'), +('縄鏢', 'ジョウヒョウ', 'rope dart, rope javelin'), +('絞縄', 'コウジョウ', 'hangman''s noose, halter, rope to hang a criminal'), +('結縄', 'ケツジョウ', 'knotted cord or rope, quipu, quippu'), +('臣', 'オミ', 'retainer, attendant, Omi (hereditary title; orig. one of the two highest such titles, later demoted to sixth highest of eight), I, me'), +('臣民', 'シンミン', 'subject, national'), +('忠臣', 'チュウシン', 'loyal retainer, loyal subject'), +('重臣', 'ジュウシン', 'chief vassal, senior statesman'), +('国務大臣', 'コクムダイジン', 'minister of state, cabinet minister (Japan)'), +('内大臣', 'ナイダイジン', 'Lord Keeper of the Privy Seal (1885-1945), Minister of the Interior (669-1868)'), +('城', 'ジョウ', 'castle (in place names), castle, fortress'), +('城内', 'ジョウナイ', 'inside of a castle, area surrounded by castle walls'), +('入城', 'ニュウジョウ', 'entry into a castle (by a conquering force)'), +('荒城', 'コウジョウ', 'ruined castle'), +('傾城', 'ケイセイ', 'beauty, siren, courtesan, prostitute'), +('傾国傾城', 'ケイコクケイセイ', 'woman so glamorous as to bring ruin to a country (castle) as its king (lord) is captivated by her beauty, femme fatale'), +('浅学非才', 'センガクヒサイ', 'one''s lack of learning or ability, shallow learning and limited ability'), +('浅学', 'センガク', 'shallow knowledge, superficial learning'), +('深浅', 'シンセン', 'depth, shade (of color, colour)'), +('清潔', 'セイケツ', 'clean, hygienic, sanitary, pure, virtuous, immaculate'), +('清掃', 'セイソウ', 'cleaning, clean-up, garbage collection, scavenging'), +('粛清', 'シュクセイ', '(political) purge'), +('血清', 'ケッセイ', 'serum, blood serum'), +('清浄', 'セイジョウ', 'pure, clean, purity'), +('清', 'シン', 'Qing dynasty (of China; 1644-1912), Ch''ing dynasty, Manchu dynasty'), +('清朝', 'シンチョウ', 'Qing dynasty (of China; 1644-1912), Ch''ing dynasty, Manchu dynasty, seichōtai, typeface which resembles brush-stroke forms of characters'), +('東清', 'トウシン', 'Eastern China'), +('日清', 'ニッシン', 'Japan and Qing China'), +('滋養', 'ジヨウ', 'nourishment'), +('慈雨', 'ジウ', 'welcome rain, beneficial rain, blessed rain, rain that comes after a drought'), +('京滋', 'ケイジ', 'Kyoto-Shiga, Kyoto and Shiga'), +('茂る', 'シゲル', 'to grow thickly, to be in full leaf, to be rampant, to luxuriate, to be luxurious'), +('滋賀', 'シガ', 'Shiga (prefecture)'), +('争点', 'ソウテン', 'point at issue'), +('争議', 'ソウギ', 'dispute, quarrel, strike'), +('戦争', 'センソウ', 'war, fighting, fierce competition'), +('論争', 'ロンソウ', 'dispute, controversy, debate, argument, taking issue'), +('骨折', 'コッセツ', 'bone fracture'), +('挫折', 'ザセツ', 'setback, failure (e.g. plans, business), frustration, discouragement'), +('折伏', 'シャクブク', 'preaching down, breaking down someone''s false beliefs through confrontation (in order to convert them to the right faith)'), +('選', 'セン', 'selection, choice, choosing, picking, election'), +('選手', 'センシュ', 'player (of a sport), athlete, team member'), +('当選', 'トウセン', 'being elected, being selected (for a prize, etc.), winning'), +('改選', 'カイセン', 're-election'), +('信', 'シン', 'honesty, sincerity, fidelity, trust, reliance, confidence, (religious) faith, devotion, counter for received messages'), +('信仰', 'シンコウ', '(religious) faith, belief, creed'), +('確信', 'カクシン', 'conviction, belief, confidence'), +('送信', 'ソウシン', 'transmission, sending'), +('成人', 'セイジン', 'adult (esp. person 20 years old or over), grownup, becoming an adult, coming of age, growing up (to be a man, woman)'), +('成功', 'セイコウ', 'success, hit'), +('完成', 'カンセイ', 'completion, perfection, accomplishment'), +('構成', 'コウセイ', 'composition, construction, formation, makeup, structure, organization, organisation'), +('成就', 'ジョウジュ', 'fulfillment, fulfilment, realization, realisation, completion'), +('成仏', 'ジョウブツ', 'attaining Buddhahood, becoming a Buddha, entering Nirvana, going to heaven, resting in peace, dying (peacefully)'), +('席', 'セキ', 'seat, location (of a gathering, etc.), place, position, post'), +('席上', 'セキジョウ', 'at the meeting, on the occasion'), +('出席', 'シュッセキ', 'attendance, presence, appearance'), +('欠席', 'ケッセキ', 'absence, non-attendance'), +('井', 'セイ', 'well curb, Chinese "Well" constellation (one of the 28 mansions)'), +('整然', 'セイゼン', 'orderly, regular, systematic, well-organized, well-organised, trim, tidy, accurate'), +('市井', 'シセイ', 'the street, the town'), +('整々', 'セイセイ', 'well-ordered, in good order, orderly'), +('巣窟', 'ソウクツ', 'den, haunt, hangout, nest, lair'), +('巣穴', 'スアナ', 'nesting hole, burrow, den'), +('卵巣', 'ランソウ', 'ovary'), +('病巣', 'ビョウソウ', 'focus, nidus, lesion'), +('省察', 'セイサツ', 'reflection, consideration'), +('省思', 'セイシ', 'reflection, reexamination, contemplation'), +('反省', 'ハンセイ', 'reflection, reconsideration, introspection, meditation, contemplation, regret, repentance, remorse, being sorry'), +('帰省', 'キセイ', 'homecoming, returning home'), +('省', 'ショウ', 'ministry, department, province (of China), saving, conserving'), +('省略', 'ショウリャク', 'omission, abbreviation, abridgment, abridgement'), +('大蔵省', 'オオクラショウ', 'Ministry of Finance (1869-2001), Ministry of the Treasury (under the ritsuryō system)'), +('国防総省', 'コクボウソウショウ', 'Department of Defense (US), the Pentagon'), +('順', 'ジュン', 'order, turn, sorting, obedient, docile, submissive, meek'), +('順調', 'ジュンチョウ', 'favourable, favorable, doing well, OK, all right'), +('語順', 'ゴジュン', 'word order'), +('打順', 'ダジュン', 'batting order'), +('照明', 'ショウメイ', 'illumination, lighting'), +('照合', 'ショウゴウ', 'collation, comparison'), +('参照', 'サンショウ', 'reference (e.g. to a dictionary, passage, footnotes), consultation, comparison, browsing (to a file or folder)'), +('日照', 'ニッショウ', 'sunlight'), +('束', 'ソク', 'lattice, counter for large bundles (e.g. 10 sheafs of rice, 200 sheets of calligraphy paper, 20 whistling arrows, 100 fish), handbreadth (unit for measuring the length of arrows)'), +('束縛', 'ソクバク', 'restraint, restriction, fetters, yoke, shackles, binding, confinement with rope'), +('拘束', 'コウソク', 'restriction, restraint, binding, constraint'), +('結束', 'ケッソク', 'union, unity, solidarity, bundling, binding, tying, putting on (clothes, armour, etc.)'), +('積', 'セキ', 'product, volume, area'), +('積載', 'セキサイ', 'lading, loading, carrying'), +('面積', 'メンセキ', 'area (measurement), square measure, size (of land), floor space'), +('集積', 'シュウセキ', 'accumulation'), +('側', 'ソバ', 'near, close, beside, vicinity, proximity, besides, while, third person'), +('側', 'ソク', 'first principle of the Eight Principles of Yong, tiny dash or speck'), +('最外側', 'サイガイソク', 'outermost (side)'), +('体側', 'タイソク', 'side of a body'), +('隊', 'タイ', 'party, group, crew, team, body, company (of troops), corps, unit, squad'), +('隊員', 'タイイン', 'troops, group members, team members'), +('自衛隊', 'ジエイタイ', 'Japan Self-Defense Forces, JSDF, self-defence force, self-defense force'), +('入隊', 'ニュウタイ', 'enlistment'), +('帯', 'タイ', 'band (e.g. conduction, valence), belt (e.g. Van-Allen, asteroid, etc.)'), +('帯出', 'タイシュツ', 'taking out (e.g. a book from a library), removing (from the premises), borrowing'), +('包帯', 'ホウタイ', 'bandage, dressing'), +('携帯', 'ケイタイ', 'carrying (on one''s person or in the hand), mobile phone, cell phone'), +('卒', 'ソツ', 'low-ranking soldier, graduation, moving on (from), outgrowing (something), low-ranking samurai (1870-1872), death (of a noble, etc.)'), +('卒業', 'ソツギョウ', 'graduation, completion (of a course), moving on (from), outgrowing (something), leaving (a group, company, etc.), quitting'), +('高卒', 'コウソツ', 'person who has (only) graduated from high school, high school graduate'), +('引率', 'インソツ', 'leading, guiding, commanding'), +('静', 'セイ', 'stillness, quiet, peacefulness'), +('静止', 'セイシ', 'stillness, repose, standing still'), +('鎮静', 'チンセイ', 'calm, quiet, tranquility, tranquillity, appeasement, pacification'), +('沈静', 'チンセイ', 'stillness, tranquility, tranquillity, dullness'), +('静脈', 'ジョウミャク', 'vein'), +('静注', 'ジョウチュウ', 'intravenous injection, IV'), +('寂静', 'ジャクジョウ', 'calmness, stillness, tranquility, calmness of the heart, enlightenment'), +('涅槃寂静', 'ネハンジャクジョウ', 'enlightenment leads to serenity'), +('倉庫', 'ソウコ', 'storehouse, warehouse, godown'), +('倉頡輸入法', 'ソウケツユニュウホウ', 'Cangjie input method (for Chinese), Tsang-chieh input method'), +('船倉', 'センソウ', 'ship''s hold, hatch'), +('穀倉', 'コクソウ', 'granary'), +('達人', 'タツジン', 'master, expert'), +('達意', 'タツイ', 'lucidity, intelligibility, perspicuity'), +('配達', 'ハイタツ', 'delivery'), +('上達', 'ジョウタツ', 'improvement (e.g. in skill, ability), advance, progress, communication of opinions of the general populace to those of high rank'), +('達', 'ダチ', 'friend'), +('達頼喇嘛', 'ダライラマ', 'Dalai Lama'), +('重炭酸曹達', 'ジュウタンサンソウダ', 'sodium bicarbonate, baking soda'), +('続', 'ゾク', 'continuation, sequel'), +('続々', 'ゾクゾク', 'successively, one after another'), +('連続', 'レンゾク', 'continuation, succession, series'), +('相続', 'ソウゾク', 'succession, inheritance'), +('続', 'ゾク', 'continuation, sequel'), +('続日本紀', 'ショクニホンギ', 'Shoku Nihongi (second of the six classical Japanese history texts)'), +('孫', 'ソン', 'descendant (usu. of a certain generation), lineage, pedigree, grandchild'), +('孫子', 'ソンシ', 'Sun Tzu (Chinese military strategist; 544?-496 BCE), The Art of War (military text by Sun Tzu; c. 5th century BCE), Sun Bin Bing Fa (military text by Sun Bin)'), +('愛孫', 'アイソン', 'one''s beloved grandchild'), +('外孫', 'ガイソン', 'grandchild from a daughter married into another family'), +('置換', 'チカン', 'substitution, replacement, permutation, substitution, displacement'), +('置換可能引数データ', 'チカンカノウヒキスウデータ', 'replaceable parameter data'), +('位置', 'イチ', 'place, position, location, position, standing, status, situation'), +('配置', 'ハイチ', 'arrangement (of resources), deployment, stationing, posting, disposition, configuration, layout'), +('仲裁', 'チュウサイ', 'arbitration, intercession, mediation'), +('仲介', 'チュウカイ', 'agency, intermediation'), +('保革伯仲', 'ホカクハクチュウ', 'conservatives and reformists being neck and neck, balanced conservative and progressive strengths'), +('勢力伯仲', 'セイリョクハクチュウ', '(the two sides) being evenly-matched in influence or power'), +('単', 'タン', 'single, simple, singles (tennis, badminton, etc.), win bet (bet which predicts the winner of a race)'), +('単位', 'タンイ', 'unit, denomination, credit (in school), in units of (e.g. "in thousands"), in amounts of'), +('菜単', 'サイタン', 'menu (at a Chinese restaurant)'), +('指定単', 'シテイタン', 'designated money trust'), +('底', 'テイ', 'base (logarithmic, exponential, number system), radix, base (triangle, cone, cylinder, etc.), type, kind, extent, degree'), +('底辺', 'テイヘン', 'base (e.g. of a triangle), low class, low in social standing, low level, of poor reputation, base (e.g. of support), foundation, basis'), +('徹底', 'テッテイ', 'thoroughness, completeness, consistency, thorough enforcement, seeing to it that a policy, etc. is carried out without exception'), +('基底', 'キテイ', 'base, basis, foundation, basis (linear algebra), base (topology), basis'), +('兆', 'チョウ', '10^12, 1,000,000,000,000, trillion, sign, omen, indication, portent'), +('兆候', 'チョウコウ', 'sign, indication, omen, symptom'), +('吉兆', 'キッチョウ', 'lucky omen, good omen'), +('慶兆', 'ケイチョウ', 'sign of happiness, good omen'), +('低', 'テイ', 'low (level, value, price, etc.)'), +('低下', 'テイカ', 'fall, decline, lowering, deterioration, degradation'), +('高低', 'コウテイ', 'high and low, rise and fall'), +('西高東低', 'セイコウトウテイ', 'high barometric pressure to the west, low pressure to the east'), +('典', 'テン', 'ceremony, celebration, law code'), +('典型', 'テンケイ', 'type, pattern, model, epitome, exemplar, archetype, perfect example'), +('国語辞典', 'コクゴジテン', 'Japanese-language dictionary, dictionary of a national language'), +('拉丁', 'ラテン', 'Latin (language), Latin-American, Latin, Latino, Latin (i.e. relating to the literature, culture, etc. of ancient Rome), Roman'), +('瑞典', 'スウェーデン', 'Sweden'), +('香典', 'コウデン', 'gift brought to a funeral (usu. money), funeral offering, condolence gift, incense money'), +('伝', 'デン', 'legend, tradition, biography, life, method, way, horseback transportation and communication relay system used in ancient Japan'), +('伝統', 'デントウ', 'tradition, convention'), +('宣伝', 'センデン', 'publicity, advertisement, advertising, propaganda'), +('遺伝', 'イデン', 'heredity, (genetic) inheritance'), +('転手', 'テンジュ', 'tuning peg (on a biwa or shamisen)'), +('伝奏', 'テンソウ', 'delivering a message to the emperor'), +('阪神', 'ハンシン', 'Osaka-Kobe, Hanshin (company name: railway, dept. store, baseball team, etc.)'), +('阪神大震災', 'ハンシンダイシンサイ', 'Great Hanshin Earthquake (January 17, 1995)'), +('京阪', 'ケイハン', 'Kyoto and Osaka, Kyoto-Osaka area'), +('在阪', 'ザイハン', 'being based in Osaka, being in Osaka'), +('奈落', 'ナラク', 'Naraka, Hell, Hades, very bottom, the end, worst possible circumstances, trap room (of a theatre), below-stage basement'), +('奈良', 'ナラ', 'Nara (city, prefecture)'), +('眼仁奈', 'メジナ', 'largescale blackfish (Girella punctata)'), +('輪奈', 'ワナ', 'loop (of thread, string, etc.)'), +('標', 'ヒョウ', 'mark, sign, target, plain wood showing the seating order of officials at court, nameplate'), +('標識', 'ヒョウシキ', 'sign, mark, flag'), +('座標', 'ザヒョウ', 'coordinate, coordinates'), +('商標', 'ショウヒョウ', 'trademark'), +('的', 'テキ', '-ical, -ive, -al, -ic, -y, -like, -ish, -sort of, -kind of, (something) like, along the lines of, -wise, in terms of, for, from the viewpoint of, from a ... standpoint, as far as ... is concerned, Mr., Ms., Mrs.'), +('的確', 'テキカク', 'precise, accurate, appropriate, exactly the right'), +('総合的', 'ソウゴウテキ', 'comprehensive, composite, all-round, all-embracing, general, overall, combined, synthetic (e.g. language)'), +('例外的', 'レイガイテキ', 'exceptional, unusual'), +('博', 'ハク', 'doctor, PhD, exposition, fair, exhibition'), +('博物館', 'ハクブツカン', 'museum'), +('文博', 'ブンハク', 'doctor of literature'), +('医博', 'イハク', 'doctor of medicine, MD'), +('博', 'ハク', 'doctor, PhD, exposition, fair, exhibition'), +('博打', 'バクチ', 'gambling, gaming, speculation, undertaking a risky venture, professional gambler, gamester'), +('賭博', 'トバク', 'gambling'), +('伝助賭博', 'デンスケトバク', 'deceptive betting game (such as the shell game), street fraud, trickery, densuke, roulette-like deceptive street gambling'), +('梅雨', 'ツユ', 'rainy season (in Japan usu. from early June to mid-July), rain during the rainy season'), +('梅雨前線', 'バイウゼンセン', 'seasonal rain front'), +('梅雨明け', 'ツユアケ', 'end of the rainy season'), +('梅雨入り', 'ツユイリ', 'entering the rainy season, beginning of the rainy season'), +('飛', 'ヒ', 'rook'), +('飛行機', 'ヒコウキ', 'aeroplane, airplane, aircraft'), +('犠飛', 'ギヒ', 'sacrifice fly'), +('中飛', 'チュウヒ', 'center fly, centre fly'), +('票', 'ヒョウ', 'vote, ballot, label, ticket, tag, stub'), +('票数', 'ヒョウスウ', 'vote tally'), +('投票', 'トウヒョウ', 'voting, ballot, poll, vote'), +('開票', 'カイヒョウ', 'counting ballots, tally (of votes)'), +('沖する', 'チュウスル', 'to rise up into the air, to ascend into the sky'), +('沖積', 'チュウセキ', 'alluvial'), +('在沖', 'ザイチュウ', 'staying in Okinawa, resident in Okinawa, stationed in Okinawa'), +('不', 'フ', 'un-, non-, negative prefix'), +('不便', 'フベン', 'inconvenience, inexpediency, unhandiness'), +('意味不', 'イミフ', 'of uncertain meaning, ambiguous, cryptic, nonsensical, incomprehensible, perplexing'), +('無', 'ブ', 'un-, non-, bad ..., poor ...'), +('不気味', 'ブキミ', 'weird, ominous, eerie, uncanny, ghastly'), +('労働', 'ロウドウ', 'manual labor, manual labour, toil, work, Labour Party'), +('稼働', 'カドウ', 'operation (of a machine), running, working (and earning money)'), +('梨園', 'リエン', 'theatrical world'), +('梨果', 'リカ', 'pome'), +('鳳梨', 'ホウリ', 'pineapple'), +('阿闍梨', 'アジャリ', 'high monk (esp. one of correct conduct who acts as a role model for his pupils), high priest, initiate (esp. as a formal rank in Tendai and Shingon), monk who conducts religious services'), +('特別', 'トクベツ', 'special, particular, extraordinary, exceptional, especial'), +('特に', 'トクニ', 'particularly, especially, in particular, expressly'), +('在特', 'ザイトク', 'Special Permission to Stay in Japan, residence status that can be granted to illegal immigrants or overstayers'), +('大特', 'ダイトク', 'large special-purpose vehicle'), +('灯', 'トウ', 'light, lamp, counter for electric lights'), +('灯台', 'トウダイ', 'lighthouse, old-fashioned interior light fixture comprising a wooden pole with an oil-filled dish and a wick atop it'), +('点灯', 'テントウ', 'lighting (a lamp), turning on a light'), +('洋灯', 'ヨウトウ', 'lamp'), +('必', 'ヒツ', 'definiteness, certainty'), +('必要', 'ヒツヨウ', 'necessary, needed, essential, indispensable, necessity, need, requirement'), +('熱', 'ネツ', 'heat, fever, temperature, zeal, passion, enthusiasm, mania, craze, rage'), +('熱意', 'ネツイ', 'zeal, enthusiasm, ardor, ardour'), +('加熱', 'カネツ', 'heating, application of heat'), +('断熱', 'ダンネツ', 'insulation'), +('府', 'フ', '(metropolitan) prefecture (i.e. Osaka and Kyoto), centre (e.g. of learning), center, seat, (government) office, fu (administrative unit in China, Korea and Vietnam)'), +('府県', 'フケン', 'prefectures (of Japan, excl. Tokyo and Hokkaido)'), +('政府', 'セイフ', 'government, administration, ministry'), +('幕府', 'バクフ', 'shogunate, bakufu, shogun''s headquarters, Imperial Guards office, residence of the Imperial Guards commander'), +('徒', 'ト', 'party, set, gang, company, person'), +('徒歩', 'トホ', 'walking, going on foot'), +('信徒', 'シント', 'layman, believer, adherent, follower, laity'), +('学徒', 'ガクト', 'student, follower, students and pupils'), +('念', 'ネン', 'sense, idea, thought, feeling, desire, concern, attention, care'), +('念願', 'ネンガン', 'one''s heart''s desire, one''s dearest wish'), +('残念', 'ザンネン', 'regrettable, unfortunate, disappointing, vexing'), +('記念', 'キネン', 'commemoration, celebration, remembrance, memory, honoring the memory of, memento, souvenir, keepsake'), +('努', 'ド', 'third principle of the Eight Principles of Yong, downward stroke'), +('努力', 'ドリョク', 'effort, exertion, endeavour, endeavor, hard work, striving'), +('埠頭', 'フトウ', 'pier, wharf, quay, dock'), +('副', 'フク', 'assistant, associate, vice-, sub-, deputy, substitute, auxiliary, supplementary, additional, collateral, duplicate, copy, adverb'), +('副詞', 'フクシ', 'adverb'), +('正副', 'セイフク', 'original and copy (of a document), principal and vice- (e.g. chairman and vice-chairman)'), +('関副', 'カンフク', 'relative adverb'), +('富豪', 'フゴウ', 'wealthy person, millionaire'), +('富士山', 'フジサン', 'Mount Fuji, Mt. Fuji, Fujiyama, Fuji-san'), +('種類豊富', 'シュルイホウフ', 'rich in variety, diverse, wide-ranging, multifarious'), +('知識豊富', 'チシキホウフ', 'knowledgeable'), +('富者', 'フシャ', 'rich person, millionaire, the wealthy'), +('富貴', 'フウキ', 'riches and honours (honors), wealth and rank'), +('夫人', 'フジン', 'wife, Mrs, madam, wife of a nobleman (aristocrat, etc.), consort of the emperor'), +('夫婦', 'フウフ', 'married couple, husband and wife, man and wife, his and hers, pair of objects, one larger (for man), one smaller (for woman)'), +('丈夫', 'ジョウフ', 'hero, manly person, warrior'), +('継夫', 'ケイフ', 'second husband'), +('夫婦', 'フウフ', 'married couple, husband and wife, man and wife, his and hers, pair of objects, one larger (for man), one smaller (for woman)'), +('夫婦関係', 'フウフカンケイ', 'marital relationship'), +('工夫', 'クフウ', 'devising (a way), contriving, figuring out, coming up with, working out, inventing, device, design, idea, plan, invention, dedication to spiritual improvement (esp. through Zen meditation)'), +('一工夫', 'ヒトクフウ', 'contrivance, bit of fiddling, little ingenuity, bit more (e.g. food)'), +('夫人', 'フジン', 'wife, Mrs, madam, wife of a nobleman (aristocrat, etc.), consort of the emperor'), +('賦役', 'フエキ', 'slave labour, slave labor, compulsory service, forced labour, forced labor, exacted service'), +('大夫', 'ダイブ', 'high steward, grand master'), +('右京大夫', 'ウキョウノダイブ', 'Ukyō no Daibu (title under the ritsuryō system), high steward'), +('敗', 'ハイ', 'loss, defeat, counter for losses'), +('敗戦', 'ハイセン', 'defeat, lost battle, losing a war'), +('勝敗', 'ショウハイ', 'victory or defeat, outcome (of a game, battle, etc.)'), +('大敗', 'タイハイ', 'crushing defeat'), +('別', 'ベツ', 'distinction, difference, discrimination, separate, different, another, extra, exception, exclusion, classified by, ranked by, according to'), +('別に', 'ベツニ', '(not) particularly, (not) especially, (not) specially, separately, apart, additionally, extra'), +('差別', 'サベツ', 'distinction, differentiation, discrimination, discrimination (against people)'), +('区別', 'クベツ', 'distinction, differentiation, classification'), +('兵', 'ヘイ', '(common) soldier, rank and file, army, troops, warfare, strategy'), +('兵隊', 'ヘイタイ', 'soldier, sailor'), +('徴兵', 'チョウヘイ', 'conscription, (military) draft, (compulsory) enlistment'), +('工兵', 'コウヘイ', 'combat engineer, military engineer, combat engineering, military engineering'), +('兵', 'ヒョウ', 'pawn'), +('兵庫県', 'ヒョウゴケン', 'Hyōgo Prefecture (Kinki area)'), +('小兵', 'コヒョウ', 'small build, small stature'), +('大兵', 'ダイヒョウ', 'great stature, large build'), +('辺', 'ヘン', 'area, vicinity, region, side, edge, circumstances'), +('辺境', 'ヘンキョウ', 'remote region, frontier (district), border(land)'), +('そこら辺', 'ソコラヘン', 'hereabouts, around there, that area'), +('この辺', 'コノヘン', 'this area, around here, this point, this much, this extent'), +('付属', 'フゾク', 'being attached (to), being affiliated (to), belonging (to), going with, attached school, affiliated school'), +('付近', 'フキン', 'neighborhood, vicinity, environs, district, approaching'), +('寄付', 'キフ', 'contribution, donation'), +('交付', 'コウフ', 'delivery, issuance, handing over, granting'), +('飯店', 'ハンテン', 'Chinese restaurant'), +('飯切', 'ハンギリ', 'flat-bottomed wooden bowl for preparing sushi rice'), +('夕飯', 'ユウハン', 'evening meal, dinner, supper'), +('米飯', 'ベイハン', 'cooked rice'), +('徳', 'トク', 'virtue, benevolence, profit, benefit, advantage'), +('徳川家', 'トクガワケ', 'the House of Tokugawa, the Tokugawas'), +('高徳', 'コウトク', 'eminent virtue'), +('大徳', 'ダイトク', 'great virtue, virtuous priest, priest, rich person'), +('便', 'ベン', 'convenience, service, facility, accommodation, excreta (esp. faeces), excrement, stool'), +('便利', 'ベンリ', 'convenient, handy, useful'), +('小便', 'ショウベン', 'urine, piss, pee, urination, breaking a contract'), +('排便', 'ハイベン', 'defecation'), +('便', 'ビン', 'flight (e.g. airline flight), trip (e.g. train trip), service, mail, post, letter, opportunity, chance'), +('便箋', 'ビンセン', 'writing paper, stationery, notepaper'), +('不憫', 'フビン', 'poor, pitiful, piteous, pitiable'), +('増便', 'ゾウビン', 'increase in the number of flights'), +('変', 'ヘン', 'strange, odd, peculiar, weird, curious, queer, eccentric, funny, suspicious, fishy, unexpected, change, incident, disturbance, disaster, accident, flat'), +('変化', 'ヘンカ', 'change, variation, alteration, mutation, transition, transformation, transfiguration, metamorphosis, variety, diversity, inflection, declension, conjugation, sidestepping'), +('急変', 'キュウヘン', 'sudden turn, sudden change, (suddenly occurring) accident, emergency'), +('豹変', 'ヒョウヘン', 'sudden change, complete change'), +('包丁', 'ホウチョウ', 'kitchen knife, carving knife, cooking, food'), +('包装', 'ホウソウ', 'packing, wrapping'), +('内包', 'ナイホウ', 'connotation, comprehension, intension, inclusion, containment within'), +('閉包', 'ヘイホウ', 'closure'), +('望', 'モチ', 'full moon, 15th day of the lunar month'), +('望遠鏡', 'ボウエンキョウ', 'telescope'), +('失望', 'シツボウ', 'disappointment, despair'), +('希望', 'キボウ', 'hope, wish, aspiration, (bright) prospects, expectation'), +('願望', 'ガンボウ', 'desire, wish, aspiration'), +('本望', 'ホンモウ', 'long-cherished ambition, satisfaction'), +('法', 'ホウ', 'law, act, principle, method, mood, dharma, law'), +('法律', 'ホウリツ', 'law'), +('司法', 'シホウ', 'administration of justice'), +('弘法', 'グホウ', 'spreading Buddhist teachings'), +('法被', 'ハッピ', 'happi coat, happy coat, workman''s livery coat, traditional Japanese straight-sleeved coat'), +('法度', 'ハット', 'law, ban, prohibition, ordinance'), +('法師', 'ホウシ', 'Buddhist priest, bonze, layman dressed like a priest, person'), +('法華経', 'ホケキョウ', 'Lotus Sutra'), +('牧', 'ボク', 'regional governor in ancient China'), +('牧場', 'ボクジョウ', 'farm (livestock), stock farm, ranch, station, pasture, meadow, grazing land'), +('放牧', 'ホウボク', 'pasturage, grazing'), +('遊牧', 'ユウボク', 'nomadism'), +('利', 'リ', 'advantage, benefit, profit, interest'), +('利用', 'リヨウ', 'use, utilization, utilisation, application'), +('勝利', 'ショウリ', 'victory, triumph, conquest, success, win'), +('智利', 'チリ', 'Chile'), +('輪', 'リン', 'counter for wheels and flowers'), +('輪郭', 'リンカク', 'contour, outline, border, silhouette, summary, outline, sketch, looks, features, appearance'), +('五輪', 'ゴリン', 'Olympic Games, Olympics, Olympic rings'), +('年輪', 'ネンリン', 'annual tree ring, growth ring, experience in life'), +('無', 'ム', 'nothing, naught, nought, nil, zero, un-, non-'), +('無理', 'ムリ', 'unreasonable, unnatural, unjustifiable, impossible, forcible, forced, compulsory, excessive (work, etc.), immoderate, to work too hard, to try too hard, no way, not a chance, never, dream on, irrational'), +('瓜姆', 'グアム', 'Guam'), +('皆無', 'カイム', 'nonexistent, nil, none, nothing (at all), bugger-all'), +('無', 'ブ', 'un-, non-, bad ..., poor ...'), +('無事', 'ブジ', 'safety, security, peace, quiet, safely, without incident, successfully, good health, inaction, ennui'), +('勇', 'ユウ', 'bravery, courage, heroism'), +('勇気', 'ユウキ', 'courage, bravery, valour, valor, nerve, boldness'), +('義勇', 'ギユウ', 'heroism, loyalty and courage'), +('武勇', 'ブユウ', 'bravery, military prowess, valour, valor'), +('浴衣', 'ユカタ', 'yukata (light cotton kimono worn in the summer or used as a bathrobe)'), +('浴室', 'ヨクシツ', 'bathroom'), +('入浴', 'ニュウヨク', 'bathing, going in the bath'), +('日光浴', 'ニッコウヨク', 'sunbathing'), +('末', 'マツ', 'the end (of), powder'), +('末日', 'マツジツ', 'last day (of a month)'), +('後始末', 'アトシマツ', 'settlement (of a matter), sorting out, winding up (affairs), dealing with the aftermath, cleaning up afterwards, tidying up (when finished)'), +('幕末', 'バクマツ', 'Bakumatsu period, closing days of the Tokugawa shogunate, end of the Edo period'), +('末路', 'マツロ', 'last days, the end, one''s fate'), +('末裔', 'マツエイ', 'descendant'), +('満', 'マン', 'being full, (counting) completed years (e.g. when calculating age), full (years, months, etc.), Manchuria'), +('満足', 'マンゾク', 'satisfaction, contentment, gratification, sufficient, satisfactory, enough, adequate, proper, decent, satisfying (an equation)'), +('肥満', 'ヒマン', 'corpulence, fatness, obesity'), +('充満', 'ジュウマン', 'being filled with, being full of, permeation'), +('約', 'ヤク', 'approximately, about, promise, appointment, engagement, shortening, reduction, simplification, contraction (in phonetics)'), +('約束', 'ヤクソク', 'promise, agreement, arrangement, one''s word, contract, pact, appointment, engagement, date, convention, rule, destiny, fate'), +('予約', 'ヨヤク', 'reservation, appointment, booking, advance order, contract, subscription, pledge, programming (e.g. a device), setting (e.g. a timer)'), +('節約', 'セツヤク', 'economising, saving'), +('要', 'ヨウ', 'cornerstone, main point, keystone, requirement, need, necessary, required'), +('要求', 'ヨウキュウ', 'demand, firm request, requisition, requirement, desire'), +('強要', 'キョウヨウ', 'coercion, extortion, compulsion, force'), +('法要', 'ホウヨウ', 'Buddhist memorial service'), +('陸', 'リク', 'land, shore'), +('陸軍', 'リクグン', 'army'), +('着陸', 'チャクリク', 'landing, alighting, touch down'), +('上陸', 'ジョウリク', 'landing, going ashore, disembarkation, making landfall (of a typhoon), striking land, hitting land'), +('六', 'ロク', 'six, 6'), +('碌', 'ロク', 'satisfactory, decent, good, proper, worthy'), +('碌々', 'ロクロク', '(not) well, (not) properly, (not) enough, (not) sufficiently'), +('双六', 'スゴロク', 'race game (board game played with dice in which the object is to reach the end of a track), ban-sugoroku, traditional Japanese board game similar to backgammon'), +('類', 'ルイ', 'kind, sort, type, class, genus, order, family, similar example, parallel, the like'), +('類似', 'ルイジ', 'resemblance, similarity, likeness, analogy'), +('分類', 'ブンルイ', 'classification, categorization, sorting'), +('魚類', 'ギョルイ', 'fish, fishes'), +('良', 'リョウ', 'good (quality, condition, etc.), Good (grade), B'), +('良好', 'リョウコウ', 'good, fine, excellent, favorable, favourable, satisfactory'), +('改良', 'カイリョウ', 'improvement, reform'), +('優良', 'ユウリョウ', 'superior, excellent, fine'), +('養成', 'ヨウセイ', 'training, education, development, cultivation'), +('養子', 'ヨウシ', 'adopted child (usu. male), son-in-law'), +('休養', 'キュウヨウ', 'rest, relaxation, recreation, recuperation, convalescence'), +('扶養', 'フヨウ', 'support (e.g. of one''s dependents), maintenance'), +('料', 'リョウ', 'fee, charge, rate, material'), +('料理', 'リョウリ', 'cooking, cookery, cuisine, meal, food, dish, item on a menu, (easily) dealing with something, handling (well)'), +('調味料', 'チョウミリョウ', 'seasoning, flavoring, flavouring, condiment'), +('肥料', 'ヒリョウ', 'manure, fertilizer, fertiliser, compost'), +('民', 'ミン', 'citizen, resident, person, user (of a website, esp. as a collective, e.g. Twittersphere)'), +('民間', 'ミンカン', 'private, non-governmental, non-official, civilian, civil, folk, popular'), +('国民', 'コクミン', 'people (of a country), nation, citizen, national, Democratic Party for the People'), +('移民', 'イミン', 'immigration, emigration, immigrant, emigrant'), +('未', 'ミ', 'not yet, un-'), +('未来', 'ミライ', 'the (distant) future, future tense, the world to come'), +('過現未', 'カゲンミ', 'past, present and future, three states of existence'), +('未央柳', 'ビヨウヤナギ', 'Chinese hypericum (Hypericum monogynum)'), +('丁未', 'ヒノトヒツジ', 'Fire Sheep (44th year of the sexagenary cycle, e.g. 1907, 1967, 2027)'), +('己未', 'ツチノトヒツジ', 'Earth Sheep (56th year of the sexagenary cycle, e.g. 1919, 1979, 2039)'), +('例', 'レイ', 'custom, practice, habit, usual, said, aforementioned, instance, example, case, illustration, usage, precedent'), +('例外', 'レイガイ', 'exception'), +('比例', 'ヒレイ', 'proportion, proportional representation section (of an election)'), +('慣例', 'カンレイ', 'custom, practice, convention, precedent'), +('老', 'ロウ', 'old age, age, old people, the old, the aged, senior, elder, I, me, my humble self'), +('老人', 'ロウジン', 'old person, senior citizen, the aged, the elderly'), +('養老', 'ヨウロウ', 'making provision for the elderly, making provision for one''s old age, spending one''s old age in comfort, Yōrō era (717.11.17-724.2.4)'), +('敬老', 'ケイロウ', 'respect for the aged'), +('冷', 'レイ', 'refrigerator, cold, cool, cold sake'), +('冷蔵庫', 'レイゾウコ', 'refrigerator, fridge'), +('寒冷', 'カンレイ', 'cold, coldness, chilliness'), +('空冷', 'クウレイ', 'air cooling'), +('連', 'レン', 'two reams (of paper), 1000 sheets (of paper), stanza, verse, tribe (in taxonomy), forecast (bet), bet which predicts the top 2 finishers (i.e. quinella or perfecta bet), party, company, group, set, things strung in a line, e.g. pearls, dried fish, spans of a bridge, etc., falcon'), +('連絡', 'レンラク', 'contacting, (making) contact, getting in touch, communication, correspondence, call, message, connection (with a train, bus, etc.), joining (a railway line, etc.), meeting, connection (between matters, incidents, etc.), relation, link'), +('ソ連', 'ソレン', 'Soviet Union, Union of Soviet Socialist Republics, USSR'), +('旧ソ連', 'キュウソレン', 'former Soviet Union'), +('令', 'レイ', 'command, order, dictation, nth year in the Reiwa era (May 1, 2019-)'), +('令状', 'レイジョウ', 'warrant, summons, written order'), +('命令', 'メイレイ', 'order, command, decree, directive, (software) instruction, statement'), +('指令', 'シレイ', 'orders, instructions, directive, command'), +('労', 'ロウ', 'labor, labour, toil, trouble, pains, work, effort, striving'), +('労働', 'ロウドウ', 'manual labor, manual labour, toil, work, Labour Party'), +('勤労', 'キンロウ', 'labor, labour, exertion, diligent service'), +('就労', 'シュウロウ', 'working, being employed, being hired'), +('量', 'リョウ', 'quantity, amount, volume, capacity, portion (of food), generosity, magnanimity, tolerance, pramana, (in Indian philosophy) means by which one gains accurate and valid knowledge'), +('量産', 'リョウサン', 'mass production'), +('分量', 'ブンリョウ', 'amount, quantity, measuring, weighing'), +('測量', 'ソクリョウ', 'measurement, surveying'), +('録', 'ロク', 'record, transcript'), +('録音', 'ロクオン', '(audio) recording'), +('登録', 'トウロク', 'registration, accession, register, entry, record'), +('収録', 'シュウロク', 'recording (in a book, the minutes, etc.), printing, including (e.g. in a set of complete works), containing, compiling, recording (audio or video)'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(4100, '媛'), +(4101, '塩'), +(4102, '塩'), +(4103, '塩'), +(4104, '塩'), +(4105, '岡'), +(4106, '英'), +(4107, '英'), +(4108, '英'), +(4109, '英'), +(4110, '印'), +(4111, '印'), +(4112, '印'), +(4113, '印'), +(4114, '愛'), +(4115, '愛'), +(4116, '愛'), +(4117, '愛'), +(4118, '栄'), +(4119, '栄'), +(4120, '栄'), +(4121, '栄'), +(4122, '位'), +(4123, '位'), +(4124, '位'), +(4125, '位'), +(4126, '芽'), +(4127, '芽'), +(4128, '芽'), +(4129, '芽'), +(4130, '衣'), +(4131, '衣'), +(4132, '衣'), +(4133, '衣'), +(4134, '衣'), +(4135, '衣'), +(4136, '衣'), +(4137, '衣'), +(4138, '課'), +(4139, '課'), +(4140, '課'), +(4141, '課'), +(4142, '案'), +(4143, '案'), +(4144, '案'), +(4145, '案'), +(4146, '億'), +(4147, '億'), +(4148, '億'), +(4149, '億'), +(4150, '以'), +(4151, '以'), +(4152, '以'), +(4153, '以'), +(4154, '改'), +(4155, '改'), +(4156, '改'), +(4157, '改'), +(4158, '果'), +(4159, '果'), +(4160, '果'), +(4161, '果'), +(4162, '加'), +(4163, '加'), +(4164, '加'), +(4165, '加'), +(4166, '賀'), +(4167, '賀'), +(4168, '賀'), +(4169, '賀'), +(4170, '貨'), +(4171, '貨'), +(4172, '貨'), +(4173, '貨'), +(4174, '械'), +(4175, '械'), +(4176, '街'), +(4177, '街'), +(4178, '街'), +(4179, '街'), +(4180, '街'), +(4181, '街'), +(4182, '覚'), +(4183, '覚'), +(4184, '覚'), +(4185, '覚'), +(4186, '各'), +(4187, '各'), +(4188, '管'), +(4189, '管'), +(4190, '管'), +(4191, '管'), +(4192, '岐'), +(4193, '岐'), +(4194, '岐'), +(4195, '岐'), +(4196, '岐'), +(4197, '岐'), +(4198, '議'), +(4199, '議'), +(4200, '議'), +(4201, '議'), +(4202, '希'), +(4203, '希'), +(4204, '希'), +(4205, '希'), +(4206, '希'), +(4207, '共'), +(4208, '共'), +(4209, '共'), +(4210, '共'), +(4211, '観'), +(4212, '観'), +(4213, '観'), +(4214, '観'), +(4215, '泣'), +(4216, '泣'), +(4217, '泣'), +(4218, '旗'), +(4219, '旗'), +(4220, '旗'), +(4221, '旗'), +(4222, '給'), +(4223, '給'), +(4224, '給'), +(4225, '給'), +(4226, '協'), +(4227, '協'), +(4228, '協'), +(4229, '協'), +(4230, '挙'), +(4231, '挙'), +(4232, '挙'), +(4233, '挙'), +(4234, '季'), +(4235, '季'), +(4236, '季'), +(4237, '季'), +(4238, '官'), +(4239, '官'), +(4240, '官'), +(4241, '官'), +(4242, '鏡'), +(4243, '鏡'), +(4244, '鏡'), +(4245, '鏡'), +(4246, '鏡'), +(4247, '鏡'), +(4248, '関'), +(4249, '関'), +(4250, '関'), +(4251, '関'), +(4252, '願'), +(4253, '願'), +(4254, '願'), +(4255, '願'), +(4256, '求'), +(4257, '求'), +(4258, '求'), +(4259, '求'), +(4260, '求'), +(4261, '求'), +(4262, '求'), +(4263, '求'), +(4264, '機'), +(4265, '機'), +(4266, '機'), +(4267, '機'), +(4268, '潟'), +(4269, '漁'), +(4270, '漁'), +(4271, '漁'), +(4272, '漁'), +(4273, '漁'), +(4274, '漁'), +(4275, '漁'), +(4276, '漁'), +(4277, '害'), +(4278, '害'), +(4279, '害'), +(4280, '害'), +(4281, '完'), +(4282, '完'), +(4283, '完'), +(4284, '完'), +(4285, '器'), +(4286, '器'), +(4287, '器'), +(4288, '器'), +(4289, '競'), +(4290, '競'), +(4291, '競'), +(4292, '競'), +(4293, '好'), +(4294, '好'), +(4295, '好'), +(4296, '好'), +(4297, '験'), +(4298, '験'), +(4299, '験'), +(4300, '験'), +(4301, '験'), +(4302, '験'), +(4303, '験'), +(4304, '功'), +(4305, '功'), +(4306, '功'), +(4307, '功'), +(4308, '功'), +(4309, '功'), +(4310, '群'), +(4311, '群'), +(4312, '群'), +(4313, '群'), +(4314, '建'), +(4315, '建'), +(4316, '建'), +(4317, '建'), +(4318, '建'), +(4319, '建'), +(4320, '径'), +(4321, '径'), +(4322, '径'), +(4323, '径'), +(4324, '郡'), +(4325, '郡'), +(4326, '郡'), +(4327, '郡'), +(4328, '軍'), +(4329, '軍'), +(4330, '軍'), +(4331, '軍'), +(4332, '芸'), +(4333, '芸'), +(4334, '芸'), +(4335, '芸'), +(4336, '芸'), +(4337, '芸'), +(4338, '欠'), +(4339, '欠'), +(4340, '欠'), +(4341, '欠'), +(4342, '欠'), +(4343, '欠'), +(4344, '極'), +(4345, '極'), +(4346, '極'), +(4347, '極'), +(4348, '極'), +(4349, '極'), +(4350, '極'), +(4351, '極'), +(4352, '健'), +(4353, '健'), +(4354, '健'), +(4355, '健'), +(4356, '香'), +(4357, '香'), +(4358, '香'), +(4359, '香'), +(4360, '香'), +(4361, '香'), +(4362, '香'), +(4363, '香'), +(4364, '候'), +(4365, '候'), +(4366, '候'), +(4367, '候'), +(4368, '佐'), +(4369, '佐'), +(4370, '佐'), +(4371, '佐'), +(4372, '熊'), +(4373, '熊'), +(4374, '菜'), +(4375, '菜'), +(4376, '菜'), +(4377, '菜'), +(4378, '結'), +(4379, '結'), +(4380, '結'), +(4381, '結'), +(4382, '結'), +(4383, '結'), +(4384, '最'), +(4385, '最'), +(4386, '訓'), +(4387, '訓'), +(4388, '訓'), +(4389, '訓'), +(4390, '訓'), +(4391, '訓'), +(4392, '差'), +(4393, '差'), +(4394, '差'), +(4395, '差'), +(4396, '材'), +(4397, '材'), +(4398, '材'), +(4399, '材'), +(4400, '札'), +(4401, '札'), +(4402, '札'), +(4403, '札'), +(4404, '景'), +(4405, '景'), +(4406, '景'), +(4407, '景'), +(4408, '崎'), +(4409, '崎'), +(4410, '崎'), +(4411, '崎'), +(4412, '固'), +(4413, '固'), +(4414, '固'), +(4415, '固'), +(4416, '刷'), +(4417, '刷'), +(4418, '刷'), +(4419, '刷'), +(4420, '康'), +(4421, '康'), +(4422, '康'), +(4423, '康'), +(4424, '察'), +(4425, '察'), +(4426, '察'), +(4427, '参'), +(4428, '参'), +(4429, '参'), +(4430, '参'), +(4431, '参'), +(4432, '参'), +(4433, '昨'), +(4434, '昨'), +(4435, '昨'), +(4436, '昨'), +(4437, '散'), +(4438, '散'), +(4439, '散'), +(4440, '散'), +(4441, '産'), +(4442, '産'), +(4443, '産'), +(4444, '産'), +(4445, '松'), +(4446, '松'), +(4447, '松'), +(4448, '松'), +(4449, '種'), +(4450, '種'), +(4451, '種'), +(4452, '種'), +(4453, '笑'), +(4454, '笑'), +(4455, '笑'), +(4456, '笑'), +(4457, '試'), +(4458, '試'), +(4459, '試'), +(4460, '試'), +(4461, '児'), +(4462, '児'), +(4463, '児'), +(4464, '児'), +(4465, '辞'), +(4466, '辞'), +(4467, '辞'), +(4468, '辞'), +(4469, '残'), +(4470, '残'), +(4471, '残'), +(4472, '残'), +(4473, '失'), +(4474, '失'), +(4475, '失'), +(4476, '失'), +(4477, '焼'), +(4478, '焼'), +(4479, '焼'), +(4480, '焼'), +(4481, '祝'), +(4482, '祝'), +(4483, '祝'), +(4484, '祝'), +(4485, '祝'), +(4486, '祝'), +(4487, '唱'), +(4488, '唱'), +(4489, '唱'), +(4490, '唱'), +(4491, '鹿'), +(4492, '鹿'), +(4493, '鹿'), +(4494, '鹿'), +(4495, '治'), +(4496, '治'), +(4497, '治'), +(4498, '治'), +(4499, '治'), +(4500, '治'), +(4501, '治'), +(4502, '治'), +(4503, '初'), +(4504, '初'), +(4505, '初'), +(4506, '初'), +(4507, '司'), +(4508, '司'), +(4509, '司'), +(4510, '司'), +(4511, '周'), +(4512, '周'), +(4513, '周'), +(4514, '周'), +(4515, '借'), +(4516, '借'), +(4517, '借'), +(4518, '借'), +(4519, '氏'), +(4520, '氏'), +(4521, '氏'), +(4522, '氏'), +(4523, '説'), +(4524, '説'), +(4525, '説'), +(4526, '説'), +(4527, '説'), +(4528, '説'), +(4529, '節'), +(4530, '節'), +(4531, '節'), +(4532, '節'), +(4533, '節'), +(4534, '節'), +(4535, '然'), +(4536, '然'), +(4537, '然'), +(4538, '然'), +(4539, '然'), +(4540, '然'), +(4541, '戦'), +(4542, '戦'), +(4543, '戦'), +(4544, '戦'), +(4545, '縄'), +(4546, '縄'), +(4547, '縄'), +(4548, '縄'), +(4549, '臣'), +(4550, '臣'), +(4551, '臣'), +(4552, '臣'), +(4553, '臣'), +(4554, '臣'), +(4555, '城'), +(4556, '城'), +(4557, '城'), +(4558, '城'), +(4559, '城'), +(4560, '城'), +(4561, '浅'), +(4562, '浅'), +(4563, '浅'), +(4564, '清'), +(4565, '清'), +(4566, '清'), +(4567, '清'), +(4568, '清'), +(4569, '清'), +(4570, '清'), +(4571, '清'), +(4572, '清'), +(4573, '滋'), +(4574, '滋'), +(4575, '滋'), +(4576, '滋'), +(4577, '滋'), +(4578, '争'), +(4579, '争'), +(4580, '争'), +(4581, '争'), +(4582, '折'), +(4583, '折'), +(4584, '折'), +(4585, '選'), +(4586, '選'), +(4587, '選'), +(4588, '選'), +(4589, '信'), +(4590, '信'), +(4591, '信'), +(4592, '信'), +(4593, '成'), +(4594, '成'), +(4595, '成'), +(4596, '成'), +(4597, '成'), +(4598, '成'), +(4599, '席'), +(4600, '席'), +(4601, '席'), +(4602, '席'), +(4603, '井'), +(4604, '井'), +(4605, '井'), +(4606, '井'), +(4607, '巣'), +(4608, '巣'), +(4609, '巣'), +(4610, '巣'), +(4611, '省'), +(4612, '省'), +(4613, '省'), +(4614, '省'), +(4615, '省'), +(4616, '省'), +(4617, '省'), +(4618, '省'), +(4619, '順'), +(4620, '順'), +(4621, '順'), +(4622, '順'), +(4623, '照'), +(4624, '照'), +(4625, '照'), +(4626, '照'), +(4627, '束'), +(4628, '束'), +(4629, '束'), +(4630, '束'), +(4631, '積'), +(4632, '積'), +(4633, '積'), +(4634, '積'), +(4635, '側'), +(4636, '側'), +(4637, '側'), +(4638, '側'), +(4639, '隊'), +(4640, '隊'), +(4641, '隊'), +(4642, '隊'), +(4643, '帯'), +(4644, '帯'), +(4645, '帯'), +(4646, '帯'), +(4647, '卒'), +(4648, '卒'), +(4649, '卒'), +(4650, '卒'), +(4651, '静'), +(4652, '静'), +(4653, '静'), +(4654, '静'), +(4655, '静'), +(4656, '静'), +(4657, '静'), +(4658, '静'), +(4659, '倉'), +(4660, '倉'), +(4661, '倉'), +(4662, '倉'), +(4663, '達'), +(4664, '達'), +(4665, '達'), +(4666, '達'), +(4667, '達'), +(4668, '達'), +(4669, '達'), +(4670, '続'), +(4671, '続'), +(4672, '続'), +(4673, '続'), +(4674, '続'), +(4675, '続'), +(4676, '孫'), +(4677, '孫'), +(4678, '孫'), +(4679, '孫'), +(4680, '置'), +(4681, '置'), +(4682, '置'), +(4683, '置'), +(4684, '仲'), +(4685, '仲'), +(4686, '仲'), +(4687, '仲'), +(4688, '単'), +(4689, '単'), +(4690, '単'), +(4691, '単'), +(4692, '底'), +(4693, '底'), +(4694, '底'), +(4695, '底'), +(4696, '兆'), +(4697, '兆'), +(4698, '兆'), +(4699, '兆'), +(4700, '低'), +(4701, '低'), +(4702, '低'), +(4703, '低'), +(4704, '典'), +(4705, '典'), +(4706, '典'), +(4707, '典'), +(4708, '典'), +(4709, '典'), +(4710, '伝'), +(4711, '伝'), +(4712, '伝'), +(4713, '伝'), +(4714, '伝'), +(4715, '伝'), +(4716, '阪'), +(4717, '阪'), +(4718, '阪'), +(4719, '阪'), +(4720, '奈'), +(4721, '奈'), +(4722, '奈'), +(4723, '奈'), +(4724, '標'), +(4725, '標'), +(4726, '標'), +(4727, '標'), +(4728, '的'), +(4729, '的'), +(4730, '的'), +(4731, '的'), +(4732, '博'), +(4733, '博'), +(4734, '博'), +(4735, '博'), +(4736, '博'), +(4737, '博'), +(4738, '博'), +(4739, '博'), +(4740, '梅'), +(4741, '梅'), +(4742, '梅'), +(4743, '梅'), +(4744, '飛'), +(4745, '飛'), +(4746, '飛'), +(4747, '飛'), +(4748, '票'), +(4749, '票'), +(4750, '票'), +(4751, '票'), +(4752, '沖'), +(4753, '沖'), +(4754, '沖'), +(4755, '不'), +(4756, '不'), +(4757, '不'), +(4758, '不'), +(4759, '不'), +(4760, '働'), +(4761, '働'), +(4762, '梨'), +(4763, '梨'), +(4764, '梨'), +(4765, '梨'), +(4766, '特'), +(4767, '特'), +(4768, '特'), +(4769, '特'), +(4770, '灯'), +(4771, '灯'), +(4772, '灯'), +(4773, '灯'), +(4774, '必'), +(4775, '必'), +(4776, '熱'), +(4777, '熱'), +(4778, '熱'), +(4779, '熱'), +(4780, '府'), +(4781, '府'), +(4782, '府'), +(4783, '府'), +(4784, '徒'), +(4785, '徒'), +(4786, '徒'), +(4787, '徒'), +(4788, '念'), +(4789, '念'), +(4790, '念'), +(4791, '念'), +(4792, '努'), +(4793, '努'), +(4794, '阜'), +(4795, '副'), +(4796, '副'), +(4797, '副'), +(4798, '副'), +(4799, '富'), +(4800, '富'), +(4801, '富'), +(4802, '富'), +(4803, '富'), +(4804, '富'), +(4805, '夫'), +(4806, '夫'), +(4807, '夫'), +(4808, '夫'), +(4809, '夫'), +(4810, '夫'), +(4811, '夫'), +(4812, '夫'), +(4813, '夫'), +(4814, '夫'), +(4815, '夫'), +(4816, '夫'), +(4817, '敗'), +(4818, '敗'), +(4819, '敗'), +(4820, '敗'), +(4821, '別'), +(4822, '別'), +(4823, '別'), +(4824, '別'), +(4825, '兵'), +(4826, '兵'), +(4827, '兵'), +(4828, '兵'), +(4829, '兵'), +(4830, '兵'), +(4831, '兵'), +(4832, '兵'), +(4833, '辺'), +(4834, '辺'), +(4835, '辺'), +(4836, '辺'), +(4837, '付'), +(4838, '付'), +(4839, '付'), +(4840, '付'), +(4841, '飯'), +(4842, '飯'), +(4843, '飯'), +(4844, '飯'), +(4845, '徳'), +(4846, '徳'), +(4847, '徳'), +(4848, '徳'), +(4849, '便'), +(4850, '便'), +(4851, '便'), +(4852, '便'), +(4853, '便'), +(4854, '便'), +(4855, '便'), +(4856, '便'), +(4857, '変'), +(4858, '変'), +(4859, '変'), +(4860, '変'), +(4861, '包'), +(4862, '包'), +(4863, '包'), +(4864, '包'), +(4865, '望'), +(4866, '望'), +(4867, '望'), +(4868, '望'), +(4869, '望'), +(4870, '望'), +(4871, '法'), +(4872, '法'), +(4873, '法'), +(4874, '法'), +(4875, '法'), +(4876, '法'), +(4877, '法'), +(4878, '法'), +(4879, '牧'), +(4880, '牧'), +(4881, '牧'), +(4882, '牧'), +(4883, '利'), +(4884, '利'), +(4885, '利'), +(4886, '利'), +(4887, '輪'), +(4888, '輪'), +(4889, '輪'), +(4890, '輪'), +(4891, '無'), +(4892, '無'), +(4893, '無'), +(4894, '無'), +(4895, '無'), +(4896, '無'), +(4897, '勇'), +(4898, '勇'), +(4899, '勇'), +(4900, '勇'), +(4901, '浴'), +(4902, '浴'), +(4903, '浴'), +(4904, '浴'), +(4905, '末'), +(4906, '末'), +(4907, '末'), +(4908, '末'), +(4909, '末'), +(4910, '末'), +(4911, '満'), +(4912, '満'), +(4913, '満'), +(4914, '満'), +(4915, '約'), +(4916, '約'), +(4917, '約'), +(4918, '約'), +(4919, '要'), +(4920, '要'), +(4921, '要'), +(4922, '要'), +(4923, '陸'), +(4924, '陸'), +(4925, '陸'), +(4926, '陸'), +(4927, '陸'), +(4928, '陸'), +(4929, '陸'), +(4930, '陸'), +(4931, '類'), +(4932, '類'), +(4933, '類'), +(4934, '類'), +(4935, '良'), +(4936, '良'), +(4937, '良'), +(4938, '良'), +(4939, '養'), +(4940, '養'), +(4941, '養'), +(4942, '養'), +(4943, '料'), +(4944, '料'), +(4945, '料'), +(4946, '料'), +(4947, '民'), +(4948, '民'), +(4949, '民'), +(4950, '民'), +(4951, '未'), +(4952, '未'), +(4953, '未'), +(4954, '未'), +(4955, '未'), +(4956, '未'), +(4957, '例'), +(4958, '例'), +(4959, '例'), +(4960, '例'), +(4961, '老'), +(4962, '老'), +(4963, '老'), +(4964, '老'), +(4965, '冷'), +(4966, '冷'), +(4967, '冷'), +(4968, '冷'), +(4969, '連'), +(4970, '連'), +(4971, '連'), +(4972, '連'), +(4973, '令'), +(4974, '令'), +(4975, '令'), +(4976, '令'), +(4977, '労'), +(4978, '労'), +(4979, '労'), +(4980, '労'), +(4981, '量'), +(4982, '量'), +(4983, '量'), +(4984, '量'), +(4985, '録'), +(4986, '録'), +(4987, '録'), +(4988, '録'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("ひめ"), +("しお"), +("おか"), +("はなぶさ"), +("いばら"), +("かや"), +("くさぶき"), +("しるし"), +("-じるし"), +("しる.す"), +("いと.しい"), +("かな.しい"), +("め.でる"), +("お.しむ"), +("まな"), +("さか.える"), +("は.え"), +("-ば.え"), +("は.える"), +("え"), +("くらい"), +("ぐらい"), +("め"), +("ころも"), +("きぬ"), +("-ぎ"), +("つくえ"), +("もっ.て"), +("あらた.める"), +("あらた.まる"), +("は.たす"), +("はた.す"), +("-は.たす"), +("は.てる"), +("-は.てる"), +("は.て"), +("くわ.える"), +("くわ.わる"), +("たから"), +("かせ"), +("まち"), +("おぼ.える"), +("さ.ます"), +("さ.める"), +("さと.る"), +("おのおの"), +("くだ"), +("まれ"), +("こいねが.う"), +("とも"), +("とも.に"), +("-ども"), +("み.る"), +("しめ.す"), +("な.く"), +("はた"), +("たま.う"), +("たも.う"), +("-たま.え"), +("あ.げる"), +("あ.がる"), +("こぞ.る"), +("かがみ"), +("せき"), +("-ぜき"), +("かか.わる"), +("からくり"), +("かんぬき"), +("ねが.う"), +("-ねがい"), +("もと.める"), +("はた"), +("かた"), +("-がた"), +("あさ.る"), +("うつわ"), +("きそ.う"), +("せ.る"), +("くら.べる"), +("この.む"), +("す.く"), +("よ.い"), +("い.い"), +("あかし"), +("しるし"), +("ため.す"), +("ためし"), +("いさお"), +("む.れる"), +("む.れ"), +("むら"), +("むら.がる"), +("た.てる"), +("た.て"), +("-だ.て"), +("た.つ"), +("みち"), +("こみち"), +("さしわたし"), +("ただちに"), +("こおり"), +("いくさ"), +("う.える"), +("のり"), +("わざ"), +("か.ける"), +("か.く"), +("きわ.める"), +("きわ.まる"), +("きわ.まり"), +("きわ.み"), +("き.める"), +("-ぎ.め"), +("き.まる"), +("すこ.やか"), +("か"), +("かお.り"), +("かお.る"), +("そうろう"), +("くま"), +("な"), +("むす.ぶ"), +("ゆ.う"), +("ゆ.わえる"), +("もっと.も"), +("つま"), +("おし.える"), +("よ.む"), +("くん.ずる"), +("さ.す"), +("さ.し"), +("さき"), +("さい"), +("みさき"), +("ふだ"), +("さき"), +("さい"), +("みさき"), +("かた.める"), +("かた.まる"), +("かた.まり"), +("かた.い"), +("す.る"), +("-ず.り"), +("-ずり"), +("は.く"), +("まい.る"), +("まい-"), +("まじわる"), +("みつ"), +("ち.る"), +("ち.らす"), +("-ち.らす"), +("ち.らかす"), +("ち.らかる"), +("ち.らばる"), +("ばら"), +("ばら.ける"), +("う.む"), +("う.まれる"), +("うぶ-"), +("む.す"), +("まつ"), +("たね"), +("-ぐさ"), +("わら.う"), +("え.む"), +("こころ.みる"), +("ため.す"), +("こ"), +("-こ"), +("-っこ"), +("や.める"), +("いな.む"), +("のこ.る"), +("のこ.す"), +("そこな.う"), +("のこ.り"), +("うしな.う"), +("う.せる"), +("や.く"), +("や.き"), +("や.き-"), +("-や.き"), +("や.ける"), +("いわ.う"), +("とな.える"), +("しか"), +("か"), +("おさ.める"), +("おさ.まる"), +("なお.る"), +("なお.す"), +("はじ.め"), +("はじ.めて"), +("はつ"), +("はつ-"), +("うい-"), +("-そ.める"), +("-ぞ.め"), +("つかさど.る"), +("まわ.り"), +("か.りる"), +("うじ"), +("-うじ"), +("と.く"), +("ふし"), +("-ぶし"), +("のっと"), +("しか"), +("しか.り"), +("しか.し"), +("さ"), +("いくさ"), +("たたか.う"), +("おのの.く"), +("そよ.ぐ"), +("わなな.く"), +("なわ"), +("ただ.す"), +("しろ"), +("あさ.い"), +("きよ.い"), +("きよ.まる"), +("きよ.める"), +("あらそ.う"), +("いか.でか"), +("お.る"), +("おり"), +("お.り"), +("-お.り"), +("お.れる"), +("えら.ぶ"), +("え.る"), +("よ.る"), +("な.る"), +("な.す"), +("-な.す"), +("むしろ"), +("い"), +("す"), +("す.くう"), +("かえり.みる"), +("はぶ.く"), +("て.る"), +("て.らす"), +("て.れる"), +("たば"), +("たば.ねる"), +("つか"), +("つか.ねる"), +("つ.む"), +("-づ.み"), +("つ.もる"), +("つ.もり"), +("かわ"), +("がわ"), +("そば"), +("お.びる"), +("おび"), +("そっ.する"), +("お.える"), +("お.わる"), +("ついに"), +("にわか"), +("しず-"), +("しず.か"), +("しず.まる"), +("しず.める"), +("くら"), +("-たち"), +("つづ.く"), +("つづ.ける"), +("つぐ.ない"), +("まご"), +("お.く"), +("-お.き"), +("なか"), +("ひとえ"), +("そこ"), +("きざ.す"), +("きざ.し"), +("ひく.い"), +("ひく.める"), +("ひく.まる"), +("ふみ"), +("のり"), +("つた.わる"), +("つた.える"), +("つた.う"), +("つだ.う"), +("-づた.い"), +("つて"), +("さか"), +("いかん"), +("からなし"), +("しるべ"), +("しるし"), +("まと"), +("うめ"), +("と.ぶ"), +("と.ばす"), +("-と.ばす"), +("おき"), +("おきつ"), +("ちゅう.する"), +("わく"), +("はたら.く"), +("なし"), +("ひ"), +("ほ-"), +("ともしび"), +("とも.す"), +("あかり"), +("かなら.ず"), +("あつ.い"), +("とち"), +("いたずら"), +("あだ"), +("つと.める"), +("と.む"), +("とみ"), +("おっと"), +("それ"), +("やぶ.れる"), +("わか.れる"), +("わ.ける"), +("つわもの"), +("あた.り"), +("ほと.り"), +("-べ"), +("つ.ける"), +("-つ.ける"), +("-づ.ける"), +("つ.け"), +("つ.け-"), +("-つ.け"), +("-づ.け"), +("-づけ"), +("つ.く"), +("-づ.く"), +("つ.き"), +("-つ.き"), +("-つき"), +("-づ.き"), +("-づき"), +("めし"), +("たよ.り"), +("か.わる"), +("か.わり"), +("か.える"), +("つつ.む"), +("くる.む"), +("のぞ.む"), +("もち"), +("のり"), +("まき"), +("き.く"), +("わ"), +("な.い"), +("いさ.む"), +("あ.びる"), +("あ.びせる"), +("すえ"), +("うら"), +("うれ"), +("み.ちる"), +("み.つ"), +("み.たす"), +("つづ.まる"), +("つづ.める"), +("つづま.やか"), +("い.る"), +("かなめ"), +("おか"), +("たぐ.い"), +("よ.い"), +("-よ.い"), +("い.い"), +("-い.い"), +("やしな.う"), +("たみ"), +("いま.だ"), +("ま.だ"), +("ひつじ"), +("たと.える"), +("お.いる"), +("ふ.ける"), +("つめ.たい"), +("ひ.える"), +("ひ.や"), +("ひ.ややか"), +("ひ.やす"), +("ひ.やかす"), +("さ.める"), +("さ.ます"), +("つら.なる"), +("つら.ねる"), +("つ.れる"), +("-づ.れ"), +("ろう.する"), +("いたわ.る"), +("いた.ずき"), +("ねぎら"), +("つか.れる"), +("ねぎら.う"), +("はか.る"), +("しる.す"), +("と.る"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('媛', 'ひめ'), +('塩', 'しお'), +('岡', 'おか'), +('英', 'はなぶさ'), +('茨', 'いばら'), +('茨', 'かや'), +('茨', 'くさぶき'), +('印', 'しるし'), +('印', '-じるし'), +('印', 'しる.す'), +('愛', 'いと.しい'), +('愛', 'かな.しい'), +('愛', 'め.でる'), +('愛', 'お.しむ'), +('愛', 'まな'), +('栄', 'さか.える'), +('栄', 'は.え'), +('栄', '-ば.え'), +('栄', 'は.える'), +('栄', 'え'), +('位', 'くらい'), +('位', 'ぐらい'), +('芽', 'め'), +('衣', 'ころも'), +('衣', 'きぬ'), +('衣', '-ぎ'), +('案', 'つくえ'), +('以', 'もっ.て'), +('改', 'あらた.める'), +('改', 'あらた.まる'), +('果', 'は.たす'), +('果', 'はた.す'), +('果', '-は.たす'), +('果', 'は.てる'), +('果', '-は.てる'), +('果', 'は.て'), +('加', 'くわ.える'), +('加', 'くわ.わる'), +('貨', 'たから'), +('械', 'かせ'), +('街', 'まち'), +('覚', 'おぼ.える'), +('覚', 'さ.ます'), +('覚', 'さ.める'), +('覚', 'さと.る'), +('各', 'おのおの'), +('管', 'くだ'), +('希', 'まれ'), +('希', 'こいねが.う'), +('共', 'とも'), +('共', 'とも.に'), +('共', '-ども'), +('観', 'み.る'), +('観', 'しめ.す'), +('泣', 'な.く'), +('旗', 'はた'), +('給', 'たま.う'), +('給', 'たも.う'), +('給', '-たま.え'), +('挙', 'あ.げる'), +('挙', 'あ.がる'), +('挙', 'こぞ.る'), +('鏡', 'かがみ'), +('関', 'せき'), +('関', '-ぜき'), +('関', 'かか.わる'), +('関', 'からくり'), +('関', 'かんぬき'), +('願', 'ねが.う'), +('願', '-ねがい'), +('求', 'もと.める'), +('機', 'はた'), +('潟', 'かた'), +('潟', '-がた'), +('漁', 'あさ.る'), +('器', 'うつわ'), +('競', 'きそ.う'), +('競', 'せ.る'), +('競', 'くら.べる'), +('好', 'この.む'), +('好', 'す.く'), +('好', 'よ.い'), +('好', 'い.い'), +('験', 'あかし'), +('験', 'しるし'), +('験', 'ため.す'), +('験', 'ためし'), +('功', 'いさお'), +('群', 'む.れる'), +('群', 'む.れ'), +('群', 'むら'), +('群', 'むら.がる'), +('建', 'た.てる'), +('建', 'た.て'), +('建', '-だ.て'), +('建', 'た.つ'), +('径', 'みち'), +('径', 'こみち'), +('径', 'さしわたし'), +('径', 'ただちに'), +('郡', 'こおり'), +('軍', 'いくさ'), +('芸', 'う.える'), +('芸', 'のり'), +('芸', 'わざ'), +('欠', 'か.ける'), +('欠', 'か.く'), +('極', 'きわ.める'), +('極', 'きわ.まる'), +('極', 'きわ.まり'), +('極', 'きわ.み'), +('極', 'き.める'), +('極', '-ぎ.め'), +('極', 'き.まる'), +('健', 'すこ.やか'), +('香', 'か'), +('香', 'かお.り'), +('香', 'かお.る'), +('候', 'そうろう'), +('熊', 'くま'), +('菜', 'な'), +('結', 'むす.ぶ'), +('結', 'ゆ.う'), +('結', 'ゆ.わえる'), +('最', 'もっと.も'), +('最', 'つま'), +('訓', 'おし.える'), +('訓', 'よ.む'), +('訓', 'くん.ずる'), +('差', 'さ.す'), +('差', 'さ.し'), +('埼', 'さき'), +('埼', 'さい'), +('埼', 'みさき'), +('札', 'ふだ'), +('崎', 'さき'), +('崎', 'さい'), +('崎', 'みさき'), +('固', 'かた.める'), +('固', 'かた.まる'), +('固', 'かた.まり'), +('固', 'かた.い'), +('刷', 'す.る'), +('刷', '-ず.り'), +('刷', '-ずり'), +('刷', 'は.く'), +('参', 'まい.る'), +('参', 'まい-'), +('参', 'まじわる'), +('参', 'みつ'), +('散', 'ち.る'), +('散', 'ち.らす'), +('散', '-ち.らす'), +('散', 'ち.らかす'), +('散', 'ち.らかる'), +('散', 'ち.らばる'), +('散', 'ばら'), +('散', 'ばら.ける'), +('産', 'う.む'), +('産', 'う.まれる'), +('産', 'うぶ-'), +('産', 'む.す'), +('松', 'まつ'), +('種', 'たね'), +('種', '-ぐさ'), +('笑', 'わら.う'), +('笑', 'え.む'), +('試', 'こころ.みる'), +('試', 'ため.す'), +('児', 'こ'), +('児', '-こ'), +('児', '-っこ'), +('辞', 'や.める'), +('辞', 'いな.む'), +('残', 'のこ.る'), +('残', 'のこ.す'), +('残', 'そこな.う'), +('残', 'のこ.り'), +('失', 'うしな.う'), +('失', 'う.せる'), +('焼', 'や.く'), +('焼', 'や.き'), +('焼', 'や.き-'), +('焼', '-や.き'), +('焼', 'や.ける'), +('祝', 'いわ.う'), +('唱', 'とな.える'), +('鹿', 'しか'), +('鹿', 'か'), +('治', 'おさ.める'), +('治', 'おさ.まる'), +('治', 'なお.る'), +('治', 'なお.す'), +('初', 'はじ.め'), +('初', 'はじ.めて'), +('初', 'はつ'), +('初', 'はつ-'), +('初', 'うい-'), +('初', '-そ.める'), +('初', '-ぞ.め'), +('司', 'つかさど.る'), +('周', 'まわ.り'), +('借', 'か.りる'), +('氏', 'うじ'), +('氏', '-うじ'), +('説', 'と.く'), +('節', 'ふし'), +('節', '-ぶし'), +('節', 'のっと'), +('然', 'しか'), +('然', 'しか.り'), +('然', 'しか.し'), +('然', 'さ'), +('戦', 'いくさ'), +('戦', 'たたか.う'), +('戦', 'おのの.く'), +('戦', 'そよ.ぐ'), +('戦', 'わなな.く'), +('縄', 'なわ'), +('縄', 'ただ.す'), +('城', 'しろ'), +('浅', 'あさ.い'), +('清', 'きよ.い'), +('清', 'きよ.まる'), +('清', 'きよ.める'), +('争', 'あらそ.う'), +('争', 'いか.でか'), +('折', 'お.る'), +('折', 'おり'), +('折', 'お.り'), +('折', '-お.り'), +('折', 'お.れる'), +('選', 'えら.ぶ'), +('選', 'え.る'), +('選', 'よ.る'), +('成', 'な.る'), +('成', 'な.す'), +('成', '-な.す'), +('席', 'むしろ'), +('井', 'い'), +('巣', 'す'), +('巣', 'す.くう'), +('省', 'かえり.みる'), +('省', 'はぶ.く'), +('照', 'て.る'), +('照', 'て.らす'), +('照', 'て.れる'), +('束', 'たば'), +('束', 'たば.ねる'), +('束', 'つか'), +('束', 'つか.ねる'), +('積', 'つ.む'), +('積', '-づ.み'), +('積', 'つ.もる'), +('積', 'つ.もり'), +('側', 'かわ'), +('側', 'がわ'), +('側', 'そば'), +('帯', 'お.びる'), +('帯', 'おび'), +('卒', 'そっ.する'), +('卒', 'お.える'), +('卒', 'お.わる'), +('卒', 'ついに'), +('卒', 'にわか'), +('静', 'しず-'), +('静', 'しず.か'), +('静', 'しず.まる'), +('静', 'しず.める'), +('倉', 'くら'), +('達', '-たち'), +('続', 'つづ.く'), +('続', 'つづ.ける'), +('続', 'つぐ.ない'), +('孫', 'まご'), +('置', 'お.く'), +('置', '-お.き'), +('仲', 'なか'), +('単', 'ひとえ'), +('底', 'そこ'), +('兆', 'きざ.す'), +('兆', 'きざ.し'), +('低', 'ひく.い'), +('低', 'ひく.める'), +('低', 'ひく.まる'), +('典', 'ふみ'), +('典', 'のり'), +('伝', 'つた.わる'), +('伝', 'つた.える'), +('伝', 'つた.う'), +('伝', 'つだ.う'), +('伝', '-づた.い'), +('伝', 'つて'), +('阪', 'さか'), +('奈', 'いかん'), +('奈', 'からなし'), +('標', 'しるべ'), +('標', 'しるし'), +('的', 'まと'), +('梅', 'うめ'), +('飛', 'と.ぶ'), +('飛', 'と.ばす'), +('飛', '-と.ばす'), +('沖', 'おき'), +('沖', 'おきつ'), +('沖', 'ちゅう.する'), +('沖', 'わく'), +('働', 'はたら.く'), +('梨', 'なし'), +('灯', 'ひ'), +('灯', 'ほ-'), +('灯', 'ともしび'), +('灯', 'とも.す'), +('灯', 'あかり'), +('必', 'かなら.ず'), +('熱', 'あつ.い'), +('栃', 'とち'), +('徒', 'いたずら'), +('徒', 'あだ'), +('努', 'つと.める'), +('富', 'と.む'), +('富', 'とみ'), +('夫', 'おっと'), +('夫', 'それ'), +('敗', 'やぶ.れる'), +('別', 'わか.れる'), +('別', 'わ.ける'), +('兵', 'つわもの'), +('辺', 'あた.り'), +('辺', 'ほと.り'), +('辺', '-べ'), +('付', 'つ.ける'), +('付', '-つ.ける'), +('付', '-づ.ける'), +('付', 'つ.け'), +('付', 'つ.け-'), +('付', '-つ.け'), +('付', '-づ.け'), +('付', '-づけ'), +('付', 'つ.く'), +('付', '-づ.く'), +('付', 'つ.き'), +('付', '-つ.き'), +('付', '-つき'), +('付', '-づ.き'), +('付', '-づき'), +('飯', 'めし'), +('便', 'たよ.り'), +('変', 'か.わる'), +('変', 'か.わり'), +('変', 'か.える'), +('包', 'つつ.む'), +('包', 'くる.む'), +('望', 'のぞ.む'), +('望', 'もち'), +('法', 'のり'), +('牧', 'まき'), +('利', 'き.く'), +('輪', 'わ'), +('無', 'な.い'), +('勇', 'いさ.む'), +('浴', 'あ.びる'), +('浴', 'あ.びせる'), +('末', 'すえ'), +('末', 'うら'), +('末', 'うれ'), +('満', 'み.ちる'), +('満', 'み.つ'), +('満', 'み.たす'), +('約', 'つづ.まる'), +('約', 'つづ.める'), +('約', 'つづま.やか'), +('要', 'い.る'), +('要', 'かなめ'), +('陸', 'おか'), +('類', 'たぐ.い'), +('良', 'よ.い'), +('良', '-よ.い'), +('良', 'い.い'), +('良', '-い.い'), +('養', 'やしな.う'), +('民', 'たみ'), +('未', 'いま.だ'), +('未', 'ま.だ'), +('未', 'ひつじ'), +('例', 'たと.える'), +('老', 'お.いる'), +('老', 'ふ.ける'), +('冷', 'つめ.たい'), +('冷', 'ひ.える'), +('冷', 'ひ.や'), +('冷', 'ひ.ややか'), +('冷', 'ひ.やす'), +('冷', 'ひ.やかす'), +('冷', 'さ.める'), +('冷', 'さ.ます'), +('連', 'つら.なる'), +('連', 'つら.ねる'), +('連', 'つ.れる'), +('連', '-づ.れ'), +('労', 'ろう.する'), +('労', 'いたわ.る'), +('労', 'いた.ずき'), +('労', 'ねぎら'), +('労', 'つか.れる'), +('労', 'ねぎら.う'), +('量', 'はか.る'), +('録', 'しる.す'), +('録', 'と.る'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('姫', 'ひめ', 'young lady of noble birth, princess (esp. in Western contexts, tales, etc.), girl, small, cute, lesser (in names of species), prostitute'), +('愛媛', 'えひめ', 'Ehime (prefecture)'), +('塩', 'しお', 'salt, common salt, table salt, sodium chloride, hardship, toil, trouble, saltiness, cold, unwelcoming, indifferent'), +('塩辛い', 'しおからい', 'salty (taste), briny'), +('岩塩', 'がんえん', 'halite, rock salt'), +('手塩', 'てしお', 'table salt, small plate'), +('丘', 'おか', 'hill, height, knoll, rising ground, bonus points awarded to the winner at the end of a game'), +('岡目八目', 'おかめはちもく', 'bystander''s vantage point, outsider''s better grasp of the situation, onlookers see more of the game than the players do, people watching a game of go see 8 moves further ahead'), +('盛岡', 'もりおか', 'Morioka (city in Iwate)'), +('花房', 'はなぶさ', 'calyx, corolla'), +('茨', 'いばら', 'thorny shrub, wild rose, briar, thorn, cusp'), +('茨垣', 'いばらがき', 'thorn hedge'), +('野薔薇', 'のいばら', 'multiflora rose (Rosa multiflora), baby rose, Japanese rose'), +('猿捕茨', 'さるとりいばら', 'Smilax china (species of sarsaparilla)'), +('印', 'しるし', 'mark, sign, symbol, emblem, badge, crest, flag, evidence, proof, token (of gratitude, affection, etc.)'), +('印半纏', 'しるしばんてん', 'livery coat'), +('感謝の印', 'かんしゃのしるし', 'token of appreciation'), +('印す', 'しるす', 'to leave (a mark, trace, etc.), to print, to stamp, to be a sign of, to be an omen for'), +('愛しい', 'いとしい', 'lovely, dear, beloved, darling, dearest, pitiable, pitiful'), +('悲しい', 'かなしい', 'sad, miserable, unhappy, sorrowful, sad, lamentable, deplorable, grievous'), +('愛でる', 'めでる', 'to love, to cherish, to admire, to appreciate'), +('惜しむ', 'おしむ', 'to be frugal, to be sparing, to value, to hold dear, to regret (e.g. a loss), to feel sorry (for), to be unwilling, to be reluctant'), +('愛', 'まな', 'beloved, dear'), +('愛弟子', 'まなでし', 'favorite pupil, favourite pupil, teacher''s pet'), +('栄える', 'さかえる', 'to prosper, to flourish'), +('栄え', 'はえ', 'glory, splendour, honour'), +('映える', 'はえる', 'to shine, to glow, to look attractive, to look nice, to be set off (by)'), +('映える', 'はえる', 'to shine, to glow, to look attractive, to look nice, to be set off (by)'), +('栄', 'えい', 'honor, honour, glory, prosperity'), +('栄養', 'えいよう', 'nutrition, nourishment'), +('位', 'くらい', 'throne, crown, (nobleman''s) seat, government position, court rank, social standing, rank, class, echelon, rung, grade (of quality, etc.), level, tier, rank, position of a figure (e.g. tens, thousands), digit, (decimal) place, degree, extent, amount'), +('位する', 'くらいする', 'to rank (as), to occupy (a position), to be located (in), to be situated'), +('これ位', 'これくらい', 'this much, this amount'), +('この位', 'このくらい', 'this much, this amount'), +('これ位', 'これくらい', 'this much, this amount'), +('この位', 'このくらい', 'this much, this amount'), +('芽', 'め', 'sprout, shoot, bud, germinal disk (in an egg)'), +('目出度い', 'めでたい', 'happy, auspicious, propitious, joyous, naive'), +('若芽', 'わかめ', 'sprouts, new shoots, young buds'), +('腋芽', 'えきが', 'axillary bud, lateral bud'), +('衣', 'ころも', 'clothes, garment, gown, robe, coating (e.g. glaze, batter, icing)'), +('衣替え', 'ころもがえ', 'seasonal change of clothing, changing one''s dress for the season, renovation, facelift, redesign, redecoration, new appearance, fresh look'), +('砂糖の衣', 'さとうのころも', 'frosting (e.g. on a cake), icing'), +('紅葉の衣', 'もみじのころも', 'comparing beautiful autumn leaves to a garment'), +('衣', 'きぬ', 'clothing, garment, dress'), +('如月', 'きさらぎ', 'second month of the lunar calendar'), +('白衣', 'はくい', 'white clothes, white robe, white gown (worn by doctors, chemists, etc.), commoner without rank (in ancient China), layperson'), +('机', 'つくえ', 'desk'), +('八足の机', 'やつあしのつくえ', 'eight-legged table (used as a stand for religious offerings, etc.)'), +('以て', 'もって', 'with, by, by means of, because of, on account of, for, due to, on (a day, date), at (a time), as of (e.g. today), adds emphasis to preceding word, in addition (to being), moreover, as well as, and, therefore, and so, hence'), +('以ての外', 'もってのほか', 'absurd, unreasonable'), +('改める', 'あらためる', 'to change, to alter, to revise, to replace, to reform, to correct, to mend, to improve, to examine, to check, to inspect, to do properly, to do formally'), +('改まる', 'あらたまる', 'to be renewed, to change, to be improved, to be reformed, to be revised, to be corrected, to stand on ceremony, to be formal, to take a turn for the worse (of an illness), to take a serious turn'), +('果たす', 'はたす', 'to accomplish, to achieve, to carry out, to fulfill, to fulfil, to realize, to execute, to perform, to do, to do ... completely, to do ... entirely'), +('果たす', 'はたす', 'to accomplish, to achieve, to carry out, to fulfill, to fulfil, to realize, to execute, to perform, to do, to do ... completely, to do ... entirely'), +('果てる', 'はてる', 'to end, to be finished, to be exhausted, to die, to perish, to do utterly, to do completely'), +('果て', 'はて', 'the end, the extremity, the limit, the limits, the result'), +('果てしない', 'はてしない', 'endless, boundless, everlasting'), +('加える', 'くわえる', 'to add, to add up, to sum up, to append, to annex, to increase, to gather (e.g. speed), to pick up, to include, to count in, to let join, to inflict (damage), to deal, to give'), +('加わる', 'くわわる', 'to be added to, to be appended, to join in (e.g. a group of friends), to participate, to increase (e.g. heat), to gain in (e.g. influence), to grow, to gather (speed), to be applied (e.g. heat, pressure), to be exerted'), +('宝', 'たから', 'treasure'), +('足かせ', 'あしかせ', 'fetters, shackles, hobbles, encumbrance, hindrance, burden, trap'), +('手かせ', 'てかせ', 'handcuffs'), +('町', 'まち', 'town, block, neighbourhood, neighborhood, downtown, main street, street, road, 109.09 m, 0.99 hectares'), +('街角', 'まちかど', 'street corner'), +('眠らない街', 'ねむらないまち', 'city that never sleeps'), +('街々', 'まちまち', 'streets'), +('覚える', 'おぼえる', 'to memorize, to memorise, to commit to memory, to learn by heart, to bear in mind, to remember, to learn, to pick up, to acquire, to feel, to think, to regard'), +('覚ます', 'さます', 'to awaken, to arouse from sleep, to bring to one''s senses, to disabuse (someone of), to sober up, to dampen, to throw a damper on, to spoil'), +('覚める', 'さめる', 'to wake, to wake up, to become sober, to sober up, to regain consciousness (e.g. after anaesthesia), to come to one''s senses, to be disillusioned'), +('悟る', 'さとる', 'to perceive, to sense, to discern, to understand, to comprehend, to realize, to attain enlightenment'), +('各々', 'おのおの', 'each, you (plural)'), +('各方', 'おのおのがた', 'all of you (pronoun)'), +('管', 'かん', 'pipe, tube'), +('管狐', 'くだぎつね', 'kuda-gitsune, pipe fox, fox-like spirit kept inside a bamboo tube and used by its master to perform divinations and curses, stoat'), +('手練手管', 'てれんてくだ', 'wiles, art of coaxing'), +('手管', 'てくだ', 'wiles, trick, artifice, coquetry, lover (male) (esp. of a prostitute)'), +('稀', 'まれ', 'rare, seldom'), +('類稀', 'たぐいまれ', 'unique, rare, exceptional, unparalleled, incomparable'), +('ごく稀', 'ごくまれ', 'extremely rare'), +('希う', 'こいねがう', 'to beg, to request, to beseech, to implore, to entreat'), +('共', 'とも', 'together with, same, both, all, neither, none, including ...'), +('共に', 'ともに', 'together, jointly, at the same time, with, as ..., including, along with, both'), +('送料共', 'そうりょうとも', 'including postage'), +('母子とも', 'ぼしとも', 'both mother and child'), +('共に', 'ともに', 'together, jointly, at the same time, with, as ..., including, along with, both'), +('共にする', 'ともにする', 'to do together, to share, to participate in'), +('見る', 'みる', 'to see, to look, to watch, to view, to observe, to examine, to look over, to assess, to check, to judge, to look after, to attend to, to take care of, to keep an eye on, to experience, to meet with (misfortune, success, etc.), to try ..., to have a go at ..., to give ... a try, to see (that) ..., to find (that) ...'), +('泣く', 'なく', 'to cry, to weep, to sob, to howl'), +('泣く泣く', 'なくなく', 'tearfully, in tears, weeping, crying, reluctantly, unwillingly, with a heavy heart'), +('旗', 'はた', 'flag, pataka (banner), banner (administrative division of Inner Mongolia)'), +('旗印', 'はたじるし', 'design (on a banner), emblem (on a flag), insignia, banner (e.g. of democracy), slogan, cause, objective'), +('白旗', 'しらはた', 'white flag, truce flag, surrender flag'), +('大会旗', 'たいかいはた', 'tournament flag'), +('給う', 'たまう', 'to give, to do ...'), +('給ふ', 'たまう', 'to give, to receive'), +('給う', 'たもう', 'to give, to do ...'), +('給ふ', 'たまう', 'to give, to receive'), +('上げる', 'あげる', 'to raise, to elevate, to do up (one''s hair), to fly (a kite, etc.), to launch (fireworks, etc.), to surface (a submarine, etc.), to land (a boat), to deep-fry, to show someone (into a room), to give, to send someone (away), to enrol (one''s child in school), to enroll, to increase (price, quality, status, etc.), to develop (talent, skill), to improve, to make (a loud sound), to raise (one''s voice), to earn (something desirable), to praise, to give (an example, etc.), to cite, to summon up (all of one''s energy, etc.), to arrest, to nominate, to summon (for geishas, etc.), to offer up (incense, a prayer, etc.) to the gods (or Buddha, etc.), to bear (a child), to conduct (a ceremony, esp. a wedding), (of the tide) to come in, to vomit, to do for (the sake of someone else), to complete ..., to humbly do ...'), +('上がる', 'あがる', 'to rise, to go up, to come up, to ascend, to be raised, to enter (esp. from outdoors), to come in, to go in, to enter (a school), to advance to the next grade, to get out (of water), to come ashore, to increase, to improve, to make progress, to be promoted, to advance, to be made (of profit, etc.), to occur (esp. of a favourable result), to be adequate (to cover expenses, etc.), to be finished, to be done, to be over, (of rain) to stop, to lift, to stop (working properly), to cut out, to give out, to die, to win (in a card game, etc.), to be arrested, to turn up (of evidence, etc.), to be deep fried, to be spoken loudly, to get nervous, to get stage fright, to be offered (to the gods, etc.), to go, to visit, to eat, to drink, to be listed (as a candidate), to serve (in one''s master''s home), to go north, to be complete, to finish'), +('挙る', 'こぞる', 'to assemble everything together, to do something as a group'), +('鏡', 'かがみ', 'mirror, looking-glass, barrel head, page added at the beginning of a document mentioning its purpose, date, author, etc., mirror-shaped mochi'), +('鏡板', 'かがみいた', 'panel, scene-panel, painted backdrop (panel at the back of a noh stage), on which a pine tree is painted'), +('懐中鏡', 'かいちゅうかがみ', 'pocket mirror'), +('化粧鏡', 'けしょうかがみ', 'bathroom mirror, vanity mirror'), +('関', 'せき', 'barrier, gate, seki (in go), mutual life'), +('関取', 'せきとり', 'ranking wrestler in the makuuchi (senior-grade) or juryo (junior-grade) divisions'), +('霞ヶ関', 'かすみがせき', 'Kasumigaseki, district of Tokyo where most of Japan''s government ministry offices are located, government ministries (of Japan), Japanese government bureaucracy'), +('関わる', 'かかわる', 'to be affected, to be influenced, to be concerned with, to have to do with, to stick to (opinions)'), +('覗き機関', 'のぞきからくり', 'peep show, device with lens mounted on a stand or in a box to view enlarged pictures'), +('水機関', 'みずからくり', 'puppet powered by (falling) water, water-powered contrivance, show using such a device (in Edo-period Osaka)'), +('願う', 'ねがう', 'to desire, to wish, to hope, to beg, to request, to implore, to pray, to have something done for oneself'), +('求める', 'もとめる', 'to want, to wish for, to request, to demand, to require, to ask for, to seek, to search for, to look for, to pursue (pleasure), to hunt (a job), to purchase, to buy'), +('機', 'はた', 'loom'), +('機織り', 'はたおり', 'weaving, weaver'), +('高機', 'たかばた', 'traditional Japanese treadle-operated tall loom'), +('潟', 'かた', 'lagoon, inlet, creek, tidal beach, tidal flat, tideland'), +('漁る', 'あさる', 'to fish, to look for, to search for, to hunt for, to scavenge, to scrounge, to look through, to rummage through, to go on a spree (spending, reading, etc.), to binge'), +('器', 'うつわ', 'bowl, vessel, container, ability, capacity, calibre, caliber'), +('器物', 'きぶつ', 'receptacle, container, vessel, utensil, implement, furniture, personal property, calibre, talent, ability'), +('横綱の器', 'よこづなのうつわ', 'mental characteristics expected of a grand champion'), +('競う', 'きそう', 'to compete, to contend, to vie, to contest'), +('競る', 'せる', 'to compete, to bid, to sell at auction'), +('比べる', 'くらべる', 'to compare, to make a comparison, to compete, to vie'), +('好む', 'このむ', 'to like, to prefer'), +('好むと好まざるとにかかわらず', 'このむとこのまざるとにかかわらず', 'whether one likes it or not'), +('好く', 'すく', 'to like, to love, to be fond of'), +('良い', 'よい', 'good, excellent, fine, nice, pleasant, agreeable, sufficient, enough, ready, prepared, profitable (deal, business offer, etc.), beneficial, OK, all right, fine, no problem'), +('いい子', 'いいこ', 'good boy, good girl'), +('いい加減', 'いいかげん', 'irresponsible, perfunctory, careless, lukewarm, half-baked, halfhearted, vague, reasonable, moderate, considerably, quite, rather, pretty'), +('いい加減にする', 'いいかげんにする', 'to put an end to something, to get something over with, to quit something one has been engaged in too long or to an excessive degree'), +('徴', 'しるし', 'sign, indication, omen'), +('試す', 'ためす', 'to attempt, to test, to try out'), +('試し', 'ためし', 'trial, test'), +('勲', 'いさお', 'distinguished service, meritorious service'), +('群れる', 'むれる', 'to crowd, to flock, to swarm'), +('群れ', 'むれ', 'group, crowd, flock, herd, bevy, school, swarm, cluster (e.g. of stars), clump, pack (e.g. of dogs)'), +('群れる', 'むれる', 'to crowd, to flock, to swarm'), +('群', 'むら', 'gathering'), +('群がる', 'むらがる', 'to swarm, to gather'), +('葉群', 'はむら', 'leaves, foliage'), +('岩群', 'いわむら', 'rocky outcrop, jumble of rocks'), +('群がる', 'むらがる', 'to swarm, to gather'), +('建てる', 'たてる', 'to build, to construct'), +('建て', 'たて', 'contract, commitment'), +('建物', 'たてもの', 'building'), +('建つ', 'たつ', 'to be erected, to be built'), +('道', 'みち', 'road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method'), +('郡', 'ぐん', 'district, county, district (of 2-20 50-home neighbourhoods or townships, in the ritsuryō period), commandery (in China)'), +('郡司', 'ぐんじ', 'district governor (under the ritsuryō system)'), +('戦', 'いくさ', 'war, battle, campaign, fight, troops, forces'), +('軍神', 'ぐんしん', 'god of war, war hero'), +('海兵遠征軍', 'かいへいえんせいいくさ', 'Marine Expeditionary Force (US)'), +('大軍', 'おおいくさ', 'great war, great battle'), +('欠ける', 'かける', 'to chip, to be chipped, to break (off), to be damaged, to be missing (from a set, team, etc.), to be absent, to become lost, to be lacking (in), to be short (of), to be deficient, to be wanting (in), to wane (of the moon), to go into eclipse'), +('欠く', 'かく', 'to chip, to nick, to break, to crack, to lack'), +('欠くことができない', 'かくことができない', 'indispensable, essential, necessary'), +('極める', 'きわめる', 'to carry to extremes, to go to the end of something, to investigate thoroughly, to master'), +('極まる', 'きわまる', 'to reach an extreme, to reach a limit, to terminate, to come to an end, extremely, to be stuck, to be in a dilemma, to be at a loss, to be decided, to be settled'), +('極まり', 'きわまり', 'extremity, end, bound, limit'), +('極まりない', 'きわまりない', 'extremely, in the extreme, knows no bounds (e.g. rudeness), unparalleled, boundless (e.g. universe, ocean), limitless'), +('極み', 'きわみ', 'height, acme, extremity, peak, end, limit'), +('決める', 'きめる', 'to decide, to choose, to determine, to make up one''s mind, to resolve, to set one''s heart on, to settle, to arrange, to set, to appoint, to fix, to clinch (a victory), to decide (the outcome of a match), to persist in doing, to go through with, to always do, to have made a habit of, to take for granted, to assume, to dress up, to dress to kill, to dress to the nines, to carry out successfully (a move in sports, a pose in dance, etc.), to succeed in doing, to immobilize with a double-arm lock (in sumo, judo, etc.), to eat or drink something, to take illegal drugs'), +('決まる', 'きまる', 'to be decided, to be settled, to be fixed, to be arranged, to be unchanging, to be the same (as always), to be fixed, to be set, to be a fixed rule, to be destined, to be a convention, to be a custom, to be common knowledge, to be well executed (of a manoeuvre in a sport, game, etc.), to go well, to succeed, to connect (of a punch), to look good (of clothing), to look sharp, to be stylish, to suit one, to be held in place (of a hairdo), to be struck and held (of a pose in kabuki)'), +('健やか', 'すこやか', 'vigorous, healthy, sound'), +('香', 'か', 'smell (esp. a good smell), fragrance, scent, aroma, perfume'), +('香り', 'かおり', 'aroma, fragrance, scent, smell'), +('腸香', 'わたか', 'wataka (Ischikauia steenackeri) (freshwater fish of the carp family)'), +('木の香', 'きのか', 'smell of new wood'), +('香り', 'かおり', 'aroma, fragrance, scent, smell'), +('香りがする', 'かおりがする', 'to smell, to smell of, to have a smell'), +('香る', 'かおる', 'to smell sweet, to be fragrant'), +('候ふ', 'そうろう', 'to serve (by a superior''s side), to be, to do'), +('候間', 'そうろうあいだ', 'as ...'), +('書き候', 'かきそうろう', '(have the honor, honour) to write'), +('御入り候ふ', 'おんいりそうろう', 'to go, to come, to be'), +('熊', 'くま', 'bear (any mammal of family Ursidae)'), +('熊手', 'くまで', 'rake, fork, bamboo rake'), +('蜂熊', 'はちくま', 'crested honey buzzard (Pernis ptilorhynchus), Oriental honey buzzard, pern'), +('黒熊', 'くろくま', 'black bear'), +('菜', 'な', 'greens, vegetables, rape (Brassica napus), rapeseed'), +('菜種', 'なたね', 'rapeseed, coleseed'), +('若菜', 'わかな', 'young greens, young herbs'), +('うまい菜', 'うまいな', 'Swiss chard'), +('結ぶ', 'むすぶ', 'to tie, to bind, to link, to bear (fruit), to close (e.g. deal), to confirm, to conclude, to connect (two distant places), to close tightly, to purse (e.g. lips), to unite (with), to ally, to join hands'), +('結ぶ便', 'むすぶびん', 'connecting flight, connecting service'), +('結う', 'ゆう', 'to do up (hair), to dress, to arrange, to tie, to bind, to fasten, to make (a fence)'), +('結城紬', 'ゆうきつむぎ', 'silk products produced near Yūki (using natural indigo dye), Yūki pongee'), +('結わえる', 'ゆわえる', 'to bind, to fasten, to tie up'), +('最も', 'もっとも', 'most, extremely'), +('最も近い共通祖先', 'もっともちかいきょうつうそせん', 'most recent common ancestor'), +('訓む', 'よむ', 'to read (a kanji) with its native Japanese reading'), +('訓ずる', 'くんずる', 'to read kanji using its native Japanese pronunciation'), +('差す', 'さす', 'to shine, to be visible, to be tinged with, to rise (of water levels), to flow in, to be felt (i.e. as an emotion), to come over one, to hold up (an umbrella, etc.), to put up, to raise, to extend one''s arm straight ahead (in dance), to insert, to put in, to wear (a sword) in one''s belt, to wear at one''s side, to carry under one''s arm, to insert one''s arm under an opponent''s arm, to pole (a boat), to pour, to add (liquid), to serve (drinks), to put on (lipstick, etc.), to apply, to colour, to dye, to light (a fire), to burn, to shut, to close, to lock, to fasten, to stop in the midst of, to leave undone'), +('差し', 'さし', 'between (e.g. two people), face to face, hindrance, impediment, arrhythmic section of recitative in noh music, playing with only 2 players, prefix used for stress or emphasis, counter for traditional dance songs'), +('尺', 'さし', 'ruler, measure'), +('旗指', 'はたさし', 'samurai who carries his general''s banner while riding into battle, small war flag attached to the back of one''s armour during battle'), +('一差し', 'ひとさし', 'one dance, one game (e.g. of shogi)'), +('崎', 'さき', 'small peninsula, cape, promontory, headland'), +('埼玉', 'さいたま', 'Saitama (city, prefecture)'), +('埼銀', 'さいぎん', 'Saitama Bank'), +('札', 'ふだ', 'ticket, token, check, receipt, label, tag, sign, card, plate, playing card, charm, talisman, slip of paper posted on shrine pillars by pilgrims'), +('札所', 'ふだしょ', 'temple which issues amulets'), +('立て札', 'たてふだ', 'bulletin board, notice board, billboard, roadside sign, sign on a post, usu. wooden, esp. containing information about a sight, warning, congratulations, etc.'), +('合札', 'あいふだ', 'check (e.g. baggage claim), tag, token, tally, score'), +('崎', 'さき', 'small peninsula, cape, promontory, headland'), +('川崎', 'かわさき', 'Kawasaki (city)'), +('長崎', 'ながさき', 'Nagasaki (city, prefecture)'), +('岬', 'みさき', 'cape (on coast)'), +('固める', 'かためる', 'to harden, to freeze, to strengthen, to solidify, to make (a fist), to tramp down (snow, dirt), to put together, to collect, to gather, to consolidate, to make secure, to stabilize, to settle down, to strengthen (belief, resolution, etc.), to establish (evidence), to fortify, to reinforce, to support, to wear for a specific purpose (armor, coat, etc.), to swear, to resolutely vow, to sincerely promise, to tie tightly, to fasten, to hold a bow fully drawn'), +('固まる', 'かたまる', 'to harden, to solidify, to become firm, to become certain, to gather (together), to assemble, to huddle together'), +('塊', 'かたまり', 'lump, mass, bundle, clump, clod, cluster, group, crowd, embodiment (of an idea, quality, feeling etc.), personification'), +('塊肉', 'かたまりにく', 'chunk of meat (e.g. for grilling), joint of meat'), +('硬い', 'かたい', 'hard, solid, tough, stiff, tight, wooden, unpolished (e.g. writing), strong, firm (not viscous or easily moved), safe, steady, honest, steadfast, obstinate, stubborn, bookish, formal, stuffy'), +('かたいことは言いっこなし', 'かたいことはいいっこなし', 'let''s put formalities aside, let''s not speak so stiffly'), +('刷る', 'する', 'to print, to color or pattern fabric using a wooden mold'), +('刷く', 'はく', 'to daub, to brush, to touch up'), +('参る', 'まいる', 'to go, to come, to call, to be defeated, to collapse, to die, to be annoyed, to be nonplussed, to be madly in love, to visit (shrine, grave)'), +('散る', 'ちる', 'to fall (e.g. blossoms, leaves), to scatter, to be dispersed, to disappear, to dissolve, to break up, to spread, to run, to blur, to die a noble death'), +('散らす', 'ちらす', 'to scatter, to cause a shower of, to disperse, to distribute, to spread, to resolve (a symptom, condition, etc.), to relieve, to get rid of, to cure, to distract, to divert, to do ... wildly (i.e. disorderly or frequently), to do ... all over the place'), +('散らかす', 'ちらかす', 'to scatter around, to leave untidy, to make a mess'), +('散らかる', 'ちらかる', 'to be in disorder, to lie scattered around'), +('散らばる', 'ちらばる', 'to be scattered about, to disperse, to be littered (with)'), +('散', 'ばら', 'loose articles (not packaged with other things), bulk items, individual items, coins, small change'), +('ばら撒く', 'ばらまく', 'to scatter, to disseminate (e.g. a rumor), to spread (e.g. germs), to broadcast, to distribute widely (e.g. leaflets), to hand out freely, to spend recklessly'), +('散ける', 'ばらける', 'to come apart, to unravel, to come loose, to become disarrayed (e.g. hair)'), +('生む', 'うむ', 'to give birth, to bear (child), to lay (eggs), to produce, to yield, to give rise to, to deliver'), +('生まれる', 'うまれる', 'to be born'), +('生す', 'むす', 'to grow (of moss, etc.)'), +('産霊', 'むすひ', 'divine spirit of creation'), +('松', 'まつ', 'pine tree (Pinus spp.), highest (of a three-tier ranking system)'), +('松かさ', 'まつかさ', 'pinecone, pine cone'), +('若松', 'わかまつ', 'young pine, New Year''s symbolic pine decoration'), +('赤松', 'あかまつ', 'Japanese red pine (Pinus densiflora), Japanese umbrella pine, tanyosho pine'), +('種', 'たね', 'seed (e.g. of a plant), pip, kernel, stone (e.g. of a peach), progeny, offspring, issue, breed, paternal blood, lineage, sperm, semen, seed, cause, source, seed, origin, material (e.g. for an article), matter (e.g. of a story), subject (of discussion), theme, (news) copy, source (of a story), ingredient, main ingredient (of a piece of sushi), leaven, mechanism (of a magic trick, etc.), secret, trickery, 10-point card, tane, animal card'), +('種蒔き', 'たねまき', 'sowing seeds, planting seeds, scattering seeds'), +('菜種', 'なたね', 'rapeseed, coleseed'), +('自分で蒔いた種', 'じぶんでまいたたね', 'situation of one''s own doing'), +('笑う', 'わらう', 'to laugh, to smile, to sneer, to ridicule, to be dumbfounded, to be flabbergasted'), +('笑う門には福来る', 'わらうかどにはふくきたる', 'laugh and grow fat, good fortune and happiness will come to the home of those who smile'), +('笑む', 'えむ', 'to smile'), +('試みる', 'こころみる', 'to try, to attempt, to have a go (at something)'), +('試す', 'ためす', 'to attempt, to test, to try out'), +('試筋', 'ためすじ', 'patron, effective means'), +('子', 'こ', 'child, kid, teenager, youngster, young (non-adult) person, (one''s) child, offspring, young woman, young (animal), offshoot, interest, new share, player who is not a dealer (in cards, mahjong, etc.), young geisha, young prostitute, bird egg, -er (often of young women)'), +('克鯨', 'こくくじら', 'gray whale (Eschrichtius robustus)'), +('江戸っ子', 'えどっこ', 'true Tokyoite, Edoite, person born and raised in Edo'), +('駄々っ子', 'だだっこ', 'unmanageable child, spoiled child (spoilt), spoiled brat'), +('辞める', 'やめる', 'to resign, to retire, to quit, to leave (one''s job, etc.)'), +('否む', 'いなむ', 'to refuse, to decline, to deny'), +('残る', 'のこる', 'to remain, to be left'), +('残す', 'のこす', 'to leave (behind), to leave (undone), to not finish, to save, to set aside, to reserve, to leave (to someone, esp. after one''s death), to bequeath, to stay (in the ring), to hold on'), +('残り', 'のこり', 'remnant, residue, remaining, left-over'), +('残り香', 'のこりが', 'lingering scent, lingering fragrance, residual aroma'), +('失う', 'うしなう', 'to lose, to miss (a change, opportunity), to lose (a loved one), to be bereaved of, to concede (goals, points, etc.)'), +('失せる', 'うせる', 'to disappear, to vanish, to fade away, to go, to leave, to die'), +('焼く', 'やく', 'to burn, to roast, to broil, to grill, to bake, to toast, to barbecue, to heat, to heat up, to make (charcoal, pottery, bricks, etc.), to bake, to fire, to burn, to tan (i.e. suntan), to burn, to print (a photo), to burn (an optical disc), to be jealous of, to be envious of, to envy'), +('焼き', 'やき', 'cooking, esp. frying or stir-frying, heating, tempering, -ware'), +('焼肉', 'やきにく', 'yakiniku, Japanese dish of grilled meat similar to Korean barbecue, roasted meat, grill'), +('すき焼き', 'すきやき', 'sukiyaki, thin slices of beef, cooked with various vegetables in a table-top cast-iron pan'), +('お好み焼き', 'おこのみやき', 'okonomiyaki, savoury pancake fried on an iron griddle with vegetables, meat and/or seafood and topped with various sauces and condiments'), +('焼ける', 'やける', 'to burn, to burn down, to go down in flames, to be roasted, to be thoroughly cooked, to be sunburnt, to fade (in the sun), to glow red (i.e. of the sky at sunset), to become hot (from the sun), to be jealous, to be envious'), +('祝う', 'いわう', 'to celebrate, to congratulate, to observe (a festival), to present (a gift) in celebration, to drink in celebration, to wish for (a happy future, good fortune, etc.), to pray for'), +('唱える', 'となえる', 'to recite, to chant, to cry, to yell, to shout, to advocate, to advance, to preach, to insist'), +('鹿', 'しか', 'deer (esp. the sika deer, Cervus nippon), cervid'), +('鹿猪', 'しかいのしし', 'babirusa (Babyrousa babyrussa)'), +('海驢', 'あしか', 'eared seal (esp. the California sea lion, Zalophus californianus), sea lion'), +('牡鹿', 'おじか', 'buck (male deer)'), +('鹿', 'しか', 'deer (esp. the sika deer, Cervus nippon), cervid'), +('鹿', 'かのしし', 'deer meat, deer'), +('海驢', 'あしか', 'eared seal (esp. the California sea lion, Zalophus californianus), sea lion'), +('牡鹿', 'おじか', 'buck (male deer)'), +('治める', 'おさめる', 'to govern, to manage, to subdue'), +('治まる', 'おさまる', 'to die down (storm, anger, conflict, etc.), to calm down, to cool off, to abate, to be settled, to be brought under control, to be at peace, to be governed well, to subside (of pain, symptoms, etc.), to be alleviated, to get better, to ease off'), +('治る', 'なおる', 'to get better, to get well, to recover (from an illness), to be cured, to be restored, to heal'), +('治す', 'なおす', 'to cure, to heal, to fix, to correct, to repair, to do over again, to replace, to put back as it was, to convert (into a different state), to transform'), +('始め', 'はじめ', 'beginning, start, outset, opening, first (in line, etc.), origin, such as ..., not to mention ...'), +('初めて', 'はじめて', 'for the first time, only after ... is it ..., only when ... do you ..., not until ... do you ..., first time, (one''s) first'), +('初めて', 'はじめて', 'for the first time, only after ... is it ..., only when ... do you ..., not until ... do you ..., first time, (one''s) first'), +('初', 'はつ', 'first, new'), +('初耳', 'はつみみ', 'something heard for the first time, hearing something for the first time'), +('世界初', 'せかいはつ', 'world''s first, first in the world'), +('業界初', 'ぎょうかいはつ', 'the industry''s first ...'), +('司る', 'つかさどる', 'to rule, to govern, to administer'), +('周り', 'まわり', 'circumference, girth, surroundings, neighbourhood, neighborhood, vicinity, people surrounding oneself, surrounding circumstances'), +('周りの目', 'まわりのめ', 'how others look at you, what others think about you'), +('借りる', 'かりる', 'to borrow, to have a loan, to rent, to hire'), +('借りる時の地蔵顔、なす時の閻魔顔', 'かりるときのじぞうがおなすときのえんまがお', 'people look friendly when they ask for a loan but not so much when they repay it, when borrowing (the money), the face of the (bodhisattva) Kshitigarbha; when returning it, the face of the (hell king) Yama'), +('氏', 'うじ', 'family name, lineage, birth, clan'), +('氏名', 'しめい', '(full) name, identity'), +('杜氏', 'とうじ', 'chief brewer at a sake brewery'), +('漢氏', 'あやうじ', 'Aya clan'), +('説く', 'とく', 'to explain, to advocate, to preach, to persuade'), +('節', 'ふし', 'joint, knuckle, tune, melody, node (of a plant stem), joint, knot (in wood), knob, (notable) point, part, node'), +('節目', 'ふしめ', 'turning point, critical juncture, knot (in a tree, etc.)'), +('七節', 'ななふし', 'walking stick (any insect of order Phasmatodea), walkingstick, stick insect, leaf insect'), +('飛七節', 'とびななふし', 'Micadina phluctaenoides (species of stick insect)'), +('節', 'ノット', 'knot (nautical mile per hour)'), +('然', 'しか', 'like that, as such, yeah, uh-huh'), +('然し', 'しかし', 'however, but'), +('然り', 'しかり', 'yes, yea, aye, affirmative, to be so'), +('然し', 'しかし', 'however, but'), +('而して', 'そして', 'and, and then, thus, and now, and finally'), +('然', 'さ', 'so, like that, in that way'), +('然程', 'さほど', '(not) so, (not) particularly, (not) very, (not) that much'), +('然然', 'ささ', 'such and such'), +('戦', 'いくさ', 'war, battle, campaign, fight, troops, forces'), +('戦場', 'せんじょう', 'battlefield, battleground'), +('負け戦', 'まけいくさ', 'losing a battle, lost battle, battle one cannot win, battle one is doomed to lose'), +('野合戦', 'のがっせん', 'battle in the open, battle on an open field'), +('戦う', 'たたかう', 'to make war (on), to wage war (against), to go to war (with), to fight (with), to do battle (against), to compete (against), to struggle (against adversities, etc.), to fight, to contend, to resist'), +('戦く', 'おののく', 'to shake (from fear, cold, excitement, etc.), to shudder, to tremble'), +('戦ぐ', 'そよぐ', 'to rustle, to sway, to stir, to flutter'), +('戦慄く', 'わななく', 'to tremble, to shiver, to shake'), +('縄', 'なわ', 'rope, cord, policeman''s rope'), +('縄跳び', 'なわとび', 'skipping rope, jump rope, skipping, rope-jumping'), +('腰縄', 'こしなわ', 'leash, rope tied round prisoner''s waists'), +('延縄', 'はえなわ', 'longline'), +('城', 'しろ', 'castle'), +('城跡', 'しろあと', 'castle site, ruins of a castle'), +('山城', 'やましろ', 'Yamashiro (former province located in the south of present-day Kyoto Prefecture)'), +('浅い', 'あさい', 'shallow, superficial, slight (wound), light (sleep), pale (colour), inadequate (knowledge), short (time), early, young'), +('浅煎り', 'あさいり', 'light roast (coffee)'), +('清い', 'きよい', 'clear, pure, noble'), +('清い愛', 'きよいあい', 'pure love, platonic love'), +('清まる', 'きよまる', 'to be purified, to be cleansed'), +('清める', 'きよめる', 'to purify, to cleanse, to exorcise, to purge, to ward off'), +('争う', 'あらそう', 'to compete, to contest, to contend, to quarrel, to argue, to dispute, to be at variance, to oppose, to deny (e.g. evidence)'), +('争うべからざる', 'あらそうべからざる', 'indisputable'), +('折る', 'おる', 'to break, to fracture, to break off, to snap off, to pick (e.g. flowers), to fold, to bend, to make (origami), to interrupt, to end'), +('折', 'おり', 'opportunity, chance, occasion, time, folding, fold, pleat, crease, small food box (wooden or cardboard), folding in ... (two, three, etc.), counter for folded items, counter for items (esp. food) packed in an oribako'), +('折り合い', 'おりあい', 'agreement (e.g. business, dispute), understanding, compromise, settlement, mutual relations (between family members, coworkers, etc.)'), +('折々', 'おりおり', 'occasionally, now and then, from time to time'), +('指折り', 'ゆびおり', 'leading, prominent, eminent, foremost, distinguished, counting on one''s fingers'), +('折', 'おり', 'opportunity, chance, occasion, time, folding, fold, pleat, crease, small food box (wooden or cardboard), folding in ... (two, three, etc.), counter for folded items, counter for items (esp. food) packed in an oribako'), +('折り合い', 'おりあい', 'agreement (e.g. business, dispute), understanding, compromise, settlement, mutual relations (between family members, coworkers, etc.)'), +('折々', 'おりおり', 'occasionally, now and then, from time to time'), +('指折り', 'ゆびおり', 'leading, prominent, eminent, foremost, distinguished, counting on one''s fingers'), +('折れる', 'おれる', 'to break, to be broken, to snap, to fracture, to be folded, to give in, to back down, to yield, to submit, to turn (a corner)'), +('選ぶ', 'えらぶ', 'to choose, to select'), +('選ぶところがない', 'えらぶところがない', 'being the same thing (as), being indistinguishable (from)'), +('選る', 'よる', 'to choose, to select'), +('選る', 'よる', 'to choose, to select'), +('成る', 'なる', 'to become, to get, to grow, to turn, to reach, to attain, to result in, to turn out, to end up, to prove (to be), to consist of, to be composed of, to be made up of, to be completed, to be realized, to succeed, to be attained, to be accomplished, to change (into), to turn (into), to transform, to come (to do), to begin (to do), to grow (to do), to come to, to amount to, to add up to, to make, to play (the part of), to act as, to be used for, to be useful for, to serve as, to be promoted, to do ...'), +('成るべく', 'なるべく', 'as (much) as possible, as (much) as one can, wherever practicable, if possible'), +('為す', 'なす', 'to build up, to establish, to form, to become (a state), to accomplish, to achieve, to succeed in, to change into, to do, to perform, to intend to, to attempt, to try'), +('なす角', 'なすかく', 'formed angle, angle made'), +('筵', 'むしろ', 'woven mat (esp. one made of straw), seat'), +('竹席', 'たかむしろ', 'bamboo mat'), +('井', 'い', 'well'), +('井戸', 'いど', 'water well'), +('筒井', 'つつい', 'round well'), +('市井', 'しせい', 'the street, the town'), +('巣', 'す', 'nest, rookery, breeding place, hive, den, haunt, (spider''s) web'), +('巣食う', 'すくう', 'to build (a nest), to nest, to haunt (a place), to hang out (somewhere)'), +('古巣', 'ふるす', 'old haunts, former homes'), +('浮き巣', 'うきす', 'floating nest'), +('巣食う', 'すくう', 'to build (a nest), to nest, to haunt (a place), to hang out (somewhere)'), +('省みる', 'かえりみる', 'to reflect on (oneself, past conduct, etc.), to contemplate, to examine, to think over, to introspect'), +('省く', 'はぶく', 'to omit, to leave out, to exclude, to eliminate, to curtail, to save, to cut down, to economize, to economise'), +('照る', 'てる', 'to shine, to look slightly upward (of a noh mask; indicating joy, etc.)'), +('てるてる坊主', 'てるてるぼうず', 'paper doll to which children pray for fine weather (usu. white, and shaped like a Buddhist priest)'), +('照らす', 'てらす', 'to shine on, to illuminate, to compare (with), to refer to'), +('天照', 'あまてらす', 'Amaterasu, sun goddess who is the ancestress of the Imperial House of Japan'), +('照れる', 'てれる', 'to be shy, to be bashful, to feel awkward, to feel embarrassed'), +('束', 'たば', 'bundle, bunch, sheaf'), +('束ねる', 'たばねる', 'to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one''s arms), to put together (one''s hands)'), +('鍵束', 'かぎたば', 'bunch of keys'), +('麦束', 'むぎたば', 'wheat sheaf, stacked wheat'), +('束ねる', 'たばねる', 'to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one''s arms), to put together (one''s hands)'), +('束', 'つか', 'strut, short vertical post, thickness (of a book minus the cover, a sheaf of paper, etc.), handbreadth, bundle'), +('つかの間', 'つかのま', 'moment, brief space of time'), +('不束', 'ふつつか', 'inexperienced, incompetent, inept, incapable, careless'), +('矢束', 'やつか', 'arrow length, bundle of arrows'), +('束ねる', 'たばねる', 'to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one''s arms), to put together (one''s hands)'), +('積む', 'つむ', 'to pile up, to stack, to load (car, ship, etc.), to pack, to acquire, to accumulate'), +('積もる', 'つもる', 'to pile up, to accumulate, to estimate'), +('積もり', 'つもり', 'intention, plan, purpose, expectation, belief, assumption, thought, conviction, estimate, estimation, calculation'), +('積り書', 'つもりがき', 'written estimate'), +('お見積もり', 'おみつもり', 'quotation, quote'), +('側', 'がわ', 'side (of something, or taking someone''s side), part, (watch) case'), +('側板', 'がわいた', 'stringer, slanted staircase beam, side plate, side panel, side sheet'), +('裏っかわ', 'うらっかわ', 'the reverse, other side, lining'), +('上っ側', 'うわっかわ', 'upper side, surface'), +('側', 'がわ', 'side (of something, or taking someone''s side), part, (watch) case'), +('側板', 'がわいた', 'stringer, slanted staircase beam, side plate, side panel, side sheet'), +('縁側', 'えんがわ', 'engawa, external corridor on the outer side of traditional Japanese houses, bone at the base of a fin, meat at the base of a fin (esp. of a flatfish)'), +('体制側', 'たいせいがわ', 'the establishment'), +('側', 'そば', 'near, close, beside, vicinity, proximity, besides, while, third person'), +('欹てる', 'そばだてる', 'to strain (one''s ears, eyes), to prick up (one''s ears)'), +('お側', 'おそば', 'near, close, beside, vicinity, proximity, besides, while, attendant, retainer, vassal'), +('帯びる', 'おびる', 'to wear (sword, decoration, etc.), to carry, to be entrusted (e.g. with a mission), to take on, to have a trace of, to be tinged with'), +('帯', 'おび', 'obi, kimono sash, paper wrapper on books, CDs, etc., band, belt, strip, cingulum, radio or television program broadcast in the same time slot on all or most days'), +('帯びる', 'おびる', 'to wear (sword, decoration, etc.), to carry, to be entrusted (e.g. with a mission), to take on, to have a trace of, to be tinged with'), +('単帯', 'ひとえおび', 'unlined sash'), +('赤帯', 'あかおび', 'red sash, red belt'), +('卒する', 'そっする', 'to die, to pass away'), +('終える', 'おえる', 'to finish, to graduate'), +('終わる', 'おわる', 'to end, to come to an end, to close, to finish'), +('静か', 'しずか', 'quiet, silent, slow, unhurried, calm, peaceful'), +('静かに', 'しずかに', 'calmly, quietly, gently, peacefully, be quiet!'), +('二人静', 'ふたりしずか', 'Chloranthus serratus (species of flowering plant)'), +('一人静', 'ひとりしずか', 'Chloranthus japonicus'), +('静まる', 'しずまる', 'to become quiet, to quiet down, to quieten down, to calm down, to die down, to subside, to abate, to be suppressed'), +('静める', 'しずめる', 'to appease, to suppress, to calm'), +('蔵', 'くら', 'warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator'), +('倉敷', 'くらしき', 'Kurashiki (city), storage charges'), +('鎌倉', 'かまくら', 'Kamakura (city)'), +('お蔵', 'おくら', 'shelving (a play, movie, etc.), closing down, cancelling, canceling, shelf (i.e. "on the shelf"), rice storehouse of the Edo shogunate'), +('続く', 'つづく', 'to continue, to last, to go on, to continue (without a break), to be unbroken, to occur again and again, to lead to, to connect to, to adjoin, to come after, to follow, to succeed, to rank next to, to hold out, to keep, to last'), +('続ける', 'つづける', 'to continue, to keep up, to keep on'), +('孫', 'まご', 'grandchild'), +('孫娘', 'まごむすめ', 'granddaughter'), +('初孫', 'ういまご', 'first grandchild'), +('内孫', 'ないそん', 'child of one''s heir'), +('置く', 'おく', 'to put, to place, to leave (behind), to establish (an organization, a facility, a position, etc.), to set up, to appoint (someone to a certain position), to hire, to employ, to place (one''s trust, one''s faith, etc.), to bear (in mind, etc.), to put down a tool (e.g. a pen) hence stopping what one is doing with that tool, to take in (boarders, etc.), to provide lodging in one''s house, to separate spatially or temporally, to do something in advance, to leave something in a certain state, to keep something in a certain state'), +('仲', 'なか', 'relation, relationship'), +('仲間', 'なかま', 'companion, fellow, friend, mate, comrade, partner, colleague, coworker, associate, group, company, circle, set, gang, member of the same category (family, class)'), +('ツーカーの仲', 'ツーカーのなか', 'relationship based on intuitive understanding of each other'), +('不仲', 'ふなか', 'discord, (on) bad terms (with)'), +('一重', 'ひとえ', 'one layer, single layer, monopetalous, unlined kimono, single-edged eyelid, eyelid with an epicanthic fold, upper eyelid with no fold'), +('単衣', 'たんい', 'unlined kimono, one kimono, a single kimono'), +('十二単', 'じゅうにひとえ', 'twelve-layered ceremonial kimono (worn by a court lady), ajuga (Ajuga nipponensis), bugle'), +('底', 'そこ', 'bottom, sole'), +('底力', 'そこぢから', 'hidden reserves of strength, latent energy, potentiality, real strength'), +('水底', 'すいてい', 'sea or river bottom'), +('奥底', 'おくそこ', 'depths, deep place, bottom (of one''s heart)'), +('兆す', 'きざす', 'to show signs, to have symptoms, to give indications (of), to bud, to germinate, to sprout'), +('兆し', 'きざし', 'signs, omen, symptoms'), +('低い', 'ひくい', 'low (rank, degree, value, content, quality, etc.), low (position), close to the ground, short (height), deep (voice), in a low key, low (volume)'), +('低い優先順位', 'ひくいゆうせんじゅんい', 'low priority (e.g. cell)'), +('低める', 'ひくめる', 'to lower, to be lowered'), +('低まる', 'ひくまる', 'to lower, to be lowered'), +('法', 'のり', 'rule, law, regulation, model, pattern, teachings of Buddha, Buddhist doctrine, transverse measurement, measurement across, side-slope, slope'), +('伝わる', 'つたわる', 'to be handed down, to be introduced, to be transmitted, to be circulated, to go along, to walk along'), +('伝える', 'つたえる', 'to convey, to report, to transmit, to communicate, to tell, to impart, to propagate, to teach, to bequeath'), +('伝う', 'つたう', 'to go along, to walk along, to follow'), +('伝', 'つて', 'means of making contact, intermediary, go-between, connections, influence, pull, good offices'), +('伝言', 'つてこと', 'verbal message, word (from someone), rumour, rumor'), +('風のつて', 'かぜのつて', 'hearsay, rumor, grapevine'), +('坂', 'さか', 'slope, incline, hill, milestone, (age) mark'), +('大阪', 'おおさか', 'Osaka (city, prefecture)'), +('如何', 'いかん', '(depending on) how, (depending on) what, nature (of), what is ...?, how is ...?, what will be ...?'), +('唐梨', 'からなし', 'Chinese quince (Pseudocydonia sinensis)'), +('導', 'しるべ', 'guidance, guide'), +('印', 'しるし', 'mark, sign, symbol, emblem, badge, crest, flag, evidence, proof, token (of gratitude, affection, etc.)'), +('標旗', 'ひょうき', 'identification, marking flag'), +('的', 'まと', 'mark, target, object, subject, focus, point (e.g. of argument)'), +('的外れ', 'まとはずれ', 'off the mark, off base, misdirected, irrelevant'), +('憧れの的', 'あこがれのまと', 'object of adoration, longing'), +('小的', 'こまと', 'small mark, small target'), +('梅', 'うめ', 'Japanese apricot (Prunus mume), Japanese plum, ume, Chinese plum, lowest (of a three-tier ranking system)'), +('梅干し', 'うめぼし', 'umeboshi, pickled dried ume, pickled dried plum'), +('青梅', 'あおうめ', 'unripe plum'), +('紅梅', 'こうばい', 'red-blossomed plum tree, red Japanese apricot'), +('飛ぶ', 'とぶ', 'to fly, to soar, to jump, to leap, to spring, to bound, to hop, to spatter, to scatter, to splash, to fly (e.g. of sparks), to hurry, to rush, to flee, to run off, to escape, to disappear, to vanish, to fade, to thin out, to break off, to come off, to fall off, to blow (of a fuse), to be sent out (of an order), to fly (of false rumours, catcalls, etc.), to come flying (of a punch, kick, etc.), to be missing (of a page, stitch, etc.), to skip, to jump (e.g. of a conversation)'), +('飛ぶ鳥も落とす勢い', 'とぶとりもおとすいきおい', 'great vigor, tremendous energy, forceful enough to knock down birds in flight'), +('飛ばす', 'とばす', 'to let fly, to make fly, to send flying, to blow off (e.g. in the wind), to launch, to fire, to hurl, to shoot, to skip over, to leave out, to omit, to drop (e.g. a stitch), to run fast, to drive fast, to gallop, to spray, to splash, to spatter, to say without reservation, to call out (e.g. a jeer), to rattle off (e.g. a joke), to spread (e.g. a rumour), to circulate, to send out (a message), to issue (e.g. an appeal), to transfer (to a less important post), to send away (e.g. to a provincial branch), to demote, to dispatch quickly (e.g. a reporter), to get rid of, to burn off (alcohol), to attack (e.g. with a leg manoeuvre), to do vigorously, to do roughly, to do energetically'), +('沖', 'おき', 'open sea, Okinawa'), +('沖合', 'おきあい', 'off the coast, offshore, out at sea'), +('在沖', 'ざいちゅう', 'staying in Okinawa, resident in Okinawa, stationed in Okinawa'), +('来沖', 'らいおき', 'coming to Okinawa, visiting Okinawa'), +('沖する', 'ちゅうする', 'to rise up into the air, to ascend into the sky'), +('働く', 'はたらく', 'to work, to labor, to labour, to function, to operate, to be effective, to work (i.e. ... works), to come into play, to commit (e.g. a crime), to perpetrate, to do, to act, to practise, to practice, to be conjugated'), +('梨', 'なし', 'pear (esp. Japanese pear)'), +('梨酒', 'なししゅ', 'pear cider, pear liquor'), +('西洋梨', 'せいようなし', 'European pear (Pyrus communis)'), +('青梨', 'あおなし', 'Harbin pear (Pyrus ussuriensis var. hondoensis), Ussurian pear, Chinese pear'), +('灯', 'ひ', 'light, lamp'), +('灯明かり', 'ひあかり', 'lamplight, torchlight'), +('灯火', 'ともしび', 'light, lamp, torch'), +('灯す', 'ともす', 'to light (a candle, lamp, etc.), to turn on (a light)'), +('明かり', 'あかり', 'light, illumination, glow, gleam, lamp, light'), +('明かりを消す', 'あかりをけす', 'to turn the lights off'), +('必ず', 'かならず', 'always, without exception, necessarily, certainly, without fail, positively, invariably'), +('必ずしも', 'かならずしも', '(not) always, (not) necessarily, (not) entirely, (not) all'), +('熱い', 'あつい', 'hot (to the touch), passionate (feelings, etc.), ardent, hot (e.g. gaze), hot (e.g. temper), zealous, enthusiastic, fired up, intense, severe, extreme, hot (topic), of interest'), +('熱い暗黒物質', 'あついあんこくぶっしつ', 'hot dark matter'), +('橡', 'とちのき', 'Japanese horse chestnut (Aesculus turbinata)'), +('栃木', 'とちぎ', 'Tochigi (city, prefecture)'), +('徒', 'いたずら', 'useless, vain, aimless, idle'), +('いたずら書き', 'いたずらがき', 'scribbling, doodling, graffiti'), +('徒', 'あだ', 'vain, futile, transient, frivolous'), +('仇となる', 'あだとなる', 'to backfire, to have a harmful result'), +('努める', 'つとめる', 'to endeavor (endeavour), to try, to strive, to make an effort, to exert oneself, to be diligent, to be committed (to doing something)'), +('富む', 'とむ', 'to be rich in, to abound in, to be abundant in, to be full of, to be rich, to be wealthy'), +('富', 'とみ', 'riches, wealth, fortune, resources, lottery'), +('富くじ', 'とみくじ', 'lottery run by a temple or shrine'), +('巨万の富', 'きょまんのとみ', 'great wealth, enormous fortune'), +('夫', 'おっと', 'husband'), +('夫選び', 'おっとえらび', 'choosing a husband'), +('DV夫', 'ディーブイおっと', '(physically) abusive husband, wife beater'), +('元夫', 'もとおっと', 'ex-husband, former husband'), +('夫れ夫れ', 'それぞれ', 'each, respectively'), +('敗れる', 'やぶれる', 'to be defeated, to be beaten, to be unsuccessful, to lose'), +('別れる', 'わかれる', 'to part (usu. of people), to part from, to part with, to be apart from, to separate (of a couple), to break up, to divorce, to lose (e.g. one''s mother), to be bereaved'), +('分ける', 'わける', 'to divide (into), to split (into), to part, to separate, to divide up, to classify, to sort out, to divide out, to share, to distribute, to deal out, to dish out, to distinguish, to discriminate, to differentiate (between), to break up (a fight), to mediate, to call a draw, to tie, to push one''s way through (a crowd), to sell'), +('兵', 'つわもの', 'warrior, soldier, courageous person, strong person'), +('古強者', 'ふるつわもの', 'feudal warrior, samurai, old soldier, veteran, old hand'), +('辺り', 'あたり', '(in the) neighbourhood, neighborhood, vicinity, nearby, surroundings, around, about, or thereabouts, for instance, say, such as'), +('あたり一面', 'あたりいちめん', 'whole area, surrounding area, all around, everywhere, all over the place'), +('御辺', 'ごへん', 'you'), +('辺', 'ほとり', 'side (esp. of a waterbody), edge, bank, shore'), +('片辺', 'かたほとり', 'corner, remote country place'), +('付ける', 'つける', 'to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit'), +('付け', 'つけ', 'bill, bill of sale, payment invoice, tab (for later payment), credit, contact move (in go), direct attack to an enemy stone, sound effect produced by striking with clappers a wooden board in kabuki, letter, reason, motive, pretext, one''s fortune, one''s luck'), +('付ける', 'つける', 'to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit'), +('作付け', 'さくづけ', 'planting'), +('締め付け', 'しめつけ', 'pressure, clamping, tightening, fastening'), +('付く', 'つく', 'to be attached, to be connected with, to adhere, to stick, to cling, to remain imprinted, to scar, to stain, to dye, to bear (fruit, interest, etc.), to be acquired (of a habit, ability, etc.), to increase (of strength, etc.), to take root, to accompany, to attend, to follow, to study with, to side with, to belong to, to possess, to haunt, to be lit, to be lighted, to be settled, to be resolved, to be decided, to be given (of a name, price, etc.), to be sensed, to be perceived, to be lucky, to become (a state, condition, etc.)'), +('付喪神', 'つくもがみ', 'artifact spirit, in folk belief, long-lived objects (household objects, living beings, nature, etc.) become inhabited by a spirit'), +('付き', 'つき', 'furnished with, including, attached to, impression, appearance, luck, sociality, under, assistant (e.g. to a manager), soup base'), +('付き合い', 'つきあい', 'association, socializing, socialising, fellowship'), +('紋付', 'もんつき', 'clothing (e.g. kimono) decorated with one''s family crest'), +('原付', 'げんつき', 'motorized two-wheeled vehicle (with a displacement of less than 50cc), scooter, moped'), +('飯', 'めし', 'cooked rice, meal, food, one''s living, livelihood'), +('飯落ち', 'めしおち', 'dropping off-line to eat'), +('夕飯', 'ゆうはん', 'evening meal, dinner, supper'), +('冷や飯', 'ひやめし', 'cold rice, hanger-on, dependent, disgraced former actor'), +('便り', 'たより', 'news, tidings, information, correspondence, letter'), +('便りがないのはよい便り', 'たよりがないのはよいたより', 'no news is good news'), +('変わる', 'かわる', 'to change, to be transformed, to be altered, to vary, to move to, to be different, to be uncommon, to be unusual'), +('変わり', 'かわり', 'change, alteration, difference, distinction, something wrong, abnormality, unusual event, accident, incident'), +('変わり目', 'かわりめ', 'turning point, change, transition, turn (of the tide, century, etc.), point of difference'), +('変える', 'かえる', 'to change, to alter, to transform, to convert, to turn, to vary, to reform, to revise, to amend'), +('包む', 'つつむ', 'to wrap up, to pack, to bundle, to do up, to cover, to envelop, to shroud, to engulf, to conceal (a feeling), to hide, to give (money in an envelope; as a wedding gift, funeral offering, etc.)'), +('包む', 'くるむ', 'to wrap up, to pack, to do up, to cover with, to dress in'), +('望む', 'のぞむ', 'to desire, to wish for, to expect, to see, to command (a view of)'), +('望むところ', 'のぞむところ', 'what one desires, what one hopes for, suits me well, could ask for nothing better, bring it on, make my day'), +('望', 'もち', 'full moon, 15th day of the lunar month'), +('望月', 'もちづき', 'full moon, moon on the 15th day of the month (by the lunar calendar), full moon of the eighth lunar month'), +('法', 'のり', 'rule, law, regulation, model, pattern, teachings of Buddha, Buddhist doctrine, transverse measurement, measurement across, side-slope, slope'), +('法の筵', 'のりのむしろ', 'preaching place'), +('内法', 'うちのり', 'inside measure'), +('外法', 'そとのり', 'outside measurements'), +('牧', 'まき', 'pasture, grazing land'), +('牧場', 'ぼくじょう', 'farm (livestock), stock farm, ranch, station, pasture, meadow, grazing land'), +('効く', 'きく', 'to be effective, to take effect, to be good (for), to work, to function well, to be possible (to do, use, etc.), to be able to, to taste (alcohol), to try'), +('輪', 'わ', 'ring, circle, loop, hoop, wheel, circle (e.g. of friends), planetary ring'), +('輪ゴム', 'わゴム', 'rubber band, elastic band'), +('埴輪', 'はにわ', 'haniwa, hollow unglazed terracotta figure from the Kofun period'), +('後輪', 'こうりん', 'rear wheel, cantle'), +('無い', 'ない', 'nonexistent, not being (there), unowned, not had, unpossessed, unique, not, impossible, won''t happen, not, to not be, to have not'), +('ないと行けない', 'ないといけない', 'have to (verb), must (verb), is indispensable, absolutely necessary'), +('苦無', 'くない', 'ninja throwing knives, mediaeval farming tool for digging, prying, etc.'), +('勇む', 'いさむ', 'to be in high spirits, to be encouraged, to be lively, to cheer up'), +('浴びる', 'あびる', 'to dash over oneself (e.g. water), to take (e.g. shower), to bask in (e.g. the sun), to bathe in, to be flooded with (e.g. light), to be covered in, to suffer (e.g. an attack), to draw (e.g. criticism, attention, praise), to have heaped upon, to be showered with'), +('浴びせる', 'あびせる', 'to pour on'), +('末', 'すえ', 'end, tip, top, end (of the year, month, etc.), close, youngest child, descendants, offspring, posterity, future, (finally) after, (at last) after, at the end of, trifles, trivialities, degenerate age'), +('末っ子', 'すえっこ', 'youngest child'), +('来月末', 'らいげつまつ', 'end of next month'), +('末の末', 'すえのすえ', 'the last'), +('末', 'うら', 'top end, tip'), +('末枯れ', 'うらがれ', 'dying of the little twigs and branches'), +('末', 'うれ', 'new shoots, new growth (of a tree)'), +('末葉', 'うらば', 'end leaves, top leaves, last leaves'), +('木の末', 'このうれ', 'treetop, tip of a branch'), +('満ちる', 'みちる', 'to fill, to become full (of), to be filled (with), to brim (with), to wax (of the moon), to rise (of the tide), to flow, to come in, to expire (of a period of time), to mature, to come to an end'), +('満つ', 'みつ', 'to be full, to wax (e.g. moon), to rise (e.g. tide), to mature, to expire'), +('満たす', 'みたす', 'to satisfy (conditions, one''s appetite, etc.), to meet (e.g. demands), to fulfill, to gratify, to fill (e.g. a cup), to pack, to supply'), +('約まる', 'つづまる', 'to compress, to shrink'), +('約める', 'つづめる', 'to abridge, to shorten, to economize'), +('約やか', 'つづまやか', 'concise, brief, humble, frugal, modest, discrete'), +('要る', 'いる', 'to need, to want'), +('要', 'かなめ', 'pivot, vital point, cornerstone, keystone, Japanese photinia'), +('要石', 'かなめいし', 'keystone'), +('陸', 'りく', 'land, shore'), +('丘', 'おか', 'hill, height, knoll, rising ground, bonus points awarded to the winner at the end of a game'), +('類い', 'たぐい', 'kind, sort, type, equal, match, peer'), +('類いする', 'たぐいする', 'to be equal to, to be as good as, to be a match for, to rival'), +('良い', 'よい', 'good, excellent, fine, nice, pleasant, agreeable, sufficient, enough, ready, prepared, profitable (deal, business offer, etc.), beneficial, OK, all right, fine, no problem'), +('いい子', 'いいこ', 'good boy, good girl'), +('いい子', 'いいこ', 'good boy, good girl'), +('いい薬になる', 'いいくすりになる', 'to learn a lesson (usu. from an unpleasant experience), to be good for someone'), +('養う', 'やしなう', 'to support, to maintain, to provide for, to bring up, to raise, to rear, to feed, to adopt (a child), to cultivate (a habit, a quality, etc.), to develop, to build up, to foster, to recuperate (from injury, illness, etc.)'), +('民', 'たみ', 'people, citizens, subjects, folk'), +('民草', 'たみくさ', 'people, populace'), +('国民', 'くにたみ', 'people of a country'), +('流浪の民', 'るろうのたみ', 'wandering people, nomadic tribe'), +('未だ', 'まだ', 'still, as yet, only, (not) yet, more, (more) still, at least, comparatively, relatively, unfinished, incomplete, not yet done'), +('未だかつて', 'いまだかつて', 'not until now, never yet'), +('未だ', 'まだ', 'still, as yet, only, (not) yet, more, (more) still, at least, comparatively, relatively, unfinished, incomplete, not yet done'), +('未だしも', 'まだしも', 'rather, better'), +('未', 'ひつじ', 'the Sheep (eighth sign of the Chinese zodiac), the Ram, the Goat, hour of the Sheep (around 2pm, 1-3pm, or 2-4pm), south-southwest, sixth month of the lunar calendar'), +('未草', 'ひつじぐさ', 'pygmy waterlily (Nymphaea tetragona)'), +('辛未', 'かのとひつじ', 'Metal Sheep (8th year of the sexagenary cycle, e.g. 1931, 1991, 2051)'), +('乙未', 'きのとひつじ', 'Wood Sheep (32nd year of the sexagenary cycle, e.g. 1955, 2015, 2075)'), +('例える', 'たとえる', 'to compare (something) to, to liken, to speak figuratively, to use a simile, to use a metaphor'), +('例えるなら', 'たとえるなら', 'for example'), +('老いる', 'おいる', 'to age, to grow old'), +('老ける', 'ふける', 'to age, to grow old (esp. in appearance), to show marks of age'), +('冷たい', 'つめたい', 'cold (to the touch), chilly, icy, freezing, (emotionally) cold, coldhearted, unfeeling, indifferent, unfriendly, distant'), +('冷たい暗黒物質', 'つめたいあんこくぶっしつ', 'cold dark matter'), +('冷える', 'ひえる', 'to grow cold (from room temperature, e.g. in refrigerator), to get chilly, to cool down'), +('冷や', 'ひや', 'cold water, cold sake, cold, cool, chilled, unheated'), +('冷やす', 'ひやす', 'to cool (from room temperature), to chill, to refrigerate, to calm down, to cool off, to regain one''s composure, to relax, to be frightened (at), to be scared (of)'), +('お冷', 'おひや', 'cold (drinking) water, (glass of) cold water, cold boiled rice'), +('冷ややか', 'ひややか', 'cold, chilly, cool, cold (attitude, stare, etc.), frigid, indifferent, distant, surly, curt, composed, cool, calm'), +('冷やす', 'ひやす', 'to cool (from room temperature), to chill, to refrigerate, to calm down, to cool off, to regain one''s composure, to relax, to be frightened (at), to be scared (of)'), +('冷やかす', 'ひやかす', 'to banter, to make fun of, to jeer at, to cool, to refrigerate, to window-shop, to look at without buying'), +('冷める', 'さめる', 'to cool down, to get cold, to cool off (excitement, temper, etc.), to subside, to dampen, to fade, to wane, to be cold (eyes, expression, etc.), to be composed'), +('冷ます', 'さます', 'to cool (e.g. from a high temperature to room temperature), to let cool, to dampen, to throw a damper on, to spoil'), +('連なる', 'つらなる', 'to extend, to stretch out, to stand in a row, to attend, to participate in, to enrol, to enroll, to join, to have a connection, to be related, to be linked'), +('連ねる', 'つらねる', 'to line up, to put in a row, to add (to a group), to accept (as a member of an organization, etc.), to join (e.g. a list), to link, to put together, to string together (e.g. compliments), to enumerate, to take along with, to bring with'), +('連れる', 'つれる', 'to take (someone) with one, to bring along, to go with, to be accompanied by'), +('労する', 'ろうする', 'to work, to labor, to labour, to put to work, to make (someone) work'), +('労る', 'いたわる', 'to pity, to sympathize with, to sympathise with, to treat with sympathy, to console, to be kind to, to appreciate, to tend to (e.g. an injury), to care for, to nurse, to soothe'), +('労き', 'いたずき', 'pain, trouble, illness'), +('労い', 'ねぎらい', 'appreciation, thanks, gratitude'), +('労う', 'ねぎらう', 'to show appreciation for (efforts, esp. by someone of equal or lower status), to thank for, to reward for'), +('労う', 'ねぎらう', 'to show appreciation for (efforts, esp. by someone of equal or lower status), to thank for, to reward for'), +('計る', 'はかる', 'to measure, to weigh, to survey, to time (sound, gauge, estimate), to conjecture, to infer, to surmise'), +('撮る', 'とる', 'to take (a photo), to record (video, audio, etc.), to make (a film)'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(4989, '媛'), +(4990, '媛'), +(4991, '塩'), +(4992, '塩'), +(4993, '塩'), +(4994, '塩'), +(4995, '岡'), +(4996, '岡'), +(4997, '岡'), +(4998, '英'), +(4999, '茨'), +(5000, '茨'), +(5001, '茨'), +(5002, '茨'), +(5003, '印'), +(5004, '印'), +(5005, '印'), +(5006, '印'), +(5007, '愛'), +(5008, '愛'), +(5009, '愛'), +(5010, '愛'), +(5011, '愛'), +(5012, '愛'), +(5013, '栄'), +(5014, '栄'), +(5015, '栄'), +(5016, '栄'), +(5017, '栄'), +(5018, '栄'), +(5019, '位'), +(5020, '位'), +(5021, '位'), +(5022, '位'), +(5023, '位'), +(5024, '位'), +(5025, '芽'), +(5026, '芽'), +(5027, '芽'), +(5028, '芽'), +(5029, '衣'), +(5030, '衣'), +(5031, '衣'), +(5032, '衣'), +(5033, '衣'), +(5034, '衣'), +(5035, '衣'), +(5036, '案'), +(5037, '案'), +(5038, '以'), +(5039, '以'), +(5040, '改'), +(5041, '改'), +(5042, '果'), +(5043, '果'), +(5044, '果'), +(5045, '果'), +(5046, '果'), +(5047, '加'), +(5048, '加'), +(5049, '貨'), +(5050, '械'), +(5051, '械'), +(5052, '街'), +(5053, '街'), +(5054, '街'), +(5055, '街'), +(5056, '覚'), +(5057, '覚'), +(5058, '覚'), +(5059, '覚'), +(5060, '各'), +(5061, '各'), +(5062, '管'), +(5063, '管'), +(5064, '管'), +(5065, '管'), +(5066, '希'), +(5067, '希'), +(5068, '希'), +(5069, '希'), +(5070, '共'), +(5071, '共'), +(5072, '共'), +(5073, '共'), +(5074, '共'), +(5075, '共'), +(5076, '観'), +(5077, '泣'), +(5078, '泣'), +(5079, '旗'), +(5080, '旗'), +(5081, '旗'), +(5082, '旗'), +(5083, '給'), +(5084, '給'), +(5085, '給'), +(5086, '給'), +(5087, '挙'), +(5088, '挙'), +(5089, '挙'), +(5090, '鏡'), +(5091, '鏡'), +(5092, '鏡'), +(5093, '鏡'), +(5094, '関'), +(5095, '関'), +(5096, '関'), +(5097, '関'), +(5098, '関'), +(5099, '関'), +(5100, '願'), +(5101, '求'), +(5102, '機'), +(5103, '機'), +(5104, '機'), +(5105, '潟'), +(5106, '漁'), +(5107, '器'), +(5108, '器'), +(5109, '器'), +(5110, '競'), +(5111, '競'), +(5112, '競'), +(5113, '好'), +(5114, '好'), +(5115, '好'), +(5116, '好'), +(5117, '好'), +(5118, '好'), +(5119, '好'), +(5120, '験'), +(5121, '験'), +(5122, '験'), +(5123, '功'), +(5124, '群'), +(5125, '群'), +(5126, '群'), +(5127, '群'), +(5128, '群'), +(5129, '群'), +(5130, '群'), +(5131, '群'), +(5132, '建'), +(5133, '建'), +(5134, '建'), +(5135, '建'), +(5136, '径'), +(5137, '郡'), +(5138, '郡'), +(5139, '軍'), +(5140, '軍'), +(5141, '軍'), +(5142, '軍'), +(5143, '欠'), +(5144, '欠'), +(5145, '欠'), +(5146, '極'), +(5147, '極'), +(5148, '極'), +(5149, '極'), +(5150, '極'), +(5151, '極'), +(5152, '極'), +(5153, '健'), +(5154, '香'), +(5155, '香'), +(5156, '香'), +(5157, '香'), +(5158, '香'), +(5159, '香'), +(5160, '香'), +(5161, '候'), +(5162, '候'), +(5163, '候'), +(5164, '候'), +(5165, '熊'), +(5166, '熊'), +(5167, '熊'), +(5168, '熊'), +(5169, '菜'), +(5170, '菜'), +(5171, '菜'), +(5172, '菜'), +(5173, '結'), +(5174, '結'), +(5175, '結'), +(5176, '結'), +(5177, '結'), +(5178, '最'), +(5179, '最'), +(5180, '訓'), +(5181, '訓'), +(5182, '差'), +(5183, '差'), +(5184, '差'), +(5185, '差'), +(5186, '差'), +(5187, '埼'), +(5188, '埼'), +(5189, '埼'), +(5190, '札'), +(5191, '札'), +(5192, '札'), +(5193, '札'), +(5194, '崎'), +(5195, '崎'), +(5196, '崎'), +(5197, '崎'), +(5198, '固'), +(5199, '固'), +(5200, '固'), +(5201, '固'), +(5202, '固'), +(5203, '固'), +(5204, '刷'), +(5205, '刷'), +(5206, '参'), +(5207, '散'), +(5208, '散'), +(5209, '散'), +(5210, '散'), +(5211, '散'), +(5212, '散'), +(5213, '散'), +(5214, '散'), +(5215, '産'), +(5216, '産'), +(5217, '産'), +(5218, '産'), +(5219, '松'), +(5220, '松'), +(5221, '松'), +(5222, '松'), +(5223, '種'), +(5224, '種'), +(5225, '種'), +(5226, '種'), +(5227, '笑'), +(5228, '笑'), +(5229, '笑'), +(5230, '試'), +(5231, '試'), +(5232, '試'), +(5233, '児'), +(5234, '児'), +(5235, '児'), +(5236, '児'), +(5237, '辞'), +(5238, '辞'), +(5239, '残'), +(5240, '残'), +(5241, '残'), +(5242, '残'), +(5243, '失'), +(5244, '失'), +(5245, '焼'), +(5246, '焼'), +(5247, '焼'), +(5248, '焼'), +(5249, '焼'), +(5250, '焼'), +(5251, '祝'), +(5252, '唱'), +(5253, '鹿'), +(5254, '鹿'), +(5255, '鹿'), +(5256, '鹿'), +(5257, '鹿'), +(5258, '鹿'), +(5259, '鹿'), +(5260, '鹿'), +(5261, '治'), +(5262, '治'), +(5263, '治'), +(5264, '治'), +(5265, '初'), +(5266, '初'), +(5267, '初'), +(5268, '初'), +(5269, '初'), +(5270, '初'), +(5271, '初'), +(5272, '司'), +(5273, '周'), +(5274, '周'), +(5275, '借'), +(5276, '借'), +(5277, '氏'), +(5278, '氏'), +(5279, '氏'), +(5280, '氏'), +(5281, '説'), +(5282, '節'), +(5283, '節'), +(5284, '節'), +(5285, '節'), +(5286, '節'), +(5287, '然'), +(5288, '然'), +(5289, '然'), +(5290, '然'), +(5291, '然'), +(5292, '然'), +(5293, '然'), +(5294, '然'), +(5295, '戦'), +(5296, '戦'), +(5297, '戦'), +(5298, '戦'), +(5299, '戦'), +(5300, '戦'), +(5301, '戦'), +(5302, '戦'), +(5303, '縄'), +(5304, '縄'), +(5305, '縄'), +(5306, '縄'), +(5307, '城'), +(5308, '城'), +(5309, '城'), +(5310, '浅'), +(5311, '浅'), +(5312, '清'), +(5313, '清'), +(5314, '清'), +(5315, '清'), +(5316, '争'), +(5317, '争'), +(5318, '折'), +(5319, '折'), +(5320, '折'), +(5321, '折'), +(5322, '折'), +(5323, '折'), +(5324, '折'), +(5325, '折'), +(5326, '折'), +(5327, '折'), +(5328, '選'), +(5329, '選'), +(5330, '選'), +(5331, '選'), +(5332, '成'), +(5333, '成'), +(5334, '成'), +(5335, '成'), +(5336, '席'), +(5337, '席'), +(5338, '井'), +(5339, '井'), +(5340, '井'), +(5341, '井'), +(5342, '巣'), +(5343, '巣'), +(5344, '巣'), +(5345, '巣'), +(5346, '巣'), +(5347, '省'), +(5348, '省'), +(5349, '照'), +(5350, '照'), +(5351, '照'), +(5352, '照'), +(5353, '照'), +(5354, '束'), +(5355, '束'), +(5356, '束'), +(5357, '束'), +(5358, '束'), +(5359, '束'), +(5360, '束'), +(5361, '束'), +(5362, '束'), +(5363, '束'), +(5364, '積'), +(5365, '積'), +(5366, '積'), +(5367, '積'), +(5368, '積'), +(5369, '側'), +(5370, '側'), +(5371, '側'), +(5372, '側'), +(5373, '側'), +(5374, '側'), +(5375, '側'), +(5376, '側'), +(5377, '側'), +(5378, '側'), +(5379, '側'), +(5380, '帯'), +(5381, '帯'), +(5382, '帯'), +(5383, '帯'), +(5384, '帯'), +(5385, '卒'), +(5386, '卒'), +(5387, '卒'), +(5388, '静'), +(5389, '静'), +(5390, '静'), +(5391, '静'), +(5392, '静'), +(5393, '静'), +(5394, '倉'), +(5395, '倉'), +(5396, '倉'), +(5397, '倉'), +(5398, '続'), +(5399, '続'), +(5400, '孫'), +(5401, '孫'), +(5402, '孫'), +(5403, '孫'), +(5404, '置'), +(5405, '仲'), +(5406, '仲'), +(5407, '仲'), +(5408, '仲'), +(5409, '単'), +(5410, '単'), +(5411, '単'), +(5412, '底'), +(5413, '底'), +(5414, '底'), +(5415, '底'), +(5416, '兆'), +(5417, '兆'), +(5418, '低'), +(5419, '低'), +(5420, '低'), +(5421, '低'), +(5422, '典'), +(5423, '伝'), +(5424, '伝'), +(5425, '伝'), +(5426, '伝'), +(5427, '伝'), +(5428, '伝'), +(5429, '阪'), +(5430, '阪'), +(5431, '奈'), +(5432, '奈'), +(5433, '標'), +(5434, '標'), +(5435, '標'), +(5436, '的'), +(5437, '的'), +(5438, '的'), +(5439, '的'), +(5440, '梅'), +(5441, '梅'), +(5442, '梅'), +(5443, '梅'), +(5444, '飛'), +(5445, '飛'), +(5446, '飛'), +(5447, '沖'), +(5448, '沖'), +(5449, '沖'), +(5450, '沖'), +(5451, '沖'), +(5452, '働'), +(5453, '梨'), +(5454, '梨'), +(5455, '梨'), +(5456, '梨'), +(5457, '灯'), +(5458, '灯'), +(5459, '灯'), +(5460, '灯'), +(5461, '灯'), +(5462, '灯'), +(5463, '必'), +(5464, '必'), +(5465, '熱'), +(5466, '熱'), +(5467, '栃'), +(5468, '栃'), +(5469, '徒'), +(5470, '徒'), +(5471, '徒'), +(5472, '徒'), +(5473, '努'), +(5474, '富'), +(5475, '富'), +(5476, '富'), +(5477, '富'), +(5478, '夫'), +(5479, '夫'), +(5480, '夫'), +(5481, '夫'), +(5482, '夫'), +(5483, '敗'), +(5484, '別'), +(5485, '別'), +(5486, '兵'), +(5487, '兵'), +(5488, '辺'), +(5489, '辺'), +(5490, '辺'), +(5491, '辺'), +(5492, '辺'), +(5493, '付'), +(5494, '付'), +(5495, '付'), +(5496, '付'), +(5497, '付'), +(5498, '付'), +(5499, '付'), +(5500, '付'), +(5501, '付'), +(5502, '付'), +(5503, '付'), +(5504, '飯'), +(5505, '飯'), +(5506, '飯'), +(5507, '飯'), +(5508, '便'), +(5509, '便'), +(5510, '変'), +(5511, '変'), +(5512, '変'), +(5513, '変'), +(5514, '包'), +(5515, '包'), +(5516, '望'), +(5517, '望'), +(5518, '望'), +(5519, '望'), +(5520, '法'), +(5521, '法'), +(5522, '法'), +(5523, '法'), +(5524, '牧'), +(5525, '牧'), +(5526, '利'), +(5527, '輪'), +(5528, '輪'), +(5529, '輪'), +(5530, '輪'), +(5531, '無'), +(5532, '無'), +(5533, '無'), +(5534, '勇'), +(5535, '浴'), +(5536, '浴'), +(5537, '末'), +(5538, '末'), +(5539, '末'), +(5540, '末'), +(5541, '末'), +(5542, '末'), +(5543, '末'), +(5544, '末'), +(5545, '末'), +(5546, '満'), +(5547, '満'), +(5548, '満'), +(5549, '約'), +(5550, '約'), +(5551, '約'), +(5552, '要'), +(5553, '要'), +(5554, '要'), +(5555, '陸'), +(5556, '陸'), +(5557, '類'), +(5558, '類'), +(5559, '良'), +(5560, '良'), +(5561, '良'), +(5562, '良'), +(5563, '養'), +(5564, '民'), +(5565, '民'), +(5566, '民'), +(5567, '民'), +(5568, '未'), +(5569, '未'), +(5570, '未'), +(5571, '未'), +(5572, '未'), +(5573, '未'), +(5574, '未'), +(5575, '未'), +(5576, '例'), +(5577, '例'), +(5578, '老'), +(5579, '老'), +(5580, '冷'), +(5581, '冷'), +(5582, '冷'), +(5583, '冷'), +(5584, '冷'), +(5585, '冷'), +(5586, '冷'), +(5587, '冷'), +(5588, '冷'), +(5589, '冷'), +(5590, '冷'), +(5591, '連'), +(5592, '連'), +(5593, '連'), +(5594, '労'), +(5595, '労'), +(5596, '労'), +(5597, '労'), +(5598, '労'), +(5599, '労'), +(5600, '量'), +(5601, '録'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("ひめ"), +("しお"), +("おか"), +("はなぶさ"), +("いばら"), +("かや"), +("くさぶき"), +("しるし"), +("-じるし"), +("しる.す"), +("いと.しい"), +("かな.しい"), +("め.でる"), +("お.しむ"), +("まな"), +("さか.える"), +("は.え"), +("-ば.え"), +("は.える"), +("え"), +("くらい"), +("ぐらい"), +("め"), +("ころも"), +("きぬ"), +("-ぎ"), +("つくえ"), +("もっ.て"), +("あらた.める"), +("あらた.まる"), +("は.たす"), +("はた.す"), +("-は.たす"), +("は.てる"), +("-は.てる"), +("は.て"), +("くわ.える"), +("くわ.わる"), +("たから"), +("かせ"), +("まち"), +("おぼ.える"), +("さ.ます"), +("さ.める"), +("さと.る"), +("おのおの"), +("くだ"), +("まれ"), +("こいねが.う"), +("とも"), +("とも.に"), +("-ども"), +("み.る"), +("しめ.す"), +("な.く"), +("はた"), +("たま.う"), +("たも.う"), +("-たま.え"), +("あ.げる"), +("あ.がる"), +("こぞ.る"), +("かがみ"), +("せき"), +("-ぜき"), +("かか.わる"), +("からくり"), +("かんぬき"), +("ねが.う"), +("-ねがい"), +("もと.める"), +("はた"), +("かた"), +("-がた"), +("あさ.る"), +("うつわ"), +("きそ.う"), +("せ.る"), +("くら.べる"), +("この.む"), +("す.く"), +("よ.い"), +("い.い"), +("あかし"), +("しるし"), +("ため.す"), +("ためし"), +("いさお"), +("む.れる"), +("む.れ"), +("むら"), +("むら.がる"), +("た.てる"), +("た.て"), +("-だ.て"), +("た.つ"), +("みち"), +("こみち"), +("さしわたし"), +("ただちに"), +("こおり"), +("いくさ"), +("う.える"), +("のり"), +("わざ"), +("か.ける"), +("か.く"), +("きわ.める"), +("きわ.まる"), +("きわ.まり"), +("きわ.み"), +("き.める"), +("-ぎ.め"), +("き.まる"), +("すこ.やか"), +("か"), +("かお.り"), +("かお.る"), +("そうろう"), +("くま"), +("な"), +("むす.ぶ"), +("ゆ.う"), +("ゆ.わえる"), +("もっと.も"), +("つま"), +("おし.える"), +("よ.む"), +("くん.ずる"), +("さ.す"), +("さ.し"), +("さき"), +("さい"), +("みさき"), +("ふだ"), +("さき"), +("さい"), +("みさき"), +("かた.める"), +("かた.まる"), +("かた.まり"), +("かた.い"), +("す.る"), +("-ず.り"), +("-ずり"), +("は.く"), +("まい.る"), +("まい-"), +("まじわる"), +("みつ"), +("ち.る"), +("ち.らす"), +("-ち.らす"), +("ち.らかす"), +("ち.らかる"), +("ち.らばる"), +("ばら"), +("ばら.ける"), +("う.む"), +("う.まれる"), +("うぶ-"), +("む.す"), +("まつ"), +("たね"), +("-ぐさ"), +("わら.う"), +("え.む"), +("こころ.みる"), +("ため.す"), +("こ"), +("-こ"), +("-っこ"), +("や.める"), +("いな.む"), +("のこ.る"), +("のこ.す"), +("そこな.う"), +("のこ.り"), +("うしな.う"), +("う.せる"), +("や.く"), +("や.き"), +("や.き-"), +("-や.き"), +("や.ける"), +("いわ.う"), +("とな.える"), +("しか"), +("か"), +("おさ.める"), +("おさ.まる"), +("なお.る"), +("なお.す"), +("はじ.め"), +("はじ.めて"), +("はつ"), +("はつ-"), +("うい-"), +("-そ.める"), +("-ぞ.め"), +("つかさど.る"), +("まわ.り"), +("か.りる"), +("うじ"), +("-うじ"), +("と.く"), +("ふし"), +("-ぶし"), +("のっと"), +("しか"), +("しか.り"), +("しか.し"), +("さ"), +("いくさ"), +("たたか.う"), +("おのの.く"), +("そよ.ぐ"), +("わなな.く"), +("なわ"), +("ただ.す"), +("しろ"), +("あさ.い"), +("きよ.い"), +("きよ.まる"), +("きよ.める"), +("あらそ.う"), +("いか.でか"), +("お.る"), +("おり"), +("お.り"), +("-お.り"), +("お.れる"), +("えら.ぶ"), +("え.る"), +("よ.る"), +("な.る"), +("な.す"), +("-な.す"), +("むしろ"), +("い"), +("す"), +("す.くう"), +("かえり.みる"), +("はぶ.く"), +("て.る"), +("て.らす"), +("て.れる"), +("たば"), +("たば.ねる"), +("つか"), +("つか.ねる"), +("つ.む"), +("-づ.み"), +("つ.もる"), +("つ.もり"), +("かわ"), +("がわ"), +("そば"), +("お.びる"), +("おび"), +("そっ.する"), +("お.える"), +("お.わる"), +("ついに"), +("にわか"), +("しず-"), +("しず.か"), +("しず.まる"), +("しず.める"), +("くら"), +("-たち"), +("つづ.く"), +("つづ.ける"), +("つぐ.ない"), +("まご"), +("お.く"), +("-お.き"), +("なか"), +("ひとえ"), +("そこ"), +("きざ.す"), +("きざ.し"), +("ひく.い"), +("ひく.める"), +("ひく.まる"), +("ふみ"), +("のり"), +("つた.わる"), +("つた.える"), +("つた.う"), +("つだ.う"), +("-づた.い"), +("つて"), +("さか"), +("いかん"), +("からなし"), +("しるべ"), +("しるし"), +("まと"), +("うめ"), +("と.ぶ"), +("と.ばす"), +("-と.ばす"), +("おき"), +("おきつ"), +("ちゅう.する"), +("わく"), +("はたら.く"), +("なし"), +("ひ"), +("ほ-"), +("ともしび"), +("とも.す"), +("あかり"), +("かなら.ず"), +("あつ.い"), +("とち"), +("いたずら"), +("あだ"), +("つと.める"), +("と.む"), +("とみ"), +("おっと"), +("それ"), +("やぶ.れる"), +("わか.れる"), +("わ.ける"), +("つわもの"), +("あた.り"), +("ほと.り"), +("-べ"), +("つ.ける"), +("-つ.ける"), +("-づ.ける"), +("つ.け"), +("つ.け-"), +("-つ.け"), +("-づ.け"), +("-づけ"), +("つ.く"), +("-づ.く"), +("つ.き"), +("-つ.き"), +("-つき"), +("-づ.き"), +("-づき"), +("めし"), +("たよ.り"), +("か.わる"), +("か.わり"), +("か.える"), +("つつ.む"), +("くる.む"), +("のぞ.む"), +("もち"), +("のり"), +("まき"), +("き.く"), +("わ"), +("な.い"), +("いさ.む"), +("あ.びる"), +("あ.びせる"), +("すえ"), +("うら"), +("うれ"), +("み.ちる"), +("み.つ"), +("み.たす"), +("つづ.まる"), +("つづ.める"), +("つづま.やか"), +("い.る"), +("かなめ"), +("おか"), +("たぐ.い"), +("よ.い"), +("-よ.い"), +("い.い"), +("-い.い"), +("やしな.う"), +("たみ"), +("いま.だ"), +("ま.だ"), +("ひつじ"), +("たと.える"), +("お.いる"), +("ふ.ける"), +("つめ.たい"), +("ひ.える"), +("ひ.や"), +("ひ.ややか"), +("ひ.やす"), +("ひ.やかす"), +("さ.める"), +("さ.ます"), +("つら.なる"), +("つら.ねる"), +("つ.れる"), +("-づ.れ"), +("ろう.する"), +("いたわ.る"), +("いた.ずき"), +("ねぎら"), +("つか.れる"), +("ねぎら.う"), +("はか.る"), +("しる.す"), +("と.る"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('媛', 'ひめ'), +('塩', 'しお'), +('岡', 'おか'), +('英', 'はなぶさ'), +('茨', 'いばら'), +('茨', 'かや'), +('茨', 'くさぶき'), +('印', 'しるし'), +('印', '-じるし'), +('印', 'しる.す'), +('愛', 'いと.しい'), +('愛', 'かな.しい'), +('愛', 'め.でる'), +('愛', 'お.しむ'), +('愛', 'まな'), +('栄', 'さか.える'), +('栄', 'は.え'), +('栄', '-ば.え'), +('栄', 'は.える'), +('栄', 'え'), +('位', 'くらい'), +('位', 'ぐらい'), +('芽', 'め'), +('衣', 'ころも'), +('衣', 'きぬ'), +('衣', '-ぎ'), +('案', 'つくえ'), +('以', 'もっ.て'), +('改', 'あらた.める'), +('改', 'あらた.まる'), +('果', 'は.たす'), +('果', 'はた.す'), +('果', '-は.たす'), +('果', 'は.てる'), +('果', '-は.てる'), +('果', 'は.て'), +('加', 'くわ.える'), +('加', 'くわ.わる'), +('貨', 'たから'), +('械', 'かせ'), +('街', 'まち'), +('覚', 'おぼ.える'), +('覚', 'さ.ます'), +('覚', 'さ.める'), +('覚', 'さと.る'), +('各', 'おのおの'), +('管', 'くだ'), +('希', 'まれ'), +('希', 'こいねが.う'), +('共', 'とも'), +('共', 'とも.に'), +('共', '-ども'), +('観', 'み.る'), +('観', 'しめ.す'), +('泣', 'な.く'), +('旗', 'はた'), +('給', 'たま.う'), +('給', 'たも.う'), +('給', '-たま.え'), +('挙', 'あ.げる'), +('挙', 'あ.がる'), +('挙', 'こぞ.る'), +('鏡', 'かがみ'), +('関', 'せき'), +('関', '-ぜき'), +('関', 'かか.わる'), +('関', 'からくり'), +('関', 'かんぬき'), +('願', 'ねが.う'), +('願', '-ねがい'), +('求', 'もと.める'), +('機', 'はた'), +('潟', 'かた'), +('潟', '-がた'), +('漁', 'あさ.る'), +('器', 'うつわ'), +('競', 'きそ.う'), +('競', 'せ.る'), +('競', 'くら.べる'), +('好', 'この.む'), +('好', 'す.く'), +('好', 'よ.い'), +('好', 'い.い'), +('験', 'あかし'), +('験', 'しるし'), +('験', 'ため.す'), +('験', 'ためし'), +('功', 'いさお'), +('群', 'む.れる'), +('群', 'む.れ'), +('群', 'むら'), +('群', 'むら.がる'), +('建', 'た.てる'), +('建', 'た.て'), +('建', '-だ.て'), +('建', 'た.つ'), +('径', 'みち'), +('径', 'こみち'), +('径', 'さしわたし'), +('径', 'ただちに'), +('郡', 'こおり'), +('軍', 'いくさ'), +('芸', 'う.える'), +('芸', 'のり'), +('芸', 'わざ'), +('欠', 'か.ける'), +('欠', 'か.く'), +('極', 'きわ.める'), +('極', 'きわ.まる'), +('極', 'きわ.まり'), +('極', 'きわ.み'), +('極', 'き.める'), +('極', '-ぎ.め'), +('極', 'き.まる'), +('健', 'すこ.やか'), +('香', 'か'), +('香', 'かお.り'), +('香', 'かお.る'), +('候', 'そうろう'), +('熊', 'くま'), +('菜', 'な'), +('結', 'むす.ぶ'), +('結', 'ゆ.う'), +('結', 'ゆ.わえる'), +('最', 'もっと.も'), +('最', 'つま'), +('訓', 'おし.える'), +('訓', 'よ.む'), +('訓', 'くん.ずる'), +('差', 'さ.す'), +('差', 'さ.し'), +('埼', 'さき'), +('埼', 'さい'), +('埼', 'みさき'), +('札', 'ふだ'), +('崎', 'さき'), +('崎', 'さい'), +('崎', 'みさき'), +('固', 'かた.める'), +('固', 'かた.まる'), +('固', 'かた.まり'), +('固', 'かた.い'), +('刷', 'す.る'), +('刷', '-ず.り'), +('刷', '-ずり'), +('刷', 'は.く'), +('参', 'まい.る'), +('参', 'まい-'), +('参', 'まじわる'), +('参', 'みつ'), +('散', 'ち.る'), +('散', 'ち.らす'), +('散', '-ち.らす'), +('散', 'ち.らかす'), +('散', 'ち.らかる'), +('散', 'ち.らばる'), +('散', 'ばら'), +('散', 'ばら.ける'), +('産', 'う.む'), +('産', 'う.まれる'), +('産', 'うぶ-'), +('産', 'む.す'), +('松', 'まつ'), +('種', 'たね'), +('種', '-ぐさ'), +('笑', 'わら.う'), +('笑', 'え.む'), +('試', 'こころ.みる'), +('試', 'ため.す'), +('児', 'こ'), +('児', '-こ'), +('児', '-っこ'), +('辞', 'や.める'), +('辞', 'いな.む'), +('残', 'のこ.る'), +('残', 'のこ.す'), +('残', 'そこな.う'), +('残', 'のこ.り'), +('失', 'うしな.う'), +('失', 'う.せる'), +('焼', 'や.く'), +('焼', 'や.き'), +('焼', 'や.き-'), +('焼', '-や.き'), +('焼', 'や.ける'), +('祝', 'いわ.う'), +('唱', 'とな.える'), +('鹿', 'しか'), +('鹿', 'か'), +('治', 'おさ.める'), +('治', 'おさ.まる'), +('治', 'なお.る'), +('治', 'なお.す'), +('初', 'はじ.め'), +('初', 'はじ.めて'), +('初', 'はつ'), +('初', 'はつ-'), +('初', 'うい-'), +('初', '-そ.める'), +('初', '-ぞ.め'), +('司', 'つかさど.る'), +('周', 'まわ.り'), +('借', 'か.りる'), +('氏', 'うじ'), +('氏', '-うじ'), +('説', 'と.く'), +('節', 'ふし'), +('節', '-ぶし'), +('節', 'のっと'), +('然', 'しか'), +('然', 'しか.り'), +('然', 'しか.し'), +('然', 'さ'), +('戦', 'いくさ'), +('戦', 'たたか.う'), +('戦', 'おのの.く'), +('戦', 'そよ.ぐ'), +('戦', 'わなな.く'), +('縄', 'なわ'), +('縄', 'ただ.す'), +('城', 'しろ'), +('浅', 'あさ.い'), +('清', 'きよ.い'), +('清', 'きよ.まる'), +('清', 'きよ.める'), +('争', 'あらそ.う'), +('争', 'いか.でか'), +('折', 'お.る'), +('折', 'おり'), +('折', 'お.り'), +('折', '-お.り'), +('折', 'お.れる'), +('選', 'えら.ぶ'), +('選', 'え.る'), +('選', 'よ.る'), +('成', 'な.る'), +('成', 'な.す'), +('成', '-な.す'), +('席', 'むしろ'), +('井', 'い'), +('巣', 'す'), +('巣', 'す.くう'), +('省', 'かえり.みる'), +('省', 'はぶ.く'), +('照', 'て.る'), +('照', 'て.らす'), +('照', 'て.れる'), +('束', 'たば'), +('束', 'たば.ねる'), +('束', 'つか'), +('束', 'つか.ねる'), +('積', 'つ.む'), +('積', '-づ.み'), +('積', 'つ.もる'), +('積', 'つ.もり'), +('側', 'かわ'), +('側', 'がわ'), +('側', 'そば'), +('帯', 'お.びる'), +('帯', 'おび'), +('卒', 'そっ.する'), +('卒', 'お.える'), +('卒', 'お.わる'), +('卒', 'ついに'), +('卒', 'にわか'), +('静', 'しず-'), +('静', 'しず.か'), +('静', 'しず.まる'), +('静', 'しず.める'), +('倉', 'くら'), +('達', '-たち'), +('続', 'つづ.く'), +('続', 'つづ.ける'), +('続', 'つぐ.ない'), +('孫', 'まご'), +('置', 'お.く'), +('置', '-お.き'), +('仲', 'なか'), +('単', 'ひとえ'), +('底', 'そこ'), +('兆', 'きざ.す'), +('兆', 'きざ.し'), +('低', 'ひく.い'), +('低', 'ひく.める'), +('低', 'ひく.まる'), +('典', 'ふみ'), +('典', 'のり'), +('伝', 'つた.わる'), +('伝', 'つた.える'), +('伝', 'つた.う'), +('伝', 'つだ.う'), +('伝', '-づた.い'), +('伝', 'つて'), +('阪', 'さか'), +('奈', 'いかん'), +('奈', 'からなし'), +('標', 'しるべ'), +('標', 'しるし'), +('的', 'まと'), +('梅', 'うめ'), +('飛', 'と.ぶ'), +('飛', 'と.ばす'), +('飛', '-と.ばす'), +('沖', 'おき'), +('沖', 'おきつ'), +('沖', 'ちゅう.する'), +('沖', 'わく'), +('働', 'はたら.く'), +('梨', 'なし'), +('灯', 'ひ'), +('灯', 'ほ-'), +('灯', 'ともしび'), +('灯', 'とも.す'), +('灯', 'あかり'), +('必', 'かなら.ず'), +('熱', 'あつ.い'), +('栃', 'とち'), +('徒', 'いたずら'), +('徒', 'あだ'), +('努', 'つと.める'), +('富', 'と.む'), +('富', 'とみ'), +('夫', 'おっと'), +('夫', 'それ'), +('敗', 'やぶ.れる'), +('別', 'わか.れる'), +('別', 'わ.ける'), +('兵', 'つわもの'), +('辺', 'あた.り'), +('辺', 'ほと.り'), +('辺', '-べ'), +('付', 'つ.ける'), +('付', '-つ.ける'), +('付', '-づ.ける'), +('付', 'つ.け'), +('付', 'つ.け-'), +('付', '-つ.け'), +('付', '-づ.け'), +('付', '-づけ'), +('付', 'つ.く'), +('付', '-づ.く'), +('付', 'つ.き'), +('付', '-つ.き'), +('付', '-つき'), +('付', '-づ.き'), +('付', '-づき'), +('飯', 'めし'), +('便', 'たよ.り'), +('変', 'か.わる'), +('変', 'か.わり'), +('変', 'か.える'), +('包', 'つつ.む'), +('包', 'くる.む'), +('望', 'のぞ.む'), +('望', 'もち'), +('法', 'のり'), +('牧', 'まき'), +('利', 'き.く'), +('輪', 'わ'), +('無', 'な.い'), +('勇', 'いさ.む'), +('浴', 'あ.びる'), +('浴', 'あ.びせる'), +('末', 'すえ'), +('末', 'うら'), +('末', 'うれ'), +('満', 'み.ちる'), +('満', 'み.つ'), +('満', 'み.たす'), +('約', 'つづ.まる'), +('約', 'つづ.める'), +('約', 'つづま.やか'), +('要', 'い.る'), +('要', 'かなめ'), +('陸', 'おか'), +('類', 'たぐ.い'), +('良', 'よ.い'), +('良', '-よ.い'), +('良', 'い.い'), +('良', '-い.い'), +('養', 'やしな.う'), +('民', 'たみ'), +('未', 'いま.だ'), +('未', 'ま.だ'), +('未', 'ひつじ'), +('例', 'たと.える'), +('老', 'お.いる'), +('老', 'ふ.ける'), +('冷', 'つめ.たい'), +('冷', 'ひ.える'), +('冷', 'ひ.や'), +('冷', 'ひ.ややか'), +('冷', 'ひ.やす'), +('冷', 'ひ.やかす'), +('冷', 'さ.める'), +('冷', 'さ.ます'), +('連', 'つら.なる'), +('連', 'つら.ねる'), +('連', 'つ.れる'), +('連', '-づ.れ'), +('労', 'ろう.する'), +('労', 'いたわ.る'), +('労', 'いた.ずき'), +('労', 'ねぎら'), +('労', 'つか.れる'), +('労', 'ねぎら.う'), +('量', 'はか.る'), +('録', 'しる.す'), +('録', 'と.る'); + +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("移", 11, "shift, move, change, drift, catch (cold, fire), pass into", "禾", 2, 448, 5, true), +("囲", 7, "surround, besiege, store, paling, enclosure, encircle, preserve, keep", "囗", 2, 771, 4, true), +("因", 6, "cause, factor, be associated with, depend on, be limited to", "囗", 3, 636, 5, true), +("衛", 16, "defense, protection", "行", 1, 400, 5, true), +("営", 12, "occupation, camp, perform, build, conduct (business)", "口", 2, 303, 5, true), +("易", 8, "easy, ready to, simple, fortune-telling, divination", "日", 3, 571, 5, true), +("益", 10, "benefit, gain, profit, advantage", "皿", 1, 674, 5, true), +("圧", 5, "pressure, push, overwhelm, oppress, dominate", "土", 2, 718, 5, true), +("液", 11, "fluid, liquid, juice, sap, secretion", "水", 2, 1210, 5, true), +("演", 14, "performance, act, play, render, stage", "水", 3, 267, 5, true), +("往", 8, "journey, travel, chase away, let go, going, before, formerly", "彳", 1, 1421, 5, true), +("可", 5, "can, passable, mustn't, should not, do not", "口", NULL, 314, 5, true), +("桜", 10, "cherry", "木", 1, 1237, 5, true), +("仮", 6, "sham, temporary, interim, assumed (name), informal", "人", 1, 1039, 5, true), +("応", 7, "apply, answer, yes, OK, reply, accept", "心", 1, 266, 5, true), +("永", 5, "eternity, long, lengthy", "水", 2, 846, 5, true), +("価", 8, "value, price", "人", 1, 250, 5, true), +("確", 15, "assurance, firm, tight, hard, solid, confirm, clear, evident", "石", 3, 252, 5, true), +("過", 12, "overdo, exceed, go beyond, error", "辵", 3, 285, 5, true), +("格", 10, "status, rank, capacity, character, case (law, grammar)", "木", 3, 281, 5, true), +("河", 8, "river", "水", 2, 663, 5, true), +("快", 7, "cheerful, pleasant, agreeable, comfortable", "心", 2, 1074, 5, true), +("解", 13, "unravel, notes, key, explanation, understanding, untie, undo, solve, answer, cancel, absolve, explain, minute", "角", 3, 176, 5, true), +("久", 3, "long time, old story", "丿", 2, 688, 5, true), +("額", 18, "forehead, tablet, plaque, framed picture, sum, amount, volume", "頁", 2, 407, 5, true), +("喜", 12, "rejoice, take pleasure in", "口", 3, 769, 4, true), +("基", 11, "fundamentals, radical (chem), counter for machines, foundation", "土", 1, 241, 5, true), +("逆", 9, "inverted, reverse, opposite, wicked", "辵", 2, 683, 5, true), +("規", 11, "standard, measure", "見", 3, 349, 5, true), +("刊", 5, "publish, carve, engrave", "刀", 2, 855, 5, true), +("技", 7, "skill, art, craft, ability, feat, performance, vocation, arts", "手", 2, 434, 5, true), +("許", 11, "permit, approve", "言", 3, 720, 5, true), +("眼", 11, "eyeball", "目", 1, 1527, 5, true), +("義", 13, "righteousness, justice, morality, honor, loyalty, meaning", "羊", 1, 415, 5, true), +("禁", 13, "prohibition, ban, forbid", "示", 2, 681, 5, true), +("幹", 13, "tree trunk, main part, talent, capability", "干", 1, 364, 5, true), +("寄", 11, "draw near, stop in, bring near, gather, collect, send, forward", "宀", 3, 673, 5, true), +("均", 7, "level, average", "土", 2, 715, 5, true), +("救", 11, "salvation, save, help, rescue, reclaim", "攴", 1, 799, 4, true), +("型", 9, "mould, type, model", "土", 2, 482, 4, true), +("境", 14, "boundary, border, region", "土", 2, 346, 5, true), +("慣", 14, "accustomed, get used to, become experienced", "心", 3, 1177, 5, true), +("句", 5, "phrase, clause, sentence, passage, paragraph, counter for haiku", "口", 1, 1244, 5, true), +("紀", 9, "chronicle, account, narrative, history, annals, geologic period", "糸", 1, 780, 4, true), +("経", 11, "sutra, longitude, pass thru, expire, warp", "糸", 3, 79, 5, true), +("居", 8, "reside, to be, exist, live with", "尸", 3, 836, 5, true), +("潔", 15, "undefiled, pure, clean, righteous, gallant", "水", 1, 1595, 5, true), +("減", 12, "dwindle, decrease, reduce, decline, curtail, get hungry", "水", 2, 261, 5, true), +("険", 11, "precipitous, inaccessible place, impregnable position, steep place, sharp eyes", "阜", 3, 707, 5, true), +("旧", 5, "old times, old things, old friend, former, ex-", "日", 2, 549, 5, true), +("限", 9, "limit, restrict, to best of ability", "阜", 3, 405, 5, true), +("現", 11, "present, existing, actual", "玉", 3, 85, 5, true), +("個", 10, "individual, counter for articles", "人", 2, 451, 5, true), +("検", 12, "examination, investigate", "木", 1, 290, 5, true), +("故", 9, "happenstance, especially, intentionally, reason, cause, circumstances, the late, therefore, consequently", "攴", 1, 612, 5, true), +("耕", 10, "till, plow, cultivate", "耒", 2, 1568, 5, true), +("効", 8, "merit, efficacy, efficiency, benefit", "力", 2, 538, 5, true), +("護", 20, "safeguard, protect", "言", 1, 351, 5, true), +("件", 6, "affair, case, matter, item", "人", 3, 212, 5, true), +("厚", 9, "thick, heavy, rich, kind, cordial, brazen, shameless", "厂", 2, 768, 5, true), +("罪", 13, "guilt, sin, crime, fault, blame, offense", "网", 3, 732, 5, true), +("雑", 14, "miscellaneous", "隹", 3, 839, 5, true), +("講", 17, "lecture, club, association", "言", 2, 653, 5, true), +("鉱", 13, "mineral, ore", "金", 2, 1376, 5, true), +("混", 11, "mix, blend, confuse", "水", 2, 824, 5, true), +("航", 10, "navigate, sail, cruise, fly", "舟", 2, 665, 4, true), +("告", 7, "revelation, tell, inform, announce", "口", 3, 188, 4, true), +("興", 16, "entertain, revive, retrieve, interest, pleasure", "臼", 1, 734, 5, true), +("殺", 10, "kill, murder, butcher, slice off, split, diminish, reduce, spoil", "殳", 3, 581, 4, true), +("災", 7, "disaster, calamity, woe, curse, evil", "火", 1, 976, 5, true), +("財", 10, "property, money, wealth, assets", "貝", 3, 494, 5, true), +("賛", 15, "approve, praise, title or inscription on picture, assist, agree with", "貝", 3, 868, 5, true), +("採", 11, "pick, take, fetch, take up", "手", 2, 607, 5, true), +("構", 14, "posture, build, pretend", "木", 3, 316, 5, true), +("査", 9, "investigate", "木", 2, 184, 5, true), +("士", 3, "gentleman, scholar, samurai, samurai radical (no. 33)", "士", 1, 526, 4, true), +("際", 14, "occasion, side, edge, verge, dangerous, adventurous, indecent, time, when", "阜", 3, 183, 5, true), +("在", 6, "exist, outskirts, suburbs, located in", "土", 3, 211, 5, true), +("史", 5, "history, chronicle", "口", 2, 511, 4, true), +("支", 4, "branch, support, sustain, branch radical (no. 65)", "支", 3, 159, 5, true), +("再", 6, "again, twice, second time", "冂", 2, 275, 5, true), +("酸", 14, "acid, bitterness, sour, tart", "酉", 1, 1218, 5, true), +("妻", 8, "wife, spouse", "女", 3, 691, 5, true), +("師", 10, "expert, teacher, master, model, exemplar, army (incl. counter), war", "巾", 3, 563, 5, true), +("枝", 8, "bough, branch, twig, limb, counter for branches", "木", 2, 1401, 5, true), +("志", 7, "intention, plan, resolve, aspire, motive, hopes, shilling", "心", 1, 823, 5, true), +("飼", 13, "domesticate, raise, keep, feed", "食", 1, 1392, 5, true), +("資", 13, "assets, resources, capital, funds, data, be conducive to, contribute to", "貝", 3, 179, 5, true), +("似", 7, "becoming, resemble, counterfeit, imitate, suitable", "人", 3, 923, 5, true), +("質", 15, "substance, quality, matter, temperament", "貝", 4, 389, 5, true), +("示", 5, "show, indicate, point out, express, display", "示", 3, 237, 5, true), +("謝", 17, "apologize, thank, refuse", "言", 1, 1028, 5, true), +("修", 10, "discipline, conduct oneself well, study, master", "人", 1, 603, 5, true), +("識", 19, "discriminating, know, write", "言", 3, 496, 5, true), +("授", 11, "impart, instruct, grant, confer", "手", 1, 535, 5, true), +("舎", 8, "cottage, inn, hut, house, mansion", "人", 1, 1170, 5, true), +("術", 11, "art, technique, skill, means, trick, resources, magic", "行", 3, 350, 5, true), +("序", 7, "preface, beginning, order, precedence, occasion, chance, incidentally", "广", 1, 1160, 5, true), +("述", 8, "mention, state, speak, relate", "辵", 2, 379, 5, true), +("証", 12, "evidence, proof, certificate", "言", 1, 306, 5, true), +("招", 8, "beckon, invite, summon, engage", "手", 3, 840, 5, true), +("象", 12, "elephant, pattern after, imitate, image, shape, sign (of the times)", "豕", 2, 394, 4, true), +("準", 13, "semi-, correspond to, proportionate to, conform, imitate", "水", 2, 425, 5, true), +("状", 7, "status quo, conditions, circumstances, form, appearance", "犬", 3, 298, 5, true), +("税", 12, "tax, duty", "禾", 2, 289, 5, true), +("性", 8, "sex, gender, nature", "心", 3, 104, 5, true), +("政", 9, "politics, government", "攴", 3, 17, 5, true), +("制", 8, "system, law, rule", "刀", 3, 108, 5, true), +("職", 18, "post, employment, work", "耳", 3, 305, 5, true), +("接", 11, "touch, contact, adjoin, piece together", "手", 2, 523, 5, true), +("精", 14, "refined, ghost, fairy, energy, vitality, semen, excellence, purity, skill", "米", 3, 752, 5, true), +("績", 17, "exploits, achievements, unreeling cocoons", "糸", 2, 820, 5, true), +("勢", 13, "forces, energy, military strength", "力", 2, 260, 5, true), +("製", 14, "made in..., manufacture", "衣", 1, 488, 5, true), +("常", 11, "usual, ordinary, normal, common, regular, continually, always, long-lasting", "巾", 3, 293, 5, true), +("情", 11, "feelings, emotion, passion, sympathy, circumstances, facts", "心", 3, 235, 5, true), +("条", 7, "article, clause, counter for articles, clauses, paragraphs, etc., twig, item, stripe, streak", "木", 1, 363, 5, true), +("責", 11, "blame, condemn, censure", "貝", 3, 598, 5, true), +("織", 18, "weave, fabric", "糸", 1, 608, 5, true), +("賞", 15, "prize, reward, praise", "貝", 2, 426, 4, true), +("祖", 9, "ancestor, pioneer, founder", "示", 3, 1226, 5, true), +("団", 6, "group, association", "囗", 2, 213, 5, true), +("属", 12, "belong, genus, subordinate official, affiliated", "尸", 1, 912, 5, true), +("損", 13, "damage, loss, disadvantage, hurt, injure", "手", 2, 807, 5, true), +("則", 9, "rule, law, follow, based on, model after", "刀", 2, 753, 5, true), +("率", 11, "ratio, rate, proportion, %, factor, lead, spearhead, command", "玄", 1, 383, 5, true), +("築", 16, "fabricate, build, construct", "竹", 2, 821, 5, true), +("造", 10, "create, make, structure, physique", "辵", 2, 429, 5, true), +("増", 14, "increase, add, augment, gain, promote", "土", 3, 231, 5, true), +("絶", 12, "discontinue, sever, cut off, abstain, interrupt, suppress, be beyond, without match, peerless, unparalleled", "糸", 3, 784, 5, true), +("素", 10, "elementary, principle, naked, uncovered", "糸", 1, 660, 5, true), +("測", 12, "fathom, plan, scheme, measure", "水", 2, 761, 5, true), +("貯", 12, "savings, store, lay in, keep, wear mustache", "貝", 2, 1100, 4, true), +("設", 11, "establishment, provision, prepare", "言", 2, 145, 5, true), +("断", 11, "severance, decline, refuse, apologize, warn, dismiss, prohibit, decision, judgement, cutting", "斤", 3, 338, 5, true), +("停", 11, "halt, stopping", "人", 2, 733, 4, true), +("態", 14, "attitude, condition, figure, appearance, voice (of verbs)", "心", 1, 353, 5, true), +("総", 14, "general, whole, all, full, total", "糸", 2, 129, 5, true), +("像", 14, "statue, picture, image, figure, portrait", "人", 2, 856, 5, true), +("貸", 12, "lend", "貝", 4, 995, 5, true), +("提", 12, "propose, take along, carry in hand", "手", 1, 254, 5, true), +("適", 14, "suitable, occasional, rare, qualified, capable", "辵", 3, 670, 5, true), +("程", 12, "extent, degree, law, formula, distance, limits, amount", "禾", 3, 514, 5, true), +("張", 11, "lengthen, counter for bows & stringed instruments, stretch, spread, put up (tent)", "弓", 1, 403, 5, true), +("版", 8, "printing block, printing plate, edition, impression, label", "片", 2, 802, 5, true), +("犯", 5, "crime, sin, offense", "犬", 3, 874, 5, true), +("比", 4, "compare, race, ratio, Philippines", "比", 2, 329, 5, true), +("統", 12, "overall, relationship, ruling, governing", "糸", 1, 125, 5, true), +("判", 7, "judgement, signature, stamp, seal", "刀", 3, 197, 5, true), +("非", 8, "un-, mistake, negative, injustice, non-", "非", 3, 472, 5, true), +("任", 6, "responsibility, duty, term, entrust to, appoint", "人", 3, 217, 5, true), +("得", 11, "gain, get, find, earn, acquire, can, may, able to, profit, advantage, benefit", "彳", 3, 175, 4, true), +("能", 10, "ability, talent, skill, capacity", "肉", 3, 273, 5, true), +("費", 12, "expense, cost, spend, consume, waste", "貝", 3, 321, 4, true), +("導", 15, "guidance, leading, conduct, usher", "寸", 2, 354, 5, true), +("堂", 11, "public chamber, hall", "土", 4, 1010, 4, true), +("破", 10, "rend, rip, tear, break, destroy, defeat, frustrate", "石", 3, 590, 5, true), +("燃", 16, "burn, blaze, glow", "火", 2, 948, 5, true), +("肥", 8, "fertilizer, get fat, fertile, manure, pamper", "肉", 1, 1469, 5, true), +("独", 9, "single, alone, spontaneously, Germany", "犬", 1, 365, 5, true), +("銅", 14, "copper", "金", 2, 1505, 5, true), +("毒", 8, "poison, virus, venom, germ, harm, injury, spite", "毋", 2, 1419, 4, true), +("貧", 11, "poverty, poor", "貝", 3, 1211, 5, true), +("評", 12, "evaluate, criticism, comment", "言", 1, 454, 5, true), +("備", 12, "equip, provision, preparation", "人", 3, 356, 5, true), +("婦", 11, "lady, woman, wife, bride", "女", 3, 671, 5, true), +("布", 5, "linen, cloth, spread, distribute", "巾", 2, 877, 5, true), +("武", 8, "warrior, military, chivalry, arms", "止", 2, 387, 5, true), +("復", 12, "restore, return to, revert, resume", "彳", 2, 438, 5, true), +("編", 15, "compilation, knit, plait, braid, twist, editing, completed poem, part of a book", "糸", 2, 591, 5, true), +("綿", 14, "cotton", "糸", 2, 1495, 5, true), +("豊", 13, "bountiful, excellent, rich", "豆", 2, 762, 5, true), +("余", 7, "too much, myself, surplus, other, remainder", "人", 3, 680, 5, true), +("脈", 10, "vein, pulse, hope", "肉", 1, 1477, 4, true), +("保", 9, "protect, guarantee, keep, preserve, sustain, support", "人", 1, 146, 5, true), +("夢", 13, "dream, vision, illusion", "夕", 3, 943, 5, true), +("複", 14, "duplicate, double, compound, multiple", "衣", 2, 915, 5, true), +("留", 10, "detain, fasten, halt, stop", "田", 3, 731, 5, true), +("務", 11, "task, duties", "力", 3, 111, 5, true), +("輸", 16, "transport, send, be inferior", "車", 2, 371, 5, true), +("報", 12, "report, news, reward, retribution", "土", 3, 167, 5, true), +("弁", 5, "valve, petal, braid, speech, dialect, discrimination, dispose of, distinguish, conical cap", "廾", 1, 619, 5, true), +("迷", 9, "astray, be perplexed, in doubt, lost, err, illusion", "辵", 3, 942, 5, true), +("粉", 10, "flour, powder, dust", "米", 2, 1484, 4, true), +("領", 14, "jurisdiction, dominion, territory, fief, reign", "頁", 2, 138, 5, true), +("暴", 15, "outburst, rave, fret, force, violence, cruelty, outrage", "日", 2, 692, 5, true), +("略", 11, "abbreviation, omission, outline, shorten, capture, plunder", "田", 2, 774, 5, true), +("仏", 4, "Buddha, the dead, France", "人", 2, 819, 5, true), +("歴", 14, "curriculum, continuation, passage of time", "止", 2, 632, 4, true), +("防", 7, "ward off, defend, protect, resist", "阜", 2, 331, 5, true), +("貿", 12, "trade, exchange", "貝", 2, 652, 5, true), +("墓", 13, "grave, tomb", "土", 1, 1337, 5, true), +("容", 10, "contain, form, looks", "宀", 3, 264, 5, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("イ"), +("イ"), +("イン"), +("エイ"), +("エ"), +("エイ"), +("エキ"), +("イ"), +("エキ"), +("ヤク"), +("アツ"), +("エン"), +("オウ"), +("エキ"), +("エン"), +("オウ"), +("カ"), +("コク"), +("オウ"), +("ヨウ"), +("カ"), +("ケ"), +("オウ"), +("ヨウ"), +("-ノウ"), +("エイ"), +("カ"), +("ケ"), +("カク"), +("コウ"), +("カ"), +("カク"), +("コウ"), +("キャク"), +("ゴウ"), +("カ"), +("カイ"), +("カイ"), +("ゲ"), +("キュウ"), +("ク"), +("ガク"), +("キ"), +("キ"), +("ギャク"), +("ゲキ"), +("キ"), +("カン"), +("ギ"), +("キョ"), +("ガン"), +("ゲン"), +("ギ"), +("キン"), +("カン"), +("キ"), +("キン"), +("キュウ"), +("ケイ"), +("キョウ"), +("ケイ"), +("カン"), +("ク"), +("キ"), +("ケイ"), +("キョウ"), +("キン"), +("キョ"), +("コ"), +("ケツ"), +("ゲン"), +("ケン"), +("キュウ"), +("ゲン"), +("ゲン"), +("コ"), +("カ"), +("ケン"), +("コ"), +("コウ"), +("コウ"), +("ゴ"), +("ケン"), +("コウ"), +("ザイ"), +("ザツ"), +("ゾウ"), +("コウ"), +("コウ"), +("コン"), +("コウ"), +("コク"), +("コウ"), +("キョウ"), +("サツ"), +("サイ"), +("セツ"), +("サイ"), +("ザイ"), +("サイ"), +("ゾク"), +("サン"), +("サイ"), +("コウ"), +("サ"), +("シ"), +("サイ"), +("ザイ"), +("シ"), +("シ"), +("サイ"), +("サ"), +("サン"), +("サイ"), +("シ"), +("シ"), +("シ"), +("シ"), +("シ"), +("ジ"), +("シツ"), +("シチ"), +("チ"), +("ジ"), +("シ"), +("シャ"), +("シュウ"), +("シュ"), +("シキ"), +("ジュ"), +("シャ"), +("セキ"), +("ジュツ"), +("ジョ"), +("ジュツ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ゾウ"), +("ジュン"), +("ジョウ"), +("ゼイ"), +("セイ"), +("ショウ"), +("セイ"), +("ショウ"), +("セイ"), +("ショク"), +("ソク"), +("セツ"), +("ショウ"), +("セイ"), +("ショウ"), +("セキ"), +("セイ"), +("ゼイ"), +("セイ"), +("ジョウ"), +("ジョウ"), +("セイ"), +("ジョウ"), +("チョウ"), +("デキ"), +("セキ"), +("ショク"), +("シキ"), +("ショウ"), +("ソ"), +("ダン"), +("トン"), +("ゾク"), +("ショク"), +("ソン"), +("ソク"), +("ソツ"), +("リツ"), +("シュツ"), +("チク"), +("ゾウ"), +("ゾウ"), +("ゼツ"), +("ソ"), +("ス"), +("ソク"), +("チョ"), +("セツ"), +("ダン"), +("テイ"), +("タイ"), +("ソウ"), +("ゾウ"), +("タイ"), +("テイ"), +("チョウ"), +("ダイ"), +("テキ"), +("テイ"), +("チョウ"), +("ハン"), +("ハン"), +("ボン"), +("ヒ"), +("トウ"), +("ハン"), +("バン"), +("ヒ"), +("ニン"), +("トク"), +("ノウ"), +("ヒ"), +("ドウ"), +("ドウ"), +("ハ"), +("ネン"), +("ヒ"), +("ドク"), +("トク"), +("ドウ"), +("ドク"), +("ヒン"), +("ビン"), +("ヒョウ"), +("ビ"), +("フ"), +("フ"), +("ホ"), +("ブ"), +("ム"), +("フク"), +("ヘン"), +("メン"), +("ホウ"), +("ブ"), +("ヨ"), +("ミャク"), +("ホ"), +("ホウ"), +("ム"), +("ボウ"), +("フク"), +("リュウ"), +("ル"), +("ム"), +("ユ"), +("シュ"), +("ホウ"), +("ベン"), +("ヘン"), +("メイ"), +("フン"), +("リョウ"), +("ボウ"), +("バク"), +("リャク"), +("ブツ"), +("フツ"), +("レキ"), +("レッキ"), +("ボウ"), +("ボウ"), +("ボ"), +("ヨウ"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('移', 'イ'), +('囲', 'イ'), +('因', 'イン'), +('衛', 'エイ'), +('衛', 'エ'), +('営', 'エイ'), +('易', 'エキ'), +('易', 'イ'), +('益', 'エキ'), +('益', 'ヤク'), +('圧', 'アツ'), +('圧', 'エン'), +('圧', 'オウ'), +('液', 'エキ'), +('演', 'エン'), +('往', 'オウ'), +('可', 'カ'), +('可', 'コク'), +('桜', 'オウ'), +('桜', 'ヨウ'), +('仮', 'カ'), +('仮', 'ケ'), +('応', 'オウ'), +('応', 'ヨウ'), +('応', '-ノウ'), +('永', 'エイ'), +('価', 'カ'), +('価', 'ケ'), +('確', 'カク'), +('確', 'コウ'), +('過', 'カ'), +('格', 'カク'), +('格', 'コウ'), +('格', 'キャク'), +('格', 'ゴウ'), +('河', 'カ'), +('快', 'カイ'), +('解', 'カイ'), +('解', 'ゲ'), +('久', 'キュウ'), +('久', 'ク'), +('額', 'ガク'), +('喜', 'キ'), +('基', 'キ'), +('逆', 'ギャク'), +('逆', 'ゲキ'), +('規', 'キ'), +('刊', 'カン'), +('技', 'ギ'), +('許', 'キョ'), +('眼', 'ガン'), +('眼', 'ゲン'), +('義', 'ギ'), +('禁', 'キン'), +('幹', 'カン'), +('寄', 'キ'), +('均', 'キン'), +('救', 'キュウ'), +('型', 'ケイ'), +('境', 'キョウ'), +('境', 'ケイ'), +('慣', 'カン'), +('句', 'ク'), +('紀', 'キ'), +('経', 'ケイ'), +('経', 'キョウ'), +('経', 'キン'), +('居', 'キョ'), +('居', 'コ'), +('潔', 'ケツ'), +('減', 'ゲン'), +('険', 'ケン'), +('旧', 'キュウ'), +('限', 'ゲン'), +('現', 'ゲン'), +('個', 'コ'), +('個', 'カ'), +('検', 'ケン'), +('故', 'コ'), +('耕', 'コウ'), +('効', 'コウ'), +('護', 'ゴ'), +('件', 'ケン'), +('厚', 'コウ'), +('罪', 'ザイ'), +('雑', 'ザツ'), +('雑', 'ゾウ'), +('講', 'コウ'), +('鉱', 'コウ'), +('混', 'コン'), +('航', 'コウ'), +('告', 'コク'), +('興', 'コウ'), +('興', 'キョウ'), +('殺', 'サツ'), +('殺', 'サイ'), +('殺', 'セツ'), +('災', 'サイ'), +('財', 'ザイ'), +('財', 'サイ'), +('財', 'ゾク'), +('賛', 'サン'), +('採', 'サイ'), +('構', 'コウ'), +('査', 'サ'), +('士', 'シ'), +('際', 'サイ'), +('在', 'ザイ'), +('史', 'シ'), +('支', 'シ'), +('再', 'サイ'), +('再', 'サ'), +('酸', 'サン'), +('妻', 'サイ'), +('師', 'シ'), +('枝', 'シ'), +('志', 'シ'), +('飼', 'シ'), +('資', 'シ'), +('似', 'ジ'), +('質', 'シツ'), +('質', 'シチ'), +('質', 'チ'), +('示', 'ジ'), +('示', 'シ'), +('謝', 'シャ'), +('修', 'シュウ'), +('修', 'シュ'), +('識', 'シキ'), +('授', 'ジュ'), +('舎', 'シャ'), +('舎', 'セキ'), +('術', 'ジュツ'), +('序', 'ジョ'), +('述', 'ジュツ'), +('証', 'ショウ'), +('招', 'ショウ'), +('象', 'ショウ'), +('象', 'ゾウ'), +('準', 'ジュン'), +('状', 'ジョウ'), +('税', 'ゼイ'), +('性', 'セイ'), +('性', 'ショウ'), +('政', 'セイ'), +('政', 'ショウ'), +('制', 'セイ'), +('職', 'ショク'), +('職', 'ソク'), +('接', 'セツ'), +('接', 'ショウ'), +('精', 'セイ'), +('精', 'ショウ'), +('績', 'セキ'), +('勢', 'セイ'), +('勢', 'ゼイ'), +('製', 'セイ'), +('常', 'ジョウ'), +('情', 'ジョウ'), +('情', 'セイ'), +('条', 'ジョウ'), +('条', 'チョウ'), +('条', 'デキ'), +('責', 'セキ'), +('織', 'ショク'), +('織', 'シキ'), +('賞', 'ショウ'), +('祖', 'ソ'), +('団', 'ダン'), +('団', 'トン'), +('属', 'ゾク'), +('属', 'ショク'), +('損', 'ソン'), +('則', 'ソク'), +('率', 'ソツ'), +('率', 'リツ'), +('率', 'シュツ'), +('築', 'チク'), +('造', 'ゾウ'), +('増', 'ゾウ'), +('絶', 'ゼツ'), +('素', 'ソ'), +('素', 'ス'), +('測', 'ソク'), +('貯', 'チョ'), +('設', 'セツ'), +('断', 'ダン'), +('停', 'テイ'), +('態', 'タイ'), +('総', 'ソウ'), +('像', 'ゾウ'), +('貸', 'タイ'), +('提', 'テイ'), +('提', 'チョウ'), +('提', 'ダイ'), +('適', 'テキ'), +('程', 'テイ'), +('張', 'チョウ'), +('版', 'ハン'), +('犯', 'ハン'), +('犯', 'ボン'), +('比', 'ヒ'), +('統', 'トウ'), +('判', 'ハン'), +('判', 'バン'), +('非', 'ヒ'), +('任', 'ニン'), +('得', 'トク'), +('能', 'ノウ'), +('費', 'ヒ'), +('導', 'ドウ'), +('堂', 'ドウ'), +('破', 'ハ'), +('燃', 'ネン'), +('肥', 'ヒ'), +('独', 'ドク'), +('独', 'トク'), +('銅', 'ドウ'), +('毒', 'ドク'), +('貧', 'ヒン'), +('貧', 'ビン'), +('評', 'ヒョウ'), +('備', 'ビ'), +('婦', 'フ'), +('布', 'フ'), +('布', 'ホ'), +('武', 'ブ'), +('武', 'ム'), +('復', 'フク'), +('編', 'ヘン'), +('綿', 'メン'), +('豊', 'ホウ'), +('豊', 'ブ'), +('余', 'ヨ'), +('脈', 'ミャク'), +('保', 'ホ'), +('保', 'ホウ'), +('夢', 'ム'), +('夢', 'ボウ'), +('複', 'フク'), +('留', 'リュウ'), +('留', 'ル'), +('務', 'ム'), +('輸', 'ユ'), +('輸', 'シュ'), +('報', 'ホウ'), +('弁', 'ベン'), +('弁', 'ヘン'), +('迷', 'メイ'), +('粉', 'フン'), +('領', 'リョウ'), +('暴', 'ボウ'), +('暴', 'バク'), +('略', 'リャク'), +('仏', 'ブツ'), +('仏', 'フツ'), +('歴', 'レキ'), +('歴', 'レッキ'), +('防', 'ボウ'), +('貿', 'ボウ'), +('墓', 'ボ'), +('容', 'ヨウ'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('移動', 'イドウ', 'movement, transfer, migration, removal, travel, mobile, moving, traveling, travelling, roving'), +('移転', 'イテン', 'moving, relocation, change of address, transfer (of deeds, property, etc.), demise'), +('推移', 'スイイ', 'transition, change, progress, development, shift, passing (of time)'), +('転移', 'テンイ', 'moving (location, with the times, etc.), change, transition, metastasis, spread, transition (e.g. phase transition), transfer (of learning), transference (in psychoanalysis)'), +('囲炉裏', 'イロリ', 'sunken hearth, sunken fireplace'), +('囲碁', 'イゴ', 'go (board game)'), +('包囲', 'ホウイ', 'siege, encirclement, envelopment, surrounding, besiegement'), +('解囲', 'カイイ', 'breaking the enemy siege'), +('因', 'イン', 'cause, factor, hetu (direct cause, esp. as opposed to indirect conditions), the basis of one''s argument (in hetuvidya)'), +('因縁', 'インネン', 'fate, destiny, connection, tie, bond, origin, pretext, justification, hetu and prataya (direct causes and indirect conditions, which underlie the actions of all things)'), +('原因', 'ゲンイン', 'cause, origin, source'), +('起因', 'キイン', 'to be caused by, to result from, to arise from, to stem from, to be due to, cause, origin'), +('衛星', 'エイセイ', '(natural) satellite, moon, (artificial) satellite'), +('衛生', 'エイセイ', 'hygiene, sanitation, health'), +('護衛', 'ゴエイ', 'guard, convoy, escort'), +('自衛', 'ジエイ', 'self-defense, self-defence'), +('衛星', 'エイセイ', '(natural) satellite, moon, (artificial) satellite'), +('衛生', 'エイセイ', 'hygiene, sanitation, health'), +('近衛', 'コノエ', 'Imperial Guards'), +('兵衛', 'ヒョウエ', 'middle palace guard (ritsuryō system)'), +('栄養', 'エイヨウ', 'nutrition, nourishment'), +('営業', 'エイギョウ', 'business, trade, operations, sales'), +('経営', 'ケイエイ', 'management, administration, operation, running (a business), conducting'), +('運営', 'ウンエイ', 'management, administration, operation'), +('易', 'エキ', 'type of cleromancy divination (described in the Book of Changes) performed with long sticks, The Book of Changes, Yijing, I Ching'), +('易者', 'エキシャ', 'fortuneteller, diviner'), +('貿易', 'ボウエキ', 'trade (foreign)'), +('交易', 'コウエキ', 'trade, commerce'), +('易', 'イ', 'easiness'), +('易々', 'イイ', 'easy, simple, plain'), +('簡易', 'カンイ', 'simplicity, convenience, easiness, quasi-'), +('難易', 'ナンイ', 'difficulty, relative difficulty'), +('益', 'エキ', 'benefit, use, good, advantage, gain, profit, gains'), +('益する', 'エキスル', 'to benefit (the world, society, etc.), to be of use to, to be of service to'), +('増益', 'ゾウエキ', 'increased (profit)'), +('公益', 'コウエキ', 'public interest, public benefit, public good'), +('益', 'エキ', 'benefit, use, good, advantage, gain, profit, gains'), +('益体もない', 'ヤクタイモナイ', 'useless, worthless, absurd, baloney'), +('現世利益', 'ゲンセリヤク', 'benefits gained in this world through observance of the Buddhist teachings, happiness gained in this world through observance of the Buddhist teachings'), +('圧', 'アツ', 'pressure, force'), +('圧力', 'アツリョク', 'pressure, stress, pressure (e.g. political), coercion, arm-twisting'), +('抑圧', 'ヨクアツ', 'check, restraint, oppression, suppression'), +('制圧', 'セイアツ', 'gaining total control (of people or counties), suppression, oppression, control, mastery, ascendancy, supremacy'), +('圧状', 'オウジョウ', 'document written under duress, coercion'), +('液', 'エキ', 'liquid, fluid'), +('液体', 'エキタイ', 'liquid'), +('乳液', 'ニュウエキ', 'latex (milky fluid found in plants), milky lotion (cosmetic), body milk'), +('体液', 'タイエキ', 'body fluids'), +('演説', 'エンゼツ', 'speech, address'), +('演技', 'エンギ', 'acting, performance'), +('講演', 'コウエン', 'lecture, address, speech'), +('公演', 'コウエン', 'public performance, exhibition in a foreign country'), +('往復', 'オウフク', 'making a round trip, going and returning, coming and going, round-trip ticket, return ticket, correspondence, exchanging (letters), socializing, visiting one another'), +('往来', 'オウライ', 'coming and going, traffic, road, street, association, socializing, socialising, fellowship, mutual visits, recurring (e.g. thoughts), correspondence'), +('右往左往', 'ウオウサオウ', 'moving about in confusion, going every which way, going this way and that'), +('以往', 'イオウ', 'after this, from now on, hereafter, ago, since, before, previous'), +('可', 'カ', 'acceptable, satisfactory, allowed, permitted, approval, being in favour, (a) vote in favour, aye, Pass (grade), Fair, C, D'), +('可愛い', 'カワイイ', 'cute, adorable, charming, lovely, pretty, dear, precious, darling, pet, innocent, childlike, childish, lovable, dainty, little, tiny'), +('許可', 'キョカ', 'permission, approval, authorization, license'), +('認可', 'ニンカ', 'approval, license, licence, permission'), +('桜花', 'オウカ', 'cherry blossom'), +('桜花爛漫', 'オウカランマン', 'riot of cherry blossoms'), +('観桜', 'カンオウ', 'cherry blossom viewing'), +('仮', 'カリ', 'temporary, provisional, interim, fictitious, assumed (name), alias, hypothetical, theoretical'), +('仮定', 'カテイ', 'assumption, supposition, hypothesis, supposition'), +('仮', 'ケ', 'lacking substance and existing in name only, something without substance'), +('化粧', 'ケショウ', 'make-up, makeup, cosmetics, decoration, dressing, veneer'), +('虚仮', 'コケ', 'folly, fool'), +('応', 'オウ', 'agreement, affirmative, aye, yes, OK, okay, yeah, all right'), +('応じる', 'オウジル', 'to respond, to satisfy, to accept, to comply with, to apply for'), +('反応', 'ハンノウ', 'reaction, response'), +('対応', 'タイオウ', 'correspondence (to), equivalence, suitability, coordination, matching, being appropriate (for), dealing with, coping with, handling, response, reception, reaction, compatibility (with technology, software, etc.), capability, support (for)'), +('永久', 'エイキュウ', 'eternity, permanence, perpetuity, Eikyū era (1113.7.13-1118.4.3)'), +('永遠', 'エイエン', 'eternity, perpetuity, permanence, immortality'), +('永々', 'エイエイ', 'forever'), +('大永', 'タイエイ', 'Taiei era (1521.8.23-1528.8.20)'), +('価', 'カ', 'valence, valency'), +('価格', 'カカク', 'price, value, cost'), +('時価', 'ジカ', 'current value, price, market value'), +('薬価', 'ヤッカ', 'National Health Insurance drug price, NHI drug price'), +('確', 'カク', 'certain, definite'), +('確実', 'カクジツ', 'certain, sure, definite, reliable, sound, solid, safe, secure'), +('当確', 'トウカク', 'projected to win, sure to be elected, home free'), +('精確', 'セイカク', 'detailed and accurate, exhaustive and precise, meticulous, finely detailed'), +('過', 'カ', 'surplus-, excess-, over-, per- (chemical with more of a certain element than found in other compounds of the same constituents)'), +('過去', 'カコ', 'the past, bygone days, one''s past (that one would prefer remained secret), past (tense), preterit, preterite, previous life'), +('超過', 'チョウカ', 'excess, being more than'), +('一過', 'イッカ', 'passing (e.g. of a typhoon), going past'), +('格', 'カク', 'status, position, rank, method, way, style, rule, regulation, law, case, figure (form of a syllogism)'), +('格別', 'カクベツ', 'particular, special, exceptional, especial, particularly, especially, exceptionally'), +('合格', 'ゴウカク', 'passing (an exam), pass, success, passing grade, meeting (specifications, standards, etc.), passing (inspection), qualification, being found eligible'), +('降格', 'コウカク', 'demotion, relegation, downgrading'), +('格子', 'コウシ', 'lattice, latticework, window bars, grid, grating'), +('格子柄', 'コウシガラ', 'check pattern, checked pattern, checkered pattern, plaid, lattice design'), +('格', 'キャク', 'amendment (of the ritsuryō)'), +('格式', 'カクシキ', 'formality, social rules, social status, social standing, amendments and enforcement regulations (of the ritsuryō)'), +('弘仁格', 'コウニンキャク', 'Ordinance of the Konin Era'), +('格組', 'ゴウグミ', 'wooden framework'), +('格天井', 'ゴウテンジョウ', 'coffered ceiling'), +('川', 'カワ', 'river, stream, River, the ... river'), +('河', 'ホー', 'discarded tiles, discards'), +('星河', 'セイガ', 'Milky Way'), +('決河', 'ケッカ', 'river breaking through (its dikes)'), +('快', 'カイ', 'pleasure, delight, enjoyment'), +('快適', 'カイテキ', 'pleasant, agreeable, comfortable'), +('全快', 'ゼンカイ', 'complete recovery of health'), +('豪快', 'ゴウカイ', 'hearty, tremendous, magnificent, glorious, splendid, heroic, stirring'), +('解', 'カイ', 'solution (of an equation, inequality, etc.), root (e.g. of a polynomial), solution (to a given problem), answer, explanation, interpretation'), +('解決', 'カイケツ', 'settlement, solution, resolution'), +('理解', 'リカイ', 'understanding, comprehension, appreciation, sympathy'), +('誤解', 'ゴカイ', 'misunderstanding'), +('解熱', 'ゲネツ', 'lowering a fever, alleviation of fever'), +('解脱', 'ゲダツ', 'liberation from earthly desires and the woes of man, deliverance of one''s soul, moksha, mukti, vimukti'), +('和解', 'ワカイ', 'reconciliation, amicable settlement, accommodation, compromise, mediation, rapprochement, court-mediated settlement, translation of a foreign language into Japanese'), +('雪消', 'ユキゲ', 'snow melting, water from melting snow'), +('旧痾', 'キュウア', 'persistent disease'), +('久安', 'キュウアン', 'Kyūan era (1145.7.22-1151.1.26)'), +('恒久', 'コウキュウ', 'permanence, perpetuity'), +('耐久', 'タイキュウ', 'endurance, persistence'), +('久留子', 'クルス', 'cross sign'), +('久遠', 'クオン', 'eternity'), +('天邪鬼', 'アマノジャク', 'perversity, perverse person, contrary person, contrarian, antagonistic demon in Japanese folklore, demon under the feet of temple guardian statues'), +('額', 'ガク', '(picture) frame, framed picture, amount (esp. of money), sum'), +('額面', 'ガクメン', 'face value, par'), +('増額', 'ゾウガク', 'increase (in an amount of money)'), +('高額', 'コウガク', 'large sum (of money), large amount, large denomination (banknote, etc.)'), +('喜劇', 'キゲキ', 'comedy, funny show'), +('喜怒哀楽', 'キドアイラク', 'human emotions (joy, anger, grief and pleasure)'), +('狂喜', 'キョウキ', 'wild joy, ecstasy'), +('歓喜', 'カンキ', 'delight, great joy'), +('基', 'キ', 'group, (free) radical, counter for installed or mounted objects (e.g. stone lanterns, gravestones, satellites)'), +('基本', 'キホン', 'basics, fundamentals, basis, foundation'), +('塩基', 'エンキ', 'base'), +('開基', 'カイキ', 'founding (of a temple or sect), founder, laying the foundation (for something), base (topology), basis'), +('逆', 'ギャク', 'reverse, opposite, converse (of a hypothesis, etc.), inverse (function)'), +('逆転', 'ギャクテン', 'reversal (of a situation), turnaround, turnabout, turning the tables, sudden change, reversal (of direction of rotation)'), +('反逆', 'ハンギャク', 'treason, treachery, mutiny, rebellion, insurrection'), +('可逆', 'カギャク', 'reversible, invertible'), +('逆鱗に触れる', 'ゲキリンニフレル', 'to infuriate one''s superior, to incur the anger of one''s boss, to bring (a superior''s) wrath down upon one, to incur the Imperial wrath, to offend the Emperor'), +('逆旅', 'ゲキリョ', 'inn'), +('莫逆', 'バクギャク', 'cordial relations'), +('乱逆', 'ランギャク', 'rebellion'), +('規則', 'キソク', 'rule, regulation'), +('基準', 'キジュン', 'standard, basis, criterion, norm, reference, datum'), +('正規', 'セイキ', 'regular, normal, formal, legal, established, legitimate'), +('内規', 'ナイキ', 'private regulations, bylaws, internal rules, tradition'), +('刊', 'カン', 'publication, edition (e.g. morning, evening, special), published in (year), publication frequency (e.g. daily, monthly)'), +('刊行', 'カンコウ', 'publication, issue'), +('創刊', 'ソウカン', 'foundation (of a newspaper, magazine, etc.), starting, launching, first publication'), +('発刊', 'ハッカン', 'publish, start (new) publication'), +('技', 'ワザ', 'technique, art, skill, move'), +('技術', 'ギジュツ', 'technology, engineering, technique, skill, art, craft'), +('演技', 'エンギ', 'acting, performance'), +('球技', 'キュウギ', 'ball game (e.g. baseball, tennis, soccer), billiards'), +('許可', 'キョカ', 'permission, approval, authorization, license'), +('許容', 'キョヨウ', 'permission, allowance, acceptance, tolerance, pardon'), +('免許', 'メンキョ', 'license, licence, permission, permit, certificate'), +('特許', 'トッキョ', 'patent, special permission, licence (license), concession, franchise, charter, proprietary'), +('眼', 'ガン', 'eye, insight, vision, power of observation, gist, main point, hole'), +('眼鏡', 'メガネ', 'glasses, eyeglasses, spectacles, judgment, judgement, discrimination, discernment, insight'), +('検眼', 'ケンガン', 'eye examination, optometry'), +('主眼', 'シュガン', 'main purpose, chief aim, focus, main point, gist, essence'), +('慈眼', 'ジゲン', 'merciful eye (of a Buddha or a bodhisattva watching humanity)'), +('開眼', 'カイガン', 'enlightenment, spiritual awakening, opening one''s eyes to the truth, reaching one''s peak (as a performer, etc.), reaching the highest echelons, gaining eyesight, restoring eyesight, opening the eyes, filling out the eyes (of a Buddha) as the last step of consecrating a new statue or picture, ceremony where a newly made image or idol is consecrated'), +('義', 'ギ', 'morality, righteousness, justice, honour (honor), meaning, teachings, doctrine, nonconsanguineous relationship (i.e. of in-laws), prosthesis'), +('義務', 'ギム', 'duty, obligation, responsibility'), +('講義', 'コウギ', 'lecture'), +('定義', 'テイギ', 'definition'), +('禁', 'キン', 'ban (e.g. on smoking), prohibition'), +('禁煙', 'キンエン', 'abstaining from smoking, quitting smoking, prohibition of smoking, No Smoking, Smoking Prohibited'), +('監禁', 'カンキン', 'confinement'), +('解禁', 'カイキン', 'lifting a ban, raising an embargo, opening a season (hunting, fishing, etc.), publishing contents, revealing information'), +('幹', 'ミキ', '(tree) trunk, (arrow) shaft, (tool) handle, backbone, base'), +('幹事', 'カンジ', 'executive secretary, coordinator, organizer, person in charge of making arrangements'), +('主幹', 'シュカン', 'chief editor, managing editor, manager, person in charge'), +('基幹', 'キカン', 'mainstay, nucleus, key'), +('寄付', 'キフ', 'contribution, donation'), +('寄贈', 'キゾウ', 'donation, presentation, gift'), +('数寄', 'スキ', 'refined taste, elegant pursuits'), +('均衡', 'キンコウ', 'equilibrium, balance'), +('均等', 'キントウ', 'equality, uniformity, evenness'), +('100均', 'ヒャッキン', 'hundred-yen store, 100 yen shop'), +('移動平均', 'イドウヘイキン', 'moving average'), +('救助', 'キュウジョ', 'relief, aid, rescue'), +('救済', 'キュウサイ', 'relief, aid, help, rescue, (religious) salvation, (Christian) grace'), +('匡救', 'キョウキュウ', 'delivering from sin, succor, succour'), +('型式', 'カタシキ', 'model (e.g. of a vehicle), type'), +('文型', 'ブンケイ', 'sentence pattern'), +('造形', 'ゾウケイ', 'molding, moulding, shaping, modelling (i.e. plastic arts), modeling'), +('境', 'サカイ', 'border, boundary, turning point, watershed, area, region, spot, space, environment, psychological state, mental state, cognitive object, something perceptible by the sense organs or mind'), +('境界', 'キョウカイ', 'boundary, border, limit, bounds, frontier'), +('自然環境', 'シゼンカンキョウ', 'natural environment, (the) environment'), +('越境', 'エッキョウ', 'crossing a border (illegally), border violation, border transgression'), +('境内', 'ケイダイ', 'grounds (esp. of shrines and temples), compound, churchyard, precincts'), +('境界', 'ケイカイ', 'land boundary, border (between properties)'), +('慣習', 'カンシュウ', 'custom, convention, common practice, becoming accustomed (to)'), +('慣行', 'カンコウ', 'customary practice, habit, traditional event'), +('旧慣', 'キュウカン', 'old customs'), +('購買習慣', 'コウバイシュウカン', 'buying habit'), +('句', 'ク', 'section (i.e. of text), sentence, passage, paragraph, phrase, verse (of 5 or 7 mora in Japanese poetry; of 4, 5, or 7 characters in Chinese poetry), haiku, first 17 morae of a renga, etc., maxim, saying, idiom, expression'), +('区切る', 'クギル', 'to demarcate, to delimit, to divide (an area), to mark off, to cut off, to punctuate, to put an end to (e.g. a sentence), to insert pauses or breaks (e.g. when reading aloud)'), +('決まり文句', 'キマリモンク', 'set phrase, stock phrase, conventional expression, usual wording, cliché, clichéd line'), +('名詞句', 'メイシク', 'noun phrase, NP'), +('紀', 'キ', 'period, Nihon-shoki'), +('記念', 'キネン', 'commemoration, celebration, remembrance, memory, honoring the memory of, memento, souvenir, keepsake'), +('デボン紀', 'デボンキ', 'Devonian period'), +('前世紀', 'ゼンセイキ', 'last century, previous century, ancient times, old times'), +('経', 'ケイ', 'warp (weaving), longitude, scripture, sutra, trans-'), +('経済', 'ケイザイ', 'economy, economics, finance, (one''s) finances, financial circumstances, being economical, economy, thrift'), +('月経', 'ゲッケイ', 'menstruation, menstrual period'), +('政経', 'セイケイ', 'politics and economics'), +('経', 'キョウ', 'sutra, Buddhist scriptures'), +('経典', 'キョウテン', 'sacred books, sutras, scriptures, Bible'), +('説経', 'セッキョウ', 'lecture on the sutras'), +('法華経', 'ホケキョウ', 'Lotus Sutra'), +('経行', 'キンヒン', 'meditation performed while walking'), +('看経', 'カンキン', 'silent reading of sutra'), +('居', 'キョ', 'residence'), +('居住', 'キョジュウ', 'residence, abode, dwelling'), +('同居', 'ドウキョ', 'living together, coexistence'), +('別居', 'ベッキョ', 'separation, living apart'), +('居士', 'コジ', 'grhapati (layman; sometimes used as a posthumous suffix), private-sector scholar'), +('廉潔', 'レンケツ', 'honest, incorruptible, integrity'), +('貞潔', 'テイケツ', 'chastity, purity'), +('減', 'ゲン', 'reduction, decrease, subtraction, reduction of penalty (under the ritsuryō codes)'), +('減少', 'ゲンショウ', 'decrease, reduction, decline'), +('加減', 'カゲン', 'degree, extent, amount, balance, state, condition, (health) condition, state of health, adjustment, moderation, regulation, addition and subtraction, slight sign of ..., slight state of ..., just right for ...'), +('削減', 'サクゲン', 'cut, reduction, curtailment'), +('険', 'ケン', 'steepness, steep place, harsh (look), sharp (tongue)'), +('険悪', 'ケンアク', 'dangerous, perilous, threatening, stormy, volatile, tense, critical, serious, stern (expression), hostile (attitude), sharp, harsh'), +('冒険', 'ボウケン', 'adventure, venture, venture which is unlikely to succeed, risky attempt, danger, hazard, risk'), +('探検', 'タンケン', 'exploration, expedition'), +('旧', 'キュウ', 'old, former, ex-, the old, old things, old customs, old times, bygone days, Japan''s old (lunisolar) calendar'), +('故郷', 'フルサト', 'hometown, birthplace, native place, one''s old home, ruins, historic remains'), +('復旧', 'フッキュウ', 'restoration, restitution, rehabilitation'), +('新旧', 'シンキュウ', 'new and old, incoming and outgoing'), +('限界', 'ゲンカイ', 'limit, bound'), +('限度', 'ゲンド', 'limit, bounds'), +('制限', 'セイゲン', 'restriction, restraint, limitation, limit'), +('賞味期限', 'ショウミキゲン', 'best-before date (on food), use-by date, expiry date, expiration date'), +('現', 'ゲン', 'present (e.g. government, administration), current, existing'), +('現金', 'ゲンキン', 'cash, ready money, money on hand, currency, mercenary, self-interested, calculating'), +('実現', 'ジツゲン', 'implementation (e.g. of a system), materialization, materialisation, realization, realisation, actualization, actualisation'), +('出現', 'シュツゲン', 'appearance, arrival, make one''s appearance'), +('個', 'コ', 'counter for articles, counter for military units, individual'), +('個人', 'コジン', 'individual, private person, personal, private'), +('好個', 'コウコ', 'excellent, fine, pertinent'), +('複数個', 'フクスウコ', 'multitude'), +('箇', 'カ', 'counter for the ichi-ni-san counting system (usu. directly preceding the item being counted), a noun read using its on-yomi'), +('箇所', 'カショ', 'place, point, part, spot, area, passage, portion, counter for places, parts, passages, etc.'), +('検討', 'ケントウ', 'consideration, examination, investigation, study, scrutiny, discussion, analysis, review'), +('検査', 'ケンサ', 'inspection (e.g. customs, factory), examination, test, check, scan (e.g. MRI, PET), audit'), +('点検', 'テンケン', 'inspection, examination, checking'), +('探検', 'タンケン', 'exploration, expedition'), +('故', 'コ', 'the late, the deceased'), +('殊更', 'コトサラ', 'intentionally, deliberately, designedly, on purpose, especially, particularly'), +('物故', 'ブッコ', 'death (of a person)'), +('人身事故', 'ジンシンジコ', 'accident resulting in personal injury or death (esp. traffic, rail, etc.)'), +('耕作', 'コウサク', 'cultivation, farming'), +('耕地', 'コウチ', 'arable land'), +('農耕', 'ノウコウ', 'farming, agriculture, cultivation'), +('水耕', 'スイコウ', 'hydroponics'), +('効', 'コウ', 'efficacy, benefit, efficiency, effect, result, success'), +('効果', 'コウカ', 'effect, effectiveness, efficacy, result, effects (e.g. sound effects, visual effects, special effects)'), +('実効', 'ジッコウ', 'practical effect, efficacy, efficiency'), +('時効', 'ジコウ', 'statute of limitations, lapse of rights after a period of time, prescription (including acquisitive and extinctive prescription), becoming invalid or void after a set time, ageing, aging'), +('護謨', 'ゴム', 'gum, rubber, eraser, condom'), +('護衛', 'ゴエイ', 'guard, convoy, escort'), +('保護', 'ホゴ', 'protection, safeguard, guardianship, custody, patronage, preservation, conservation'), +('介護', 'カイゴ', 'nursing, care, caregiving, caring'), +('件', 'ケン', 'matter, affair, case, item, subject, counter for (received) emails, text messages, voicemail messages, etc., counter for accounts (on a website, email service, etc.)'), +('件数', 'ケンスウ', 'number of events (e.g. accidents, crimes, meetings, housing starts, hits on a web page)'), +('立件', 'リッケン', 'assembling a criminal case'), +('ウォーターゲート事件', 'ウォーターゲートジケン', 'Watergate scandal (1972-1975)'), +('厚生労働省', 'コウセイロウドウショウ', 'Ministry of Health, Labour and Welfare'), +('厚顔無恥', 'コウガンムチ', 'shameless, brazen and unscrupulous'), +('肥厚', 'ヒコウ', 'thickening (of organic tissue, e.g. skin), hypertrophy'), +('重厚', 'ジュウコウ', 'profound, deep, grave, solid, dignified, stately, solemn, massive, composed'), +('罪', 'ザイ', 'crime'), +('罪悪', 'ザイアク', 'crime, sin, vice'), +('謝罪', 'シャザイ', 'apology'), +('同罪', 'ドウザイ', 'same crime, being equally guilty, bearing the same amount of responsibility'), +('雑', 'ザツ', 'rough, crude, sloppy, messy, miscellaneous'), +('雑音', 'ザツオン', 'noise (usu. unpleasant), interference (e.g. radio), static, noise, gossip, irresponsible criticism'), +('猥雑', 'ワイザツ', 'vulgar, indecent, crude, sordid, jumbled (of a place), disorderly, chaotic, messy'), +('交雑', 'コウザツ', 'hybridization, crossing, mixing'), +('雑', 'ゾウ', 'miscellany (classification of Japanese poetry unrelated to the seasons or to love)'), +('雑巾', 'ゾウキン', 'house-cloth, dust cloth'), +('講', 'コウ', '(Buddhist) lecture meeting, religious association, mutual assistance association (i.e. for financial assistance)'), +('講義', 'コウギ', 'lecture'), +('休講', 'キュウコウ', 'cancellation (of a lecture, class, etc.)'), +('聴講', 'チョウコウ', 'lecture attendance, auditing'), +('鉱物', 'コウブツ', 'mineral'), +('鉱山', 'コウザン', 'mine (ore)'), +('廃坑', 'ハイコウ', 'abandoned mine, disused mine'), +('採鉱', 'サイコウ', 'mining'), +('混', 'コン', '(traffic) congestion'), +('混血', 'コンケツ', 'mixed race, mixed parentage'), +('麻混', 'アサコン', 'hemp blend, linen blend'), +('滾々', 'コンコン', 'copious (flowing)'), +('航空', 'コウクウ', 'aviation, flying'), +('航海', 'コウカイ', '(sea) voyage, navigation, sailing, passage, cruise'), +('運航', 'ウンコウ', 'operating (e.g. ships, aircraft)'), +('寄港', 'キコウ', 'stopping at a port'), +('告白', 'コクハク', 'confession (to a crime, wrongdoing, etc.), admission, professing one''s feelings (to someone one wants to go out with), declaration of love, profession (of faith), confession (of sins)'), +('告知', 'コクチ', 'notice, announcement'), +('広告', 'コウコク', 'advertisement, advertising, announcement, notice'), +('警告', 'ケイコク', 'warning, advice'), +('興奮', 'コウフン', 'excitement, stimulation, agitation, arousal'), +('興行', 'コウギョウ', 'show, performance, act, entertainment industry, show business'), +('振興', 'シンコウ', 'promotion, encouragement'), +('復興', 'フッコウ', 'revival, reconstruction, restoration, rebuilding, recovery, renaissance'), +('興', 'キョウ', 'interest, entertainment, pleasure, implicit comparison (style of the Shi Jing)'), +('興味', 'キョウミ', 'interest (in something), curiosity (about something), zest (for)'), +('余興', 'ヨキョウ', 'performance (at a party or banquet, etc.), side show, entertainment'), +('一興', 'イッキョウ', 'amusement, fun, brief entertainment'), +('殺人', 'サツジン', 'murder, homicide, manslaughter'), +('殺意', 'サツイ', 'intent to kill, intent to murder, urge to kill, murderous impulse'), +('暗殺', 'アンサツ', 'assassination'), +('射殺', 'シャサツ', 'shooting to death'), +('相殺', 'ソウサイ', 'offset, offsetting each other, cancelling each other out, counterbalancing, set-off, setoff, killing each other'), +('減殺', 'ゲンサイ', 'lessening, diminishing, reducing'), +('殺害', 'サツガイ', 'killing, murder'), +('刹那', 'セツナ', 'moment, instant, kshana, duration of a single mental event (about 1/75 second), shortest possible interval of time'), +('歳殺', 'サイセツ', 'Saisetsu, one of the eight gods of the koyomi'), +('災難', 'サイナン', 'calamity, misfortune, disaster'), +('災害', 'サイガイ', 'calamity, disaster, misfortune'), +('戦災', 'センサイ', 'war damage'), +('阪神大震災', 'ハンシンダイシンサイ', 'Great Hanshin Earthquake (January 17, 1995)'), +('財', 'ザイ', 'fortune, riches, goods, incorporated foundation'), +('財産', 'ザイサン', 'property, fortune, assets'), +('人材', 'ジンザイ', 'capable person, talented person, human resources, personnel'), +('文化財', 'ブンカザイ', 'cultural assets, cultural property'), +('財布', 'サイフ', 'purse, handbag, wallet'), +('財布の紐を握る', 'サイフノヒモヲニギル', 'to hold the purse strings'), +('賛', 'サン', 'praise, tribute, inscription (on a painting)'), +('賛成', 'サンセイ', 'approval, agreement, support, favour, favor'), +('賞賛', 'ショウサン', 'praise, admiration, commendation, approbation'), +('自賛', 'ジサン', 'self-praise, praising oneself'), +('採点', 'サイテン', 'marking, grading, scoring'), +('採決', 'サイケツ', 'vote, ballot, division'), +('伐採', 'バッサイ', 'felling timber, cutting down trees, logging, lumbering'), +('掘採', 'クッサイ', 'mining'), +('構成', 'コウセイ', 'composition, construction, formation, makeup, structure, organization, organisation'), +('構造', 'コウゾウ', 'structure, construction, makeup, framework, organization, pattern'), +('機構', 'キコウ', 'mechanism, machinery, system, structure, organization'), +('虚構', 'キョコウ', 'fiction, fabrication, concoction'), +('査定', 'サテイ', 'assessment (of value, damages, etc.), revision (of a budget)'), +('査察', 'ササツ', 'inspection (for compliance), investigation (tax, etc.)'), +('検査', 'ケンサ', 'inspection (e.g. customs, factory), examination, test, check, scan (e.g. MRI, PET), audit'), +('調査', 'チョウサ', 'investigation, examination, inquiry, enquiry, survey'), +('士', 'シ', 'man (esp. one who is well-respected), samurai, person (in a certain profession, esp. licensed), member'), +('士官', 'シカン', 'officer'), +('騎士', 'キシ', 'samurai on horseback, (medieval) knight'), +('学士', 'ガクシ', 'university graduate, bachelor, bachelor''s degree'), +('際', 'サイ', 'on the occasion of, circumstances, juncture'), +('際限', 'サイゲン', 'limits, end, bounds'), +('交際', 'コウサイ', 'company, friendship, association, society, acquaintance, (romantic) involvement, dating'), +('学際', 'ガクサイ', 'interdisciplinary'), +('在', 'ザイ', 'the country, countryside, outskirts, suburbs, presence, being in attendance, situated in, staying in, resident in'), +('在学', 'ザイガク', 'attending (school, college, etc.), being enrolled, being a student'), +('現在', 'ゲンザイ', 'the present, present time, now, as of, present tense, this world, this life, to actually exist, to exist right now, to exist right in front of one'), +('滞在', 'タイザイ', 'stay, sojourn'), +('史', 'シ', 'history'), +('史学', 'シガク', 'study of history'), +('女史', 'ジョシ', 'lady (of high social status; e.g. scholar, artist, critic, politician), Ms, Mrs, Miss'), +('通史', 'ツウシ', 'overview of history'), +('支', 'シ', 'China'), +('支給', 'シキュウ', 'provision, supply, payment, allowance, grant'), +('気管支', 'キカンシ', 'bronchial tube'), +('干支', 'エト', 'sexagenary cycle, 60-term cycle of 12 zodiac animals combined with 5 elements in the traditional Chinese calendar; currently used in Japan for years, historically also for days, 12-year Chinese zodiac'), +('再', 'サイ', 're-, again, repeated, deutero-, deuto-, deuter-'), +('再三', 'サイサン', 'again and again, repeatedly'), +('一再', 'イッサイ', 'once or twice, repeatedly'), +('再', 'サイ', 're-, again, repeated, deutero-, deuto-, deuter-'), +('再来年', 'サライネン', 'year after next'), +('酸', 'サン', 'acid, sourness, sour taste'), +('酸素', 'サンソ', 'oxygen (O)'), +('炭酸', 'タンサン', 'carbonic acid, carbonated water, baking soda, sodium carbonate'), +('アミノ酸', 'アミノサン', 'amino acid'), +('妻', 'サイ', 'one''s wife'), +('妻子', 'サイシ', 'wife and children, wife'), +('先妻', 'センサイ', 'former wife, late wife'), +('後妻', 'ゴサイ', 'second wife'), +('師', 'シ', 'teacher, master, mentor, religious leader, specialist, five-battalion brigade comprising 2500 men (Zhou-dynasty Chinese army)'), +('獅子', 'シシ', 'lion, left-hand guardian dog at a Shinto shrine'), +('医師', 'イシ', 'doctor, physician'), +('講師', 'コウシ', 'speaker, lecturer, lecturer (at a university or college), instructor, part-time teacher, tutor (at a cram school)'), +('枝', 'シ', 'counter for long, thin things (i.e. swords)'), +('枝葉末節', 'シヨウマッセツ', 'unimportant details, inessentials'), +('整枝', 'セイシ', 'training (branches in horticulture)'), +('茘枝', 'レイシ', 'litchi (Nephelium litchi), lychee, lichee, litchi nut, bitter melon (Momordica charantia), bitter gourd, Thais bronni (species of muricid gastropod)'), +('志望', 'シボウ', 'wish, desire, ambition'), +('志向', 'シコウ', 'intention, aim, preference (for), orientation (towards a goal)'), +('遺志', 'イシ', 'wishes of a deceased person, dying wish'), +('立志', 'リッシ', 'fixing one''s aim in life, deciding one''s life goal'), +('飼料', 'シリョウ', 'fodder, feed'), +('飼育', 'シイク', 'breeding, raising, rearing'), +('資', 'シ', 'funds, capital, material, basis, character, qualities, disposition'), +('資源', 'シゲン', 'resources'), +('融資', 'ユウシ', 'financing, loan'), +('投資', 'トウシ', 'investment'), +('似我蜂', 'ジガバチ', 'red-banded sand wasp (Ammophila sabulosa), thread-waisted wasp (any wasp of family Sphecidae, incl. digger wasps and mud daubers)'), +('類似', 'ルイジ', 'resemblance, similarity, likeness, analogy'), +('疑似', 'ギジ', 'pseudo, quasi, false, para-, mock, sham, suspected (case, e.g. of disease)'), +('質', 'シツ', 'quality, value, nature, inherent quality, character, logical quality'), +('質問', 'シツモン', 'question, inquiry, enquiry'), +('抗生物質', 'コウセイブッシツ', 'antibiotic, antibiotics'), +('タンパク質', 'タンパクシツ', 'protein'), +('質', 'シチ', 'pawn, pawned article, pledge, security, guarantee'), +('質屋', 'シチヤ', 'pawnshop'), +('入質', 'ニュウシチ', 'pawning'), +('流質', 'リュウシチ', 'forfeiting a pawned article'), +('入質', 'ニュウシチ', 'pawning'), +('流質', 'リュウシチ', 'forfeiting a pawned article'), +('示威運動', 'ジイウンドウ', 'demonstration, parade, show of strength'), +('示談', 'ジダン', 'settlement out of court, private settlement'), +('掲示', 'ケイジ', 'notice, bulletin, post, posting, placard'), +('提示', 'テイジ', 'presentation, exhibit, suggest, citation'), +('示す', 'シメス', 'to (take out and) show, to demonstrate, to tell, to exemplify, to make apparent, to point out (finger, clock hand, needle, etc.), to indicate, to show, to represent, to signify, to display'), +('示唆', 'シサ', 'suggestion, hint, implication'), +('指示', 'シジ', 'indication, denotation, designation, instructions, directions'), +('教示', 'キョウジ', 'instruction, teaching'), +('謝罪', 'シャザイ', 'apology'), +('謝意', 'シャイ', 'gratitude, thanks'), +('感謝', 'カンシャ', 'thanks, gratitude, appreciation, thankfulness'), +('慰謝', 'イシャ', 'consolation'), +('修理', 'シュウリ', 'repair, mending, fixing, servicing'), +('修正', 'シュウセイ', 'amendment, correction, revision, modification, alteration, retouching, update, fix'), +('編集', 'ヘンシュウ', 'editing, compilation'), +('研修', 'ケンシュウ', 'training (esp. in-service), induction course'), +('修理', 'シュウリ', 'repair, mending, fixing, servicing'), +('修正', 'シュウセイ', 'amendment, correction, revision, modification, alteration, retouching, update, fix'), +('逆修', 'ギャクシュ', 'holding a memorial service for oneself, an older person conducting a memorial service for a deceased, younger person'), +('識', 'シキ', 'acquaintanceship, vijnana, consciousness, written by...'), +('識別', 'シキベツ', 'discrimination, discernment, identification'), +('鑑識', 'カンシキ', 'judgement, judgment, discernment, discrimination, having an eye for, appraisal (e.g. of an antique), evaluation, assessment, forensics, (criminal) identification, crime lab'), +('光学式文字認識', 'コウガクシキモジニンシキ', 'optical character recognition, OCR'), +('授業', 'ジュギョウ', 'lesson, class work, teaching, instruction'), +('授業料', 'ジュギョウリョウ', 'tuition fee, course fee'), +('大学教授', 'ダイガクキョウジュ', 'university professor, college professor'), +('授受', 'ジュジュ', 'giving and receiving, transferring, transfer, changing hands'), +('舎', 'シャ', 'hut, house, boarding house, residence hall, dormitory, one day''s march (approx. 12.2 km)'), +('舎弟', 'シャテイ', 'one''s younger brother, underling (e.g. in yakuza), junior male peer, sworn younger brother'), +('寄宿舎', 'キシュクシャ', 'boarding house, residence hall, dormitory'), +('公舎', 'コウシャ', 'official residence'), +('術', 'ジュツ', 'art, technique, means, way, trick, trap, plot, stratagem, magic'), +('術後', 'ジュツゴ', 'postoperative, after surgery'), +('武術', 'ブジュツ', 'martial arts, military arts, wushu (Chinese martial art)'), +('印象派美術', 'インショウハビジュツ', 'impressionism'), +('序', 'ジョ', 'order, ordering, beginning, start, foreword, preface, introduction, opening of a song (in gagaku or noh)'), +('序章', 'ジョショウ', 'prologue, preface'), +('順序', 'ジュンジョ', 'order, sequence, procedure'), +('公序', 'コウジョ', 'public order, public policy'), +('述', 'ジュツ', 'dictation, verbal statement'), +('述語動詞', 'ジュツゴドウシ', 'predicate verb, predicator'), +('記述', 'キジュツ', 'description, account'), +('口述', 'コウジュツ', 'dictation, verbal statement'), +('証', 'アカシ', 'proof, evidence, sign, testimony, vindication, certificate, license, membership card, to testify (usu. Christian religious context), enlightenment, symptoms (in Chinese medicine), patient''s condition'), +('証明', 'ショウメイ', 'proof, testimony, demonstration, verification, certification'), +('保証', 'ホショウ', 'guarantee, security, assurance, pledge, warranty'), +('立証', 'リッショウ', 'establishing proof, demonstration, substantiation'), +('招待', 'ショウタイ', 'invitation'), +('招集', 'ショウシュウ', 'call, summons, convening, convocation'), +('象', 'ショウ', 'form, shape, figure, appearance, phenomenon'), +('将棋', 'ショウギ', 'shogi, Japanese chess'), +('印象', 'インショウ', 'impression'), +('抽象', 'チュウショウ', 'abstract'), +('象', 'ゾウ', 'elephant (Elephantidae spp.)'), +('象牙', 'ゾウゲ', 'ivory'), +('アジア象', 'アジアゾウ', 'Asian elephant, Indian elephant'), +('海象', 'セイウチ', 'walrus (Odobenus rosmarus), elephant seal (Mirounga spp.)'), +('準', 'ジュン', 'semi-, quasi-, associate'), +('準備', 'ジュンビ', 'preparation, arrangements, getting ready, provision, setup, reserving'), +('照準', 'ショウジュン', 'sight (e.g. of a gun), aim, alignment'), +('低水準', 'テイスイジュン', 'substandard, low-level'), +('状', 'ジョウ', 'form, shape, appearance, state, condition, circumstances, letter, correspondence'), +('状況', 'ジョウキョウ', 'state of affairs, situation, conditions, circumstances'), +('白状', 'ハクジョウ', 'confession'), +('名状', 'メイジョウ', 'description, describing, depicting'), +('税', 'ゼイ', 'tax'), +('税金', 'ゼイキン', 'tax, duty'), +('免税', 'メンゼイ', 'tax exemption, duty exemption'), +('課税', 'カゼイ', 'taxation'), +('性', 'セイ', 'nature (of a person), sex, gender, sex (i.e. sexual attraction, activity, etc.), gender, -ty, -ity, -ness, -cy'), +('性格', 'セイカク', 'character (of a person), personality, disposition, nature, characteristics, nature (of a thing, event, etc.)'), +('男性', 'ダンセイ', 'man, male, masculine gender'), +('女性', 'ジョセイ', 'woman, female, feminine gender'), +('性', 'ショウ', 'nature, disposition, temperament, character, quality, that which does not change according to external influences'), +('性根', 'ショウネ', 'nature, character, disposition'), +('女性', 'ジョセイ', 'woman, female, feminine gender'), +('冷え性', 'ヒエショウ', 'sensitivity to cold'), +('政', 'マツリゴト', 'rule, government'), +('政治', 'セイジ', 'politics, government'), +('家政', 'カセイ', 'household economy, housekeeping, homemaking'), +('農政', 'ノウセイ', 'agricultural administration'), +('摂政', 'セッショウ', 'regency, regent'), +('制', 'セイ', 'system, organization, organisation, imperial command, laws, regulation, control, government, suppression, restraint, holding back, establishment'), +('制限', 'セイゲン', 'restriction, restraint, limitation, limit'), +('規制', 'キセイ', 'regulation, (traffic) policing, control, restriction'), +('強制', 'キョウセイ', 'compulsion, coercion, forcing (to do), enforcement'), +('職', 'ショク', 'job, work, employment, occupation, position, duties, trade, skill'), +('職業', 'ショクギョウ', 'occupation, profession, job, vocation, trade, calling, business'), +('就職', 'シュウショク', 'finding employment, getting a job'), +('退職', 'タイショク', 'retirement, resignation'), +('職', 'ショク', 'job, work, employment, occupation, position, duties, trade, skill'), +('有職', 'ユウショク', 'holding a job, being employed, being learned, being knowledgeable, having great artistic talent, being a skilled performer, being well-versed in usages or practices of the court or military households'), +('接続', 'セツゾク', 'connection, attachment, union, join, joint, link, changing trains, conjunction'), +('接続詞', 'セツゾクシ', 'conjunction'), +('面接', 'メンセツ', 'interview (e.g. for a job)'), +('隣接', 'リンセツ', 'adjacency, contiguity, being adjoined'), +('接心', 'セッシン', 'concentration, period of intensive zazen'), +('精', 'セイ', 'spirit, sprite, nymph, energy, vigor (vigour), strength, fine details, semen'), +('精神', 'セイシン', 'mind, spirit, soul, heart, ethos, attitude, mentality, will, intention, spirit (of a matter), essence, fundamental significance'), +('丹精', 'タンセイ', 'working earnestly, sincerity, diligence, effort, pains'), +('夢精', 'ムセイ', 'wet dream, nocturnal emission'), +('精霊', 'ショウリョウ', 'spirit of the deceased'), +('精進', 'ショウジン', 'concentration, diligence, devotion, asceticism, zeal in one''s quest for enlightenment, adherence to a vegetarian diet'), +('無精', 'ブショウ', 'indolence, laziness, sloth'), +('水晶', 'スイショウ', '(rock) crystal, high purity quartz'), +('紡績', 'ボウセキ', 'spinning (textiles), spun yarn'), +('戦績', 'センセキ', 'war or military record, score, military achievements, results'), +('勢', 'セイ', 'energy, military strength'), +('勢力', 'セイリョク', 'influence, power, might, strength, potency, force, energy'), +('国勢', 'コクセイ', 'state of a country (population, resources, etc.), condition of a country, strength of a country'), +('党勢', 'トウセイ', 'strength of a party'), +('勢', 'ゼイ', 'group engaged in some activity (players, companies, forces, etc.)'), +('同勢', 'ドウゼイ', 'party, company'), +('猛勢', 'モウセイ', 'great strength, courageous army, valiant troops'), +('製', 'セイ', '-made, make'), +('製造', 'セイゾウ', 'manufacture, production'), +('特製', 'トクセイ', 'special make, deluxe'), +('精製', 'セイセイ', 'refining, purification'), +('常識', 'ジョウシキ', 'common sense, good sense, common knowledge, general knowledge, common practice, accepted practice, social etiquette'), +('常識的', 'ジョウシキテキ', 'ordinary, sensible, commonplace'), +('非常', 'ヒジョウ', 'emergency, extreme, great, extraordinary, remarkable, unusual, terrible, severe'), +('平常', 'ヘイジョウ', 'normal, usual, ordinary, everyday'), +('情', 'ジョウ', 'feelings, emotion, sentiment, compassion, sympathy, passion, affection, love, the way things really are, the actual situation'), +('状況', 'ジョウキョウ', 'state of affairs, situation, conditions, circumstances'), +('同情', 'ドウジョウ', 'sympathy, compassion, pity'), +('陳情', 'チンジョウ', 'petition, appeal'), +('傾城', 'ケイセイ', 'beauty, siren, courtesan, prostitute'), +('条', 'ジョウ', 'article (in document), provision, stripe, streak, line, although, though, since, as, because, inasmuch as'), +('条件', 'ジョウケン', 'condition, term, requirement, qualification, prerequisite'), +('発条', 'バネ', 'spring, spring (in one''s legs), bounce, springboard, impetus'), +('一条', 'イチジョウ', 'one line, one streak, one stripe, one ray (of light), one wisp (of smoke), one item (in an itemized form), one clause, one passage (in a book), one matter (affair, event, case, incident)'), +('責', 'セキ', 'responsibility, duty, obligation'), +('責任', 'セキニン', 'duty, responsibility (incl. supervision of staff), liability, onus'), +('免責', 'メンセキ', 'exemption from responsibility, disclaimer'), +('引責', 'インセキ', 'taking responsibility'), +('織布', 'ショクフ', 'woven fabric'), +('織女', 'ショクジョ', 'female weaver, Vega (star in the constellation Lyra), Alpha Lyrae'), +('染織', 'センショク', 'dyeing and weaving'), +('紡織', 'ボウショク', 'spinning and weaving'), +('子宮旁結合織', 'シキュウボウケツゴウシキ', 'parametrium'), +('間充織', 'カンジュウシキ', 'mesenchyme'), +('賞', 'ショウ', 'prize, award'), +('賞金', 'ショウキン', 'prize money, monetary award, reward'), +('鑑賞', 'カンショウ', 'appreciation (of art, music, poetry, etc.)'), +('入賞', 'ニュウショウ', 'winning a prize, placing (high; in a contest)'), +('祖', 'ソ', 'ancestor, forefather, progenitor, originator, pioneer, inventor, founder, grandfather'), +('祖父', 'ソフ', 'grandfather, old man, kyogen mask used for the role of an old man'), +('元祖', 'ガンソ', 'originator, pioneer, inventor, founder, progenitor, primogenitor, founder of a family line'), +('教祖', 'キョウソ', 'founder of a religious sect'), +('団', 'ダン', 'body, group, party, company, troupe'), +('団体', 'ダンタイ', 'group, party, team, organization, organisation, association, group, body, society'), +('超銀河団', 'チョウギンガダン', 'supercluster of galaxies'), +('退団', 'タイダン', 'leaving (a group, team, etc.)'), +('布団', 'フトン', 'futon, Japanese bedding consisting of a mattress and a duvet, round cushion used for Zen meditation (traditionally made of woven bulrush leaves)'), +('敷き布団', 'シキブトン', 'futon (laid on the floor), (Japanese) mattress, underquilt, sleeping mat'), +('属', 'ゾク', 'genus, generic'), +('属する', 'ゾクスル', 'to belong to, to come under, to be affiliated with, to be subject to'), +('付属', 'フゾク', 'being attached (to), being affiliated (to), belonging (to), going with, attached school, affiliated school'), +('所属', 'ショゾク', 'belonging to (a group, organization, etc.), affiliation (with), being attached to, being under the control of'), +('嘱望', 'ショクボウ', '(having great) expectation, pinning one''s hopes on'), +('嘱託', 'ショクタク', 'commission, entrusting with (work), part-time employee, temporary work'), +('損', 'ソン', 'loss, damage, harm, unprofitable, disadvantage, handicap, drawback, unfavorable'), +('損害', 'ソンガイ', 'damage, injury, loss'), +('破損', 'ハソン', 'damage'), +('大損', 'オオゾン', 'heavy loss'), +('則', 'ソク', 'counter for rules, rule, regulation'), +('即する', 'ソクスル', 'to conform to, to agree with, to be adapted to, to be based on'), +('罰則', 'バッソク', 'punishment, penalty, penal regulations, penal provisions, penal code'), +('校則', 'コウソク', 'school rules, school regulations'), +('卒爾', 'ソツジ', 'abrupt, sudden'), +('卒然', 'ソツゼン', 'sudden, unexpected, unannounced, abrupt'), +('統率', 'トウソツ', 'command, lead, generalship, leadership'), +('引率', 'インソツ', 'leading, guiding, commanding'), +('率', 'リツ', 'rate, ratio, proportion, percentage'), +('率を定める', 'リツヲサダメル', 'to fix the rate'), +('倍率', 'バイリツ', 'magnification, leverage, amplification, scaling factor, scale factor, competitiveness rating (e.g. for university entrance), applicant-to-acceptance ratio'), +('定率', 'テイリツ', 'fixed rate'), +('築', 'チク', '... years since construction, ... years old (of a building), built in ...'), +('築城', 'チクジョウ', 'castle construction, building a castle, fortification'), +('建築', 'ケンチク', 'construction, architecture (of buildings)'), +('新築', 'シンチク', 'new building, new construction'), +('造成', 'ゾウセイ', 'development (of land), preparation (e.g. of ground for housing), reclamation, creation'), +('造花', 'ゾウカ', 'artificial flower, imitation flower, artificial flower making'), +('製造', 'セイゾウ', 'manufacture, production'), +('改造', 'カイゾウ', 'remodeling, remodelling, reconstruction, conversion, alteration, renovation, modification, reshuffling (e.g. a cabinet), reorganization, restructuring, modding'), +('増', 'ゾウ', 'increase'), +('増加', 'ゾウカ', 'increase, rise, growth, addition, increment'), +('急増', 'キュウゾウ', 'rapid increase, proliferation, surge, explosion'), +('倍増', 'バイゾウ', 'doubling, double'), +('絶', 'ゼツ', 'starting field which contains the November and/or December 20-point card'), +('絶滅', 'ゼツメツ', 'extinction, extermination, eradication, stamping out, wiping out'), +('拒絶', 'キョゼツ', 'refusal, rejection'), +('根絶', 'コンゼツ', 'eradication, extermination, rooting out, stamping out, getting rid of'), +('素', 'ソ', 'plain, white silk, prime'), +('素質', 'ソシツ', 'makings (of), aptitude, talent, qualities, nature, character, temperament'), +('二酸化炭素', 'ニサンカタンソ', 'carbon dioxide, CO2'), +('栄養素', 'エイヨウソ', 'nutrient'), +('素', 'ス', 'one''s nature, one''s feelings, oneself, plain, unadorned, undecorated, unadulterated, au naturel, mere, poor, exceedingly'), +('素敵', 'ステキ', 'lovely, wonderful, nice, great, fantastic, superb, cool'), +('空素', 'カラス', 'dealt hand containing only 1-point cards (scoring combination)'), +('鉤素', 'ハリス', 'snell (fishing), leader, trace, cast'), +('測量', 'ソクリョウ', 'measurement, surveying'), +('測定', 'ソクテイ', 'measurement'), +('予測', 'ヨソク', 'prediction, estimation'), +('観測', 'カンソク', 'observation, survey, measurement, opinion, prediction, thinking'), +('貯金', 'チョキン', 'putting money aside, savings, deposit (e.g. in a bank), accumulated surplus of wins, wins in the bank'), +('貯蓄', 'チョチク', 'savings'), +('郵貯', 'ユウチョ', 'postal (post-office) savings (deposit)'), +('設備', 'セツビ', 'equipment, facilities, installation, accommodations, conveniences, arrangements'), +('設立', 'セツリツ', 'establishment, founding, incorporation (of a business)'), +('建設', 'ケンセツ', 'construction, establishment'), +('創設', 'ソウセツ', 'establishment, founding, organization, organisation'), +('断', 'ダン', 'decision, judgment, resolution'), +('断水', 'ダンスイ', 'suspension of water supply, water outage'), +('判断', 'ハンダン', 'judgment, judgement, decision, conclusion, adjudication, divination, judgement'), +('診断', 'シンダン', 'diagnosis, medical examination'), +('停留所', 'テイリュウジョ', 'stop (bus, tram, etc.), station, stopping place'), +('停車', 'テイシャ', 'stopping (of a train, car, etc.), stop'), +('解停', 'カイテイ', 'release from suspension (of a newspaper, magazine, etc.; Meiji period), removal of suspension'), +('居中調停', 'キョチュウチョウテイ', 'mediation'), +('態', 'タイ', 'condition, figure, appearance, voice'), +('態度', 'タイド', 'attitude, manner, behaviour, demeanour, bearing, attitude (towards an issue, etc.), position, stance, stand'), +('形態', 'ケイタイ', 'form, shape, figure, morph'), +('受動態', 'ジュドウタイ', 'passive voice'), +('総', 'ソウ', 'whole, all, general, gross, entire, overall'), +('総理大臣', 'ソウリダイジン', 'prime minister (as the head of a cabinet government), premier'), +('海総', 'カイソウ', 'imperial navy order'), +('全総', 'ゼンソウ', 'Comprehensive National Development Plan (1962-)'), +('像', 'ゾウ', 'image, figure, statue, picture, portrait, figure, form, shape, appearance, image'), +('像主', 'ゾウシュ', 'subject (of a portrait or bust), a person posing for a portrait or bust, (historically) patron, someone who commissions a Buddhist temple or work of art'), +('想像', 'ソウゾウ', 'imagination, supposition, guess'), +('現像', 'ゲンゾウ', 'development (of film), photographic processing'), +('貸与', 'タイヨ', 'loan, lending'), +('貸借', 'タイシャク', 'loan, debit and credit, lending and borrowing'), +('賃貸', 'チンタイ', 'lease, rent, hire'), +('転貸', 'テンタイ', 'subleasing'), +('提出', 'テイシュツ', 'presentation (of documents), submission (of an application, report, etc.), production (e.g. of evidence), introduction (e.g. of a bill), filing, turning in'), +('提案', 'テイアン', 'proposal, proposition, suggestion'), +('大前提', 'ダイゼンテイ', 'major premise (in a syllogism), important condition, basic premise, basic assumption, something that should be obvious to all, something that should not have to be argued, something that goes without mentioning'), +('上提', 'ジョウテイ', 'introducing (a bill), presentation, departure on a journey'), +('提灯', 'チョウチン', 'paper lantern, Chinese lantern, Japanese lantern'), +('提灯鮟鱇', 'チョウチンアンコウ', 'football fish (any fish of family Himantolophidae, esp. the Atlantic footballfish, Himantolophus groenlandicus)'), +('提宇子', 'ダイウス', 'God'), +('提婆', 'ダイバ', 'deva (being with god-like characteristics)'), +('菩提', 'ボダイ', 'bodhi, enlightenment, happiness in the next world'), +('閻浮提', 'エンブダイ', 'Jambudvipa, continent of the terrestrial world'), +('適当', 'テキトウ', 'suitable, proper, appropriate, adequate, fit, fair, perfunctory, half-minded, sloppy, lazy, careless, noncommittal, unreliable, irresponsible'), +('適切', 'テキセツ', 'appropriate, suitable, fitting, apt, proper, right, pertinent, relevant'), +('不適', 'フテキ', 'inadequacy, inappropriateness, unfitness, impropriety'), +('悠々自適', 'ユウユウジテキ', 'living a life of leisure with dignity, living quietly and comfortably free from worldly cares, otium cum dignitate'), +('程度', 'テイド', 'degree, amount, grade, standard, of the order of (following a number), about, approximately'), +('程朱学', 'テイシュガク', 'neo-Confucianism (based on the teaching of the Cheng brothers and Zhu Xi)'), +('規程', 'キテイ', 'official regulations, inner rules'), +('修士課程', 'シュウシカテイ', 'master''s course'), +('張', 'チョウ', 'Chinese "Extended Net" constellation (one of the 28 mansions), counter for objects with stretched strings (i.e. bows, kotos), curtains, papers, etc.'), +('張本人', 'チョウホンニン', 'originator, ringleader, perpetrator, main culprit, person responsible'), +('緊張', 'キンチョウ', 'tension, strain, nervousness, stress, tensions (between countries, groups, etc.), tonus, muscle tone'), +('主張', 'シュチョウ', 'claim, insistence, assertion, advocacy, emphasis, contention, opinion, tenet'), +('版', 'ハン', 'edition, version, printing, impression, implementation (e.g. software), plate, block, cast, editions of a publication'), +('版権', 'ハンケン', 'copyright, publishing rights'), +('重版', 'ジュウハン', 'second edition, additional printing'), +('図版', 'ズハン', 'plate, illustration, figure'), +('犯', 'ハン', 'perpetrators of (some) crime, (some type of) crime'), +('犯罪', 'ハンザイ', 'crime, offence, offense'), +('防犯', 'ボウハン', 'prevention of crime, security (device, camera, etc.)'), +('共犯', 'キョウハン', 'complicity'), +('違犯', 'イハン', 'offense (against the law), offence, violation'), +('重犯', 'ジュウハン', 'felony, major offence, felon, old offender'), +('比', 'ヒ', 'ratio, proportion, match, equal, explicit comparison (style of the Shi Jing), Philippines, in comparison with ...'), +('比較', 'ヒカク', 'comparison'), +('口径比', 'コウケイヒ', 'aperture ratio (inverse of the f-number), relative aperture'), +('正比', 'セイヒ', 'direct ratio'), +('統計', 'トウケイ', 'statistics'), +('統一', 'トウイツ', 'unity, consolidation, uniformity, unification, compatible'), +('総統', 'ソウトウ', 'supreme ruler, generalissimo, president (of Taiwan), führer, fuehrer'), +('継統', 'ケイトウ', 'accession to the throne'), +('判', 'ハン', 'seal, stamp, monogram signature, judgment, judgement, size (of paper or books)'), +('判断', 'ハンダン', 'judgment, judgement, decision, conclusion, adjudication, divination, judgement'), +('批判', 'ヒハン', 'criticism, judgement, judgment, comment'), +('公判', 'コウハン', 'public hearing, trial'), +('判', 'ハン', 'seal, stamp, monogram signature, judgment, judgement, size (of paper or books)'), +('評判', 'ヒョウバン', 'reputation, (public) estimation, popularity, rumour, rumor, talk (e.g. of the town), fame, notoriety'), +('裁判', 'サイバン', 'trial, judgement, judgment'), +('非', 'ヒ', 'fault, error, mistake, going poorly, being disadvantageous, being unfavorable, un-, non-, an-'), +('非常に', 'ヒジョウニ', 'very, extremely, exceedingly'), +('是非是非', 'ゼヒゼヒ', 'certainly, by all means'), +('理非', 'リヒ', 'right and wrong'), +('任', 'ニン', 'obligation, duty, charge, responsibility'), +('任務', 'ニンム', 'duty, function, office, mission, task'), +('就任', 'シュウニン', 'assumption (of office), taking up (a post), inauguration, installation'), +('委任', 'イニン', 'entrusting, charge, delegation, authorization'), +('得', 'トク', 'profit, advantage, benefit, gain, rebirth in paradise, entering nirvana'), +('得意', 'トクイ', 'satisfaction, pride, triumph, elation, one''s strong point, one''s forte, one''s specialty, regular customer, regular client, patron'), +('納得', 'ナットク', 'consent, agreement, acceptance, understanding, satisfaction (e.g. with an explanation), being convinced'), +('説得', 'セットク', 'persuasion'), +('能', 'ノウ', 'talent, gift, function, noh (theatre)'), +('能力', 'ノウリョク', 'ability, faculty'), +('機能', 'キノウ', 'function, facility, faculty, feature'), +('有能', 'ユウノウ', 'able, capable, competent, talented, efficient'), +('費', 'ヒ', 'cost, expense'), +('費用', 'ヒヨウ', 'cost, expense'), +('消費', 'ショウヒ', 'consumption, expenditure, spending'), +('浪費', 'ロウヒ', 'waste, extravagance'), +('導入', 'ドウニュウ', 'introduction, bringing in, leading in, installation'), +('導火線', 'ドウカセン', 'fuse'), +('指導', 'シドウ', 'guidance, leadership, instruction, direction, coaching, shido (disciplinary action for a minor infringement of the rules of judo)'), +('誘導', 'ユウドウ', 'guidance, leading, induction, introduction, incitement, inducement'), +('堂', 'ドウ', 'temple, shrine, chapel, hall, company, front room'), +('堂々', 'ドウドウ', 'magnificent, grand, impressive, dignified, majestic, imposing, stately, fair, square, open, unashamed, brazen, grandly, boldly, confidently, fairly, squarely, unreservedly, brazenly'), +('議事堂', 'ギジドウ', 'assembly hall, parliament house, diet building, capitol, houses of parliament, congress hall'), +('殿堂', 'デンドウ', 'palace, hall, shrine, temple, sanctuary, hall of fame'), +('破', 'ハ', '(in gagaku or noh) middle section of a song'), +('破産', 'ハサン', 'bankruptcy, insolvency'), +('爆破', 'バクハ', 'destructive blast, blowing up, explosion'), +('打破', 'ダハ', 'breaking down, defeating, abolishing'), +('燃料', 'ネンリョウ', 'fuel'), +('燃焼', 'ネンショウ', 'burning, combustion'), +('再燃', 'サイネン', 'recurrence, revival, resuscitation'), +('可燃', 'カネン', 'inflammable, flammable, combustible, burnable'), +('肥満', 'ヒマン', 'corpulence, fatness, obesity'), +('肥大', 'ヒダイ', 'swelling, enlargement, becoming fat, hypertrophy'), +('堆肥', 'タイヒ', 'compost, manure'), +('追肥', 'ツイヒ', '(adding) extra fertilizer or manure (fertiliser)'), +('独', 'ドク', 'Germany'), +('独身', 'ドクシン', 'bachelorhood, single, unmarried, celibate'), +('西独', 'セイドク', 'West Germany (1949-1990)'), +('英独', 'エイドク', 'Britain and Germany'), +('銅', 'ドウ', 'copper (Cu), bronze (medal)'), +('銅貨', 'ドウカ', 'copper coin'), +('白銅', 'ハクドウ', 'nickel and copper alloy'), +('精銅', 'セイドウ', 'refined copper'), +('毒', 'ドク', 'poison, toxicant, harm, evil influence, ill will, spite, malice, abusive language'), +('毒性', 'ドクセイ', 'toxicity, virulence, toxic, virulent, poisonous'), +('消毒', 'ショウドク', 'disinfection, sterilization, sterilisation'), +('服毒', 'フクドク', 'taking poison'), +('貧', 'ヒン', 'poverty, penury, want, need, insufficiency, shortage, deficiency'), +('貧困', 'ヒンコン', 'poverty, penury, need, destitution, shortage, lack, want'), +('清貧', 'セイヒン', 'honourable poverty, honorable poverty'), +('極貧', 'ゴクヒン', 'destitution'), +('貧乏', 'ビンボウ', 'poverty-stricken, destitute, poor, penurious'), +('貧乏人', 'ビンボウニン', 'poor person, pauper, the poor, the indigent'), +('評', 'ヒョウ', 'criticism, commentary, review'), +('評価', 'ヒョウカ', 'valuation, appraisal, evaluation, assessment, estimation, rating, judging, appreciation, recognition, acknowledgement, rating highly, praising'), +('総評', 'ソウヒョウ', 'general comment, Sohyo (General Council of Trade Unions of Japan)'), +('大好評', 'ダイコウヒョウ', 'very highly commended, highly lauded, very well-received, very popular'), +('備品', 'ビヒン', 'fixtures, furnishings, equipment'), +('備蓄', 'ビチク', 'stockpile, reserves, storing, stocking up, laying in (supplies)'), +('準備', 'ジュンビ', 'preparation, arrangements, getting ready, provision, setup, reserving'), +('設備', 'セツビ', 'equipment, facilities, installation, accommodations, conveniences, arrangements'), +('婦', 'フ', 'married woman, woman, lady'), +('婦人', 'フジン', 'woman, lady, adult female'), +('保健婦', 'ホケンフ', 'district health nurse, public health nurse'), +('老婦', 'ロウフ', 'old woman'), +('布', 'ヌノ', 'cloth, bujian (spade-shaped bronze coin of ancient China)'), +('布団', 'フトン', 'futon, Japanese bedding consisting of a mattress and a duvet, round cushion used for Zen meditation (traditionally made of woven bulrush leaves)'), +('配布', 'ハイフ', 'distribution'), +('塗布', 'トフ', 'application (of ointment, etc.), coating'), +('布衣', 'ホイ', 'linen kariginu, (during the Edo period) plain kariginu'), +('布衣始', 'ホウイハジメ', 'ceremony in which an abdicated emperor puts on informal court clothes (e.g. kariginu, eboshi)'), +('武', 'ブ', 'the art of war, martial arts, military arts, military force, the sword, valor, bravery, military officer, military man'), +('武器', 'ブキ', 'weapon, arms, ordnance, weapon (something used to gain an advantage), asset'), +('文武', 'ブンブ', 'literary and military arts, the pen and the sword'), +('威武', 'イブ', 'authority and force'), +('武者', 'ムシャ', 'warrior'), +('武者修行', 'ムシャシュギョウ', 'traveling about to gain skill in combat (travelling)'), +('神武', 'ジンム', 'Emperor Jimmu, legendary founding Emperor of Japan'), +('建武', 'ケンム', 'Kenmu era (of unified Japan; 1334.1.29-1336.2.29), Kenmu era (of the Northern Court; 1336.2.29-1338.8.28)'), +('復習', 'フクシュウ', 'review (of learned material), revision'), +('複数', 'フクスウ', 'plural, multiple, several'), +('修復', 'シュウフク', 'restoration, repair, mending'), +('障害回復', 'ショウガイカイフク', 'fault recovery'), +('編', 'ヘン', 'compilation (of a text), editing, volume (of a text), completed literary work'), +('編集', 'ヘンシュウ', 'editing, compilation'), +('再編', 'サイヘン', 'reorganization, reorganisation, reshuffle'), +('改編', 'カイヘン', 'reorganization, reorganisation'), +('綿', 'メン', 'cotton'), +('綿密', 'メンミツ', 'minute, detailed, careful, scrupulous, thorough'), +('石灰海綿', 'セッカイカイメン', 'calcareous sponge (any sponge of class Calcarea)'), +('六放海綿', 'ロッポウカイメン', 'hexactinellid sponge, glass sponge (any sponge of class Hexactinellida)'), +('豊富', 'ホウフ', 'abundant, plentiful, rich, ample'), +('豊作', 'ホウサク', 'abundant harvest, bumper crop'), +('両豊', 'リョウホウ', 'Ryōhō (the two former provinces of Buzen and Bungo)'), +('二豊', 'ニホウ', 'Nihō (the two former provinces of Buzen and Bungo)'), +('豊饒', 'ホウジョウ', 'fertile, productive, fruitful'), +('豊山派', 'ブザンハ', 'Buzan sect (of Shingi Shingon Buddhism)'), +('余', 'ヨ', 'other, another, remaining, leftover, over, more than, I, me'), +('余裕', 'ヨユウ', 'surplus, margin, leeway, room, space, time, allowance, flexibility, scope, composure, placidity, complacency, calm'), +('残余', 'ザンヨ', 'remainder, the rest, residue'), +('窮余', 'キュウヨ', 'extremity, desperation'), +('脈', 'ミャク', 'pulse, vein, chain (of mountains, etc.), hope, thread (of an argument)'), +('脈拍', 'ミャクハク', 'pulse, pulse rate, pulsation, stroke of pulse'), +('大動脈', 'ダイドウミャク', 'aorta, important traffic route'), +('動脈', 'ドウミャク', 'artery'), +('保存', 'ホゾン', 'preservation, conservation, storage, maintenance, saving (e.g. to disk)'), +('保証', 'ホショウ', 'guarantee, security, assurance, pledge, warranty'), +('確保', 'カクホ', 'securing, obtaining, ensuring, guarantee, maintaining, belay, belaying'), +('留保', 'リュウホ', 'reserving, withholding'), +('保する', 'ホスル', 'to guarantee'), +('保安', 'ホウアン', 'Hōan era (1120.4.10-1124.4.3)'), +('永保', 'エイホウ', 'Eihō era (1081.2.10-1084.2.7), Eiho era'), +('太保', 'タイホウ', 'Grand Protector (lowest of the top three civil positions of the Zhou Dynasty), Minister of the Right (official in Nara and Heian periods)'), +('夢中', 'ムチュウ', 'absorbed in, immersed in, crazy about, obsessed with, devoted to, forgetting oneself, daze, trance, ecstasy, delirium, within a dream, while dreaming'), +('夢想', 'ムソウ', 'dream, vision, reverie'), +('同床異夢', 'ドウショウイム', 'cohabiting but living in different worlds'), +('怪夢', 'カイム', 'strange dream'), +('複', 'フク', 'compound, composite, multiple, re-, bi-, doubles (tennis, badminton, etc.), place bet (in horse racing, etc.), show bet, bet that predicts a top 2 or top 3 finish (depending on number of horses, etc. in race)'), +('複雑', 'フクザツ', 'complex, complicated, intricate, mixed (feelings)'), +('重複', 'チョウフク', 'duplication, repetition, overlapping, redundancy, restoration'), +('遺伝子重複', 'イデンシジュウフク', 'gene duplication'), +('留', 'リュウ', 'stationary point'), +('留学生', 'リュウガクセイ', 'overseas student, exchange student'), +('保留', 'ホリュウ', 'reservation, putting on hold, deferment'), +('蒸留', 'ジョウリュウ', 'distillation'), +('留', 'ルーブル', 'ruble (Russian currency), rouble'), +('留守', 'ルス', 'absence, being away from home, house-sitting, house-sitter, being left unattended to (of one''s studies, etc.), neglecting'), +('柳樽', 'ヤナギダル', 'lacquered sake barrel (often used at weddings and other celebratory events)'), +('務所', 'ムショ', 'prison'), +('ムショ上がり', 'ムショアガリ', 'former prisoner'), +('勤務', 'キンム', 'service, duty, work'), +('乗務', 'ジョウム', 'doing transport-related work'), +('輸入', 'ユニュウ', 'import, importation, introduction, afferent'), +('輸出', 'ユシュツ', 'export, exportation, efferent'), +('密輸', 'ミツユ', 'smuggling, contraband trade'), +('空輸', 'クウユ', 'air transport, air lift, airlift'), +('輸入', 'ユニュウ', 'import, importation, introduction, afferent'), +('輸出', 'ユシュツ', 'export, exportation, efferent'), +('報', 'ホウ', 'information, news, report, reward, retribution'), +('報告', 'ホウコク', 'report, information'), +('予報', 'ヨホウ', 'forecast, prediction'), +('情報', 'ジョウホウ', 'information, news, report, intelligence, information (data contained in characters, signals, code, etc.)'), +('弁', 'ベン', 'speech, tongue, talk, eloquence, dialect, brogue, accent, bento, Japanese box lunch, petal, valve, Oversight Department, division of the daijokan under the ritsuryō system responsible for controlling central and provincial governmental offices'), +('弁当', 'ベントウ', 'bento, Japanese box lunch'), +('代弁', 'ダイベン', 'speaking by proxy, speaking for (someone else), acting as spokesman (for), representing (the views, feelings, etc. of), payment by proxy, compensation by proxy, paying on behalf (of), acting for (someone else), carrying out (on someone''s behalf)'), +('勘弁', 'カンベン', 'pardon, forgiveness, forbearance'), +('迷惑', 'メイワク', 'trouble, bother, annoyance, nuisance, inconvenience, to be troubled (by), to be bothered (by), to be inconvenienced (by)'), +('迷信', 'メイシン', 'superstition, superstitious belief'), +('混迷', 'コンメイ', 'turmoil, chaos, confusion'), +('愛迷', 'アイメイ', 'straying from love, falling out of love, lost love'), +('粉末', 'フンマツ', 'fine powder'), +('粉砕', 'フンサイ', 'pulverization, pulverisation, reducing to pieces, smashing, demolishing'), +('米粉', 'コメコ', 'rice flour'), +('製粉', 'セイフン', 'milling, grinding into flour'), +('領', 'リョウ', 'territory (of country, feudal domain, etc.), counter for suits of clothing, sets of armor, etc.'), +('領域', 'リョウイキ', 'area, domain, territory, field, range, region, regime'), +('占領', 'センリョウ', 'occupying, having (an area) all to oneself, military occupation, possession, capture, seizure'), +('横領', 'オウリョウ', 'embezzlement, misappropriation, usurpation'), +('暴', 'ボウ', 'violence, force'), +('暴動', 'ボウドウ', 'insurrection, rebellion, revolt, riot, uprising'), +('乱暴', 'ランボウ', 'violence, assault, rowdiness, wildness, running riot, rough (handling, language, etc.), reckless, careless, coarse, rude, unreasonable (e.g. demand), wild (e.g. argument), rape, sexual assault'), +('狂暴', 'キョウボウ', 'rage, frenzy'), +('暴露', 'バクロ', 'disclosure, exposure, revelation'), +('暴露戦術', 'バクロセンジュツ', 'exposure tactics, muckraking tactics'), +('略', 'リャク', 'abbreviation, omission, outline, gist, plan, strategy, scheme'), +('略す', 'リャクス', 'to abbreviate, to omit, to take, to capture'), +('省略', 'ショウリャク', 'omission, abbreviation, abridgment, abridgement'), +('侵略', 'シンリャク', 'invasion (e.g. of a country), raid, aggression'), +('仏', 'ブツ', 'Buddha, Buddhism'), +('仏像', 'ブツゾウ', 'statue of Buddha, image of Buddha, Buddhist statue, Buddhist image'), +('馬の耳に念仏', 'ウマノミミニネンブツ', 'preaching to the deaf, chanting the nembutsu into a horse''s ear'), +('石仏', 'セキブツ', 'stone Buddhist image, unemotional person, taciturn person'), +('仏', 'フツ', 'France, French (language)'), +('仏語', 'フツゴ', 'French (language)'), +('渡仏', 'トフツ', 'going to France'), +('米仏', 'ベイフツ', 'America and France, American-French'), +('歴', 'レキ', 'history of, experience of'), +('歴史', 'レキシ', 'history'), +('略歴', 'リャクレキ', 'brief personal record, short curriculum vitae, short CV'), +('来歴', 'ライレキ', 'history, career'), +('歴とした', 'レッキトシタ', 'accepted, fully-fledged, clear, respectable'), +('防止', 'ボウシ', 'prevention, check'), +('防火', 'ボウカ', 'fire prevention, fire fighting, fire proof'), +('予防', 'ヨボウ', 'prevention, protection (against), precaution'), +('砂防', 'サボウ', 'erosion control'), +('貿易', 'ボウエキ', 'trade (foreign)'), +('貿易赤字', 'ボウエキアカジ', 'trade deficit'), +('墓地', 'ボチ', 'cemetery, graveyard'), +('墓参り', 'ハカマイリ', 'visit to a grave'), +('陵墓', 'リョウボ', 'imperial tomb, imperial mausoleum'), +('周堤墓', 'シュウテイボ', 'grave-site with circular embankment (Jomon period)'), +('形', 'カタチ', 'form, shape, figure, visage'), +('容易', 'ヨウイ', 'easy, simple, plain'), +('許容', 'キョヨウ', 'permission, allowance, acceptance, tolerance, pardon'), +('収容', 'シュウヨウ', 'accommodation, taking in, receiving, housing, seating, admission (of patients, students, etc.), imprisonment, detention, internment, containing (e.g. words in a dictionary), adding'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(5602, '移'), +(5603, '移'), +(5604, '移'), +(5605, '移'), +(5606, '囲'), +(5607, '囲'), +(5608, '囲'), +(5609, '囲'), +(5610, '因'), +(5611, '因'), +(5612, '因'), +(5613, '因'), +(5614, '衛'), +(5615, '衛'), +(5616, '衛'), +(5617, '衛'), +(5618, '衛'), +(5619, '衛'), +(5620, '衛'), +(5621, '衛'), +(5622, '営'), +(5623, '営'), +(5624, '営'), +(5625, '営'), +(5626, '易'), +(5627, '易'), +(5628, '易'), +(5629, '易'), +(5630, '易'), +(5631, '易'), +(5632, '易'), +(5633, '易'), +(5634, '益'), +(5635, '益'), +(5636, '益'), +(5637, '益'), +(5638, '益'), +(5639, '益'), +(5640, '益'), +(5641, '圧'), +(5642, '圧'), +(5643, '圧'), +(5644, '圧'), +(5645, '圧'), +(5646, '液'), +(5647, '液'), +(5648, '液'), +(5649, '液'), +(5650, '演'), +(5651, '演'), +(5652, '演'), +(5653, '演'), +(5654, '往'), +(5655, '往'), +(5656, '往'), +(5657, '往'), +(5658, '可'), +(5659, '可'), +(5660, '可'), +(5661, '可'), +(5662, '桜'), +(5663, '桜'), +(5664, '桜'), +(5665, '仮'), +(5666, '仮'), +(5667, '仮'), +(5668, '仮'), +(5669, '仮'), +(5670, '応'), +(5671, '応'), +(5672, '応'), +(5673, '応'), +(5674, '永'), +(5675, '永'), +(5676, '永'), +(5677, '永'), +(5678, '価'), +(5679, '価'), +(5680, '価'), +(5681, '価'), +(5682, '確'), +(5683, '確'), +(5684, '確'), +(5685, '確'), +(5686, '過'), +(5687, '過'), +(5688, '過'), +(5689, '過'), +(5690, '格'), +(5691, '格'), +(5692, '格'), +(5693, '格'), +(5694, '格'), +(5695, '格'), +(5696, '格'), +(5697, '格'), +(5698, '格'), +(5699, '格'), +(5700, '格'), +(5701, '河'), +(5702, '河'), +(5703, '河'), +(5704, '河'), +(5705, '快'), +(5706, '快'), +(5707, '快'), +(5708, '快'), +(5709, '解'), +(5710, '解'), +(5711, '解'), +(5712, '解'), +(5713, '解'), +(5714, '解'), +(5715, '解'), +(5716, '解'), +(5717, '久'), +(5718, '久'), +(5719, '久'), +(5720, '久'), +(5721, '久'), +(5722, '久'), +(5723, '久'), +(5724, '額'), +(5725, '額'), +(5726, '額'), +(5727, '額'), +(5728, '喜'), +(5729, '喜'), +(5730, '喜'), +(5731, '喜'), +(5732, '基'), +(5733, '基'), +(5734, '基'), +(5735, '基'), +(5736, '逆'), +(5737, '逆'), +(5738, '逆'), +(5739, '逆'), +(5740, '逆'), +(5741, '逆'), +(5742, '逆'), +(5743, '逆'), +(5744, '規'), +(5745, '規'), +(5746, '規'), +(5747, '規'), +(5748, '刊'), +(5749, '刊'), +(5750, '刊'), +(5751, '刊'), +(5752, '技'), +(5753, '技'), +(5754, '技'), +(5755, '技'), +(5756, '許'), +(5757, '許'), +(5758, '許'), +(5759, '許'), +(5760, '眼'), +(5761, '眼'), +(5762, '眼'), +(5763, '眼'), +(5764, '眼'), +(5765, '眼'), +(5766, '義'), +(5767, '義'), +(5768, '義'), +(5769, '義'), +(5770, '禁'), +(5771, '禁'), +(5772, '禁'), +(5773, '禁'), +(5774, '幹'), +(5775, '幹'), +(5776, '幹'), +(5777, '幹'), +(5778, '寄'), +(5779, '寄'), +(5780, '寄'), +(5781, '均'), +(5782, '均'), +(5783, '均'), +(5784, '均'), +(5785, '救'), +(5786, '救'), +(5787, '救'), +(5788, '型'), +(5789, '型'), +(5790, '型'), +(5791, '境'), +(5792, '境'), +(5793, '境'), +(5794, '境'), +(5795, '境'), +(5796, '境'), +(5797, '慣'), +(5798, '慣'), +(5799, '慣'), +(5800, '慣'), +(5801, '句'), +(5802, '句'), +(5803, '句'), +(5804, '句'), +(5805, '紀'), +(5806, '紀'), +(5807, '紀'), +(5808, '紀'), +(5809, '経'), +(5810, '経'), +(5811, '経'), +(5812, '経'), +(5813, '経'), +(5814, '経'), +(5815, '経'), +(5816, '経'), +(5817, '経'), +(5818, '経'), +(5819, '居'), +(5820, '居'), +(5821, '居'), +(5822, '居'), +(5823, '居'), +(5824, '潔'), +(5825, '潔'), +(5826, '減'), +(5827, '減'), +(5828, '減'), +(5829, '減'), +(5830, '険'), +(5831, '険'), +(5832, '険'), +(5833, '険'), +(5834, '旧'), +(5835, '旧'), +(5836, '旧'), +(5837, '旧'), +(5838, '限'), +(5839, '限'), +(5840, '限'), +(5841, '限'), +(5842, '現'), +(5843, '現'), +(5844, '現'), +(5845, '現'), +(5846, '個'), +(5847, '個'), +(5848, '個'), +(5849, '個'), +(5850, '個'), +(5851, '個'), +(5852, '検'), +(5853, '検'), +(5854, '検'), +(5855, '検'), +(5856, '故'), +(5857, '故'), +(5858, '故'), +(5859, '故'), +(5860, '耕'), +(5861, '耕'), +(5862, '耕'), +(5863, '耕'), +(5864, '効'), +(5865, '効'), +(5866, '効'), +(5867, '効'), +(5868, '護'), +(5869, '護'), +(5870, '護'), +(5871, '護'), +(5872, '件'), +(5873, '件'), +(5874, '件'), +(5875, '件'), +(5876, '厚'), +(5877, '厚'), +(5878, '厚'), +(5879, '厚'), +(5880, '罪'), +(5881, '罪'), +(5882, '罪'), +(5883, '罪'), +(5884, '雑'), +(5885, '雑'), +(5886, '雑'), +(5887, '雑'), +(5888, '雑'), +(5889, '雑'), +(5890, '講'), +(5891, '講'), +(5892, '講'), +(5893, '講'), +(5894, '鉱'), +(5895, '鉱'), +(5896, '鉱'), +(5897, '鉱'), +(5898, '混'), +(5899, '混'), +(5900, '混'), +(5901, '混'), +(5902, '航'), +(5903, '航'), +(5904, '航'), +(5905, '航'), +(5906, '告'), +(5907, '告'), +(5908, '告'), +(5909, '告'), +(5910, '興'), +(5911, '興'), +(5912, '興'), +(5913, '興'), +(5914, '興'), +(5915, '興'), +(5916, '興'), +(5917, '興'), +(5918, '殺'), +(5919, '殺'), +(5920, '殺'), +(5921, '殺'), +(5922, '殺'), +(5923, '殺'), +(5924, '殺'), +(5925, '殺'), +(5926, '殺'), +(5927, '災'), +(5928, '災'), +(5929, '災'), +(5930, '災'), +(5931, '財'), +(5932, '財'), +(5933, '財'), +(5934, '財'), +(5935, '財'), +(5936, '財'), +(5937, '賛'), +(5938, '賛'), +(5939, '賛'), +(5940, '賛'), +(5941, '採'), +(5942, '採'), +(5943, '採'), +(5944, '採'), +(5945, '構'), +(5946, '構'), +(5947, '構'), +(5948, '構'), +(5949, '査'), +(5950, '査'), +(5951, '査'), +(5952, '査'), +(5953, '士'), +(5954, '士'), +(5955, '士'), +(5956, '士'), +(5957, '際'), +(5958, '際'), +(5959, '際'), +(5960, '際'), +(5961, '在'), +(5962, '在'), +(5963, '在'), +(5964, '在'), +(5965, '史'), +(5966, '史'), +(5967, '史'), +(5968, '史'), +(5969, '支'), +(5970, '支'), +(5971, '支'), +(5972, '支'), +(5973, '再'), +(5974, '再'), +(5975, '再'), +(5976, '再'), +(5977, '再'), +(5978, '酸'), +(5979, '酸'), +(5980, '酸'), +(5981, '酸'), +(5982, '妻'), +(5983, '妻'), +(5984, '妻'), +(5985, '妻'), +(5986, '師'), +(5987, '師'), +(5988, '師'), +(5989, '師'), +(5990, '枝'), +(5991, '枝'), +(5992, '枝'), +(5993, '枝'), +(5994, '志'), +(5995, '志'), +(5996, '志'), +(5997, '志'), +(5998, '飼'), +(5999, '飼'), +(6000, '資'), +(6001, '資'), +(6002, '資'), +(6003, '資'), +(6004, '似'), +(6005, '似'), +(6006, '似'), +(6007, '質'), +(6008, '質'), +(6009, '質'), +(6010, '質'), +(6011, '質'), +(6012, '質'), +(6013, '質'), +(6014, '質'), +(6015, '質'), +(6016, '質'), +(6017, '示'), +(6018, '示'), +(6019, '示'), +(6020, '示'), +(6021, '示'), +(6022, '示'), +(6023, '示'), +(6024, '示'), +(6025, '謝'), +(6026, '謝'), +(6027, '謝'), +(6028, '謝'), +(6029, '修'), +(6030, '修'), +(6031, '修'), +(6032, '修'), +(6033, '修'), +(6034, '修'), +(6035, '修'), +(6036, '識'), +(6037, '識'), +(6038, '識'), +(6039, '識'), +(6040, '授'), +(6041, '授'), +(6042, '授'), +(6043, '授'), +(6044, '舎'), +(6045, '舎'), +(6046, '舎'), +(6047, '舎'), +(6048, '術'), +(6049, '術'), +(6050, '術'), +(6051, '術'), +(6052, '序'), +(6053, '序'), +(6054, '序'), +(6055, '序'), +(6056, '述'), +(6057, '述'), +(6058, '述'), +(6059, '述'), +(6060, '証'), +(6061, '証'), +(6062, '証'), +(6063, '証'), +(6064, '招'), +(6065, '招'), +(6066, '象'), +(6067, '象'), +(6068, '象'), +(6069, '象'), +(6070, '象'), +(6071, '象'), +(6072, '象'), +(6073, '象'), +(6074, '準'), +(6075, '準'), +(6076, '準'), +(6077, '準'), +(6078, '状'), +(6079, '状'), +(6080, '状'), +(6081, '状'), +(6082, '税'), +(6083, '税'), +(6084, '税'), +(6085, '税'), +(6086, '性'), +(6087, '性'), +(6088, '性'), +(6089, '性'), +(6090, '性'), +(6091, '性'), +(6092, '性'), +(6093, '性'), +(6094, '政'), +(6095, '政'), +(6096, '政'), +(6097, '政'), +(6098, '政'), +(6099, '制'), +(6100, '制'), +(6101, '制'), +(6102, '制'), +(6103, '職'), +(6104, '職'), +(6105, '職'), +(6106, '職'), +(6107, '職'), +(6108, '職'), +(6109, '接'), +(6110, '接'), +(6111, '接'), +(6112, '接'), +(6113, '接'), +(6114, '精'), +(6115, '精'), +(6116, '精'), +(6117, '精'), +(6118, '精'), +(6119, '精'), +(6120, '精'), +(6121, '精'), +(6122, '績'), +(6123, '績'), +(6124, '勢'), +(6125, '勢'), +(6126, '勢'), +(6127, '勢'), +(6128, '勢'), +(6129, '勢'), +(6130, '勢'), +(6131, '製'), +(6132, '製'), +(6133, '製'), +(6134, '製'), +(6135, '常'), +(6136, '常'), +(6137, '常'), +(6138, '常'), +(6139, '情'), +(6140, '情'), +(6141, '情'), +(6142, '情'), +(6143, '情'), +(6144, '条'), +(6145, '条'), +(6146, '条'), +(6147, '条'), +(6148, '責'), +(6149, '責'), +(6150, '責'), +(6151, '責'), +(6152, '織'), +(6153, '織'), +(6154, '織'), +(6155, '織'), +(6156, '織'), +(6157, '織'), +(6158, '賞'), +(6159, '賞'), +(6160, '賞'), +(6161, '賞'), +(6162, '祖'), +(6163, '祖'), +(6164, '祖'), +(6165, '祖'), +(6166, '団'), +(6167, '団'), +(6168, '団'), +(6169, '団'), +(6170, '団'), +(6171, '団'), +(6172, '属'), +(6173, '属'), +(6174, '属'), +(6175, '属'), +(6176, '属'), +(6177, '属'), +(6178, '損'), +(6179, '損'), +(6180, '損'), +(6181, '損'), +(6182, '則'), +(6183, '則'), +(6184, '則'), +(6185, '則'), +(6186, '率'), +(6187, '率'), +(6188, '率'), +(6189, '率'), +(6190, '率'), +(6191, '率'), +(6192, '率'), +(6193, '率'), +(6194, '築'), +(6195, '築'), +(6196, '築'), +(6197, '築'), +(6198, '造'), +(6199, '造'), +(6200, '造'), +(6201, '造'), +(6202, '増'), +(6203, '増'), +(6204, '増'), +(6205, '増'), +(6206, '絶'), +(6207, '絶'), +(6208, '絶'), +(6209, '絶'), +(6210, '素'), +(6211, '素'), +(6212, '素'), +(6213, '素'), +(6214, '素'), +(6215, '素'), +(6216, '素'), +(6217, '素'), +(6218, '測'), +(6219, '測'), +(6220, '測'), +(6221, '測'), +(6222, '貯'), +(6223, '貯'), +(6224, '貯'), +(6225, '設'), +(6226, '設'), +(6227, '設'), +(6228, '設'), +(6229, '断'), +(6230, '断'), +(6231, '断'), +(6232, '断'), +(6233, '停'), +(6234, '停'), +(6235, '停'), +(6236, '停'), +(6237, '態'), +(6238, '態'), +(6239, '態'), +(6240, '態'), +(6241, '総'), +(6242, '総'), +(6243, '総'), +(6244, '総'), +(6245, '像'), +(6246, '像'), +(6247, '像'), +(6248, '像'), +(6249, '貸'), +(6250, '貸'), +(6251, '貸'), +(6252, '貸'), +(6253, '提'), +(6254, '提'), +(6255, '提'), +(6256, '提'), +(6257, '提'), +(6258, '提'), +(6259, '提'), +(6260, '提'), +(6261, '提'), +(6262, '提'), +(6263, '適'), +(6264, '適'), +(6265, '適'), +(6266, '適'), +(6267, '程'), +(6268, '程'), +(6269, '程'), +(6270, '程'), +(6271, '張'), +(6272, '張'), +(6273, '張'), +(6274, '張'), +(6275, '版'), +(6276, '版'), +(6277, '版'), +(6278, '版'), +(6279, '犯'), +(6280, '犯'), +(6281, '犯'), +(6282, '犯'), +(6283, '犯'), +(6284, '犯'), +(6285, '比'), +(6286, '比'), +(6287, '比'), +(6288, '比'), +(6289, '統'), +(6290, '統'), +(6291, '統'), +(6292, '統'), +(6293, '判'), +(6294, '判'), +(6295, '判'), +(6296, '判'), +(6297, '判'), +(6298, '判'), +(6299, '判'), +(6300, '非'), +(6301, '非'), +(6302, '非'), +(6303, '非'), +(6304, '任'), +(6305, '任'), +(6306, '任'), +(6307, '任'), +(6308, '得'), +(6309, '得'), +(6310, '得'), +(6311, '得'), +(6312, '能'), +(6313, '能'), +(6314, '能'), +(6315, '能'), +(6316, '費'), +(6317, '費'), +(6318, '費'), +(6319, '費'), +(6320, '導'), +(6321, '導'), +(6322, '導'), +(6323, '導'), +(6324, '堂'), +(6325, '堂'), +(6326, '堂'), +(6327, '堂'), +(6328, '破'), +(6329, '破'), +(6330, '破'), +(6331, '破'), +(6332, '燃'), +(6333, '燃'), +(6334, '燃'), +(6335, '燃'), +(6336, '肥'), +(6337, '肥'), +(6338, '肥'), +(6339, '肥'), +(6340, '独'), +(6341, '独'), +(6342, '独'), +(6343, '独'), +(6344, '銅'), +(6345, '銅'), +(6346, '銅'), +(6347, '銅'), +(6348, '毒'), +(6349, '毒'), +(6350, '毒'), +(6351, '毒'), +(6352, '貧'), +(6353, '貧'), +(6354, '貧'), +(6355, '貧'), +(6356, '貧'), +(6357, '貧'), +(6358, '評'), +(6359, '評'), +(6360, '評'), +(6361, '評'), +(6362, '備'), +(6363, '備'), +(6364, '備'), +(6365, '備'), +(6366, '婦'), +(6367, '婦'), +(6368, '婦'), +(6369, '婦'), +(6370, '布'), +(6371, '布'), +(6372, '布'), +(6373, '布'), +(6374, '布'), +(6375, '布'), +(6376, '武'), +(6377, '武'), +(6378, '武'), +(6379, '武'), +(6380, '武'), +(6381, '武'), +(6382, '武'), +(6383, '武'), +(6384, '復'), +(6385, '復'), +(6386, '復'), +(6387, '復'), +(6388, '編'), +(6389, '編'), +(6390, '編'), +(6391, '編'), +(6392, '綿'), +(6393, '綿'), +(6394, '綿'), +(6395, '綿'), +(6396, '豊'), +(6397, '豊'), +(6398, '豊'), +(6399, '豊'), +(6400, '豊'), +(6401, '豊'), +(6402, '余'), +(6403, '余'), +(6404, '余'), +(6405, '余'), +(6406, '脈'), +(6407, '脈'), +(6408, '脈'), +(6409, '脈'), +(6410, '保'), +(6411, '保'), +(6412, '保'), +(6413, '保'), +(6414, '保'), +(6415, '保'), +(6416, '保'), +(6417, '保'), +(6418, '夢'), +(6419, '夢'), +(6420, '夢'), +(6421, '夢'), +(6422, '複'), +(6423, '複'), +(6424, '複'), +(6425, '複'), +(6426, '留'), +(6427, '留'), +(6428, '留'), +(6429, '留'), +(6430, '留'), +(6431, '留'), +(6432, '留'), +(6433, '務'), +(6434, '務'), +(6435, '務'), +(6436, '務'), +(6437, '輸'), +(6438, '輸'), +(6439, '輸'), +(6440, '輸'), +(6441, '輸'), +(6442, '輸'), +(6443, '報'), +(6444, '報'), +(6445, '報'), +(6446, '報'), +(6447, '弁'), +(6448, '弁'), +(6449, '弁'), +(6450, '弁'), +(6451, '迷'), +(6452, '迷'), +(6453, '迷'), +(6454, '迷'), +(6455, '粉'), +(6456, '粉'), +(6457, '粉'), +(6458, '粉'), +(6459, '領'), +(6460, '領'), +(6461, '領'), +(6462, '領'), +(6463, '暴'), +(6464, '暴'), +(6465, '暴'), +(6466, '暴'), +(6467, '暴'), +(6468, '暴'), +(6469, '略'), +(6470, '略'), +(6471, '略'), +(6472, '略'), +(6473, '仏'), +(6474, '仏'), +(6475, '仏'), +(6476, '仏'), +(6477, '仏'), +(6478, '仏'), +(6479, '仏'), +(6480, '仏'), +(6481, '歴'), +(6482, '歴'), +(6483, '歴'), +(6484, '歴'), +(6485, '歴'), +(6486, '防'), +(6487, '防'), +(6488, '防'), +(6489, '防'), +(6490, '貿'), +(6491, '貿'), +(6492, '墓'), +(6493, '墓'), +(6494, '墓'), +(6495, '墓'), +(6496, '容'), +(6497, '容'), +(6498, '容'), +(6499, '容'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("うつ.る"), +("うつ.す"), +("かこ.む"), +("かこ.う"), +("かこ.い"), +("よ.る"), +("ちな.む"), +("いとな.む"), +("いとな.み"), +("やさ.しい"), +("やす.い"), +("ま.す"), +("お.す"), +("へ.す"), +("おさ.える"), +("お.さえる"), +("い.く"), +("いにしえ"), +("さき.に"), +("ゆ.く"), +("-べ.き"), +("-べ.し"), +("さくら"), +("かり"), +("かり-"), +("あた.る"), +("まさに"), +("こた.える"), +("なが.い"), +("あたい"), +("たし.か"), +("たし.かめる"), +("す.ぎる"), +("す.ごす"), +("あやま.ち"), +("あやま.つ"), +("よぎ.る"), +("よ.ぎる"), +("かわ"), +("こころよ.い"), +("と.く"), +("と.かす"), +("と.ける"), +("ほど.く"), +("ほど.ける"), +("わか.る"), +("さと.る"), +("ひさ.しい"), +("ひたい"), +("よろこ.ぶ"), +("よろこ.ばす"), +("もと"), +("もとい"), +("さか"), +("さか.さ"), +("さか.らう"), +("わざ"), +("ゆる.す"), +("もと"), +("まなこ"), +("め"), +("みき"), +("よ.る"), +("-よ.り"), +("よ.せる"), +("なら.す"), +("すく.う"), +("かた"), +("-がた"), +("さかい"), +("な.れる"), +("な.らす"), +("へ.る"), +("た.つ"), +("たていと"), +("はか.る"), +("のり"), +("い.る"), +("-い"), +("お.る"), +("いさぎよ.い"), +("へ.る"), +("へ.らす"), +("けわ.しい"), +("ふる.い"), +("もと"), +("かぎ.る"), +("かぎ.り"), +("-かぎ.り"), +("あらわ.れる"), +("あらわ.す"), +("うつつ"), +("うつ.つ"), +("しら.べる"), +("ゆえ"), +("ふる.い"), +("もと"), +("たがや.す"), +("き.く"), +("ききめ"), +("なら.う"), +("まも.る"), +("くだん"), +("あつ.い"), +("あか"), +("つみ"), +("まじ.える"), +("まじ.る"), +("あらがね"), +("ま.じる"), +("-ま.じり"), +("ま.ざる"), +("ま.ぜる"), +("こ.む"), +("つ.げる"), +("おこ.る"), +("おこ.す"), +("ころ.す"), +("-ごろ.し"), +("そ.ぐ"), +("わざわ.い"), +("たから"), +("たす.ける"), +("たた.える"), +("と.る"), +("かま.える"), +("かま.う"), +("さむらい"), +("きわ"), +("-ぎわ"), +("あ.る"), +("ささ.える"), +("つか.える"), +("か.う"), +("ふたた.び"), +("す.い"), +("つま"), +("いくさ"), +("えだ"), +("シリング"), +("こころざ.す"), +("こころざし"), +("か.う"), +("に.る"), +("ひ.る"), +("たち"), +("ただ.す"), +("もと"), +("わりふ"), +("しめ.す"), +("あやま.る"), +("おさ.める"), +("おさ.まる"), +("し.る"), +("しる.す"), +("さず.ける"), +("さず.かる"), +("やど.る"), +("すべ"), +("つい.で"), +("ついで"), +("の.べる"), +("あかし"), +("まね.く"), +("かたど.る"), +("じゅん.じる"), +("じゅん.ずる"), +("なぞら.える"), +("のり"), +("ひと.しい"), +("みずもり"), +("さが"), +("まつりごと"), +("まん"), +("つ.ぐ"), +("しら.げる"), +("くわ.しい"), +("いきお.い"), +("はずみ"), +("つね"), +("とこ-"), +("なさ.け"), +("えだ"), +("すじ"), +("せ.める"), +("お.る"), +("お.り"), +("おり"), +("-おり"), +("-お.り"), +("ほ.める"), +("かたまり"), +("まる.い"), +("さかん"), +("つく"), +("やから"), +("そこ.なう"), +("そこな.う"), +("-そこ.なう"), +("そこ.ねる"), +("-そこ.ねる"), +("のっと.る"), +("のり"), +("すなわち"), +("ひき.いる"), +("きず.く"), +("つく.る"), +("つく.り"), +("-づく.り"), +("ま.す"), +("ま.し"), +("ふ.える"), +("ふ.やす"), +("た.える"), +("た.やす"), +("た.つ"), +("もと"), +("はか.る"), +("た.める"), +("たくわ.える"), +("もう.ける"), +("た.つ"), +("ことわ.る"), +("さだ.める"), +("と.める"), +("と.まる"), +("わざ.と"), +("す.べて"), +("すべ.て"), +("ふさ"), +("か.す"), +("か.し-"), +("かし-"), +("さ.げる"), +("かな.う"), +("ほど"), +("-ほど"), +("は.る"), +("-は.り"), +("-ば.り"), +("おか.す"), +("くら.べる"), +("す.べる"), +("ほび.る"), +("わか.る"), +("あら.ず"), +("まか.せる"), +("まか.す"), +("え.る"), +("う.る"), +("よ.く"), +("あた.う"), +("つい.やす"), +("つい.える"), +("みちび.く"), +("やぶ.る"), +("やぶ.れる"), +("わ.れる"), +("も.える"), +("も.やす"), +("も.す"), +("こ.える"), +("こえ"), +("こ.やす"), +("こ.やし"), +("ふと.る"), +("ひと.り"), +("あかがね"), +("まず.しい"), +("そな.える"), +("そな.わる"), +("つぶさ.に"), +("よめ"), +("ぬの"), +("し.く"), +("きれ"), +("たけ"), +("たけ.し"), +("また"), +("あ.む"), +("-あ.み"), +("わた"), +("ゆた.か"), +("とよ"), +("あま.る"), +("あま.り"), +("あま.す"), +("あんま.り"), +("すじ"), +("たも.つ"), +("ゆめ"), +("ゆめ.みる"), +("くら.い"), +("と.める"), +("と.まる"), +("とど.める"), +("とど.まる"), +("るうぶる"), +("つと.める"), +("むく.いる"), +("かんむり"), +("わきま.える"), +("わ.ける"), +("はなびら"), +("あらそ.う"), +("まよ.う"), +("デシメートル"), +("こ"), +("こな"), +("えり"), +("あば.く"), +("あば.れる"), +("ほぼ"), +("はぶ.く"), +("おか.す"), +("おさ.める"), +("はかりごと"), +("はか.る"), +("ほとけ"), +("ふせ.ぐ"), +("はか"), +("い.れる"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('移', 'うつ.る'), +('移', 'うつ.す'), +('囲', 'かこ.む'), +('囲', 'かこ.う'), +('囲', 'かこ.い'), +('因', 'よ.る'), +('因', 'ちな.む'), +('営', 'いとな.む'), +('営', 'いとな.み'), +('易', 'やさ.しい'), +('易', 'やす.い'), +('益', 'ま.す'), +('圧', 'お.す'), +('圧', 'へ.す'), +('圧', 'おさ.える'), +('圧', 'お.さえる'), +('往', 'い.く'), +('往', 'いにしえ'), +('往', 'さき.に'), +('往', 'ゆ.く'), +('可', '-べ.き'), +('可', '-べ.し'), +('桜', 'さくら'), +('仮', 'かり'), +('仮', 'かり-'), +('応', 'あた.る'), +('応', 'まさに'), +('応', 'こた.える'), +('永', 'なが.い'), +('価', 'あたい'), +('確', 'たし.か'), +('確', 'たし.かめる'), +('過', 'す.ぎる'), +('過', 'す.ごす'), +('過', 'あやま.ち'), +('過', 'あやま.つ'), +('過', 'よぎ.る'), +('過', 'よ.ぎる'), +('河', 'かわ'), +('快', 'こころよ.い'), +('解', 'と.く'), +('解', 'と.かす'), +('解', 'と.ける'), +('解', 'ほど.く'), +('解', 'ほど.ける'), +('解', 'わか.る'), +('解', 'さと.る'), +('久', 'ひさ.しい'), +('額', 'ひたい'), +('喜', 'よろこ.ぶ'), +('喜', 'よろこ.ばす'), +('基', 'もと'), +('基', 'もとい'), +('逆', 'さか'), +('逆', 'さか.さ'), +('逆', 'さか.らう'), +('技', 'わざ'), +('許', 'ゆる.す'), +('許', 'もと'), +('眼', 'まなこ'), +('眼', 'め'), +('幹', 'みき'), +('寄', 'よ.る'), +('寄', '-よ.り'), +('寄', 'よ.せる'), +('均', 'なら.す'), +('救', 'すく.う'), +('型', 'かた'), +('型', '-がた'), +('境', 'さかい'), +('慣', 'な.れる'), +('慣', 'な.らす'), +('経', 'へ.る'), +('経', 'た.つ'), +('経', 'たていと'), +('経', 'はか.る'), +('経', 'のり'), +('居', 'い.る'), +('居', '-い'), +('居', 'お.る'), +('潔', 'いさぎよ.い'), +('減', 'へ.る'), +('減', 'へ.らす'), +('険', 'けわ.しい'), +('旧', 'ふる.い'), +('旧', 'もと'), +('限', 'かぎ.る'), +('限', 'かぎ.り'), +('限', '-かぎ.り'), +('現', 'あらわ.れる'), +('現', 'あらわ.す'), +('現', 'うつつ'), +('現', 'うつ.つ'), +('検', 'しら.べる'), +('故', 'ゆえ'), +('故', 'ふる.い'), +('故', 'もと'), +('耕', 'たがや.す'), +('効', 'き.く'), +('効', 'ききめ'), +('効', 'なら.う'), +('護', 'まも.る'), +('件', 'くだん'), +('厚', 'あつ.い'), +('厚', 'あか'), +('罪', 'つみ'), +('雑', 'まじ.える'), +('雑', 'まじ.る'), +('鉱', 'あらがね'), +('混', 'ま.じる'), +('混', '-ま.じり'), +('混', 'ま.ざる'), +('混', 'ま.ぜる'), +('混', 'こ.む'), +('告', 'つ.げる'), +('興', 'おこ.る'), +('興', 'おこ.す'), +('殺', 'ころ.す'), +('殺', '-ごろ.し'), +('殺', 'そ.ぐ'), +('災', 'わざわ.い'), +('財', 'たから'), +('賛', 'たす.ける'), +('賛', 'たた.える'), +('採', 'と.る'), +('構', 'かま.える'), +('構', 'かま.う'), +('士', 'さむらい'), +('際', 'きわ'), +('際', '-ぎわ'), +('在', 'あ.る'), +('支', 'ささ.える'), +('支', 'つか.える'), +('支', 'か.う'), +('再', 'ふたた.び'), +('酸', 'す.い'), +('妻', 'つま'), +('師', 'いくさ'), +('枝', 'えだ'), +('志', 'シリング'), +('志', 'こころざ.す'), +('志', 'こころざし'), +('飼', 'か.う'), +('似', 'に.る'), +('似', 'ひ.る'), +('質', 'たち'), +('質', 'ただ.す'), +('質', 'もと'), +('質', 'わりふ'), +('示', 'しめ.す'), +('謝', 'あやま.る'), +('修', 'おさ.める'), +('修', 'おさ.まる'), +('識', 'し.る'), +('識', 'しる.す'), +('授', 'さず.ける'), +('授', 'さず.かる'), +('舎', 'やど.る'), +('術', 'すべ'), +('序', 'つい.で'), +('序', 'ついで'), +('述', 'の.べる'), +('証', 'あかし'), +('招', 'まね.く'), +('象', 'かたど.る'), +('準', 'じゅん.じる'), +('準', 'じゅん.ずる'), +('準', 'なぞら.える'), +('準', 'のり'), +('準', 'ひと.しい'), +('準', 'みずもり'), +('性', 'さが'), +('政', 'まつりごと'), +('政', 'まん'), +('接', 'つ.ぐ'), +('精', 'しら.げる'), +('精', 'くわ.しい'), +('勢', 'いきお.い'), +('勢', 'はずみ'), +('常', 'つね'), +('常', 'とこ-'), +('情', 'なさ.け'), +('条', 'えだ'), +('条', 'すじ'), +('責', 'せ.める'), +('織', 'お.る'), +('織', 'お.り'), +('織', 'おり'), +('織', '-おり'), +('織', '-お.り'), +('賞', 'ほ.める'), +('団', 'かたまり'), +('団', 'まる.い'), +('属', 'さかん'), +('属', 'つく'), +('属', 'やから'), +('損', 'そこ.なう'), +('損', 'そこな.う'), +('損', '-そこ.なう'), +('損', 'そこ.ねる'), +('損', '-そこ.ねる'), +('則', 'のっと.る'), +('則', 'のり'), +('則', 'すなわち'), +('率', 'ひき.いる'), +('築', 'きず.く'), +('造', 'つく.る'), +('造', 'つく.り'), +('造', '-づく.り'), +('増', 'ま.す'), +('増', 'ま.し'), +('増', 'ふ.える'), +('増', 'ふ.やす'), +('絶', 'た.える'), +('絶', 'た.やす'), +('絶', 'た.つ'), +('素', 'もと'), +('測', 'はか.る'), +('貯', 'た.める'), +('貯', 'たくわ.える'), +('設', 'もう.ける'), +('断', 'た.つ'), +('断', 'ことわ.る'), +('断', 'さだ.める'), +('停', 'と.める'), +('停', 'と.まる'), +('態', 'わざ.と'), +('総', 'す.べて'), +('総', 'すべ.て'), +('総', 'ふさ'), +('貸', 'か.す'), +('貸', 'か.し-'), +('貸', 'かし-'), +('提', 'さ.げる'), +('適', 'かな.う'), +('程', 'ほど'), +('程', '-ほど'), +('張', 'は.る'), +('張', '-は.り'), +('張', '-ば.り'), +('犯', 'おか.す'), +('比', 'くら.べる'), +('統', 'す.べる'), +('統', 'ほび.る'), +('判', 'わか.る'), +('非', 'あら.ず'), +('任', 'まか.せる'), +('任', 'まか.す'), +('得', 'え.る'), +('得', 'う.る'), +('能', 'よ.く'), +('能', 'あた.う'), +('費', 'つい.やす'), +('費', 'つい.える'), +('導', 'みちび.く'), +('破', 'やぶ.る'), +('破', 'やぶ.れる'), +('破', 'わ.れる'), +('燃', 'も.える'), +('燃', 'も.やす'), +('燃', 'も.す'), +('肥', 'こ.える'), +('肥', 'こえ'), +('肥', 'こ.やす'), +('肥', 'こ.やし'), +('肥', 'ふと.る'), +('独', 'ひと.り'), +('銅', 'あかがね'), +('貧', 'まず.しい'), +('備', 'そな.える'), +('備', 'そな.わる'), +('備', 'つぶさ.に'), +('婦', 'よめ'), +('布', 'ぬの'), +('布', 'し.く'), +('布', 'きれ'), +('武', 'たけ'), +('武', 'たけ.し'), +('復', 'また'), +('編', 'あ.む'), +('編', '-あ.み'), +('綿', 'わた'), +('豊', 'ゆた.か'), +('豊', 'とよ'), +('余', 'あま.る'), +('余', 'あま.り'), +('余', 'あま.す'), +('余', 'あんま.り'), +('脈', 'すじ'), +('保', 'たも.つ'), +('夢', 'ゆめ'), +('夢', 'ゆめ.みる'), +('夢', 'くら.い'), +('留', 'と.める'), +('留', 'と.まる'), +('留', 'とど.める'), +('留', 'とど.まる'), +('留', 'るうぶる'), +('務', 'つと.める'), +('報', 'むく.いる'), +('弁', 'かんむり'), +('弁', 'わきま.える'), +('弁', 'わ.ける'), +('弁', 'はなびら'), +('弁', 'あらそ.う'), +('迷', 'まよ.う'), +('粉', 'デシメートル'), +('粉', 'こ'), +('粉', 'こな'), +('領', 'えり'), +('暴', 'あば.く'), +('暴', 'あば.れる'), +('略', 'ほぼ'), +('略', 'はぶ.く'), +('略', 'おか.す'), +('略', 'おさ.める'), +('略', 'はかりごと'), +('略', 'はか.る'), +('仏', 'ほとけ'), +('防', 'ふせ.ぐ'), +('墓', 'はか'), +('容', 'い.れる'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('移る', 'うつる', 'to move (house), to transfer (department), to change the target of interest or concern, to elapse (passage of time), to be permeated by a colour or scent, to be infected, to be contagious, to spread (as in fire)'), +('移す', 'うつす', 'to change, to swap, to substitute, to transfer, to change the object of one''s interest or focus, to spend or take time, to infect, to permeate something with the smell or colour of something, to move on to the next or different stage of (a plan, etc.)'), +('囲む', 'かこむ', 'to surround, to encircle, to enclose, to fence, to wall in, to besiege, to lay siege to, to play (go, shogi, etc.)'), +('囲う', 'かこう', 'to enclose, to surround, to encircle, to fence, to wall in, to shelter (e.g. a criminal), to shield, to hide, to protect, to keep (e.g. a mistress), to store (vegetables, fruit, etc.), to preserve, to protect'), +('囲い', 'かこい', 'enclosure, fence, wall, pen, paling, storage (of fruit, vegetables, etc.), partitioned area of a room for conducting tea ceremonies, mistress, castle, strong defensive position'), +('囲い込み', 'かこいこみ', 'enclosure'), +('依る', 'よる', 'to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at'), +('よるところが大きい', 'よるところがおおきい', 'depending largely on, playing a large role in, due largely to'), +('因む', 'ちなむ', 'to be associated (with), to be connected (with)'), +('営む', 'いとなむ', 'to run (a business), to operate, to conduct, to practice (law, medicine, etc.), to carry out, to perform, to lead (a life), to hold (a Buddhist or Shinto ceremony)'), +('営み', 'いとなみ', 'activity, action, performance, execution, occupation, business, work, sexual intercourse, sex, preparations'), +('易しい', 'やさしい', 'easy, plain, simple'), +('やさしい文章', 'やさしいぶんしょう', 'easy (simple) writing'), +('易い', 'やすい', 'easy, likely to ..., have a tendency to ..., easy to ...'), +('益々', 'ますます', 'increasingly, more and more, decreasingly (when declining), less and less'), +('丈夫', 'じょうふ', 'hero, manly person, warrior'), +('押す', 'おす', 'to push, to press, to apply pressure from above, to press down, to stamp (i.e. a passport), to apply a seal, to affix (e.g. gold leaf), to press (someone for something), to urge, to compel, to influence, to overwhelm, to overpower, to repress, to push (events along), to advance (a plan), to do in spite of ..., to do even though ..., to force, to make sure, to be pressed for time, to advance troops, to attack, (of light) to be diffused across an entire surface'), +('圧す', 'へす', 'to dent, to press, to push'), +('行く', 'いく', 'to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination'), +('行く', 'いく', 'to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination'), +('桜', 'さくら', 'cherry tree, cherry blossom, fake buyer, paid audience, shill, seat filler, hired applauder, horse meat'), +('桜花', 'おうか', 'cherry blossom'), +('左近の桜', 'さこんのさくら', 'cherry tree east of the southern stairs of the Hall for State Ceremonies (in Heian Palace)'), +('仮', 'かり', 'temporary, provisional, interim, fictitious, assumed (name), alias, hypothetical, theoretical'), +('仮に', 'かりに', 'supposing, even if, granting that, for argument''s sake, temporarily, provisionally, for the time being'), +('応える', 'こたえる', 'to respond, to answer, to meet (e.g. demands, expectations), to affect, to take a toll, to strike home, to have an effect on, to be hard on someone (e.g. heat, cold, work, illness, etc.), to be a strain'), +('長い', 'ながい', 'long (distance, length), long (time), protracted, prolonged'), +('長いこと', 'ながいこと', 'for a long time'), +('値', 'あたい', 'price, cost, value, worth, merit, value'), +('値する', 'あたいする', 'to be worth, to be worthy of, to deserve, to merit'), +('確か', 'たしか', 'sure, certain, positive, definite, reliable, trustworthy, safe, sound, firm, accurate, correct, exact, If I''m not mistaken, If I remember correctly, If I remember rightly'), +('確かめる', 'たしかめる', 'to ascertain, to check, to make sure'), +('確かめる', 'たしかめる', 'to ascertain, to check, to make sure'), +('過ぎる', 'すぎる', 'to pass through, to pass by, to go beyond, to pass (of time), to elapse, to have expired, to have ended, to be over, to exceed, to surpass, to be above, to be no more than ..., to be excessive, to be too much, to be too ...'), +('過ごす', 'すごす', 'to pass (time), to spend, to overdo (esp. of one''s alcohol consumption), to drink (alcohol), to take care of, to support, to overdo, to do too much, to ... without acting on it'), +('過ち', 'あやまち', 'fault, error, indiscretion, faux pas'), +('過ちを犯す', 'あやまちをおかす', 'to make an error'), +('過つ', 'あやまつ', 'to err'), +('過ぎる', 'よぎる', 'to go by, to cross, to pass by, to flash across'), +('過ぎる', 'よぎる', 'to go by, to cross, to pass by, to flash across'), +('川', 'かわ', 'river, stream, River, the ... river'), +('河', 'ホー', 'discarded tiles, discards'), +('追河', 'おいかわ', 'freshwater minnow, pale chub (Zacco platypus)'), +('恋河', 'こいかわ', 'oceans of love'), +('快い', 'こころよい', 'pleasant, agreeable, comfortable, refreshing'), +('解く', 'とく', 'to untie, to unfasten, to unwrap, to undo, to unbind, to unpack, to unsew, to unstitch, to solve, to work out, to answer, to dispel (misunderstanding, etc.), to clear up, to remove (suspicion), to appease, to dissolve (a contract), to cancel, to remove (a prohibition), to lift (a ban), to raise (a siege), to release (from duty), to relieve, to dismiss, to comb (out), to card, to untangle (hair)'), +('溶かす', 'とかす', 'to dissolve, to melt'), +('梳かす', 'とかす', 'to comb out, to brush, to untangle, to unravel'), +('解ける', 'とける', 'to be solved, to be resolved, to loosen, to come untied, to come undone, to be removed (of restrictions), to be lifted (e.g. a ban), to be broken (spells, curses, etc.), to dissipate (of anger, tension, etc.), to melt away, to ease, to be appeased, to be resolved (of a dispute, misunderstanding, etc.), to be cleared up'), +('溶ける', 'とける', 'to melt, to thaw, to fuse, to dissolve'), +('解く', 'ほどく', 'to undo, to untie, to unfasten, to unlace, to unravel, to loosen, to unpack'), +('解ける', 'ほどける', 'to come loose, to come untied, to come undone, to unravel, to loosen up (e.g. tension)'), +('分かる', 'わかる', 'to understand, to comprehend, to grasp, to see, to get, to follow, to become clear, to be known, to be discovered, to be realized, to be realised, to be found out, I know!, I think so too!'), +('久しい', 'ひさしい', 'long (time that has passed), old (story)'), +('額', 'ひたい', 'forehead, brow'), +('額当て', 'ひたいあて', '(military) headband with reinforced metal plate, red headband'), +('広い額', 'ひろいひたい', 'high brow, broad forehead'), +('喜ぶ', 'よろこぶ', 'to be delighted, to be glad, to be pleased, to congratulate, to gratefully accept'), +('喜ばす', 'よろこばす', 'to delight, to give pleasure'), +('元', 'もと', 'origin, source, base, basis, foundation, root, cause, ingredient, material, base, mix, stock, (someone''s) side, (someone''s) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip'), +('基', 'もとい', 'basis, foundation, cause'), +('失敗は成功のもと', 'しっぱいはせいこうのもと', 'failure teaches success, failure is a stepping-stone to success'), +('生兵法は大怪我のもと', 'なまびょうほうはおおけがのもと', 'a little learning is a dangerous thing'), +('基', 'もとい', 'basis, foundation, cause'), +('逆', 'さか', 'inverse, reverse'), +('逆らう', 'さからう', 'to go against, to oppose, to disobey, to defy'), +('逆さ', 'さかさ', 'inverted, upside down, reversed, back to front'), +('逆さま', 'さかさま', 'inverted, upside down, reversed, back to front, wrong way round'), +('逆らう', 'さからう', 'to go against, to oppose, to disobey, to defy'), +('技', 'わざ', 'technique, art, skill, move'), +('技あり', 'わざあり', 'waza-ari (in judo, a half-point awarded for good but incomplete execution)'), +('寝技', 'ねわざ', 'pinning technique (in wrestling or judo), underhanded dealings'), +('投げ技', 'なげわざ', 'throw or throwing technique (sumo, judo)'), +('許す', 'ゆるす', 'to permit, to allow, to approve, to consent to, to forgive, to pardon, to excuse, to tolerate, to exempt (someone) from, to remit, to release, to let off, to acknowledge, to admit, to trust, to confide in, to let one''s guard down, to give up (points in a game, distance in a race, etc.), to yield'), +('許すまじ', 'ゆるすまじ', 'unforgivable, inexcusable, unpardonable'), +('下', 'もと', 'under (guidance, supervision, rules, the law, etc.), under (a flag, the sun, etc.), beneath, with (e.g. one blow), on (the promise, condition, assumption, etc. that ...), in (e.g. the name of), (someone''s) side, (someone''s) location'), +('胸元', 'むなもと', 'breast, chest, pit of the stomach, solar plexus, epigastrium'), +('其処許', 'そこもと', 'that place, there, you'), +('眼', 'まなこ', 'eye, eyeball, pupil and (dark) iris of the eye, insight, perceptivity, power of observation, look, field of vision, core, center, centre, essence'), +('血眼', 'ちまなこ', 'bloodshot eyes, (doing something in a) frenzy'), +('百眼', 'ひゃくまなこ', 'using multiple simple paper masks to represent different emotions in a play (from the middle of the Edo period), simple paper mask'), +('目', 'め', 'eye, eyeball, eyesight, sight, vision, look, stare, gaze, glance, notice, attention, observation, eyes (of the world, public, etc.), an experience, viewpoint, discrimination, discernment, judgement, eye (e.g. for quality), appearance, chance to succeed, possibility, spacing (between crossed strands of a net, mesh, etc.), opening, stitch, texture, weave, grain (of wood), eye (of a storm, needle, etc.), intersection (on a go board), square (on a chess board), dot (on a dice), pip, rolled number, graduation, division (of a scale), tooth (of a saw, comb, etc.), ordinal number suffix, somewhat, -ish, point (e.g. of change)'), +('眼鏡', 'めがね', 'glasses, eyeglasses, spectacles, judgment, judgement, discrimination, discernment, insight'), +('血眼', 'ちまなこ', 'bloodshot eyes, (doing something in a) frenzy'), +('青目', 'あおめ', 'blue eyes, a Westerner'), +('幹', 'みき', '(tree) trunk, (arrow) shaft, (tool) handle, backbone, base'), +('寄る', 'よる', 'to approach, to draw near, to come near, to be close to, to gather (in one place), to come together, to meet, to stop by (while on one''s way to another place), to drop by, to make a short visit, to grow old, to grow high (number, etc.), to grow (wrinkly), to lean against, to recline on, to push one''s opponent while holding their belt, to decide on a price and come to a deal, to be swayed by (a person), to yield to'), +('寄ると触ると', 'よるとさわると', 'whenever they come together'), +('寄せる', 'よせる', 'to come near, to let someone approach, to bring near, to bring together, to collect, to gather, to deliver (opinion, news, etc.), to send (e.g. a letter), to contribute, to donate, to let someone drop by, to add (numbers), to have feelings for (love, goodwill, trust, etc.), to rely upon for a time, to depend on, to use as a pretext, to put aside, to press, to push, to force, to include, to welcome (in a group), to let in'), +('均す', 'ならす', 'to make even, to make smooth, to make level, to flatten, to average'), +('救う', 'すくう', 'to rescue from, to help out of, to save'), +('型', 'かた', 'model, type (e.g. of machine, goods, etc.), type, style, pattern, mold (mould), template, model, kata (standard form of a movement, posture, etc. in martial arts, sport, etc.), form (i.e. customary procedure), size (i.e. clothing, shoes), inch (in diagonal display size), (taxonomical) form'), +('ギャランティ型', 'ギャランティかた', 'guarantee type'), +('ベストエフォート型', 'ベストエフォートかた', 'best-effort'), +('境', 'さかい', 'border, boundary, turning point, watershed, area, region, spot, space, environment, psychological state, mental state, cognitive object, something perceptible by the sense organs or mind'), +('境目', 'さかいめ', 'borderline, boundary'), +('生死の境', 'せいしのさかい', 'between life and death'), +('慣れる', 'なれる', 'to get used to, to grow accustomed to, to become familiar with, to become skilled in, to become experienced at, to become tame, to become domesticated, to get used to doing'), +('慣らす', 'ならす', 'to accustom, to train (e.g. one''s ear), to tame, to domesticate, to train (an animal)'), +('経る', 'へる', 'to pass, to elapse, to go by, to pass through, to go through, to experience, to go through, to undergo'), +('経つ', 'たつ', 'to pass (of time), to elapse'), +('縦糸', 'たていと', '(weaving) warp'), +('居る', 'いる', 'to be (of animate objects), to exist, to stay, to be ...-ing, to have been ...-ing'), +('居留守を使う', 'いるすをつかう', 'to pretend to be out'), +('居る', 'おる', 'to be (animate), to be, to exist, to be ..ing, to (have the audacity to) do'), +('潔い', 'いさぎよい', 'manly, sportsmanlike, gracious, gallant, resolute, brave, pure (heart, actions, etc.), upright, blameless, unsullied (e.g. scenery or object), pure, clean'), +('減る', 'へる', 'to decrease (in size or number), to diminish, to abate'), +('減るもんじゃない', 'へるもんじゃない', 'it''s no big deal, it''s nothing to fret about, it''s not like it''s the end of the world'), +('減らす', 'へらす', 'to abate, to decrease, to diminish, to shorten'), +('険しい', 'けわしい', 'precipitous, rugged, inaccessible, impregnable, steep, grim, severe, stern'), +('険しい山', 'けわしいやま', 'steep mountain, craggy mountain'), +('古い', 'ふるい', 'old, aged, ancient, antiquated, antique, timeworn, long, since long ago, time-honored, of the distant past, long-ago, stale, threadbare, hackneyed, corny, old-fashioned, outmoded, out-of-date'), +('元', 'もと', 'former, ex-, past, one-time, earlier times, the past, previous state, formerly, previously, originally, before'), +('限る', 'かぎる', 'to restrict, to limit, to confine, to be restricted to, to be limited to, to be confined to, to be best (for), to be the best plan, to be the only way (to)'), +('限り', 'かぎり', 'limit, limits, bounds, degree, extent, scope, the end, the last, as long as ..., as far as ..., as much as ..., to the limits of ..., all of ..., unless ..., (not) included in ..., (not) part of ..., ... only (e.g. "one time only", "today only"), end of one''s life, final moments, death, funeral, burial'), +('限りある', 'かぎりある', 'finite, limited, restricted'), +('中限', 'なかぎり', 'next-month delivery'), +('現れる', 'あらわれる', 'to appear, to come in sight, to become visible, to come out, to embody, to materialize, to materialise, to be expressed (e.g. emotions), to become apparent (e.g. trends, effects)'), +('表す', 'あらわす', 'to represent, to signify, to stand for, to reveal, to show, to display, to express, to make widely known'), +('現つ', 'うつつ', 'reality, consciousness'), +('現責め', 'うつつぜめ', 'sleep deprivation (as a form of torture)'), +('現つ', 'うつつ', 'reality, consciousness'), +('現責め', 'うつつぜめ', 'sleep deprivation (as a form of torture)'), +('故', 'ゆえ', 'reason, cause, circumstances'), +('故に', 'ゆえに', 'therefore, consequently'), +('古い', 'ふるい', 'old, aged, ancient, antiquated, antique, timeworn, long, since long ago, time-honored, of the distant past, long-ago, stale, threadbare, hackneyed, corny, old-fashioned, outmoded, out-of-date'), +('元', 'もと', 'former, ex-, past, one-time, earlier times, the past, previous state, formerly, previously, originally, before'), +('耕す', 'たがやす', 'to till, to plow, to plough, to cultivate'), +('効く', 'きく', 'to be effective, to take effect, to be good (for), to work, to function well, to be possible (to do, use, etc.), to be able to, to taste (alcohol), to try'), +('効き目', 'ききめ', 'effect, virtue, efficacy, impression, one''s dominant eye'), +('守る', 'まもる', 'to protect, to guard, to defend, to keep (i.e. a promise), to abide (by the rules), to observe, to obey, to follow'), +('件', 'くだん', 'the aforementioned, the said, (man, incident, etc.) in question, the above-mentioned, the aforesaid, the usual'), +('厚い', 'あつい', 'thick, deep, heavy, kind, cordial, hospitable, warm, faithful, serious (of an illness), abundant'), +('厚板', 'あついた', 'plank, thick board, plate glass, heavy metal sheet (esp. welding), heavy brocaded obi'), +('罪', 'つみ', 'crime, sin, wrongdoing, indiscretion, penalty, sentence, punishment, fault, responsibility, culpability, thoughtlessness, lack of consideration'), +('罪滅ぼし', 'つみほろぼし', 'atonement, expiation'), +('無実の罪', 'むじつのつみ', 'false charge'), +('重い罪', 'おもいつみ', 'serious crime, grave crime'), +('交える', 'まじえる', 'to mix, to combine, to include, to exchange (words, fire, etc.), to cross (e.g. swords), to join together'), +('混じる', 'まじる', 'to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join'), +('粗金', 'あらがね', 'ore'), +('混じる', 'まじる', 'to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join'), +('混ざる', 'まざる', 'to be mixed, to be blended with, to associate with, to mingle with, to join'), +('混ぜる', 'まぜる', 'to mix, to stir, to blend'), +('混む', 'こむ', 'to be crowded, to be packed, to be congested, to be thronged (with)'), +('告げる', 'つげる', 'to tell, to inform, to announce, to indicate, to signal, to mark'), +('興る', 'おこる', 'to rise, to flourish'), +('興す', 'おこす', 'to vitalize (e.g. an industry), to invigorate, to energize, to revive, to promote, to make prosperous, to establish (e.g. a company), to build up, to set up, to launch, to commence'), +('殺す', 'ころす', 'to kill, to slay, to murder, to slaughter, to suppress, to block, to hamper, to destroy (e.g. talent), to eliminate (e.g. an odour), to spoil (e.g. a flavour), to kill (e.g. one''s speed), to suppress (a voice, feelings, etc.), to hold back, to stifle (a yawn, laugh, etc.), to hold (one''s breath), to put out (a runner), to pawn, to put in hock'), +('削ぐ', 'そぐ', 'to chip (off), to shave (off), to slice (off), to sharpen, to dampen (e.g. enthusiasm), to discourage, to weaken, to reduce'), +('災い', 'わざわい', 'disaster, calamity, misfortune, trouble, woes'), +('災いを招く', 'わざわいをまねく', 'to bring calamity upon oneself, to invite disaster, to court disaster'), +('宝', 'たから', 'treasure'), +('称える', 'たたえる', 'to extol, to give praise'), +('採る', 'とる', 'to adopt (method, proposal, etc.), to take (measure, course of action, etc.), to decide on, to pick (e.g. flowers), to gather (e.g. mushrooms), to catch (e.g. insects), to extract (e.g. juice), to take (e.g. a sample), to assume (an attitude), to take on (workers, students), to employ, to hire, to draw in (e.g. water), to let in (e.g. light from a window)'), +('採るべき道', 'とるべきみち', 'course of action'), +('構える', 'かまえる', 'to set up (a house, store, etc.), to build, to establish, to run, to maintain, to have at the ready (e.g. a gun), to hold in preparation (e.g. a camera), to prepare in advance (e.g. a meal), to adopt a posture, to assume a stance, to stand ready, to be poised for, to put on an air, to assume an attitude, to stiffen, to tense up, to become formal, to fabricate in order to deceive, to make up, to feign, to plan, to scheme'), +('構う', 'かまう', 'to mind, to care about, to be concerned about, to have a regard for, to be an issue, to matter, to create inconvenience, to keep company, to care for, to look after, to entertain, to pay attention to, to spend time with, to interfere with, to meddle in, to tease, to banish, to prohibit'), +('構うものか', 'かまうものか', 'who cares?, I don''t give a damn, what does it matter?'), +('侍', 'さむらい', 'warrior (esp. of military retainers of daimyos in the Edo period), samurai, man in attendance (on a person of high standing), retainer'), +('二四六九士', 'にしむくさむらい', 'mnemonic for remembering the months with fewer than 31 days (ni, shi, mu, ku, etc.)'), +('際', 'きわ', 'edge, brink, verge, side, time, moment of'), +('際立つ', 'きわだつ', 'to be prominent, to be conspicuous'), +('今際の際', 'いまわのきわ', 'verge of death, dying moments'), +('有る', 'ある', 'to be, to exist, to live, to have, to be located, to be equipped with, to happen, to come about'), +('在るが儘', 'あるがまま', 'in truth, as it is, as you are, in practice'), +('支える', 'ささえる', 'to support, to prop, to sustain, to underlay, to hold up, to defend, to hold at bay, to stem, to check'), +('閊える', 'つかえる', 'to stick, to get stuck, to get caught, to get jammed, to clog, to be unavailable, to be busy, to be occupied, to be full, to be piled up (e.g. of work), to halt (in one''s speech), to stumble (over one''s words), to stutter, to stammer, to feel blocked (of one''s chest or throat, due to grief, anxiety, illness, etc.), to feel pressure, to feel pain'), +('支う', 'かう', 'to support, to prop up'), +('再び', 'ふたたび', 'again, once more, a second time'), +('再び取る', 'ふたたびとる', 'to reassume'), +('酸い', 'すい', 'sour, acid'), +('酸葉', 'すいば', 'sorrel (Rumex acetosa), Common sorrel, garden sorrel, spinach dock'), +('妻', 'つま', 'wife, garnish (esp. one served with sashimi), trimmings, accompaniment, side (remark)'), +('端', 'つま', 'edge, tip, end, gable wall, gable'), +('駐妻', 'ちゅうつま', 'expat wife, wife of an expatriate employee'), +('我が妻', 'わがつま', 'my spouse (esp. used to refer to one''s wife), my wife, my husband'), +('枝', 'えだ', 'branch, bough, limb, twig, sprig, spray'), +('枝毛', 'えだげ', 'split end of hair'), +('若枝', 'わかえだ', 'young branch, sprig'), +('下枝', 'したえだ', 'lower branches of a tree'), +('志す', 'こころざす', 'to plan, to intend, to aspire to, to set aims (sights on)'), +('志', 'こころざし', 'will, resolution, intention, ambition, aim, goal, kindness, goodwill, kind offer, gift (as a token of gratitude)'), +('志は松の葉に包め', 'こころざしはまつのはにつつめ', 'for gifts, it''s the thought that counts'), +('お志', 'おこころざし', 'kindness, courtesy'), +('青雲の志', 'せいうんのこころざし', 'high (lofty) ambition'), +('飼う', 'かう', 'to keep (a pet or other animal), to have, to own, to raise, to rear, to feed'), +('似る', 'にる', 'to resemble, to look like, to be like, to be alike, to be similar, to take after'), +('質', 'たち', 'nature (of a person), disposition, temperament, nature (of something), character, kind, sort'), +('たちの悪い', 'たちのわるい', 'of bad character, ill-natured, nasty, vicious, wicked, malignant'), +('質す', 'ただす', 'to enquire of someone about something (inquire), to question'), +('示す', 'しめす', 'to (take out and) show, to demonstrate, to tell, to exemplify, to make apparent, to point out (finger, clock hand, needle, etc.), to indicate, to show, to represent, to signify, to display'), +('示偏', 'しめすへん', 'kanji "show" radical at left (radical 113)'), +('謝る', 'あやまる', 'to apologize, to apologise'), +('修める', 'おさめる', 'to study, to complete (a course), to cultivate, to master, to order (one''s life), to repair (a fault one has committed)'), +('修まる', 'おさまる', 'to reform (oneself), to conduct oneself well'), +('知る', 'しる', 'to know, to be aware (of), to be conscious (of), to learn (of), to find out, to discover, to sense, to feel, to notice, to realize, to understand, to comprehend, to grasp, to appreciate, to remember, to be familiar with, to be acquainted with, to experience, to go through, to know (e.g. hardship), to get acquainted with (a person), to get to know, to have to do with, to be concerned with, to be one''s concern, to be one''s responsibility'), +('記す', 'しるす', 'to write down, to note, to jot down, to remember'), +('記す', 'しるす', 'to write down, to note, to jot down, to remember'), +('授ける', 'さずける', 'to grant, to give, to confer, to award, to teach, to instruct, to impart (knowledge)'), +('授かる', 'さずかる', 'to be awarded (e.g. a prize), to be given an award, to receive (e.g. a title), to be gifted or endowed (e.g. with a talent), to be blessed (e.g. with a child), to be initiated (e.g. into a secret)'), +('術', 'すべ', 'way, method, means'), +('術無し', 'すべなし', 'having no choice, at a loss for what to do, at one''s wits'' end'), +('為す術', 'なすすべ', 'means, method, way'), +('為ん術', 'せんすべ', '(proper) methods'), +('序で', 'ついで', 'opportunity, occasion, chance, order, sequence, successor'), +('序でに', 'ついでに', 'incidentally, taking the opportunity, while (you) are at it, on the occasion'), +('序で', 'ついで', 'opportunity, occasion, chance, order, sequence, successor'), +('序でに', 'ついでに', 'incidentally, taking the opportunity, while (you) are at it, on the occasion'), +('述べる', 'のべる', 'to state, to express, to say, to tell, to mention'), +('証', 'あかし', 'proof, evidence, sign, testimony, vindication, certificate, license, membership card, to testify (usu. Christian religious context), enlightenment, symptoms (in Chinese medicine), patient''s condition'), +('招く', 'まねく', 'to invite, to ask, to beckon, to wave someone in, to gesture to, to call in, to send for, to summon, to bring on oneself, to cause, to incur, to lead to, to result in'), +('象る', 'かたどる', 'to model on, to make in the shape of, to represent, to pattern after, to imitate, to symbolise'), +('準じる', 'じゅんじる', 'to follow, to conform, to apply to'), +('準ずる', 'じゅんずる', 'to apply correspondingly, to correspond to, to be proportionate to, to conform to'), +('準える', 'なぞらえる', 'to pattern after, to liken to, to imitate'), +('性', 'さが', 'one''s nature, one''s destiny, custom, tradition, habit, convention'), +('政', 'まつりごと', 'rule, government'), +('政所', 'まんどころ', 'official in charge of the administration of domains and general affairs of powerful noble families (from the middle of the Heian period), titled lady (legal wife of an important official), government office related to finances (Kamakura and Muromachi periods), clerk working for large temples and shrines'), +('太政', 'おおまつりごと', '(Japanese) imperial government'), +('政所', 'まんどころ', 'official in charge of the administration of domains and general affairs of powerful noble families (from the middle of the Heian period), titled lady (legal wife of an important official), government office related to finances (Kamakura and Muromachi periods), clerk working for large temples and shrines'), +('接ぐ', 'つぐ', 'to join, to piece together, to set (bones), to graft (onto a tree)'), +('精げる', 'しらげる', 'to polish (rice), to refine, to purify'), +('詳しい', 'くわしい', 'detailed, full, minute, knowing very well, knowledgeable (about), well-acquainted (with), well-informed (about), familiar (with)'), +('勢い', 'いきおい', 'force, vigor, vigour, energy, spirit, life, influence, authority, power, might, impetus, momentum, course (of events), naturally, necessarily'), +('勢いよく', 'いきおいよく', 'vigorously, with great force, energetically, enthusiastically, with spirit'), +('弾み', 'はずみ', 'bounce, spring, rebound, momentum, impetus, impulse, stimulus, inertia, moment, instant, impulse, chance'), +('弾車', 'はずみぐるま', 'flywheel'), +('常', 'つね', 'usual state of things'), +('常に', 'つねに', 'always, constantly'), +('経常', 'けいじょう', 'ordinary'), +('世の常', 'よのつね', 'ordinary, run-of-the-mill, usual'), +('情け', 'なさけ', 'pity, sympathy, compassion, mercy, affection, love'), +('情けない', 'なさけない', 'miserable, pitiable, shameful, deplorable, pathetic'), +('恋情', 'れんじょう', 'love, attachment, lovesickness'), +('裏情', 'うらなさけ', 'inner affection'), +('筋', 'すじ', 'muscle, tendon, sinew, vein, artery, fiber, fibre, string, line, stripe, streak, reason, logic, plot, storyline, lineage, descent, school (e.g. of scholarship or arts), aptitude, talent, source (of information, etc.), circle, channel, well-informed person (in a transaction), logical move (in go, shogi, etc.), ninth vertical line, seam on a helmet, gristly fish paste (made of muscle, tendons, skin, etc.), social position, status, on (a river, road, etc.), along, counter for long thin things, counter for roads or blocks when giving directions, (Edo period) counter for hundreds of mon (obsolete unit of currency)'), +('条海豚', 'すじいるか', 'striped dolphin (Stenella coeruleoalba)'), +('一筋', 'ひとすじ', 'one line, one stretch (e.g. of road), one strand (e.g. of hair), one beam (e.g. of light), one ray, one length (e.g. of rope), earnest, resolute, intent, devoted, single-minded, one bloodline, one clan, ordinary, common'), +('責める', 'せめる', 'to condemn, to blame, to criticize, to criticise, to reproach, to accuse, to urge, to press, to pester, to torture, to torment, to persecute, to break in (a horse)'), +('織る', 'おる', 'to weave'), +('織り', 'おり', 'weave, weaving, woven item'), +('織物', 'おりもの', 'textile, fabric'), +('羽織', 'はおり', 'haori (Japanese formal coat)'), +('手織り', 'ており', 'handwoven, handspun, weaving by hand'), +('織り', 'おり', 'weave, weaving, woven item'), +('織物', 'おりもの', 'textile, fabric'), +('羽織', 'はおり', 'haori (Japanese formal coat)'), +('手織り', 'ており', 'handwoven, handspun, weaving by hand'), +('褒める', 'ほめる', 'to praise, to commend, to compliment, to speak well of, to speak highly of'), +('損なう', 'そこなう', 'to harm, to hurt, to injure, to damage, to spoil, to mar, to fail to ..., to miss one''s opportunity to ...'), +('損なう', 'そこなう', 'to harm, to hurt, to injure, to damage, to spoil, to mar, to fail to ..., to miss one''s opportunity to ...'), +('損ねる', 'そこねる', 'to harm, to hurt, to injure, to wreck, to miss one''s chance to (do something), to fail to (do what one ought to have done)'), +('則る', 'のっとる', 'to conform to, to be in accordance with, to follow (rule, tradition, example, etc.)'), +('法', 'のり', 'rule, law, regulation, model, pattern, teachings of Buddha, Buddhist doctrine, transverse measurement, measurement across, side-slope, slope'), +('即ち', 'すなわち', 'that is, namely, i.e.'), +('率いる', 'ひきいる', 'to lead, to spearhead (a group), to command (troops)'), +('築く', 'きずく', 'to build, to construct, to erect, to amass (e.g. fortune), to pile up'), +('作る', 'つくる', 'to make, to produce, to manufacture, to build, to construct, to prepare (food), to brew (alcohol), to raise, to grow, to cultivate, to train, to till, to draw up (a document), to make out, to prepare, to write, to create (an artistic work, etc.), to compose, to coin (a phrase), to organize, to organise, to establish, to found, to have (a child), to make up (one''s face, etc.), to fabricate (an excuse, etc.), to give a (false) appearance, to feign (a smile, etc.), to put on a show of emotion, to form (a line, etc.), to set (a record), to commit (a sin, etc.)'), +('作り', 'つくり', 'making, producing, manufacturing, building, construction, make, structure, appearance (attire, make-up, etc.), build, physique, sashimi, forced (smile, etc.)'), +('作り上げる', 'つくりあげる', 'to build up, to complete, to construct, to create, to put together, to make up, to fabricate, to invent, to cook up'), +('塚造', 'つかつくり', 'megapode (any bird of family Megapodiidae, incl. brush turkeys and mallee fowl), mound builder'), +('増す', 'ます', 'to increase, to grow'), +('益々', 'ますます', 'increasingly, more and more, decreasingly (when declining), less and less'), +('増し', 'まし', 'better, preferable, less objectionable, least-worst, more, increase, extra, increase, growth'), +('況して', 'まして', 'still more, to say nothing of, not to mention, still less'), +('増える', 'ふえる', 'to increase, to multiply'), +('増やす', 'ふやす', 'to increase, to add to, to augment'), +('絶える', 'たえる', 'to die out, to peter out, to become extinct, to cease, to be stopped, to be discontinued, to be cut off'), +('絶えることなく', 'たえることなく', 'unceasing, relentless'), +('絶やす', 'たやす', 'to exterminate, to eradicate, to wipe out, to put an end to, to let (fire) go out, to let die (e.g. flowers), to run out of'), +('断つ', 'たつ', 'to sever, to cut off, to suppress, to eradicate, to exterminate, to abstain (from), to give up'), +('元', 'もと', 'origin, source, base, basis, foundation, root, cause, ingredient, material, base, mix, stock, (someone''s) side, (someone''s) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip'), +('元より', 'もとより', 'from the beginning, from the first, all along, originally, of course'), +('味の素', 'あじのもと', 'Ajinomoto, brand name of monosodium glutamate (MSG)'), +('計る', 'はかる', 'to measure, to weigh, to survey, to time (sound, gauge, estimate), to conjecture, to infer, to surmise'), +('貯める', 'ためる', 'to save up (money)'), +('蓄える', 'たくわえる', 'to store, to save up, to stock up on, to lay in stock, to set aside, to accumulate (e.g. knowledge), to build up (e.g. experience), to develop (e.g. one''s skills), to grow (a beard, moustache, etc.), to wear'), +('設ける', 'もうける', 'to prepare, to provide, to set up, to establish, to organize, to lay down (rules), to make (an excuse)'), +('断つ', 'たつ', 'to sever, to cut off, to suppress, to eradicate, to exterminate, to abstain (from), to give up'), +('断る', 'ことわる', 'to refuse, to reject, to dismiss, to turn down, to decline, to inform, to give notice, to tell in advance, to ask leave, to excuse oneself (from)'), +('断るまでもなく', 'ことわるまでもなく', 'needless to say'), +('止める', 'とめる', 'to stop, to turn off, to park, to prevent, to suppress (a cough), to hold back (tears), to hold (one''s breath), to relieve (pain), to stop (someone from doing something), to dissuade, to forbid, to prohibit, to notice, to be aware of, to concentrate on, to pay attention to, to remember, to bear in mind, to fix (in place), to fasten, to tack, to pin, to nail, to button, to staple, to detain, to keep in custody'), +('止まる', 'とまる', 'to stop (moving), to come to a stop, to stop (doing, working, being supplied), to come to a halt, to cease, to be stopped, to be suspended, to alight, to perch on'), +('態と', 'わざと', 'on purpose, deliberately, intentionally'), +('態とらしい', 'わざとらしい', 'unnatural, affected, studied, forced'), +('全て', 'すべて', 'everything, all, the whole, entirely, completely, wholly, all'), +('すべての道はローマに通ず', 'すべてのみちはローマにつうず', 'all roads lead to Rome'), +('全て', 'すべて', 'everything, all, the whole, entirely, completely, wholly, all'), +('すべての道はローマに通ず', 'すべてのみちはローマにつうず', 'all roads lead to Rome'), +('房', 'ふさ', 'tuft (of hair, threads, etc.), fringe, tassel, bunch (of grapes, bananas, etc.), cluster (of flowers), segment (of a tangerine, etc.), section'), +('房房', 'ふさふさ', 'in tufts, tufty, bushy, thick, luxuriant'), +('貸す', 'かす', 'to lend, to loan, to rent out, to hire out'), +('提げる', 'さげる', 'to take along, to hold in the hand, to hang (e.g. from the shoulder or waist)'), +('叶う', 'かなう', 'to come true (of a wish, prayer, etc.), to be realized, to be fulfilled, to suit (e.g. a purpose), to meet (wishes, ideals, etc.), to conform to (standards, rules, etc.), to be consistent with, to match (implies competition), to rival, to bear (e.g. the heat)'), +('程', 'ほど', 'extent, degree, measure, limit, bounds, (span of) time, (a) distance, the state of, the status of, the condition of, about, around, approximately, or so, as much as ..., to the extent of ..., like ..., the more ... the more ...'), +('程なく', 'ほどなく', 'soon, before long, shortly thereafter'), +('なる程', 'なるほど', 'I see, that''s right, indeed'), +('これ程', 'これほど', 'so, so much, this much'), +('張る', 'はる', 'to stick, to paste, to affix, to stretch, to spread, to strain, to tighten, to put up (tent), to form (e.g. ice on a pond), to fill, to swell, to stick out, to put, to slap, to post (a link, etc. online), to be expensive, to keep a watch on, to be on the lookout, to become one tile away from completion, to span, to generate'), +('犯す', 'おかす', 'to commit (e.g. crime), to perpetrate, to make (e.g. mistake), to break (e.g. rule), to violate, to transgress, to contravene, to rape, to violate, to ravish, to deflower'), +('比べる', 'くらべる', 'to compare, to make a comparison, to compete, to vie'), +('統べる', 'すべる', 'to rule over, to govern, to command, to control, to integrate, to consolidate, to unite, to incorporate'), +('分かる', 'わかる', 'to understand, to comprehend, to grasp, to see, to get, to follow, to become clear, to be known, to be discovered, to be realized, to be realised, to be found out, I know!, I think so too!'), +('非ず', 'あらず', 'it is not so, no, never mind'), +('非ずんば', 'あらずんば', 'if not'), +('任せる', 'まかせる', 'to entrust (e.g. a task) to another, to leave to, to passively leave to someone else''s facilities, to leave to take its natural course, to continue (something) in a natural fashion (without particular aim), to rely fully on one''s (full strength, great ability, long time taken) to get something done'), +('任す', 'まかす', 'to entrust, to leave to a person'), +('得る', 'える', 'to get, to earn, to acquire, to procure, to gain, to secure, to attain, to obtain, to win, to understand, to comprehend, to receive something undesirable (e.g. a punishment), to get (ill), to be able to ..., can ...'), +('得る', 'うる', 'to be able to ..., can ..., to get, to acquire, to obtain, to procure, to earn, to win, to gain, to secure, to attain'), +('得るところがある', 'うるところがある', 'to get benefit from, to profit from, to gain benefit'), +('良く', 'よく', 'nicely, properly, well, skillfully, skilfully, frequently, often, I''m glad that you ..., thank you for ..., (you have) quite the nerve to, I don''t know how you can ...'), +('良く良く', 'よくよく', 'exceedingly, very'), +('能う', 'あたう', 'to be able (to do), to be capable (of doing)'), +('能う限り', 'あたうかぎり', 'as much as possible, as far as possible, to the best of one''s abilities'), +('費やす', 'ついやす', 'to spend, to expend, to consume, to waste, to squander, to throw away, to devote'), +('費える', 'ついえる', 'to be used up (e.g. one''s savings), to dwindle away, to be wasted (time, effort, etc.)'), +('導く', 'みちびく', 'to guide, to lead, to show the way, to conduct, to derive, to deduce'), +('破る', 'やぶる', 'to tear, to rip, to break, to destroy, to break through (cordon, opponent''s defense, etc.), to breach, to defeat, to beat, to break (e.g. silence), to disturb (e.g. peace), to shatter (e.g. dream), to disrupt, to spoil, to violate (e.g. rule), to break (e.g. promise), to infringe, to break (a record)'), +('破れる', 'やぶれる', 'to get torn, to tear, to rip, to break, to wear out, to be broken off (of negotiations, etc.), to break down, to collapse, to fall into ruin'), +('割れる', 'われる', 'to break, to be smashed, to split, to crack, to fissure, to be torn, to be divided (opinion, vote, etc.), to split (e.g. of a party), to come to light, to become clear, to be identified, to be revealed, to be distorted (of a sound), to be divisible (without a remainder), to go below a minimum'), +('燃える', 'もえる', 'to burn, to get fired up'), +('燃えるゴミ', 'もえるゴミ', 'burnable garbage, burnable waste'), +('燃やす', 'もやす', 'to burn, to burn with (emotion, feeling), to be fired up'), +('燃やす', 'もやす', 'to burn, to burn with (emotion, feeling), to be fired up'), +('肥える', 'こえる', 'to grow fat, to gain weight, to put on weight, to grow fertile, to be refined (palate), to be discerning (eye, ear), to become rich, to become successful'), +('肥', 'こえ', 'manure, night soil, dung, fertiliser, fertilizer'), +('肥える', 'こえる', 'to grow fat, to gain weight, to put on weight, to grow fertile, to be refined (palate), to be discerning (eye, ear), to become rich, to become successful'), +('肥やす', 'こやす', 'to fertilize, to fertilise, to manure, to enrich'), +('肥やし', 'こやし', 'manure, night soil, dung, fertiliser, fertilizer, something that will help one develop in the future'), +('肥やし桶', 'こやしおけ', 'night soil pail'), +('太る', 'ふとる', 'to put on weight, to gain weight, to grow fat, to get stout'), +('一人', 'ひとり', 'one person, being alone, being by oneself, being single, being unmarried, by oneself, alone, just, only, simply'), +('独り言', 'ひとりごと', 'soliloquy, monologue, speaking to oneself'), +('銅', 'どう', 'copper (Cu), bronze (medal)'), +('銅酵母', 'あかがねこうぼ', 'copper yeast, copper-enriched yeast'), +('貧しい', 'まずしい', 'poor, needy, lacking (quantity and quality-wise), poor, scanty, skimpy, slight, inadequate'), +('備える', 'そなえる', 'to furnish with, to equip with, to provide, to install, to prepare for, to make preparations for, to make provision for, to possess (all that is needed), to be endowed with, to be equipped with, to be born with, to have since birth'), +('備わる', 'そなわる', 'to be furnished with, to be provided with, to be equipped with, to be possessed of, to be endowed with, to be gifted with, to be among, to be one of'), +('具に', 'つぶさに', 'in detail, with great care, completely, fully'), +('嫁', 'よめ', 'wife, bride, (one''s) daughter-in-law'), +('布', 'ぬの', 'cloth, bujian (spade-shaped bronze coin of ancient China)'), +('布地', 'ぬのじ', 'cloth, fabric'), +('麻布', 'あさぬの', 'hemp cloth, linen'), +('磨き布', 'みがきぬの', 'polishing cloth'), +('敷く', 'しく', 'to spread out, to lay out, to take a position, to impose widely (e.g. over a city)'), +('布地', 'ぬのじ', 'cloth, fabric'), +('ボロ切れ', 'ボロきれ', 'old cloth, rag'), +('武し', 'たけし', 'brave'), +('武し', 'たけし', 'brave'), +('又', 'また', 'again, once more, once again, another time, some other time, also, too, as well, likewise, on the other hand, while, and, in addition, besides, moreover, furthermore, or, otherwise, really, how, (what, why) on earth, indirect'), +('又々', 'またまた', 'again (and again), once again, yet again, (there you go) again'), +('編む', 'あむ', 'to knit, to plait, to braid, to compile (anthology, dictionary, etc.), to edit'), +('綿', 'わた', 'cotton plant (Gossypium spp.), batting, wadding, padding'), +('海神', 'かいじん', 'sea god, Poseidon, Neptune, sea, ocean'), +('結い綿', 'ゆいわた', 'traditional hairstyle worn by unmarried women'), +('中綿', 'なかわた', 'padding (clothing or bedding), insulation, cotton wadding, stuffing (furniture)'), +('豊か', 'ゆたか', 'abundant, plentiful, rich, ample, rich, wealthy, affluent, well-off, open (mind), relaxed, easy, plump (e.g. breasts), full, ample, (well) over, (easily) in excess of'), +('豊かの海', 'ゆたかのうみ', 'Mare Fecunditatis (lunar mare), Sea of Fertility'), +('豊葦原瑞穂国', 'とよあしはらのみずほのくに', 'Japan'), +('豊受大神宮', 'とようけだいじんぐう', 'Toyouke Shrine (the outer shrine of Ise Shrine), Toyuke Shrine'), +('余る', 'あまる', 'to remain, to be left over, to be in excess, to be too many'), +('余り', 'あまり', 'remainder, remnant, rest, balance, surplus, remains (of a meal), leftovers, (not) very, (not) much, too much, excessively, overly, extreme, great, severe, tremendous, terrible, more than, over'), +('余りに', 'あまりに', 'too much, excessively, too'), +('余す', 'あます', 'to save, to leave over, to spare'), +('余すところなく', 'あますところなく', 'fully, thoroughly'), +('余り', 'あまり', 'remainder, remnant, rest, balance, surplus, remains (of a meal), leftovers, (not) very, (not) much, too much, excessively, overly, extreme, great, severe, tremendous, terrible, more than, over'), +('保つ', 'たもつ', 'to keep, to preserve, to hold, to retain, to maintain, to sustain, to last, to endure, to keep well (food), to wear well, to be durable'), +('夢', 'ゆめ', 'dream'), +('夢にも', 'ゆめにも', '(not) in the slightest, (not) at all'), +('初夢', 'はつゆめ', 'first dream of the year'), +('逆夢', 'さかゆめ', 'a dream which is contradicted by reality'), +('夢見る', 'ゆめみる', 'to dream (of)'), +('止める', 'とめる', 'to stop, to turn off, to park, to prevent, to suppress (a cough), to hold back (tears), to hold (one''s breath), to relieve (pain), to stop (someone from doing something), to dissuade, to forbid, to prohibit, to notice, to be aware of, to concentrate on, to pay attention to, to remember, to bear in mind, to fix (in place), to fasten, to tack, to pin, to nail, to button, to staple, to detain, to keep in custody'), +('止まる', 'とまる', 'to stop (moving), to come to a stop, to stop (doing, working, being supplied), to come to a halt, to cease, to be stopped, to be suspended, to alight, to perch on'), +('留める', 'とどめる', 'to stop, to stay (e.g. the night), to cease, to put an end to, to contain, to keep (in position, in place), to limit, to record (e.g. a fact), to retain'), +('止まる', 'とどまる', 'to remain, to abide, to stay (in the one place), to be limited to, to be confined to, to only account for'), +('とどまるところを知らない', 'とどまるところをしらない', 'knowing no bounds, showing no signs of stopping or slowing down'), +('勤める', 'つとめる', 'to work (for), to be employed (at), to serve (in), to serve (as), to act (as), to fill (the position of), to play the role (of), to conduct a religious service'), +('報いる', 'むくいる', 'to reward, to recompense, to repay, to retaliate, to get revenge'), +('弁える', 'わきまえる', 'to discern (e.g. right from wrong), to discriminate, to distinguish, to know (manners, one''s place, etc.), to understand, to bear in mind'), +('迷う', 'まよう', 'to lose one''s way, to get lost, to waver, to hesitate, to be of two minds over, to be puzzled, to be perplexed, to give into temptation, to lose control of oneself, to be charmed, to be infatuated, to be captivated, to be smitten, to turn in one''s grave'), +('粉', 'こな', 'flour, meal, powder, dust'), +('粉々', 'こなごな', 'in very small pieces'), +('火の粉', 'ひのこ', 'sparks'), +('薄力粉', 'はくりきこ', 'cake flour, pastry flour'), +('粉', 'こな', 'flour, meal, powder, dust'), +('粉々', 'こなごな', 'in very small pieces'), +('襟', 'えり', 'collar, lapel, neckband, neck, nape of the neck, scruff of the neck'), +('襟足', 'えりあし', 'hairline at nape of neck, nape of neck'), +('盤領', 'まるえり', 'round collar (of traditional Japanese clothing)'), +('暴く', 'あばく', 'to disclose, to divulge, to expose, to open (a grave), to dig out'), +('暴れる', 'あばれる', 'to act violently, to rage, to struggle, to be riotous'), +('略', 'ほぼ', 'almost, roughly, approximately'), +('仏', 'ほとけ', 'Buddha, Shakyamuni, Buddhist image, figure of Buddha, the dead, dead person, departed soul, merciful person'), +('仏顔', 'ほとけがお', 'gentle face'), +('神仏', 'しんぶつ', 'gods and Buddha, Shinto and Buddhism'), +('吾が仏', 'あがほとけ', 'my dear, my Buddha'), +('防ぐ', 'ふせぐ', 'to defend against, to protect against, to prevent, to avert, to avoid'), +('墓', 'はか', 'gravesite, tomb'), +('墓地', 'ぼち', 'cemetery, graveyard'), +('御墓', 'みはか', 'imperial tomb'), +('入れる', 'いれる', 'to put in, to let in, to take in, to bring in, to insert, to install (e.g. software), to set (a jewel, etc.), to ink in (e.g. tattoo), to admit, to accept, to employ, to hire, to accept, to comply, to grant, to adopt (a policy, etc.), to take (advice, etc.), to listen to, to pay attention to, to include, to pay (one''s rent, etc.), to cast (a vote), to make (tea, coffee, etc.), to turn on (a switch, etc.), to send (a fax), to call'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(6500, '移'), +(6501, '移'), +(6502, '囲'), +(6503, '囲'), +(6504, '囲'), +(6505, '囲'), +(6506, '因'), +(6507, '因'), +(6508, '因'), +(6509, '営'), +(6510, '営'), +(6511, '易'), +(6512, '易'), +(6513, '易'), +(6514, '益'), +(6515, '益'), +(6516, '圧'), +(6517, '圧'), +(6518, '往'), +(6519, '往'), +(6520, '桜'), +(6521, '桜'), +(6522, '桜'), +(6523, '仮'), +(6524, '仮'), +(6525, '応'), +(6526, '永'), +(6527, '永'), +(6528, '価'), +(6529, '価'), +(6530, '確'), +(6531, '確'), +(6532, '確'), +(6533, '過'), +(6534, '過'), +(6535, '過'), +(6536, '過'), +(6537, '過'), +(6538, '過'), +(6539, '過'), +(6540, '河'), +(6541, '河'), +(6542, '河'), +(6543, '河'), +(6544, '快'), +(6545, '解'), +(6546, '解'), +(6547, '解'), +(6548, '解'), +(6549, '解'), +(6550, '解'), +(6551, '解'), +(6552, '解'), +(6553, '久'), +(6554, '額'), +(6555, '額'), +(6556, '額'), +(6557, '喜'), +(6558, '喜'), +(6559, '基'), +(6560, '基'), +(6561, '基'), +(6562, '基'), +(6563, '基'), +(6564, '逆'), +(6565, '逆'), +(6566, '逆'), +(6567, '逆'), +(6568, '逆'), +(6569, '技'), +(6570, '技'), +(6571, '技'), +(6572, '技'), +(6573, '許'), +(6574, '許'), +(6575, '許'), +(6576, '許'), +(6577, '許'), +(6578, '眼'), +(6579, '眼'), +(6580, '眼'), +(6581, '眼'), +(6582, '眼'), +(6583, '眼'), +(6584, '眼'), +(6585, '幹'), +(6586, '寄'), +(6587, '寄'), +(6588, '寄'), +(6589, '均'), +(6590, '救'), +(6591, '型'), +(6592, '型'), +(6593, '型'), +(6594, '境'), +(6595, '境'), +(6596, '境'), +(6597, '慣'), +(6598, '慣'), +(6599, '経'), +(6600, '経'), +(6601, '経'), +(6602, '居'), +(6603, '居'), +(6604, '居'), +(6605, '潔'), +(6606, '減'), +(6607, '減'), +(6608, '減'), +(6609, '険'), +(6610, '険'), +(6611, '旧'), +(6612, '旧'), +(6613, '限'), +(6614, '限'), +(6615, '限'), +(6616, '限'), +(6617, '現'), +(6618, '現'), +(6619, '現'), +(6620, '現'), +(6621, '現'), +(6622, '現'), +(6623, '故'), +(6624, '故'), +(6625, '故'), +(6626, '故'), +(6627, '耕'), +(6628, '効'), +(6629, '効'), +(6630, '護'), +(6631, '件'), +(6632, '厚'), +(6633, '厚'), +(6634, '罪'), +(6635, '罪'), +(6636, '罪'), +(6637, '罪'), +(6638, '雑'), +(6639, '雑'), +(6640, '鉱'), +(6641, '混'), +(6642, '混'), +(6643, '混'), +(6644, '混'), +(6645, '告'), +(6646, '興'), +(6647, '興'), +(6648, '殺'), +(6649, '殺'), +(6650, '災'), +(6651, '災'), +(6652, '財'), +(6653, '賛'), +(6654, '採'), +(6655, '採'), +(6656, '構'), +(6657, '構'), +(6658, '構'), +(6659, '士'), +(6660, '士'), +(6661, '際'), +(6662, '際'), +(6663, '際'), +(6664, '在'), +(6665, '在'), +(6666, '支'), +(6667, '支'), +(6668, '支'), +(6669, '再'), +(6670, '再'), +(6671, '酸'), +(6672, '酸'), +(6673, '妻'), +(6674, '妻'), +(6675, '妻'), +(6676, '妻'), +(6677, '枝'), +(6678, '枝'), +(6679, '枝'), +(6680, '枝'), +(6681, '志'), +(6682, '志'), +(6683, '志'), +(6684, '志'), +(6685, '志'), +(6686, '飼'), +(6687, '似'), +(6688, '質'), +(6689, '質'), +(6690, '質'), +(6691, '示'), +(6692, '示'), +(6693, '謝'), +(6694, '修'), +(6695, '修'), +(6696, '識'), +(6697, '識'), +(6698, '識'), +(6699, '授'), +(6700, '授'), +(6701, '術'), +(6702, '術'), +(6703, '術'), +(6704, '術'), +(6705, '序'), +(6706, '序'), +(6707, '序'), +(6708, '序'), +(6709, '述'), +(6710, '証'), +(6711, '招'), +(6712, '象'), +(6713, '準'), +(6714, '準'), +(6715, '準'), +(6716, '性'), +(6717, '政'), +(6718, '政'), +(6719, '政'), +(6720, '政'), +(6721, '接'), +(6722, '精'), +(6723, '精'), +(6724, '勢'), +(6725, '勢'), +(6726, '勢'), +(6727, '勢'), +(6728, '常'), +(6729, '常'), +(6730, '常'), +(6731, '常'), +(6732, '情'), +(6733, '情'), +(6734, '情'), +(6735, '情'), +(6736, '条'), +(6737, '条'), +(6738, '条'), +(6739, '責'), +(6740, '織'), +(6741, '織'), +(6742, '織'), +(6743, '織'), +(6744, '織'), +(6745, '織'), +(6746, '織'), +(6747, '織'), +(6748, '織'), +(6749, '賞'), +(6750, '損'), +(6751, '損'), +(6752, '損'), +(6753, '則'), +(6754, '則'), +(6755, '則'), +(6756, '率'), +(6757, '築'), +(6758, '造'), +(6759, '造'), +(6760, '造'), +(6761, '造'), +(6762, '増'), +(6763, '増'), +(6764, '増'), +(6765, '増'), +(6766, '増'), +(6767, '増'), +(6768, '絶'), +(6769, '絶'), +(6770, '絶'), +(6771, '絶'), +(6772, '素'), +(6773, '素'), +(6774, '素'), +(6775, '測'), +(6776, '貯'), +(6777, '貯'), +(6778, '設'), +(6779, '断'), +(6780, '断'), +(6781, '断'), +(6782, '停'), +(6783, '停'), +(6784, '態'), +(6785, '態'), +(6786, '総'), +(6787, '総'), +(6788, '総'), +(6789, '総'), +(6790, '総'), +(6791, '総'), +(6792, '貸'), +(6793, '提'), +(6794, '適'), +(6795, '程'), +(6796, '程'), +(6797, '程'), +(6798, '程'), +(6799, '張'), +(6800, '犯'), +(6801, '比'), +(6802, '統'), +(6803, '判'), +(6804, '非'), +(6805, '非'), +(6806, '任'), +(6807, '任'), +(6808, '得'), +(6809, '得'), +(6810, '得'), +(6811, '能'), +(6812, '能'), +(6813, '能'), +(6814, '能'), +(6815, '費'), +(6816, '費'), +(6817, '導'), +(6818, '破'), +(6819, '破'), +(6820, '破'), +(6821, '燃'), +(6822, '燃'), +(6823, '燃'), +(6824, '燃'), +(6825, '肥'), +(6826, '肥'), +(6827, '肥'), +(6828, '肥'), +(6829, '肥'), +(6830, '肥'), +(6831, '肥'), +(6832, '独'), +(6833, '独'), +(6834, '銅'), +(6835, '銅'), +(6836, '貧'), +(6837, '備'), +(6838, '備'), +(6839, '備'), +(6840, '婦'), +(6841, '布'), +(6842, '布'), +(6843, '布'), +(6844, '布'), +(6845, '布'), +(6846, '布'), +(6847, '布'), +(6848, '武'), +(6849, '武'), +(6850, '復'), +(6851, '復'), +(6852, '編'), +(6853, '綿'), +(6854, '綿'), +(6855, '綿'), +(6856, '綿'), +(6857, '豊'), +(6858, '豊'), +(6859, '豊'), +(6860, '豊'), +(6861, '余'), +(6862, '余'), +(6863, '余'), +(6864, '余'), +(6865, '余'), +(6866, '余'), +(6867, '保'), +(6868, '夢'), +(6869, '夢'), +(6870, '夢'), +(6871, '夢'), +(6872, '夢'), +(6873, '留'), +(6874, '留'), +(6875, '留'), +(6876, '留'), +(6877, '留'), +(6878, '務'), +(6879, '報'), +(6880, '弁'), +(6881, '迷'), +(6882, '粉'), +(6883, '粉'), +(6884, '粉'), +(6885, '粉'), +(6886, '粉'), +(6887, '粉'), +(6888, '領'), +(6889, '領'), +(6890, '領'), +(6891, '暴'), +(6892, '暴'), +(6893, '略'), +(6894, '仏'), +(6895, '仏'), +(6896, '仏'), +(6897, '仏'), +(6898, '防'), +(6899, '墓'), +(6900, '墓'), +(6901, '墓'), +(6902, '容'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("うつ.る"), +("うつ.す"), +("かこ.む"), +("かこ.う"), +("かこ.い"), +("よ.る"), +("ちな.む"), +("いとな.む"), +("いとな.み"), +("やさ.しい"), +("やす.い"), +("ま.す"), +("お.す"), +("へ.す"), +("おさ.える"), +("お.さえる"), +("い.く"), +("いにしえ"), +("さき.に"), +("ゆ.く"), +("-べ.き"), +("-べ.し"), +("さくら"), +("かり"), +("かり-"), +("あた.る"), +("まさに"), +("こた.える"), +("なが.い"), +("あたい"), +("たし.か"), +("たし.かめる"), +("す.ぎる"), +("す.ごす"), +("あやま.ち"), +("あやま.つ"), +("よぎ.る"), +("よ.ぎる"), +("かわ"), +("こころよ.い"), +("と.く"), +("と.かす"), +("と.ける"), +("ほど.く"), +("ほど.ける"), +("わか.る"), +("さと.る"), +("ひさ.しい"), +("ひたい"), +("よろこ.ぶ"), +("よろこ.ばす"), +("もと"), +("もとい"), +("さか"), +("さか.さ"), +("さか.らう"), +("わざ"), +("ゆる.す"), +("もと"), +("まなこ"), +("め"), +("みき"), +("よ.る"), +("-よ.り"), +("よ.せる"), +("なら.す"), +("すく.う"), +("かた"), +("-がた"), +("さかい"), +("な.れる"), +("な.らす"), +("へ.る"), +("た.つ"), +("たていと"), +("はか.る"), +("のり"), +("い.る"), +("-い"), +("お.る"), +("いさぎよ.い"), +("へ.る"), +("へ.らす"), +("けわ.しい"), +("ふる.い"), +("もと"), +("かぎ.る"), +("かぎ.り"), +("-かぎ.り"), +("あらわ.れる"), +("あらわ.す"), +("うつつ"), +("うつ.つ"), +("しら.べる"), +("ゆえ"), +("ふる.い"), +("もと"), +("たがや.す"), +("き.く"), +("ききめ"), +("なら.う"), +("まも.る"), +("くだん"), +("あつ.い"), +("あか"), +("つみ"), +("まじ.える"), +("まじ.る"), +("あらがね"), +("ま.じる"), +("-ま.じり"), +("ま.ざる"), +("ま.ぜる"), +("こ.む"), +("つ.げる"), +("おこ.る"), +("おこ.す"), +("ころ.す"), +("-ごろ.し"), +("そ.ぐ"), +("わざわ.い"), +("たから"), +("たす.ける"), +("たた.える"), +("と.る"), +("かま.える"), +("かま.う"), +("さむらい"), +("きわ"), +("-ぎわ"), +("あ.る"), +("ささ.える"), +("つか.える"), +("か.う"), +("ふたた.び"), +("す.い"), +("つま"), +("いくさ"), +("えだ"), +("シリング"), +("こころざ.す"), +("こころざし"), +("か.う"), +("に.る"), +("ひ.る"), +("たち"), +("ただ.す"), +("もと"), +("わりふ"), +("しめ.す"), +("あやま.る"), +("おさ.める"), +("おさ.まる"), +("し.る"), +("しる.す"), +("さず.ける"), +("さず.かる"), +("やど.る"), +("すべ"), +("つい.で"), +("ついで"), +("の.べる"), +("あかし"), +("まね.く"), +("かたど.る"), +("じゅん.じる"), +("じゅん.ずる"), +("なぞら.える"), +("のり"), +("ひと.しい"), +("みずもり"), +("さが"), +("まつりごと"), +("まん"), +("つ.ぐ"), +("しら.げる"), +("くわ.しい"), +("いきお.い"), +("はずみ"), +("つね"), +("とこ-"), +("なさ.け"), +("えだ"), +("すじ"), +("せ.める"), +("お.る"), +("お.り"), +("おり"), +("-おり"), +("-お.り"), +("ほ.める"), +("かたまり"), +("まる.い"), +("さかん"), +("つく"), +("やから"), +("そこ.なう"), +("そこな.う"), +("-そこ.なう"), +("そこ.ねる"), +("-そこ.ねる"), +("のっと.る"), +("のり"), +("すなわち"), +("ひき.いる"), +("きず.く"), +("つく.る"), +("つく.り"), +("-づく.り"), +("ま.す"), +("ま.し"), +("ふ.える"), +("ふ.やす"), +("た.える"), +("た.やす"), +("た.つ"), +("もと"), +("はか.る"), +("た.める"), +("たくわ.える"), +("もう.ける"), +("た.つ"), +("ことわ.る"), +("さだ.める"), +("と.める"), +("と.まる"), +("わざ.と"), +("す.べて"), +("すべ.て"), +("ふさ"), +("か.す"), +("か.し-"), +("かし-"), +("さ.げる"), +("かな.う"), +("ほど"), +("-ほど"), +("は.る"), +("-は.り"), +("-ば.り"), +("おか.す"), +("くら.べる"), +("す.べる"), +("ほび.る"), +("わか.る"), +("あら.ず"), +("まか.せる"), +("まか.す"), +("え.る"), +("う.る"), +("よ.く"), +("あた.う"), +("つい.やす"), +("つい.える"), +("みちび.く"), +("やぶ.る"), +("やぶ.れる"), +("わ.れる"), +("も.える"), +("も.やす"), +("も.す"), +("こ.える"), +("こえ"), +("こ.やす"), +("こ.やし"), +("ふと.る"), +("ひと.り"), +("あかがね"), +("まず.しい"), +("そな.える"), +("そな.わる"), +("つぶさ.に"), +("よめ"), +("ぬの"), +("し.く"), +("きれ"), +("たけ"), +("たけ.し"), +("また"), +("あ.む"), +("-あ.み"), +("わた"), +("ゆた.か"), +("とよ"), +("あま.る"), +("あま.り"), +("あま.す"), +("あんま.り"), +("すじ"), +("たも.つ"), +("ゆめ"), +("ゆめ.みる"), +("くら.い"), +("と.める"), +("と.まる"), +("とど.める"), +("とど.まる"), +("るうぶる"), +("つと.める"), +("むく.いる"), +("かんむり"), +("わきま.える"), +("わ.ける"), +("はなびら"), +("あらそ.う"), +("まよ.う"), +("デシメートル"), +("こ"), +("こな"), +("えり"), +("あば.く"), +("あば.れる"), +("ほぼ"), +("はぶ.く"), +("おか.す"), +("おさ.める"), +("はかりごと"), +("はか.る"), +("ほとけ"), +("ふせ.ぐ"), +("はか"), +("い.れる"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('移', 'うつ.る'), +('移', 'うつ.す'), +('囲', 'かこ.む'), +('囲', 'かこ.う'), +('囲', 'かこ.い'), +('因', 'よ.る'), +('因', 'ちな.む'), +('営', 'いとな.む'), +('営', 'いとな.み'), +('易', 'やさ.しい'), +('易', 'やす.い'), +('益', 'ま.す'), +('圧', 'お.す'), +('圧', 'へ.す'), +('圧', 'おさ.える'), +('圧', 'お.さえる'), +('往', 'い.く'), +('往', 'いにしえ'), +('往', 'さき.に'), +('往', 'ゆ.く'), +('可', '-べ.き'), +('可', '-べ.し'), +('桜', 'さくら'), +('仮', 'かり'), +('仮', 'かり-'), +('応', 'あた.る'), +('応', 'まさに'), +('応', 'こた.える'), +('永', 'なが.い'), +('価', 'あたい'), +('確', 'たし.か'), +('確', 'たし.かめる'), +('過', 'す.ぎる'), +('過', 'す.ごす'), +('過', 'あやま.ち'), +('過', 'あやま.つ'), +('過', 'よぎ.る'), +('過', 'よ.ぎる'), +('河', 'かわ'), +('快', 'こころよ.い'), +('解', 'と.く'), +('解', 'と.かす'), +('解', 'と.ける'), +('解', 'ほど.く'), +('解', 'ほど.ける'), +('解', 'わか.る'), +('解', 'さと.る'), +('久', 'ひさ.しい'), +('額', 'ひたい'), +('喜', 'よろこ.ぶ'), +('喜', 'よろこ.ばす'), +('基', 'もと'), +('基', 'もとい'), +('逆', 'さか'), +('逆', 'さか.さ'), +('逆', 'さか.らう'), +('技', 'わざ'), +('許', 'ゆる.す'), +('許', 'もと'), +('眼', 'まなこ'), +('眼', 'め'), +('幹', 'みき'), +('寄', 'よ.る'), +('寄', '-よ.り'), +('寄', 'よ.せる'), +('均', 'なら.す'), +('救', 'すく.う'), +('型', 'かた'), +('型', '-がた'), +('境', 'さかい'), +('慣', 'な.れる'), +('慣', 'な.らす'), +('経', 'へ.る'), +('経', 'た.つ'), +('経', 'たていと'), +('経', 'はか.る'), +('経', 'のり'), +('居', 'い.る'), +('居', '-い'), +('居', 'お.る'), +('潔', 'いさぎよ.い'), +('減', 'へ.る'), +('減', 'へ.らす'), +('険', 'けわ.しい'), +('旧', 'ふる.い'), +('旧', 'もと'), +('限', 'かぎ.る'), +('限', 'かぎ.り'), +('限', '-かぎ.り'), +('現', 'あらわ.れる'), +('現', 'あらわ.す'), +('現', 'うつつ'), +('現', 'うつ.つ'), +('検', 'しら.べる'), +('故', 'ゆえ'), +('故', 'ふる.い'), +('故', 'もと'), +('耕', 'たがや.す'), +('効', 'き.く'), +('効', 'ききめ'), +('効', 'なら.う'), +('護', 'まも.る'), +('件', 'くだん'), +('厚', 'あつ.い'), +('厚', 'あか'), +('罪', 'つみ'), +('雑', 'まじ.える'), +('雑', 'まじ.る'), +('鉱', 'あらがね'), +('混', 'ま.じる'), +('混', '-ま.じり'), +('混', 'ま.ざる'), +('混', 'ま.ぜる'), +('混', 'こ.む'), +('告', 'つ.げる'), +('興', 'おこ.る'), +('興', 'おこ.す'), +('殺', 'ころ.す'), +('殺', '-ごろ.し'), +('殺', 'そ.ぐ'), +('災', 'わざわ.い'), +('財', 'たから'), +('賛', 'たす.ける'), +('賛', 'たた.える'), +('採', 'と.る'), +('構', 'かま.える'), +('構', 'かま.う'), +('士', 'さむらい'), +('際', 'きわ'), +('際', '-ぎわ'), +('在', 'あ.る'), +('支', 'ささ.える'), +('支', 'つか.える'), +('支', 'か.う'), +('再', 'ふたた.び'), +('酸', 'す.い'), +('妻', 'つま'), +('師', 'いくさ'), +('枝', 'えだ'), +('志', 'シリング'), +('志', 'こころざ.す'), +('志', 'こころざし'), +('飼', 'か.う'), +('似', 'に.る'), +('似', 'ひ.る'), +('質', 'たち'), +('質', 'ただ.す'), +('質', 'もと'), +('質', 'わりふ'), +('示', 'しめ.す'), +('謝', 'あやま.る'), +('修', 'おさ.める'), +('修', 'おさ.まる'), +('識', 'し.る'), +('識', 'しる.す'), +('授', 'さず.ける'), +('授', 'さず.かる'), +('舎', 'やど.る'), +('術', 'すべ'), +('序', 'つい.で'), +('序', 'ついで'), +('述', 'の.べる'), +('証', 'あかし'), +('招', 'まね.く'), +('象', 'かたど.る'), +('準', 'じゅん.じる'), +('準', 'じゅん.ずる'), +('準', 'なぞら.える'), +('準', 'のり'), +('準', 'ひと.しい'), +('準', 'みずもり'), +('性', 'さが'), +('政', 'まつりごと'), +('政', 'まん'), +('接', 'つ.ぐ'), +('精', 'しら.げる'), +('精', 'くわ.しい'), +('勢', 'いきお.い'), +('勢', 'はずみ'), +('常', 'つね'), +('常', 'とこ-'), +('情', 'なさ.け'), +('条', 'えだ'), +('条', 'すじ'), +('責', 'せ.める'), +('織', 'お.る'), +('織', 'お.り'), +('織', 'おり'), +('織', '-おり'), +('織', '-お.り'), +('賞', 'ほ.める'), +('団', 'かたまり'), +('団', 'まる.い'), +('属', 'さかん'), +('属', 'つく'), +('属', 'やから'), +('損', 'そこ.なう'), +('損', 'そこな.う'), +('損', '-そこ.なう'), +('損', 'そこ.ねる'), +('損', '-そこ.ねる'), +('則', 'のっと.る'), +('則', 'のり'), +('則', 'すなわち'), +('率', 'ひき.いる'), +('築', 'きず.く'), +('造', 'つく.る'), +('造', 'つく.り'), +('造', '-づく.り'), +('増', 'ま.す'), +('増', 'ま.し'), +('増', 'ふ.える'), +('増', 'ふ.やす'), +('絶', 'た.える'), +('絶', 'た.やす'), +('絶', 'た.つ'), +('素', 'もと'), +('測', 'はか.る'), +('貯', 'た.める'), +('貯', 'たくわ.える'), +('設', 'もう.ける'), +('断', 'た.つ'), +('断', 'ことわ.る'), +('断', 'さだ.める'), +('停', 'と.める'), +('停', 'と.まる'), +('態', 'わざ.と'), +('総', 'す.べて'), +('総', 'すべ.て'), +('総', 'ふさ'), +('貸', 'か.す'), +('貸', 'か.し-'), +('貸', 'かし-'), +('提', 'さ.げる'), +('適', 'かな.う'), +('程', 'ほど'), +('程', '-ほど'), +('張', 'は.る'), +('張', '-は.り'), +('張', '-ば.り'), +('犯', 'おか.す'), +('比', 'くら.べる'), +('統', 'す.べる'), +('統', 'ほび.る'), +('判', 'わか.る'), +('非', 'あら.ず'), +('任', 'まか.せる'), +('任', 'まか.す'), +('得', 'え.る'), +('得', 'う.る'), +('能', 'よ.く'), +('能', 'あた.う'), +('費', 'つい.やす'), +('費', 'つい.える'), +('導', 'みちび.く'), +('破', 'やぶ.る'), +('破', 'やぶ.れる'), +('破', 'わ.れる'), +('燃', 'も.える'), +('燃', 'も.やす'), +('燃', 'も.す'), +('肥', 'こ.える'), +('肥', 'こえ'), +('肥', 'こ.やす'), +('肥', 'こ.やし'), +('肥', 'ふと.る'), +('独', 'ひと.り'), +('銅', 'あかがね'), +('貧', 'まず.しい'), +('備', 'そな.える'), +('備', 'そな.わる'), +('備', 'つぶさ.に'), +('婦', 'よめ'), +('布', 'ぬの'), +('布', 'し.く'), +('布', 'きれ'), +('武', 'たけ'), +('武', 'たけ.し'), +('復', 'また'), +('編', 'あ.む'), +('編', '-あ.み'), +('綿', 'わた'), +('豊', 'ゆた.か'), +('豊', 'とよ'), +('余', 'あま.る'), +('余', 'あま.り'), +('余', 'あま.す'), +('余', 'あんま.り'), +('脈', 'すじ'), +('保', 'たも.つ'), +('夢', 'ゆめ'), +('夢', 'ゆめ.みる'), +('夢', 'くら.い'), +('留', 'と.める'), +('留', 'と.まる'), +('留', 'とど.める'), +('留', 'とど.まる'), +('留', 'るうぶる'), +('務', 'つと.める'), +('報', 'むく.いる'), +('弁', 'かんむり'), +('弁', 'わきま.える'), +('弁', 'わ.ける'), +('弁', 'はなびら'), +('弁', 'あらそ.う'), +('迷', 'まよ.う'), +('粉', 'デシメートル'), +('粉', 'こ'), +('粉', 'こな'), +('領', 'えり'), +('暴', 'あば.く'), +('暴', 'あば.れる'), +('略', 'ほぼ'), +('略', 'はぶ.く'), +('略', 'おか.す'), +('略', 'おさ.める'), +('略', 'はかりごと'), +('略', 'はか.る'), +('仏', 'ほとけ'), +('防', 'ふせ.ぐ'), +('墓', 'はか'), +('容', 'い.れる'); + +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("異", 11, "uncommon, different, queerness, strangeness, wonderful, curious, unusual", "田", 1, 631, 6, true), +("胃", 9, "stomach, paunch, crop, craw", "肉", 2, 1647, 4, true), +("域", 11, "range, region, limits, stage, level", "土", 2, 396, 6, true), +("遺", 15, "bequeath, leave behind, reserve", "辵", 1, 647, 6, true), +("宇", 6, "eaves, roof, house, heaven", "宀", 2, 883, 6, true), +("延", 8, "prolong, stretching", "廴", 2, 747, 6, true), +("映", 9, "reflect, reflection, projection", "日", 4, 404, 6, true), +("沿", 8, "run alongside, follow along, run along, lie along", "水", 1, 1121, 6, true), +("我", 7, "ego, I, selfish, our, oneself", "戈", 1, 829, 6, true), +("恩", 10, "grace, kindness, goodness, favor, mercy, blessing, benefit", "心", 1, 1418, 5, true), +("灰", 6, "ashes, puckery juice, cremate", "火", 2, 1717, 6, true), +("拡", 8, "broaden, extend, expand, enlarge", "手", 1, 611, 6, true), +("机", 6, "desk, table", "木", 2, 1671, 6, true), +("郷", 11, "home town, village, native place, district", "邑", 1, 1077, 6, true), +("革", 9, "leather, skin, reform, become serious", "革", 2, 249, 6, true), +("供", 8, "submit, offer, present, serve (meal), accompany", "人", 3, 313, 6, true), +("巻", 9, "scroll, volume, book, part, roll up, wind up, tie, coil, counter for texts (or book scrolls)", "己", 2, 944, 6, true), +("割", 12, "proportion, comparatively, divide, cut, separate, split", "刀", 3, 318, 6, true), +("勤", 12, "diligence, become employed, serve", "力", 3, 830, 6, true), +("閣", 14, "tower, tall building, palace", "門", 1, 444, 6, true), +("吸", 6, "suck, imbibe, inhale, sip", "口", 3, 1054, 6, true), +("干", 3, "dry, parch, ebb, recede, interfere, intercede", "干", 2, 1349, 6, true), +("胸", 10, "bosom, breast, chest, heart, feelings", "肉", 2, 1144, 6, true), +("貴", 12, "precious, value, prize, esteem, honor", "貝", 1, 970, 6, true), +("危", 6, "dangerous, fear, uneasy", "卩", 3, 606, 6, true), +("簡", 18, "simplicity, brevity", "竹", 2, 983, 6, true), +("系", 7, "lineage, system", "糸", 1, 567, 6, true), +("揮", 12, "brandish, wave, wag, swing, shake", "手", 1, 946, 6, true), +("株", 10, "stocks, stump, shares, stock, counter for small plants", "木", 1, 432, 6, true), +("看", 9, "watch over, see", "目", 1, 1060, 6, true), +("疑", 14, "doubt, distrust, be suspicious, question", "疋", 3, 283, 6, true), +("筋", 12, "muscle, sinew, tendon, fiber, plot, plan, descent", "竹", 1, 744, 6, true), +("劇", 15, "drama, play", "刀", 2, 662, 6, true), +("呼", 8, "call, call out to, invite", "口", 3, 498, 6, true), +("孝", 7, "filial piety, child's respect", "子", NULL, 1030, 6, true), +("激", 16, "violent, get excited, enraged, chafe, incite", "水", 1, 560, 6, true), +("源", 13, "source, origin", "水", 1, 738, 6, true), +("憲", 16, "constitution, law", "心", 1, 551, 6, true), +("敬", 12, "awe, respect, honor, revere", "攴", 2, 1078, 6, true), +("警", 19, "admonish, commandment", "言", 3, 366, 6, true), +("券", 8, "ticket", "刀", 2, 583, 5, true), +("絹", 13, "silk", "糸", 1, 1916, 6, true), +("穴", 5, "hole, aperture, slit, cave, den", "穴", 1, 1366, 6, true), +("厳", 17, "stern, strictness, severity, rigidity", "厂", 1, 638, 6, true), +("紅", 9, "crimson, deep red", "糸", 2, 1299, 6, true), +("己", 3, "self", "己", 1, 1098, 6, true), +("皇", 9, "emperor", "白", 1, 721, 6, true), +("后", 6, "empress, queen, after, behind, back, later", "口", 1, 1583, 6, true), +("降", 10, "descend, precipitate, fall, surrender", "阜", 3, 596, 6, true), +("誤", 14, "mistake, err, do wrong, mislead", "言", 3, 1150, 6, true), +("刻", 8, "engrave, cut fine, chop, hash, mince, time, carving", "刀", 3, 866, 6, true), +("鋼", 16, "steel", "金", 1, 1246, 6, true), +("穀", 14, "cereals, grain", "禾", 1, 1744, 6, true), +("済", 11, "settle (debt, etc.), relieve (burden), finish, come to an end, excusable, need not", "水", 3, 168, 6, true), +("座", 10, "squat, seat, cushion, gathering, sit", "广", 3, 588, 6, true), +("誌", 14, "document, records", "言", 2, 851, 6, true), +("捨", 11, "discard, throw away, abandon, resign, reject, sacrifice", "手", 2, 1266, 6, true), +("骨", 10, "skeleton, bone, remains, frame", "骨", 2, 936, 6, true), +("裁", 12, "tailor, judge, decision, cut out (pattern)", "衣", 1, 297, 6, true), +("磁", 14, "magnet, porcelain", "石", 1, 1686, 6, true), +("権", 15, "authority, power, rights", "木", 3, 156, 6, true), +("私", 7, "private, I, me", "禾", 4, 242, 6, true), +("砂", 9, "sand", "石", 2, 1146, 6, true), +("尺", 4, "shaku, Japanese foot, measure, scale, rule", "尸", 1, 1940, 6, true), +("射", 10, "shoot, shine into, onto, archery", "寸", 1, 937, 6, true), +("視", 11, "inspection, regard as, see, look at", "見", 1, 362, 6, true), +("困", 7, "quandary, become distressed, annoyed", "囗", 3, 843, 6, true), +("策", 12, "scheme, plan, policy, step, means", "竹", 1, 209, 6, true), +("詞", 12, "part of speech, words, poetry", "言", 2, 1636, 6, true), +("至", 6, "climax, arrive, proceed, reach, attain, result in", "至", 1, 996, 6, true), +("冊", 5, "tome, counter for books, volume", "冂", 2, 1313, 6, true), +("姿", 9, "figure, form, shape", "女", 1, 441, 6, true), +("宗", 8, "religion, sect, denomination, main point, origin, essence", "宀", 1, 997, 6, true), +("収", 4, "income, obtain, reap, pay, supply, store", "又", 3, 337, 6, true), +("樹", 16, "timber, trees, wood, establish, set up", "木", 1, 988, 6, true), +("衆", 12, "masses, great numbers, multitude, populace", "血", 1, 450, 6, true), +("若", 8, "young, if, perhaps, possibly, low number, immature", "艸", 3, 458, 6, true), +("就", 12, "concerning, settle, take position, depart, study, per", "尢", 1, 624, 6, true), +("縮", 17, "shrink, contract, shrivel, wrinkle, reduce", "糸", 1, 909, 6, true), +("蚕", 10, "silkworm", "虫", 1, 2272, 6, true), +("熟", 15, "mellow, ripen, mature, acquire skill", "火", 1, 1415, 6, true), +("縦", 16, "vertical, length, height, self-indulgent, wayward", "糸", 1, 1258, 6, true), +("処", 5, "dispose, manage, deal with, sentence, condemn, act, behave, place", "几", 3, 547, 6, true), +("従", 10, "accompany, obey, submit to, comply, follow, secondary, incidental, subordinate", "彳", 1, 601, 6, true), +("純", 10, "genuine, purity, innocence, net (profit)", "糸", 2, 1044, 6, true), +("署", 13, "signature, govt office, police station", "网", 2, 725, 6, true), +("除", 10, "exclude, division (x/3), remove, abolish, cancel, except", "阜", 3, 594, 6, true), +("将", 10, "leader, commander, general, admiral, or, and again, soon, from now on, just about", "寸", 2, 634, 6, true), +("承", 8, "acquiesce, hear, listen to, be informed, receive", "手", 2, 775, 5, true), +("傷", 13, "wound, hurt, injure, impair, pain, injury, cut, gash, scar, weak point", "人", 1, 845, 6, true), +("諸", 15, "various, many, several, together", "言", 2, 658, 6, true), +("針", 10, "needle, pin, staple, stinger", "金", 2, 505, 6, true), +("垂", 8, "droop, suspend, hang, slouch", "土", 1, 1720, 6, true), +("障", 14, "hinder, hurt, harm", "阜", 1, 742, 6, true), +("仁", 4, "humanity, virtue, benevolence, charity, man, kernel", "人", 1, 1332, 6, true), +("推", 11, "conjecture, infer, guess, suppose, support, push (for)", "手", 1, 507, 6, true), +("蒸", 13, "steam, heat, sultry, foment, get musty", "艸", 2, 1552, 6, true), +("装", 12, "attire, dress, pretend, disguise, profess", "衣", 2, 657, 6, true), +("層", 14, "stratum, social class, layer, story, floor", "尸", 2, 801, 6, true), +("洗", 9, "wash, inquire into, probe", "水", 3, 1168, 6, true), +("舌", 6, "tongue, reed, clapper", "舌", 1, 1830, 5, true), +("聖", 13, "holy, saint, sage, master, priest", "耳", 1, 1165, 6, true), +("寸", 3, "measurement, tenth of a shaku, a little, small", "寸", 1, 1669, 6, true), +("窓", 11, "window, pane", "穴", 3, 1186, 6, true), +("染", 9, "dye, color, paint, stain, print", "木", 1, 837, 6, true), +("専", 9, "specialty, exclusive, mainly, solely", "寸", 2, 506, 6, true), +("泉", 9, "spring, fountain", "水", 2, 1086, 6, true), +("宣", 9, "proclaim, say, announce", "宀", 1, 695, 6, true), +("銭", 14, "coin, .01 yen, money", "金", 1, 1008, 5, true), +("奏", 9, "play music, speak to a ruler, complete", "大", 1, 1067, 6, true), +("善", 12, "virtuous, good, goodness", "口", 1, 765, 6, true), +("盛", 11, "boom, prosper, copulate", "皿", 1, 712, 6, true), +("操", 16, "maneuver, manipulate, operate, steer, chastity, virginity, fidelity", "手", 1, 1016, 6, true), +("蔵", 15, "storehouse, hide, own, have, possess", "艸", 2, 468, 6, true), +("誠", 13, "sincerity, admonish, warn, prohibit, truth, fidelity", "言", 1, 1128, 6, true), +("創", 12, "genesis, wound, injury, hurt, start, originate", "刀", 1, 741, 6, true), +("誕", 15, "nativity, be born, declension, lie, be arbitrary", "言", 1, 1024, 6, true), +("宅", 6, "home, house, residence, our house, my husband", "宀", 3, 357, 6, true), +("宙", 8, "mid-air, air, space, sky, memorization, interval of time", "宀", 1, 1005, 6, true), +("潮", 15, "tide, salt water, opportunity", "水", 1, 1231, 6, true), +("忠", 8, "loyalty, fidelity, faithfulness", "心", 1, 1113, 6, true), +("臓", 19, "entrails, viscera, bowels", "肉", 2, 991, 6, true), +("担", 8, "shouldering, carry, raise, bear", "手", 2, 422, 6, true), +("著", 11, "renowned, publish, write, remarkable, phenomenal, put on, don, wear, arrival, finish (race), counter for suits of clothing, literary work", "艸", 2, 849, 6, true), +("退", 9, "retreat, withdraw, retire, resign, repel, expel, reject", "辵", 3, 424, 5, true), +("探", 11, "grope, search, look for", "手", 3, 930, 6, true), +("尊", 12, "revered, valuable, precious, noble, exalted", "寸", 2, 1181, 6, true), +("暖", 13, "warmth", "日", 1, 1371, 6, true), +("頂", 11, "place on the head, receive, top of head, top, summit, peak", "頁", 3, 1350, 6, true), +("段", 9, "grade, steps, stairs", "殳", 3, 479, 6, true), +("値", 10, "price, cost, value", "人", 3, 518, 6, true), +("存", 6, "exist, suppose, be aware of, believe, feel", "子", 3, 577, 6, true), +("痛", 12, "pain, hurt, damage, bruise", "疒", 3, 903, 6, true), +("腸", 13, "intestines, guts, bowels, viscera", "肉", 1, 1807, 4, true), +("賃", 13, "fare, fee, hire, rent, wages, charge", "貝", 1, 961, 6, true), +("展", 10, "unfold, expand", "尸", 1, 352, 6, true), +("庁", 5, "government office", "广", 2, 793, 6, true), +("討", 10, "chastise, attack, defeat, destroy, conquer", "言", 1, 528, 6, true), +("糖", 16, "sugar", "米", 1, 1471, 6, true), +("敵", 15, "enemy, foe, opponent", "攴", 1, 1205, 5, true), +("届", 8, "deliver, reach, arrive, report, notify, forward", "尸", 2, 939, 6, true), +("党", 10, "party, faction, clique", "儿", 2, 39, 6, true), +("乳", 8, "milk, breasts", "乛", 2, 1289, 6, true), +("晩", 12, "nightfall, night", "日", 3, 1424, 6, true), +("脳", 11, "brain, memory", "肉", 2, 459, 6, true), +("納", 10, "settlement, obtain, reap, pay, supply, store", "糸", 1, 987, 6, true), +("批", 7, "criticism, strike", "手", 1, 568, 6, true), +("俵", 10, "bag, bale, sack, counter for bags", "人", 1, 1481, 5, true), +("拝", 8, "worship, adore, pray to", "手", 2, 1443, 6, true), +("陛", 10, "highness, steps (of throne)", "阜", 1, 1429, 6, true), +("奮", 16, "stirred up, be invigorated, flourish", "大", 1, 1521, 6, true), +("難", 18, "difficult, impossible, trouble, accident, defect", "隹", 3, 330, 6, true), +("俳", 10, "haiku, actor", "人", 1, 1137, 6, true), +("背", 9, "stature, height, back, behind, disobey, defy, go back on, rebel", "肉", 3, 696, 6, true), +("腹", 13, "abdomen, belly, stomach", "肉", 3, 1286, 6, true), +("並", 8, "row, and, besides, as well as, line up, rank with, rival, equal", "一", 2, 599, 6, true), +("認", 14, "acknowledge, witness, discern, recognize, appreciate, believe", "言", 3, 198, 6, true), +("肺", 9, "lungs", "肉", 1, 1387, 6, true), +("否", 7, "negate, no, noes, refuse, decline, deny", "口", 3, 561, 6, true), +("班", 10, "squad, corps, unit, group", "玉", 1, 1592, 6, true), +("閉", 11, "closed, shut", "門", 3, 951, 6, true), +("暮", 14, "evening, twilight, season's end, livelihood, make a living, spend time", "日", 3, 978, 6, true), +("派", 9, "faction, group, party, clique, sect, school", "水", 1, 164, 6, true), +("補", 12, "supplement, supply, make good, offset, compensate, assistant, learner", "衣", 2, 332, 6, true), +("片", 4, "one-sided, leaf, sheet, right-side kata radical (no. 91)", "片", 2, 1076, 6, true), +("秘", 10, "secret, conceal", "禾", 1, 862, 6, true), +("忘", 7, "forget", "心", 3, 1129, 6, true), +("棒", 12, "rod, stick, cane, pole, club, line", "木", 2, 1455, 6, true), +("枚", 8, "sheet of..., counter for flat thin objects or sheets", "木", 2, 911, 6, true), +("宝", 8, "treasure, wealth, valuables", "宀", 2, 1139, 6, true), +("亡", 3, "deceased, the late, dying, perish", "亠", 3, 661, 6, true), +("密", 11, "secrecy, density (pop), minuteness, carefulness", "宀", 1, 815, 6, true), +("訪", 11, "call on, visit, look up, offer sympathy", "言", 3, 372, 6, true), +("盟", 13, "alliance, oath", "皿", 1, 587, 6, true), +("幕", 13, "curtain, bunting, act of play", "巾", 1, 835, 6, true), +("訳", 11, "translate, reason, circumstance, case", "言", 1, 1050, 6, true), +("模", 14, "imitation, copy, mock", "木", 1, 668, 6, true), +("郵", 11, "mail, stagecoach stop", "邑", 2, 917, 6, true), +("預", 13, "deposit, custody, leave with, entrust to", "頁", 2, 981, 5, true), +("優", 17, "tenderness, excel, surpass, actor, superiority, gentleness", "人", 3, 334, 6, true), +("幼", 5, "infancy, childhood", "幺", 2, 1227, 6, true), +("卵", 7, "egg, ovum, spawn, roe", "卩", 2, 1342, 6, true), +("律", 9, "rhythm, law, regulation, gauge, control", "彳", 2, 992, 6, true), +("裏", 13, "back, amidst, in, reverse, inside, palm, sole, rear, lining, wrong side", "衣", 2, 812, 6, true), +("翌", 11, "the following, next", "羽", 2, 1070, 6, true), +("朗", 10, "melodious, clear, bright, serene, cheerful", "月", 1, 1374, 6, true), +("欲", 11, "longing, covetousness, greed, passion, desire, craving", "欠", 3, 902, 6, true), +("臨", 18, "look to, face, meet, confront, attend, call on", "臣", 1, 722, 6, true), +("乱", 7, "riot, war, disorder, disturb", "乛", 2, 755, 6, true), +("論", 15, "argument, discourse", "言", 3, 227, 6, true), +("覧", 17, "perusal, see", "見", 1, 1510, 6, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("イ"), +("イ"), +("イキ"), +("イ"), +("ユイ"), +("ウ"), +("エン"), +("エイ"), +("エン"), +("ガ"), +("オン"), +("カイ"), +("カク"), +("コウ"), +("キ"), +("キョウ"), +("ゴウ"), +("カク"), +("キョウ"), +("ク"), +("クウ"), +("グ"), +("カン"), +("ケン"), +("カツ"), +("キン"), +("ゴン"), +("カク"), +("キュウ"), +("カン"), +("キョウ"), +("キ"), +("キ"), +("カン"), +("ケン"), +("ケイ"), +("キ"), +("シュ"), +("カン"), +("ギ"), +("キン"), +("ゲキ"), +("コ"), +("コウ"), +("キョウ"), +("ゲキ"), +("ゲン"), +("ケン"), +("ケイ"), +("キョウ"), +("ケイ"), +("ケン"), +("ケン"), +("ケツ"), +("ゲン"), +("ゴン"), +("コウ"), +("ク"), +("コ"), +("キ"), +("コウ"), +("オウ"), +("コウ"), +("ゴ"), +("コウ"), +("ゴ"), +("ゴ"), +("コク"), +("コウ"), +("コク"), +("サイ"), +("セイ"), +("ザ"), +("シ"), +("シャ"), +("コツ"), +("サイ"), +("ジ"), +("ケン"), +("ゴン"), +("シ"), +("サ"), +("シャ"), +("シャク"), +("セキ"), +("シャ"), +("シ"), +("コン"), +("サク"), +("シ"), +("シ"), +("サツ"), +("サク"), +("シ"), +("シュウ"), +("ソウ"), +("シュウ"), +("ジュ"), +("シュウ"), +("シュ"), +("ジャク"), +("ニャク"), +("ニャ"), +("シュウ"), +("ジュ"), +("シュク"), +("サン"), +("テン"), +("ジュク"), +("ジュウ"), +("ショ"), +("ジュウ"), +("ショウ"), +("ジュ"), +("ジュン"), +("ショ"), +("ジョ"), +("ジ"), +("ショウ"), +("ソウ"), +("ショウ"), +("ジョウ"), +("ショウ"), +("ショ"), +("シン"), +("スイ"), +("ショウ"), +("ジン"), +("ニ"), +("ニン"), +("スイ"), +("ジョウ"), +("セイ"), +("ソウ"), +("ショウ"), +("ソウ"), +("セン"), +("ゼツ"), +("セイ"), +("ショウ"), +("スン"), +("ソウ"), +("ス"), +("セン"), +("セン"), +("セン"), +("セン"), +("セン"), +("ゼン"), +("ソウ"), +("ゼン"), +("セイ"), +("ジョウ"), +("ソウ"), +("サン"), +("ゾウ"), +("ソウ"), +("セイ"), +("ソウ"), +("ショウ"), +("タン"), +("タク"), +("チュウ"), +("チョウ"), +("チュウ"), +("ゾウ"), +("タン"), +("チョ"), +("チャク"), +("タイ"), +("タン"), +("ソン"), +("ダン"), +("ノン"), +("チョウ"), +("ダン"), +("タン"), +("チ"), +("ソン"), +("ゾン"), +("ツウ"), +("チョウ"), +("チン"), +("テン"), +("チョウ"), +("テイ"), +("トウ"), +("トウ"), +("テキ"), +("カイ"), +("トウ"), +("ニュウ"), +("バン"), +("ノウ"), +("ドウ"), +("ノウ"), +("ナッ"), +("ナ"), +("ナン"), +("トウ"), +("ヒ"), +("ヒョウ"), +("ハイ"), +("ヘイ"), +("フン"), +("ナン"), +("ハイ"), +("ハイ"), +("フク"), +("ヘイ"), +("ホウ"), +("ニン"), +("ハイ"), +("ヒ"), +("ハン"), +("ヘイ"), +("ボ"), +("ハ"), +("ホ"), +("ヘン"), +("ヒ"), +("ボウ"), +("ボウ"), +("マイ"), +("バイ"), +("ホウ"), +("ボウ"), +("モウ"), +("ミツ"), +("ホウ"), +("メイ"), +("マク"), +("バク"), +("ヤク"), +("モ"), +("ボ"), +("ユウ"), +("ヨ"), +("ユウ"), +("ウ"), +("ヨウ"), +("ラン"), +("リツ"), +("リチ"), +("レツ"), +("リ"), +("ヨク"), +("ロウ"), +("ヨク"), +("リン"), +("ラン"), +("ロン"), +("ロン"), +("ラン"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('異', 'イ'), +('胃', 'イ'), +('域', 'イキ'), +('遺', 'イ'), +('遺', 'ユイ'), +('宇', 'ウ'), +('延', 'エン'), +('映', 'エイ'), +('沿', 'エン'), +('我', 'ガ'), +('恩', 'オン'), +('灰', 'カイ'), +('拡', 'カク'), +('拡', 'コウ'), +('机', 'キ'), +('郷', 'キョウ'), +('郷', 'ゴウ'), +('革', 'カク'), +('供', 'キョウ'), +('供', 'ク'), +('供', 'クウ'), +('供', 'グ'), +('巻', 'カン'), +('巻', 'ケン'), +('割', 'カツ'), +('勤', 'キン'), +('勤', 'ゴン'), +('閣', 'カク'), +('吸', 'キュウ'), +('干', 'カン'), +('胸', 'キョウ'), +('貴', 'キ'), +('危', 'キ'), +('簡', 'カン'), +('簡', 'ケン'), +('系', 'ケイ'), +('揮', 'キ'), +('株', 'シュ'), +('看', 'カン'), +('疑', 'ギ'), +('筋', 'キン'), +('劇', 'ゲキ'), +('呼', 'コ'), +('孝', 'コウ'), +('孝', 'キョウ'), +('激', 'ゲキ'), +('源', 'ゲン'), +('憲', 'ケン'), +('敬', 'ケイ'), +('敬', 'キョウ'), +('警', 'ケイ'), +('券', 'ケン'), +('絹', 'ケン'), +('穴', 'ケツ'), +('厳', 'ゲン'), +('厳', 'ゴン'), +('紅', 'コウ'), +('紅', 'ク'), +('己', 'コ'), +('己', 'キ'), +('皇', 'コウ'), +('皇', 'オウ'), +('后', 'コウ'), +('后', 'ゴ'), +('降', 'コウ'), +('降', 'ゴ'), +('誤', 'ゴ'), +('刻', 'コク'), +('鋼', 'コウ'), +('穀', 'コク'), +('済', 'サイ'), +('済', 'セイ'), +('座', 'ザ'), +('誌', 'シ'), +('捨', 'シャ'), +('骨', 'コツ'), +('裁', 'サイ'), +('磁', 'ジ'), +('権', 'ケン'), +('権', 'ゴン'), +('私', 'シ'), +('砂', 'サ'), +('砂', 'シャ'), +('尺', 'シャク'), +('尺', 'セキ'), +('射', 'シャ'), +('視', 'シ'), +('困', 'コン'), +('策', 'サク'), +('詞', 'シ'), +('至', 'シ'), +('冊', 'サツ'), +('冊', 'サク'), +('姿', 'シ'), +('宗', 'シュウ'), +('宗', 'ソウ'), +('収', 'シュウ'), +('樹', 'ジュ'), +('衆', 'シュウ'), +('衆', 'シュ'), +('若', 'ジャク'), +('若', 'ニャク'), +('若', 'ニャ'), +('就', 'シュウ'), +('就', 'ジュ'), +('縮', 'シュク'), +('蚕', 'サン'), +('蚕', 'テン'), +('熟', 'ジュク'), +('縦', 'ジュウ'), +('処', 'ショ'), +('従', 'ジュウ'), +('従', 'ショウ'), +('従', 'ジュ'), +('純', 'ジュン'), +('署', 'ショ'), +('除', 'ジョ'), +('除', 'ジ'), +('将', 'ショウ'), +('将', 'ソウ'), +('承', 'ショウ'), +('承', 'ジョウ'), +('傷', 'ショウ'), +('諸', 'ショ'), +('針', 'シン'), +('垂', 'スイ'), +('障', 'ショウ'), +('仁', 'ジン'), +('仁', 'ニ'), +('仁', 'ニン'), +('推', 'スイ'), +('蒸', 'ジョウ'), +('蒸', 'セイ'), +('装', 'ソウ'), +('装', 'ショウ'), +('層', 'ソウ'), +('洗', 'セン'), +('舌', 'ゼツ'), +('聖', 'セイ'), +('聖', 'ショウ'), +('寸', 'スン'), +('窓', 'ソウ'), +('窓', 'ス'), +('染', 'セン'), +('専', 'セン'), +('泉', 'セン'), +('宣', 'セン'), +('銭', 'セン'), +('銭', 'ゼン'), +('奏', 'ソウ'), +('善', 'ゼン'), +('盛', 'セイ'), +('盛', 'ジョウ'), +('操', 'ソウ'), +('操', 'サン'), +('蔵', 'ゾウ'), +('蔵', 'ソウ'), +('誠', 'セイ'), +('創', 'ソウ'), +('創', 'ショウ'), +('誕', 'タン'), +('宅', 'タク'), +('宙', 'チュウ'), +('潮', 'チョウ'), +('忠', 'チュウ'), +('臓', 'ゾウ'), +('担', 'タン'), +('著', 'チョ'), +('著', 'チャク'), +('退', 'タイ'), +('探', 'タン'), +('尊', 'ソン'), +('暖', 'ダン'), +('暖', 'ノン'), +('頂', 'チョウ'), +('段', 'ダン'), +('段', 'タン'), +('値', 'チ'), +('存', 'ソン'), +('存', 'ゾン'), +('痛', 'ツウ'), +('腸', 'チョウ'), +('賃', 'チン'), +('展', 'テン'), +('庁', 'チョウ'), +('庁', 'テイ'), +('討', 'トウ'), +('糖', 'トウ'), +('敵', 'テキ'), +('届', 'カイ'), +('党', 'トウ'), +('乳', 'ニュウ'), +('晩', 'バン'), +('脳', 'ノウ'), +('脳', 'ドウ'), +('納', 'ノウ'), +('納', 'ナッ'), +('納', 'ナ'), +('納', 'ナン'), +('納', 'トウ'), +('批', 'ヒ'), +('俵', 'ヒョウ'), +('拝', 'ハイ'), +('陛', 'ヘイ'), +('奮', 'フン'), +('難', 'ナン'), +('俳', 'ハイ'), +('背', 'ハイ'), +('腹', 'フク'), +('並', 'ヘイ'), +('並', 'ホウ'), +('認', 'ニン'), +('肺', 'ハイ'), +('否', 'ヒ'), +('班', 'ハン'), +('閉', 'ヘイ'), +('暮', 'ボ'), +('派', 'ハ'), +('補', 'ホ'), +('片', 'ヘン'), +('秘', 'ヒ'), +('忘', 'ボウ'), +('棒', 'ボウ'), +('枚', 'マイ'), +('枚', 'バイ'), +('宝', 'ホウ'), +('亡', 'ボウ'), +('亡', 'モウ'), +('密', 'ミツ'), +('訪', 'ホウ'), +('盟', 'メイ'), +('幕', 'マク'), +('幕', 'バク'), +('訳', 'ヤク'), +('模', 'モ'), +('模', 'ボ'), +('郵', 'ユウ'), +('預', 'ヨ'), +('優', 'ユウ'), +('優', 'ウ'), +('幼', 'ヨウ'), +('卵', 'ラン'), +('律', 'リツ'), +('律', 'リチ'), +('律', 'レツ'), +('裏', 'リ'), +('翌', 'ヨク'), +('朗', 'ロウ'), +('欲', 'ヨク'), +('臨', 'リン'), +('乱', 'ラン'), +('乱', 'ロン'), +('論', 'ロン'), +('覧', 'ラン'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('異', 'イ', 'difference (of opinion), strange, odd, unusual, different'), +('異常', 'イジョウ', 'strangeness, abnormality, disorder'), +('相違', 'ソウイ', 'difference, discrepancy, variation'), +('小異', 'ショウイ', 'minor difference'), +('胃', 'イ', 'stomach, Chinese "stomach" constellation (one of the 28 mansions)'), +('胃痛', 'イツウ', 'stomach-ache, stomach pain, gastralgia'), +('しわ胃', 'シワイ', 'abomasum'), +('葉胃', 'ヨウイ', 'omasum, psalterium, third compartment of the stomach in ruminants'), +('域', 'イキ', 'region, limits, stage, level'), +('域外', 'イキガイ', 'outside the area'), +('空域', 'クウイキ', 'airspace'), +('聖域', 'セイイキ', 'sacred precincts, sanctuary, consecrated ground, holy ground, issue that is regarded as being off-limits, matter that is not up for discussion'), +('遺跡', 'イセキ', 'historic ruins (remains, relics), archeological site'), +('遺言', 'ユイゴン', 'will, testament, last request, dying wish'), +('拾遺', 'シュウイ', 'gleaning, gleanings'), +('補遺', 'ホイ', 'supplement, addendum, appendix'), +('遺言', 'ユイゴン', 'will, testament, last request, dying wish'), +('遺言書', 'ユイゴンショ', 'will, testament'), +('宇', 'ウ', 'counter for buildings, roofs, tents, etc.'), +('宇宙', 'ウチュウ', 'universe, cosmos, space'), +('気宇', 'キウ', 'breadth of mind, generosity, magnanimity'), +('航宇', 'コウウ', 'aerospace'), +('延期', 'エンキ', 'postponement, deferment, adjournment'), +('延長', 'エンチョウ', 'extension, elongation, prolongation, lengthening, Enchō era (923.4.11-931.4.26)'), +('遅延', 'チエン', 'delay, latency'), +('蔓延', 'マンエン', 'spread (e.g. of a disease), rampancy, infestation, proliferation, being widespread'), +('映画館', 'エイガカン', 'movie theatre, movie theater, cinema'), +('映画', 'エイガ', 'movie, film'), +('反映', 'ハンエイ', 'reflection (of light), reflection (of society, attitudes, etc.), application (of an update, changes, etc.), taking effect'), +('上映', 'ジョウエイ', 'screening (a movie), showing'), +('沿線', 'エンセン', 'alongside a railway line, bus route, major thoroughfare, etc.'), +('沿岸', 'エンガン', 'coast, shore, littoral'), +('我', 'ガ', 'obstinacy, atman, the self, the ego'), +('我慢', 'ガマン', 'endurance, patience, perseverance, bearing (with something), self-control, self-restraint'), +('無我', 'ムガ', 'selflessness, self-effacement, self-renunciation, anatta, anatman, doctrine that states that humans do not possess souls'), +('小我', 'ショウガ', 'the self, the ego'), +('恩', 'オン', 'favour, favor, obligation, debt of gratitude'), +('恩恵', 'オンケイ', 'grace, favor, favour, blessing, benefit'), +('迎恩', 'ゲイオン', 'welcoming reception'), +('聖恩', 'セイオン', 'imperial blessings or favor (favour)'), +('灰色', 'ハイイロ', 'grey, gray, ashen'), +('灰色植物門', 'カイショクショクブツモン', 'Glaucophyta (phylum of freshwater microscopic algae)'), +('石灰', 'セッカイ', 'lime, quicklime, caustic lime'), +('生石灰', 'セイセッカイ', 'quick lime'), +('拡大', 'カクダイ', 'expansion, extension, magnification, enlargement, escalation, spread'), +('拡充', 'カクジュウ', 'expansion'), +('軍拡', 'グンカク', 'expansion of armaments'), +('机上の空論', 'キジョウノクウロン', 'armchair theory, impracticable theory'), +('机上', 'キジョウ', 'on the desk, theoretical, academic, armchair (e.g. plan), desktop, paper, not yet implemented'), +('明窓浄机', 'メイソウジョウキ', 'dustless desk by a well-lit window, well-lit and clean study conducive to learning'), +('郷', 'キョウ', 'hometown, rural township (of China)'), +('郷愁', 'キョウシュウ', 'nostalgia, homesickness'), +('故郷', 'フルサト', 'hometown, birthplace, native place, one''s old home, ruins, historic remains'), +('帰郷', 'キキョウ', 'homecoming, return to one''s home'), +('郷', 'ゴウ', 'countryside, country, 50-home township (comprised of 2-3 neighbourhoods)'), +('郷に入っては郷に従え', 'ゴウニイッテハゴウニシタガエ', 'when in Rome, do as the Romans do'), +('水郷', 'スイゴウ', 'beautiful riverside location, lakeside district, canal district'), +('大西郷', 'ダイサイゴウ', 'the Great Saigo'), +('革命', 'カクメイ', 'revolution, 58th year of the sexagenary cycle (in Onmyōdō)'), +('革新', 'カクシン', 'reform, innovation'), +('改革', 'カイカク', 'reform, reformation, reorganization'), +('農地改革', 'ノウチカイカク', 'agrarian reform'), +('供給', 'キョウキュウ', 'supply, provision'), +('供述', 'キョウジュツ', 'affidavit, deposition, testimony'), +('自供', 'ジキョウ', 'confession'), +('情報提供', 'ジョウホウテイキョウ', 'provision of information'), +('供物', 'クモツ', 'offering (e.g. to the gods), votive offering'), +('供花', 'キョウカ', 'offering of flowers (at shrine, grave, etc.), floral tribute'), +('節句', 'セック', 'seasonal festival'), +('初節供', 'ハツゼック', 'baby''s first annual festival'), +('供花', 'キョウカ', 'offering of flowers (at shrine, grave, etc.), floral tribute'), +('人身御供', 'ヒトミゴクウ', 'human sacrifice, victim'), +('供御', 'クゴ', 'emperor''s meal'), +('供祭', 'グサイ', 'offerings, offerings and worship'), +('内供', 'ナイグ', 'inner offerer (any of the 10 high-ranking monks serving at the inner offering hall)'), +('応供', 'オウグ', 'arhat (meritorious person, esp. an epithet of Buddha)'), +('巻', 'カン', 'volume (of book), reel (of film), scroll (of books or paintings), roll (paper, etc.)'), +('巻末', 'カンマツ', 'end of a book'), +('圧巻', 'アッカン', 'highlight, best part, stunning, incredible, superb'), +('通巻', 'ツウカン', 'consecutive number of (or total) volumes'), +('巻雲', 'ケンウン', 'cirrus (cloud)'), +('巻纓', 'ケンエイ', 'rolled tail (of a traditional Japanese hat), looped tail'), +('席巻', 'セッケン', 'sweeping conquest, sweeping over, conquering, invading'), +('割愛', 'カツアイ', 'omitting (reluctantly), leaving out, dropping, giving up (reluctantly), parting with, sharing, sparing'), +('割譲', 'カツジョウ', 'cession (of territory)'), +('分割', 'ブンカツ', 'partition, division, separation, segmenting, splitting'), +('正割', 'セイカツ', 'secant (trigonometric function)'), +('勤務', 'キンム', 'service, duty, work'), +('勤勉', 'キンベン', 'diligent, industrious'), +('出勤', 'シュッキン', 'going to work, leaving for work, attendance (at work), being at work, presence (in the office), reporting for work'), +('通勤', 'ツウキン', 'commuting to work'), +('勤行', 'ゴンギョウ', 'religious service'), +('勤行時報係', 'ゴンギョウジホウガカリ', 'muezzin'), +('閣僚', 'カクリョウ', 'cabinet ministers'), +('閣議', 'カクギ', 'cabinet meeting'), +('組閣', 'ソカク', 'formation of a cabinet'), +('倒閣', 'トウカク', 'overthrow of government'), +('吸収', 'キュウシュウ', 'absorption, suction, attraction'), +('吸血鬼', 'キュウケツキ', 'vampire, bloodsucker'), +('深呼吸', 'シンコキュウ', 'deep breath'), +('腹式呼吸', 'フクシキコキュウ', 'diaphragmatic breathing, abdominal breathing'), +('関与', 'カンヨ', 'participation, taking part in, participating in, being concerned in'), +('干渉', 'カンショウ', 'interference, intervention, meddling'), +('水干', 'スイカン', 'everyday garment worn by nobles in ancient Japan, silk dried after having been washed in plain water and stretched out'), +('十干', 'ジッカン', 'ten celestial stems (two types each of wood, fire, earth, metal, water), ten heavenly stems'), +('胸部', 'キョウブ', 'chest, breast'), +('胸中', 'キョウチュウ', 'one''s heart, one''s mind, one''s intentions'), +('豊胸', 'ホウキョウ', 'full breasts, ample breasts, breast enlargement'), +('膿胸', 'ノウキョウ', 'pyothorax'), +('貴', 'キ', 'your, indicates high rank or status, indicates love and respect (usu. for an older person)'), +('貴重', 'キチョウ', 'precious, valuable'), +('騰貴', 'トウキ', 'rise (in price or value), appreciation, advance'), +('富貴', 'フウキ', 'riches and honours (honors), wealth and rank'), +('危', 'キ', 'danger, Chinese "rooftop" constellation (one of the 28 mansions)'), +('危険', 'キケン', 'danger, peril, hazard, risk'), +('安危', 'アンキ', 'fate, safety, welfare'), +('簡', 'カン', 'simplicity, brevity, letter, note, correspondence, bamboo writing strip (in ancient China), simplified Chinese character'), +('簡単', 'カンタン', 'simple, easy, uncomplicated, brief, quick, light'), +('書簡', 'ショカン', 'letter, note, epistle, correspondence'), +('来簡', 'ライカン', 'correspondence, received letter'), +('不料簡', 'フリョウケン', 'indiscretion, bad idea, thoughtlessness, indiscreetness'), +('系', 'ケイ', 'system, lineage, group, corollary, system (range of strata that correspond to a particular time period), (taxonomical) series'), +('系統', 'ケイトウ', 'system, lineage, ancestry, family line, group (e.g. of colors) (colours), family (e.g. of languages), party, school (of thought), close (evolutionary) relationship, a population sharing a common ancestor (in genetics), strain (e.g. bacterial)'), +('日系', 'ニッケイ', '(of) Japanese descent, non-Japanese of Japanese descent, nikkeijin, company, etc. set up with Japanese capital, company managed by Japanese or non-Japanese of Japanese descent'), +('水系', 'スイケイ', 'water system, river system, drainage system'), +('揮発', 'キハツ', 'volatilization, volatilisation'), +('揮発性', 'キハツセイ', 'volatility'), +('発揮', 'ハッキ', 'show (of power, ability, etc.), exhibition, demonstration, display, manifestation'), +('指揮', 'シキ', 'command, direction, supervision, conducting (an orchestra, choir, etc.)'), +('株', 'シュ', 'stump, counter for trees'), +('雌雄異株', 'シユウイシュ', 'dioecy, dioecism'), +('懸念される変異株', 'ケネンサレルヘンイシュ', 'variant of concern (of SARS-CoV-2), VOC'), +('看護師', 'カンゴシ', '(hospital) nurse, registered nurse, RN'), +('看板', 'カンバン', 'signboard, sign, billboard, hoarding, doorplate, draw, attraction, feature, highlight, spokesman, figurehead, reputation (of a shop), name, appearance, look, show, closing (for the day, esp. of a restaurant or bar), closing time'), +('立て看', 'タテカン', 'standing signboard, billboard, hoarding'), +('オペ看', 'オペカン', 'operating room nurse'), +('疑', 'ギ', 'doubt, distrust, suspicion (of)'), +('疑問', 'ギモン', 'doubt, question, suspicion, dubiousness'), +('質疑', 'シツギ', 'question, interpellation'), +('懐疑', 'カイギ', 'doubt, skepticism, scepticism, disbelief'), +('筋', 'キン', 'muscle'), +('筋肉', 'キンニク', 'muscle'), +('心筋', 'シンキン', 'heart muscle, myocardium'), +('鉄筋', 'テッキン', 'rebar, (iron) reinforcing bar, reinforcing steel, reinforced concrete'), +('劇', 'ゲキ', 'drama, play, powerful drug'), +('劇場', 'ゲキジョウ', 'theatre, theater, playhouse'), +('観劇', 'カンゲキ', 'theatre-going, theater-going'), +('新劇', 'シンゲキ', 'school of western-inspired Japanese drama which developed towards the end of the Meiji period, shingeki, new-drama (movement)'), +('呼吸', 'コキュウ', 'breathing, respiration, knack, trick, secret (of doing something), harmony, balance, synchronization, accord, short interval, short pause'), +('呼び声', 'ヨビゴエ', 'call, hail, yell'), +('歓呼', 'カンコ', 'acclamation, jubilation'), +('鸚哥', 'インコ', 'true parrot (esp. small parrots such as the parakeet, lory and conure)'), +('孝', 'コウ', 'filial piety'), +('孝行', 'コウコウ', 'filial piety, showing devotion (to someone)'), +('親不孝', 'オヤフコウ', 'lack of filial piety, disobedience to one''s parents'), +('不孝', 'フコウ', 'undutifulness to one''s parents, lack of filial piety, (the crime of) cursing one''s parents, disowning one''s child'), +('孝', 'コウ', 'filial piety'), +('不孝', 'フコウ', 'undutifulness to one''s parents, lack of filial piety, (the crime of) cursing one''s parents, disowning one''s child'), +('激', 'ゲキ', 'extremely, terrifically, super'), +('激励', 'ゲキレイ', 'encouragement, spurring (on), cheering (on)'), +('刺激', 'シゲキ', 'stimulus, stimulation, irritation, impetus, impulse, stimulus, spur, incentive, encouragement, stimulation, motivation, provocation, excitement, thrill'), +('感激', 'カンゲキ', 'deep emotion, impression, inspiration'), +('源', 'ゲン', 'source, origin'), +('源氏', 'ゲンジ', 'Genji (the character in the Genji Monogatari), the Minamoto family'), +('財源', 'ザイゲン', 'source of funds, resources, finances'), +('震源', 'シンゲン', 'hypocentre (of an earthquake), hypocenter'), +('憲法', 'ケンポウ', 'constitution, rules, regulation'), +('憲章', 'ケンショウ', 'charter'), +('違憲', 'イケン', 'unconstitutionality'), +('改憲', 'カイケン', 'constitutional change, revising the constitution'), +('敬', 'ケイ', 'reverence, respect'), +('敬意', 'ケイイ', 'respect, honour, honor'), +('尊敬', 'ソンケイ', 'respect, esteem, reverence, honour, honor'), +('畏敬', 'イケイ', 'reverence, awe, respect'), +('ご愛嬌', 'ゴアイキョウ', 'entertainment, amusement, fun'), +('男は度胸女は愛敬', 'オトコハドキョウオンナハアイキョウ', 'men should be brave, women should be affable'), +('警官', 'ケイカン', 'police officer, policeman, constable'), +('警察', 'ケイサツ', 'police, police officer, police station'), +('県警', 'ケンケイ', 'prefectural police'), +('府警', 'フケイ', 'prefectural police (Osaka or Kyoto)'), +('券', 'ケン', 'ticket, coupon, bond, certificate'), +('券売機', 'ケンバイキ', 'ticket machine, ticket-vending machine'), +('馬券', 'バケン', 'betting ticket, betting slip'), +('有価証券', 'ユウカショウケン', 'marketable securities, stocks and bonds'), +('絹糸', 'ケンシ', 'silk thread'), +('絹布', 'ケンプ', 'silk, silk cloth'), +('正絹', 'ショウケン', 'pure silk'), +('素絹', 'ソケン', 'coarse silk'), +('穴', 'ケツ', 'ass, arse, buttocks, rear, end, acupuncture point, hole, notch'), +('穴隙', 'ケツゲキ', 'crevice, aperture'), +('横穴', 'ヨコアナ', 'cave, tunnel, tunnel tomb (Kofun period)'), +('経穴', 'ケイケツ', 'acupuncture point'), +('厳', 'ゲン', 'strict, stern'), +('厳重', 'ゲンジュウ', 'strict, severe, stringent, rigorous, rigid, firm, strong, secure'), +('謹厳', 'キンゲン', 'stern, grave, solemn, sobersided'), +('冷厳', 'レイゲン', 'grim, stern, stark, heartless'), +('華厳', 'ケゴン', 'avatamsa (flower adornment, as a metaphor for becoming a buddha), Avatamska sutra, Kegon (sect of Buddhism)'), +('荘厳', 'ショウゴン', 'adorning (a Buddhist statue)'), +('紅', 'クレナイ', 'deep red, crimson, rouge, lipstick'), +('紅茶', 'コウチャ', 'black tea'), +('深紅', 'シンク', 'deep crimson'), +('退紅', 'タイコウ', 'pink, light red'), +('紅', 'クレナイ', 'deep red, crimson, rouge, lipstick'), +('紅色', 'コウショク', 'red (color, colour)'), +('深紅', 'シンク', 'deep crimson'), +('非自己', 'ヒジコ', 'nonself, not self'), +('一己', 'イッコ', 'personal, private, oneself'), +('己', 'キ', '6th in rank, sixth sign of the Chinese calendar'), +('己亥', 'ツチノトイ', 'Earth Boar (36th year of the sexagenary cycle, e.g. 1959, 2019, 2079)'), +('克己', 'コッキ', 'self denial, self control'), +('親戚知己', 'シンセキチキ', 'relatives and acquaintances'), +('皇居', 'コウキョ', 'Imperial Palace (of Japan), imperial residence'), +('皇太子', 'コウタイシ', 'crown prince'), +('倉皇', 'ソウコウ', 'hurriedly, in a hurry, in great haste'), +('教皇', 'キョウコウ', 'Pope'), +('皇帝', 'コウテイ', 'emperor'), +('皇子', 'オウジ', 'imperial prince'), +('法皇', 'ホウオウ', 'cloistered emperor, ex-emperor who has become a monk'), +('太上法皇', 'ダイジョウホウオウ', 'cloistered emperor, ex-emperor who has become a monk'), +('后宮', 'コウグウ', 'empress''s palace, queen''s palace, empress, queen'), +('皇妃', 'コウヒ', 'empress, queen'), +('皇太后', 'コウタイゴウ', 'Empress Dowager, Queen Mother'), +('太后', 'タイコウ', 'empress dowager, queen mother'), +('後', 'ゴ', 'after'), +('降伏', 'コウフク', 'capitulation, surrender, submission, yield'), +('降格', 'コウカク', 'demotion, relegation, downgrading'), +('以降', 'イコウ', 'on and after, from ... onward, since'), +('下降', 'カコウ', 'descent, fall, drop, decline, downturn, subsidence'), +('降三世明王', 'ゴウザンゼミョウオウ', 'Trailokyavijaya Vidya-raja, conqueror of the three worlds'), +('降誕会', 'ゴウタンエ', 'Buddha''s Birthday (8th day of the 4th lunar month), service (held on April 8) celebrating the birth of the Buddha'), +('誤', 'ゴ', 'mistake, error'), +('誤解', 'ゴカイ', 'misunderstanding'), +('試行錯誤', 'シコウサクゴ', 'trial and error'), +('錯誤', 'サクゴ', 'mistake, error, discrepancy, discrepancy between one''s actions and intentions'), +('刻', 'コク', 'period of time (usu. a period of approx. two hours corresponding to one of the signs of the Chinese zodiac), carving, engraving, cutting, mincing, victory, strictness, cruelty'), +('刻々', 'コッコク', 'moment by moment, hour by hour'), +('遅刻', 'チコク', 'lateness, tardiness, arriving late'), +('彫刻', 'チョウコク', 'carving, engraving, sculpture'), +('鋼', 'ハガネ', 'steel, sword steel, sword'), +('鋼材', 'コウザイ', 'steel material'), +('粗鋼', 'ソコウ', 'crude steel'), +('製鋼', 'セイコウ', 'steel manufacture'), +('穀物', 'コクモツ', 'grain, cereal, corn'), +('穀類', 'コクルイ', 'grains'), +('米穀', 'ベイコク', 'rice'), +('雑穀', 'ザッコク', 'assorted grains, cereals, millet'), +('済州', 'チェジュ', 'Jeju (special self-governing province and island in South Korea)'), +('済世', 'サイセイ', 'saving the world, promoting national welfare'), +('返済', 'ヘンサイ', 'repayment, reimbursement, refund, redemption'), +('完済', 'カンサイ', 'full payment, liquidation'), +('済世', 'サイセイ', 'saving the world, promoting national welfare'), +('済美', 'セイビ', 'achieving virtue'), +('座', 'ザ', 'seat, place, position, status, gathering, party, company, atmosphere (of a gathering), stand, pedestal, platform, (historical) trade guild, attaches to the names of constellations, attaches to the names of theatres, cinemas and theatrical troupes, counter for theatres, deities, Buddhist images, tall mountains, and satokagura songs'), +('座席', 'ザセキ', 'seat'), +('銀座', 'ギンザ', 'Ginza (Tokyo neighborhood), (Edo period) silver mint'), +('正座', 'セイザ', 'seiza, kneeling with the tops of the feet flat on the floor, and sitting on the soles'), +('誌', 'シ', 'magazine'), +('記す', 'シルス', 'to write down, to note, to jot down, to remember'), +('風物詩', 'フウブツシ', 'feature of the season, something characteristic of a particular season, poem about natural scenery or a particular season'), +('日誌', 'ニッシ', 'journal, log'), +('捨', 'シャ', 'equanimity, upeksa, upekkha'), +('捨象', 'シャショウ', 'abstraction'), +('取捨', 'シュシャ', 'adoption or rejection, selection, choice, option'), +('用捨', 'ヨウシャ', 'adoption or rejection, selection, choice, leniency, mercy, going easy (on someone)'), +('骨', 'コツ', 'knack, skill, trick, secret, know-how, the ropes, hang, bone, skeleton, cremated remains (esp. the bones), ashes'), +('洋杯', 'コップ', 'glass (drinking vessel), tumbler, cups (playing card suit)'), +('露骨', 'ロコツ', 'open, unconcealed, undisguised, blatant, plain, frank, broad, lewd, indecent, crude'), +('軟骨', 'ナンコツ', 'cartilage, nankotsu, (dish of) gristle (usu. of chicken, deep-fried)'), +('裁', 'サイ', 'judge'), +('裁判', 'サイバン', 'trial, judgement, judgment'), +('制裁', 'セイサイ', 'sanctions, punishment'), +('仲裁', 'チュウサイ', 'arbitration, intercession, mediation'), +('磁石', 'ジシャク', 'magnet, compass'), +('磁気', 'ジキ', 'magnetism'), +('電磁', 'デンジ', 'electromagnetic'), +('陶磁', 'トウジ', 'clay'), +('権', 'ケン', 'right (to do something), authority, power'), +('権利', 'ケンリ', 'right, privilege'), +('棄権', 'キケン', 'abstention (from voting), renunciation (of a right), withdrawal (from a contest)'), +('人権', 'ジンケン', 'human rights, civil liberties'), +('権化', 'ゴンゲ', 'incarnation (of Buddha or bodhisattva), avatar, embodiment (as in "embodiment of evil"), incarnation, personification'), +('権現', 'ゴンゲン', 'temporary manifestation of a Buddha (or bodhisattva, etc.) in the form of a Shinto kami'), +('私', 'シ', 'private affairs, personal matter'), +('私立', 'シリツ', 'private (establishment)'), +('無私', 'ムシ', 'unselfish, selfless, disinterested'), +('滅私', 'メッシ', 'selflessness, being unselfish'), +('砂糖', 'サトウ', 'sugar'), +('砂漠', 'サバク', 'desert'), +('土砂', 'ドシャ', 'sediment, earth and sand'), +('流砂', 'リュウシャ', 'quicksand'), +('砂金', 'サキン', 'gold dust'), +('砂岩', 'サガン', 'sandstone'), +('土砂', 'ドシャ', 'sediment, earth and sand'), +('流砂', 'リュウシャ', 'quicksand'), +('尺', 'シャク', 'shaku (unit of distance approximately equal to 30.3 cm), rule, measure, scale, length'), +('尺度', 'シャクド', 'gauge, standard, measure, criterion, index, length, size, (measuring) rule, scale'), +('縮尺', 'シュクシャク', 'reduced scale, scaling down'), +('大尺', 'ダイシャク', 'large shaku (approx. 35.6cm)'), +('尺寸', 'シャクスン', '(something) tiny, trifle'), +('尺地', 'セキチ', 'small plot of land'), +('咫尺', 'シセキ', 'very short distance'), +('射', 'シャ', 'archery, mapping, map, morphism, arrow'), +('射撃', 'シャゲキ', 'firing, shooting, fire, gunshot, marksmanship'), +('注射', 'チュウシャ', 'injection, jab, shot'), +('反射', 'ハンシャ', 'reflection, reverberation, reflex, reflexes'), +('視', 'シ', 'viewing as ..., seeing as ..., treating as ..., regarding as ...'), +('視覚', 'シカク', 'sense of sight, vision'), +('無視', 'ムシ', 'disregarding, ignoring'), +('重視', 'ジュウシ', 'regarding as important, attaching importance to, taking a serious view of, putting emphasis on'), +('困難', 'コンナン', 'difficulty, hardship, trouble, distress, infeasibility, inability (to carry out)'), +('困惑', 'コンワク', 'bewilderment, perplexity, embarrassment, discomfiture, bafflement'), +('絶対貧困', 'ゼッタイヒンコン', 'absolute poverty'), +('絶対的貧困', 'ゼッタイテキヒンコン', 'absolute poverty'), +('策', 'サク', 'plan, policy, means, measure, stratagem, scheme, fifth principle of the Eight Principles of Yong, right upward flick'), +('作戦', 'サクセン', 'tactics, strategy, military operation, naval operation'), +('画策', 'カクサク', 'planning, scheming, maneuvering, manoeuvring'), +('国策', 'コクサク', 'national policy'), +('詞', 'シ', 'words, writing, lyrics, ci (form of Chinese poetry), independent word'), +('詞華集', 'シカシュウ', 'anthology (of poems), florilegium'), +('動詞', 'ドウシ', 'verb'), +('代名詞', 'ダイメイシ', 'pronoun, synonym, classic example, pattern, byword, representative'), +('至', 'シ', 'to ...'), +('至急', 'シキュウ', 'urgent, pressing, immediate, prompt, express, urgently, promptly, at once, right away, without delay, as soon as possible'), +('必至', 'ヒッシ', 'inevitable, necessary, foregone, brinkmate (inevitable checkmate)'), +('夏至', 'ゲシ', 'summer solstice'), +('冊', 'サツ', 'counter for books, volume'), +('分冊', 'ブンサツ', 'separate volume, fascicle, fascicule'), +('別冊', 'ベッサツ', 'separate volume, extra issue, supplement, additional volume, supplementary volume'), +('冊', 'サク', 'imperial edict to confer nobility titles (in ancient China)'), +('冊封', 'サクホウ', 'bestowing peerage by imperial edict (in ancient China), document bestowing peerage'), +('姿勢', 'シセイ', 'posture, pose, position, stance, carriage (of the body), attitude, approach, stance'), +('姿勢を正す', 'シセイヲタダス', 'to straighten oneself'), +('雄姿', 'ユウシ', 'majestic figure, imposing figure, impressive appearance, magnificent appearance'), +('英姿', 'エイシ', 'gallant figure, impressive figure, noble appearance'), +('宗', 'シュウ', 'sect, denomination, tenets (of a religious sect)'), +('宗教', 'シュウキョウ', 'religion, religious affiliation, belief, faith, creed, religious activity'), +('改宗', 'カイシュウ', 'religious conversion'), +('浄土真宗', 'ジョウドシンシュウ', 'Jōdo Shinshū (offshoot of the Jōdo sect), True Pure Land School'), +('宗', 'ソウ', 'origin, source, virtuous ancestor'), +('宗家', 'ソウケ', 'head of family, originator'), +('大宗', 'タイソウ', 'leading figure, foundation'), +('皇宗', 'コウソウ', 'imperial ancestors'), +('収入', 'シュウニュウ', 'income, receipts, revenue'), +('収穫', 'シュウカク', 'harvest, crop, ingathering, fruits (of one''s labors), gain, result, returns'), +('吸収', 'キュウシュウ', 'absorption, suction, attraction'), +('回収', 'カイシュウ', 'collection, recovery, withdrawal, retrieval'), +('樹立', 'ジュリツ', 'establishment, founding, setting (a record)'), +('樹木', 'ジュモク', 'tree, trees and shrubs'), +('植樹', 'ショクジュ', 'tree-planting'), +('広葉樹', 'コウヨウジュ', 'broadleaf tree'), +('衆', 'シュウ', 'great numbers (of people), numerical superiority, masses, people, folk, clique, bunch'), +('衆議院', 'シュウギイン', 'House of Representatives (lower house of the National Diet of Japan)'), +('若い衆', 'ワカイシュ', 'young man, youth, lad, servant boy, young shopboy'), +('全会衆', 'ゼンカイシュウ', 'the whole assembly, the whole congregation'), +('衆', 'シュウ', 'great numbers (of people), numerical superiority, masses, people, folk, clique, bunch'), +('衆議院', 'シュウギイン', 'House of Representatives (lower house of the National Diet of Japan)'), +('若い衆', 'ワカイシュ', 'young man, youth, lad, servant boy, young shopboy'), +('僧衆', 'ソウシュウ', 'large number of priests'), +('若年', 'ジャクネン', 'youth'), +('若年層', 'ジャクネンソウ', 'the young'), +('老若', 'ロウニャク', 'young and old, all ages'), +('瞠若', 'ドウジャク', '(staring in) astonishment, amazement'), +('若僧', 'ニャクソウ', 'young monk, boy monk'), +('若道', 'ニャクドウ', 'homosexuality, pederasty'), +('老若', 'ロウニャク', 'young and old, all ages'), +('若僧', 'ニャクソウ', 'young monk, boy monk'), +('若道', 'ニャクドウ', 'homosexuality, pederasty'), +('般若', 'ハンニャ', 'prajna (wisdom required to attain enlightenment), noh mask of a grinning, horned demoness (represents a woman''s rage and jealousy), family crest designed after the Hannya noh mask, dreadful face (esp. of a woman driven mad by jealousy), terrifying facial expression'), +('麦般若', 'ムギハンニャ', 'beer'), +('就職', 'シュウショク', 'finding employment, getting a job'), +('就任', 'シュウニン', 'assumption (of office), taking up (a post), inauguration, installation'), +('去就', 'キョシュウ', 'leaving or staying, (one''s) course of action, (one''s) position, (one''s) attitude'), +('進退去就', 'シンタイキョシュウ', 'one''s course of action, deciding what to do with oneself, whether staying in the present position or leaving it'), +('成就', 'ジョウジュ', 'fulfillment, fulfilment, realization, realisation, completion'), +('本懐成就', 'ホンカイジョウジュ', 'realization of a great ambition, attainment of one''s most cherished desire, one''s earnest prayer being answered'), +('縮', 'シュク', 'wearing armour (armor), counter for suits of armour'), +('縮小', 'シュクショウ', 'reduction, curtailment, cut, cutback, scaling down'), +('圧縮', 'アッシュク', 'compression, condensing, shortening, summarizing, compression (of data)'), +('短縮', 'タンシュク', 'shortening, contraction, reduction, curtailment, abbreviation'), +('蚕糸', 'サンシ', 'silk thread, silk yarn'), +('蚕業', 'サンギョウ', 'sericulture'), +('養蚕', 'ヨウサン', 'sericulture, silkworm culture, silkworm raising'), +('秋蚕', 'シュウサン', 'autumn silkworms, fall silkworms'), +('熟語', 'ジュクゴ', 'kanji compound, idiom, idiomatic phrase'), +('熟練', 'ジュクレン', 'skill, dexterity, proficiency'), +('成熟', 'セイジュク', 'maturity, ripeness'), +('習熟', 'シュウジュク', 'proficiency, mastery, becoming proficient (in)'), +('縦横', 'ジュウオウ', 'length and width, length and breadth, lengthwise and crosswise, longitude and latitude, vertical and horizontal, four cardinal points, every direction, as one wishes, as one pleases, at will, warp and weft, warp and woof'), +('縦断', 'ジュウダン', 'running through (north-south), cutting across, travelling across, cutting vertically, sectioning longitudinally'), +('操縦', 'ソウジュウ', 'steering, piloting, flying, control, operation, handling, management (of people), handling, manipulation, maneuvering'), +('無線操縦', 'ムセンソウジュウ', 'radio-controlled (plane)'), +('処理', 'ショリ', 'processing, dealing with, treatment, disposition, disposal'), +('所々', 'トコロドコロ', 'here and there, in places'), +('住所', 'ジュウショ', 'address, residence, domicile'), +('所々', 'トコロドコロ', 'here and there, in places'), +('従', 'ジュウ', 'subordinate, secondary, junior, incidental'), +('従兄弟', 'イトコ', 'cousin (male)'), +('服従', 'フクジュウ', 'obedience, submission, resignation'), +('追従', 'ツイジュウ', 'following (e.g. someone''s opinion), being servile to, adherence, compliance, emulation, mimicking, servility'), +('従容', 'ショウヨウ', 'calm, composed, tranquil'), +('従容自若', 'ショウヨウジジャク', 'having presence of mind, imperturbable, calm and self-possessed, with serenity'), +('追従', 'ツイショウ', 'flattery, sycophancy, adulation'), +('阿諛追従', 'アユツイショウ', 'excessive flattery, adulation'), +('従', 'ジュ', 'lesser (of equal court ranks), lower, junior'), +('従', 'ジュウ', 'subordinate, secondary, junior, incidental'), +('純', 'ジュン', 'innocent, chaste, naive, pure, unmixed, genuine, unalloyed'), +('純粋', 'ジュンスイ', 'pure, true, genuine, unmixed'), +('清純', 'セイジュン', 'purity, innocence'), +('芳醇', 'ホウジュン', 'mellow (flavor or fragrance, esp. alcohol), rich, full-bodied, superior'), +('署', 'ショ', 'station (esp. a police station), office (e.g. tax office)'), +('署名', 'ショメイ', 'signature'), +('支署', 'シショ', 'substation'), +('副署', 'フクショ', 'countersignature'), +('除', 'ジョ', 'division'), +('除外', 'ジョガイ', 'exception, exclusion'), +('削除', 'サクジョ', 'deletion, elimination, erasure, striking out'), +('排除', 'ハイジョ', 'exclusion, removal, elimination, clearing away, getting rid of'), +('除', 'ジョ', 'division'), +('除外', 'ジョガイ', 'exception, exclusion'), +('掃除', 'ソウジ', 'cleaning, sweeping, dusting, scrubbing'), +('大掃除', 'オオソウジ', 'major cleanup, spring cleaning'), +('将', 'ショウ', 'commander, general, leader'), +('将来', 'ショウライ', 'future (usually near), prospects'), +('大将', 'タイショウ', 'general, admiral, head, chief, leader, boss, kingpin, old chap, mate, boss, chief, man, athlete who competes in the last match of a team competition (kendo, judo, etc.)'), +('陸軍大将', 'リクグンタイショウ', 'army general'), +('承', 'ショウ', 'second line of a four-line Chinese poem'), +('承知', 'ショウチ', 'knowledge, awareness, acceptance, consent, assent, agreement, compliance, acknowledgment, acknowledgement, forgiving, pardoning, excusing'), +('了承', 'リョウショウ', 'acknowledgement, acknowledgment, understanding, approval, consent'), +('伝承', 'デンショウ', 'handing down (information), legend, tradition, folklore, transmission'), +('承安', 'ショウアン', 'Shōan era (1171.4.21-1175.7.28), Jōan era'), +('承応', 'ショウオウ', 'Shōō era (1652.9.18-1655.4.13), Jōō era'), +('傷跡', 'キズアト', 'scar'), +('傷心', 'ショウシン', 'heartbreak, grief, sorrow'), +('火傷', 'ヤケド', 'burn, scald'), +('中傷', 'チュウショウ', 'slander, libel, defamation, calumny, smear'), +('諸', 'ショ', 'various, many, several'), +('諸君', 'ショクン', 'you (people), gentlemen, ladies and gentlemen, my friends, everyone'), +('針路', 'シンロ', 'course, direction'), +('針小棒大', 'シンショウボウダイ', 'exaggeration, making a mountain out of a molehill'), +('指針', 'シシン', 'needle (compass, gauge, etc.), hand (clock), indicator, pointer, index, guiding principle, guideline, guide'), +('検針', 'ケンシン', 'inspection of a meter, reading a meter, needle detection (in garments, etc.), needle inspection'), +('垂直', 'スイチョク', 'vertical, perpendicular'), +('垂直線', 'スイチョクセン', 'perpendicular line, vertical line'), +('懸垂', 'ケンスイ', 'pull-up (exercise), chin-up, chinning, suspension, dangling, hanging'), +('口蓋垂', 'コウガイスイ', 'uvula'), +('障害', 'ショウガイ', 'obstacle, impediment, hindrance, barrier, difficulty, disorder, defect, disability, handicap, impairment, dysfunction, steeplechase, obstacle race, steeplechase (athletics)'), +('障子', 'ショウジ', 'shoji (paper sliding door)'), +('保証', 'ホショウ', 'guarantee, security, assurance, pledge, warranty'), +('緑内障', 'リョクナイショウ', 'glaucoma'), +('仁', 'ジン', 'benevolence (esp. as a virtue of Confucianism), consideration, compassion, humanity, charity, human, kernel, nucleolus'), +('仁義', 'ジンギ', 'humanity and justice (esp. in Confucianism), virtue, duty, formal greeting (between yakuza, street vendors, gamblers, etc.), (gang''s) moral code'), +('同仁', 'ドウジン', 'universal benevolence'), +('一視同人', 'イッシドウジン', 'loving every human being with impartiality, universal brotherhood, universal benevolence'), +('仁', 'ジン', 'benevolence (esp. as a virtue of Confucianism), consideration, compassion, humanity, charity, human, kernel, nucleolus'), +('仁王', 'ニオウ', 'two Deva kings, guardian gods of Buddhism who stand at the entrance of a Buddhist temple'), +('亜麻仁', 'アマニ', 'flaxseed, linseed'), +('仁', 'ジン', 'benevolence (esp. as a virtue of Confucianism), consideration, compassion, humanity, charity, human, kernel, nucleolus'), +('任侠', 'ニンキョウ', 'chivalry, generosity, heroism, chivalrous spirit, helping the weak and fighting the strong'), +('永仁', 'エイニン', 'Einin era (1293.8.5-1299.4.25)'), +('応仁', 'オウニン', 'Ōnin era (1467.3.5-1469.4.28)'), +('推薦', 'スイセン', 'recommendation, referral, endorsement'), +('推定', 'スイテイ', 'presumption, assumption, estimation'), +('類推', 'ルイスイ', 'analogy, analogical reasoning, analogical inference, analogy'), +('邪推', 'ジャスイ', 'distrust, unjust suspicion'), +('蒸気', 'ジョウキ', 'steam, vapour, vapor, steamboat, steam locomotive'), +('蒸発', 'ジョウハツ', 'evaporation, disappearance (of a person), vanishing without a trace'), +('燻蒸', 'クンジョウ', 'fumigation, smoking (out)'), +('蒸籠', 'セイロ', 'bamboo steamer, steaming basket, wooden frame holder with reed base used to steam food over a pot, soba served on a small wickerwork tray, wickerwork tray (for serving soba)'), +('せいろ蒸し', 'セイロムシ', 'steaming (of food) using a bamboo steamer'), +('装', 'ソウ', 'clothing, dressing, binding (of a book)'), +('装置', 'ソウチ', 'equipment, device, installation, apparatus, stage setting'), +('包装', 'ホウソウ', 'packing, wrapping'), +('武装', 'ブソウ', 'arms, armament'), +('装束', 'ショウゾク', 'costume, dress, attire, interior decoration, landscaping, furnishing, ornament'), +('装束能', 'ショウゾクノウ', 'formal noh performed in full costume'), +('舞台衣装', 'ブタイイショウ', '(theatrical) costumes'), +('婚礼衣装', 'コンレイイショウ', 'wedding clothes'), +('層', 'ソウ', 'layer, stratum, seam, bed, class, stratum, bracket, group, sheaf, counter for stories (of a building)'), +('層群', 'ソウグン', '(geol) group'), +('高層', 'コウソウ', 'high-rise (building), multistory, multistoried, tall, high (altitude), upper (atmosphere, air current, etc.)'), +('重層', 'ジュウソウ', 'multistoried, multilayered'), +('洗', 'セン', 'washing machine (laundry)'), +('洗濯', 'センタク', 'washing, laundry, relaxing, taking a break'), +('水洗', 'スイセン', 'washing with water, rinsing, flushing'), +('杯洗', 'ハイセン', 'small vessel or bowl in which sake cups are rinsed'), +('舌圧子', 'ゼツアツシ', 'tongue depressor'), +('舌咽神経', 'ゼツインシンケイ', 'glossopharyngeal nerve'), +('毒舌', 'ドクゼツ', 'wicked tongue, sharp tongue, abusive language'), +('饒舌', 'ジョウゼツ', 'talkativeness, garrulity, loquacity'), +('聖', 'セイ', 'Saint, St., S., sacred, holy, pure'), +('聖書', 'セイショ', 'Bible, the Scriptures, Holy Writ'), +('棋聖', 'キセイ', 'great master of go, great master of shogi'), +('亜聖', 'アセイ', 'sage of the second order'), +('精霊', 'ショウリョウ', 'spirit of the deceased'), +('聖者', 'セイジャ', 'saint'), +('大聖', 'ダイショウ', 'Buddha, high-ranked bodhisattva'), +('仏餉', 'ブッショウ', 'rice offered to Buddha'), +('寸', 'スン', 'sun (approx. 3.03 cm), length, measurement, shortness, tininess'), +('寸法', 'スンポウ', 'measurement, size, extent, dimension, plan, intention, arrangement, schedule'), +('原寸', 'ゲンスン', 'actual size, full size'), +('外寸', 'ガイスン', 'external dimensions, outer size'), +('窓外', 'ソウガイ', 'outside a window'), +('窓間壁', 'ソウカンヘキ', 'pier'), +('同窓', 'ドウソウ', 'being a graduate of the same school, person who went to the same school, fellow alumnus'), +('車窓', 'シャソウ', 'train window, car window'), +('染色', 'センショク', 'dyeing, staining, dyed colour (color)'), +('染料', 'センリョウ', 'dyes'), +('汚染', 'オセン', 'pollution, contamination'), +('伝染', 'デンセン', 'contagion, infection'), +('専', 'セン', 'having a fetish for ..., specializing in ..., majoring in ..., first, foremost, number one priority, doing as one pleases, acting selfishly, fired brick'), +('専攻', 'センコウ', 'major subject, special study'), +('住専', 'ジュウセン', 'housing-loan corporation'), +('高専', 'コウセン', 'technical college, higher schools and colleges'), +('泉水', 'センスイ', 'garden pond, miniature lake, fountain'), +('泉下', 'センカ', 'Hades, the hereafter'), +('源泉', 'ゲンセン', 'source (of a spring, etc.), source (of payment, energy, knowledge, etc.), origin, wellspring'), +('天然温泉', 'テンネンオンセン', 'natural hot spring'), +('宣', 'セン', 'imperial order, imperial decree'), +('宣伝', 'センデン', 'publicity, advertisement, advertising, propaganda'), +('託宣', 'タクセン', 'oracle'), +('街宣', 'ガイセン', 'carrying out (political) propaganda activity on the streets'), +('銭', 'セン', 'sen (hundredth of a yen), coin made of non-precious materials, one-thousandth of a kan (as a unit of currency), one-thousandth of a kan (as a unit of mass)'), +('銭湯', 'セントウ', 'public bath, bathhouse'), +('間銭', 'アイセン', 'handling fee, commission'), +('追い銭', 'オイセン', 'money paid in addition'), +('奏', 'ソウ', 'report to the emperor'), +('奏者', 'ソウシャ', 'instrumentalist, player'), +('演奏', 'エンソウ', 'musical performance'), +('伴奏', 'バンソウ', '(musical) accompaniment'), +('善', 'ゼン', 'good, goodness, right, virtue'), +('善良', 'ゼンリョウ', 'goodness, excellence, virtue'), +('親善', 'シンゼン', 'friendship, goodwill, friendly relations, amity'), +('独善', 'ドクゼン', 'self-righteousness, self-justified'), +('盛大', 'セイダイ', 'grand, magnificent, lavish, large scale, prosperous, thriving, lively, forceful, powerful, vigorous'), +('盛装', 'セイソウ', 'dressing up in fine clothes, splendid clothes, one''s best clothes'), +('繁盛', 'ハンジョウ', 'prosperity, flourishing, thriving'), +('隆盛', 'リュウセイ', 'prosperity, flourishing, thriving'), +('盛者', 'ショウジャ', 'prosperous person, powerful person'), +('盛者必衰', 'ジョウシャヒッスイ', 'even the prosperous inevitably decay, sic transit gloria mundi, all that''s fair must fade'), +('繁盛', 'ハンジョウ', 'prosperity, flourishing, thriving'), +('強盛', 'キョウセイ', 'might, mighty'), +('操', 'ミサオ', 'fidelity, honour, honor, constancy, chastity (of a woman), faithfulness (e.g. to one''s husband)'), +('操作', 'ソウサ', 'operation, management, handling, manipulating (to one''s benefit), manipulation, influencing'), +('体操', 'タイソウ', 'gymnastics, physical exercises, artistic gymnastics, gymnastics competition, physical education (class), PE'), +('器械体操', 'キカイタイソウ', 'apparatus gymnastics, artistic gymnastics'), +('蔵', 'ゾウ', 'possession, ownership, Tibet, Tibetan people'), +('蔵書', 'ゾウショ', 'collection of books, (personal) library'), +('所蔵', 'ショゾウ', '(in one''s) possession'), +('貯蔵', 'チョゾウ', 'storage, preservation'), +('秘蔵', 'ヒゾウ', 'treasuring, cherishing, prizing, holding dear'), +('誠実', 'セイジツ', 'sincere, honest, faithful'), +('誠意', 'セイイ', 'sincerity, good faith'), +('丹精', 'タンセイ', 'working earnestly, sincerity, diligence, effort, pains'), +('至誠', 'シセイ', 'sincerity, devotion'), +('創作', 'ソウサク', 'creation, production, creative work (novel, film, etc.), original work, (creative) writing, fabrication, fiction, invention'), +('創刊', 'ソウカン', 'foundation (of a newspaper, magazine, etc.), starting, launching, first publication'), +('独創', 'ドクソウ', 'originality'), +('草創', 'ソウソウ', 'beginning, inauguration'), +('誕生日', 'タンジョウビ', 'birthday'), +('誕生', 'タンジョウ', 'birth, creation, formation'), +('生誕', 'セイタン', 'birth, nativity'), +('再誕', 'サイタン', 'resurrection (of a company or school, etc.)'), +('宅', 'タク', 'house, home, one''s house, one''s home, one''s husband'), +('宅配便', 'タクハイビン', 'express home delivery service, express home delivery parcel (box, etc.)'), +('帰宅', 'キタク', 'returning home'), +('在宅', 'ザイタク', 'being at home, being in'), +('宙', 'チュウ', 'space, air, midair, (from) memory, (by) heart'), +('宙返り', 'チュウガエリ', 'somersault, looping-the-loop'), +('小宇宙', 'ショウウチュウ', 'microcosmos, microcosm'), +('大宇宙', 'ダイウチュウ', 'macrocosmos, macrocosm, the universe, the cosmos'), +('潮流', 'チョウリュウ', 'tide, tidal current, tendency, drift, trend'), +('潮位', 'チョウイ', 'tide level'), +('紅潮', 'コウチョウ', 'flush, blush'), +('初潮', 'ショチョウ', 'menarche, first menstruation'), +('忠', 'チュウ', 'loyalty, devotion, fidelity, faithfulness, inspector of the Imperial Prosecuting and Investigating Office (ritsuryō system)'), +('忠実', 'チュウジツ', 'faithful, devoted, loyal, honest, true'), +('誠忠', 'セイチュウ', 'loyalty'), +('不忠', 'フチュウ', 'disloyalty, infidelity'), +('臓', 'ゾウ', 'viscera, bowels'), +('臓器', 'ゾウキ', 'internal organs, viscera, intestines'), +('内臓', 'ナイゾウ', 'internal organs, viscera'), +('膵臓', 'スイゾウ', 'pancreas'), +('担当', 'タントウ', 'being in charge (of an area of responsibility), being responsible (for a work role, etc.)'), +('担当者', 'タントウシャ', 'person in charge (of an area of work, etc.), person responsible, contact (person)'), +('分担', 'ブンタン', 'taking on one''s share (e.g. of work), dividing (work, expenses, etc.) between, apportionment, allotment, allocation, assignment'), +('加担', 'カタン', 'support, participation, assistance, complicity, conspiracy'), +('著', 'チョ', 'work, book, (a book) by, obvious, striking'), +('著者', 'チョシャ', 'author (usu. of a particular book), writer'), +('近著', 'キンチョ', 'recent work'), +('共著', 'キョウチョ', 'joint authorship, co-authorship, collaboration, joint work'), +('着する', 'チャクスル', 'to arrive, to reach, to adhere, to insist on, to put on, to wear'), +('執着', 'シュウチャク', 'attachment, adhesion, tenacity, fixation, obsession'), +('退院', 'タイイン', 'leaving hospital, discharge from hospital'), +('退屈', 'タイクツ', 'tedium, boredom, dullness, to feel bored, to get bored with, to get tired of'), +('引退', 'インタイ', 'retirement'), +('辞退', 'ジタイ', 'declining, refusal, nonacceptance, turning down, withdrawal (e.g. of candidacy), pulling out (e.g. of a race), excusing oneself'), +('探検', 'タンケン', 'exploration, expedition'), +('探求', 'タンキュウ', 'search, quest, pursuit'), +('内探', 'ナイタン', 'private inquiry, private enquiry, secret investigation'), +('独探', 'ドクタン', 'German spy'), +('尊', 'ソン', 'zun (ancient Chinese wine vessel, usu. made of bronze), honorific prefix referring to the listener, counter for buddhas'), +('尊敬', 'ソンケイ', 'respect, esteem, reverence, honour, honor'), +('自尊', 'ジソン', 'self-respect, esteem, self-importance, pride'), +('至尊', 'シソン', 'extreme reverence, deeply revered person, the Emperor'), +('暖', 'ダン', 'warming, warmth'), +('暖房', 'ダンボウ', '(indoor) heating'), +('寒暖', 'カンダン', 'cold and heat, (degree of) temperature'), +('床暖', 'ユカダン', 'underfloor heating'), +('呑気', 'ノンキ', 'carefree, optimistic, careless, reckless, heedless, happy-go-lucky, easygoing, thoughtless'), +('暖簾', 'ノレン', '(short) curtain hung at shop entrance, split curtain used to divide spaces in a house, reputation (of a store), good name, credit, goodwill'), +('頂上', 'チョウジョウ', 'top, summit, peak'), +('頂戴', 'チョウダイ', 'receiving, reception, getting, being given, eating, drinking, having, please, please do for me'), +('登頂', 'トウチョウ', 'climbing to the summit, summiting'), +('頭頂', 'トウチョウ', 'top of the head, vertex, parietal'), +('段', 'ダン', 'step, stair, (flight of) steps, (row of) stitches, columns (of print), grade, rank, level, counter for breaks in written language (or speech, etc.), dan, senior rank in martial arts, go, shogi, etc.'), +('段々', 'ダンダン', 'gradually, by degrees, little by little, more and more, increasingly, steps, stairs, staircase, terrace'), +('一段', 'イチダン', 'even more, still more, much more, further, one step, one rung, one level, one grade, one rank, one paragraph, one passage, ichidan (verb, verb conjugation)'), +('非常階段', 'ヒジョウカイダン', 'emergency staircase, fire escape'), +('反', 'タン', 'variable measure of fabric (28.8 cm in width), for kimonos: at least 10 m in length, for haori: at least 7.27 m in length, for other clothes: at least 6.06 m in length, 300 tsubo (991.74 meters square, 0.24506 acres), six ken (10.91 m)'), +('反物', 'タンモノ', 'fabric, cloth, textiles, drapery, dry-goods, piece goods, measure of kimono material'), +('減反', 'ゲンタン', 'reduction (of crop size), reduction of acreage (under cultivation)'), +('一反', 'イッタン', 'one-tenth hectare'), +('値', 'チ', 'level, value'), +('値域', 'チイキ', 'range (of a function or relation)'), +('経験値', 'ケイケンチ', 'amount of experience, experience level, experience point, exp, XP'), +('閾値', 'イキチ', 'threshold (amount, dose, etc.)'), +('存在', 'ソンザイ', 'existence, being'), +('存続', 'ソンゾク', 'duration, continuance, survival, persistence, retention'), +('依存', 'イゾン', 'dependence, reliance'), +('既存', 'キソン', 'existing'), +('存じる', 'ゾンジル', 'to think, feel, consider, know, etc.'), +('存分', 'ゾンブン', 'to one''s heart''s content, as much as one wants'), +('保存', 'ホゾン', 'preservation, conservation, storage, maintenance, saving (e.g. to disk)'), +('依存', 'イゾン', 'dependence, reliance'), +('痛', 'ツウ', 'pain, ache, -algia'), +('痛感', 'ツウカン', 'feeling keenly, fully realizing'), +('心痛', 'シンツウ', 'worry, mental agony, heartache'), +('悲痛', 'ヒツウ', 'grief, sorrow, extreme sadness, heartbreak'), +('腸', 'チョウ', 'guts, bowels, intestines'), +('腸炎', 'チョウエン', 'enteritis'), +('浣腸', 'カンチョウ', '(giving an) enema'), +('大腸', 'ダイチョウ', 'large intestine, large bowel, colon'), +('賃', 'チン', 'hire (charge), rent, charge, fare, fee, freight, wages, payment'), +('賃金', 'チンギン', 'wages, pay, rental payment'), +('労賃', 'ロウチン', 'wages'), +('工賃', 'コウチン', 'wages, pay'), +('展', 'テン', 'exhibition, exhibit'), +('展覧会', 'テンランカイ', 'exhibition'), +('進展', 'シンテン', 'progress, development'), +('出展', 'シュッテン', 'exhibit, display'), +('庁', 'チョウ', 'government office, agency, board'), +('庁舎', 'チョウシャ', 'government office building'), +('県庁', 'ケンチョウ', 'prefectural office'), +('国税庁', 'コクゼイチョウ', 'National Tax Agency (Japan), national taxation agency (e.g. IRS)'), +('討論者', 'トウロンシャ', 'debater'), +('討論', 'トウロン', 'debate, discussion'), +('検討', 'ケントウ', 'consideration, examination, investigation, study, scrutiny, discussion, analysis, review'), +('掃討', 'ソウトウ', 'cleaning up, sweeping up, mopping up'), +('糖', 'トウ', 'sugar'), +('糖尿病', 'トウニョウビョウ', 'diabetes, diabetes mellitus'), +('黒砂糖', 'クロザトウ', '(unrefined) brown sugar, muscovado'), +('製糖', 'セイトウ', 'sugar manufacture'), +('敵', 'テキ', 'opponent, rival, adversary, menace, danger, threat, enemy'), +('敵意', 'テキイ', 'hostility, animosity, enmity'), +('匹敵', 'ヒッテキ', 'to be a match for, to rival, to equal, to compare with, to be equivalent to'), +('強敵', 'キョウテキ', 'formidable enemy, strong enemy, tough enemy'), +('党', 'トウ', 'party (political), person who is fond of, fan of'), +('党員', 'トウイン', 'party member'), +('入党', 'ニュウトウ', 'joining a political party'), +('労働党', 'ロウドウトウ', 'Labour Party, Labor Party'), +('乳房', 'チブサ', 'breast, udder'), +('乳製品', 'ニュウセイヒン', 'dairy products'), +('哺乳', 'ホニュウ', 'suckling, nursing, lactation'), +('豆乳', 'トウニュウ', 'soy milk'), +('晩', 'バン', 'evening, night, dinner, evening meal, counter for nights'), +('晩御飯', 'バンゴハン', 'dinner, evening meal'), +('朝晩', 'アサバン', 'morning and evening, all the time, always, every day, day and night'), +('歳晩', 'サイバン', 'year''s end'), +('脳', 'ノウ', 'brain, brains, mind'), +('脳死', 'ノウシ', 'brain death'), +('大脳', 'ダイノウ', 'cerebrum'), +('洗脳', 'センノウ', 'brainwashing'), +('納付', 'ノウフ', 'payment, supply'), +('納品', 'ノウヒン', 'delivery of goods'), +('滞納', 'タイノウ', 'falling behind (with a payment), being in arrears, non-payment, default, delinquency'), +('収納', 'シュウノウ', 'storage, putting away, receipt (of funds, payment, etc.), harvesting'), +('納得', 'ナットク', 'consent, agreement, acceptance, understanding, satisfaction (e.g. with an explanation), being convinced'), +('納豆', 'ナットウ', 'natto (fermented soybeans)'), +('納得', 'ナットク', 'consent, agreement, acceptance, understanding, satisfaction (e.g. with an explanation), being convinced'), +('納豆', 'ナットウ', 'natto (fermented soybeans)'), +('納戸', 'ナンド', 'storage room, storeroom, closet, grayish blue'), +('納戸色', 'ナンドイロ', 'grayish blue, greyish blue'), +('出納', 'スイトウ', 'receipts and expenditure (disbursements)'), +('批評', 'ヒヒョウ', 'criticism, critique, review, commentary'), +('批判', 'ヒハン', 'criticism, judgement, judgment, comment'), +('高批', 'コウヒ', 'your valued criticism'), +('俵', 'タワラ', 'straw bag, sack, bale, counter for sacks (of rice, potatoes, coal, etc.)'), +('俵数', 'ヒョウスウ', 'number of straw bags'), +('土俵', 'ドヒョウ', '(wrestling) ring, forum (e.g. for discussion), sandbag, gabion'), +('初土俵', 'ハツドヒョウ', 'first tournament for a wrestler'), +('拝', 'ハイ', 'bowing one''s head (in respect or worship), worship, respectfully yours'), +('拝見', 'ハイケン', 'seeing, looking at'), +('崇拝', 'スウハイ', 'worship, adoration, admiration, cult'), +('礼拝', 'レイハイ', 'worship (esp. Christian), adoration, divine service, worship (esp. Buddhist and Shinto)'), +('陛下', 'ヘイカ', 'Your Majesty, His Majesty, Her Majesty'), +('陛衛', 'ヘイエイ', 'Imperial guard'), +('奮闘', 'フントウ', 'hard struggle, strenuous effort'), +('奮発', 'フンパツ', 'strenuous exertion, spurt, splurge'), +('興奮', 'コウフン', 'excitement, stimulation, agitation, arousal'), +('性的興奮', 'セイテキコウフン', 'sexual arousal, sexual excitation'), +('難', 'ナン', 'difficulty, trouble, hardship, accident, disaster, danger, fault, defect, criticism'), +('難解', 'ナンカイ', 'difficult to understand, unintelligible, abstruse'), +('非難', 'ヒナン', 'criticism, blame, censure, attack, reproach'), +('遭難', 'ソウナン', 'disaster, accident, shipwreck, distress'), +('俳優', 'ハイユウ', 'actor, actress, player, performer'), +('俳句', 'ハイク', 'haiku, 17-mora poem, usu. in 3 lines of 5, 7 and 5 morae'), +('背後', 'ハイゴ', 'back, rear, background, behind the scenes'), +('背景', 'ハイケイ', 'background, scenery, backdrop, setting, background (of an incident, situation, etc.), circumstances, context, backing, support (from behind the scenes)'), +('違背', 'イハイ', 'violation, transgression'), +('向背', 'コウハイ', 'one''s attitude, state of affairs'), +('腹痛', 'フクツウ', 'stomach ache, abdominal pain'), +('腹心', 'フクシン', 'one''s confidant, trusted friend, trusted retainer'), +('私腹', 'シフク', 'one''s own profits, one''s own pockets'), +('開腹', 'カイフク', 'making a surgical incision in the abdomen'), +('併用', 'ヘイヨウ', 'using together (jointly), used at the same time'), +('並行', 'ヘイコウ', 'going side-by-side, going abreast, running concurrently, occurring at the same time, keeping pace with'), +('認識', 'ニンシキ', 'recognition, awareness, perception, understanding, knowledge, cognition, cognizance, cognisance'), +('認可', 'ニンカ', 'approval, license, licence, permission'), +('確認', 'カクニン', 'confirmation, verification, validation, review, check, affirmation, identification'), +('承認', 'ショウニン', 'recognition, acknowledgement, acknowledgment, approval, consent, agreement'), +('肺', 'ハイ', 'lung'), +('肺炎', 'ハイエン', 'pneumonia'), +('珪肺', 'ケイハイ', 'silicosis'), +('人工肺', 'ジンコウハイ', 'artificial lung'), +('否', 'ヒ', 'no, the noes'), +('否定', 'ヒテイ', 'denial, negation, repudiation, disavowal, negation, NOT operation'), +('拒否', 'キョヒ', 'refusal, rejection, denial, veto'), +('当否', 'トウヒ', 'propriety, right or wrong, justice'), +('班', 'ハン', 'group, party, team, squad, section'), +('班長', 'ハンチョウ', 'squad leader, group leader, team leader'), +('首班', 'シュハン', 'head, leader, prime minister'), +('取材班', 'シュザイハン', 'team of reporters, news crew'), +('閉会', 'ヘイカイ', 'closure (of a ceremony, event, meeting, etc.)'), +('閉鎖', 'ヘイサ', 'closing, closure, shutdown, lockout'), +('開閉', 'カイヘイ', 'opening and shutting, opening and closing'), +('幽閉', 'ユウヘイ', 'confinement, imprisonment, incarceration'), +('暮雨', 'ボウ', 'evening rain'), +('暮雲', 'ボウン', 'twilight clouds'), +('歳暮', 'セイボ', 'year-end gift, end of the year, year end'), +('朝々暮々', 'チョウチョウボボ', 'every morning and evening'), +('派', 'ハ', 'clique, group, coterie, (political) faction, wing, party, camp, school, sect, denomination'), +('派手', 'ハデ', 'showy, loud, gay, flashy, gaudy'), +('印象派', 'インショウハ', 'Impressionists'), +('特派', 'トクハ', 'send specially, special envoy'), +('補', 'ホ', 'assistant ..., probationary ...'), +('補給', 'ホキュウ', 'supply, supplying, replenishment'), +('立候補', 'リッコウホ', 'candidacy, standing as a candidate, bidding (to host an event, e.g. the Olympics)'), +('増補', 'ゾウホ', 'extending (e.g. a book), augmenting, enlarging, supplementing'), +('片', 'ヘン', 'counter for scraps, fragments, petals, etc.'), +('片時', 'カタトキ', 'moment, instant'), +('紙片', 'シヘン', 'piece (scrap, bit, strip) of paper'), +('砕片', 'サイヘン', 'debris'), +('秘', 'ヒ', 'secret, mystery'), +('秘密', 'ヒミツ', 'secret, secrecy, confidentiality, privacy, mystery, secret (e.g. to success), esoteric teachings'), +('黙秘', 'モクヒ', 'remaining silent, keeping secret'), +('部外秘', 'ブガイヒ', 'restricted, confidential'), +('忘年会', 'ボウネンカイ', 'year-end party, "forget-the-year" party, bōnenkai'), +('忘我', 'ボウガ', 'trance, ecstasy, enthusiasm'), +('両忘', 'リョウボウ', 'detachment from dichotomies, detachment from objectivity and subjectivity'), +('備忘', 'ビボウ', 'reminder'), +('棒', 'ボウ', 'pole, rod, stick, baton, line, dash, spoken monotonously'), +('棒引き', 'ボウビキ', 'cancellation, writing off (a debt), indicating a long sound in kana, tug o'' war, tug of war'), +('辛抱', 'シンボウ', 'patience, endurance'), +('用心棒', 'ヨウジンボウ', 'bodyguard, bouncer, guard, bar (e.g. on a door), bolt, stick or pole used for self-defence'), +('枚', 'マイ', 'counter for flat objects (e.g. sheets of paper), counter for positions or roles, counter for food portions (now only gyōza and soba), counter for ranking level'), +('枚数', 'マイスウ', 'the number of flat things, win-loss difference which influences the ranking of wrestlers'), +('パンツ一枚', 'パンツイチマイ', '(wearing) nothing but a pair of underpants'), +('奇跡の一枚', 'キセキノイチマイ', 'photo in which its subject looks much more attractive than their usual self'), +('枚を銜む', 'バイヲフクム', '(of a horse) to be gagged'), +('宝石', 'ホウセキ', 'gem, jewel, precious stone'), +('宝庫', 'ホウコ', 'treasury, treasure house, storehouse, repository, treasure trove, rich source (of)'), +('人間国宝', 'ニンゲンコクホウ', 'living national treasure'), +('至宝', 'シホウ', 'greatest treasure, most valuable asset, pride (of)'), +('亡', 'ボウ', 'death, the late, the deceased'), +('亡命', 'ボウメイ', 'fleeing from one''s country, seeking asylum, defection, emigration (for political reasons), (going into) exile, becoming a (political) refugee'), +('死亡', 'シボウ', 'death, dying, mortality'), +('逃亡', 'トウボウ', 'escape, flight, running away, elopement, fleeing'), +('亡者', 'モウジャ', 'the dead, ghost, person who is obsessed (with money, power, etc.), person with a blind lust (for)'), +('亡者船', 'モウジャブネ', 'ship of the dead which appears if you go fishing the night of the Bon festival'), +('焼亡', 'ショウボウ', 'destruction by fire'), +('損亡', 'ソンモウ', 'loss'), +('密', 'ミツ', 'dense, thick, crowded, close (relationship), intimate, minute, fine, careful, secret, esoteric Buddhism, secret Buddhist teachings'), +('密売', 'ミツバイ', 'smuggling, bootlegging, illicit trade'), +('濃密', 'ノウミツ', 'thick, dense, rich (as in taste or content), deep (colour), strong (smell, scent), crowded'), +('細密', 'サイミツ', 'detailed knowledge, finely detailed'), +('訪問', 'ホウモン', 'call, visit'), +('訪日', 'ホウニチ', 'visit to Japan'), +('来訪', 'ライホウ', 'visit, call'), +('再訪', 'サイホウ', 'revisiting, visiting again'), +('盟', 'メイ', 'alliance, aimag, league, administrative subdivision in Mongolia and Inner Mongolia'), +('盟約', 'メイヤク', 'oath, pledge, pact, covenant, alliance'), +('同盟', 'ドウメイ', 'alliance, union, league'), +('加盟', 'カメイ', 'joining (an association, agreement, etc.), participation, affiliation, accession'), +('幕', 'マク', 'curtain, bunting, act (in play)'), +('幕切れ', 'マクギレ', 'fall of the curtain, last scene, end of act'), +('開幕', 'カイマク', 'raising the curtain, opening (of an event), start, beginning'), +('閉幕', 'ヘイマク', 'falling of the curtain, (coming to an) end, close'), +('幕府', 'バクフ', 'shogunate, bakufu, shogun''s headquarters, Imperial Guards office, residence of the Imperial Guards commander'), +('幕末', 'バクマツ', 'Bakumatsu period, closing days of the Tokugawa shogunate, end of the Edo period'), +('帷幕', 'イバク', 'curtain, field staff headquarters, secret meeting place'), +('討幕', 'トウバク', 'attacking the shogunate'), +('訳', 'ヤク', 'translation, version (e.g. "English version")'), +('訳す', 'ヤクス', 'to translate, to interpret'), +('翻訳', 'ホンヤク', 'translation, deciphering, decoding, translation'), +('英訳', 'エイヤク', 'English translation'), +('模様', 'モヨウ', 'pattern, figure, design, state, condition, conjecture of the current situation, the way it seems, model, pattern, example, indicates that something seems likely (e.g. rain or storm), framework (in go), territorial framework, moyo'), +('模範', 'モハン', 'exemplar, model, example, pattern'), +('小規模', 'ショウキボ', 'small scale'), +('中規模', 'チュウキボ', 'mid-range, mid-scale, mid-size'), +('郵便局', 'ユウビンキョク', 'post office'), +('郵便', 'ユウビン', 'mail service, postal service, mail, post, mail, postal matter, postal items'), +('電郵', 'デンユウ', '(an item of) electronic mail (e-mail), e-mail message, electronic mail (e-mail) service, electronic mail (e-mail) system'), +('携帯電郵', 'ケイタイデンユウ', 'email from a cell phone or mobile phone'), +('予防', 'ヨボウ', 'prevention, protection (against), precaution'), +('予備', 'ヨビ', 'reserve, spare, preparation, preliminaries'), +('優', 'ユウ', 'Excellent (grade), A, superiority, excellence, gentle, graceful, elegant, skillful'), +('優秀', 'ユウシュウ', 'superior, excellent, brilliant, outstanding'), +('女優', 'ジョユウ', 'actress, female actor'), +('男優', 'ダンユウ', '(male) actor'), +('優曇華', 'ウドンゲ', 'udumbara (mythical Indian plant often identified with the cluster fig, Ficus glomerata), something very rare (from the legend that the udumbara flowers once in 3000 years), Japanese fiber banana flower, green lacewing eggs'), +('優婆夷', 'ウバイ', 'upasika (devout female lay follower of Buddhism)'), +('女優', 'ジョユウ', 'actress, female actor'), +('男優', 'ダンユウ', '(male) actor'), +('幼', 'ヨウ', 'infancy, childhood, infant, child'), +('幼児', 'ヨウジ', 'young child, toddler, child over 1 but not yet of school age'), +('長幼', 'チョウヨウ', 'young and old'), +('老幼', 'ロウヨウ', 'old and young'), +('卵', 'ラン', 'ovum, ovule, egg cell'), +('卵形', 'ランケイ', 'oval shape, egg shape'), +('産卵', 'サンラン', 'egg-laying, spawning'), +('排卵', 'ハイラン', 'ovulation'), +('律', 'リツ', 'law (esp. ancient East Asian criminal code), regulation, vinaya (rules for the monastic community), Ritsu (school of Buddhism), lüshi (style of Chinese poem), (musical) pitch, six odd-numbered notes of the ancient chromatic scale, Japanese seven-tone gagaku scale, similar to Dorian mode (corresponding to: re, mi, fa, so, la, ti, do), (in traditional Eastern music) step (corresponding to a Western semitone)'), +('律令', 'リツリョウ', 'ritsuryō, criminal, administrative and civil codes of the Nara and Heian eras based on Chinese models'), +('一律', 'イチリツ', 'uniform, even, across-the-board, equal'), +('自律', 'ジリツ', 'autonomy (philosophy), self-control'), +('律儀', 'リチギ', 'upright, honest, faithful, conscientious, sincere'), +('律義者', 'リチギモノ', 'honest person, conscientious person'), +('呂律', 'ロレツ', 'articulation'), +('裏', 'リ', 'in (e.g. secret), with (e.g. success)'), +('裏面', 'ウラメン', 'back (side), reverse, other side, inside, background, dark side (e.g. of society), behind the scenes, beneath the surface'), +('内裏', 'ダイリ', 'imperial palace, festival dolls representing the emperor and the empress'), +('影裏', 'エイリ', 'shade'), +('翌', 'ヨク', 'the following, next'), +('翌朝', 'ヨクアサ', 'next morning'), +('翌々', 'ヨクヨク', 'the ... after next, two ... later, two ... after'), +('朗読', 'ロウドク', 'reading aloud, recitation'), +('朗報', 'ロウホウ', 'good news'), +('晃朗', 'コウロウ', 'bright and brilliant'), +('融朗', 'ユウロウ', 'brightness, clearness'), +('欲', 'ヨク', 'greed, craving, desire, appetite, hunger, avarice, wants'), +('欲張り', 'ヨクバリ', 'greed, avarice, covetousness, greedy person'), +('意欲', 'イヨク', 'will, desire, interest, ambition, urge (e.g. creative urge)'), +('禁欲', 'キンヨク', 'abstinence, self-control, celibacy, abnegation, asceticism'), +('臨時', 'リンジ', 'temporary, provisional, interim, special, extraordinary, extra'), +('臨機応変', 'リンキオウヘン', 'adapting oneself to the requirements of the moment, playing by ear, ad hoc approach'), +('君臨', 'クンリン', 'reigning (over a country), dominating, controlling, dictating'), +('意臨', 'イリン', 'copying calligraphy without sticking to the model (calligraphy), copying freely'), +('乱', 'ラン', 'revolt, rebellion, war'), +('乱暴', 'ランボウ', 'violence, assault, rowdiness, wildness, running riot, rough (handling, language, etc.), reckless, careless, coarse, rude, unreasonable (e.g. demand), wild (e.g. argument), rape, sexual assault'), +('混乱', 'コンラン', 'disorder, chaos, confusion, mayhem'), +('反乱', 'ハンラン', 'insurrection, mutiny, rebellion, revolt, uprising'), +('胡乱', 'ウロン', 'suspicious-looking, fishy'), +('論', 'ロン', 'argument, discussion, dispute, controversy, discourse, debate, theory (e.g. of evolution), doctrine, essay, treatise, comment'), +('論争', 'ロンソウ', 'dispute, controversy, debate, argument, taking issue'), +('結論', 'ケツロン', 'conclusion (of an argument, discussion, study, etc.), conclusion'), +('議論', 'ギロン', 'argument, discussion, dispute, controversy'), +('回覧', 'カイラン', 'circulation (esp. documents), sending round'), +('展覧', 'テンラン', 'exhibition, show'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(6903, '異'), +(6904, '異'), +(6905, '異'), +(6906, '異'), +(6907, '胃'), +(6908, '胃'), +(6909, '胃'), +(6910, '胃'), +(6911, '域'), +(6912, '域'), +(6913, '域'), +(6914, '域'), +(6915, '遺'), +(6916, '遺'), +(6917, '遺'), +(6918, '遺'), +(6919, '遺'), +(6920, '遺'), +(6921, '宇'), +(6922, '宇'), +(6923, '宇'), +(6924, '宇'), +(6925, '延'), +(6926, '延'), +(6927, '延'), +(6928, '延'), +(6929, '映'), +(6930, '映'), +(6931, '映'), +(6932, '映'), +(6933, '沿'), +(6934, '沿'), +(6935, '我'), +(6936, '我'), +(6937, '我'), +(6938, '我'), +(6939, '恩'), +(6940, '恩'), +(6941, '恩'), +(6942, '恩'), +(6943, '灰'), +(6944, '灰'), +(6945, '灰'), +(6946, '灰'), +(6947, '拡'), +(6948, '拡'), +(6949, '拡'), +(6950, '机'), +(6951, '机'), +(6952, '机'), +(6953, '郷'), +(6954, '郷'), +(6955, '郷'), +(6956, '郷'), +(6957, '郷'), +(6958, '郷'), +(6959, '郷'), +(6960, '郷'), +(6961, '革'), +(6962, '革'), +(6963, '革'), +(6964, '革'), +(6965, '供'), +(6966, '供'), +(6967, '供'), +(6968, '供'), +(6969, '供'), +(6970, '供'), +(6971, '供'), +(6972, '供'), +(6973, '供'), +(6974, '供'), +(6975, '供'), +(6976, '供'), +(6977, '供'), +(6978, '供'), +(6979, '巻'), +(6980, '巻'), +(6981, '巻'), +(6982, '巻'), +(6983, '巻'), +(6984, '巻'), +(6985, '巻'), +(6986, '割'), +(6987, '割'), +(6988, '割'), +(6989, '割'), +(6990, '勤'), +(6991, '勤'), +(6992, '勤'), +(6993, '勤'), +(6994, '勤'), +(6995, '勤'), +(6996, '閣'), +(6997, '閣'), +(6998, '閣'), +(6999, '閣'), +(7000, '吸'), +(7001, '吸'), +(7002, '吸'), +(7003, '吸'), +(7004, '干'), +(7005, '干'), +(7006, '干'), +(7007, '干'), +(7008, '胸'), +(7009, '胸'), +(7010, '胸'), +(7011, '胸'), +(7012, '貴'), +(7013, '貴'), +(7014, '貴'), +(7015, '貴'), +(7016, '危'), +(7017, '危'), +(7018, '危'), +(7019, '簡'), +(7020, '簡'), +(7021, '簡'), +(7022, '簡'), +(7023, '簡'), +(7024, '系'), +(7025, '系'), +(7026, '系'), +(7027, '系'), +(7028, '揮'), +(7029, '揮'), +(7030, '揮'), +(7031, '揮'), +(7032, '株'), +(7033, '株'), +(7034, '株'), +(7035, '看'), +(7036, '看'), +(7037, '看'), +(7038, '看'), +(7039, '疑'), +(7040, '疑'), +(7041, '疑'), +(7042, '疑'), +(7043, '筋'), +(7044, '筋'), +(7045, '筋'), +(7046, '筋'), +(7047, '劇'), +(7048, '劇'), +(7049, '劇'), +(7050, '劇'), +(7051, '呼'), +(7052, '呼'), +(7053, '呼'), +(7054, '呼'), +(7055, '孝'), +(7056, '孝'), +(7057, '孝'), +(7058, '孝'), +(7059, '孝'), +(7060, '孝'), +(7061, '激'), +(7062, '激'), +(7063, '激'), +(7064, '激'), +(7065, '源'), +(7066, '源'), +(7067, '源'), +(7068, '源'), +(7069, '憲'), +(7070, '憲'), +(7071, '憲'), +(7072, '憲'), +(7073, '敬'), +(7074, '敬'), +(7075, '敬'), +(7076, '敬'), +(7077, '敬'), +(7078, '敬'), +(7079, '警'), +(7080, '警'), +(7081, '警'), +(7082, '警'), +(7083, '券'), +(7084, '券'), +(7085, '券'), +(7086, '券'), +(7087, '絹'), +(7088, '絹'), +(7089, '絹'), +(7090, '絹'), +(7091, '穴'), +(7092, '穴'), +(7093, '穴'), +(7094, '穴'), +(7095, '厳'), +(7096, '厳'), +(7097, '厳'), +(7098, '厳'), +(7099, '厳'), +(7100, '厳'), +(7101, '紅'), +(7102, '紅'), +(7103, '紅'), +(7104, '紅'), +(7105, '紅'), +(7106, '紅'), +(7107, '紅'), +(7108, '己'), +(7109, '己'), +(7110, '己'), +(7111, '己'), +(7112, '己'), +(7113, '己'), +(7114, '皇'), +(7115, '皇'), +(7116, '皇'), +(7117, '皇'), +(7118, '皇'), +(7119, '皇'), +(7120, '皇'), +(7121, '皇'), +(7122, '后'), +(7123, '后'), +(7124, '后'), +(7125, '后'), +(7126, '后'), +(7127, '降'), +(7128, '降'), +(7129, '降'), +(7130, '降'), +(7131, '降'), +(7132, '降'), +(7133, '誤'), +(7134, '誤'), +(7135, '誤'), +(7136, '誤'), +(7137, '刻'), +(7138, '刻'), +(7139, '刻'), +(7140, '刻'), +(7141, '鋼'), +(7142, '鋼'), +(7143, '鋼'), +(7144, '鋼'), +(7145, '穀'), +(7146, '穀'), +(7147, '穀'), +(7148, '穀'), +(7149, '済'), +(7150, '済'), +(7151, '済'), +(7152, '済'), +(7153, '済'), +(7154, '済'), +(7155, '座'), +(7156, '座'), +(7157, '座'), +(7158, '座'), +(7159, '誌'), +(7160, '誌'), +(7161, '誌'), +(7162, '誌'), +(7163, '捨'), +(7164, '捨'), +(7165, '捨'), +(7166, '捨'), +(7167, '骨'), +(7168, '骨'), +(7169, '骨'), +(7170, '骨'), +(7171, '裁'), +(7172, '裁'), +(7173, '裁'), +(7174, '裁'), +(7175, '磁'), +(7176, '磁'), +(7177, '磁'), +(7178, '磁'), +(7179, '権'), +(7180, '権'), +(7181, '権'), +(7182, '権'), +(7183, '権'), +(7184, '権'), +(7185, '私'), +(7186, '私'), +(7187, '私'), +(7188, '私'), +(7189, '砂'), +(7190, '砂'), +(7191, '砂'), +(7192, '砂'), +(7193, '砂'), +(7194, '砂'), +(7195, '砂'), +(7196, '砂'), +(7197, '尺'), +(7198, '尺'), +(7199, '尺'), +(7200, '尺'), +(7201, '尺'), +(7202, '尺'), +(7203, '尺'), +(7204, '射'), +(7205, '射'), +(7206, '射'), +(7207, '射'), +(7208, '視'), +(7209, '視'), +(7210, '視'), +(7211, '視'), +(7212, '困'), +(7213, '困'), +(7214, '困'), +(7215, '困'), +(7216, '策'), +(7217, '策'), +(7218, '策'), +(7219, '策'), +(7220, '詞'), +(7221, '詞'), +(7222, '詞'), +(7223, '詞'), +(7224, '至'), +(7225, '至'), +(7226, '至'), +(7227, '至'), +(7228, '冊'), +(7229, '冊'), +(7230, '冊'), +(7231, '冊'), +(7232, '冊'), +(7233, '姿'), +(7234, '姿'), +(7235, '姿'), +(7236, '姿'), +(7237, '宗'), +(7238, '宗'), +(7239, '宗'), +(7240, '宗'), +(7241, '宗'), +(7242, '宗'), +(7243, '宗'), +(7244, '宗'), +(7245, '収'), +(7246, '収'), +(7247, '収'), +(7248, '収'), +(7249, '樹'), +(7250, '樹'), +(7251, '樹'), +(7252, '樹'), +(7253, '衆'), +(7254, '衆'), +(7255, '衆'), +(7256, '衆'), +(7257, '衆'), +(7258, '衆'), +(7259, '衆'), +(7260, '衆'), +(7261, '若'), +(7262, '若'), +(7263, '若'), +(7264, '若'), +(7265, '若'), +(7266, '若'), +(7267, '若'), +(7268, '若'), +(7269, '若'), +(7270, '若'), +(7271, '若'), +(7272, '就'), +(7273, '就'), +(7274, '就'), +(7275, '就'), +(7276, '就'), +(7277, '就'), +(7278, '縮'), +(7279, '縮'), +(7280, '縮'), +(7281, '縮'), +(7282, '蚕'), +(7283, '蚕'), +(7284, '蚕'), +(7285, '蚕'), +(7286, '熟'), +(7287, '熟'), +(7288, '熟'), +(7289, '熟'), +(7290, '縦'), +(7291, '縦'), +(7292, '縦'), +(7293, '縦'), +(7294, '処'), +(7295, '処'), +(7296, '処'), +(7297, '処'), +(7298, '従'), +(7299, '従'), +(7300, '従'), +(7301, '従'), +(7302, '従'), +(7303, '従'), +(7304, '従'), +(7305, '従'), +(7306, '従'), +(7307, '従'), +(7308, '純'), +(7309, '純'), +(7310, '純'), +(7311, '純'), +(7312, '署'), +(7313, '署'), +(7314, '署'), +(7315, '署'), +(7316, '除'), +(7317, '除'), +(7318, '除'), +(7319, '除'), +(7320, '除'), +(7321, '除'), +(7322, '除'), +(7323, '除'), +(7324, '将'), +(7325, '将'), +(7326, '将'), +(7327, '将'), +(7328, '承'), +(7329, '承'), +(7330, '承'), +(7331, '承'), +(7332, '承'), +(7333, '承'), +(7334, '傷'), +(7335, '傷'), +(7336, '傷'), +(7337, '傷'), +(7338, '諸'), +(7339, '諸'), +(7340, '針'), +(7341, '針'), +(7342, '針'), +(7343, '針'), +(7344, '垂'), +(7345, '垂'), +(7346, '垂'), +(7347, '垂'), +(7348, '障'), +(7349, '障'), +(7350, '障'), +(7351, '障'), +(7352, '仁'), +(7353, '仁'), +(7354, '仁'), +(7355, '仁'), +(7356, '仁'), +(7357, '仁'), +(7358, '仁'), +(7359, '仁'), +(7360, '仁'), +(7361, '仁'), +(7362, '仁'), +(7363, '推'), +(7364, '推'), +(7365, '推'), +(7366, '推'), +(7367, '蒸'), +(7368, '蒸'), +(7369, '蒸'), +(7370, '蒸'), +(7371, '蒸'), +(7372, '装'), +(7373, '装'), +(7374, '装'), +(7375, '装'), +(7376, '装'), +(7377, '装'), +(7378, '装'), +(7379, '装'), +(7380, '層'), +(7381, '層'), +(7382, '層'), +(7383, '層'), +(7384, '洗'), +(7385, '洗'), +(7386, '洗'), +(7387, '洗'), +(7388, '舌'), +(7389, '舌'), +(7390, '舌'), +(7391, '舌'), +(7392, '聖'), +(7393, '聖'), +(7394, '聖'), +(7395, '聖'), +(7396, '聖'), +(7397, '聖'), +(7398, '聖'), +(7399, '聖'), +(7400, '寸'), +(7401, '寸'), +(7402, '寸'), +(7403, '寸'), +(7404, '窓'), +(7405, '窓'), +(7406, '窓'), +(7407, '窓'), +(7408, '染'), +(7409, '染'), +(7410, '染'), +(7411, '染'), +(7412, '専'), +(7413, '専'), +(7414, '専'), +(7415, '専'), +(7416, '泉'), +(7417, '泉'), +(7418, '泉'), +(7419, '泉'), +(7420, '宣'), +(7421, '宣'), +(7422, '宣'), +(7423, '宣'), +(7424, '銭'), +(7425, '銭'), +(7426, '銭'), +(7427, '銭'), +(7428, '奏'), +(7429, '奏'), +(7430, '奏'), +(7431, '奏'), +(7432, '善'), +(7433, '善'), +(7434, '善'), +(7435, '善'), +(7436, '盛'), +(7437, '盛'), +(7438, '盛'), +(7439, '盛'), +(7440, '盛'), +(7441, '盛'), +(7442, '盛'), +(7443, '盛'), +(7444, '操'), +(7445, '操'), +(7446, '操'), +(7447, '操'), +(7448, '蔵'), +(7449, '蔵'), +(7450, '蔵'), +(7451, '蔵'), +(7452, '蔵'), +(7453, '誠'), +(7454, '誠'), +(7455, '誠'), +(7456, '誠'), +(7457, '創'), +(7458, '創'), +(7459, '創'), +(7460, '創'), +(7461, '誕'), +(7462, '誕'), +(7463, '誕'), +(7464, '誕'), +(7465, '宅'), +(7466, '宅'), +(7467, '宅'), +(7468, '宅'), +(7469, '宙'), +(7470, '宙'), +(7471, '宙'), +(7472, '宙'), +(7473, '潮'), +(7474, '潮'), +(7475, '潮'), +(7476, '潮'), +(7477, '忠'), +(7478, '忠'), +(7479, '忠'), +(7480, '忠'), +(7481, '臓'), +(7482, '臓'), +(7483, '臓'), +(7484, '臓'), +(7485, '担'), +(7486, '担'), +(7487, '担'), +(7488, '担'), +(7489, '著'), +(7490, '著'), +(7491, '著'), +(7492, '著'), +(7493, '著'), +(7494, '著'), +(7495, '退'), +(7496, '退'), +(7497, '退'), +(7498, '退'), +(7499, '探'), +(7500, '探'), +(7501, '探'), +(7502, '探'), +(7503, '尊'), +(7504, '尊'), +(7505, '尊'), +(7506, '尊'), +(7507, '暖'), +(7508, '暖'), +(7509, '暖'), +(7510, '暖'), +(7511, '暖'), +(7512, '暖'), +(7513, '頂'), +(7514, '頂'), +(7515, '頂'), +(7516, '頂'), +(7517, '段'), +(7518, '段'), +(7519, '段'), +(7520, '段'), +(7521, '段'), +(7522, '段'), +(7523, '段'), +(7524, '段'), +(7525, '値'), +(7526, '値'), +(7527, '値'), +(7528, '値'), +(7529, '存'), +(7530, '存'), +(7531, '存'), +(7532, '存'), +(7533, '存'), +(7534, '存'), +(7535, '存'), +(7536, '存'), +(7537, '痛'), +(7538, '痛'), +(7539, '痛'), +(7540, '痛'), +(7541, '腸'), +(7542, '腸'), +(7543, '腸'), +(7544, '腸'), +(7545, '賃'), +(7546, '賃'), +(7547, '賃'), +(7548, '賃'), +(7549, '展'), +(7550, '展'), +(7551, '展'), +(7552, '展'), +(7553, '庁'), +(7554, '庁'), +(7555, '庁'), +(7556, '庁'), +(7557, '討'), +(7558, '討'), +(7559, '討'), +(7560, '討'), +(7561, '糖'), +(7562, '糖'), +(7563, '糖'), +(7564, '糖'), +(7565, '敵'), +(7566, '敵'), +(7567, '敵'), +(7568, '敵'), +(7569, '党'), +(7570, '党'), +(7571, '党'), +(7572, '党'), +(7573, '乳'), +(7574, '乳'), +(7575, '乳'), +(7576, '乳'), +(7577, '晩'), +(7578, '晩'), +(7579, '晩'), +(7580, '晩'), +(7581, '脳'), +(7582, '脳'), +(7583, '脳'), +(7584, '脳'), +(7585, '納'), +(7586, '納'), +(7587, '納'), +(7588, '納'), +(7589, '納'), +(7590, '納'), +(7591, '納'), +(7592, '納'), +(7593, '納'), +(7594, '納'), +(7595, '納'), +(7596, '批'), +(7597, '批'), +(7598, '批'), +(7599, '俵'), +(7600, '俵'), +(7601, '俵'), +(7602, '俵'), +(7603, '拝'), +(7604, '拝'), +(7605, '拝'), +(7606, '拝'), +(7607, '陛'), +(7608, '陛'), +(7609, '奮'), +(7610, '奮'), +(7611, '奮'), +(7612, '奮'), +(7613, '難'), +(7614, '難'), +(7615, '難'), +(7616, '難'), +(7617, '俳'), +(7618, '俳'), +(7619, '背'), +(7620, '背'), +(7621, '背'), +(7622, '背'), +(7623, '腹'), +(7624, '腹'), +(7625, '腹'), +(7626, '腹'), +(7627, '並'), +(7628, '並'), +(7629, '認'), +(7630, '認'), +(7631, '認'), +(7632, '認'), +(7633, '肺'), +(7634, '肺'), +(7635, '肺'), +(7636, '肺'), +(7637, '否'), +(7638, '否'), +(7639, '否'), +(7640, '否'), +(7641, '班'), +(7642, '班'), +(7643, '班'), +(7644, '班'), +(7645, '閉'), +(7646, '閉'), +(7647, '閉'), +(7648, '閉'), +(7649, '暮'), +(7650, '暮'), +(7651, '暮'), +(7652, '暮'), +(7653, '派'), +(7654, '派'), +(7655, '派'), +(7656, '派'), +(7657, '補'), +(7658, '補'), +(7659, '補'), +(7660, '補'), +(7661, '片'), +(7662, '片'), +(7663, '片'), +(7664, '片'), +(7665, '秘'), +(7666, '秘'), +(7667, '秘'), +(7668, '秘'), +(7669, '忘'), +(7670, '忘'), +(7671, '忘'), +(7672, '忘'), +(7673, '棒'), +(7674, '棒'), +(7675, '棒'), +(7676, '棒'), +(7677, '枚'), +(7678, '枚'), +(7679, '枚'), +(7680, '枚'), +(7681, '枚'), +(7682, '宝'), +(7683, '宝'), +(7684, '宝'), +(7685, '宝'), +(7686, '亡'), +(7687, '亡'), +(7688, '亡'), +(7689, '亡'), +(7690, '亡'), +(7691, '亡'), +(7692, '亡'), +(7693, '亡'), +(7694, '密'), +(7695, '密'), +(7696, '密'), +(7697, '密'), +(7698, '訪'), +(7699, '訪'), +(7700, '訪'), +(7701, '訪'), +(7702, '盟'), +(7703, '盟'), +(7704, '盟'), +(7705, '盟'), +(7706, '幕'), +(7707, '幕'), +(7708, '幕'), +(7709, '幕'), +(7710, '幕'), +(7711, '幕'), +(7712, '幕'), +(7713, '幕'), +(7714, '訳'), +(7715, '訳'), +(7716, '訳'), +(7717, '訳'), +(7718, '模'), +(7719, '模'), +(7720, '模'), +(7721, '模'), +(7722, '郵'), +(7723, '郵'), +(7724, '郵'), +(7725, '郵'), +(7726, '預'), +(7727, '預'), +(7728, '優'), +(7729, '優'), +(7730, '優'), +(7731, '優'), +(7732, '優'), +(7733, '優'), +(7734, '優'), +(7735, '優'), +(7736, '幼'), +(7737, '幼'), +(7738, '幼'), +(7739, '幼'), +(7740, '卵'), +(7741, '卵'), +(7742, '卵'), +(7743, '卵'), +(7744, '律'), +(7745, '律'), +(7746, '律'), +(7747, '律'), +(7748, '律'), +(7749, '律'), +(7750, '律'), +(7751, '裏'), +(7752, '裏'), +(7753, '裏'), +(7754, '裏'), +(7755, '翌'), +(7756, '翌'), +(7757, '翌'), +(7758, '朗'), +(7759, '朗'), +(7760, '朗'), +(7761, '朗'), +(7762, '欲'), +(7763, '欲'), +(7764, '欲'), +(7765, '欲'), +(7766, '臨'), +(7767, '臨'), +(7768, '臨'), +(7769, '臨'), +(7770, '乱'), +(7771, '乱'), +(7772, '乱'), +(7773, '乱'), +(7774, '乱'), +(7775, '論'), +(7776, '論'), +(7777, '論'), +(7778, '論'), +(7779, '覧'), +(7780, '覧'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("こと"), +("こと.なる"), +("け"), +("のこ.す"), +("の.びる"), +("の.べる"), +("の.べ"), +("の.ばす"), +("うつ.る"), +("うつ.す"), +("は.える"), +("-ば.え"), +("そ.う"), +("-ぞ.い"), +("われ"), +("わ"), +("わ.が-"), +("わが-"), +("はい"), +("ひろ.がる"), +("ひろ.げる"), +("ひろ.める"), +("つくえ"), +("さと"), +("かわ"), +("そな.える"), +("とも"), +("-ども"), +("ま.く"), +("まき"), +("ま.き"), +("わ.る"), +("わり"), +("わ.り"), +("わ.れる"), +("さ.く"), +("つと.める"), +("-づと.め"), +("つと.まる"), +("いそ.しむ"), +("す.う"), +("ほ.す"), +("ほ.し-"), +("-ぼ.し"), +("ひ.る"), +("むね"), +("むな-"), +("たっと.い"), +("とうと.い"), +("たっと.ぶ"), +("とうと.ぶ"), +("あぶ.ない"), +("あや.うい"), +("あや.ぶむ"), +("えら.ぶ"), +("ふだ"), +("ふる.う"), +("かぶ"), +("み.る"), +("うたが.う"), +("すじ"), +("よ.ぶ"), +("はげ.しい"), +("みなもと"), +("うやま.う"), +("いまし.める"), +("きぬ"), +("あな"), +("おごそ.か"), +("きび.しい"), +("いか.めしい"), +("いつくし"), +("べに"), +("くれない"), +("あか.い"), +("おのれ"), +("つちのと"), +("な"), +("きさき"), +("お.りる"), +("お.ろす"), +("ふ.る"), +("ふ.り"), +("くだ.る"), +("くだ.す"), +("あやま.る"), +("-あやま.る"), +("きざ.む"), +("きざ.み"), +("はがね"), +("す.む"), +("-ず.み"), +("-ずみ"), +("す.まない"), +("す.ます"), +("-す.ます"), +("すく.う"), +("な.す"), +("わたし"), +("わた.る"), +("すわ.る"), +("す.てる"), +("ほね"), +("た.つ"), +("さば.く"), +("おもり"), +("かり"), +("はか.る"), +("わたくし"), +("わたし"), +("すな"), +("さし"), +("い.る"), +("さ.す"), +("う.つ"), +("み.る"), +("こま.る"), +("ことば"), +("いた.る"), +("ふみ"), +("すがた"), +("むね"), +("おさ.める"), +("おさ.まる"), +("き"), +("おお.い"), +("わか.い"), +("わか-"), +("も.しくわ"), +("も.し"), +("も.しくは"), +("ごと.し"), +("つ.く"), +("つ.ける"), +("ちぢ.む"), +("ちぢ.まる"), +("ちぢ.める"), +("ちぢ.れる"), +("ちぢ.らす"), +("かいこ"), +("こ"), +("う.れる"), +("たて"), +("ところ"), +("-こ"), +("お.る"), +("したが.う"), +("したが.える"), +("より"), +("のぞ.く"), +("-よ.け"), +("まさ.に"), +("はた"), +("まさ"), +("ひきい.る"), +("もって"), +("うけたまわ.る"), +("う.ける"), +("きず"), +("いた.む"), +("いた.める"), +("もろ"), +("はり"), +("た.れる"), +("た.らす"), +("た.れ"), +("-た.れ"), +("なんなんと.す"), +("さわ.る"), +("お.す"), +("む.す"), +("む.れる"), +("む.らす"), +("よそお.う"), +("よそお.い"), +("あら.う"), +("した"), +("ひじり"), +("まど"), +("てんまど"), +("けむだし"), +("そ.める"), +("そ.まる"), +("し.みる"), +("し.み"), +("もっぱ.ら"), +("いずみ"), +("のたま.う"), +("ぜに"), +("すき"), +("かな.でる"), +("よ.い"), +("い.い"), +("よ.く"), +("よし.とする"), +("も.る"), +("さか.る"), +("さか.ん"), +("みさお"), +("あやつ.る"), +("くら"), +("おさ.める"), +("かく.れる"), +("まこと"), +("つく.る"), +("はじ.める"), +("きず"), +("けず.しける"), +("しお"), +("うしお"), +("はらわた"), +("かつ.ぐ"), +("にな.う"), +("あらわ.す"), +("いちじる.しい"), +("しりぞ.く"), +("しりぞ.ける"), +("ひ.く"), +("の.く"), +("の.ける"), +("ど.く"), +("さぐ.る"), +("さが.す"), +("たっと.い"), +("とうと.い"), +("たっと.ぶ"), +("とうと.ぶ"), +("あたた.か"), +("あたた.かい"), +("あたた.まる"), +("あたた.める"), +("いただ.く"), +("いただき"), +("ね"), +("あたい"), +("ながら.える"), +("あ.る"), +("たも.つ"), +("と.う"), +("いた.い"), +("いた.む"), +("いた.ましい"), +("いた.める"), +("はらわた"), +("わた"), +("やくしょ"), +("う.つ"), +("かたき"), +("あだ"), +("かな.う"), +("とど.ける"), +("-とど.け"), +("とど.く"), +("なかま"), +("むら"), +("ちち"), +("ち"), +("のうずる"), +("おさ.める"), +("-おさ.める"), +("おさ.まる"), +("たわら"), +("おが.む"), +("おろが.む"), +("ふる.う"), +("かた.い"), +("-がた.い"), +("むずか.しい"), +("むづか.しい"), +("むつか.しい"), +("-にく.い"), +("せ"), +("せい"), +("そむ.く"), +("そむ.ける"), +("はら"), +("な.み"), +("なみ"), +("なら.べる"), +("なら.ぶ"), +("なら.びに"), +("みと.める"), +("したた.める"), +("いな"), +("いや"), +("と.じる"), +("と.ざす"), +("し.める"), +("し.まる"), +("た.てる"), +("く.れる"), +("く.らす"), +("おぎな.う"), +("かた-"), +("かた"), +("ひ.める"), +("ひそ.か"), +("かく.す"), +("わす.れる"), +("たから"), +("な.い"), +("な.き-"), +("ほろ.びる"), +("ほろ.ぶ"), +("ほろ.ぼす"), +("ひそ.か"), +("おとず.れる"), +("たず.ねる"), +("と.う"), +("とばり"), +("わけ"), +("あず.ける"), +("あず.かる"), +("やさ.しい"), +("すぐ.れる"), +("まさ.る"), +("おさな.い"), +("たまご"), +("うら"), +("ほが.らか"), +("あき.らか"), +("ほっ.する"), +("ほ.しい"), +("のぞ.む"), +("みだ.れる"), +("みだ.る"), +("みだ.す"), +("みだ"), +("おさ.める"), +("わた.る"), +("あげつら.う"), +("み.る"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('異', 'こと'), +('異', 'こと.なる'), +('異', 'け'), +('遺', 'のこ.す'), +('延', 'の.びる'), +('延', 'の.べる'), +('延', 'の.べ'), +('延', 'の.ばす'), +('映', 'うつ.る'), +('映', 'うつ.す'), +('映', 'は.える'), +('映', '-ば.え'), +('沿', 'そ.う'), +('沿', '-ぞ.い'), +('我', 'われ'), +('我', 'わ'), +('我', 'わ.が-'), +('我', 'わが-'), +('灰', 'はい'), +('拡', 'ひろ.がる'), +('拡', 'ひろ.げる'), +('拡', 'ひろ.める'), +('机', 'つくえ'), +('郷', 'さと'), +('革', 'かわ'), +('供', 'そな.える'), +('供', 'とも'), +('供', '-ども'), +('巻', 'ま.く'), +('巻', 'まき'), +('巻', 'ま.き'), +('割', 'わ.る'), +('割', 'わり'), +('割', 'わ.り'), +('割', 'わ.れる'), +('割', 'さ.く'), +('勤', 'つと.める'), +('勤', '-づと.め'), +('勤', 'つと.まる'), +('勤', 'いそ.しむ'), +('吸', 'す.う'), +('干', 'ほ.す'), +('干', 'ほ.し-'), +('干', '-ぼ.し'), +('干', 'ひ.る'), +('胸', 'むね'), +('胸', 'むな-'), +('貴', 'たっと.い'), +('貴', 'とうと.い'), +('貴', 'たっと.ぶ'), +('貴', 'とうと.ぶ'), +('危', 'あぶ.ない'), +('危', 'あや.うい'), +('危', 'あや.ぶむ'), +('簡', 'えら.ぶ'), +('簡', 'ふだ'), +('揮', 'ふる.う'), +('株', 'かぶ'), +('看', 'み.る'), +('疑', 'うたが.う'), +('筋', 'すじ'), +('呼', 'よ.ぶ'), +('激', 'はげ.しい'), +('源', 'みなもと'), +('敬', 'うやま.う'), +('警', 'いまし.める'), +('絹', 'きぬ'), +('穴', 'あな'), +('厳', 'おごそ.か'), +('厳', 'きび.しい'), +('厳', 'いか.めしい'), +('厳', 'いつくし'), +('紅', 'べに'), +('紅', 'くれない'), +('紅', 'あか.い'), +('己', 'おのれ'), +('己', 'つちのと'), +('己', 'な'), +('后', 'きさき'), +('降', 'お.りる'), +('降', 'お.ろす'), +('降', 'ふ.る'), +('降', 'ふ.り'), +('降', 'くだ.る'), +('降', 'くだ.す'), +('誤', 'あやま.る'), +('誤', '-あやま.る'), +('刻', 'きざ.む'), +('刻', 'きざ.み'), +('鋼', 'はがね'), +('済', 'す.む'), +('済', '-ず.み'), +('済', '-ずみ'), +('済', 'す.まない'), +('済', 'す.ます'), +('済', '-す.ます'), +('済', 'すく.う'), +('済', 'な.す'), +('済', 'わたし'), +('済', 'わた.る'), +('座', 'すわ.る'), +('捨', 'す.てる'), +('骨', 'ほね'), +('裁', 'た.つ'), +('裁', 'さば.く'), +('権', 'おもり'), +('権', 'かり'), +('権', 'はか.る'), +('私', 'わたくし'), +('私', 'わたし'), +('砂', 'すな'), +('尺', 'さし'), +('射', 'い.る'), +('射', 'さ.す'), +('射', 'う.つ'), +('視', 'み.る'), +('困', 'こま.る'), +('詞', 'ことば'), +('至', 'いた.る'), +('冊', 'ふみ'), +('姿', 'すがた'), +('宗', 'むね'), +('収', 'おさ.める'), +('収', 'おさ.まる'), +('樹', 'き'), +('衆', 'おお.い'), +('若', 'わか.い'), +('若', 'わか-'), +('若', 'も.しくわ'), +('若', 'も.し'), +('若', 'も.しくは'), +('若', 'ごと.し'), +('就', 'つ.く'), +('就', 'つ.ける'), +('縮', 'ちぢ.む'), +('縮', 'ちぢ.まる'), +('縮', 'ちぢ.める'), +('縮', 'ちぢ.れる'), +('縮', 'ちぢ.らす'), +('蚕', 'かいこ'), +('蚕', 'こ'), +('熟', 'う.れる'), +('縦', 'たて'), +('処', 'ところ'), +('処', '-こ'), +('処', 'お.る'), +('従', 'したが.う'), +('従', 'したが.える'), +('従', 'より'), +('除', 'のぞ.く'), +('除', '-よ.け'), +('将', 'まさ.に'), +('将', 'はた'), +('将', 'まさ'), +('将', 'ひきい.る'), +('将', 'もって'), +('承', 'うけたまわ.る'), +('承', 'う.ける'), +('傷', 'きず'), +('傷', 'いた.む'), +('傷', 'いた.める'), +('諸', 'もろ'), +('針', 'はり'), +('垂', 'た.れる'), +('垂', 'た.らす'), +('垂', 'た.れ'), +('垂', '-た.れ'), +('垂', 'なんなんと.す'), +('障', 'さわ.る'), +('推', 'お.す'), +('蒸', 'む.す'), +('蒸', 'む.れる'), +('蒸', 'む.らす'), +('装', 'よそお.う'), +('装', 'よそお.い'), +('洗', 'あら.う'), +('舌', 'した'), +('聖', 'ひじり'), +('窓', 'まど'), +('窓', 'てんまど'), +('窓', 'けむだし'), +('染', 'そ.める'), +('染', 'そ.まる'), +('染', 'し.みる'), +('染', 'し.み'), +('専', 'もっぱ.ら'), +('泉', 'いずみ'), +('宣', 'のたま.う'), +('銭', 'ぜに'), +('銭', 'すき'), +('奏', 'かな.でる'), +('善', 'よ.い'), +('善', 'い.い'), +('善', 'よ.く'), +('善', 'よし.とする'), +('盛', 'も.る'), +('盛', 'さか.る'), +('盛', 'さか.ん'), +('操', 'みさお'), +('操', 'あやつ.る'), +('蔵', 'くら'), +('蔵', 'おさ.める'), +('蔵', 'かく.れる'), +('誠', 'まこと'), +('創', 'つく.る'), +('創', 'はじ.める'), +('創', 'きず'), +('創', 'けず.しける'), +('潮', 'しお'), +('潮', 'うしお'), +('臓', 'はらわた'), +('担', 'かつ.ぐ'), +('担', 'にな.う'), +('著', 'あらわ.す'), +('著', 'いちじる.しい'), +('退', 'しりぞ.く'), +('退', 'しりぞ.ける'), +('退', 'ひ.く'), +('退', 'の.く'), +('退', 'の.ける'), +('退', 'ど.く'), +('探', 'さぐ.る'), +('探', 'さが.す'), +('尊', 'たっと.い'), +('尊', 'とうと.い'), +('尊', 'たっと.ぶ'), +('尊', 'とうと.ぶ'), +('暖', 'あたた.か'), +('暖', 'あたた.かい'), +('暖', 'あたた.まる'), +('暖', 'あたた.める'), +('頂', 'いただ.く'), +('頂', 'いただき'), +('値', 'ね'), +('値', 'あたい'), +('存', 'ながら.える'), +('存', 'あ.る'), +('存', 'たも.つ'), +('存', 'と.う'), +('痛', 'いた.い'), +('痛', 'いた.む'), +('痛', 'いた.ましい'), +('痛', 'いた.める'), +('腸', 'はらわた'), +('腸', 'わた'), +('庁', 'やくしょ'), +('討', 'う.つ'), +('敵', 'かたき'), +('敵', 'あだ'), +('敵', 'かな.う'), +('届', 'とど.ける'), +('届', '-とど.け'), +('届', 'とど.く'), +('党', 'なかま'), +('党', 'むら'), +('乳', 'ちち'), +('乳', 'ち'), +('脳', 'のうずる'), +('納', 'おさ.める'), +('納', '-おさ.める'), +('納', 'おさ.まる'), +('俵', 'たわら'), +('拝', 'おが.む'), +('拝', 'おろが.む'), +('奮', 'ふる.う'), +('難', 'かた.い'), +('難', '-がた.い'), +('難', 'むずか.しい'), +('難', 'むづか.しい'), +('難', 'むつか.しい'), +('難', '-にく.い'), +('背', 'せ'), +('背', 'せい'), +('背', 'そむ.く'), +('背', 'そむ.ける'), +('腹', 'はら'), +('並', 'な.み'), +('並', 'なみ'), +('並', 'なら.べる'), +('並', 'なら.ぶ'), +('並', 'なら.びに'), +('認', 'みと.める'), +('認', 'したた.める'), +('否', 'いな'), +('否', 'いや'), +('閉', 'と.じる'), +('閉', 'と.ざす'), +('閉', 'し.める'), +('閉', 'し.まる'), +('閉', 'た.てる'), +('暮', 'く.れる'), +('暮', 'く.らす'), +('補', 'おぎな.う'), +('片', 'かた-'), +('片', 'かた'), +('秘', 'ひ.める'), +('秘', 'ひそ.か'), +('秘', 'かく.す'), +('忘', 'わす.れる'), +('宝', 'たから'), +('亡', 'な.い'), +('亡', 'な.き-'), +('亡', 'ほろ.びる'), +('亡', 'ほろ.ぶ'), +('亡', 'ほろ.ぼす'), +('密', 'ひそ.か'), +('訪', 'おとず.れる'), +('訪', 'たず.ねる'), +('訪', 'と.う'), +('幕', 'とばり'), +('訳', 'わけ'), +('預', 'あず.ける'), +('預', 'あず.かる'), +('優', 'やさ.しい'), +('優', 'すぐ.れる'), +('優', 'まさ.る'), +('幼', 'おさな.い'), +('卵', 'たまご'), +('裏', 'うら'), +('朗', 'ほが.らか'), +('朗', 'あき.らか'), +('欲', 'ほっ.する'), +('欲', 'ほ.しい'), +('臨', 'のぞ.む'), +('乱', 'みだ.れる'), +('乱', 'みだ.る'), +('乱', 'みだ.す'), +('乱', 'みだ'), +('乱', 'おさ.める'), +('乱', 'わた.る'), +('論', 'あげつら.う'), +('覧', 'み.る'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('異', 'こと', 'difference (from one another), different thing, other, unusual, extraordinary'), +('異なる', 'ことなる', 'to differ, to vary, to disagree'), +('異なる', 'ことなる', 'to differ, to vary, to disagree'), +('異', 'こと', 'difference (from one another), different thing, other, unusual, extraordinary'), +('異な', 'けな', 'exceptional, praiseworthy, laudable'), +('遺す', 'のこす', 'to leave (to someone, esp. after one''s death), to bequeath'), +('伸びる', 'のびる', 'to stretch, to extend, to lengthen, to grow (of hair, height, grass, etc.), to straighten out, to be flattened, to become smooth, to spread (of paint, cream, etc.), to stretch out (e.g. of a hand), to extend, to lose elasticity, to become slack, to become soggy (e.g. noodles), to make progress, to develop, to expand, to increase, to improve, to be exhausted, to be groggy, to pass out, to collapse, to be prolonged (meeting, life span, etc.), to be extended (e.g. deadline), to lengthen (e.g. of the days), to be postponed, to be delayed, to be put off'), +('延べる', 'のべる', 'to lay out (a futon), to make (bed), to spread out, to stretch, to widen, to postpone, to extend'), +('延べ', 'のべ', 'futures, credit (buying), stretching, total (preceding counter, unit, etc.), aggregate, gross'), +('延べ払い', 'のべばらい', 'deferred payment'), +('伸ばす', 'のばす', 'to grow long (e.g. hair, nails), to lengthen, to extend, to stretch, to reach out, to hold out, to straighten, to smooth out, to spread evenly (dough, cream, etc.), to dilute, to thin out, to postpone, to prolong, to strengthen, to develop, to expand'), +('映る', 'うつる', 'to be reflected, to harmonize with (harmonise), to come out (photo), to be projected, to be displayed (on a screen)'), +('映す', 'うつす', 'to project, to reflect, to cast (shadow)'), +('映える', 'はえる', 'to shine, to glow, to look attractive, to look nice, to be set off (by)'), +('沿う', 'そう', 'to run along, to run beside, to stick to (a line), to follow (a policy, plan, etc.), to act in accordance with, to align with, to meet (wishes, expectations, etc.), to satisfy, to comply with, to live up to'), +('我', 'われ', 'I, me, oneself, you, prefix indicating familiarity or contempt'), +('我々', 'われわれ', 'we'), +('人は人、我は我', 'ひとはひとわれはわれ', 'live and let live, you do you and I''ll do me, people are people; I am myself'), +('我', 'われ', 'I, me, oneself, you, prefix indicating familiarity or contempt'), +('我が', 'わが', 'my, our, one''s own'), +('灰', 'はい', 'ash, ashes'), +('灰皿', 'はいざら', 'ashtray'), +('死の灰', 'しのはい', 'lethal radioactive fallout, atomic dust'), +('降灰', 'こうかい', 'volcanic ash'), +('広がる', 'ひろがる', 'to spread (out), to extend, to stretch, to reach to, to get around, to fill (e.g. a space)'), +('広げる', 'ひろげる', 'to spread, to extend, to expand, to enlarge, to widen, to broaden, to unfold, to open, to unroll, to unwrap, to scatter about, to spread around, to make flourish, to cause to prosper'), +('机', 'つくえ', 'desk'), +('机に向かう', 'つくえにむかう', 'to sit at a desk (to study), to set to work on revision, homework, etc.'), +('片袖机', 'かたそでづくえ', 'desk with a tier of drawers on one side'), +('八足の机', 'やつあしのつくえ', 'eight-legged table (used as a stand for religious offerings, etc.)'), +('里', 'さと', 'village, hamlet, countryside, country, home (of one''s parents, etc.), hometown, one''s origins, one''s upbringing, one''s past'), +('故郷', 'ふるさと', 'hometown, birthplace, native place, one''s old home, ruins, historic remains'), +('無何有の郷', 'むかうのさと', 'utopia, (natural) paradise'), +('革', 'かわ', 'leather'), +('革製品', 'かわせいひん', 'leather goods (products)'), +('藍革', 'あいかわ', 'indigo-dyed leather'), +('負い革', 'おいかわ', 'sling (e.g. of a firearm)'), +('供える', 'そなえる', 'to offer, to sacrifice, to dedicate'), +('供', 'とも', 'companion, follower, attendant, retinue'), +('共に', 'ともに', 'together, jointly, at the same time, with, as ..., including, along with, both'), +('酒のお供', 'さけのおとも', 'appetizer or snack served with drinks, accompaniment to an (alcoholic) drink'), +('巻く', 'まく', 'to wind, to coil, to roll, to wear (e.g. turban, scarf), to envelope, to shroud, to outflank, to skirt, to link (verse), to move ahead (three hours, etc.), to move up'), +('巻', 'まき', 'roll (e.g. of cloth), winding (e.g. watch), volume (of book), speeding up, heel (of a Japanese sandal)'), +('巻き込む', 'まきこむ', 'to roll up, to enfold, to swallow up, to involve, to drag into'), +('寝巻き', 'ねまき', 'nightclothes, nightwear, sleepwear, pyjamas, pajamas, nightgown, nightdress'), +('絵巻', 'えまき', 'picture scroll'), +('巻', 'まき', 'roll (e.g. of cloth), winding (e.g. watch), volume (of book), speeding up, heel (of a Japanese sandal)'), +('巻き込む', 'まきこむ', 'to roll up, to enfold, to swallow up, to involve, to drag into'), +('寝巻き', 'ねまき', 'nightclothes, nightwear, sleepwear, pyjamas, pajamas, nightgown, nightdress'), +('絵巻', 'えまき', 'picture scroll'), +('割る', 'わる', 'to divide, to cut, to halve, to separate, to split, to rip, to break, to crack, to smash, to dilute, to fall below, to discount, to step over (a line, etc.)'), +('割り', 'わり', 'rate, ratio, proportion, one tenth, ten percent, (comparative) profit, gain, assignment, allotment, allocation, match, schedule of matches, diluted with (of drinks), mixed with, discount, rebate'), +('割合', 'わりあい', 'rate, ratio, percentage, proportion, comparatively, contrary to expectations'), +('学割', 'がくわり', 'student discount'), +('手合割', 'てあいわり', 'handicap (go, shogi)'), +('割り', 'わり', 'rate, ratio, proportion, one tenth, ten percent, (comparative) profit, gain, assignment, allotment, allocation, match, schedule of matches, diluted with (of drinks), mixed with, discount, rebate'), +('割合', 'わりあい', 'rate, ratio, percentage, proportion, comparatively, contrary to expectations'), +('学割', 'がくわり', 'student discount'), +('手合割', 'てあいわり', 'handicap (go, shogi)'), +('割れる', 'われる', 'to break, to be smashed, to split, to crack, to fissure, to be torn, to be divided (opinion, vote, etc.), to split (e.g. of a party), to come to light, to become clear, to be identified, to be revealed, to be distorted (of a sound), to be divisible (without a remainder), to go below a minimum'), +('裂く', 'さく', 'to tear, to rip up, to cut up, to cleave, to cut open (esp. the abdomen), to forcibly separate (e.g. two lovers), to spare (time, money, etc.), to use part of something, to have a tattoo in the corner of one''s eye'), +('勤める', 'つとめる', 'to work (for), to be employed (at), to serve (in), to serve (as), to act (as), to fill (the position of), to play the role (of), to conduct a religious service'), +('務まる', 'つとまる', 'to be fit (for a role), to be qualified (for), to be equal (to a task), to be able to fulfill one''s duties (as)'), +('勤しむ', 'いそしむ', 'to work hard at, to devote oneself to, to be diligent in'), +('吸う', 'すう', 'to smoke, to breathe in, to inhale, to suck, to sip, to slurp, to absorb, to soak up, to kiss'), +('干す', 'ほす', 'to air, to dry, to desiccate, to drain (off), to drink up, to deprive of a role, job, etc.'), +('干る', 'ひる', 'to dry'), +('胸', 'むね', 'chest, breast, breasts, bosom, bust, heart, lungs, stomach, heart, mind, feelings'), +('胸いっぱい', 'むねいっぱい', 'getting a lump in one''s throat, overflowing with feelings, chest full of, lungs full of'), +('両胸', 'りょうむね', 'both sides of the chest, both breasts'), +('鳩胸', 'はとむね', 'pigeon chest (Pectus carinatum, deformity of the chest, protruding ribs and sternum), pigeon breast, woman with big breasts, iron armor with protruding chest, curved front portion of a stirrup, curve at the base of a shamisen neck'), +('尊い', 'とうとい', 'precious, valuable, priceless, noble, exalted, sacred'), +('貴い家柄', 'たっといいえがら', 'noble birth'), +('尊い', 'とうとい', 'precious, valuable, priceless, noble, exalted, sacred'), +('貴ぶ', 'とうとぶ', 'to value, to prize, to esteem, to respect'), +('貴ぶ', 'とうとぶ', 'to value, to prize, to esteem, to respect'), +('危ない', 'あぶない', 'dangerous, risky, hazardous, perilous, precarious, in danger, in jeopardy, critical, grave, at risk, uncertain, unreliable, insecure, unsteady, doubtful, close (call), narrow (escape), look out!, watch out!, be careful!'), +('危ない橋を渡る', 'あぶないはしをわたる', 'to tread on thin ice, to go out on a limb, to walk a tightrope, to take risks, to cross a dangerous bridge'), +('危うい', 'あやうい', 'dangerous, in danger, facing imminent danger, precarious (situation), perilous (state, balance, etc.), in doubt, in jeopardy, uncertain, insecure, concerning, worrying'), +('危ぶむ', 'あやぶむ', 'to fear, to doubt, to have misgivings about, to worry about, to be anxious about, to be apprehensive about'), +('札', 'ふだ', 'ticket, token, check, receipt, label, tag, sign, card, plate, playing card, charm, talisman, slip of paper posted on shrine pillars by pilgrims'), +('振るう', 'ふるう', 'to swing, to wield (physically), to exert, to exercise (e.g. power, ability), to exhibit, to display, to wield (metaphorically), to flourish, to prosper, to thrive'), +('株', 'かぶ', 'stock, share, stump, (clump of) roots, plant with attached roots or stem, strain (of bacteria, etc.), stock company, corporation, kabushiki kaisha, KK, goodwill (of a business), privilege (that comes with a role), reputation, standing, popularity, one''s forte'), +('株', 'かぶた', 'stump, useless item'), +('新株', 'しんかぶ', 'new stock, new share, newly issued shares'), +('仕手株', 'してかぶ', 'speculative stock'), +('看る', 'みる', 'to look after (often medically), to take care of'), +('疑う', 'うたがう', 'to doubt, to distrust, to be suspicious of, to suspect'), +('筋', 'すじ', 'muscle, tendon, sinew, vein, artery, fiber, fibre, string, line, stripe, streak, reason, logic, plot, storyline, lineage, descent, school (e.g. of scholarship or arts), aptitude, talent, source (of information, etc.), circle, channel, well-informed person (in a transaction), logical move (in go, shogi, etc.), ninth vertical line, seam on a helmet, gristly fish paste (made of muscle, tendons, skin, etc.), social position, status, on (a river, road, etc.), along, counter for long thin things, counter for roads or blocks when giving directions, (Edo period) counter for hundreds of mon (obsolete unit of currency)'), +('筋書き', 'すじがき', 'synopsis, outline, plot'), +('一筋', 'ひとすじ', 'one line, one stretch (e.g. of road), one strand (e.g. of hair), one beam (e.g. of light), one ray, one length (e.g. of rope), earnest, resolute, intent, devoted, single-minded, one bloodline, one clan, ordinary, common'), +('粗筋', 'あらすじ', 'outline, summary, argument'), +('呼ぶ', 'よぶ', 'to call out (to), to call, to invoke, to summon (a doctor, etc.), to invite, to designate, to name, to brand, to garner (support, etc.), to gather, to take as one''s wife'), +('呼子鳥', 'よぶこどり', 'calling bird (esp. a cuckoo)'), +('激しい', 'はげしい', 'violent, furious, tempestuous, extreme, intense, fierce, strong, fervent, vehement, incessant, relentless, precipitous, steep'), +('源', 'みなもと', 'source (of a river), fountainhead, source, origin, root'), +('河の源', 'かわのみなもと', 'fountainhead'), +('敬う', 'うやまう', 'to show respect for, to revere, to honour, to honor, to worship, to hold in esteem'), +('戒める', 'いましめる', 'to warn against, to caution against, to admonish, to scold, to rebuke, to prohibit, to forbid, to ban, to be cautious, to detest, to loathe, to punish'), +('絹', 'きぬ', 'silk'), +('絹糸', 'けんし', 'silk thread'), +('白絹', 'しらぎぬ', 'white silk'), +('穴', 'あな', 'hole, opening, perforation, pit, hollow, hole (in the ground, etc.), burrow, den, lair, holt, hole, deficit, shortage, missing person (in a team, meeting, etc.), vacancy, opening, flaw, well-kept secret place, upset victory (with a large payoff), pit (of a theater), hiding place, hideout, underbelly (of society, etc.)'), +('穴埋め', 'あなうめ', 'filling (up) a hole, filling in (for a gap, vacancy, etc.), stopgap, filler (e.g. article), making up (for a loss, damage, etc.), covering (a deficit), compensation, cloze deletion (test format)'), +('風穴', 'かざあな', 'air hole, windhole, ventilator'), +('横穴', 'よこあな', 'cave, tunnel, tunnel tomb (Kofun period)'), +('厳か', 'おごそか', 'solemn (ceremony, atmosphere, etc.), austere, grave, majestic, dignified, stately, impressive'), +('厳しい', 'きびしい', 'severe, strict, rigid, unsparing, relentless, hard (to do), difficult, tricky, intense (e.g. cold), harsh (weather), inclement'), +('厳しい暑さ', 'きびしいあつさ', 'intense heat'), +('厳めしい', 'いかめしい', 'stern, grave, austere, imposing, dignified, formidable, solemn, majestic, strict (e.g. security), severe, firm, rigid, rigorous'), +('紅', 'くれない', 'deep red, crimson, rouge, lipstick'), +('紅色', 'こうしょく', 'red (color, colour)'), +('棒紅', 'ぼうべに', 'lipstick'), +('愛敬紅', 'あいきょうべに', 'lipstick that actors put on their earlobes, cheeks and corners of eyes, lipstick discreetly put on the earlobes or the corners of the eyes (by women)'), +('紅', 'くれない', 'deep red, crimson, rouge, lipstick'), +('紅色', 'こうしょく', 'red (color, colour)'), +('中紅', 'なかくれない', 'medium crimson'), +('薄紅', 'うすべに', 'light pink, light crimson'), +('赤い', 'あかい', 'red, crimson, scarlet, vermilion, vermillion, Red, communist, beautiful'), +('己', 'おのれ', 'oneself (itself, etc.), I, me, you, by oneself (itself, etc.), interjection expressing anger or chagrin'), +('己達せんと欲して人を達せしむ', 'おのれたっせんとほっしてひとをたっせしむ', 'if you wish to succeed yourself, first help others to succeed'), +('己', 'き', '6th in rank, sixth sign of the Chinese calendar'), +('己亥', 'つちのとい', 'Earth Boar (36th year of the sexagenary cycle, e.g. 1959, 2019, 2079)'), +('己', 'な', 'I, you'), +('汝等', 'うぬら', 'ye, you, me, I, us, we'), +('后', 'きさき', 'empress, queen'), +('后町', 'きさきまち', 'women''s pavilion (of the inner Heian palace)'), +('降りる', 'おりる', 'to descend (e.g. a mountain), to go down, to come down, to alight (e.g. from bus), to get off, to disembark, to dismount, to step down, to retire, to give up, to quit, to fold, to be granted, to be issued, to be given, to form (of frost, dew, mist, etc.), to be passed (from the body; e.g. of a roundworm)'), +('下ろす', 'おろす', 'to take down, to bring down, to lower (a hand, flag, shutter, etc.), to drop (an anchor, curtain, etc.), to let down (hair), to launch (a boat), to drop off (a passenger), to let off, to unload (goods, a truck, etc.), to offload, to discharge, to withdraw (money), to use for the first time, to wear for the first time, to cut off, to fillet (fish), to grate (e.g. radish), to prune (branches), to remove (someone from a position), to oust, to drop, to clear (the table), to remove (offerings from an altar), to pass down (e.g. old clothes), to hand down, to expel from the body (e.g. worms), to abort (a fetus), to invoke (a spirit), to call down'), +('降る', 'ふる', 'to fall (of rain, snow, ash, etc.), to come down, to form (of frost), to beam down (of sunlight or moonlight), to pour in, to visit (of luck, misfortune, etc.), to come, to arrive'), +('降り', 'ふり', 'rainfall, snowfall, alighting, descending'), +('降り出す', 'ふりだす', 'to begin to rain, to begin to snow'), +('下る', 'くだる', 'to descend, to go down, to come down, to be handed down (of an order, judgment, etc.), to pass (of time), to surrender, to capitulate, to be less than, to be inferior to, to have the runs, to have diarrhea, to pass (in stool), to be discharged from the body, to depreciate oneself, to be humble'), +('下す', 'くだす', 'to make a decision, to draw a conclusion, to give a judgement, to hand down a verdict, to pass a sentence, to give an order, to let go down, to lower, to do oneself, to do by oneself, to beat, to defeat, to have loose bowels, to have diarrhea, to pass (in stool), to discharge from the body, to do in one go, to do to the end without stopping'), +('誤る', 'あやまる', 'to make a mistake (in), to commit an error, to do incorrectly, to err, to be wrong, to be incorrect, to be false, to be mistaken, to mislead, to misguide, to lead astray'), +('刻む', 'きざむ', 'to mince, to cut fine, to chop up, to hash, to shred, to carve, to engrave, to chisel, to notch, to tick away (time), to beat out (e.g. rhythm), to record the passing moments, to etch (into one''s mind), to remember distinctly, to have tattooed, to torment'), +('刻み', 'きざみ', 'mincing, cutting, chopping, notch, nick, rapping (a percussion instrument), beating, shredded tobacco, interval'), +('刻み込む', 'きざみこむ', 'to etch (name, etc.), to carve (design)'), +('鋼', 'はがね', 'steel, sword steel, sword'), +('鋼色', 'はがねいろ', 'steel blue'), +('玉鋼', 'たまはがね', 'steel made from iron sand or black sand (used in sword blades)'), +('済む', 'すむ', 'to finish, to end, to be completed, to merely result in something less severe than expected, to feel at ease, to feel unease or guilt for troubling someone, to be sorry'), +('済まない', 'すまない', 'inexcusable, unjustifiable, unpardonable, sorry, remorseful, apologetic, conscience-stricken, contrite, excuse me, (I''m) sorry, thank you'), +('済ます', 'すます', 'to finish, to get it over with, to conclude, to settle, to pay back, to get along (without something), to make do with (without)'), +('座る', 'すわる', 'to sit, to squat, to assume (a position), to hold steady, to hold still'), +('捨てる', 'すてる', 'to throw away, to cast away, to dump, to discard, to abandon, to desert, to leave, to give up, to resign'), +('捨てる神あれば拾う神あり', 'すてるかみあればひろうかみあり', 'when one door is shut, another is open, the world is as kind as it is cruel'), +('骨', 'ほね', 'bone, frame, outline, core, backbone, spirit, fortitude, laborious, troublesome, difficult'), +('骨抜き', 'ほねぬき', 'boning (fish or meat), deboning, watering down (a plan, bill, etc.), dilution, emasculation, taking the backbone out of, weakening'), +('河骨', 'こうほね', 'Japanese spatterdock (species of water lily, Nuphar japonica)'), +('水母の骨', 'くらげのほね', 'something that one would not expect to exist, something exceedingly rare, jellyfish bones'), +('裁つ', 'たつ', 'to cut (cloth)'), +('裁く', 'さばく', 'to judge, to decide, to sit in judgement, to try'), +('仮殿', 'かりどの', 'temporary shrine (houses the object in which the deity resides when main shrine is under repairs)'), +('私', 'わたくし', 'I, me, personal (affairs, etc.), private, selfishness, partiality, secrecy, confidentiality'), +('私立', 'しりつ', 'private (establishment)'), +('不肖私', 'ふしょうわたくし', 'I, me'), +('私', 'わたし', 'I, me'), +('私たち', 'わたしたち', 'we, us'), +('砂', 'すな', 'sand, grit'), +('砂浜', 'すなはま', 'sandy beach'), +('鳴き砂', 'なきすな', 'singing sand (which produces sound when stepped on), whistling sand, squeaking sand, barking sand'), +('猫砂', 'ねこすな', 'cat litter, kitty litter'), +('尺', 'さし', 'ruler, measure'), +('畳尺', 'たたみじゃく', 'folding ruler, collapsible ruler'), +('射る', 'いる', 'to shoot (arrow, bolt, dart)'), +('射す', 'さす', 'to shine'), +('撃つ', 'うつ', 'to shoot (at), to attack, to defeat, to destroy, to avenge'), +('見る', 'みる', 'to see, to look, to watch, to view, to observe, to examine, to look over, to assess, to check, to judge, to look after, to attend to, to take care of, to keep an eye on, to experience, to meet with (misfortune, success, etc.), to try ..., to have a go at ..., to give ... a try, to see (that) ..., to find (that) ...'), +('困る', 'こまる', 'to be troubled, to have difficulty, to be in a fix, to be at a loss, to be stumped, to be embarrassed, to be bothered, to be inconvenienced, to be annoyed, to be badly off, to be hard up, to be in straitened circumstances'), +('言葉', 'ことば', 'language, dialect, word, phrase, expression, term, speech, (manner of) speaking, (use of) language, words, remark, statement, comment, learning to speak, language acquisition'), +('詞書き', 'ことばがき', 'foreword to a collection of poems, preface, explanatory notes, captions'), +('名詞', 'めいし', 'noun'), +('花言葉', 'はなことば', 'language of flowers (e.g. the use of red roses to signify love), floriography'), +('至る', 'いたる', 'to arrive at (e.g. a decision), to reach (a stage), to attain, to lead to (a place), to get to, in the extreme case of, to come, to arrive, to result in'), +('至る所', 'いたるところ', 'everywhere, all over, throughout'), +('姿', 'すがた', 'figure, form, shape, appearance, dress, guise, state, condition, picture, image, form (of a waka), dressed in ..., wearing ...'), +('姿見', 'すがたみ', 'full-length mirror'), +('晴れ姿', 'はれすがた', 'appearing in one''s finest clothes, appearing in one''s hour of triumph'), +('舞姿', 'まいすがた', 'dancing figure, one''s appearance when dancing, dancing posture'), +('旨', 'むね', 'principle, aim, main purpose, central part, pillar, purport, gist, drift, meaning, instructions, orders, intention, wishes'), +('正宗', 'まさむね', 'famous sword, sword blade by Masamune, sake, Japanese rice wine, brand of sake from Nada region during Tenpō era (1830-1844)'), +('収める', 'おさめる', 'to pay (fees, taxes, etc.), to dedicate, to make an offering, to supply, to put away (in), to keep, to store, to finish, to bring to a close, to restore (something to its place), to achieve (e.g. a result)'), +('収まる', 'おさまる', 'to fit into (a box, frame, category, etc.), to be contained within, to fall within (e.g. a budget), to settle down (into), to be installed (in one''s rightful place), to be returned (to one''s original position), to settle into (one''s position), to take up (a post), to occupy (a role), to be delivered, to be paid (e.g. taxes), to be settled (dispute, conflict, etc.), to be sorted, to subside (e.g. wind), to calm down, to abate, to be satisfied (e.g. with an answer), to consent, to agree'), +('木', 'き', 'tree, shrub, bush, wood, timber'), +('木々', 'きぎ', '(many) trees, every tree, all kinds of trees'), +('一樹', 'いちじゅ', 'one tree, a tree'), +('楷の木', 'かいのき', 'Chinese pistache (Pistacia chinensis)'), +('若い', 'わかい', 'young, youthful, immature, green, low (number), small'), +('若い頃', 'わかいころ', 'one''s youth, early life, one''s early days, one''s early years'), +('若し', 'もし', 'if, in case, supposing'), +('若しも', 'もしも', 'if, in case, supposing'), +('若しくは', 'もしくは', 'or, otherwise'), +('如し', 'ごとし', 'like, as if, the same as'), +('就く', 'つく', 'to take (seat, position, course, office, etc.), to assume, to be hired, to be employed, to ascend (the throne), to accede, to start (on a journey), to commence, to depart, to study (under teacher), to be an apprentice'), +('就ける', 'つける', 'to install (a king, emperor, etc.), to appoint (to a post), to promote, to assign (to study under)'), +('縮む', 'ちぢむ', 'to shrink, to contract, to diminish (in size)'), +('縮まる', 'ちぢまる', 'to shorten, to narrow, to close, to shrink'), +('縮める', 'ちぢめる', 'to shorten, to reduce, to condense, to shrink, to crumple (fabric), to wrinkle, to make (one''s body) smaller, to draw in (one''s legs), to duck (one''s head)'), +('縮れる', 'ちぢれる', 'to be wavy, to be curled, to be frizzled'), +('縮らす', 'ちぢらす', 'to curl, to crimp'), +('蚕', 'かいこ', 'silkworm (Bombyx mori)'), +('蚕蛾', 'かいこが', 'silkworm moth, silk moth (Bombyx mori)'), +('三眠蚕', 'さんみんかいこ', 'three-molt silkworm'), +('蚕糞', 'こくそ', 'silkworm droppings'), +('蚕玉', 'こだま', 'guardian deity of silkworms'), +('三眠蚕', 'さんみんかいこ', 'three-molt silkworm'), +('桑蚕', 'くわこ', 'wild silkworm moth (Bombyx mandarina)'), +('熟れる', 'うれる', 'to ripen (fruit, grain, etc.), to become ripe'), +('縦', 'たて', 'the vertical, height, front-to-back, length, north-to-south, vertical (relationship), hierarchy, (weaving) warp'), +('縦横', 'じゅうおう', 'length and width, length and breadth, lengthwise and crosswise, longitude and latitude, vertical and horizontal, four cardinal points, every direction, as one wishes, as one pleases, at will, warp and weft, warp and woof'), +('所', 'ところ', 'place, spot, scene, site, address, district, area, locality, one''s house, point, aspect, side, facet, passage (in text), part, space, room, thing, matter, whereupon, as a result, about to, on the verge of, was just doing, was in the process of doing, have just done, just finished doing'), +('所々', 'ところどころ', 'here and there, in places'), +('至る所', 'いたるところ', 'everywhere, all over, throughout'), +('詰まるところ', 'つまるところ', 'in short, in brief, to sum up, ultimately, in the end, in the long run, when all is said and done, what it all comes down to, when you get right down to it'), +('従う', 'したがう', 'to obey (an order, law, etc.), to abide by (a rule, custom, etc.), to follow, to observe, to conform to, to yield to, to follow (a person), to accompany, to go with, to go alongside (e.g. a river), to follow (e.g. a sign), to serve (as), to engage in (work)'), +('従える', 'したがえる', 'to be accompanied by, to be attended by, to take along (someone), to conquer, to subjugate, to subdue'), +('除く', 'のぞく', 'to remove, to eliminate, to eradicate, to exclude, to except'), +('正に', 'まさに', 'exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally'), +('将', 'はた', 'or, otherwise, furthermore, also, perhaps, by some chance, possibly, that being said, be that as it may, however, but, not to mention, needless to say, as expected, sure enough, really, at all'), +('将又', 'はたまた', 'or'), +('正に', 'まさに', 'exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally'), +('承る', 'うけたまわる', 'to hear, to be told, to know, to receive (order), to undertake, to comply, to take (a reservation, etc.)'), +('受ける', 'うける', 'to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well'), +('傷', 'きず', 'wound, injury, cut, gash, bruise, scratch, scrape, scar, chip, crack, scratch, nick, flaw, defect, weakness, weak point, stain (on one''s reputation), disgrace, dishonor, dishonour, (emotional) hurt, hurt feelings'), +('傷つく', 'きずつく', 'to be wounded, to get injured, to get hurt feelings, to get damaged, to get chipped, to get scratched'), +('無傷', 'むきず', 'unhurt, uninjured, unwounded, unscathed, unharmed, flawless (e.g. gem), unblemished, undamaged, perfect (condition), spotless (e.g. reputation), faultless (e.g. performance), perfect (record), without failure, without defeat'), +('古傷', 'ふるきず', 'old wound, scar, old unpleasant incident, past misdeed'), +('痛む', 'いたむ', 'to hurt, to ache, to feel a pain, to be injured, to be spoiled (e.g. food), to be damaged'), +('痛める', 'いためる', 'to hurt, to injure, to cause pain, to harm, to damage, to spoil, to worry, to bother, to be grieved over, to afflict, to cause financial loss, to hurt one''s pocket'), +('諸', 'もろ', 'both, many, various, all, together'), +('諸々', 'もろもろ', 'all kinds of things, various things, large number of people'), +('その他もろもろ', 'そのたもろもろ', 'and various other things, and many others, and all the rest, and so on and so forth'), +('針', 'はり', 'needle, pin, hook, stinger, thorn, hand (e.g. clock, etc.), pointer, staple (for a stapler), needlework, sewing, malice, counter for stitches'), +('針金', 'はりがね', 'wire'), +('無外傷性針', 'むがいしょうせいはり', 'atraumatic needle'), +('お針', 'おはり', 'needlework, sewing, seamstress'), +('垂れる', 'たれる', 'to hang, to droop, to dangle, to sag, to lower, to pull down, to give (e.g. lesson, instruction, scolding) (to someone of lower status), to confer, to grant, to bestow, to drip, to ooze, to trickle, to drop, to leave behind (at death), to say, to utter, to excrete (urine, feces, etc.), to let out (a fart)'), +('垂らす', 'たらす', 'to dribble, to spill, to suspend, to hang down, to slouch, to dangle'), +('垂れ', 'たれ', 'sauce (esp. soy or mirin-based dipping sauce), hanging, something hanging (flap, lappet, etc.), (kendo) loin guard, kanji radical enclosing the top-left corner of a character, -ass, -head'), +('垂れる', 'たれる', 'to hang, to droop, to dangle, to sag, to lower, to pull down, to give (e.g. lesson, instruction, scolding) (to someone of lower status), to confer, to grant, to bestow, to drip, to ooze, to trickle, to drop, to leave behind (at death), to say, to utter, to excrete (urine, feces, etc.), to let out (a fart)'), +('垂んとす', 'なりなんとす', 'to close in on (30 years of age, etc.), to approach, to get close to'), +('垂んとする', 'なんなんとする', 'to close in on (30 years of age, etc.), to approach, to get close to'), +('障る', 'さわる', 'to be harmful to, to hinder, to interfere with, to irritate'), +('推す', 'おす', 'to recommend, to endorse (e.g. a candidate), to nominate, to support, to back, to infer (from), to deduce, to gather, to conjecture, to surmise, to think (something) through, to ponder deeply'), +('蒸す', 'むす', 'to steam (food, towel, etc.), to be hot and humid, to be sultry'), +('蒸れる', 'むれる', 'to be steamed (properly, e.g. rice), to be stuffy, to grow musty, to get close, to become sweaty, to feel sticky, to moulder'), +('蒸らす', 'むらす', 'to cook by steam'), +('装う', 'よそおう', 'to dress (oneself in), to attire oneself in, to adorn, to decorate, to pretend, to feign, to affect, to disguise oneself as'), +('装い', 'よそおい', 'dress, outfit, equipment, makeup, adornment, guise, get-up'), +('洗う', 'あらう', 'to wash, to cleanse, to rinse, to inquire into, to investigate, to purify (one''s heart), to lave (e.g. shore), to wash over (e.g. deck), to sweep'), +('舌', 'した', 'tongue, tongue-like object, clapper (of a bell), talon (of a lock)'), +('舌打ち', 'したうち', 'clicking one''s tongue, tut-tut, smacking one''s lips (with relish)'), +('貧乏舌', 'びんぼうじた', 'being unable to discern good food from bad, poor person''s taste (in food), unsophisticated palate'), +('迎え舌', 'むかえした', 'sticking out one''s tongue when putting food in one''s mouth'), +('聖', 'ひじり', 'highly virtuous monk, monk, Buddhist solitary, Buddhist missionary, saint (i.e. a virtuous person), emperor, master, expert'), +('聖柄', 'ひじりづか', 'sword hilt shaped similar to the handle of a vajra, plain, wooden sword hilt (as opposed to those wrapped in sharkskin)'), +('高野聖', 'こうやひじり', 'Mount Kōya missionary (usu. low-ranking monk), Lethocerus deyrollei (species of giant water bug)'), +('窓', 'まど', 'window'), +('窓口', 'まどぐち', 'counter, window, teller window, ticket window, contact person, point of contact'), +('引違い窓', 'ひきちがいまど', 'double sliding window'), +('鎧窓', 'よろいまど', 'louvered window'), +('回転窓', 'かいてんまど', 'pivoted window'), +('染める', 'そめる', 'to dye, to colour, to color'), +('染まる', 'そまる', 'to be dyed, to be tainted, to be infected, to be stained, to be steeped'), +('染みる', 'しみる', 'to pierce, to penetrate, to soak in, to permeate, to sting (wound or sensitive area, etc.), to smart, to twinge, to be infected (with vice), to be steeped (with prejudice), to be influenced, to feel keenly, to make a deep impression'), +('染み', 'しみ', 'stain, spot, smudge, blot, smear, blotch, spot (on one''s skin, e.g. chloasma, liver spot), blemish, discoloration, freckle'), +('染みる', 'しみる', 'to pierce, to penetrate, to soak in, to permeate, to sting (wound or sensitive area, etc.), to smart, to twinge, to be infected (with vice), to be steeped (with prejudice), to be influenced, to feel keenly, to make a deep impression'), +('専ら', 'もっぱら', 'wholly, solely, entirely, exclusively, devotedly, fixedly, principally, mostly, chiefly, mainly'), +('専らにする', 'もっぱらにする', 'devote oneself to, to do as one pleases, to act selfishly'), +('泉', 'いずみ', 'spring, fountain'), +('泉熱', 'いずみねつ', 'Izumi fever (resembles scarlet fever)'), +('知識の泉', 'ちしきのいずみ', 'source of knowledge'), +('宣ふ', 'のたまう', 'to say'), +('宣う', 'のたまう', 'to say, to be pleased to say'), +('銭', 'ぜに', 'round coin with a (square) hole in the center, coin made of non-precious materials, money'), +('銭葵', 'ぜにあおい', 'common mallow (Malva sylvestris var. mauritiana)'), +('身銭', 'みぜに', 'one''s own money'), +('日銭', 'ひぜに', 'daily income in cash, money paid by daily installments, money paid by daily instalments'), +('奏でる', 'かなでる', 'to play an instrument (esp. string instruments), to dance'), +('良い', 'よい', 'good, excellent, fine, nice, pleasant, agreeable, sufficient, enough, ready, prepared, profitable (deal, business offer, etc.), beneficial, OK, all right, fine, no problem'), +('善い行い', 'よいおこない', 'good deed'), +('いい事', 'いいこと', 'good thing, nice thing, good excuse, good grounds, good opportunity, interjection used to impress an idea or to urge a response'), +('良く', 'よく', 'nicely, properly, well, skillfully, skilfully, frequently, often, I''m glad that you ..., thank you for ..., (you have) quite the nerve to, I don''t know how you can ...'), +('善くも', 'よくも', 'how dare ..., how could ...'), +('盛る', 'もる', 'to serve (in a bowl, on a plate, etc.), to dish out, to dish up, to fill (a bowl) with, to pile up, to heap up, to fill up, to stack up, to administer (medicine, poison), to dose out, to prescribe, to put into (e.g. information in a report, meaning in a statement), to mark out (e.g. scale), to graduate (e.g. thermometer), to exaggerate, to apply heavy makeup'), +('盛る', 'さかる', 'to prosper, to flourish, to copulate (animals)'), +('盛ん', 'さかん', 'prosperous, flourishing, thriving, successful, popular, widespread, active, lively, energetic, vigorous, brisk, strong, enthusiastic, eager, hearty, frequent, repeated'), +('盛んな歓迎', 'さかんなかんげい', 'cordial reception'), +('操', 'みさお', 'fidelity, honour, honor, constancy, chastity (of a woman), faithfulness (e.g. to one''s husband)'), +('操を守る', 'みさおをまもる', 'to adhere to one''s principles, to preserve one''s chastity'), +('操る', 'あやつる', 'to operate (e.g. a machine), to handle, to manage, to control, to maneuver, to steer, to have a good command of (a language), to play proficiently (of a musical instrument), to work (a puppet), to pull the strings of a puppet, to manipulate (a person, public opinion, etc.), to pull the strings, to control from the shadows, to mastermind'), +('蔵', 'くら', 'warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator'), +('蔵元', 'くらもと', 'brewery (sake, soy), brewer, warehouse overseer'), +('大蔵', 'おおくら', 'Ministry of Finance'), +('お蔵', 'おくら', 'shelving (a play, movie, etc.), closing down, cancelling, canceling, shelf (i.e. "on the shelf"), rice storehouse of the Edo shogunate'), +('誠', 'まこと', 'truth, reality, sincerity, honesty, integrity, fidelity, that''s right'), +('誠に', 'まことに', 'indeed, really, absolutely, truly, actually, very, quite'), +('嘘から出たまこと', 'うそからでたまこと', 'something intended as a lie or joke which (by chance) ends up being true, lie turned truth'), +('作る', 'つくる', 'to make, to produce, to manufacture, to build, to construct, to prepare (food), to brew (alcohol), to raise, to grow, to cultivate, to train, to till, to draw up (a document), to make out, to prepare, to write, to create (an artistic work, etc.), to compose, to coin (a phrase), to organize, to organise, to establish, to found, to have (a child), to make up (one''s face, etc.), to fabricate (an excuse, etc.), to give a (false) appearance, to feign (a smile, etc.), to put on a show of emotion, to form (a line, etc.), to set (a record), to commit (a sin, etc.)'), +('始める', 'はじめる', 'to start, to begin, to commence, to initiate, to originate, to start up (a business, society, etc.), to open (e.g. a store), to establish, to start ..., to begin to ...'), +('傷', 'きず', 'wound, injury, cut, gash, bruise, scratch, scrape, scar, chip, crack, scratch, nick, flaw, defect, weakness, weak point, stain (on one''s reputation), disgrace, dishonor, dishonour, (emotional) hurt, hurt feelings'), +('古傷', 'ふるきず', 'old wound, scar, old unpleasant incident, past misdeed'), +('潮', 'しお', 'tide, current, sea water, opportunity, chance, thin soup of fish or shellfish boiled in seawater'), +('潮時', 'しおどき', 'tidal hour, right time, favourable opportunity (favorable)'), +('黒潮', 'くろしお', 'Kuroshio Current, Japan Current'), +('赤潮', 'あかしお', 'red tide'), +('潮', 'しお', 'tide, current, sea water, opportunity, chance, thin soup of fish or shellfish boiled in seawater'), +('潮汁', 'うしおじる', 'thin soup of fish or shellfish boiled in seawater'), +('夕潮', 'ゆうしお', 'evening tide'), +('担ぐ', 'かつぐ', 'to shoulder, to carry on one''s shoulder, to nominate for a position, to choose as a representative, to take (someone) for a ride, to deceive, to take in, to be caught up in superstition'), +('担う', 'になう', 'to carry on one''s shoulder, to shoulder, to bear, to bear (burden, responsibility, etc.), to take upon oneself'), +('著す', 'あらわす', 'to write, to publish'), +('著しい', 'いちじるしい', 'striking, remarkable, considerable'), +('退く', 'しりぞく', 'to step back, to move back, to retreat, to withdraw (from the presence of a superior), to leave, to exit, to resign, to retire, to quit, to concede'), +('退ける', 'しりぞける', 'to repel, to drive away, to repulse, to reject'), +('退く', 'ひく', 'to move back, to draw back, to recede, to lessen, to subside, to ebb, to go down (e.g. of swelling), to resign, to retire, to quit'), +('退く', 'どく', 'to step aside, to move (i.e. out of the way), to make way, to resign, to retire, to quit, to secede'), +('退ける', 'のける', 'to put something out of the way, to move (something, someone) aside, to remove, to exclude, to take away, to set aside, to keep apart, to remove (someone) from the group, to shun, to do well despite difficulties, to accomplish despite adversity, to do resolutely, to do boldly'), +('退く', 'どく', 'to step aside, to move (i.e. out of the way), to make way, to resign, to retire, to quit, to secede'), +('探る', 'さぐる', 'to feel around for, to fumble for, to grope for, to search for, to look for, to investigate, to probe into, to spy on, to sound out, to explore (parts unknown), to enjoy (natural beauty)'), +('探す', 'さがす', 'to search for, to look for, to hunt for, to seek, to search (a house, pocket, etc.), to search through, to rummage in (e.g. a drawer), to fish around'), +('尊い', 'とうとい', 'precious, valuable, priceless, noble, exalted, sacred'), +('尊い油', 'たっといあぶら', 'anointing oil'), +('尊い', 'とうとい', 'precious, valuable, priceless, noble, exalted, sacred'), +('尊い油', 'たっといあぶら', 'anointing oil'), +('貴ぶ', 'とうとぶ', 'to value, to prize, to esteem, to respect'), +('貴ぶ', 'とうとぶ', 'to value, to prize, to esteem, to respect'), +('暖か', 'あたたか', 'warm, mild, genial'), +('暖かい', 'あたたかい', 'warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money'), +('暖かい', 'あたたかい', 'warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money'), +('温かい歓迎', 'あたたかいかんげい', 'warm reception, cordial welcome, warm greeting'), +('温まる', 'あたたまる', 'to warm oneself, to sun oneself, to warm up, to get warm'), +('温める', 'あたためる', 'to warm, to heat, to sit on (an idea, etc.), to keep to oneself'), +('頂く', 'いただく', 'to receive, to get, to accept, to take, to buy, to eat, to drink, to be crowned with, to wear (on one''s head), to have (on top), to have (as one''s leader), to live under (a ruler), to install (a president), to get someone to do something'), +('頂', 'いただき', 'crown (of head), summit (of mountain), spire, easy win for one, something received'), +('頂きます', 'いただきます', 'thank you (for the meal just served), I receive (this meal)'), +('山の頂', 'やまのいただき', 'mountain top, summit, peak'), +('値', 'ね', 'price, cost, value, worth, merit'), +('値段', 'ねだん', 'price, cost'), +('安値', 'やすね', 'low price'), +('底値', 'そこね', 'bottom price'), +('値', 'あたい', 'price, cost, value, worth, merit, value'), +('値する', 'あたいする', 'to be worth, to be worthy of, to deserve, to merit'), +('最初の値', 'さいしょのあたい', 'initial value'), +('永らえる', 'ながらえる', 'to have a long life, to live a long time'), +('痛い', 'いたい', 'painful, sore, cringy, embarrassing, exceeding'), +('痛い目', 'いたいめ', 'painful experience'), +('痛む', 'いたむ', 'to hurt, to ache, to feel a pain, to be injured, to be spoiled (e.g. food), to be damaged'), +('痛ましい', 'いたましい', 'pitiful, heartbreaking, heartrending, touching, tragic, sad, hurtful'), +('痛める', 'いためる', 'to hurt, to injure, to cause pain, to harm, to damage, to spoil, to worry, to bother, to be grieved over, to afflict, to cause financial loss, to hurt one''s pocket'), +('腸', 'ちょう', 'guts, bowels, intestines'), +('はらわたが煮えくり返る', 'はらわたがにえくりかえる', 'to be furious, to seethe with anger, to have one''s blood boiling'), +('腸', 'ちょう', 'guts, bowels, intestines'), +('腸香', 'わたか', 'wataka (Ischikauia steenackeri) (freshwater fish of the carp family)'), +('大腸', 'だいちょう', 'large intestine, large bowel, colon'), +('背わた', 'せわた', 'vein of a shrimp (prawn), digestive tract of a shrimp, sand vein'), +('撃つ', 'うつ', 'to shoot (at), to attack, to defeat, to destroy, to avenge'), +('敵', 'かたき', 'rival, opponent, adversary, competitor, enemy (esp. one with which there is longstanding enmity), foe, revenge, spouse'), +('仇同士', 'かたきどうし', 'mutual enemies'), +('目の敵', 'めのかたき', 'enemy'), +('仇を討つ', 'かたきをうつ', 'to avenge (someone) by striking down their killer'), +('叶う', 'かなう', 'to come true (of a wish, prayer, etc.), to be realized, to be fulfilled, to suit (e.g. a purpose), to meet (wishes, ideals, etc.), to conform to (standards, rules, etc.), to be consistent with, to match (implies competition), to rival, to bear (e.g. the heat)'), +('届ける', 'とどける', 'to deliver, to forward, to send, to report, to notify, to file notice (to the authorities), to give notice, to register'), +('届く', 'とどく', 'to reach, to touch, to get to, to carry (of sound), to be delivered, to arrive, to be attentive, to be scrupulous, to be thorough, to be realized (of a desire), to be fulfilled, to get through (to someone), to be appreciated, to make an impression'), +('乳', 'ちち', 'milk, breast, loop, decorative bump (on a hanging bell)'), +('乳首', 'ちくび', 'nipple, teat'), +('無い乳', 'ないちち', 'very small breasts'), +('貰い乳', 'もらいぢち', 'having one''s baby nursed by another woman, wet-nursing, breast milk received from another woman'), +('乳', 'ちち', 'milk, breast, loop, decorative bump (on a hanging bell)'), +('乳房', 'ちぶさ', 'breast, udder'), +('無い乳', 'ないちち', 'very small breasts'), +('貰い乳', 'もらいぢち', 'having one''s baby nursed by another woman, wet-nursing, breast milk received from another woman'), +('収める', 'おさめる', 'to pay (fees, taxes, etc.), to dedicate, to make an offering, to supply, to put away (in), to keep, to store, to finish, to bring to a close, to restore (something to its place), to achieve (e.g. a result)'), +('収まる', 'おさまる', 'to fit into (a box, frame, category, etc.), to be contained within, to fall within (e.g. a budget), to settle down (into), to be installed (in one''s rightful place), to be returned (to one''s original position), to settle into (one''s position), to take up (a post), to occupy (a role), to be delivered, to be paid (e.g. taxes), to be settled (dispute, conflict, etc.), to be sorted, to subside (e.g. wind), to calm down, to abate, to be satisfied (e.g. with an answer), to consent, to agree'), +('俵', 'たわら', 'straw bag, sack, bale, counter for sacks (of rice, potatoes, coal, etc.)'), +('俵編', 'たわらあみ', 'making bags out of this year''s straw (during autumn)'), +('拝む', 'おがむ', 'to assume the posture of praying, to press the palms and fingers of both hands together, to do reverence (e.g. before a statue of the Buddha), to pay one''s respects, to beg, to make a supplication, to see (something or someone of high status)'), +('奮う', 'ふるう', 'to muster (e.g. one''s courage), to call forth, to rouse up, to be enlivened, to be invigorated'), +('難い', 'かたい', 'difficult, hard'), +('難しい', 'むずかしい', 'difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky'), +('難しい顔をする', 'むずかしいかおをする', 'to look displeased, to frown, to scowl, to look grave, to look serious'), +('難しい', 'むずかしい', 'difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky'), +('背', 'せ', 'back, reverse, rear side, back (e.g. of a chair), spine (of a book), height, stature, ridge (of a mountain)'), +('背', 'せい', 'height, stature'), +('膝皿貝', 'ひざらがい', 'chiton (any marine mollusk of the class Polyplacophora), sea cradle, Japanese chiton (Acanthopleura japonica)'), +('角背', 'かくせ', 'flat back (book spine), square back'), +('背', 'せい', 'height, stature'), +('背丈', 'せたけ', 'stature, height'), +('背く', 'そむく', 'to run counter to, to go against, to disobey, to infringe'), +('背ける', 'そむける', 'to turn (one''s face) away, to avert (one''s eyes)'), +('腹', 'はら', 'abdomen, belly, stomach, womb, one''s mind, one''s real intentions, one''s true motive, courage, nerve, willpower, generosity, magnanimity, feelings, emotions, wide middle part, bulging part, inside, interior, inner part, anti-node, counter for hard roe, counter for containers with bulging middles (pots, vases, etc.)'), +('腹痛', 'ふくつう', 'stomach ache, abdominal pain'), +('業腹', 'ごうはら', 'spite, resentment'), +('赤腹', 'あかはら', 'brown-headed thrush (Turdus chrysolaus), Japanese dace (Tribolodon hakonensis), Japanese fire belly newt (Cynops pyrrhogaster), dysentery'), +('並', 'なみ', 'average, medium, common, ordinary, mid-grade (item), regular grade, same level as, equal to, equivalent to, on par with, each (e.g. month), every, row of (teeth, houses, etc.), line of'), +('並木', 'なみき', 'roadside tree, row of trees'), +('軒並み', 'のきなみ', 'row of houses, every house, each house, every door, all, totally, altogether, across the board'), +('毛並み', 'けなみ', 'coat (of hair or fur), lie of (dog''s) hair, type, sort, lineage, breeding'), +('並', 'なみ', 'average, medium, common, ordinary, mid-grade (item), regular grade, same level as, equal to, equivalent to, on par with, each (e.g. month), every, row of (teeth, houses, etc.), line of'), +('並木', 'なみき', 'roadside tree, row of trees'), +('軒並み', 'のきなみ', 'row of houses, every house, each house, every door, all, totally, altogether, across the board'), +('毛並み', 'けなみ', 'coat (of hair or fur), lie of (dog''s) hair, type, sort, lineage, breeding'), +('並べる', 'ならべる', 'to line up, to set up, to arrange in a line, to enumerate, to itemize, to be equal (to), to compare well (with), to be as good (as)'), +('並ぶ', 'ならぶ', 'to line up, to stand in a line, to rival, to match, to equal'), +('並びに', 'ならびに', 'and (also), both ... and, as well as'), +('認める', 'みとめる', 'to recognize, to recognise, to observe, to notice, to deem, to judge, to assess, to approve, to deem acceptable, to allow, to admit, to accept, to confess (to a charge), to watch steadily, to observe carefully, to renown, to give renown to, to appreciate, to acknowledge'), +('認める', 'したためる', 'to write (e.g. a letter), to draw up (a document), to take down (e.g. notes), to have (lunch, dinner, etc.), to eat'), +('否', 'いいえ', 'no, nay, well, er, why, you''re welcome, not at all, don''t mention it'), +('否む', 'いなむ', 'to refuse, to decline, to deny'), +('否', 'いいえ', 'no, nay, well, er, why, you''re welcome, not at all, don''t mention it'), +('否々', 'いやいや', 'no!, no no!, no, not at all'), +('閉じる', 'とじる', 'to close (e.g. book, eyes, meeting, etc.), to shut'), +('閉ざす', 'とざす', 'to shut, to close, to fasten, to lock, to block (a street, entrance, etc.), to shut in (with snow, ice, etc.), to shut off, to cut off, to cover (e.g. in darkness), to consume (with negative feelings), to fill (e.g. with sadness), to bury (e.g. in grief)'), +('閉める', 'しめる', 'to close, to shut'), +('閉まる', 'しまる', 'to be shut, to close, to be closed, to be firm (of a body, face, etc.), to be well-knit, to be locked, to tighten, to be tightened, to become sober, to become tense'), +('閉てる', 'たてる', 'to shut, to close'), +('暮れる', 'くれる', 'to get dark, to grow dark, to end (of a day, year, season, etc.), to come to an end, to close, to be sunk in (e.g. despair), to be lost in (e.g. thought), to be overcome with'), +('暮らす', 'くらす', 'to live, to get along, to spend (time)'), +('補う', 'おぎなう', 'to supplement, to make up for, to compensate for, to cover (a shortage, loss, etc.), to fill (e.g. a vacancy)'), +('片', 'かた', 'one (of a pair), incomplete, imperfect, fragmentary, few, little, off-centre, remote, side, problem, question, matters'), +('片付ける', 'かたづける', 'to tidy up, to put in order, to straighten up, to put away, to settle (problem), to clear (dispute), to finish, to bring something to an end, to marry off (e.g. a daughter), to do away with someone, to bump someone off'), +('秘める', 'ひめる', 'to hide, to keep to oneself'), +('密か', 'ひそか', 'secret, private, surreptitious'), +('忘れる', 'わすれる', 'to forget, to leave carelessly, to be forgetful of, to forget about, to forget (an article)'), +('宝', 'たから', 'treasure'), +('宝くじ', 'たからくじ', 'lottery, lottery ticket'), +('お宝', 'おたから', 'treasure, picture of a treasure ship, money, cash'), +('正直は一生の宝', 'しょうじきはいっしょうのたから', 'honesty is the best policy'), +('亡い', 'ない', 'dead'), +('滅びる', 'ほろびる', 'to go to ruin, to go under, to fall, to be destroyed, to die out, to become extinct, to perish'), +('滅ぶ', 'ほろぶ', 'to be ruined, to go under, to perish, to be destroyed'), +('滅ぼす', 'ほろぼす', 'to destroy, to overthrow, to wreck, to ruin'), +('密か', 'ひそか', 'secret, private, surreptitious'), +('密か事', 'みそかごと', 'secret, private matter, amorous affair, liaison'), +('訪れる', 'おとずれる', 'to visit, to call on, to arrive (season, time, situation, etc.), to come, to appear, to make a sound, to send a letter, to inquire about a letter'), +('訪ねる', 'たずねる', 'to visit, to call on, to pay a visit to'), +('問う', 'とう', 'to ask, to inquire, to blame (someone) for, to accuse of, to pursue (question of responsibility), to charge with, to care about, to regard as important, to call into question, to doubt, to question'), +('訳', 'わけ', 'conclusion from reasoning, judgement or calculation based on something read or heard, reason, cause, meaning, circumstances, situation'), +('訳がない', 'わけがない', 'there is no way that ..., easy, simple'), +('言い訳', 'いいわけ', 'excuse, explanation'), +('申し訳', 'もうしわけ', 'apology, excuse'), +('預ける', 'あずける', 'to leave (in someone''s keeping), to put (in someone''s care), to place (in someone''s custody), to entrust (someone) with, to deposit, to put (someone) in charge of, to leave (a matter) in someone''s hands, to let (someone) decide, to lean on, to put one''s weight on'), +('預かる', 'あずかる', 'to look after, to take care of, to keep, to hold on to, to keep in custody, to be put in charge of, to be given responsibility for, to be entrusted with, to withhold (an announcement), to reserve (judgment), to leave undecided, to take upon oneself (to do), to settle (a matter) oneself'), +('優しい', 'やさしい', 'tender, kind, gentle, graceful, affectionate, amiable'), +('優しい声', 'やさしいこえ', 'soft voice'), +('優れる', 'すぐれる', 'to surpass, to outstrip, to excel'), +('勝る', 'まさる', 'to excel, to surpass, to exceed, to have an edge, to be superior, to outrival, to outweigh, to preponderate'), +('優るとも劣らない', 'まさるともおとらない', 'not at all inferior to, rival or surpass, compare favorably (with)'), +('幼い', 'おさない', 'very young, little, childish, immature'), +('幼い頃', 'おさないころ', 'when one was a very young child, very early in one''s life'), +('卵', 'たまご', 'eggs, egg, spawn, roe, (hen''s) egg, (an expert) in the making, beginning, origin, infancy'), +('卵形', 'らんけい', 'oval shape, egg shape'), +('乾燥卵', 'かんそうらん', 'powdered eggs, dehydrated eggs, dried eggs'), +('冷凍卵', 'れいとうらん', 'frozen egg'), +('裏', 'うら', 'opposite side, bottom, other side, side hidden from view, undersurface, reverse side, rear, back, behind, lining, inside, in the shadows, behind the scenes, offstage, behind (someone''s) back, more (to something than meets the eye), hidden side (e.g. of one''s personality), unknown circumstances, different side, proof, opposite (of a prediction, common sense, etc.), contrary, inverse (of a hypothesis, etc.), bottom (of an inning), last half (of an inning)'), +('裏切る', 'うらぎる', 'to betray, to turn traitor to, to double-cross'), +('舞台裏', 'ぶたいうら', 'offstage, backstage, behind the scenes'), +('口裏', 'くちうら', 'determining a speaker''s true or hidden meaning, determining a speaker''s intentions from his manner of speech, divining good or bad luck from listening to someone'), +('朗らか', 'ほがらか', 'cheerful, merry, sunny, melodious, bright (sky, day, etc.), fine, clear'), +('欲する', 'ほっする', 'to want, to desire'), +('欲しい', 'ほしい', 'wanting (to have), desiring, wishing for, I want (you, them, etc.) to (do)'), +('欲しいだけ', 'ほしいだけ', 'as much as one wants, as many as one wants, all that one wishes for'), +('臨む', 'のぞむ', 'to look out on, to overlook, to front onto, to face (a situation, crisis, etc.), to meet (e.g. death), to be confronted by, to deal with (an issue), to attend (e.g. a function), to appear (e.g. in court), to be present at, to take part in'), +('乱れる', 'みだれる', 'to be disordered, to be disarranged, to be disarrayed, to be disheveled, to be dishevelled, to be discomposed, to be upset, to get confused, to be disturbed, to lapse into chaos (due to war, etc.)'), +('乱す', 'みだす', 'to throw into disorder, to disarrange, to disturb (order, peace, etc.), to corrupt (public morals), to dishevel (hair)'), +('乱れる', 'みだれる', 'to be disordered, to be disarranged, to be disarrayed, to be disheveled, to be dishevelled, to be discomposed, to be upset, to get confused, to be disturbed, to lapse into chaos (due to war, etc.)'), +('乱す', 'みだす', 'to throw into disorder, to disarrange, to disturb (order, peace, etc.), to corrupt (public morals), to dishevel (hair)'), +('論う', 'あげつらう', 'to discuss, to find fault with, to criticize, to criticise'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(7781, '異'), +(7782, '異'), +(7783, '異'), +(7784, '異'), +(7785, '異'), +(7786, '遺'), +(7787, '延'), +(7788, '延'), +(7789, '延'), +(7790, '延'), +(7791, '延'), +(7792, '映'), +(7793, '映'), +(7794, '映'), +(7795, '沿'), +(7796, '我'), +(7797, '我'), +(7798, '我'), +(7799, '我'), +(7800, '我'), +(7801, '灰'), +(7802, '灰'), +(7803, '灰'), +(7804, '灰'), +(7805, '拡'), +(7806, '拡'), +(7807, '机'), +(7808, '机'), +(7809, '机'), +(7810, '机'), +(7811, '郷'), +(7812, '郷'), +(7813, '郷'), +(7814, '革'), +(7815, '革'), +(7816, '革'), +(7817, '革'), +(7818, '供'), +(7819, '供'), +(7820, '供'), +(7821, '供'), +(7822, '巻'), +(7823, '巻'), +(7824, '巻'), +(7825, '巻'), +(7826, '巻'), +(7827, '巻'), +(7828, '巻'), +(7829, '巻'), +(7830, '巻'), +(7831, '割'), +(7832, '割'), +(7833, '割'), +(7834, '割'), +(7835, '割'), +(7836, '割'), +(7837, '割'), +(7838, '割'), +(7839, '割'), +(7840, '割'), +(7841, '割'), +(7842, '勤'), +(7843, '勤'), +(7844, '勤'), +(7845, '吸'), +(7846, '干'), +(7847, '干'), +(7848, '胸'), +(7849, '胸'), +(7850, '胸'), +(7851, '胸'), +(7852, '貴'), +(7853, '貴'), +(7854, '貴'), +(7855, '貴'), +(7856, '貴'), +(7857, '危'), +(7858, '危'), +(7859, '危'), +(7860, '危'), +(7861, '簡'), +(7862, '揮'), +(7863, '株'), +(7864, '株'), +(7865, '株'), +(7866, '株'), +(7867, '看'), +(7868, '疑'), +(7869, '筋'), +(7870, '筋'), +(7871, '筋'), +(7872, '筋'), +(7873, '呼'), +(7874, '呼'), +(7875, '激'), +(7876, '源'), +(7877, '源'), +(7878, '敬'), +(7879, '警'), +(7880, '絹'), +(7881, '絹'), +(7882, '絹'), +(7883, '穴'), +(7884, '穴'), +(7885, '穴'), +(7886, '穴'), +(7887, '厳'), +(7888, '厳'), +(7889, '厳'), +(7890, '厳'), +(7891, '紅'), +(7892, '紅'), +(7893, '紅'), +(7894, '紅'), +(7895, '紅'), +(7896, '紅'), +(7897, '紅'), +(7898, '紅'), +(7899, '紅'), +(7900, '己'), +(7901, '己'), +(7902, '己'), +(7903, '己'), +(7904, '己'), +(7905, '己'), +(7906, '后'), +(7907, '后'), +(7908, '降'), +(7909, '降'), +(7910, '降'), +(7911, '降'), +(7912, '降'), +(7913, '降'), +(7914, '降'), +(7915, '誤'), +(7916, '刻'), +(7917, '刻'), +(7918, '刻'), +(7919, '鋼'), +(7920, '鋼'), +(7921, '鋼'), +(7922, '済'), +(7923, '済'), +(7924, '済'), +(7925, '座'), +(7926, '捨'), +(7927, '捨'), +(7928, '骨'), +(7929, '骨'), +(7930, '骨'), +(7931, '骨'), +(7932, '裁'), +(7933, '裁'), +(7934, '権'), +(7935, '私'), +(7936, '私'), +(7937, '私'), +(7938, '私'), +(7939, '私'), +(7940, '砂'), +(7941, '砂'), +(7942, '砂'), +(7943, '砂'), +(7944, '尺'), +(7945, '尺'), +(7946, '射'), +(7947, '射'), +(7948, '射'), +(7949, '視'), +(7950, '困'), +(7951, '詞'), +(7952, '詞'), +(7953, '詞'), +(7954, '詞'), +(7955, '至'), +(7956, '至'), +(7957, '姿'), +(7958, '姿'), +(7959, '姿'), +(7960, '姿'), +(7961, '宗'), +(7962, '宗'), +(7963, '収'), +(7964, '収'), +(7965, '樹'), +(7966, '樹'), +(7967, '樹'), +(7968, '樹'), +(7969, '若'), +(7970, '若'), +(7971, '若'), +(7972, '若'), +(7973, '若'), +(7974, '若'), +(7975, '就'), +(7976, '就'), +(7977, '縮'), +(7978, '縮'), +(7979, '縮'), +(7980, '縮'), +(7981, '縮'), +(7982, '蚕'), +(7983, '蚕'), +(7984, '蚕'), +(7985, '蚕'), +(7986, '蚕'), +(7987, '蚕'), +(7988, '蚕'), +(7989, '熟'), +(7990, '縦'), +(7991, '縦'), +(7992, '処'), +(7993, '処'), +(7994, '処'), +(7995, '処'), +(7996, '従'), +(7997, '従'), +(7998, '除'), +(7999, '将'), +(8000, '将'), +(8001, '将'), +(8002, '将'), +(8003, '承'), +(8004, '承'), +(8005, '傷'), +(8006, '傷'), +(8007, '傷'), +(8008, '傷'), +(8009, '傷'), +(8010, '傷'), +(8011, '諸'), +(8012, '諸'), +(8013, '諸'), +(8014, '針'), +(8015, '針'), +(8016, '針'), +(8017, '針'), +(8018, '垂'), +(8019, '垂'), +(8020, '垂'), +(8021, '垂'), +(8022, '垂'), +(8023, '垂'), +(8024, '障'), +(8025, '推'), +(8026, '蒸'), +(8027, '蒸'), +(8028, '蒸'), +(8029, '装'), +(8030, '装'), +(8031, '洗'), +(8032, '舌'), +(8033, '舌'), +(8034, '舌'), +(8035, '舌'), +(8036, '聖'), +(8037, '聖'), +(8038, '聖'), +(8039, '窓'), +(8040, '窓'), +(8041, '窓'), +(8042, '窓'), +(8043, '窓'), +(8044, '染'), +(8045, '染'), +(8046, '染'), +(8047, '染'), +(8048, '染'), +(8049, '専'), +(8050, '専'), +(8051, '泉'), +(8052, '泉'), +(8053, '泉'), +(8054, '宣'), +(8055, '宣'), +(8056, '銭'), +(8057, '銭'), +(8058, '銭'), +(8059, '銭'), +(8060, '奏'), +(8061, '善'), +(8062, '善'), +(8063, '善'), +(8064, '善'), +(8065, '善'), +(8066, '盛'), +(8067, '盛'), +(8068, '盛'), +(8069, '盛'), +(8070, '操'), +(8071, '操'), +(8072, '操'), +(8073, '蔵'), +(8074, '蔵'), +(8075, '蔵'), +(8076, '蔵'), +(8077, '誠'), +(8078, '誠'), +(8079, '誠'), +(8080, '創'), +(8081, '創'), +(8082, '創'), +(8083, '創'), +(8084, '潮'), +(8085, '潮'), +(8086, '潮'), +(8087, '潮'), +(8088, '潮'), +(8089, '潮'), +(8090, '潮'), +(8091, '担'), +(8092, '担'), +(8093, '著'), +(8094, '著'), +(8095, '退'), +(8096, '退'), +(8097, '退'), +(8098, '退'), +(8099, '退'), +(8100, '退'), +(8101, '探'), +(8102, '探'), +(8103, '尊'), +(8104, '尊'), +(8105, '尊'), +(8106, '尊'), +(8107, '尊'), +(8108, '尊'), +(8109, '暖'), +(8110, '暖'), +(8111, '暖'), +(8112, '暖'), +(8113, '暖'), +(8114, '暖'), +(8115, '頂'), +(8116, '頂'), +(8117, '頂'), +(8118, '頂'), +(8119, '値'), +(8120, '値'), +(8121, '値'), +(8122, '値'), +(8123, '値'), +(8124, '値'), +(8125, '値'), +(8126, '存'), +(8127, '痛'), +(8128, '痛'), +(8129, '痛'), +(8130, '痛'), +(8131, '痛'), +(8132, '腸'), +(8133, '腸'), +(8134, '腸'), +(8135, '腸'), +(8136, '腸'), +(8137, '腸'), +(8138, '討'), +(8139, '敵'), +(8140, '敵'), +(8141, '敵'), +(8142, '敵'), +(8143, '敵'), +(8144, '届'), +(8145, '届'), +(8146, '乳'), +(8147, '乳'), +(8148, '乳'), +(8149, '乳'), +(8150, '乳'), +(8151, '乳'), +(8152, '乳'), +(8153, '乳'), +(8154, '納'), +(8155, '納'), +(8156, '俵'), +(8157, '俵'), +(8158, '拝'), +(8159, '奮'), +(8160, '難'), +(8161, '難'), +(8162, '難'), +(8163, '難'), +(8164, '背'), +(8165, '背'), +(8166, '背'), +(8167, '背'), +(8168, '背'), +(8169, '背'), +(8170, '背'), +(8171, '背'), +(8172, '腹'), +(8173, '腹'), +(8174, '腹'), +(8175, '腹'), +(8176, '並'), +(8177, '並'), +(8178, '並'), +(8179, '並'), +(8180, '並'), +(8181, '並'), +(8182, '並'), +(8183, '並'), +(8184, '並'), +(8185, '並'), +(8186, '並'), +(8187, '認'), +(8188, '認'), +(8189, '否'), +(8190, '否'), +(8191, '否'), +(8192, '否'), +(8193, '閉'), +(8194, '閉'), +(8195, '閉'), +(8196, '閉'), +(8197, '閉'), +(8198, '暮'), +(8199, '暮'), +(8200, '補'), +(8201, '片'), +(8202, '片'), +(8203, '秘'), +(8204, '秘'), +(8205, '忘'), +(8206, '宝'), +(8207, '宝'), +(8208, '宝'), +(8209, '宝'), +(8210, '亡'), +(8211, '亡'), +(8212, '亡'), +(8213, '亡'), +(8214, '密'), +(8215, '密'), +(8216, '訪'), +(8217, '訪'), +(8218, '訪'), +(8219, '訳'), +(8220, '訳'), +(8221, '訳'), +(8222, '訳'), +(8223, '預'), +(8224, '預'), +(8225, '優'), +(8226, '優'), +(8227, '優'), +(8228, '優'), +(8229, '優'), +(8230, '幼'), +(8231, '幼'), +(8232, '卵'), +(8233, '卵'), +(8234, '卵'), +(8235, '卵'), +(8236, '裏'), +(8237, '裏'), +(8238, '裏'), +(8239, '裏'), +(8240, '朗'), +(8241, '欲'), +(8242, '欲'), +(8243, '欲'), +(8244, '臨'), +(8245, '乱'), +(8246, '乱'), +(8247, '乱'), +(8248, '乱'), +(8249, '論'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("こと"), +("こと.なる"), +("け"), +("のこ.す"), +("の.びる"), +("の.べる"), +("の.べ"), +("の.ばす"), +("うつ.る"), +("うつ.す"), +("は.える"), +("-ば.え"), +("そ.う"), +("-ぞ.い"), +("われ"), +("わ"), +("わ.が-"), +("わが-"), +("はい"), +("ひろ.がる"), +("ひろ.げる"), +("ひろ.める"), +("つくえ"), +("さと"), +("かわ"), +("そな.える"), +("とも"), +("-ども"), +("ま.く"), +("まき"), +("ま.き"), +("わ.る"), +("わり"), +("わ.り"), +("わ.れる"), +("さ.く"), +("つと.める"), +("-づと.め"), +("つと.まる"), +("いそ.しむ"), +("す.う"), +("ほ.す"), +("ほ.し-"), +("-ぼ.し"), +("ひ.る"), +("むね"), +("むな-"), +("たっと.い"), +("とうと.い"), +("たっと.ぶ"), +("とうと.ぶ"), +("あぶ.ない"), +("あや.うい"), +("あや.ぶむ"), +("えら.ぶ"), +("ふだ"), +("ふる.う"), +("かぶ"), +("み.る"), +("うたが.う"), +("すじ"), +("よ.ぶ"), +("はげ.しい"), +("みなもと"), +("うやま.う"), +("いまし.める"), +("きぬ"), +("あな"), +("おごそ.か"), +("きび.しい"), +("いか.めしい"), +("いつくし"), +("べに"), +("くれない"), +("あか.い"), +("おのれ"), +("つちのと"), +("な"), +("きさき"), +("お.りる"), +("お.ろす"), +("ふ.る"), +("ふ.り"), +("くだ.る"), +("くだ.す"), +("あやま.る"), +("-あやま.る"), +("きざ.む"), +("きざ.み"), +("はがね"), +("す.む"), +("-ず.み"), +("-ずみ"), +("す.まない"), +("す.ます"), +("-す.ます"), +("すく.う"), +("な.す"), +("わたし"), +("わた.る"), +("すわ.る"), +("す.てる"), +("ほね"), +("た.つ"), +("さば.く"), +("おもり"), +("かり"), +("はか.る"), +("わたくし"), +("わたし"), +("すな"), +("さし"), +("い.る"), +("さ.す"), +("う.つ"), +("み.る"), +("こま.る"), +("ことば"), +("いた.る"), +("ふみ"), +("すがた"), +("むね"), +("おさ.める"), +("おさ.まる"), +("き"), +("おお.い"), +("わか.い"), +("わか-"), +("も.しくわ"), +("も.し"), +("も.しくは"), +("ごと.し"), +("つ.く"), +("つ.ける"), +("ちぢ.む"), +("ちぢ.まる"), +("ちぢ.める"), +("ちぢ.れる"), +("ちぢ.らす"), +("かいこ"), +("こ"), +("う.れる"), +("たて"), +("ところ"), +("-こ"), +("お.る"), +("したが.う"), +("したが.える"), +("より"), +("のぞ.く"), +("-よ.け"), +("まさ.に"), +("はた"), +("まさ"), +("ひきい.る"), +("もって"), +("うけたまわ.る"), +("う.ける"), +("きず"), +("いた.む"), +("いた.める"), +("もろ"), +("はり"), +("た.れる"), +("た.らす"), +("た.れ"), +("-た.れ"), +("なんなんと.す"), +("さわ.る"), +("お.す"), +("む.す"), +("む.れる"), +("む.らす"), +("よそお.う"), +("よそお.い"), +("あら.う"), +("した"), +("ひじり"), +("まど"), +("てんまど"), +("けむだし"), +("そ.める"), +("そ.まる"), +("し.みる"), +("し.み"), +("もっぱ.ら"), +("いずみ"), +("のたま.う"), +("ぜに"), +("すき"), +("かな.でる"), +("よ.い"), +("い.い"), +("よ.く"), +("よし.とする"), +("も.る"), +("さか.る"), +("さか.ん"), +("みさお"), +("あやつ.る"), +("くら"), +("おさ.める"), +("かく.れる"), +("まこと"), +("つく.る"), +("はじ.める"), +("きず"), +("けず.しける"), +("しお"), +("うしお"), +("はらわた"), +("かつ.ぐ"), +("にな.う"), +("あらわ.す"), +("いちじる.しい"), +("しりぞ.く"), +("しりぞ.ける"), +("ひ.く"), +("の.く"), +("の.ける"), +("ど.く"), +("さぐ.る"), +("さが.す"), +("たっと.い"), +("とうと.い"), +("たっと.ぶ"), +("とうと.ぶ"), +("あたた.か"), +("あたた.かい"), +("あたた.まる"), +("あたた.める"), +("いただ.く"), +("いただき"), +("ね"), +("あたい"), +("ながら.える"), +("あ.る"), +("たも.つ"), +("と.う"), +("いた.い"), +("いた.む"), +("いた.ましい"), +("いた.める"), +("はらわた"), +("わた"), +("やくしょ"), +("う.つ"), +("かたき"), +("あだ"), +("かな.う"), +("とど.ける"), +("-とど.け"), +("とど.く"), +("なかま"), +("むら"), +("ちち"), +("ち"), +("のうずる"), +("おさ.める"), +("-おさ.める"), +("おさ.まる"), +("たわら"), +("おが.む"), +("おろが.む"), +("ふる.う"), +("かた.い"), +("-がた.い"), +("むずか.しい"), +("むづか.しい"), +("むつか.しい"), +("-にく.い"), +("せ"), +("せい"), +("そむ.く"), +("そむ.ける"), +("はら"), +("な.み"), +("なみ"), +("なら.べる"), +("なら.ぶ"), +("なら.びに"), +("みと.める"), +("したた.める"), +("いな"), +("いや"), +("と.じる"), +("と.ざす"), +("し.める"), +("し.まる"), +("た.てる"), +("く.れる"), +("く.らす"), +("おぎな.う"), +("かた-"), +("かた"), +("ひ.める"), +("ひそ.か"), +("かく.す"), +("わす.れる"), +("たから"), +("な.い"), +("な.き-"), +("ほろ.びる"), +("ほろ.ぶ"), +("ほろ.ぼす"), +("ひそ.か"), +("おとず.れる"), +("たず.ねる"), +("と.う"), +("とばり"), +("わけ"), +("あず.ける"), +("あず.かる"), +("やさ.しい"), +("すぐ.れる"), +("まさ.る"), +("おさな.い"), +("たまご"), +("うら"), +("ほが.らか"), +("あき.らか"), +("ほっ.する"), +("ほ.しい"), +("のぞ.む"), +("みだ.れる"), +("みだ.る"), +("みだ.す"), +("みだ"), +("おさ.める"), +("わた.る"), +("あげつら.う"), +("み.る"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('異', 'こと'), +('異', 'こと.なる'), +('異', 'け'), +('遺', 'のこ.す'), +('延', 'の.びる'), +('延', 'の.べる'), +('延', 'の.べ'), +('延', 'の.ばす'), +('映', 'うつ.る'), +('映', 'うつ.す'), +('映', 'は.える'), +('映', '-ば.え'), +('沿', 'そ.う'), +('沿', '-ぞ.い'), +('我', 'われ'), +('我', 'わ'), +('我', 'わ.が-'), +('我', 'わが-'), +('灰', 'はい'), +('拡', 'ひろ.がる'), +('拡', 'ひろ.げる'), +('拡', 'ひろ.める'), +('机', 'つくえ'), +('郷', 'さと'), +('革', 'かわ'), +('供', 'そな.える'), +('供', 'とも'), +('供', '-ども'), +('巻', 'ま.く'), +('巻', 'まき'), +('巻', 'ま.き'), +('割', 'わ.る'), +('割', 'わり'), +('割', 'わ.り'), +('割', 'わ.れる'), +('割', 'さ.く'), +('勤', 'つと.める'), +('勤', '-づと.め'), +('勤', 'つと.まる'), +('勤', 'いそ.しむ'), +('吸', 'す.う'), +('干', 'ほ.す'), +('干', 'ほ.し-'), +('干', '-ぼ.し'), +('干', 'ひ.る'), +('胸', 'むね'), +('胸', 'むな-'), +('貴', 'たっと.い'), +('貴', 'とうと.い'), +('貴', 'たっと.ぶ'), +('貴', 'とうと.ぶ'), +('危', 'あぶ.ない'), +('危', 'あや.うい'), +('危', 'あや.ぶむ'), +('簡', 'えら.ぶ'), +('簡', 'ふだ'), +('揮', 'ふる.う'), +('株', 'かぶ'), +('看', 'み.る'), +('疑', 'うたが.う'), +('筋', 'すじ'), +('呼', 'よ.ぶ'), +('激', 'はげ.しい'), +('源', 'みなもと'), +('敬', 'うやま.う'), +('警', 'いまし.める'), +('絹', 'きぬ'), +('穴', 'あな'), +('厳', 'おごそ.か'), +('厳', 'きび.しい'), +('厳', 'いか.めしい'), +('厳', 'いつくし'), +('紅', 'べに'), +('紅', 'くれない'), +('紅', 'あか.い'), +('己', 'おのれ'), +('己', 'つちのと'), +('己', 'な'), +('后', 'きさき'), +('降', 'お.りる'), +('降', 'お.ろす'), +('降', 'ふ.る'), +('降', 'ふ.り'), +('降', 'くだ.る'), +('降', 'くだ.す'), +('誤', 'あやま.る'), +('誤', '-あやま.る'), +('刻', 'きざ.む'), +('刻', 'きざ.み'), +('鋼', 'はがね'), +('済', 'す.む'), +('済', '-ず.み'), +('済', '-ずみ'), +('済', 'す.まない'), +('済', 'す.ます'), +('済', '-す.ます'), +('済', 'すく.う'), +('済', 'な.す'), +('済', 'わたし'), +('済', 'わた.る'), +('座', 'すわ.る'), +('捨', 'す.てる'), +('骨', 'ほね'), +('裁', 'た.つ'), +('裁', 'さば.く'), +('権', 'おもり'), +('権', 'かり'), +('権', 'はか.る'), +('私', 'わたくし'), +('私', 'わたし'), +('砂', 'すな'), +('尺', 'さし'), +('射', 'い.る'), +('射', 'さ.す'), +('射', 'う.つ'), +('視', 'み.る'), +('困', 'こま.る'), +('詞', 'ことば'), +('至', 'いた.る'), +('冊', 'ふみ'), +('姿', 'すがた'), +('宗', 'むね'), +('収', 'おさ.める'), +('収', 'おさ.まる'), +('樹', 'き'), +('衆', 'おお.い'), +('若', 'わか.い'), +('若', 'わか-'), +('若', 'も.しくわ'), +('若', 'も.し'), +('若', 'も.しくは'), +('若', 'ごと.し'), +('就', 'つ.く'), +('就', 'つ.ける'), +('縮', 'ちぢ.む'), +('縮', 'ちぢ.まる'), +('縮', 'ちぢ.める'), +('縮', 'ちぢ.れる'), +('縮', 'ちぢ.らす'), +('蚕', 'かいこ'), +('蚕', 'こ'), +('熟', 'う.れる'), +('縦', 'たて'), +('処', 'ところ'), +('処', '-こ'), +('処', 'お.る'), +('従', 'したが.う'), +('従', 'したが.える'), +('従', 'より'), +('除', 'のぞ.く'), +('除', '-よ.け'), +('将', 'まさ.に'), +('将', 'はた'), +('将', 'まさ'), +('将', 'ひきい.る'), +('将', 'もって'), +('承', 'うけたまわ.る'), +('承', 'う.ける'), +('傷', 'きず'), +('傷', 'いた.む'), +('傷', 'いた.める'), +('諸', 'もろ'), +('針', 'はり'), +('垂', 'た.れる'), +('垂', 'た.らす'), +('垂', 'た.れ'), +('垂', '-た.れ'), +('垂', 'なんなんと.す'), +('障', 'さわ.る'), +('推', 'お.す'), +('蒸', 'む.す'), +('蒸', 'む.れる'), +('蒸', 'む.らす'), +('装', 'よそお.う'), +('装', 'よそお.い'), +('洗', 'あら.う'), +('舌', 'した'), +('聖', 'ひじり'), +('窓', 'まど'), +('窓', 'てんまど'), +('窓', 'けむだし'), +('染', 'そ.める'), +('染', 'そ.まる'), +('染', 'し.みる'), +('染', 'し.み'), +('専', 'もっぱ.ら'), +('泉', 'いずみ'), +('宣', 'のたま.う'), +('銭', 'ぜに'), +('銭', 'すき'), +('奏', 'かな.でる'), +('善', 'よ.い'), +('善', 'い.い'), +('善', 'よ.く'), +('善', 'よし.とする'), +('盛', 'も.る'), +('盛', 'さか.る'), +('盛', 'さか.ん'), +('操', 'みさお'), +('操', 'あやつ.る'), +('蔵', 'くら'), +('蔵', 'おさ.める'), +('蔵', 'かく.れる'), +('誠', 'まこと'), +('創', 'つく.る'), +('創', 'はじ.める'), +('創', 'きず'), +('創', 'けず.しける'), +('潮', 'しお'), +('潮', 'うしお'), +('臓', 'はらわた'), +('担', 'かつ.ぐ'), +('担', 'にな.う'), +('著', 'あらわ.す'), +('著', 'いちじる.しい'), +('退', 'しりぞ.く'), +('退', 'しりぞ.ける'), +('退', 'ひ.く'), +('退', 'の.く'), +('退', 'の.ける'), +('退', 'ど.く'), +('探', 'さぐ.る'), +('探', 'さが.す'), +('尊', 'たっと.い'), +('尊', 'とうと.い'), +('尊', 'たっと.ぶ'), +('尊', 'とうと.ぶ'), +('暖', 'あたた.か'), +('暖', 'あたた.かい'), +('暖', 'あたた.まる'), +('暖', 'あたた.める'), +('頂', 'いただ.く'), +('頂', 'いただき'), +('値', 'ね'), +('値', 'あたい'), +('存', 'ながら.える'), +('存', 'あ.る'), +('存', 'たも.つ'), +('存', 'と.う'), +('痛', 'いた.い'), +('痛', 'いた.む'), +('痛', 'いた.ましい'), +('痛', 'いた.める'), +('腸', 'はらわた'), +('腸', 'わた'), +('庁', 'やくしょ'), +('討', 'う.つ'), +('敵', 'かたき'), +('敵', 'あだ'), +('敵', 'かな.う'), +('届', 'とど.ける'), +('届', '-とど.け'), +('届', 'とど.く'), +('党', 'なかま'), +('党', 'むら'), +('乳', 'ちち'), +('乳', 'ち'), +('脳', 'のうずる'), +('納', 'おさ.める'), +('納', '-おさ.める'), +('納', 'おさ.まる'), +('俵', 'たわら'), +('拝', 'おが.む'), +('拝', 'おろが.む'), +('奮', 'ふる.う'), +('難', 'かた.い'), +('難', '-がた.い'), +('難', 'むずか.しい'), +('難', 'むづか.しい'), +('難', 'むつか.しい'), +('難', '-にく.い'), +('背', 'せ'), +('背', 'せい'), +('背', 'そむ.く'), +('背', 'そむ.ける'), +('腹', 'はら'), +('並', 'な.み'), +('並', 'なみ'), +('並', 'なら.べる'), +('並', 'なら.ぶ'), +('並', 'なら.びに'), +('認', 'みと.める'), +('認', 'したた.める'), +('否', 'いな'), +('否', 'いや'), +('閉', 'と.じる'), +('閉', 'と.ざす'), +('閉', 'し.める'), +('閉', 'し.まる'), +('閉', 'た.てる'), +('暮', 'く.れる'), +('暮', 'く.らす'), +('補', 'おぎな.う'), +('片', 'かた-'), +('片', 'かた'), +('秘', 'ひ.める'), +('秘', 'ひそ.か'), +('秘', 'かく.す'), +('忘', 'わす.れる'), +('宝', 'たから'), +('亡', 'な.い'), +('亡', 'な.き-'), +('亡', 'ほろ.びる'), +('亡', 'ほろ.ぶ'), +('亡', 'ほろ.ぼす'), +('密', 'ひそ.か'), +('訪', 'おとず.れる'), +('訪', 'たず.ねる'), +('訪', 'と.う'), +('幕', 'とばり'), +('訳', 'わけ'), +('預', 'あず.ける'), +('預', 'あず.かる'), +('優', 'やさ.しい'), +('優', 'すぐ.れる'), +('優', 'まさ.る'), +('幼', 'おさな.い'), +('卵', 'たまご'), +('裏', 'うら'), +('朗', 'ほが.らか'), +('朗', 'あき.らか'), +('欲', 'ほっ.する'), +('欲', 'ほ.しい'), +('臨', 'のぞ.む'), +('乱', 'みだ.れる'), +('乱', 'みだ.る'), +('乱', 'みだ.す'), +('乱', 'みだ'), +('乱', 'おさ.める'), +('乱', 'わた.る'), +('論', 'あげつら.う'), +('覧', 'み.る'); + +INSERT INTO Kanji_Result(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou) VALUES +("亜", 7, "Asia, rank next, come after, -ous", "二", 1, 1509, 7, true), +("哀", 9, "pathetic, grief, sorrow, pathos, pity, sympathize", "口", 1, 1715, 7, true), +("挨", 10, "approach, draw near, push open", "手", NULL, 2258, 7, true), +("曖", 17, "dark, not clear", "日", NULL, NULL, 7, true), +("握", 12, "grip, hold, mould sushi, bribe", "手", 1, 1003, 7, true), +("嵐", 12, "storm, tempest", "山", 1, 1910, 7, true), +("依", 8, "reliant, depend on, consequently, therefore, due to", "人", 2, 906, 7, true), +("扱", 6, "handle, entertain, thresh, strip", "手", 1, 1057, 7, true), +("宛", 8, "address, just like, fortunately", "宀", NULL, NULL, 7, true), +("尉", 11, "military officer, jailer, old man, rank", "寸", 1, 2007, 7, true), +("為", 9, "do, change, make, benefit, welfare, be of use, reach to, try, practice, cost, serve as, good, advantage, as a result of", "火", 1, 831, 7, true), +("畏", 9, "fear, majestic, graciously, be apprehensive", "田", NULL, 2389, 7, true), +("椅", 12, "chair", "木", NULL, 2245, 7, true), +("萎", 11, "wither, droop, lame", "艸", NULL, NULL, 7, true), +("彙", 13, "same kind, collect, classify, category, hedgehog", "彐", NULL, NULL, 7, true), +("違", 13, "difference, differ", "辵", 3, 344, 7, true), +("維", 14, "fiber, tie, rope", "糸", 1, 643, 7, true), +("壱", 7, "one (in documents)", "士", 1, 2351, 7, true), +("威", 9, "intimidate, dignity, majesty, menace, threaten", "女", 1, 1103, 7, true), +("偉", 12, "admirable, greatness, remarkable, conceited, famous, excellent", "人", 3, 1639, 7, true), +("逸", 11, "deviate, idleness, leisure, miss the mark, evade, elude, parry, diverge", "辵", 1, 1524, 7, true), +("咽", 9, "throat, choked, smothered, stuffy", "口", NULL, NULL, 7, true), +("緯", 16, "horizontal, woof, left & right, (parallels of) latitude, prediction", "糸", 1, 1430, 7, true), +("姻", 9, "matrimony, marry", "女", 1, 1985, 7, true), +("芋", 6, "potato", "艸", 1, 2418, 7, true), +("淫", 11, "lewdness, licentiousness", "水", NULL, NULL, 7, true), +("陰", 11, "shade, yin, negative, sex organs, secret, shadow", "阜", 1, 1393, 7, true), +("慰", 15, "consolation, amusement, seduce, cheer, make sport of, comfort, console", "心", 1, 1158, 7, true), +("疫", 9, "epidemic", "疒", 1, 1661, 7, true), +("怨", 9, "grudge, show resentment, be jealous", "心", NULL, 2137, 7, true), +("宴", 10, "banquet, feast, party", "宀", 1, 1675, 7, true), +("鋭", 15, "pointed, sharpness, edge, weapon, sharp, violent", "金", 2, 1395, 7, true), +("閲", 15, "review, inspection, revision", "門", 1, 1855, 7, true), +("悦", 10, "ecstasy, joy, rapture", "心", 1, 1762, 7, true), +("煙", 13, "smoke", "火", 3, 1290, 7, true), +("炎", 8, "inflammation, flame, blaze", "火", 1, 1242, 7, true), +("浦", 10, "bay, creek, inlet, gulf, beach, seacoast", "水", 1, 977, 7, true), +("韻", 19, "rhyme, elegance, tone", "音", 1, 2148, 7, true), +("鬱", 29, "gloom, depression, melancholy, luxuriant", "鬯", NULL, NULL, 7, true), +("援", 12, "abet, help, save", "手", 1, 312, 7, true), +("詠", 12, "recitation, poem, song, composing", "言", 1, 2000, 7, true), +("猿", 13, "monkey", "犬", 1, 1772, 7, true), +("越", 12, "surpass, cross over, move to, exceed, Vietnam", "走", 3, 897, 7, true), +("縁", 15, "affinity, relation, connection, edge, border, verge, brink", "糸", 1, 1291, 7, true), +("隠", 14, "conceal, hide, cover", "阜", 1, 1089, 7, true), +("影", 15, "shadow, silhouette, phantom", "彡", 1, 464, 7, true), +("唄", 10, "song, ballad", "口", 1, 2051, 7, true), +("鉛", 13, "lead", "金", 1, 1710, 7, true), +("艶", 19, "glossy, luster, glaze, polish, charm, colorful, captivating", "色", 1, 2207, 7, true), +("凹", 5, "concave, hollow, sunken", "凵", 1, 2206, 7, true), +("畝", 10, "furrow, thirty tsubo, ridge, rib", "田", 1, 2327, 7, true), +("憶", 16, "recollection, think, remember", "心", 1, 1324, 7, true), +("欧", 8, "Europe", "欠", 2, 421, 7, true), +("押", 8, "push, stop, check, subdue, attach, seize, weight, shove, press, seal, do in spite of", "手", 3, 789, 7, true), +("奥", 12, "heart, interior", "大", 2, 1018, 7, true), +("殴", 8, "assault, hit, beat, thrash", "殳", 1, 1622, 7, true), +("汚", 6, "dirty, pollute, disgrace, rape, defile", "水", 2, 908, 7, true), +("旺", 8, "flourishing, successful, beautiful, vigorous", "日", 1, 2342, 7, true), +("翁", 10, "venerable old man", "羽", 1, 2064, 7, true), +("乙", 1, "the latter, duplicate, strange, witty, fishhook radical (no. 5)", "乛", 1, 1841, 7, true), +("虞", 13, "fear, uneasiness, anxiety, concern, expectation, consideration", "虍", 1, NULL, 7, true), +("俺", 10, "I, myself", "人", NULL, 1946, 7, true), +("卸", 9, "wholesale", "卩", 1, 1520, 7, true), +("穏", 16, "calm, quiet, moderation", "禾", 1, 1535, 7, true), +("謁", 15, "audience, audience (with king)", "言", 1, NULL, 7, true), +("臆", 17, "timidity, heart, mind, fear, cowardly", "肉", NULL, NULL, 7, true), +("架", 9, "erect, frame, mount, support, shelf, construct", "木", 1, 1555, 7, true), +("靴", 13, "shoes", "革", 3, 1561, 7, true), +("苛", 8, "torment, scold, chastise", "艸", NULL, NULL, 7, true), +("寡", 14, "widow, minority, few", "宀", 1, 2035, 7, true), +("箇", 14, "counter for articles", "竹", 1, NULL, 7, true), +("蚊", 10, "mosquito", "虫", 1, 2121, 7, true), +("雅", 13, "gracious, elegant, graceful, refined", "隹", 1, 1192, 7, true), +("渦", 12, "whirlpool, eddy, vortex", "水", 1, 1789, 7, true), +("餓", 15, "starve, hungry, thirst", "食", 1, 1754, 7, true), +("華", 10, "splendor, flower, petal, shine, luster, ostentatious, showy, gay, gorgeous", "艸", 1, 1085, 7, true), +("暇", 13, "spare time, rest, leisure, time, leave of absence", "日", 1, 1386, 7, true), +("牙", 5, "tusk, fang, tusk radical (no. 92)", "牙", NULL, 2067, 7, true), +("禍", 13, "calamity, misfortune, evil, curse", "示", 1, 2010, 7, true), +("稼", 15, "earnings, work, earn money", "禾", 1, 1264, 7, true), +("嫁", 13, "marry into, bride", "女", 1, 1581, 7, true), +("菓", 11, "candy, cakes, fruit", "艸", 2, 1719, 7, true), +("佳", 8, "excellent, beautiful, good, pleasing, skilled", "人", 1, 1643, 7, true), +("介", 4, "jammed in, shellfish, mediate, concern oneself with", "人", 2, 617, 7, true), +("怪", 8, "suspicious, mystery, apparition", "心", 1, 1634, 7, true), +("拐", 8, "kidnap, falsify", "手", 1, 1498, 7, true), +("瓦", 5, "tile, gram", "瓦", NULL, 1850, 7, true), +("悔", 9, "repent, regret", "心", 1, 1460, 7, true), +("戒", 7, "commandment", "戈", 1, 1062, 7, true), +("塊", 13, "clod, lump, chunk, clot, mass", "土", 1, 1800, 7, true), +("楷", 13, "square character style, correctness", "木", NULL, NULL, 7, true), +("潰", 15, "crush, smash, break, dissipate", "水", NULL, NULL, 7, true), +("壊", 16, "demolition, break, destroy", "土", 1, 727, 7, true), +("皆", 9, "all, everything", "白", 3, 1267, 7, true), +("劾", 8, "censure, criminal investigation", "力", 1, 2085, 7, true), +("諧", 16, "harmony", "言", NULL, NULL, 7, true), +("懐", 16, "feelings, heart, yearn, miss someone, become attached to, bosom, breast, pocket", "心", 1, 1493, 7, true), +("涯", 11, "horizon, shore, limit, bound", "水", 1, 1525, 7, true), +("柿", 9, "persimmon", "木", NULL, 1745, 7, true), +("該", 13, "above-stated, the said, that specific", "言", 1, 1648, 7, true), +("岳", 8, "point, peak, mountain", "山", 1, 1334, 7, true), +("骸", 16, "bone, body, corpse", "骨", NULL, NULL, 7, true), +("獲", 16, "seize, get, find, earn, acquire, can, may, able to", "犬", 1, 964, 7, true), +("穫", 18, "harvest, reap", "禾", 1, 1642, 7, true), +("較", 13, "contrast, compare", "車", 1, 1172, 7, true), +("隔", 13, "isolate, alternate, distance, separate, gulf", "阜", 1, 1382, 7, true), +("郭", 11, "enclosure, quarters, fortification, red-light district", "邑", 1, 1670, 7, true), +("垣", 9, "hedge, fence, wall", "土", 1, 1539, 7, true), +("崖", 11, "cliff, bluff, precipice", "山", NULL, NULL, 7, true), +("概", 14, "outline, condition, approximation, generally", "木", 1, 1335, 7, true), +("嚇", 17, "menacing, dignity, majesty, threaten", "口", 1, 2141, 7, true), +("殻", 11, "husk, nut shell", "殳", 1, 1892, 7, true), +("蓋", 13, "cover, lid, flap", "艸", NULL, 2388, 7, true), +("慨", 13, "rue, be sad, sigh, lament", "心", 1, 1875, 7, true), +("核", 10, "nucleus, core, kernel", "木", 1, 475, 7, true), +("汗", 6, "sweat, perspire", "水", 2, 1502, 7, true), +("且", 5, "moreover, also, furthermore", "一", 1, NULL, 7, true), +("釜", 10, "kettle, cauldron, iron pot", "金", NULL, 1761, 7, true), +("刈", 4, "reap, cut, clip, trim, prune", "刀", 1, 1738, 7, true), +("渇", 11, "thirst, dry up, parch", "水", 1, 1944, 7, true), +("喝", 11, "hoarse, scold", "口", 1, 1858, 7, true), +("甘", 5, "sweet, coax, pamper, be content, sugary", "甘", 2, 1248, 7, true), +("冠", 9, "crown, best, peerless", "冖", 1, 1503, 7, true), +("肝", 7, "liver, pluck, nerve, chutzpah", "肉", 1, 1118, 7, true), +("轄", 17, "control, wedge", "車", 1, 1771, 7, true), +("鎌", 18, "sickle, scythe, trick", "金", 1, 1587, 7, true), +("褐", 13, "brown, woollen kimono", "衣", 1, 2186, 7, true), +("葛", 11, "arrowroot, kudzu", "艸", NULL, 1547, 7, true), +("顎", 18, "jaw, chin, gill", "頁", NULL, NULL, 7, true), +("掛", 11, "hang, suspend, depend, arrive at, tax, pour", "手", 3, 1027, 7, true), +("滑", 13, "slippery, slide, slip, fail exam", "水", 1, 1238, 7, true), +("陥", 10, "collapse, fall into, cave in, fall (castle), slide into", "阜", 1, 1154, 7, true), +("括", 9, "fasten, tie up, arrest, constrict", "手", 1, 1026, 7, true), +("缶", 6, "tin can, container, jar radical (no. 121)", "缶", 2, 1543, 7, true), +("乾", 11, "drought, dry, dessicate, drink up, heaven, emperor", "乛", 2, 1453, 7, true), +("貫", 11, "pierce, 8 1/3lbs, penetrate, brace", "貝", 1, 1156, 7, true), +("勘", 11, "intuition, perception, check, compare, sixth sense", "力", 1, 1494, 7, true), +("喚", 12, "yell, cry, call, scream, summon", "口", 1, 1120, 7, true), +("換", 12, "interchange, period, change, convert, replace, renew", "手", 2, 687, 7, true), +("患", 11, "afflicted, disease, suffer from, be ill", "心", 2, 796, 7, true), +("堪", 12, "withstand, endure, support, resist", "土", 1, 1953, 7, true), +("款", 12, "goodwill, article, section, friendship, collusion", "欠", 1, 1854, 7, true), +("敢", 12, "daring, brave, bold, sad, tragic, pitiful", "攴", 1, 1859, 7, true), +("閑", 12, "leisure", "門", 1, 1994, 7, true), +("勧", 13, "persuade, recommend, advise, encourage, offer", "力", 1, 1068, 7, true), +("棺", 12, "coffin, casket", "木", 1, 2161, 7, true), +("寛", 13, "tolerant, leniency, generosity, relax, feel at home, be at ease, broadminded", "宀", 1, 1377, 7, true), +("歓", 15, "delight, joy", "欠", 1, 1065, 7, true), +("監", 15, "oversee, official, govt office, rule, administer", "皿", 1, 408, 7, true), +("緩", 15, "slacken, loosen, relax, lessen, be moderate, ease", "糸", 1, 933, 7, true), +("憾", 16, "remorse, regret, be sorry", "心", 1, 1682, 7, true), +("還", 16, "send back, return", "辵", 1, 910, 7, true), +("環", 17, "ring, circle, link, wheel", "玉", 1, 409, 7, true), +("韓", 18, "Korea", "韋", NULL, 445, 7, true), +("艦", 21, "warship", "舟", 1, 1363, 7, true), +("鑑", 23, "specimen, take warning from, learn from", "金", 1, 1391, 7, true), +("含", 7, "contain, include, hold in the mouth, bear in mind, understand, cherish", "口", 2, 466, 7, true), +("玩", 8, "play, take pleasure in, trifle with, make sport of", "玉", NULL, 2216, 7, true), +("企", 6, "undertake, scheme, design, attempt, plan", "人", 1, 278, 7, true), +("忌", 7, "mourning, abhor, detestable, death anniversary", "心", 1, 1882, 7, true), +("奇", 8, "strange, strangeness, curiosity", "大", 1, 1367, 7, true), +("伎", 6, "deed, skill", "人", 1, NULL, 7, true), +("軌", 9, "rut, wheel, track, model, way of doing", "車", 1, 1480, 7, true), +("頑", 13, "stubborn, foolish, firmly", "頁", 1, 1247, 7, true), +("祈", 8, "pray, wish", "示", 2, 1462, 7, true), +("畿", 15, "capital, suburbs of capital", "田", NULL, 1683, 7, true), +("棄", 13, "abandon, throw away, discard, resign, reject, sacrifice", "木", 1, 901, 7, true), +("飢", 10, "hungry, starve", "食", 1, 1659, 7, true), +("棋", 12, "chess piece, Japanese chess, shogi", "木", 1, 1311, 7, true), +("毀", 13, "break, destroy, censure, be chipped, be scratched, be broken, be ruined", "殳", NULL, NULL, 7, true), +("輝", 15, "radiance, shine, sparkle, gleam, twinkle", "車", 1, 1259, 7, true), +("擬", 17, "mimic, aim (a gun) at, nominate, imitate", "手", 1, 1990, 7, true), +("戯", 15, "frolic, play, sport", "戈", 1, 1880, 7, true), +("儀", 15, "ceremony, rule, affair, case, a matter", "人", 1, 739, 7, true), +("欺", 12, "deceit, cheat, delude", "欠", 1, 1541, 7, true), +("鬼", 10, "ghost, devil", "鬼", 1, 1557, 7, true), +("幾", 12, "how many, how much, how far, how long, some, several", "幺", 3, 1725, 7, true), +("宜", 8, "best regards, good", "宀", 1, 1766, 7, true), +("既", 10, "previously, already, long ago", "无", 1, 1081, 7, true), +("亀", 11, "tortoise, turtle", "乛", 1, 1353, 7, true), +("偽", 11, "falsehood, lie, deceive, pretend, counterfeit, forgery", "人", 1, 1171, 7, true), +("騎", 18, "equestrian, riding on horses, counter for equestrians", "馬", 1, 1696, 7, true), +("菊", 11, "chrysanthemum", "艸", 1, 1287, 7, true), +("虐", 9, "tyrannize, oppress", "虍", 1, 1464, 7, true), +("喫", 12, "consume, eat, drink, smoke, receive (a blow)", "口", 2, 1347, 7, true), +("丘", 5, "hill, knoll", "一", 1, 1405, 7, true), +("窮", 15, "hard up, destitute, suffer, perplexed, cornered", "穴", 1, 1756, 7, true), +("脚", 11, "skids, leg, undercarriage, lower part, base", "肉", 1, 1228, 7, true), +("却", 7, "instead, on the contrary, rather, step back, withdraw, retreat", "卩", 1, 959, 7, true), +("巨", 5, "gigantic, big, large, great", "工", 2, 892, 7, true), +("朽", 6, "decay, rot, remain in seclusion", "木", 1, 1891, 7, true), +("糾", 9, "twist, ask, investigate, verify", "糸", 1, 1820, 7, true), +("吉", 6, "good luck, joy, congratulations", "口", 1, 711, 7, true), +("虚", 11, "void, emptiness, unpreparedness, crack, fissure, untruth", "虍", 1, 1454, 7, true), +("詰", 13, "packed, close, pressed, reprove, rebuke, blame", "言", 2, 1020, 7, true), +("嗅", 13, "smell, sniff, scent", "口", NULL, 2480, 7, true), +("距", 12, "long-distance, spur, fetlock", "足", 1, 1191, 7, true), +("犠", 17, "sacrifice", "牛", 1, 1189, 7, true), +("拒", 8, "repel, refuse, reject, decline", "手", 1, 863, 7, true), +("臼", 6, "mortar", "臼", NULL, 2048, 7, true), +("凶", 4, "villain, evil, bad luck, disaster", "凵", 1, 1673, 7, true), +("及", 3, "reach out, exert, exercise, cause", "又", 1, 544, 7, true), +("御", 12, "honorable, manipulate, govern", "彳", 3, 1087, 7, true), +("叫", 6, "shout, exclaim, yell", "口", 2, 1426, 7, true), +("拠", 8, "foothold, based on, follow, therefore", "手", 1, 858, 7, true), +("況", 8, "condition, situation", "水", 2, 490, 7, true), +("峡", 9, "gorge, ravine", "山", 1, 1833, 7, true), +("享", 8, "enjoy, receive, undergo, answer (phone), take, get, catch", "亠", 1, 1893, 7, true), +("恐", 10, "fear, dread, awe", "心", 3, 878, 7, true), +("狭", 9, "cramped, narrow, contract, tight", "犬", 1, 1346, 7, true), +("挟", 9, "pinch, between", "手", 2, 1870, 7, true), +("狂", 7, "lunatic, insane, crazy, confuse", "犬", 1, 1425, 7, true), +("脅", 10, "threaten, coerce", "肉", 1, 1183, 7, true), +("矯", 17, "rectify, straighten, correct, reform, cure, control, pretend, falsify", "矢", 1, 2105, 7, true), +("驚", 22, "wonder, be surprised, frightened, amazed", "馬", 1, 1141, 7, true), +("響", 20, "echo, sound, resound, ring, vibrate", "音", 1, 502, 7, true), +("恭", 10, "respect, reverent", "心", 1, 1737, 7, true), +("暁", 12, "daybreak, dawn, in the event", "日", 1, 1924, 7, true), +("菌", 11, "germ, fungus, bacteria", "艸", 1, 1586, 7, true), +("斤", 4, "axe, 1.32 lb, catty, counter for loaves of bread, axe radical (no. 69)", "斤", 1, NULL, 7, true), +("仰", 6, "face-up, look up, depend, seek, respect, revere, drink, take", "人", 1, 1573, 7, true), +("凝", 16, "congeal, freeze, stiff, be absorbed in", "冫", 1, 1712, 7, true), +("巾", 3, "towel, hanging scroll, width, cloth radical (no. 50)", "巾", NULL, NULL, 7, true), +("琴", 12, "harp, koto", "玉", 1, 1591, 7, true), +("僅", 12, "a wee bit", "人", NULL, NULL, 7, true), +("緊", 15, "tense, solid, hard, reliable, tight", "糸", 1, 677, 7, true), +("掘", 11, "dig, delve, excavate", "手", 2, 1257, 7, true), +("繰", 19, "winding, reel, spin, turn (pages), look up, refer to", "糸", 1, 872, 7, true), +("串", 7, "spit, skewer", "丨", NULL, 2139, 7, true), +("勲", 15, "meritorious deed, merit", "力", 1, 1513, 7, true), +("窟", 13, "cavern", "穴", NULL, NULL, 7, true), +("駆", 14, "drive, run, gallop, advance, inspire, impel", "馬", 1, 1033, 7, true), +("偶", 11, "accidentally, even number, couple, man & wife, same kind", "人", 3, 1602, 7, true), +("襟", 18, "collar, neck, lapel, one's inner feelings", "衣", 1, 2030, 7, true), +("謹", 17, "discreet, reverently, humbly", "言", 1, 2068, 7, true), +("隅", 12, "corner, nook", "阜", 2, 1601, 7, true), +("薫", 16, "send forth fragrance, fragrant, be scented, smoke (tobacco)", "艸", 1, 1849, 7, true), +("茎", 8, "stalk, stem", "艸", 1, 2013, 7, true), +("吟", 7, "versify, singing, recital", "口", 1, 1956, 7, true), +("遇", 12, "meet, encounter, interview, treat, entertain, receive, deal with", "辵", 1, 1343, 7, true), +("刑", 6, "punish, penalty, sentence, punishment", "刀", 1, 864, 7, true), +("惧", 11, "fear, be afraid of, dread", "心", NULL, 2097, 7, true), +("屈", 8, "yield, bend, flinch, submit", "尸", 1, 1434, 7, true), +("契", 9, "pledge, promise, vow", "大", 1, 898, 7, true), +("愚", 13, "foolish, folly, absurdity, stupid", "心", 1, 1551, 7, true), +("恵", 10, "favor, blessing, grace, kindness", "心", 1, 925, 7, true), +("啓", 11, "disclose, open, say", "口", 1, 1403, 7, true), +("錦", 16, "brocade, fine dress, honors", "金", 1, 1440, 7, true), +("蛍", 11, "lightning-bug, firefly", "虫", 1, 2031, 7, true), +("渓", 11, "mountain stream, valley", "水", 1, 2063, 7, true), +("傾", 13, "lean, incline, tilt, trend, wane, sink, ruin, bias", "人", 2, 938, 7, true), +("継", 13, "inherit, succeed, continue, patch, graft (tree)", "糸", 1, 743, 7, true), +("掲", 11, "put up (a notice), put up, hoist, display, hang out, publish, describe", "手", 1, 899, 7, true), +("慶", 15, "jubilation, congratulate, rejoice, be happy", "心", 1, 1300, 7, true), +("携", 13, "portable, carry (in hand), armed with, bring along", "手", 1, 1017, 7, true), +("稽", 15, "think, consider", "禾", NULL, 2372, 7, true), +("憬", 15, "yearn for, aspire to, admire", "心", NULL, NULL, 7, true), +("詣", 13, "visit a temple, arrive, attain", "言", NULL, NULL, 7, true), +("献", 13, "offering, counter for drinks, present, offer", "犬", 1, 637, 7, true), +("鶏", 19, "chicken", "鳥", 1, 1901, 7, true), +("軒", 10, "flats, counter for houses, eaves", "車", 2, 1416, 7, true), +("遣", 13, "dispatch, despatch, send, give, donate, do, undertake", "辵", 1, 664, 7, true), +("嫌", 13, "dislike, detest, hate", "女", 1, 1207, 7, true), +("堅", 12, "strict, hard, solid, tough, tight, reliable", "土", 1, 1049, 7, true), +("傑", 13, "greatness, excellence", "人", 1, 1926, 7, true), +("賢", 16, "intelligent, wise, wisdom, cleverness", "貝", 2, 1159, 7, true), +("兼", 10, "concurrently, and, beforehand, in advance", "八", 1, 1164, 7, true), +("肩", 8, "shoulder", "肉", 2, 1215, 7, true), +("撃", 15, "beat, attack, defeat, conquer", "手", 1, 473, 7, true), +("鯨", 19, "whale", "魚", 1, 1486, 7, true), +("憩", 16, "recess, rest, relax, repose", "心", 1, 1731, 7, true), +("剣", 10, "sabre, sword, blade, clock hand", "刀", 1, 1305, 7, true), +("拳", 10, "fist", "手", 1, 1935, 7, true), +("倹", 10, "frugal, economy, thrifty", "人", 1, 2479, 7, true), +("隙", 13, "crevice, fissure, discord, opportunity, leisure", "阜", NULL, NULL, 7, true), +("迎", 7, "welcome, meet, greet", "辵", 3, 625, 7, true), +("圏", 12, "sphere, circle, radius, range", "囗", 1, 1216, 7, true), +("鍵", 17, "key", "金", NULL, 2029, 7, true), +("繭", 18, "cocoon", "糸", 1, 2495, 7, true), +("幻", 4, "phantasm, vision, dream, illusion, apparition", "幺", 1, 1564, 7, true), +("桁", 10, "beam, girder, spar, unit or column (accounting)", "木", NULL, NULL, 7, true), +("謙", 17, "self-effacing, humble oneself, condescend, be modest", "言", 1, 1582, 7, true), +("顕", 18, "appear, existing", "頁", 1, 1536, 7, true), +("懸", 20, "state of suspension, hang, depend, consult, distant, far apart", "心", 1, 889, 7, true), +("玄", 5, "mysterious, occultness, black, deep, profound", "玄", 1, 1409, 7, true), +("鼓", 13, "drum, beat, rouse, muster", "鼓", 1, 1795, 7, true), +("錮", 16, "confinement, to tie", "金", NULL, NULL, 7, true), +("弧", 9, "arc, arch, bow", "弓", 1, 2371, 7, true), +("孤", 9, "orphan, alone", "子", 1, 1239, 7, true), +("互", 4, "mutually, reciprocally, together", "二", 3, 914, 7, true), +("舷", 11, "gunwale", "舟", NULL, NULL, 7, true), +("悟", 10, "enlightenment, perceive, discern, realize, understand", "心", 1, 1411, 7, true), +("勾", 4, "be bent, slope, capture", "勹", NULL, NULL, 7, true), +("股", 8, "thigh, crotch", "肉", NULL, 2212, 7, true), +("顧", 21, "look back, review, examine oneself, turn around", "頁", 1, 1058, 7, true), +("碁", 13, "Go", "石", 1, 1609, 7, true), +("枯", 9, "wither, die, dry up, be seasoned", "木", 2, 1749, 7, true), +("誇", 13, "boast, be proud, pride, triumphantly", "言", 1, 1272, 7, true), +("虎", 8, "tiger, drunkard", "虍", 1, 1653, 7, true), +("娯", 10, "recreation, pleasure", "女", 1, 1827, 7, true), +("弦", 8, "bowstring, chord, hypotenuse", "弓", 1, 1773, 7, true), +("呉", 7, "give, do something for, kingdom of Wu", "口", 1, 1729, 7, true), +("貢", 10, "tribute, support, finance", "貝", 1, 956, 7, true), +("洪", 9, "deluge, flood, vast", "水", 1, 1778, 7, true), +("拘", 8, "arrest, seize, concerned, adhere to, despite", "手", 1, 1336, 7, true), +("控", 11, "withdraw, draw in, hold back, refrain from, be moderate", "手", 1, 1000, 7, true), +("巧", 5, "adroit, skilled, ingenuity", "工", 1, 1537, 7, true), +("攻", 7, "aggression, attack, criticize, polish", "攴", 1, 532, 7, true), +("侯", 9, "marquis, lord, daimyo", "人", 1, 2363, 7, true), +("郊", 9, "outskirts, suburbs, rural area", "邑", 2, 1304, 7, true), +("肯", 8, "agreement, consent, comply with", "肉", 2, 1813, 7, true), +("喉", 12, "throat, voice", "口", NULL, 2390, 7, true), +("荒", 9, "laid waste, rough, rude, wild", "艸", 2, 1099, 7, true), +("甲", 5, "armor, high (voice), A grade, first class, former, instep, carapace", "田", 1, 1073, 7, true), +("坑", 7, "pit, hole", "土", 1, 2040, 7, true), +("恒", 9, "constancy, always", "心", 1, 1314, 7, true), +("抗", 7, "confront, resist, defy, oppose", "手", 1, 666, 7, true), +("更", 7, "grow late, night watch, sit up late, of course, renew, renovate, again, more and more, further", "曰", 3, 861, 7, true), +("江", 6, "creek, inlet, bay", "水", 1, 704, 7, true), +("孔", 4, "cavity, hole, slit, very, great, exceedingly", "子", 1, 2052, 7, true), +("雇", 12, "employ, hire", "隹", 2, 975, 7, true), +("慌", 12, "disconcerted, be confused, lose one's head", "心", NULL, 1826, 7, true), +("梗", 11, "for the most part, close up, flower stem", "木", NULL, NULL, 7, true), +("絞", 12, "strangle, constrict, wring", "糸", 1, 1288, 7, true), +("項", 12, "paragraph, nape of neck, clause, item, term (expression)", "頁", 1, 884, 7, true), +("溝", 13, "gutter, ditch, sewer, drain, 10**32", "水", 1, 1736, 7, true), +("酵", 14, "fermentation", "酉", 1, 1862, 7, true), +("硬", 12, "stiff, hard", "石", 2, 1101, 7, true), +("綱", 14, "hawser, class (genus), rope, cord, cable", "糸", 1, 1053, 7, true), +("衡", 16, "equilibrium, measuring rod, scale", "行", 1, 1847, 7, true), +("稿", 15, "draft, copy, manuscript, straw", "禾", 1, 1400, 7, true), +("購", 17, "subscription, buy", "貝", 1, 945, 7, true), +("傲", 13, "be proud", "人", NULL, NULL, 7, true), +("乞", 3, "beg, invite, ask", "乛", NULL, 2478, 7, true), +("拷", 9, "torture, beat", "手", 1, 2057, 7, true), +("克", 7, "overcome, kindly, skillfully", "儿", 1, 1333, 7, true), +("込", 5, "crowded, mixture, in bulk, included, (kokuji)", "辵", 3, 675, 7, true), +("剛", 10, "sturdy, strength", "刀", 1, 1576, 7, true), +("豪", 14, "overpowering, great, powerful, excelling, Australia", "豕", 1, 1104, 7, true), +("駒", 15, "pony, horse, colt", "馬", 1, 1452, 7, true), +("獄", 14, "prison, jail", "犬", 1, 1529, 7, true), +("婚", 11, "marriage", "女", 3, 767, 7, true), +("昆", 8, "descendants, elder brother, insect", "日", 1, 1688, 7, true), +("酷", 14, "cruel, severe, atrocious, unjust", "酉", 1, 1596, 7, true), +("頃", 11, "time, about, toward", "頁", NULL, 2015, 7, true), +("紺", 11, "dark blue, navy", "糸", 1, 1825, 7, true), +("痕", 11, "mark, foot print", "疒", NULL, 1958, 7, true), +("魂", 14, "soul, spirit", "鬼", 1, 1748, 7, true), +("墾", 16, "ground-breaking, open up farmland", "土", 1, NULL, 7, true), +("恨", 9, "regret, bear a grudge, resentment, malice, hatred", "心", 1, 1877, 7, true), +("懇", 17, "sociable, kind, courteous, hospitable, cordial", "心", 1, 1135, 7, true), +("唆", 10, "tempt, seduce, instigate, promote", "口", 1, 1278, 7, true), +("沙", 7, "sand", "水", 1, 1897, 7, true), +("挫", 10, "crush, break, sprain, discourage", "手", NULL, 1869, 7, true), +("鎖", 18, "chain, irons, connection", "金", 1, 1250, 7, true), +("砕", 9, "smash, break, crush, familiar, popular", "石", 1, 1579, 7, true), +("詐", 12, "lie, falsehood, deceive, pretend", "言", 1, 1511, 7, true), +("采", 8, "dice, form, appearance, take, gather, coloring", "釆", 1, NULL, 7, true), +("栽", 10, "plantation, planting", "木", 1, 1496, 7, true), +("宰", 10, "superintend, manager, rule", "宀", 1, 1597, 7, true), +("彩", 11, "coloring, paint, makeup", "彡", 1, 1251, 7, true), +("債", 13, "bond, loan, debt", "人", 1, 728, 7, true), +("斎", 11, "purification, Buddhist food, room, worship, avoid, alike", "文", 1, 1155, 7, true), +("催", 13, "sponsor, hold (a meeting), give (a dinner)", "人", 1, 536, 7, true), +("塞", 13, "close, shut, cover, block, obstruct", "土", NULL, NULL, 7, true), +("歳", 13, "year-end, age, occasion, opportunity", "止", 3, 269, 7, true), +("載", 13, "ride, board, get on, place, spread, 10**44, record, publish", "車", 1, 825, 7, true), +("剤", 10, "dose, medicine, drug", "刀", 1, 1151, 7, true), +("柵", 9, "stockade, fence, weir, entwine around", "木", NULL, NULL, 7, true), +("酢", 12, "vinegar, sour, acid, tart", "酉", 1, 1955, 7, true), +("索", 10, "cord, rope, searching, inquiring", "糸", 1, 1127, 7, true), +("搾", 13, "squeeze", "手", 1, 2046, 7, true), +("錯", 16, "confused, mix, be in disorder", "金", 1, 1740, 7, true), +("削", 9, "plane, sharpen, whittle, pare, shave", "刀", 1, 814, 7, true), +("恣", 10, "selfish, arbitrary", "心", NULL, 2325, 7, true), +("祉", 8, "welfare, happiness", "示", 1, 1063, 7, true), +("拶", 9, "be imminent, draw close", "手", NULL, NULL, 7, true), +("惨", 11, "wretched, disaster, cruelty, harsh", "心", 1, 1463, 7, true), +("撮", 15, "snapshot, take pictures", "手", 1, 1023, 7, true), +("擦", 17, "grate, rub, scratch, scrape, chafe, scour", "手", 1, 1485, 7, true), +("肢", 8, "limb, arms & legs", "肉", 1, 2289, 7, true), +("桟", 10, "scaffold, cleat, frame, jetty, bolt (door)", "木", 1, 2093, 7, true), +("脂", 10, "fat, grease, tallow, lard, rosin, gum, tar", "肉", 2, 1548, 7, true), +("刺", 8, "thorn, pierce, stab, prick, sting, calling card", "刀", 2, 1031, 7, true), +("旨", 6, "delicious, relish, show a liking for, purport, will, clever, expert", "日", 1, 1166, 7, true), +("咲", 9, "blossom, bloom", "口", 2, 1534, 7, true), +("暫", 15, "temporarily, a while, moment, long time", "日", 1, 1112, 7, true), +("刹", 8, "temple", "刀", NULL, NULL, 7, true), +("傘", 12, "umbrella", "人", 1, 1694, 7, true), +("紫", 12, "purple, violet", "糸", 1, 1516, 7, true), +("伺", 7, "pay respects, visit, ask, inquire, question, implore", "人", 2, 2209, 7, true), +("施", 9, "give, bestow, perform, alms", "方", 1, 323, 7, true), +("摯", 15, "gift, seriousness", "手", NULL, 2170, 7, true), +("嗣", 13, "heir, succeed", "口", 1, 2310, 7, true), +("斬", 11, "beheading, kill, murder", "斤", NULL, 2132, 7, true), +("雌", 14, "feminine, female", "隹", 1, 1951, 7, true), +("嫉", 13, "jealous, envy", "女", NULL, 2317, 7, true), +("璽", 19, "emperor's seal", "玉", NULL, NULL, 7, true), +("赦", 11, "pardon, forgiveness", "赤", 1, 1868, 7, true), +("賜", 15, "grant, gift, boon, results", "貝", 1, 2190, 7, true), +("軸", 12, "axis, pivot, stem, stalk, counter for book scrolls", "車", 1, 1261, 7, true), +("疾", 10, "rapidly", "疒", 1, 1577, 7, true), +("餌", 14, "food, bait, prey, tempting profit", "食", NULL, 2277, 7, true), +("執", 11, "tenacious, take hold, grasp, take to heart", "土", 1, 800, 7, true), +("侍", 8, "waiter, samurai, wait upon, serve", "人", 1, 1939, 7, true), +("慈", 13, "mercy", "心", 1, 1811, 7, true), +("𠮟", 5, "", "口", NULL, NULL, NULL, true), +("芝", 6, "turf, lawn", "艸", 1, 1052, 7, true), +("漆", 14, "lacquer, varnish, seven", "水", 1, 1971, 7, true), +("諮", 16, "consult with", "言", 1, 1345, 7, true), +("湿", 12, "damp, wet, moist", "水", 2, 1517, 7, true), +("斜", 11, "diagonal, slanting, oblique", "斗", 1, 1504, 7, true), +("邪", 8, "wicked, injustice, wrong", "邑", 1, 1612, 7, true), +("煮", 12, "boil, cook", "火", 1, 1565, 7, true), +("蛇", 11, "snake, serpent, hard drinker", "虫", 1, 1721, 7, true), +("酌", 10, "bar-tending, serving sake, the host, draw (water), ladle, scoop, pump", "酉", 1, 2271, 7, true), +("釈", 11, "explanation", "釆", 1, 1097, 7, true), +("爵", 17, "baron, peerage, court rank", "爪", 1, NULL, 7, true), +("朱", 6, "vermilion, cinnabar, scarlet, red, bloody", "木", 1, 1788, 7, true), +("狩", 9, "hunt, raid, gather", "犬", 1, 1785, 7, true), +("殊", 10, "particularly, especially, exceptionally", "歹", 1, 1361, 7, true), +("遮", 14, "intercept, interrupt, obstruct", "辵", 1, 1865, 7, true), +("腫", 13, "tumor, swelling", "肉", NULL, 2145, 7, true), +("寂", 11, "loneliness, quietly, mellow, mature, death of a priest", "宀", 1, 1599, 7, true), +("呪", 8, "spell, curse, charm, malediction", "口", NULL, 2131, 7, true), +("寿", 7, "longevity, congratulations, one's natural life", "寸", NULL, 1245, 7, true), +("趣", 15, "purport, gist, elegance, interest, proceed to, tend, become", "走", 1, 1153, 7, true), +("儒", 16, "Confucian", "人", 1, 2162, 7, true), +("囚", 5, "captured, criminal, arrest, catch", "囗", 1, 2107, 7, true), +("舟", 6, "boat, ship", "舟", 2, 1786, 7, true), +("需", 14, "demand, request, need", "雨", 1, 935, 7, true), +("珠", 10, "pearl, gem, jewel", "玉", 1, 1711, 7, true), +("臭", 9, "stinking, ill-smelling, suspicious looking, odor, savor, fragrance, be fragrant, stink, glow, be bright", "自", 1, 1760, 7, true), +("秀", 7, "excel, excellence, beauty, surpass", "禾", 1, 848, 7, true), +("羞", 11, "feel ashamed", "羊", NULL, NULL, 7, true), +("愁", 13, "distress, grieve, lament, be anxious", "心", 1, 2171, 7, true), +("酬", 13, "repay, reward, retribution", "酉", 1, 1515, 7, true), +("袖", 10, "sleeve, wing (building), extension, give cold shoulder", "衣", NULL, 1960, 7, true), +("醜", 17, "ugly, unclean, shame, bad looking", "酉", 1, 2074, 7, true), +("蹴", 19, "kick", "足", NULL, 2377, 7, true), +("襲", 22, "attack, advance on, succeed to, pile, heap", "衣", 1, 1130, 7, true), +("充", 6, "allot, fill", "儿", 1, 949, 7, true), +("渋", 11, "astringent, hesitate, reluctant, have diarrhea", "水", 1, 1011, 7, true), +("汁", 5, "soup, juice, broth, sap, gravy, pus", "水", 1, 1843, 7, true), +("獣", 16, "animal, beast", "犬", 1, 1714, 7, true), +("銃", 14, "gun, arms", "金", 1, 1013, 7, true), +("叔", 8, "uncle, youth", "又", 1, 1950, 7, true), +("柔", 9, "tender, weakness, gentleness, softness", "木", 2, 1187, 7, true), +("淑", 11, "graceful, gentle, pure", "水", 1, 1922, 7, true), +("升", 4, "measuring box, 1.8 liter", "十", 1, 2077, 7, true), +("粛", 11, "solemn, quietly, softly", "聿", 1, 1549, 7, true), +("循", 12, "sequential, follow", "彳", 1, 1699, 7, true), +("遵", 15, "abide by, follow, obey, learn", "辵", 1, NULL, 7, true), +("殉", 10, "martyrdom, follow by resigning", "歹", 1, 2080, 7, true), +("俊", 9, "sagacious, genius, excellence", "人", 1, 1007, 7, true), +("潤", 15, "wet, be watered, profit by, receive benefits, favor, charm, steep", "水", 1, 1644, 7, true), +("徐", 10, "gradually, slowly, deliberately, gently", "彳", 1, 1470, 7, true), +("緒", 14, "thong, beginning, inception, end, cord, strap, mental or emotional state", "糸", 3, 952, 7, true), +("召", 5, "seduce, call, send for, wear, put on, ride in, buy, eat, drink, catch (cold)", "口", 2, 1540, 7, true), +("庶", 11, "commoner, all, bastard", "广", 1, 1558, 7, true), +("叙", 9, "confer, relate, narrate, describe", "又", 1, 1954, 7, true), +("盾", 9, "shield, escutcheon, pretext", "目", 1, 1476, 7, true), +("抄", 7, "extract, selection, summary, copy, spread thin", "手", 1, 2328, 7, true), +("床", 7, "bed, counter for beds, floor, padding, tatami", "广", 2, 1175, 7, true), +("巡", 6, "patrol, go around, circumference", "巛", 1, 1262, 7, true), +("瞬", 18, "wink, blink, twinkle", "目", 1, 1265, 7, true), +("塾", 14, "cram school, private school", "土", 1, 1297, 7, true), +("匠", 6, "artisan, workman, carpenter", "匚", 1, 1718, 7, true), +("肖", 7, "resemblance", "肉", 1, 1889, 7, true), +("如", 6, "likeness, like, such as, as if, better, best, equal", "女", 1, 1704, 7, true), +("旬", 6, "decameron, ten-day period, season (for specific products)", "日", 1, 1162, 7, true), +("昇", 8, "rise up", "日", 2, 826, 7, true), +("准", 10, "quasi-, semi-, associate", "冫", 1, 1441, 7, true), +("宵", 10, "wee hours, evening, early night", "宀", 1, 2262, 7, true), +("尚", 8, "esteem, furthermore, still, yet", "小", 1, 1531, 7, true), +("沼", 8, "marsh, lake, bog, swamp, pond", "水", 1, 1467, 7, true), +("症", 10, "symptoms, illness", "疒", 1, 1111, 7, true), +("祥", 10, "auspicious, happiness, blessedness, good omen, good fortune", "示", 1, 1273, 7, true), +("渉", 11, "ford, go cross, transit, ferry, import, involve", "水", 1, 499, 7, true), +("称", 10, "appellation, praise, admire, name, title, fame", "禾", 1, 985, 7, true), +("紹", 11, "introduce, inherit, help", "糸", 2, 963, 7, true), +("訟", 11, "sue, accuse", "言", 1, 1061, 7, true), +("掌", 12, "manipulate, rule, administer, conduct, palm of hand", "手", 1, 1757, 7, true), +("焦", 12, "char, hurry, impatient, irritate, burn, scorch, singe", "火", 1, 973, 7, true), +("硝", 12, "nitrate, saltpeter", "石", 1, 2154, 7, true), +("晶", 12, "sparkle, clear, crystal", "日", 1, 1613, 7, true), +("粧", 12, "cosmetics, adorn (one's person)", "米", NULL, 1545, 7, true), +("奨", 13, "exhort, urge, encourage", "大", 1, 1445, 7, true), +("詳", 13, "detailed, full, minute, accurate, well-informed", "言", 1, 1178, 7, true), +("衝", 15, "collide, brunt, highway, opposition (astronomy), thrust, pierce, stab, prick", "行", 1, 972, 7, true), +("彰", 14, "patent, clear", "彡", 1, 1310, 7, true), +("詔", 12, "imperial edict", "言", 1, 2239, 7, true), +("償", 17, "reparation, make up for, recompense, redeem", "人", 1, 854, 7, true), +("剰", 11, "surplus, besides", "刀", 1, 1448, 7, true), +("壌", 16, "lot, earth, soil", "土", 1, 1407, 7, true), +("冗", 4, "superfluous, uselessness", "冖", 1, 1782, 7, true), +("憧", 15, "yearn after, long for, aspire to, admire, adore", "心", 1, 2259, 7, true), +("丈", 3, "length, ten shaku, measure, Mr., Ms., height, stature, all (one has), only, that's all, merely", "一", NULL, 1375, 7, true), +("浄", 9, "clean, purify, cleanse, exorcise, Manchu Dynasty", "水", 1, 1383, 7, true), +("畳", 12, "tatami mat, counter for tatami mats, fold, shut up, do away with", "田", 2, 1665, 7, true), +("醸", 20, "brew, cause", "酉", 1, 1838, 7, true), +("錠", 16, "lock, fetters, shackles", "金", 1, 1934, 7, true), +("礁", 17, "reef, sunken rock", "石", 1, 1977, 7, true), +("鐘", 20, "bell, gong, chimes", "金", 1, 1681, 7, true), +("拭", 9, "wipe, mop, swab", "手", NULL, 2421, 7, true), +("嬢", 16, "lass, girl, Miss, daughter", "女", 1, 2059, 7, true), +("殖", 12, "augment, increase, multiply, raise", "歹", 1, 1362, 7, true), +("嘱", 15, "entrust, request, send a message", "口", 1, 1903, 7, true), +("飾", 13, "decorate, ornament, adorn, embellish", "食", 1, 1193, 7, true), +("辱", 10, "embarrass, humiliate, shame", "辰", 1, 1769, 7, true), +("触", 13, "contact, touch, feel, hit, proclaim, announce, conflict", "角", 2, 904, 7, true), +("伸", 7, "expand, stretch, extend, lengthen, increase", "人", 2, 730, 7, true), +("芯", 7, "wick", "艸", NULL, 2202, 7, true), +("侵", 9, "encroach, invade, raid, trespass, violate", "人", 1, 1025, 7, true), +("辛", 7, "spicy, bitter, hot, acrid", "辛", 2, 1607, 7, true), +("娠", 10, "with child, pregnancy", "女", 1, 1623, 7, true), +("唇", 10, "lips", "口", 1, 1992, 7, true), +("津", 9, "haven, port, harbor, ferry", "水", 1, 1036, 7, true), +("尻", 5, "buttocks, hips, butt, rear", "尸", NULL, 1692, 7, true), +("紳", 11, "sire, good belt, gentleman", "糸", 1, 1790, 7, true), +("振", 10, "shake, wave, wag, swing", "手", 1, 614, 7, true), +("浸", 10, "immersed, soak, dip, steep, moisten, wet, dunk", "水", 1, 1447, 7, true), +("譲", 20, "defer, turnover, transfer, convey", "言", 1, 984, 7, true), +("炊", 8, "cook, boil", "火", 1, 1777, 7, true), +("迅", 6, "swift, fast", "辵", 1, 1888, 7, true), +("酔", 11, "drunk, feel sick, poisoned, elated, spellbound", "酉", 1, 1640, 7, true), +("寝", 13, "lie down, sleep, rest, bed, remain unsold", "宀", 3, 1034, 7, true), +("腎", 13, "kidney", "肉", NULL, 1755, 7, true), +("吹", 7, "blow, breathe, puff, emit, smoke", "口", 3, 1133, 7, true), +("陣", 10, "camp, battle array, ranks, position, sudden, brief time", "阜", 1, 828, 7, true), +("刃", 3, "blade, sword, edge", "刀", 1, 1763, 7, true), +("須", 12, "ought, by all means, necessarily", "頁", 1, 1339, 7, true), +("粋", 10, "chic, style, purity, essence, pith, cream, elite, choice", "米", 1, 1768, 7, true), +("遂", 12, "consummate, accomplish, attain, commit (suicide)", "辵", 1, 1423, 7, true), +("衰", 10, "decline, wane, weaken", "衣", 1, 1432, 7, true), +("尋", 12, "inquire, fathom, look for", "寸", 1, 1398, 7, true), +("薪", 16, "fuel, firewood, kindling", "艸", 1, 2182, 7, true), +("甚", 9, "tremendously, very, great, exceedingly", "甘", 1, 1961, 7, true), +("帥", 9, "commander, leading troops, governor", "巾", 1, 2016, 7, true), +("尽", 6, "exhaust, use up, run out of, deplete, befriend, serve", "尸", 1, 1234, 7, true), +("震", 15, "quake, shake, tremble, quiver, shiver", "雨", 2, 893, 7, true), +("睡", 13, "drowsy, sleep, die", "目", 1, 1739, 7, true), +("穂", 15, "ear, ear (grain), head, crest (wave)", "禾", 1, 1656, 7, true), +("慎", 13, "humility, be careful, discreet, prudent", "心", 1, 999, 7, true), +("診", 12, "checkup, seeing, diagnose, examine", "言", 1, 1019, 7, true), +("髄", 19, "marrow, pith, essence", "骨", 1, 1652, 7, true), +("崇", 11, "adore, respect, revere, worship", "山", 1, 1970, 7, true), +("随", 12, "follow, though, notwithstanding, while, during, both, all, obey, submit to, comply, at the mercy of (the waves)", "阜", 1, 1396, 7, true), +("審", 15, "hearing, judge, trial", "宀", 1, 412, 7, true), +("裾", 13, "cuff, hem, foot of mountain", "衣", NULL, 2334, 7, true), +("杉", 7, "cedar, cryptomeria", "木", 1, 1095, 7, true), +("据", 11, "set, lay a foundation, install, equip, squat down, sit down", "手", 1, 1468, 7, true), +("瀬", 19, "rapids, current, torrent, shallows, shoal", "水", 1, 1152, 7, true), +("姓", 8, "surname", "女", 2, 1628, 7, true), +("征", 8, "subjugate, attack the rebellious, collect taxes", "彳", 1, 1578, 7, true), +("是", 9, "just so, this, right, justice", "日", 1, 1045, 7, true), +("凄", 10, "uncanny, weird, threatening, horrible", "冫", NULL, 2313, 7, true), +("牲", 9, "animal sacrifice, offering", "牛", 1, 1274, 7, true), +("斉", 8, "adjusted, alike, equal, similar variety of", "文", 1, 1209, 7, true), +("逝", 10, "departed, die", "辵", 1, 2018, 7, true), +("婿", 12, "bridegroom, son-in-law", "女", 1, 2099, 7, true), +("請", 15, "solicit, invite, ask", "言", 1, 524, 7, true), +("枢", 8, "hinge, pivot, door, center of things", "木", 1, 1791, 7, true), +("析", 8, "chop, divide, tear, analyze", "木", 1, 980, 7, true), +("醒", 16, "awake, be disillusioned, sober up", "酉", NULL, NULL, 7, true), +("隻", 10, "vessels, counter for ships, fish, birds, arrows, one of a pair", "隹", 2, 1546, 7, true), +("斥", 5, "reject, retreat, recede, withdraw, repel, repulse", "斤", 1, 2231, 7, true), +("戚", 11, "grieve, relatives", "戈", NULL, NULL, 7, true), +("脊", 10, "stature, height", "肉", NULL, 2299, 7, true), +("跡", 13, "tracks, mark, print, impression", "足", 2, 953, 7, true), +("籍", 20, "enroll, domiciliary register, membership", "竹", 2, 907, 7, true), +("惜", 11, "pity, be sparing of, frugal, stingy, regret", "心", 1, 1641, 7, true), +("誓", 14, "vow, swear, pledge", "言", 1, 1567, 7, true), +("窃", 9, "stealth, steal, secret, private, hushed", "穴", 1, 1871, 7, true), +("摂", 13, "vicarious, surrogate, act in addition to, take in, absorb", "手", 1, 1779, 7, true), +("扇", 10, "fan, folding fan", "戶", 1, 1805, 7, true), +("拙", 8, "bungling, clumsy, unskillful", "手", 1, 1938, 7, true), +("栓", 10, "plug, bolt, cork, bung, stopper", "木", 1, 2199, 7, true), +("占", 5, "fortune-telling, divining, forecasting, occupy, hold, have, get, take", "卜", 2, 694, 7, true), +("仙", 5, "hermit, wizard, cent", "人", 1, 1157, 7, true), +("旋", 11, "rotation, go around", "方", 1, 1801, 7, true), +("羨", 13, "envious, be jealous, covet", "羊", NULL, NULL, 7, true), +("煎", 13, "broil, parch, roast, boil", "火", NULL, 2458, 7, true), +("腺", 13, "gland, (kokuji)", "肉", NULL, NULL, 7, true), +("遷", 15, "transition, move, change", "辵", 1, 1937, 7, true), +("詮", 13, "discussion, methods called for, selection, result", "言", NULL, NULL, 7, true), +("禅", 13, "Zen, silent meditation", "示", 1, 1902, 7, true), +("繊", 17, "slender, fine, thin kimono", "糸", 1, 1451, 7, true), +("阻", 8, "thwart, separate from, prevent, obstruct, deter, impede", "阜", 1, 1280, 7, true), +("疎", 12, "alienate, rough, neglect, shun, sparse, penetrate", "疋", 1, 1572, 7, true), +("漸", 14, "steadily, gradually advancing, finally, barely", "水", 1, 2115, 7, true), +("粗", 11, "coarse, rough, rugged", "米", 1, 1689, 7, true), +("繕", 18, "darning, repair, mend, trim, tidy up, adjust", "糸", 1, 2195, 7, true), +("狙", 8, "aim at, sight, shadow, stalk", "犬", NULL, 745, 7, true), +("践", 13, "tread, step on, trample, practice, carry through", "足", 1, 1570, 7, true), +("薦", 16, "recommend, mat, advise, encourage, offer", "艸", 1, 1082, 7, true), +("租", 10, "tariff, crop tax, borrowing", "禾", 1, 2089, 7, true), +("措", 11, "set aside, give up, suspend, discontinue, lay aside, except", "手", 1, 818, 7, true), +("膳", 16, "small low table, tray", "肉", NULL, 2120, 7, true), +("鮮", 17, "fresh, vivid, clear, brilliant, Korea", "魚", 1, 355, 7, true), +("箋", 14, "paper, label, letter, composition", "竹", NULL, NULL, 7, true), +("潜", 15, "submerge, conceal, hide, lower (voice), hush", "水", 1, 1329, 7, true), +("遡", 13, "go upstream, retrace the past", "辵", NULL, NULL, 7, true), +("掃", 11, "sweep, brush", "手", 2, 1255, 7, true), +("爽", 11, "refreshing, bracing, resonant, sweet, clear", "爻", 1, 2333, 7, true), +("塑", 13, "model, molding", "土", 1, NULL, 7, true), +("桑", 10, "mulberry", "木", 1, 1650, 7, true), +("挿", 10, "insert, put in, graft, wear (sword)", "手", 1, 1908, 7, true), +("遭", 14, "encounter, meet, party, association, interview, join", "辵", 1, 1554, 7, true), +("曽", 11, "formerly, once, before, ever, never, ex-", "曰", NULL, 1320, 7, true), +("壮", 6, "robust, manhood, prosperity", "士", 1, 1657, 7, true), +("訴", 12, "accusation, sue, complain of pain, appeal to", "言", 1, 427, 7, true), +("曹", 11, "office, official, comrade, fellow", "曰", 1, 1998, 7, true), +("捜", 10, "search, look for, locate", "手", 2, 592, 7, true), +("荘", 9, "villa, inn, cottage, feudal manor, solemn, dignified", "艸", 1, 1489, 7, true), +("葬", 12, "interment, bury, shelve", "艸", 1, 754, 7, true), +("礎", 18, "cornerstone, foundation stone", "石", 1, 1224, 7, true), +("僧", 13, "Buddhist priest, monk", "人", 1, 1724, 7, true), +("喪", 12, "miss, mourning", "口", 1, 885, 7, true), +("双", 4, "pair, set, comparison, counter for pairs", "又", 2, 1029, 7, true), +("痩", 12, "get thin", "疒", NULL, NULL, 7, true), +("踪", 15, "remains, clue, footprint", "足", NULL, NULL, 7, true), +("槽", 15, "vat, tub, tank", "木", 1, 1809, 7, true), +("汰", 7, "washing, sieving, filtering, weeding out, luxury", "水", 1, NULL, 7, true), +("燥", 17, "parch, dry up", "火", 2, 1819, 7, true), +("妥", 7, "gentle, peace, depravity", "女", 1, 1102, 7, true), +("促", 9, "stimulate, urge, press, demand, incite", "人", 1, 998, 7, true), +("贈", 18, "presents, send, give to, award to, confer on, presenting something", "貝", 2, 1001, 7, true), +("遜", 13, "humble, modest", "辵", NULL, NULL, 7, true), +("憎", 14, "hate, detest", "心", 2, 1808, 7, true), +("惰", 12, "lazy, laziness", "心", 1, 2336, 7, true), +("耐", 9, "-proof, enduring", "而", 1, 1295, 7, true), +("賊", 13, "burglar, rebel, traitor, robber", "貝", 1, 2045, 7, true), +("俗", 9, "vulgar, customs, manners, worldliness, mundane things", "人", 1, 1610, 7, true), +("胎", 9, "womb, uterus", "肉", 1, 1861, 7, true), +("騒", 18, "boisterous, make noise, clamor, disturb, excite", "馬", 1, 1069, 7, true), +("霜", 17, "frost", "雨", 1, 2151, 7, true), +("捉", 10, "catch, capture", "手", NULL, 1976, 7, true), +("怠", 9, "neglect, laziness", "心", 1, 1703, 7, true), +("駄", 14, "burdensome, pack horse, horse load, send by horse, trivial, worthless", "馬", 1, 1500, 7, true), +("藻", 19, "seaweed, duckweed", "艸", 1, 2124, 7, true), +("堕", 12, "degenerate, descend to, lapse into", "土", 1, 2087, 7, true), +("即", 7, "instant, namely, as is, conform, agree, adapt", "卩", 1, 1167, 7, true), +("堆", 11, "piled high", "土", NULL, 2184, 7, true), +("袋", 11, "sack, bag, pouch", "衣", 2, 1125, 7, true), +("逮", 11, "apprehend, chase", "辵", 1, 766, 7, true), +("替", 12, "exchange, spare, substitute, per-", "曰", 2, 979, 7, true), +("唾", 11, "saliva, sputum", "口", NULL, NULL, 7, true), +("泰", 10, "peaceful, calm, peace, easy, Thailand, extreme, excessive, great", "水", 1, 1281, 7, true), +("滞", 13, "stagnate, be delayed, overdue, arrears", "水", 1, 1107, 7, true), +("択", 7, "choose, select, elect, prefer", "手", 1, 847, 7, true), +("滝", 13, "waterfall, rapids, cascade", "水", 1, 1478, 7, true), +("諾", 15, "consent, assent, agreement", "言", 1, 1490, 7, true), +("戴", 17, "be crowned with, live under (a ruler), receive", "戈", NULL, 2332, 7, true), +("胆", 9, "gall bladder, courage, pluck, nerve", "肉", 1, 1449, 7, true), +("旦", 5, "daybreak, dawn, morning", "日", 1, NULL, 7, true), +("託", 10, "consign, requesting, entrusting with, pretend, hint", "言", 1, 1021, 7, true), +("綻", 14, "be rent, ripped, unravel, run, begin to open, smile", "糸", NULL, NULL, 7, true), +("誰", 15, "who, someone, somebody", "言", NULL, 1933, 7, true), +("拓", 8, "clear (the land), open, break up (land)", "手", 1, 1526, 7, true), +("濯", 17, "laundry, wash, pour on, rinse", "水", 2, 1698, 7, true), +("卓", 8, "eminent, table, desk, high", "十", 1, 1348, 7, true), +("脱", 11, "undress, removing, escape from, get rid of, be left out, take off", "肉", 1, 782, 7, true), +("嘆", 13, "sigh, lament, moan, grieve, sigh of admiration", "口", 1, 1584, 7, true), +("沢", 7, "swamp, marsh, brilliance, grace", "水", 1, 296, 7, true), +("壇", 16, "podium, stage, rostrum, terrace", "土", 1, 1512, 7, true), +("端", 14, "edge, origin, end, point, border, verge, cape", "立", 1, 960, 7, true), +("棚", 12, "shelf, ledge, rack, mount, mantle, trellis", "木", 1, 1594, 7, true), +("弾", 12, "bullet, twang, flip, snap", "弓", 1, 853, 7, true), +("奪", 14, "rob, take by force, snatch away, dispossess, plunder, usurp", "大", 1, 974, 7, true), +("恥", 10, "shame, dishonor", "心", 3, 1575, 7, true), +("丹", 4, "rust-colored, red, red lead, pills, sincerity", "丶", 1, 1402, 7, true), +("鍛", 17, "forge, discipline, train", "金", 1, 1793, 7, true), +("但", 7, "however, but", "人", 1, 2404, 7, true), +("稚", 13, "immature, young", "禾", 1, 1560, 7, true), +("淡", 11, "thin, faint, pale, fleeting", "水", 1, 1436, 7, true), +("痴", 13, "stupid, foolish", "疒", 1, 1663, 7, true), +("緻", 16, "fine (i.e. not coarse)", "糸", NULL, 2460, 7, true), +("遅", 12, "slow, late, back, later", "辵", 3, 833, 7, true), +("致", 10, "doth, do, send, forward, cause, exert, incur, engage", "至", 1, 870, 7, true), +("逐", 10, "pursue, drive away, chase, accomplish, attain, commit", "辵", 1, 2230, 7, true), +("濁", 16, "voiced, uncleanness, wrong, nigori, impurity", "水", 1, 1883, 7, true), +("畜", 10, "livestock, domestic fowl and animals", "田", 2, 1824, 7, true), +("蓄", 13, "amass, raise, hoard, store", "艸", 1, 1260, 7, true), +("窒", 11, "plug up, obstruct", "穴", 1, 1776, 7, true), +("嫡", 14, "legitimate wife, direct descent (non-bastard)", "女", 1, 2130, 7, true), +("眺", 11, "stare, watch, look at, see, scrutinize", "目", 1, 1726, 7, true), +("弔", 4, "condolences, mourning, funeral", "弓", 1, 1840, 7, true), +("聴", 17, "listen, headstrong, naughty, careful inquiry", "耳", 1, 781, 7, true), +("挑", 9, "challenge, contend for, make love to", "手", 1, 989, 7, true), +("跳", 13, "hop, leap up, spring, jerk, prance, buck, splash, sputter, snap", "足", 1, 1716, 7, true), +("酎", 10, "sake", "酉", NULL, NULL, 7, true), +("鋳", 15, "casting, mint", "金", 1, 2005, 7, true), +("秩", 10, "regularity, salary, order", "禾", 1, 1275, 7, true), +("勅", 9, "imperial order", "力", 1, 2157, 7, true), +("澄", 15, "lucidity, be clear, clear, clarify, settle, strain, look grave", "水", 1, 1722, 7, true), +("彫", 11, "carve, engrave, chisel", "彡", 1, 1533, 7, true), +("徴", 14, "indications, sign, omen, symptom, collect, seek, refer to, question", "彳", 1, 850, 7, true), +("嘲", 15, "ridicule, insult", "口", NULL, NULL, 7, true), +("釣", 11, "angling, fish, catch, allure, ensnare", "金", 1, 1542, 7, true), +("衷", 9, "inmost, heart, mind, inside", "衣", 1, 2229, 7, true), +("抽", 8, "pluck, pull, extract, excel", "手", 1, 1437, 7, true), +("沈", 7, "sink, be submerged, subside, be depressed, aloes", "水", 2, 1271, 7, true), +("貼", 12, "stick, paste, apply", "貝", NULL, 2444, 7, true), +("朕", 10, "majestic plural, imperial we", "月", 1, NULL, 7, true), +("懲", 18, "penal, chastise, punish, discipline", "心", 1, 1303, 7, true), +("超", 12, "transcend, super-, ultra-", "走", 2, 597, 7, true), +("駐", 15, "stop-over, reside in, resident", "馬", 2, 955, 7, true), +("鎮", 18, "tranquilize, ancient peace-preservation centers", "金", 1, 1617, 7, true), +("珍", 9, "rare, curious, strange", "玉", 2, 1330, 7, true), +("塚", 12, "hillock, mound", "土", 1, 869, 7, true), +("墜", 15, "crash, fall (down)", "土", 1, 1466, 7, true), +("坪", 8, "two-mat area, approx. thirty-six sq ft", "土", 1, 1823, 7, true), +("捗", 10, "make progress", "手", NULL, NULL, 7, true), +("椎", 12, "chinquapin, mallet, spine", "木", 1, 1911, 7, true), +("爪", 4, "claw, nail, talon", "爪", NULL, 2025, 7, true), +("呈", 7, "display, offer, present, send, exhibit", "口", 1, 1571, 7, true), +("漬", 14, "pickling, soak, moisten, steep", "水", 1, 1818, 7, true), +("陳", 11, "exhibit, state, relate, explain", "阜", 1, 1323, 7, true), +("鶴", 21, "crane, stork", "鳥", 1, 1369, 7, true), +("廷", 7, "courts, imperial court, government office", "廴", 1, 1439, 7, true), +("邸", 8, "residence, mansion", "邑", 1, 905, 7, true), +("貞", 9, "upright, chastity, constancy, righteousness", "貝", 1, 1389, 7, true), +("抵", 8, "resist, reach, touch", "手", 1, 1182, 7, true), +("逓", 10, "relay, in turn, sending", "辵", 1, 1957, 7, true), +("亭", 9, "pavilion, restaurant, mansion, arbor, cottage, vaudeville, music hall, stage name", "亠", 1, 1627, 7, true), +("帝", 9, "sovereign, the emperor, god, creator", "巾", 1, 1276, 7, true), +("堤", 12, "dike, bank, embankment", "土", 1, 1658, 7, true), +("偵", 11, "spy", "人", 1, 1857, 7, true), +("訂", 9, "revise, correct, decide", "言", 1, 1690, 7, true), +("諦", 16, "truth, clarity, abandon, give up", "言", NULL, 2457, 7, true), +("締", 15, "tighten, tie, shut, lock, fasten", "糸", 1, 797, 7, true), +("摘", 14, "pinch, pick, pluck, trim, clip, summarize", "手", 1, 564, 7, true), +("溺", 13, "drown, indulge", "水", NULL, NULL, 7, true), +("滴", 14, "drip, drop", "水", 2, 2019, 7, true), +("撤", 15, "remove, withdraw, disarm, dismantle, reject, exclude", "手", 1, 811, 7, true), +("唐", 10, "T'ang, China, foreign", "口", NULL, 1727, 7, true), +("哲", 10, "philosophy, clear", "口", 1, 1093, 7, true), +("添", 11, "annexed, accompany, marry, suit, meet, satisfy, attach, append, garnish, imitate", "水", 1, 1501, 7, true), +("怒", 9, "angry, be offended", "心", 3, 1221, 7, true), +("凍", 10, "frozen, congeal, refrigerate", "冫", 2, 1284, 7, true), +("徹", 15, "penetrate, clear, pierce, strike home, sit up (all night)", "彳", 1, 968, 7, true), +("倒", 10, "overthrow, fall, collapse, drop, break down", "人", 3, 791, 7, true), +("桃", 10, "peach", "木", 1, 1784, 7, true), +("途", 10, "route, way, road", "辵", 3, 717, 7, true), +("渡", 12, "transit, ford, ferry, cross, import, deliver, diameter, migrate", "水", 3, 446, 7, true), +("透", 10, "transparent, permeate, filter, penetrate", "辵", 1, 1035, 7, true), +("迭", 8, "transfer, alternation", "辵", 1, 1907, 7, true), +("陶", 11, "pottery, porcelain", "阜", 1, 1680, 7, true), +("到", 8, "arrival, proceed, reach, attain, result in", "刀", 3, 1032, 7, true), +("妬", 8, "jealous, envy", "女", NULL, NULL, 7, true), +("盗", 11, "steal, rob, pilfer", "皿", 3, 1051, 7, true), +("塔", 12, "pagoda, tower, steeple", "土", 2, 1708, 7, true), +("塡", 13, "fill in, fill up, make good", "土", NULL, NULL, 7, true), +("奴", 5, "guy, slave, manservant, fellow", "女", 1, 1932, 7, true), +("吐", 6, "spit, vomit, belch, confess, tell (lies)", "口", 1, 1674, 7, true), +("逃", 9, "escape, flee, shirk, evade, set free", "辵", 3, 931, 7, true), +("塗", 13, "paint, plaster, daub, smear, coating", "土", 2, 1414, 7, true), +("艇", 13, "rowboat, small boat", "舟", 1, 1433, 7, true), +("泥", 8, "mud, mire, adhere to, be attached to", "水", 2, 1589, 7, true), +("殿", 13, "Mr., hall, mansion, palace, temple, lord", "殳", 2, 1199, 7, true), +("搭", 12, "board, load (a vehicle), ride", "手", 1, 1472, 7, true), +("賭", 15, "gamble, wager, bet", "貝", NULL, 1989, 7, true), +("痘", 12, "pox, smallpox", "疒", 1, NULL, 7, true), +("悼", 11, "lament, grieve over", "心", 1, 1645, 7, true), +("斗", 4, "Big Dipper, ten sho (vol), sake dipper, dots and cross radical (no. 68)", "斗", 1, 1885, 7, true), +("踏", 15, "step, trample, carry through, appraise, evade payment", "足", 1, 723, 7, true), +("謄", 17, "mimeograph, copy", "言", 1, 2295, 7, true), +("棟", 12, "ridgepole, ridge", "木", 1, 1406, 7, true), +("筒", 12, "cylinder, pipe, tube, gun barrel, sleeve", "竹", 2, 1631, 7, true), +("稲", 14, "rice plant", "禾", 1, 1038, 7, true), +("那", 7, "what?", "邑", 1, 1621, 7, true), +("篤", 16, "fervent, kind, cordial, serious, deliberate", "竹", 1, 1942, 7, true), +("曇", 16, "cloudy weather, cloud up", "日", 2, 1899, 7, true), +("丼", 5, "bowl, bowl of food", "丶", NULL, 2088, 7, true), +("謎", 16, "riddle, puzzle, enigma, hint, tip", "言", NULL, 2021, 7, true), +("豚", 11, "pork, pig", "豕", 1, 1864, 7, true), +("突", 8, "stab, protruding, thrust, pierce, prick, collision, sudden", "穴", 3, 521, 7, true), +("匿", 10, "hide, shelter, shield", "匸", 1, 2024, 7, true), +("頓", 13, "suddenly, immediately, in a hurry, arrange, stay in place, bow, kowtow", "頁", NULL, NULL, 7, true), +("屯", 4, "barracks, police station, camp, ton", "屮", 1, 1980, 7, true), +("鈍", 12, "dull, slow, foolish, blunt", "金", 2, 1574, 7, true), +("藤", 18, "wisteria", "艸", 1, 291, 7, true), +("督", 13, "coach, command, urge, lead, supervise", "目", 1, 534, 7, true), +("峠", 9, "mountain peak, mountain pass, climax, crest, (kokuji)", "山", 1, 1941, 7, true), +("胴", 10, "trunk, torso, hull (ship), hub of wheel", "肉", 1, 1904, 7, true), +("貪", 11, "covet, indulge in", "貝", NULL, NULL, 7, true), +("鍋", 17, "pot, pan, kettle", "金", NULL, 1810, 7, true), +("凸", 5, "convex, beetle brow, uneven", "凵", 1, 2143, 7, true), +("瞳", 17, "pupil (of eye)", "目", 1, 2069, 7, true), +("騰", 20, "leaping up, jumping up, rising, advancing, going", "馬", 1, 1420, 7, true), +("尼", 5, "nun", "尸", 1, 1844, 7, true), +("弐", 6, "II, two, second", "弋", 1, NULL, 7, true), +("闘", 18, "fight, war", "門", 1, 751, 7, true), +("虹", 9, "rainbow", "虫", 1, 2110, 7, true), +("軟", 11, "soft", "車", 2, 1269, 7, true), +("洞", 9, "den, cave, excavation", "水", 1, 1618, 7, true), +("尿", 7, "urine", "尸", 1, 1672, 7, true), +("妊", 7, "pregnancy", "女", 1, 1413, 7, true), +("匂", 4, "fragrant, stink, glow, insinuate, (kokuji)", "勹", NULL, 2213, 7, true), +("忍", 7, "endure, bear, put up with, conceal, secrete, spy, sneak", "心", 1, 1700, 7, true), +("寧", 14, "rather, preferably, peaceful, quiet, tranquility", "宀", 1, 1697, 7, true), +("粘", 11, "sticky, glutinous, greasy, persevere", "米", 1, 1410, 7, true), +("濃", 16, "concentrated, thick, dark, undiluted", "水", 2, 1200, 7, true), +("把", 7, "grasp, faggot, bunch, counter for bundles", "手", 1, 1569, 7, true), +("捻", 11, "twirl, twist, play with", "手", NULL, NULL, 7, true), +("悩", 10, "trouble, worry, in pain, distress, illness", "心", 2, 1084, 7, true), +("覇", 19, "hegemony, supremacy, leadership, champion", "西", 1, 1173, 7, true), +("縛", 16, "truss, arrest, bind, tie, restrain", "糸", 1, 1764, 7, true), +("漠", 13, "vague, obscure, desert, wide", "水", 1, 1611, 7, true), +("婆", 11, "old woman, grandma, wet nurse", "女", 1, 2435, 7, true), +("廃", 12, "abolish, obsolete, cessation, discarding, abandon", "广", 1, 698, 7, true), +("拍", 8, "clap, beat (music)", "手", 1, 1373, 7, true), +("賠", 15, "compensation, indemnify", "貝", 1, 1243, 7, true), +("培", 11, "cultivate, foster", "土", 1, 1431, 7, true), +("薄", 16, "dilute, thin, weak (tea), pampas grass", "艸", 2, 1009, 7, true), +("輩", 15, "comrade, fellow, people, companions", "車", 1, 1365, 7, true), +("迫", 8, "urge, force, imminent, spur on", "辵", 1, 773, 7, true), +("剝", 10, "", "刀", NULL, NULL, NULL, true), +("排", 11, "repudiate, exclude, expel, reject, line up, arrange", "手", 1, 1047, 7, true), +("陪", 11, "obeisance, follow, accompany, attend on", "阜", 1, 1917, 7, true), +("媒", 12, "mediator, go-between", "女", 1, 1900, 7, true), +("泊", 8, "overnight stay, put up at, ride at anchor", "水", 2, 1233, 7, true), +("伯", 7, "chief, count, earl, uncle, Brazil", "人", 1, 1741, 7, true), +("杯", 8, "counter for cupfuls, wine glass, glass, toast", "木", 3, 1235, 7, true), +("舶", 11, "liner, ship", "舟", 1, 1753, 7, true), +("罵", 15, "abuse, insult", "网", NULL, 2467, 7, true), +("爆", 19, "bomb, burst open, pop, split", "火", 2, 735, 7, true), +("箸", 15, "chopsticks", "竹", NULL, 2156, 7, true), +("鉢", 13, "bowl, rice tub, pot, crown", "金", 1, 1890, 7, true), +("髪", 14, "hair of the head", "髟", 3, 1474, 7, true), +("抜", 7, "slip out, extract, pull out, pilfer, quote, remove, omit", "手", 3, 726, 7, true), +("氾", 5, "spread out, wide", "水", NULL, NULL, 7, true), +("伐", 6, "fell, strike, attack, punish", "人", 1, 1816, 7, true), +("肌", 6, "texture, skin, body, grain", "肉", 2, 1559, 7, true), +("罰", 14, "penalty, punishment", "网", 1, 1220, 7, true), +("閥", 14, "clique, lineage, pedigree, faction, clan", "門", 1, 1072, 7, true), +("帆", 6, "sail", "巾", 1, 1923, 7, true), +("畔", 10, "paddy ridge, levee", "田", 1, 2049, 7, true), +("伴", 7, "consort, accompany, bring with, companion", "人", 1, 886, 7, true), +("汎", 6, "pan-", "水", NULL, 2014, 7, true), +("販", 11, "marketing, sell, trade", "貝", 2, 627, 7, true), +("搬", 13, "conveyor, carry, transport", "手", 1, 1664, 7, true), +("斑", 12, "spot, blemish, speck, patches", "文", NULL, 2165, 7, true), +("頒", 13, "distribute, disseminate, partition, understand", "頁", 1, 2287, 7, true), +("煩", 13, "anxiety, trouble, worry, pain, ill, annoy, nuisance, irksome", "火", 1, 2081, 7, true), +("範", 15, "pattern, example, model", "竹", 1, 1088, 7, true), +("般", 10, "carrier, carry, all, general, sort, kind", "舟", 2, 649, 7, true), +("蛮", 12, "barbarian", "虫", 1, 2339, 7, true), +("妃", 6, "queen, princess", "女", 1, 1752, 7, true), +("藩", 18, "clan, enclosure", "艸", 1, 1896, 7, true), +("繁", 16, "luxuriant, thick, overgrown, frequency, complexity, trouble", "糸", 1, 1198, 7, true), +("盤", 15, "tray, shallow bowl, platter, tub, board, phonograph record", "皿", 1, 881, 7, true), +("疲", 10, "exhausted, tire, weary", "疒", 3, 1263, 7, true), +("卑", 9, "lowly, base, vile, vulgar", "十", 1, 2003, 7, true), +("彼", 8, "he, that, the", "彳", 3, 648, 7, true), +("被", 10, "incur, cover, veil, brood over, shelter, wear, put on, be exposed (film), receiving", "衣", 2, 431, 7, true), +("披", 8, "expose, open", "手", 1, 1438, 7, true), +("扉", 12, "front door, title page, front page", "戶", 1, 1866, 7, true), +("碑", 14, "tombstone, monument", "石", 1, 1792, 7, true), +("罷", 15, "quit, stop, leave, withdraw, go", "网", 1, 2104, 7, true), +("避", 16, "evade, avoid, avert, ward off, shirk, shun", "辵", 1, 756, 7, true), +("尾", 7, "tail, end, counter for fish, lower slope of mountain", "尸", 1, 875, 7, true), +("扶", 7, "aid, help, assist", "手", 1, 1879, 7, true), +("眉", 9, "eyebrow", "目", 1, 2177, 7, true), +("肘", 7, "elbow, arm", "肉", NULL, NULL, 7, true), +("姫", 10, "princess", "女", 1, 1566, 7, true), +("描", 11, "sketch, compose, write, draw, paint", "手", 1, 876, 7, true), +("漂", 14, "drift, float (on liquid)", "水", 1, 1492, 7, true), +("怖", 8, "dreadful, be frightened, fearful", "心", 3, 1325, 7, true), +("浜", 10, "seacoast, beach, seashore", "水", 1, 645, 7, true), +("匹", 4, "equal, head, counter for small animals, roll of cloth", "匸", 2, 1384, 7, true), +("瓶", 11, "bottle, vial, jar, jug, vat, urn", "瓦", 2, 1528, 7, true), +("附", 8, "affixed, attach, refer to, append", "阜", 1, 2396, 7, true), +("苗", 8, "seedling, sapling, shoot", "艸", 1, 1713, 7, true), +("猫", 11, "cat", "犬", 3, 1702, 7, true), +("頻", 17, "repeatedly, recur", "頁", 1, 1590, 7, true), +("赴", 9, "proceed, get, become, tend", "走", 1, 1649, 7, true), +("賓", 15, "V.I.P., guest", "貝", 1, 1677, 7, true), +("微", 13, "delicate, minuteness, insignificance", "彳", 1, 1108, 7, true), +("浮", 10, "floating, float, rise to surface", "水", 3, 776, 7, true), +("敏", 10, "cleverness, agile, alert", "攴", 1, 1042, 7, true), +("訃", 9, "obituary", "言", NULL, 2379, 7, true), +("膝", 15, "knee, lap", "肉", NULL, 2320, 7, true), +("符", 11, "token, sign, mark, tally, charm", "竹", 2, 1798, 7, true), +("腐", 14, "rot, decay, sour", "肉", 1, 1225, 7, true), +("膚", 15, "skin, body, grain, texture, disposition", "肉", 2, 1679, 7, true), +("敷", 15, "spread, pave, sit, promulgate", "攴", 1, 1212, 7, true), +("泌", 8, "ooze, flow, soak in, penetrate, secrete", "水", 1, 2112, 7, true), +("舞", 15, "dance, flit, circle, wheel", "舛", 3, 655, 7, true), +("伏", 6, "prostrated, bend down, bow, cover, lay (pipes)", "人", 1, 1604, 7, true), +("沸", 8, "seethe, boil, ferment, uproar, breed", "水", 2, 1709, 7, true), +("賦", 15, "levy, ode, prose, poem, tribute, installment", "貝", 1, NULL, 7, true), +("噴", 15, "erupt, spout, emit, flush out", "口", 1, 1270, 7, true), +("憤", 15, "aroused, resent, be indignant, anger", "心", 1, 1863, 7, true), +("柄", 9, "design, pattern, build, nature, character, handle, crank, grip, knob, shaft", "木", 1, 1140, 7, true), +("併", 8, "join, get together, unite, collective", "人", 1, 966, 7, true), +("払", 5, "pay, clear out, prune, banish, dispose of", "手", 3, 813, 7, true), +("墳", 15, "tomb, mound", "土", 1, 1822, 7, true), +("幅", 12, "hanging scroll, width", "巾", 2, 641, 7, true), +("普", 12, "universal, wide(ly), generally, Prussia", "日", 2, 757, 7, true), +("譜", 19, "musical score, music, note, staff, table, genealogy", "言", 1, 1919, 7, true), +("紛", 10, "distract, be mistaken for, go astray, divert", "糸", 1, 994, 7, true), +("侮", 8, "scorn, despise, make light of, contempt", "人", 1, 2004, 7, true), +("封", 9, "seal, closing", "寸", 2, 1143, 7, true), +("覆", 18, "capsize, cover, shade, mantle, be ruined", "西", 1, 1378, 7, true), +("雰", 12, "atmosphere, fog", "雨", 1, 1341, 7, true), +("丙", 5, "third class, 3rd, 3rd calendar sign", "一", 1, NULL, 7, true), +("塀", 12, "fence, wall, (kokuji)", "土", 1, 1991, 7, true), +("幣", 15, "cash, bad habit, humble prefix, gift, Shinto offerings of cloth, rope, cut paper", "巾", 1, 1803, 7, true), +("弊", 15, "abuse, evil, vice, breakage", "廾", 1, 1750, 7, true), +("蔽", 15, "cover, shade, mantle, capsize, be ruined", "艸", NULL, NULL, 7, true), +("璧", 18, "sphere, ball", "玉", NULL, NULL, 7, true), +("壁", 16, "wall, lining (stomach), fence", "土", 1, 1037, 7, true), +("癖", 18, "mannerism, habit, vice, trait, fault, kink", "疒", 1, 1973, 7, true), +("偏", 11, "partial, side, left-side radical, inclining, biased", "人", 1, 1340, 7, true), +("蔑", 14, "ignore, despise, neglect, ridicule", "艸", NULL, 2483, 7, true), +("遍", 12, "everywhere, times, widely, generally", "辵", 1, 1845, 7, true), +("餅", 14, "mochi rice cake", "食", NULL, 2152, 7, true), +("哺", 10, "nurse, suckle", "口", NULL, 2461, 7, true), +("捕", 10, "catch, capture", "手", 3, 604, 7, true), +("募", 12, "recruit, campaign, gather (contributions), enlist, grow violent", "力", 2, 809, 7, true), +("芳", 7, "perfume, balmy, favorable, fragrant", "艸", 1, 1302, 7, true), +("簿", 19, "register, record book", "竹", 1, 1358, 7, true), +("奉", 8, "observance, offer, present, dedicate", "大", 1, 1624, 7, true), +("邦", 7, "home country, country, Japan", "邑", 1, 654, 7, true), +("慕", 14, "pining, yearn for, love dearly, adore", "心", 1, 2100, 7, true), +("抱", 8, "embrace, hug, hold in arms", "手", 3, 871, 7, true), +("倣", 10, "emulate, imitate", "人", 1, 2454, 7, true), +("俸", 10, "stipend, salary", "人", 1, 1834, 7, true), +("泡", 8, "bubbles, foam, suds, froth", "水", 1, 1872, 7, true), +("胞", 9, "placenta, sac, sheath", "肉", 1, 1379, 7, true), +("砲", 10, "cannon, gun", "石", 1, 1268, 7, true), +("蜂", 13, "bee, wasp, hornet", "虫", NULL, 2223, 7, true), +("峰", 10, "summit, peak", "山", 1, 1836, 7, true), +("舗", 15, "shop, store, pave", "人", 1, 1412, 7, true), +("縫", 16, "sew, stitch, embroider", "糸", 1, 1723, 7, true), +("飽", 13, "sated, tired of, bored, satiate", "食", 1, 1780, 7, true), +("坊", 7, "boy, priest's residence, priest", "土", NULL, 1832, 7, true), +("妨", 7, "disturb, prevent, hamper, obstruct", "女", 1, 1482, 7, true), +("忙", 6, "busy, occupied, restless", "心", 3, 1475, 7, true), +("乏", 4, "destitution, scarce, limited", "丿", 1, 1646, 7, true), +("某", 9, "so-and-so, one, a certain, that person", "木", 1, 2106, 7, true), +("房", 8, "tassel, tuft, fringe, bunch, lock (hair), segment (orange), house, room", "戶", 1, 808, 7, true), +("肪", 8, "obese, fat", "肉", 1, 1878, 7, true), +("傍", 12, "bystander, side, besides, while, nearby, third person", "人", 1, 1660, 7, true), +("冒", 9, "risk, face, defy, dare, damage, assume (a name)", "冂", 1, 1317, 7, true), +("墨", 14, "black ink, India ink, ink stick, Mexico", "土", 1, 1616, 7, true), +("膨", 16, "swell, get fat, thick", "肉", 1, 1293, 7, true), +("剖", 10, "divide", "刀", 1, 1918, 7, true), +("紡", 10, "spinning", "糸", 1, 1876, 7, true), +("崩", 11, "crumble, die, demolish, level", "山", 1, 778, 7, true), +("褒", 15, "praise, extol", "衣", 1, 2073, 7, true), +("撲", 15, "slap, strike, hit, beat, tell, speak", "手", 1, 1283, 7, true), +("帽", 12, "cap, headgear", "巾", 2, 1742, 7, true), +("没", 7, "drown, sink, hide, fall into, disappear, die", "水", 1, 1385, 7, true), +("頰", 16, "cheeks, jaw", "頁", NULL, NULL, 7, true), +("勃", 9, "suddenness, rise", "力", NULL, NULL, 7, true), +("僕", 14, "me, I (male), servant, manservant", "人", 1, 1236, 7, true), +("堀", 11, "ditch, moat, canal", "土", 1, 1285, 7, true), +("朴", 6, "crude, simple, plain, docile", "木", 1, 1626, 7, true), +("奔", 8, "run, bustle", "大", 1, 1884, 7, true), +("謀", 16, "conspire, cheat, impose on, plan, devise, scheme, have in mind, deceive", "言", 1, 1370, 7, true), +("睦", 13, "intimate, friendly, harmonious", "目", 1, 1993, 7, true), +("盆", 9, "basin, lantern festival, tray", "皿", 1, 1654, 7, true), +("貌", 14, "form, appearance, countenance", "豸", NULL, NULL, 7, true), +("麻", 11, "hemp, flax, numb", "麻", 1, 1142, 7, true), +("摩", 15, "chafe, rub, polish, grind, scrape", "手", 1, 1252, 7, true), +("翻", 18, "flip, turn over, wave, flutter, change (mind)", "羽", 1, 1465, 7, true), +("磨", 16, "grind, polish, scour, improve, brush (teeth)", "石", 2, 1608, 7, true), +("凡", 3, "commonplace, ordinary, mediocre", "几", 1, 1730, 7, true), +("膜", 14, "membrane", "肉", 1, 1804, 7, true), +("埋", 10, "bury, be filled up, embedded", "土", 2, 1110, 7, true), +("昧", 9, "dark, foolish", "日", NULL, NULL, 7, true), +("魔", 21, "witch, demon, evil spirit", "鬼", 1, 1514, 7, true), +("枕", 8, "pillow", "木", NULL, 2084, 7, true), +("又", 2, "or again, furthermore, on the other hand", "又", 1, 1874, 7, true), +("抹", 8, "rub, paint, erase", "手", 1, 2006, 7, true), +("慢", 14, "ridicule, laziness", "心", 1, 1368, 7, true), +("蜜", 14, "honey, nectar, molasses", "虫", NULL, 2203, 7, true), +("岬", 8, "headland, cape, spit, promontory", "山", 1, 1972, 7, true), +("漫", 14, "cartoon, involuntarily, unrestrained, in spite of oneself, corrupt", "水", 1, 1408, 7, true), +("妙", 7, "exquisite, strange, queer, mystery, miracle, excellent, delicate, charming", "女", 1, 1122, 7, true), +("魅", 15, "fascination, charm, bewitch", "鬼", 1, 1206, 7, true), +("冥", 10, "dark", "冖", NULL, 2349, 7, true), +("娘", 10, "daughter, girl", "女", 3, 1145, 7, true), +("眠", 10, "sleep, die, sleepy", "目", 3, 1315, 7, true), +("麺", 16, "noodles, wheat flour", "麥", NULL, 2331, 7, true), +("滅", 13, "destroy, ruin, overthrow, perish", "水", 1, 1222, 7, true), +("妄", 6, "delusion, unnecessarily, without authority, reckless", "女", 1, 2264, 7, true), +("茂", 8, "overgrown, grow thick, be luxuriant", "艸", 1, 1188, 7, true), +("盲", 8, "blind, blind man, ignoramus", "目", 1, 1767, 7, true), +("免", 8, "excuse, dismissal", "儿", 1, 1080, 7, true), +("耗", 10, "decrease", "耒", 1, NULL, 7, true), +("猛", 11, "fierce, rave, rush, become furious, wildness, strength", "犬", 1, 1301, 7, true), +("網", 14, "netting, network", "糸", 1, 1194, 7, true), +("矛", 5, "halberd, arms, festival float", "矛", 1, 1538, 7, true), +("弥", 8, "all the more, increasingly", "弓", 1, 1687, 7, true), +("黙", 15, "silence, become silent, stop speaking, leave as is", "黑", 1, 1338, 7, true), +("厄", 4, "unlucky, misfortune, bad luck, disaster", "厂", 1, 2123, 7, true), +("冶", 7, "melting, smelting", "冫", 1, NULL, 7, true), +("躍", 21, "leap, dance, skip", "足", 1, 900, 7, true), +("霧", 19, "fog, mist", "雨", 1, 1747, 7, true), +("闇", 17, "get dark, gloom, disorder", "門", NULL, 1969, 7, true), +("愉", 12, "pleasure, happy, rejoice", "心", 1, 1974, 7, true), +("喩", 12, "metaphor, compare", "口", NULL, NULL, 7, true), +("唯", 11, "solely, only, merely, simply", "口", 1, 1292, 7, true), +("銘", 14, "inscription, signature (of artisan)", "金", 1, 1394, 7, true), +("癒", 18, "healing, cure, quench (thirst), wreak", "疒", 1, 1667, 7, true), +("紋", 10, "family crest, figures", "糸", 1, 1519, 7, true), +("幽", 9, "seclude, confine to a room, deep, profound, secluded, faint, dark, tranquil, calm", "幺", 1, 1996, 7, true), +("諭", 16, "rebuke, admonish, charge, warn, persuade", "言", 1, 1461, 7, true), +("悠", 11, "permanence, distant, long time, leisure", "心", 1, 1921, 7, true), +("雄", 12, "masculine, male, hero, leader, superiority, excellence", "隹", 1, 669, 7, true), +("湧", 12, "boil, ferment, seethe, uproar, breed", "水", 1, 2070, 7, true), +("裕", 12, "abundant, rich, fertile", "衣", 1, 1048, 7, true), +("猶", 12, "furthermore, still, yet", "犬", 1, 1799, 7, true), +("憂", 15, "melancholy, grieve, lament, be anxious, sad, unhappy", "心", 1, 1625, 7, true), +("融", 16, "dissolve, melt", "虫", 1, 481, 7, true), +("誉", 13, "reputation, praise, honor, glory", "言", 1, 1064, 7, true), +("妖", 7, "attractive, bewitching, calamity", "女", NULL, 1964, 7, true), +("誘", 14, "entice, lead, tempt, invite, ask, call for, seduce, allure", "言", 1, 993, 7, true), +("庸", 11, "commonplace, ordinary, employment", "广", 1, 2038, 7, true), +("揚", 12, "raise, elevate, hoist, praise, extol, fry in deep fat", "手", 1, 1316, 7, true), +("与", 3, "bestow, participate in, give, award, impart, provide, cause, gift, godsend", "一", 3, 308, 7, true), +("揺", 12, "swing, shake, sway, rock, tremble, vibrate", "手", 1, 1079, 7, true), +("溶", 13, "melt, dissolve, thaw", "水", 2, 1364, 7, true), +("瘍", 14, "swelling, boil, tumor", "疒", NULL, NULL, 7, true), +("窯", 15, "kiln, oven, furnace", "穴", 1, 2072, 7, true), +("踊", 14, "jump, dance, leap, skip", "足", 2, 1308, 7, true), +("擁", 16, "hug, embrace, possess, protect, lead", "手", 1, 1213, 7, true), +("謡", 16, "song, sing, ballad, noh chanting", "言", 1, 1580, 7, true), +("沃", 7, "fertility", "水", NULL, NULL, 7, true), +("腰", 13, "loins, hips, waist, low wainscoting", "肉", 2, 1306, 7, true), +("拉", 8, "Latin, kidnap, crush", "手", NULL, NULL, 7, true), +("抑", 7, "repress, well, now, in the first place, push, shove, press, seal, do in spite of", "手", 1, 834, 7, true), +("羅", 19, "gauze, thin silk, Rome, arrange, spread out", "网", 1, 1831, 7, true), +("翼", 17, "wing, plane, flank", "羽", 1, 1201, 7, true), +("頼", 16, "trust, request", "頁", 3, 708, 7, true), +("絡", 12, "entwine, coil around, get caught in", "糸", 2, 806, 7, true), +("酪", 13, "dairy products, whey, broth, fruit juice", "酉", 1, 2012, 7, true), +("雷", 13, "thunder, lightning bolt", "雨", 1, 1491, 7, true), +("藍", 18, "indigo", "艸", 1, 2043, 7, true), +("吏", 6, "officer, an official", "口", 1, NULL, 7, true), +("裸", 13, "naked, nude, uncovered, partially clothed", "衣", 1, 1796, 7, true), +("履", 15, "perform, complete, footgear, shoes, boots, put on (the feet)", "尸", 1, 1619, 7, true), +("辣", 14, "pungent, spicy, harsh, cruel, severe", "辛", NULL, NULL, 7, true), +("濫", 18, "excessive, overflow, spread out", "水", 1, NULL, 7, true), +("欄", 20, "column, handrail, blank, space", "木", 1, 1523, 7, true), +("離", 19, "detach, separation, disjoin, digress", "隹", 1, 555, 7, true), +("璃", 15, "glassy, lapis lazuli", "玉", 1, NULL, 7, true), +("柳", 9, "willow", "木", 1, 1169, 7, true), +("痢", 12, "diarrhea", "疒", 1, 2037, 7, true), +("慄", 13, "fear", "心", NULL, NULL, 7, true), +("竜", 10, "dragon, imperial", "立", 1, 1195, 7, true), +("隆", 11, "hump, high, noble, prosperity", "阜", 1, 1109, 7, true), +("粒", 11, "grains, drop, counter for tiny particles", "米", 2, 1635, 7, true), +("侶", 9, "companion, follower", "人", NULL, NULL, 7, true), +("虜", 13, "captive, barbarian, low epithet for the enemy", "虍", 1, 1678, 7, true), +("了", 2, "complete, finish", "亅", 2, 792, 7, true), +("慮", 15, "prudence, thought, concern, consider, deliberate, fear", "心", 1, 916, 7, true), +("涼", 11, "refreshing, nice and cool", "水", 2, 1783, 7, true), +("僚", 14, "colleague, official, companion", "人", 1, 709, 7, true), +("寮", 15, "dormitory, hostel, villa, tea pavillion", "宀", 1, 1705, 7, true), +("陵", 11, "mausoleum, imperial tomb, mound, hill", "阜", 1, 1746, 7, true), +("猟", 11, "game-hunting, shooting, game, bag", "犬", 1, 1851, 7, true), +("瞭", 17, "clear", "目", 1, NULL, 7, true), +("療", 17, "heal, cure", "疒", 2, 600, 7, true), +("糧", 18, "provisions, food, bread", "米", 1, 1354, 7, true), +("厘", 9, "rin, 1/10 sen, 1/10 bu", "厂", 1, 1835, 7, true), +("倫", 10, "ethics, companion", "人", 1, 1322, 7, true), +("瑠", 14, "lapis lazuli", "玉", 1, 2352, 7, true), +("涙", 10, "tears, sympathy", "水", 2, 1381, 7, true), +("戻", 7, "re-, return, revert, resume, restore, go backwards", "戶", 3, 890, 7, true), +("零", 13, "zero, spill, overflow, nothing, cipher", "雨", 2, 1217, 7, true), +("隣", 16, "neighboring", "阜", 1, 1083, 7, true), +("励", 7, "encourage, be diligent, inspire", "力", 1, 1254, 7, true), +("累", 11, "accumulate, involvement, trouble, tie up, continually", "糸", 1, 1662, 7, true), +("鈴", 13, "small bell, buzzer", "金", 1, 880, 7, true), +("塁", 12, "bases, fort, rampart, walls, base(ball)", "土", 1, 651, 7, true), +("霊", 15, "spirits, soul", "雨", 1, 1458, 7, true), +("隷", 16, "slave, servant, prisoner, criminal, follower", "隶", 1, 2009, 7, true), +("麗", 19, "lovely, beautiful, graceful, resplendent", "鹿", 1, 1758, 7, true), +("齢", 17, "age", "齒", 2, 770, 7, true), +("暦", 14, "calendar, almanac", "日", 1, 1765, 7, true), +("裂", 12, "split, rend, tear", "衣", 1, 1041, 7, true), +("籠", 22, "basket, devote oneself, seclude oneself, cage, coop, implied", "竹", NULL, NULL, 7, true), +("劣", 6, "inferiority, be inferior to, be worse", "力", 1, 1620, 7, true), +("恋", 10, "romance, in love, yearn for, miss, darling", "心", 2, 1296, 7, true), +("廉", 13, "bargain, reason, charge, suspicion, point, account, purity, honest, low price, cheap, rested, contented, peaceful", "广", 1, 2066, 7, true), +("麓", 19, "foot of a mountain", "鹿", NULL, 2366, 7, true), +("錬", 16, "tempering, refine, drill, train, polish", "金", 1, 2221, 7, true), +("烈", 10, "ardent, violent, vehement, furious, severe, extreme", "火", 1, 1397, 7, true), +("呂", 7, "spine, backbone", "口", 1, 2055, 7, true), +("郎", 9, "son, counter for sons", "邑", 1, 569, 7, true), +("露", 21, "dew, tears, expose, Russia", "雨", 1, 928, 7, true), +("炉", 8, "hearth, furnace, kiln, reactor", "火", 1, 1359, 7, true), +("廊", 12, "corridor, hall, tower", "广", 1, 1598, 7, true), +("弄", 7, "play with, tamper, trifle with", "廾", NULL, NULL, 7, true), +("硫", 12, "sulphur", "石", 1, 1867, 7, true), +("賂", 13, "bribe", "貝", NULL, NULL, 7, true), +("漏", 14, "leak, escape, time", "水", 1, 1298, 7, true), +("楼", 13, "watchtower, lookout, high building", "木", 1, 2173, 7, true), +("脇", 10, "armpit, the other way, another place, flank, supporting role", "肉", NULL, 1806, 7, true), +("惑", 12, "beguile, delusion, perplexity", "心", 1, 777, 7, true), +("枠", 8, "frame, framework, spindle, spool, bounding-box, (kokuji)", "木", 1, 922, 7, true), +("浪", 10, "wandering, waves, billows, reckless, unrestrained", "水", 1, 1508, 7, true), +("腕", 12, "arm, ability, talent", "肉", 2, 1163, 7, true), +("賄", 13, "bribe, board, supply, finance", "貝", 1, 1282, 7, true), +("湾", 12, "gulf, bay, inlet", "水", 2, 545, 7, true); + +INSERT OR IGNORE INTO Kanji_Onyomi(yomi) VALUES +("ア"), +("アイ"), +("アイ"), +("アイ"), +("アク"), +("ラン"), +("イ"), +("エ"), +("ソウ"), +("キュウ"), +("エン"), +("イ"), +("ジョウ"), +("イ"), +("イ"), +("イ"), +("イ"), +("イ"), +("イ"), +("イ"), +("イチ"), +("イツ"), +("イ"), +("イ"), +("イツ"), +("イン"), +("エン"), +("エツ"), +("イ"), +("イン"), +("ウ"), +("イン"), +("イン"), +("イ"), +("エキ"), +("ヤク"), +("エン"), +("オン"), +("ウン"), +("エン"), +("エイ"), +("エツ"), +("エツ"), +("エン"), +("エン"), +("ホ"), +("イン"), +("ウツ"), +("エン"), +("エイ"), +("エン"), +("エツ"), +("オツ"), +("エン"), +("-ネン"), +("イン"), +("オン"), +("エイ"), +("バイ"), +("エン"), +("エン"), +("オウ"), +("ボウ"), +("ホ"), +("モ"), +("ム"), +("オク"), +("オウ"), +("オウ"), +("オウ"), +("オウ"), +("オ"), +("オウ"), +("キョウ"), +("ゴウ"), +("オウ"), +("オツ"), +("イツ"), +("グ"), +("エン"), +("シャ"), +("オン"), +("エツ"), +("オク"), +("ヨク"), +("カ"), +("カ"), +("カ"), +("カ"), +("カ"), +("コ"), +("ブン"), +("ガ"), +("カ"), +("ガ"), +("カ"), +("ケ"), +("カ"), +("ガ"), +("ゲ"), +("カ"), +("カ"), +("カ"), +("カ"), +("カ"), +("カイ"), +("カイ"), +("ケ"), +("カイ"), +("ガ"), +("カイ"), +("カイ"), +("カイ"), +("ケ"), +("カイ"), +("カイ"), +("エ"), +("カイ"), +("エ"), +("カイ"), +("ガイ"), +("カイ"), +("カイ"), +("エ"), +("ガイ"), +("シ"), +("ガイ"), +("ガク"), +("ガイ"), +("カイ"), +("カク"), +("カク"), +("カク"), +("コウ"), +("カク"), +("カク"), +("エン"), +("ガイ"), +("ゲ"), +("ギ"), +("ガイ"), +("カク"), +("カク"), +("コク"), +("バイ"), +("ガイ"), +("カイ"), +("コウ"), +("ガイ"), +("カク"), +("カン"), +("ショ"), +("ソ"), +("ショウ"), +("フ"), +("ガイ"), +("カイ"), +("カツ"), +("カツ"), +("カン"), +("カン"), +("カン"), +("カツ"), +("レン"), +("ケン"), +("カツ"), +("カツ"), +("カチ"), +("ガク"), +("カイ"), +("ケイ"), +("カツ"), +("コツ"), +("カン"), +("カツ"), +("カン"), +("カン"), +("ケン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("タン"), +("カン"), +("カン"), +("カン"), +("カン"), +("ケン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("カン"), +("ガン"), +("ガン"), +("キ"), +("キ"), +("キ"), +("ギ"), +("キ"), +("キ"), +("ガン"), +("キ"), +("キ"), +("キ"), +("キ"), +("キ"), +("キ"), +("キ"), +("ギ"), +("ギ"), +("ゲ"), +("ギ"), +("ギ"), +("キ"), +("キ"), +("ギ"), +("キ"), +("キ"), +("キュウ"), +("キン"), +("ギ"), +("カ"), +("キ"), +("キク"), +("ギャク"), +("キツ"), +("キュウ"), +("キュウ"), +("キョウ"), +("キャク"), +("キャ"), +("カク"), +("キャク"), +("キョ"), +("キュウ"), +("キュウ"), +("キチ"), +("キツ"), +("キョ"), +("コ"), +("キツ"), +("キチ"), +("キュウ"), +("キョ"), +("ギ"), +("キ"), +("キョ"), +("ゴ"), +("キュウ"), +("グ"), +("キョウ"), +("キュウ"), +("ギョ"), +("ゴ"), +("キョウ"), +("キョ"), +("コ"), +("キョウ"), +("キョウ"), +("コウ"), +("キョウ"), +("コウ"), +("キョウ"), +("キョウ"), +("コウ"), +("キョウ"), +("ショウ"), +("キョウ"), +("キョウ"), +("キョウ"), +("キョウ"), +("キョウ"), +("キョウ"), +("ギョウ"), +("キョウ"), +("キン"), +("キン"), +("ギョウ"), +("コウ"), +("ギョウ"), +("キン"), +("フク"), +("キン"), +("ゴン"), +("キン"), +("ゴン"), +("キン"), +("クツ"), +("ソウ"), +("カン"), +("ケン"), +("セン"), +("クン"), +("クツ"), +("コツ"), +("ク"), +("グウ"), +("キン"), +("キン"), +("グウ"), +("クン"), +("ケイ"), +("キョウ"), +("ギン"), +("グウ"), +("ケイ"), +("ク"), +("グ"), +("クツ"), +("ケイ"), +("グ"), +("ケイ"), +("エ"), +("ケイ"), +("キン"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ケイ"), +("ゲイ"), +("ケン"), +("コン"), +("ケイ"), +("ケン"), +("ケン"), +("ケン"), +("ゲン"), +("ケン"), +("ケツ"), +("ケン"), +("ケン"), +("ケン"), +("ゲキ"), +("ゲイ"), +("ケイ"), +("ケン"), +("ケン"), +("ゲン"), +("ケン"), +("ゲキ"), +("キャク"), +("ケキ"), +("ゲイ"), +("ケン"), +("ケン"), +("ケン"), +("ゲン"), +("コウ"), +("ケン"), +("ケン"), +("ケン"), +("ケ"), +("ゲン"), +("コ"), +("コ"), +("コ"), +("コ"), +("ゴ"), +("ゲン"), +("ゴ"), +("コウ"), +("ク"), +("コ"), +("コ"), +("ゴ"), +("コ"), +("コ"), +("コ"), +("ゴ"), +("ゲン"), +("ゴ"), +("コウ"), +("ク"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("カン"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("ク"), +("コ"), +("コウ"), +("コウ"), +("キョウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("コウ"), +("ゴウ"), +("コツ"), +("キツ"), +("キ"), +("キケ"), +("コチ"), +("ゴウ"), +("コク"), +("ゴウ"), +("ゴウ"), +("ク"), +("ゴク"), +("コン"), +("コン"), +("コク"), +("ケイ"), +("キョウ"), +("コン"), +("コン"), +("コン"), +("コン"), +("コン"), +("コン"), +("サ"), +("サ"), +("シャ"), +("ザ"), +("サ"), +("サ"), +("サイ"), +("サ"), +("サイ"), +("サイ"), +("サイ"), +("サイ"), +("サイ"), +("サイ"), +("サイ"), +("ソク"), +("サイ"), +("サイ"), +("セイ"), +("サイ"), +("ザイ"), +("スイ"), +("セイ"), +("サク"), +("サン"), +("サク"), +("サク"), +("サク"), +("サク"), +("シャク"), +("サク"), +("シ"), +("シ"), +("サツ"), +("サン"), +("ザン"), +("サツ"), +("サツ"), +("シ"), +("サン"), +("セン"), +("シ"), +("シ"), +("シ"), +("ショウ"), +("ザン"), +("セチ"), +("セツ"), +("サツ"), +("サン"), +("シ"), +("シ"), +("シ"), +("セ"), +("シ"), +("シ"), +("ザン"), +("サン"), +("セン"), +("ゼン"), +("シ"), +("シツ"), +("ジ"), +("シャ"), +("シ"), +("ジク"), +("シツ"), +("ジ"), +("ニ"), +("シツ"), +("シュウ"), +("ジ"), +("シ"), +("ジ"), +("シ"), +("シツ"), +("シ"), +("シツ"), +("シュウ"), +("シャ"), +("ジャ"), +("シャ"), +("ジャ"), +("ダ"), +("イ"), +("ヤ"), +("シャク"), +("シャク"), +("セキ"), +("シャク"), +("シュ"), +("シュ"), +("シュ"), +("シャ"), +("シュ"), +("ショウ"), +("ジャク"), +("セキ"), +("ジュ"), +("シュ"), +("シュウ"), +("ズ"), +("ジュ"), +("ス"), +("シュウ"), +("シュ"), +("ジュ"), +("シュウ"), +("シュウ"), +("ジュ"), +("シュ"), +("シュウ"), +("シュウ"), +("シュウ"), +("シュウ"), +("シュウ"), +("シュ"), +("トウ"), +("シュウ"), +("シュウ"), +("シュク"), +("シュウ"), +("シュウ"), +("ジュウ"), +("ジュウ"), +("シュウ"), +("ジュウ"), +("ジュウ"), +("ジュウ"), +("シュク"), +("ジュウ"), +("ニュウ"), +("シュク"), +("ショウ"), +("シュク"), +("スク"), +("ジュン"), +("ジュン"), +("ジュン"), +("シュン"), +("ジュン"), +("ジョ"), +("ショ"), +("チョ"), +("ショウ"), +("ショ"), +("ジョ"), +("ジュン"), +("ショウ"), +("ショウ"), +("ジュン"), +("シュン"), +("ジュク"), +("ショウ"), +("ショウ"), +("ジョ"), +("ニョ"), +("ジュン"), +("シュン"), +("ショウ"), +("ジュン"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ソウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ショウ"), +("ジョウ"), +("ジョウ"), +("ジョウ"), +("ショウ"), +("トウ"), +("ドウ"), +("ジョウ"), +("ジョウ"), +("セイ"), +("ジョウ"), +("チョウ"), +("ジョウ"), +("ジョウ"), +("ショウ"), +("ショウ"), +("ショク"), +("シキ"), +("ジョウ"), +("ショク"), +("ショク"), +("ショク"), +("ジョク"), +("ショク"), +("シン"), +("シン"), +("シン"), +("シン"), +("シン"), +("シン"), +("シン"), +("コウ"), +("シン"), +("シン"), +("シン"), +("ジョウ"), +("スイ"), +("ジン"), +("スイ"), +("シン"), +("ジン"), +("スイ"), +("ジン"), +("ジン"), +("ニン"), +("ス"), +("シュ"), +("スイ"), +("スイ"), +("スイ"), +("ジン"), +("シン"), +("ジン"), +("スイ"), +("ジン"), +("サン"), +("シン"), +("スイ"), +("スイ"), +("シン"), +("シン"), +("ズイ"), +("スウ"), +("ズイ"), +("シン"), +("キョ"), +("コ"), +("サン"), +("キョ"), +("ライ"), +("セイ"), +("ショウ"), +("セイ"), +("ゼ"), +("シ"), +("セイ"), +("サイ"), +("セイ"), +("セイ"), +("サイ"), +("セイ"), +("セイ"), +("セイ"), +("シン"), +("ショウ"), +("スウ"), +("シュ"), +("セキ"), +("セイ"), +("セキ"), +("セキ"), +("ソク"), +("セキ"), +("セキ"), +("セキ"), +("セキ"), +("セキ"), +("セイ"), +("セツ"), +("セツ"), +("ショウ"), +("セン"), +("セツ"), +("セン"), +("セン"), +("セン"), +("セント"), +("セン"), +("セン"), +("エン"), +("セン"), +("セン"), +("セン"), +("セン"), +("ゼン"), +("セン"), +("セン"), +("ソ"), +("ソ"), +("ショ"), +("ゼン"), +("ソ"), +("ゼン"), +("ソ"), +("ショ"), +("セン"), +("セン"), +("ソ"), +("ソ"), +("ゼン"), +("セン"), +("セン"), +("セン"), +("セン"), +("ソ"), +("サク"), +("ソウ"), +("シュ"), +("ソウ"), +("ソ"), +("ソウ"), +("ソウ"), +("ソウ"), +("ソウ"), +("ソ"), +("ゾウ"), +("ソウ"), +("ソ"), +("ソウ"), +("ゾウ"), +("ソウ"), +("シュ"), +("シュウ"), +("ソウ"), +("ショウ"), +("チャン"), +("ソウ"), +("ソ"), +("ソウ"), +("ソウ"), +("ソウ"), +("ソウ"), +("チュウ"), +("シュウ"), +("シュ"), +("ソウ"), +("ショウ"), +("ソウ"), +("タ"), +("タイ"), +("ソウ"), +("ダ"), +("ソク"), +("ゾウ"), +("ソウ"), +("ソン"), +("ゾウ"), +("ダ"), +("タイ"), +("ゾク"), +("ゾク"), +("タイ"), +("ソウ"), +("ソウ"), +("ソク"), +("サク"), +("タイ"), +("ダ"), +("タ"), +("ソウ"), +("ダ"), +("ソク"), +("タイ"), +("ツイ"), +("タイ"), +("ダイ"), +("タイ"), +("タイ"), +("ダ"), +("タ"), +("タイ"), +("タイ"), +("テイ"), +("タク"), +("ロウ"), +("ソウ"), +("ダク"), +("タイ"), +("タン"), +("タン"), +("ダン"), +("タク"), +("タン"), +("スイ"), +("タク"), +("タク"), +("タク"), +("ダツ"), +("タン"), +("タク"), +("ダン"), +("タン"), +("タン"), +("ホウ"), +("ダン"), +("タン"), +("ダツ"), +("チ"), +("タン"), +("タン"), +("タン"), +("チ"), +("ジ"), +("タン"), +("チ"), +("チ"), +("チ"), +("チ"), +("チク"), +("ダク"), +("ジョク"), +("チク"), +("チク"), +("チツ"), +("チャク"), +("テキ"), +("チョウ"), +("チョウ"), +("チョウ"), +("テイ"), +("チョウ"), +("チョウ"), +("チュウ"), +("チュ"), +("チュウ"), +("イ"), +("シュ"), +("シュウ"), +("チツ"), +("チョク"), +("チョウ"), +("チョウ"), +("チョウ"), +("チ"), +("チョウ"), +("トウ"), +("チョウ"), +("チュウ"), +("チュウ"), +("チン"), +("ジン"), +("テン"), +("チョウ"), +("チン"), +("チョウ"), +("チョウ"), +("チュウ"), +("チン"), +("チン"), +("チョウ"), +("ツイ"), +("ヘイ"), +("チョク"), +("ホ"), +("ツイ"), +("スイ"), +("ソウ"), +("テイ"), +("シ"), +("チン"), +("カク"), +("テイ"), +("テイ"), +("テイ"), +("ジョウ"), +("テイ"), +("テイ"), +("テイ"), +("チン"), +("テイ"), +("テイ"), +("テイ"), +("テイ"), +("テイ"), +("タイ"), +("テイ"), +("テキ"), +("デキ"), +("ジョウ"), +("ニョウ"), +("テキ"), +("テツ"), +("トウ"), +("テツ"), +("テン"), +("ド"), +("ヌ"), +("トウ"), +("テツ"), +("トウ"), +("トウ"), +("ト"), +("ト"), +("トウ"), +("テツ"), +("トウ"), +("トウ"), +("ト"), +("ツ"), +("トウ"), +("トウ"), +("テン"), +("チン"), +("ド"), +("ト"), +("トウ"), +("ト"), +("テイ"), +("デイ"), +("ナイ"), +("デ"), +("ニ"), +("デン"), +("テン"), +("トウ"), +("ト"), +("トウ"), +("トウ"), +("ト"), +("トウ"), +("トウ"), +("トウ"), +("トウ"), +("トウ"), +("トウ"), +("テ"), +("ナ"), +("ダ"), +("トク"), +("ドン"), +("トン"), +("タン"), +("ショウ"), +("セイ"), +("メイ"), +("ベイ"), +("トン"), +("トツ"), +("カ"), +("トク"), +("トン"), +("トツ"), +("トン"), +("ドン"), +("トウ"), +("ドウ"), +("トク"), +("ドウ"), +("タン"), +("ドン"), +("トン"), +("カ"), +("トツ"), +("ドウ"), +("トウ"), +("トウ"), +("ニ"), +("ニ"), +("ジ"), +("トウ"), +("コウ"), +("ナン"), +("ドウ"), +("ニョウ"), +("ニン"), +("ジン"), +("ニン"), +("ネイ"), +("ネン"), +("ノウ"), +("ハ"), +("ワ"), +("ネン"), +("ジョウ"), +("ノウ"), +("ハ"), +("ハク"), +("バク"), +("バク"), +("バ"), +("ハイ"), +("ハク"), +("ヒョウ"), +("バイ"), +("バイ"), +("ハク"), +("ハイ"), +("ハク"), +("ハク"), +("ハイ"), +("バイ"), +("バイ"), +("ハク"), +("ハク"), +("ハイ"), +("ハク"), +("バ"), +("バク"), +("チョ"), +("チャク"), +("ハチ"), +("ハツ"), +("ハツ"), +("バツ"), +("ハツ"), +("ハイ"), +("ハン"), +("バツ"), +("ハツ"), +("カ"), +("ボチ"), +("キ"), +("バツ"), +("バチ"), +("ハツ"), +("バツ"), +("ハン"), +("ハン"), +("ハン"), +("バン"), +("ハン"), +("ブ"), +("フウ"), +("ホウ"), +("ホン"), +("ハン"), +("ハン"), +("ハン"), +("ハン"), +("ハン"), +("ボン"), +("ハン"), +("ハン"), +("バン"), +("ヒ"), +("ハン"), +("ハン"), +("バン"), +("ヒ"), +("ヒ"), +("ヒ"), +("ヒ"), +("ヒ"), +("ヒ"), +("ヒ"), +("ヒ"), +("ヒ"), +("ビ"), +("フ"), +("ビ"), +("ミ"), +("チュウ"), +("キ"), +("ビョウ"), +("ヒョウ"), +("フ"), +("ホ"), +("ヒン"), +("ヒツ"), +("ビン"), +("フ"), +("ビョウ"), +("ミョウ"), +("ビョウ"), +("ヒン"), +("フ"), +("ヒン"), +("ビ"), +("フ"), +("ビン"), +("フ"), +("シツ"), +("フ"), +("フ"), +("フ"), +("フ"), +("ヒツ"), +("ヒ"), +("ブ"), +("フク"), +("フツ"), +("フ"), +("ブ"), +("フン"), +("フン"), +("ヘイ"), +("ヘイ"), +("フツ"), +("ヒツ"), +("ホツ"), +("フン"), +("フク"), +("フ"), +("フ"), +("フン"), +("ブ"), +("フウ"), +("ホウ"), +("フク"), +("フン"), +("ヘイ"), +("ヘイ"), +("ベイ"), +("ヘイ"), +("ヘイ"), +("ヘイ"), +("ヘツ"), +("フツ"), +("ヘキ"), +("ヘキ"), +("ヘキ"), +("ヘン"), +("ベツ"), +("ヘン"), +("ヘイ"), +("ヒョウ"), +("ホ"), +("ホ"), +("ボ"), +("ホウ"), +("ボ"), +("ホウ"), +("ブ"), +("ホウ"), +("ボ"), +("ホウ"), +("ホウ"), +("ホウ"), +("ホウ"), +("ホウ"), +("ホウ"), +("ホウ"), +("ホウ"), +("ホ"), +("ホウ"), +("ホウ"), +("ボウ"), +("ボッ"), +("ボウ"), +("ボウ"), +("モウ"), +("ボウ"), +("ボウ"), +("ボウ"), +("ボウ"), +("ボウ"), +("ボウ"), +("ボク"), +("ボウ"), +("ボウ"), +("ボウ"), +("ホウ"), +("ホウ"), +("ボク"), +("ボウ"), +("モウ"), +("ボツ"), +("モツ"), +("キョウ"), +("ボツ"), +("ホツ"), +("ボク"), +("クツ"), +("ボク"), +("ホン"), +("ボウ"), +("ム"), +("ボク"), +("モク"), +("ボン"), +("ボウ"), +("バク"), +("マ"), +("マア"), +("マ"), +("ホン"), +("ハン"), +("マ"), +("ボン"), +("ハン"), +("マク"), +("マイ"), +("マイ"), +("バイ"), +("マ"), +("チン"), +("シン"), +("ユウ"), +("マツ"), +("マン"), +("ミツ"), +("ビツ"), +("コウ"), +("マン"), +("ミョウ"), +("ビョウ"), +("ミ"), +("メイ"), +("ミョウ"), +("ジョウ"), +("ミン"), +("メン"), +("ベン"), +("メツ"), +("モウ"), +("ボウ"), +("モ"), +("モウ"), +("メン"), +("モウ"), +("コウ"), +("モウ"), +("モウ"), +("ム"), +("ボウ"), +("ミ"), +("ビ"), +("モク"), +("ボク"), +("ヤク"), +("ヤ"), +("ヤク"), +("ム"), +("ボウ"), +("ブ"), +("アン"), +("オン"), +("ユ"), +("ユ"), +("ユイ"), +("イ"), +("メイ"), +("ユ"), +("モン"), +("ユウ"), +("ユ"), +("ユウ"), +("ユウ"), +("ユウ"), +("ヨウ"), +("ユ"), +("ユウ"), +("ユウ"), +("ユ"), +("ユウ"), +("ユウ"), +("ヨ"), +("ヨウ"), +("ユウ"), +("ヨウ"), +("ヨウ"), +("ヨ"), +("ヨウ"), +("ヨウ"), +("ヨウ"), +("ヨウ"), +("ヨウ"), +("ヨウ"), +("ヨウ"), +("ヨウ"), +("ヨク"), +("オク"), +("ヨウ"), +("ラツ"), +("ラ"), +("ロウ"), +("ヨク"), +("ラ"), +("ヨク"), +("ライ"), +("ラク"), +("ラク"), +("ライ"), +("ラン"), +("リ"), +("ラ"), +("リ"), +("ラツ"), +("ラン"), +("ラン"), +("リ"), +("リ"), +("リュウ"), +("リ"), +("リツ"), +("リュウ"), +("リョウ"), +("ロウ"), +("リュウ"), +("リュウ"), +("リョ"), +("ロ"), +("リョ"), +("ロ"), +("リョウ"), +("リョ"), +("リョウ"), +("リョウ"), +("リョウ"), +("リョウ"), +("リョウ"), +("リョウ"), +("リョウ"), +("リョウ"), +("ロウ"), +("リン"), +("リン"), +("ル"), +("リュウ"), +("ルイ"), +("レイ"), +("レイ"), +("レイ"), +("リン"), +("レイ"), +("ルイ"), +("レイ"), +("リン"), +("ルイ"), +("ライ"), +("スイ"), +("レイ"), +("リョウ"), +("レイ"), +("レイ"), +("レイ"), +("レキ"), +("リャク"), +("レツ"), +("ロウ"), +("ル"), +("レツ"), +("レン"), +("レン"), +("ロク"), +("レン"), +("レツ"), +("ロ"), +("リョ"), +("ロウ"), +("リョウ"), +("ロ"), +("ロウ"), +("ロ"), +("ロウ"), +("ロウ"), +("ル"), +("リュウ"), +("ロ"), +("ロウ"), +("ロウ"), +("キョウ"), +("ワク"), +("ロウ"), +("ワン"), +("ワイ"), +("ワン"); + +INSERT INTO Kanji_ResultOnyomi_XRef(kanji, yomi) VALUES +('亜', 'ア'), +('哀', 'アイ'), +('挨', 'アイ'), +('曖', 'アイ'), +('握', 'アク'), +('嵐', 'ラン'), +('依', 'イ'), +('依', 'エ'), +('扱', 'ソウ'), +('扱', 'キュウ'), +('宛', 'エン'), +('尉', 'イ'), +('尉', 'ジョウ'), +('為', 'イ'), +('畏', 'イ'), +('椅', 'イ'), +('萎', 'イ'), +('彙', 'イ'), +('違', 'イ'), +('維', 'イ'), +('壱', 'イチ'), +('壱', 'イツ'), +('威', 'イ'), +('偉', 'イ'), +('逸', 'イツ'), +('咽', 'イン'), +('咽', 'エン'), +('咽', 'エツ'), +('緯', 'イ'), +('姻', 'イン'), +('芋', 'ウ'), +('淫', 'イン'), +('陰', 'イン'), +('慰', 'イ'), +('疫', 'エキ'), +('疫', 'ヤク'), +('怨', 'エン'), +('怨', 'オン'), +('怨', 'ウン'), +('宴', 'エン'), +('鋭', 'エイ'), +('閲', 'エツ'), +('悦', 'エツ'), +('煙', 'エン'), +('炎', 'エン'), +('浦', 'ホ'), +('韻', 'イン'), +('鬱', 'ウツ'), +('援', 'エン'), +('詠', 'エイ'), +('猿', 'エン'), +('越', 'エツ'), +('越', 'オツ'), +('縁', 'エン'), +('縁', '-ネン'), +('隠', 'イン'), +('隠', 'オン'), +('影', 'エイ'), +('唄', 'バイ'), +('鉛', 'エン'), +('艶', 'エン'), +('凹', 'オウ'), +('畝', 'ボウ'), +('畝', 'ホ'), +('畝', 'モ'), +('畝', 'ム'), +('憶', 'オク'), +('欧', 'オウ'), +('押', 'オウ'), +('奥', 'オウ'), +('殴', 'オウ'), +('汚', 'オ'), +('旺', 'オウ'), +('旺', 'キョウ'), +('旺', 'ゴウ'), +('翁', 'オウ'), +('乙', 'オツ'), +('乙', 'イツ'), +('虞', 'グ'), +('俺', 'エン'), +('卸', 'シャ'), +('穏', 'オン'), +('謁', 'エツ'), +('臆', 'オク'), +('臆', 'ヨク'), +('架', 'カ'), +('靴', 'カ'), +('苛', 'カ'), +('寡', 'カ'), +('箇', 'カ'), +('箇', 'コ'), +('蚊', 'ブン'), +('雅', 'ガ'), +('渦', 'カ'), +('餓', 'ガ'), +('華', 'カ'), +('華', 'ケ'), +('暇', 'カ'), +('牙', 'ガ'), +('牙', 'ゲ'), +('禍', 'カ'), +('稼', 'カ'), +('嫁', 'カ'), +('菓', 'カ'), +('佳', 'カ'), +('介', 'カイ'), +('怪', 'カイ'), +('怪', 'ケ'), +('拐', 'カイ'), +('瓦', 'ガ'), +('悔', 'カイ'), +('戒', 'カイ'), +('塊', 'カイ'), +('塊', 'ケ'), +('楷', 'カイ'), +('潰', 'カイ'), +('潰', 'エ'), +('壊', 'カイ'), +('壊', 'エ'), +('皆', 'カイ'), +('劾', 'ガイ'), +('諧', 'カイ'), +('懐', 'カイ'), +('懐', 'エ'), +('涯', 'ガイ'), +('柿', 'シ'), +('該', 'ガイ'), +('岳', 'ガク'), +('骸', 'ガイ'), +('骸', 'カイ'), +('獲', 'カク'), +('穫', 'カク'), +('較', 'カク'), +('較', 'コウ'), +('隔', 'カク'), +('郭', 'カク'), +('垣', 'エン'), +('崖', 'ガイ'), +('崖', 'ゲ'), +('崖', 'ギ'), +('概', 'ガイ'), +('嚇', 'カク'), +('殻', 'カク'), +('殻', 'コク'), +('殻', 'バイ'), +('蓋', 'ガイ'), +('蓋', 'カイ'), +('蓋', 'コウ'), +('慨', 'ガイ'), +('核', 'カク'), +('汗', 'カン'), +('且', 'ショ'), +('且', 'ソ'), +('且', 'ショウ'), +('釜', 'フ'), +('刈', 'ガイ'), +('刈', 'カイ'), +('渇', 'カツ'), +('喝', 'カツ'), +('甘', 'カン'), +('冠', 'カン'), +('肝', 'カン'), +('轄', 'カツ'), +('鎌', 'レン'), +('鎌', 'ケン'), +('褐', 'カツ'), +('葛', 'カツ'), +('葛', 'カチ'), +('顎', 'ガク'), +('掛', 'カイ'), +('掛', 'ケイ'), +('滑', 'カツ'), +('滑', 'コツ'), +('陥', 'カン'), +('括', 'カツ'), +('缶', 'カン'), +('乾', 'カン'), +('乾', 'ケン'), +('貫', 'カン'), +('勘', 'カン'), +('喚', 'カン'), +('換', 'カン'), +('患', 'カン'), +('堪', 'カン'), +('堪', 'タン'), +('款', 'カン'), +('敢', 'カン'), +('閑', 'カン'), +('勧', 'カン'), +('勧', 'ケン'), +('棺', 'カン'), +('寛', 'カン'), +('歓', 'カン'), +('監', 'カン'), +('緩', 'カン'), +('憾', 'カン'), +('還', 'カン'), +('環', 'カン'), +('韓', 'カン'), +('艦', 'カン'), +('鑑', 'カン'), +('含', 'ガン'), +('玩', 'ガン'), +('企', 'キ'), +('忌', 'キ'), +('奇', 'キ'), +('伎', 'ギ'), +('伎', 'キ'), +('軌', 'キ'), +('頑', 'ガン'), +('祈', 'キ'), +('畿', 'キ'), +('棄', 'キ'), +('飢', 'キ'), +('棋', 'キ'), +('毀', 'キ'), +('輝', 'キ'), +('擬', 'ギ'), +('戯', 'ギ'), +('戯', 'ゲ'), +('儀', 'ギ'), +('欺', 'ギ'), +('鬼', 'キ'), +('幾', 'キ'), +('宜', 'ギ'), +('既', 'キ'), +('亀', 'キ'), +('亀', 'キュウ'), +('亀', 'キン'), +('偽', 'ギ'), +('偽', 'カ'), +('騎', 'キ'), +('菊', 'キク'), +('虐', 'ギャク'), +('喫', 'キツ'), +('丘', 'キュウ'), +('窮', 'キュウ'), +('窮', 'キョウ'), +('脚', 'キャク'), +('脚', 'キャ'), +('脚', 'カク'), +('却', 'キャク'), +('巨', 'キョ'), +('朽', 'キュウ'), +('糾', 'キュウ'), +('吉', 'キチ'), +('吉', 'キツ'), +('虚', 'キョ'), +('虚', 'コ'), +('詰', 'キツ'), +('詰', 'キチ'), +('嗅', 'キュウ'), +('距', 'キョ'), +('犠', 'ギ'), +('犠', 'キ'), +('拒', 'キョ'), +('拒', 'ゴ'), +('臼', 'キュウ'), +('臼', 'グ'), +('凶', 'キョウ'), +('及', 'キュウ'), +('御', 'ギョ'), +('御', 'ゴ'), +('叫', 'キョウ'), +('拠', 'キョ'), +('拠', 'コ'), +('況', 'キョウ'), +('峡', 'キョウ'), +('峡', 'コウ'), +('享', 'キョウ'), +('享', 'コウ'), +('恐', 'キョウ'), +('狭', 'キョウ'), +('狭', 'コウ'), +('挟', 'キョウ'), +('挟', 'ショウ'), +('狂', 'キョウ'), +('脅', 'キョウ'), +('矯', 'キョウ'), +('驚', 'キョウ'), +('響', 'キョウ'), +('恭', 'キョウ'), +('暁', 'ギョウ'), +('暁', 'キョウ'), +('菌', 'キン'), +('斤', 'キン'), +('仰', 'ギョウ'), +('仰', 'コウ'), +('凝', 'ギョウ'), +('巾', 'キン'), +('巾', 'フク'), +('琴', 'キン'), +('琴', 'ゴン'), +('僅', 'キン'), +('僅', 'ゴン'), +('緊', 'キン'), +('掘', 'クツ'), +('繰', 'ソウ'), +('串', 'カン'), +('串', 'ケン'), +('串', 'セン'), +('勲', 'クン'), +('窟', 'クツ'), +('窟', 'コツ'), +('駆', 'ク'), +('偶', 'グウ'), +('襟', 'キン'), +('謹', 'キン'), +('隅', 'グウ'), +('薫', 'クン'), +('茎', 'ケイ'), +('茎', 'キョウ'), +('吟', 'ギン'), +('遇', 'グウ'), +('刑', 'ケイ'), +('惧', 'ク'), +('惧', 'グ'), +('屈', 'クツ'), +('契', 'ケイ'), +('愚', 'グ'), +('恵', 'ケイ'), +('恵', 'エ'), +('啓', 'ケイ'), +('錦', 'キン'), +('蛍', 'ケイ'), +('渓', 'ケイ'), +('傾', 'ケイ'), +('継', 'ケイ'), +('掲', 'ケイ'), +('慶', 'ケイ'), +('携', 'ケイ'), +('稽', 'ケイ'), +('憬', 'ケイ'), +('詣', 'ケイ'), +('詣', 'ゲイ'), +('献', 'ケン'), +('献', 'コン'), +('鶏', 'ケイ'), +('軒', 'ケン'), +('遣', 'ケン'), +('嫌', 'ケン'), +('嫌', 'ゲン'), +('堅', 'ケン'), +('傑', 'ケツ'), +('賢', 'ケン'), +('兼', 'ケン'), +('肩', 'ケン'), +('撃', 'ゲキ'), +('鯨', 'ゲイ'), +('憩', 'ケイ'), +('剣', 'ケン'), +('拳', 'ケン'), +('拳', 'ゲン'), +('倹', 'ケン'), +('隙', 'ゲキ'), +('隙', 'キャク'), +('隙', 'ケキ'), +('迎', 'ゲイ'), +('圏', 'ケン'), +('鍵', 'ケン'), +('繭', 'ケン'), +('幻', 'ゲン'), +('桁', 'コウ'), +('謙', 'ケン'), +('顕', 'ケン'), +('懸', 'ケン'), +('懸', 'ケ'), +('玄', 'ゲン'), +('鼓', 'コ'), +('錮', 'コ'), +('弧', 'コ'), +('孤', 'コ'), +('互', 'ゴ'), +('舷', 'ゲン'), +('悟', 'ゴ'), +('勾', 'コウ'), +('勾', 'ク'), +('股', 'コ'), +('顧', 'コ'), +('碁', 'ゴ'), +('枯', 'コ'), +('誇', 'コ'), +('虎', 'コ'), +('娯', 'ゴ'), +('弦', 'ゲン'), +('呉', 'ゴ'), +('貢', 'コウ'), +('貢', 'ク'), +('洪', 'コウ'), +('拘', 'コウ'), +('控', 'コウ'), +('巧', 'コウ'), +('攻', 'コウ'), +('侯', 'コウ'), +('郊', 'コウ'), +('肯', 'コウ'), +('喉', 'コウ'), +('荒', 'コウ'), +('甲', 'コウ'), +('甲', 'カン'), +('坑', 'コウ'), +('恒', 'コウ'), +('抗', 'コウ'), +('更', 'コウ'), +('江', 'コウ'), +('孔', 'コウ'), +('孔', 'ク'), +('雇', 'コ'), +('慌', 'コウ'), +('梗', 'コウ'), +('梗', 'キョウ'), +('絞', 'コウ'), +('項', 'コウ'), +('溝', 'コウ'), +('酵', 'コウ'), +('硬', 'コウ'), +('綱', 'コウ'), +('衡', 'コウ'), +('稿', 'コウ'), +('購', 'コウ'), +('傲', 'ゴウ'), +('乞', 'コツ'), +('乞', 'キツ'), +('乞', 'キ'), +('乞', 'キケ'), +('乞', 'コチ'), +('拷', 'ゴウ'), +('克', 'コク'), +('剛', 'ゴウ'), +('豪', 'ゴウ'), +('駒', 'ク'), +('獄', 'ゴク'), +('婚', 'コン'), +('昆', 'コン'), +('酷', 'コク'), +('頃', 'ケイ'), +('頃', 'キョウ'), +('紺', 'コン'), +('痕', 'コン'), +('魂', 'コン'), +('墾', 'コン'), +('恨', 'コン'), +('懇', 'コン'), +('唆', 'サ'), +('沙', 'サ'), +('沙', 'シャ'), +('挫', 'ザ'), +('挫', 'サ'), +('鎖', 'サ'), +('砕', 'サイ'), +('詐', 'サ'), +('采', 'サイ'), +('栽', 'サイ'), +('宰', 'サイ'), +('彩', 'サイ'), +('債', 'サイ'), +('斎', 'サイ'), +('催', 'サイ'), +('塞', 'ソク'), +('塞', 'サイ'), +('歳', 'サイ'), +('歳', 'セイ'), +('載', 'サイ'), +('剤', 'ザイ'), +('剤', 'スイ'), +('剤', 'セイ'), +('柵', 'サク'), +('柵', 'サン'), +('酢', 'サク'), +('索', 'サク'), +('搾', 'サク'), +('錯', 'サク'), +('錯', 'シャク'), +('削', 'サク'), +('恣', 'シ'), +('祉', 'シ'), +('拶', 'サツ'), +('惨', 'サン'), +('惨', 'ザン'), +('撮', 'サツ'), +('擦', 'サツ'), +('肢', 'シ'), +('桟', 'サン'), +('桟', 'セン'), +('脂', 'シ'), +('刺', 'シ'), +('旨', 'シ'), +('咲', 'ショウ'), +('暫', 'ザン'), +('刹', 'セチ'), +('刹', 'セツ'), +('刹', 'サツ'), +('傘', 'サン'), +('紫', 'シ'), +('伺', 'シ'), +('施', 'シ'), +('施', 'セ'), +('摯', 'シ'), +('嗣', 'シ'), +('斬', 'ザン'), +('斬', 'サン'), +('斬', 'セン'), +('斬', 'ゼン'), +('雌', 'シ'), +('嫉', 'シツ'), +('璽', 'ジ'), +('赦', 'シャ'), +('賜', 'シ'), +('軸', 'ジク'), +('疾', 'シツ'), +('餌', 'ジ'), +('餌', 'ニ'), +('執', 'シツ'), +('執', 'シュウ'), +('侍', 'ジ'), +('侍', 'シ'), +('慈', 'ジ'), +('芝', 'シ'), +('漆', 'シツ'), +('諮', 'シ'), +('湿', 'シツ'), +('湿', 'シュウ'), +('斜', 'シャ'), +('邪', 'ジャ'), +('煮', 'シャ'), +('蛇', 'ジャ'), +('蛇', 'ダ'), +('蛇', 'イ'), +('蛇', 'ヤ'), +('酌', 'シャク'), +('釈', 'シャク'), +('釈', 'セキ'), +('爵', 'シャク'), +('朱', 'シュ'), +('狩', 'シュ'), +('殊', 'シュ'), +('遮', 'シャ'), +('腫', 'シュ'), +('腫', 'ショウ'), +('寂', 'ジャク'), +('寂', 'セキ'), +('呪', 'ジュ'), +('呪', 'シュ'), +('呪', 'シュウ'), +('呪', 'ズ'), +('寿', 'ジュ'), +('寿', 'ス'), +('寿', 'シュウ'), +('趣', 'シュ'), +('儒', 'ジュ'), +('囚', 'シュウ'), +('舟', 'シュウ'), +('需', 'ジュ'), +('珠', 'シュ'), +('臭', 'シュウ'), +('秀', 'シュウ'), +('羞', 'シュウ'), +('愁', 'シュウ'), +('酬', 'シュウ'), +('酬', 'シュ'), +('酬', 'トウ'), +('袖', 'シュウ'), +('醜', 'シュウ'), +('蹴', 'シュク'), +('蹴', 'シュウ'), +('襲', 'シュウ'), +('充', 'ジュウ'), +('渋', 'ジュウ'), +('渋', 'シュウ'), +('汁', 'ジュウ'), +('獣', 'ジュウ'), +('銃', 'ジュウ'), +('叔', 'シュク'), +('柔', 'ジュウ'), +('柔', 'ニュウ'), +('淑', 'シュク'), +('升', 'ショウ'), +('粛', 'シュク'), +('粛', 'スク'), +('循', 'ジュン'), +('遵', 'ジュン'), +('殉', 'ジュン'), +('俊', 'シュン'), +('潤', 'ジュン'), +('徐', 'ジョ'), +('緒', 'ショ'), +('緒', 'チョ'), +('召', 'ショウ'), +('庶', 'ショ'), +('叙', 'ジョ'), +('盾', 'ジュン'), +('抄', 'ショウ'), +('床', 'ショウ'), +('巡', 'ジュン'), +('瞬', 'シュン'), +('塾', 'ジュク'), +('匠', 'ショウ'), +('肖', 'ショウ'), +('如', 'ジョ'), +('如', 'ニョ'), +('旬', 'ジュン'), +('旬', 'シュン'), +('昇', 'ショウ'), +('准', 'ジュン'), +('宵', 'ショウ'), +('尚', 'ショウ'), +('沼', 'ショウ'), +('症', 'ショウ'), +('祥', 'ショウ'), +('渉', 'ショウ'), +('称', 'ショウ'), +('紹', 'ショウ'), +('訟', 'ショウ'), +('掌', 'ショウ'), +('焦', 'ショウ'), +('硝', 'ショウ'), +('晶', 'ショウ'), +('粧', 'ショウ'), +('奨', 'ショウ'), +('奨', 'ソウ'), +('詳', 'ショウ'), +('衝', 'ショウ'), +('彰', 'ショウ'), +('詔', 'ショウ'), +('償', 'ショウ'), +('剰', 'ジョウ'), +('壌', 'ジョウ'), +('冗', 'ジョウ'), +('憧', 'ショウ'), +('憧', 'トウ'), +('憧', 'ドウ'), +('丈', 'ジョウ'), +('浄', 'ジョウ'), +('浄', 'セイ'), +('畳', 'ジョウ'), +('畳', 'チョウ'), +('醸', 'ジョウ'), +('錠', 'ジョウ'), +('礁', 'ショウ'), +('鐘', 'ショウ'), +('拭', 'ショク'), +('拭', 'シキ'), +('嬢', 'ジョウ'), +('殖', 'ショク'), +('嘱', 'ショク'), +('飾', 'ショク'), +('辱', 'ジョク'), +('触', 'ショク'), +('伸', 'シン'), +('芯', 'シン'), +('侵', 'シン'), +('辛', 'シン'), +('娠', 'シン'), +('唇', 'シン'), +('津', 'シン'), +('尻', 'コウ'), +('紳', 'シン'), +('振', 'シン'), +('浸', 'シン'), +('譲', 'ジョウ'), +('炊', 'スイ'), +('迅', 'ジン'), +('酔', 'スイ'), +('寝', 'シン'), +('腎', 'ジン'), +('吹', 'スイ'), +('陣', 'ジン'), +('刃', 'ジン'), +('刃', 'ニン'), +('須', 'ス'), +('須', 'シュ'), +('粋', 'スイ'), +('遂', 'スイ'), +('衰', 'スイ'), +('尋', 'ジン'), +('薪', 'シン'), +('甚', 'ジン'), +('帥', 'スイ'), +('尽', 'ジン'), +('尽', 'サン'), +('震', 'シン'), +('睡', 'スイ'), +('穂', 'スイ'), +('慎', 'シン'), +('診', 'シン'), +('髄', 'ズイ'), +('崇', 'スウ'), +('随', 'ズイ'), +('審', 'シン'), +('裾', 'キョ'), +('裾', 'コ'), +('杉', 'サン'), +('据', 'キョ'), +('瀬', 'ライ'), +('姓', 'セイ'), +('姓', 'ショウ'), +('征', 'セイ'), +('是', 'ゼ'), +('是', 'シ'), +('凄', 'セイ'), +('凄', 'サイ'), +('牲', 'セイ'), +('斉', 'セイ'), +('斉', 'サイ'), +('逝', 'セイ'), +('婿', 'セイ'), +('請', 'セイ'), +('請', 'シン'), +('請', 'ショウ'), +('枢', 'スウ'), +('枢', 'シュ'), +('析', 'セキ'), +('醒', 'セイ'), +('隻', 'セキ'), +('斥', 'セキ'), +('戚', 'ソク'), +('戚', 'セキ'), +('脊', 'セキ'), +('跡', 'セキ'), +('籍', 'セキ'), +('惜', 'セキ'), +('誓', 'セイ'), +('窃', 'セツ'), +('摂', 'セツ'), +('摂', 'ショウ'), +('扇', 'セン'), +('拙', 'セツ'), +('栓', 'セン'), +('占', 'セン'), +('仙', 'セン'), +('仙', 'セント'), +('旋', 'セン'), +('羨', 'セン'), +('羨', 'エン'), +('煎', 'セン'), +('腺', 'セン'), +('遷', 'セン'), +('詮', 'セン'), +('禅', 'ゼン'), +('禅', 'セン'), +('繊', 'セン'), +('阻', 'ソ'), +('疎', 'ソ'), +('疎', 'ショ'), +('漸', 'ゼン'), +('粗', 'ソ'), +('繕', 'ゼン'), +('狙', 'ソ'), +('狙', 'ショ'), +('践', 'セン'), +('薦', 'セン'), +('租', 'ソ'), +('措', 'ソ'), +('膳', 'ゼン'), +('膳', 'セン'), +('鮮', 'セン'), +('箋', 'セン'), +('潜', 'セン'), +('遡', 'ソ'), +('遡', 'サク'), +('掃', 'ソウ'), +('掃', 'シュ'), +('爽', 'ソウ'), +('塑', 'ソ'), +('桑', 'ソウ'), +('挿', 'ソウ'), +('遭', 'ソウ'), +('曽', 'ソウ'), +('曽', 'ソ'), +('曽', 'ゾウ'), +('壮', 'ソウ'), +('訴', 'ソ'), +('曹', 'ソウ'), +('曹', 'ゾウ'), +('捜', 'ソウ'), +('捜', 'シュ'), +('捜', 'シュウ'), +('荘', 'ソウ'), +('荘', 'ショウ'), +('荘', 'チャン'), +('葬', 'ソウ'), +('礎', 'ソ'), +('僧', 'ソウ'), +('喪', 'ソウ'), +('双', 'ソウ'), +('痩', 'ソウ'), +('痩', 'チュウ'), +('痩', 'シュウ'), +('痩', 'シュ'), +('踪', 'ソウ'), +('踪', 'ショウ'), +('槽', 'ソウ'), +('汰', 'タ'), +('汰', 'タイ'), +('燥', 'ソウ'), +('妥', 'ダ'), +('促', 'ソク'), +('贈', 'ゾウ'), +('贈', 'ソウ'), +('遜', 'ソン'), +('憎', 'ゾウ'), +('惰', 'ダ'), +('耐', 'タイ'), +('賊', 'ゾク'), +('俗', 'ゾク'), +('胎', 'タイ'), +('騒', 'ソウ'), +('霜', 'ソウ'), +('捉', 'ソク'), +('捉', 'サク'), +('怠', 'タイ'), +('駄', 'ダ'), +('駄', 'タ'), +('藻', 'ソウ'), +('堕', 'ダ'), +('即', 'ソク'), +('堆', 'タイ'), +('堆', 'ツイ'), +('袋', 'タイ'), +('袋', 'ダイ'), +('逮', 'タイ'), +('替', 'タイ'), +('唾', 'ダ'), +('唾', 'タ'), +('泰', 'タイ'), +('滞', 'タイ'), +('滞', 'テイ'), +('択', 'タク'), +('滝', 'ロウ'), +('滝', 'ソウ'), +('諾', 'ダク'), +('戴', 'タイ'), +('胆', 'タン'), +('旦', 'タン'), +('旦', 'ダン'), +('託', 'タク'), +('綻', 'タン'), +('誰', 'スイ'), +('拓', 'タク'), +('濯', 'タク'), +('卓', 'タク'), +('脱', 'ダツ'), +('嘆', 'タン'), +('沢', 'タク'), +('壇', 'ダン'), +('壇', 'タン'), +('端', 'タン'), +('棚', 'ホウ'), +('弾', 'ダン'), +('弾', 'タン'), +('奪', 'ダツ'), +('恥', 'チ'), +('丹', 'タン'), +('鍛', 'タン'), +('但', 'タン'), +('稚', 'チ'), +('稚', 'ジ'), +('淡', 'タン'), +('痴', 'チ'), +('緻', 'チ'), +('遅', 'チ'), +('致', 'チ'), +('逐', 'チク'), +('濁', 'ダク'), +('濁', 'ジョク'), +('畜', 'チク'), +('蓄', 'チク'), +('窒', 'チツ'), +('嫡', 'チャク'), +('嫡', 'テキ'), +('眺', 'チョウ'), +('弔', 'チョウ'), +('聴', 'チョウ'), +('聴', 'テイ'), +('挑', 'チョウ'), +('跳', 'チョウ'), +('酎', 'チュウ'), +('酎', 'チュ'), +('鋳', 'チュウ'), +('鋳', 'イ'), +('鋳', 'シュ'), +('鋳', 'シュウ'), +('秩', 'チツ'), +('勅', 'チョク'), +('澄', 'チョウ'), +('彫', 'チョウ'), +('徴', 'チョウ'), +('徴', 'チ'), +('嘲', 'チョウ'), +('嘲', 'トウ'), +('釣', 'チョウ'), +('衷', 'チュウ'), +('抽', 'チュウ'), +('沈', 'チン'), +('沈', 'ジン'), +('貼', 'テン'), +('貼', 'チョウ'), +('朕', 'チン'), +('懲', 'チョウ'), +('超', 'チョウ'), +('駐', 'チュウ'), +('鎮', 'チン'), +('珍', 'チン'), +('塚', 'チョウ'), +('墜', 'ツイ'), +('坪', 'ヘイ'), +('捗', 'チョク'), +('捗', 'ホ'), +('椎', 'ツイ'), +('椎', 'スイ'), +('爪', 'ソウ'), +('呈', 'テイ'), +('漬', 'シ'), +('陳', 'チン'), +('鶴', 'カク'), +('廷', 'テイ'), +('邸', 'テイ'), +('貞', 'テイ'), +('貞', 'ジョウ'), +('抵', 'テイ'), +('逓', 'テイ'), +('亭', 'テイ'), +('亭', 'チン'), +('帝', 'テイ'), +('堤', 'テイ'), +('偵', 'テイ'), +('訂', 'テイ'), +('諦', 'テイ'), +('諦', 'タイ'), +('締', 'テイ'), +('摘', 'テキ'), +('溺', 'デキ'), +('溺', 'ジョウ'), +('溺', 'ニョウ'), +('滴', 'テキ'), +('撤', 'テツ'), +('唐', 'トウ'), +('哲', 'テツ'), +('添', 'テン'), +('怒', 'ド'), +('怒', 'ヌ'), +('凍', 'トウ'), +('徹', 'テツ'), +('倒', 'トウ'), +('桃', 'トウ'), +('途', 'ト'), +('渡', 'ト'), +('透', 'トウ'), +('迭', 'テツ'), +('陶', 'トウ'), +('到', 'トウ'), +('妬', 'ト'), +('妬', 'ツ'), +('盗', 'トウ'), +('塔', 'トウ'), +('塡', 'テン'), +('塡', 'チン'), +('奴', 'ド'), +('吐', 'ト'), +('逃', 'トウ'), +('塗', 'ト'), +('艇', 'テイ'), +('泥', 'デイ'), +('泥', 'ナイ'), +('泥', 'デ'), +('泥', 'ニ'), +('殿', 'デン'), +('殿', 'テン'), +('搭', 'トウ'), +('賭', 'ト'), +('痘', 'トウ'), +('悼', 'トウ'), +('斗', 'ト'), +('斗', 'トウ'), +('踏', 'トウ'), +('謄', 'トウ'), +('棟', 'トウ'), +('筒', 'トウ'), +('稲', 'トウ'), +('稲', 'テ'), +('那', 'ナ'), +('那', 'ダ'), +('篤', 'トク'), +('曇', 'ドン'), +('丼', 'トン'), +('丼', 'タン'), +('丼', 'ショウ'), +('丼', 'セイ'), +('謎', 'メイ'), +('謎', 'ベイ'), +('豚', 'トン'), +('突', 'トツ'), +('突', 'カ'), +('匿', 'トク'), +('頓', 'トン'), +('頓', 'トツ'), +('屯', 'トン'), +('鈍', 'ドン'), +('藤', 'トウ'), +('藤', 'ドウ'), +('督', 'トク'), +('胴', 'ドウ'), +('貪', 'タン'), +('貪', 'ドン'), +('貪', 'トン'), +('鍋', 'カ'), +('凸', 'トツ'), +('瞳', 'ドウ'), +('瞳', 'トウ'), +('騰', 'トウ'), +('尼', 'ニ'), +('弐', 'ニ'), +('弐', 'ジ'), +('闘', 'トウ'), +('虹', 'コウ'), +('軟', 'ナン'), +('洞', 'ドウ'), +('尿', 'ニョウ'), +('妊', 'ニン'), +('妊', 'ジン'), +('忍', 'ニン'), +('寧', 'ネイ'), +('粘', 'ネン'), +('濃', 'ノウ'), +('把', 'ハ'), +('把', 'ワ'), +('捻', 'ネン'), +('捻', 'ジョウ'), +('悩', 'ノウ'), +('覇', 'ハ'), +('覇', 'ハク'), +('縛', 'バク'), +('漠', 'バク'), +('婆', 'バ'), +('廃', 'ハイ'), +('拍', 'ハク'), +('拍', 'ヒョウ'), +('賠', 'バイ'), +('培', 'バイ'), +('薄', 'ハク'), +('輩', 'ハイ'), +('迫', 'ハク'), +('剝', 'ハク'), +('排', 'ハイ'), +('陪', 'バイ'), +('媒', 'バイ'), +('泊', 'ハク'), +('伯', 'ハク'), +('杯', 'ハイ'), +('舶', 'ハク'), +('罵', 'バ'), +('爆', 'バク'), +('箸', 'チョ'), +('箸', 'チャク'), +('鉢', 'ハチ'), +('鉢', 'ハツ'), +('髪', 'ハツ'), +('抜', 'バツ'), +('抜', 'ハツ'), +('抜', 'ハイ'), +('氾', 'ハン'), +('伐', 'バツ'), +('伐', 'ハツ'), +('伐', 'カ'), +('伐', 'ボチ'), +('肌', 'キ'), +('罰', 'バツ'), +('罰', 'バチ'), +('罰', 'ハツ'), +('閥', 'バツ'), +('帆', 'ハン'), +('畔', 'ハン'), +('伴', 'ハン'), +('伴', 'バン'), +('汎', 'ハン'), +('汎', 'ブ'), +('汎', 'フウ'), +('汎', 'ホウ'), +('汎', 'ホン'), +('販', 'ハン'), +('搬', 'ハン'), +('斑', 'ハン'), +('頒', 'ハン'), +('煩', 'ハン'), +('煩', 'ボン'), +('範', 'ハン'), +('般', 'ハン'), +('蛮', 'バン'), +('妃', 'ヒ'), +('藩', 'ハン'), +('繁', 'ハン'), +('盤', 'バン'), +('疲', 'ヒ'), +('卑', 'ヒ'), +('彼', 'ヒ'), +('被', 'ヒ'), +('披', 'ヒ'), +('扉', 'ヒ'), +('碑', 'ヒ'), +('罷', 'ヒ'), +('避', 'ヒ'), +('尾', 'ビ'), +('扶', 'フ'), +('眉', 'ビ'), +('眉', 'ミ'), +('肘', 'チュウ'), +('姫', 'キ'), +('描', 'ビョウ'), +('漂', 'ヒョウ'), +('怖', 'フ'), +('怖', 'ホ'), +('浜', 'ヒン'), +('匹', 'ヒツ'), +('瓶', 'ビン'), +('附', 'フ'), +('苗', 'ビョウ'), +('苗', 'ミョウ'), +('猫', 'ビョウ'), +('頻', 'ヒン'), +('赴', 'フ'), +('賓', 'ヒン'), +('微', 'ビ'), +('浮', 'フ'), +('敏', 'ビン'), +('訃', 'フ'), +('膝', 'シツ'), +('符', 'フ'), +('腐', 'フ'), +('膚', 'フ'), +('敷', 'フ'), +('泌', 'ヒツ'), +('泌', 'ヒ'), +('舞', 'ブ'), +('伏', 'フク'), +('沸', 'フツ'), +('賦', 'フ'), +('賦', 'ブ'), +('噴', 'フン'), +('憤', 'フン'), +('柄', 'ヘイ'), +('併', 'ヘイ'), +('払', 'フツ'), +('払', 'ヒツ'), +('払', 'ホツ'), +('墳', 'フン'), +('幅', 'フク'), +('普', 'フ'), +('譜', 'フ'), +('紛', 'フン'), +('侮', 'ブ'), +('封', 'フウ'), +('封', 'ホウ'), +('覆', 'フク'), +('雰', 'フン'), +('丙', 'ヘイ'), +('塀', 'ヘイ'), +('塀', 'ベイ'), +('幣', 'ヘイ'), +('弊', 'ヘイ'), +('蔽', 'ヘイ'), +('蔽', 'ヘツ'), +('蔽', 'フツ'), +('璧', 'ヘキ'), +('壁', 'ヘキ'), +('癖', 'ヘキ'), +('偏', 'ヘン'), +('蔑', 'ベツ'), +('遍', 'ヘン'), +('餅', 'ヘイ'), +('餅', 'ヒョウ'), +('哺', 'ホ'), +('捕', 'ホ'), +('募', 'ボ'), +('芳', 'ホウ'), +('簿', 'ボ'), +('奉', 'ホウ'), +('奉', 'ブ'), +('邦', 'ホウ'), +('慕', 'ボ'), +('抱', 'ホウ'), +('倣', 'ホウ'), +('俸', 'ホウ'), +('泡', 'ホウ'), +('胞', 'ホウ'), +('砲', 'ホウ'), +('蜂', 'ホウ'), +('峰', 'ホウ'), +('舗', 'ホ'), +('縫', 'ホウ'), +('飽', 'ホウ'), +('坊', 'ボウ'), +('坊', 'ボッ'), +('妨', 'ボウ'), +('忙', 'ボウ'), +('忙', 'モウ'), +('乏', 'ボウ'), +('某', 'ボウ'), +('房', 'ボウ'), +('肪', 'ボウ'), +('傍', 'ボウ'), +('冒', 'ボウ'), +('墨', 'ボク'), +('膨', 'ボウ'), +('剖', 'ボウ'), +('紡', 'ボウ'), +('崩', 'ホウ'), +('褒', 'ホウ'), +('撲', 'ボク'), +('帽', 'ボウ'), +('帽', 'モウ'), +('没', 'ボツ'), +('没', 'モツ'), +('頰', 'キョウ'), +('勃', 'ボツ'), +('勃', 'ホツ'), +('僕', 'ボク'), +('堀', 'クツ'), +('朴', 'ボク'), +('奔', 'ホン'), +('謀', 'ボウ'), +('謀', 'ム'), +('睦', 'ボク'), +('睦', 'モク'), +('盆', 'ボン'), +('貌', 'ボウ'), +('貌', 'バク'), +('麻', 'マ'), +('麻', 'マア'), +('摩', 'マ'), +('翻', 'ホン'), +('翻', 'ハン'), +('磨', 'マ'), +('凡', 'ボン'), +('凡', 'ハン'), +('膜', 'マク'), +('埋', 'マイ'), +('昧', 'マイ'), +('昧', 'バイ'), +('魔', 'マ'), +('枕', 'チン'), +('枕', 'シン'), +('又', 'ユウ'), +('抹', 'マツ'), +('慢', 'マン'), +('蜜', 'ミツ'), +('蜜', 'ビツ'), +('岬', 'コウ'), +('漫', 'マン'), +('妙', 'ミョウ'), +('妙', 'ビョウ'), +('魅', 'ミ'), +('冥', 'メイ'), +('冥', 'ミョウ'), +('娘', 'ジョウ'), +('眠', 'ミン'), +('麺', 'メン'), +('麺', 'ベン'), +('滅', 'メツ'), +('妄', 'モウ'), +('妄', 'ボウ'), +('茂', 'モ'), +('盲', 'モウ'), +('免', 'メン'), +('耗', 'モウ'), +('耗', 'コウ'), +('猛', 'モウ'), +('網', 'モウ'), +('矛', 'ム'), +('矛', 'ボウ'), +('弥', 'ミ'), +('弥', 'ビ'), +('黙', 'モク'), +('黙', 'ボク'), +('厄', 'ヤク'), +('冶', 'ヤ'), +('躍', 'ヤク'), +('霧', 'ム'), +('霧', 'ボウ'), +('霧', 'ブ'), +('闇', 'アン'), +('闇', 'オン'), +('愉', 'ユ'), +('喩', 'ユ'), +('唯', 'ユイ'), +('唯', 'イ'), +('銘', 'メイ'), +('癒', 'ユ'), +('紋', 'モン'), +('幽', 'ユウ'), +('諭', 'ユ'), +('悠', 'ユウ'), +('雄', 'ユウ'), +('湧', 'ユウ'), +('湧', 'ヨウ'), +('湧', 'ユ'), +('裕', 'ユウ'), +('猶', 'ユウ'), +('猶', 'ユ'), +('憂', 'ユウ'), +('融', 'ユウ'), +('誉', 'ヨ'), +('妖', 'ヨウ'), +('誘', 'ユウ'), +('庸', 'ヨウ'), +('揚', 'ヨウ'), +('与', 'ヨ'), +('揺', 'ヨウ'), +('溶', 'ヨウ'), +('瘍', 'ヨウ'), +('窯', 'ヨウ'), +('踊', 'ヨウ'), +('擁', 'ヨウ'), +('謡', 'ヨウ'), +('沃', 'ヨウ'), +('沃', 'ヨク'), +('沃', 'オク'), +('腰', 'ヨウ'), +('拉', 'ラツ'), +('拉', 'ラ'), +('拉', 'ロウ'), +('抑', 'ヨク'), +('羅', 'ラ'), +('翼', 'ヨク'), +('頼', 'ライ'), +('絡', 'ラク'), +('酪', 'ラク'), +('雷', 'ライ'), +('藍', 'ラン'), +('吏', 'リ'), +('裸', 'ラ'), +('履', 'リ'), +('辣', 'ラツ'), +('濫', 'ラン'), +('欄', 'ラン'), +('離', 'リ'), +('璃', 'リ'), +('柳', 'リュウ'), +('痢', 'リ'), +('慄', 'リツ'), +('竜', 'リュウ'), +('竜', 'リョウ'), +('竜', 'ロウ'), +('隆', 'リュウ'), +('粒', 'リュウ'), +('侶', 'リョ'), +('侶', 'ロ'), +('虜', 'リョ'), +('虜', 'ロ'), +('了', 'リョウ'), +('慮', 'リョ'), +('涼', 'リョウ'), +('僚', 'リョウ'), +('寮', 'リョウ'), +('陵', 'リョウ'), +('猟', 'リョウ'), +('瞭', 'リョウ'), +('療', 'リョウ'), +('糧', 'リョウ'), +('糧', 'ロウ'), +('厘', 'リン'), +('倫', 'リン'), +('瑠', 'ル'), +('瑠', 'リュウ'), +('涙', 'ルイ'), +('涙', 'レイ'), +('戻', 'レイ'), +('零', 'レイ'), +('隣', 'リン'), +('励', 'レイ'), +('累', 'ルイ'), +('鈴', 'レイ'), +('鈴', 'リン'), +('塁', 'ルイ'), +('塁', 'ライ'), +('塁', 'スイ'), +('霊', 'レイ'), +('霊', 'リョウ'), +('隷', 'レイ'), +('麗', 'レイ'), +('齢', 'レイ'), +('暦', 'レキ'), +('暦', 'リャク'), +('裂', 'レツ'), +('籠', 'ロウ'), +('籠', 'ル'), +('劣', 'レツ'), +('恋', 'レン'), +('廉', 'レン'), +('麓', 'ロク'), +('錬', 'レン'), +('烈', 'レツ'), +('呂', 'ロ'), +('呂', 'リョ'), +('郎', 'ロウ'), +('郎', 'リョウ'), +('露', 'ロ'), +('露', 'ロウ'), +('炉', 'ロ'), +('廊', 'ロウ'), +('弄', 'ロウ'), +('弄', 'ル'), +('硫', 'リュウ'), +('賂', 'ロ'), +('漏', 'ロウ'), +('楼', 'ロウ'), +('脇', 'キョウ'), +('惑', 'ワク'), +('浪', 'ロウ'), +('腕', 'ワン'), +('賄', 'ワイ'), +('湾', 'ワン'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('亜', 'ア', 'sub-, -ous (indicating a low oxidation state), -ite, Asia, Argentina, Arabia, America, American person'), +('阿弗利加', 'アフリカ', 'Africa'), +('亜細亜', 'アジア', 'Asia'), +('露西亜', 'ロシア', 'Russia'), +('哀', 'アイ', 'pity, sorrow, grief, misery'), +('哀悼', 'アイトウ', 'condolence, regret, tribute, sorrow, sympathy, lament'), +('哀々', 'アイアイ', 'deeply sad'), +('挨拶', 'アイサツ', 'greeting, greetings, salutation, salute, condolences, congratulations, speech (congratulatory or appreciative), address, reply, response, revenge, retaliation, a fine thing to say, dialoging (with another Zen practitioner to ascertain their level of enlightenment), relationship (between people), connection, intervention, mediation, mediator'), +('挨拶代わり', 'アイサツガワリ', 'substitute for a proper greeting (e.g. gift)'), +('曖昧', 'アイマイ', 'vague, ambiguous, unclear, shady, disreputable, fuzzy'), +('曖昧模糊', 'アイマイモコ', 'obscure, vague, ambiguous'), +('曖々', 'アイアイ', 'dim, faint, unclear'), +('握手', 'アクシュ', 'handshake, reconciliation, joining hands, cooperation'), +('握力', 'アクリョク', 'grip (of hand), grip strength'), +('掌握', 'ショウアク', 'grasping, seizing, holding, commanding, having control over'), +('一握', 'イチアク', 'handful'), +('嵐気', 'ランキ', 'mountain mist, mountain air'), +('青嵐', 'アオアラシ', 'wind blowing through fresh verdure, mountain air'), +('翠嵐', 'スイラン', 'the sense of being engulfed in a green, mountainous atmosphere'), +('依頼', 'イライ', 'request, commission, entrusting (with a matter), dependence, reliance'), +('依存', 'イゾン', 'dependence, reliance'), +('依々', 'イイ', 'affectionately attached, reluctant to part'), +('憑依', 'ヒョウイ', 'possession (by a spirit, etc.), dependence, depending on'), +('依怙贔屓', 'エコヒイキ', 'favoritism, favouritism, partiality, prejudice, bias'), +('依蘭苔', 'エイランタイ', 'Iceland moss (Cetraria islandica), Iceland lichen'), +('帰依', 'キエ', 'becoming a devout believer, (religious) conversion'), +('宛然', 'エンゼン', 'as if, the very thing itself'), +('宛転', 'エンテン', 'eloquent, fluent, smooth-spoken, sonorous, facile, silver-tongued, (of eyebrows) shapely'), +('尉官', 'イカン', 'officer below the rank of major, company officer'), +('大尉', 'タイイ', 'captain (Army, US Marine Corps, USAF), lieutenant (Navy), flight lieutenant (RAF, RAAF, RNZAF, etc.)'), +('中尉', 'チュウイ', 'first lieutenant, lieutenant junior grade'), +('尉', 'ジョウ', 'inspector (third highest of the four administrative ranks of the ritsuryō system), (noh) old man, white ash (of charcoal)'), +('尉鶲', 'ジョウビタキ', 'Daurian redstart (Phoenicurus auroreus)'), +('黒式尉', 'コクシキジョウ', 'noh mask used for old man roles (usu. black)'), +('為政者', 'イセイシャ', 'statesman, administrator, politician, policymaker'), +('為公会', 'イコウカイ', 'Iko-kai (faction of the LDP)'), +('所為', 'セイ', 'consequence, outcome, result, blame'), +('人為', 'ジンイ', 'human work, human agency, art, artificiality'), +('畏怖', 'イフ', 'awe, fear, dread, fright'), +('畏敬', 'イケイ', 'reverence, awe, respect'), +('敬畏', 'ケイイ', 'awe, reverence, fear (e.g. of authority)'), +('後生可畏', 'コウセイカイ', 'the young should be regarded with respect'), +('椅子', 'イス', 'chair, stool, post, office, position'), +('倚子', 'イシ', 'traditional square chair with armrests and a torii-shaped back (used by the emperor, etc. during ceremonies)'), +('萎縮', 'イシュク', 'withering, shrivelling, shrinking, atrophy, contraction'), +('萎黄病', 'イオウビョウ', 'chlorosis, greensickness'), +('陰萎', 'インイ', 'impotence (sexual), erectile impotence'), +('彙', 'イ', 'kind, sort, type'), +('彙報', 'イホウ', 'bulletin, collection of reports'), +('理解語彙', 'リカイゴイ', 'passive vocabulary'), +('表現語彙', 'ヒョウゲンゴイ', 'active vocabulary'), +('違反', 'イハン', 'violation, offense, offence, breach, transgression, infringement, contravention'), +('違法', 'イホウ', 'illegal, illicit, unlawful'), +('相違', 'ソウイ', 'difference, discrepancy, variation'), +('格段の相違', 'カクダンノソウイ', 'marked difference'), +('維持', 'イジ', 'maintenance, preservation, improvement'), +('維新', 'イシン', 'reformation, revolution, renewal, Meiji Restoration, Nippon Ishin no Kai, Japan Innovation Party'), +('化学繊維', 'カガクセンイ', 'synthetic fiber, synthetic fibre, chemical fiber, chemical fibre'), +('合成繊維', 'ゴウセイセンイ', 'synthetic fibre, synthetic fiber'), +('一', 'イチ', 'one, 1, best, first, foremost, beginning, start, a (single), one (of many), ace (playing card), bottom string (on a shamisen, etc.)'), +('一万円', 'イチマンエン', '10,000 yen'), +('威', 'イ', 'power, authority, might, influence, dignity, majesty'), +('威張る', 'イバル', 'to put on airs, to act big, to throw one''s weight about, to be overbearing, to be domineering, to be bossy, to be pushy, to be proud, to be haughty, to be arrogant, to swagger, to boast, to brag'), +('球威', 'キュウイ', '(pitcher''s) stuff'), +('国威', 'コクイ', 'national prestige'), +('偉', 'イ', 'greatness'), +('偉大', 'イダイ', 'great, grand, magnificent, outstanding, mighty'), +('魁偉', 'カイイ', 'brawny, muscular, impressive, gigantic'), +('容貌魁偉', 'ヨウボウカイイ', '(a man) having a commanding face and a powerful physique'), +('逸話', 'イツワ', 'anecdote'), +('逸脱', 'イツダツ', 'deviation, departure, omission'), +('独逸', 'ドイツ', 'Germany'), +('秀逸', 'シュウイツ', 'excellent, superb, first-rate'), +('咽喉', 'インコウ', 'throat'), +('咽喉頭異常感症', 'インコウトウイジョウカンショウ', 'globus pharyngis, lump in one''s throat, pharyngolaryngeal paresthesia'), +('嚥下', 'エンゲ', 'swallowing, deglutition'), +('哀咽', 'アイエツ', 'being choked with tears'), +('嗚咽', 'オエツ', 'sobbing, weeping, fit of crying'), +('横糸', 'ヨコイト', 'weft, woof (crosswise threads on a loom)'), +('緯度', 'イド', 'latitude (nav.)'), +('北緯', 'ホクイ', 'north latitude'), +('南緯', 'ナンイ', 'southern latitude'), +('姻戚', 'インセキ', 'relative by marriage, affinity'), +('姻戚関係', 'インセキカンケイ', 'relation by marriage'), +('婚姻', 'コンイン', 'marriage, matrimony'), +('海芋', 'カイウ', 'calla (Zantedcschia aethiopica)'), +('阿蘭陀海芋', 'オランダカイウ', 'calla lily (Zantedeschia aethiopica)'), +('淫', 'イン', 'licentiousness'), +('淫愛', 'インアイ', 'dirty love, sordid love'), +('売淫', 'バイイン', 'prostitution'), +('口淫', 'コウイン', 'oral sex, fellatio, cunnilingus'), +('陰', 'イン', '(the) negative (e.g. pole), yin (in Chinese divination), hidden place, unseen part, private location'), +('陰気', 'インキ', 'gloomy, dismal, miserable, melancholy, spirit of yin'), +('山陰', 'ヤマカゲ', 'place in the shade of a mountain, shelter of the mountains, mountain recess'), +('外陰', 'ガイイン', 'vulva, pudenda'), +('慰霊', 'イレイ', 'consoling the spirits of the dead'), +('慰安旅行', 'イアンリョコウ', 'pleasure trip, company (office) trip'), +('弔意', 'チョウイ', 'condolence, sympathy, mourning'), +('少慰', 'ショウイ', 'ensign (navy), second lieutenant (marine and army)'), +('疫病', 'エキビョウ', 'epidemic, plague, pestilence'), +('疫学', 'エキガク', 'epidemiology, the study of epidemics'), +('検疫', 'ケンエキ', 'quarantine, medical inspection'), +('防疫', 'ボウエキ', 'communicable disease control (e.g. by quarantine, disinfection, etc.), prevention of epidemics'), +('疫病', 'エキビョウ', 'epidemic, plague, pestilence'), +('疫神', 'エキジン', 'god who spreads infectious diseases, god of pestilence'), +('恨み言', 'ウラミゴト', 'grudge, complaint, reproach'), +('怨恨', 'エンコン', 'enmity, grudge'), +('旧怨', 'キュウエン', 'old grudge'), +('宿怨', 'シュクエン', 'old grudge, old score'), +('怨霊', 'オンリョウ', 'revengeful ghost, apparition'), +('怨念', 'オンネン', 'deep-seated grudge, hatred'), +('宴', 'ウタゲ', 'party, banquet, feast'), +('宴会', 'エンカイ', 'party, banquet, reception, feast, dinner'), +('饗宴', 'キョウエン', 'feast, banquet'), +('開宴', 'カイエン', 'opening of a banquet, opening of a wedding reception'), +('鋭', 'エイ', 'sharpness, sharp weapon, blade, fine soldier'), +('鋭意', 'エイイ', 'eagerly, earnestly, assiduously, diligently, wholeheartedly'), +('精鋭', 'セイエイ', 'elite, best, pick, cream of the crop'), +('気鋭', 'キエイ', 'spirited, energetic'), +('閲', 'エツ', 'inspection (esp. of a document), stamp of approval (for a document)'), +('閲覧', 'エツラン', 'inspection, reading, perusal, browsing (the web)'), +('校閲', 'コウエツ', 'revision, proofreading'), +('観閲', 'カンエツ', 'inspection (of troops)'), +('悦', 'エツ', 'self-satisfaction, rejoicing'), +('悦に入る', 'エツニイル', 'to be pleased, to gloat, to glow with self-satisfaction'), +('満悦', 'マンエツ', 'great delight, great satisfaction, rapture'), +('怡悦', 'イエツ', 'rejoicing'), +('煙草', 'タバコ', 'tobacco, cigarette, cigaret, cigar, tobacco plant (Nicotiana tabacum)'), +('煙突', 'エントツ', 'chimney, smokestack, funnel (of a ship), stovepipe, carrying a passenger without turning on the taximeter'), +('禁煙', 'キンエン', 'abstaining from smoking, quitting smoking, prohibition of smoking, No Smoking, Smoking Prohibited'), +('喫煙', 'キツエン', 'smoking'), +('炎', 'エン', '-itis (indicating an inflammatory disease)'), +('炎症', 'エンショウ', 'inflammation, irritation'), +('結膜炎', 'ケツマクエン', 'conjunctivitis'), +('脳炎', 'ノウエン', 'brain inflammation, encephalitis, cerebritis'), +('海浦', 'カイホ', 'seaside'), +('曲浦', 'キョクホ', 'winding coast (beach)'), +('韻', 'イン', 'rhyme, rhyme (of a Chinese character), rime'), +('韻律', 'インリツ', 'metre (of a poem), meter, rhythm, prosody'), +('哀韻', 'アイイン', 'sad tone (of music, words, etc.)'), +('類韻', 'ルイイン', 'assonance'), +('鬱', 'ウツ', 'depression, low spirits, luxuriant (of vegetation)'), +('うつ病', 'ウツビョウ', 'depression'), +('蓊鬱', 'オウウツ', 'overgrown, exuberant, lush'), +('抗うつ', 'コウウツ', 'antidepressant'), +('援助', 'エンジョ', 'assistance, aid, support'), +('援護', 'エンゴ', 'support, help, backing, covering (from enemy attack), protection'), +('応援', 'オウエン', 'aid, assistance, help, support, reinforcement, cheering, rooting (for), support'), +('救援', 'キュウエン', 'relief, rescue'), +('詠', 'エイ', 'recitation (of a poem), chanting, singing, composition (of a poem), composed poem'), +('詠歌', 'エイカ', 'poem (esp. tanka), song, composition of a poem or song, pilgrim''s song, pilgrim''s hymn, singing a poem or song in a loud voice'), +('朗詠', 'ロウエイ', 'recitation (of Japanese or Chinese poem)'), +('遺詠', 'イエイ', 'posthumous song or poem'), +('猿人', 'エンジン', 'ape man'), +('猿害', 'エンガイ', 'damages inflicted by monkeys (on crops, etc.)'), +('人類猿', 'ジンルイエン', 'anthropoid ape'), +('孤猿', 'コエン', 'lone monkey, stray monkey'), +('越', 'エツ', 'Yue (kingdom in ancient China; 6th C-334 BCE), Vietnam'), +('越年', 'エツネン', 'seeing the old year out, greeting the New Year, passing the winter, hibernation, playing more than the usual 12 rounds in one game'), +('優越', 'ユウエツ', 'supremacy, predominance, being superior to'), +('卓越', 'タクエツ', 'preeminence, excellence, superiority, transcendence'), +('越年', 'エツネン', 'seeing the old year out, greeting the New Year, passing the winter, hibernation, playing more than the usual 12 rounds in one game'), +('越年蝶', 'オツネンチョウ', 'eastern pale clouded yellow (butterfly, Colias erate)'), +('檀越', 'ダンオツ', 'alms-giver, person who donates to a monk or a temple, dana-pati'), +('縁', 'エン', 'fate, destiny (esp. as a mysterious force that binds two people together), relationship (e.g. between two people), bond, link, connection, family ties, affinity, opportunity, chance (to meet someone and start a relationship), pratyaya (indirect conditions, as opposed to direct causes), narrow open-air veranda'), +('縁起', 'エンギ', 'omen, sign of luck, origin, history, causation, dependent arising, doctrine that everything has a cause and there is nothing that arises out of nothing'), +('遠縁', 'トオエン', 'distant relative'), +('内縁', 'ナイエン', 'de facto marriage, common-law marriage'), +('陰謀', 'インボウ', 'plot, intrigue, scheme, conspiracy, agreement between two or more people to commit an unlawful act'), +('隠居', 'インキョ', 'retirement (from work), leading a quiet life (after retirement), retired person, retiree, surrendering headship of the family (pre-WWII)'), +('退隠', 'タイイン', 'retirement (from an official position)'), +('大隠', 'タイイン', 'enlightened hermit'), +('隠密', 'オンミツ', 'secret, clandestine, covert, spy (for a daimyo, shogun, etc.), secret agent'), +('隠形', 'オンギョウ', 'invisibility (through magic)'), +('影響', 'エイキョウ', 'influence, effect, impact'), +('影響力', 'エイキョウリョク', 'influence, clout, leverage'), +('反映', 'ハンエイ', 'reflection (of light), reflection (of society, attitudes, etc.), application (of an update, changes, etc.), taking effect'), +('撮影', 'サツエイ', 'photography (still or motion), photographing, filming, shooting, (video) recording'), +('貝葉', 'バイヨウ', 'palm-leaf manuscript'), +('梵唄', 'ボンバイ', 'song in praise of Buddhas virtues'), +('鉛筆', 'エンピツ', 'pencil'), +('鉛筆書き', 'エンピツガキ', 'drawing or writing in pencil'), +('黒鉛', 'コクエン', 'graphite'), +('硫化亜鉛', 'リュウカアエン', 'zinc sulfide (ZnS) (sulphide)'), +('艶', 'エン', 'charming, fascinating, voluptuous'), +('演歌', 'エンカ', 'enka, traditional-style Japanese popular ballad, troubadour'), +('妖艶', 'ヨウエン', 'fascinating, voluptuous, bewitching, captivating'), +('凄艶', 'セイエン', 'weirdly beautiful'), +('凹', 'オウ', 'concave, hollow, sunken'), +('凹凸', 'オウトツ', 'unevenness, bumpiness, roughness, ruggedness, imbalance, inequality, unevenness, disparity'), +('凸凹', 'デコボコ', 'unevenness, roughness, ruggedness, bumpiness, inequality, imbalance, unevenness, difference'), +('肋凹', 'ロクオウ', 'costal fovea'), +('畝', 'ホ', 'mu (Chinese measure of land area, formerly approx. 600 m.sq., currently approx. 667 m.sq.)'), +('壟畝', 'ロウホ', 'ridges of and paths between fields, countryside, civilian'), +('臆病', 'オクビョウ', 'cowardly, timid, easily frightened'), +('憶測', 'オクソク', 'guess, speculation, supposition'), +('記憶', 'キオク', 'memory, recollection, remembrance, memory, storage'), +('追憶', 'ツイオク', 'recollection, reminiscence'), +('欧', 'オウ', 'Europe'), +('欧米', 'オウベイ', 'Europe and America, the West'), +('東欧', 'トウオウ', 'Eastern Europe'), +('西欧', 'セイオウ', 'Western Europe, the West, the Occident, Europe'), +('押収', 'オウシュウ', 'seizure, confiscation'), +('押印', 'オウイン', 'affixing a seal (to), putting one''s seal (on)'), +('花押', 'カオウ', 'written seal, stylized signature'), +('奥地', 'オクチ', 'interior, backwoods, hinterland, back regions'), +('奥義', 'オウギ', 'secret techniques (of an art or skill), inner mysteries, essence, quintessence, heart'), +('最奥', 'サイオウ', 'deep inside, innermost place'), +('内奥', 'ナイオウ', 'inner part, depths'), +('殴打', 'オウダ', 'hit, strike, blow'), +('殴殺', 'オウサツ', 'beating to death, striking dead'), +('汚染', 'オセン', 'pollution, contamination'), +('汚水', 'オスイ', 'filthy water, sewage'), +('防汚', 'ボウオ', 'antifouling, stain resistance, stain-proofing, anti-soiling'), +('貪汚', 'タンオ', 'greed, corruption'), +('旺盛', 'オウセイ', 'lively, vigorous, energetic, healthy, avid (e.g. desire), rich (e.g. imagination), full of (energy, appetite, curiosity, etc.), brimming with'), +('旺然', 'オウゼン', 'prosperous'), +('翁', 'オウ', 'old man, venerable gentleman, venerable, old, father'), +('翁媼', 'オウオウ', 'old man and old woman, elderly man and elderly woman'), +('阿翁', 'アオウ', 'father-in-law (of a woman), grandfather'), +('白頭翁', 'ハクトウオウ', 'windflower, anemone, white-haired old man, grey starling (gray)'), +('乙', 'オツ', 'second (party to an agreement), the B party (e.g. in a contract), the latter, defendant, stylish, chic, spicy, witty, tasty, romantic, strange, quaint, queer, thank you, good job, see you, goodbye, goodnight'), +('乙亥', 'キノトイ', 'Wood Boar (12th term of the sexagenary cycle, e.g. 1935, 1995, 2055)'), +('うp乙', 'ウプオツ', 'thanks for uploading'), +('甲と乙', 'コウトオツ', 'the former and the latter, A and B'), +('乙亥', 'キノトイ', 'Wood Boar (12th year of the sexagenary cycle, e.g. 1935, 1995, 2055)'), +('乙未', 'キノトヒツジ', 'Wood Sheep (32nd year of the sexagenary cycle, e.g. 1955, 2015, 2075)'), +('独逸', 'ドイツ', 'Germany'), +('不一', 'フイツ', 'Very sincerely yours, different'), +('虞犯', 'グハン', 'likelihood of committing a crime, pre-delinquent'), +('虞犯少年', 'グハンショウネン', 'juvenile likely to commit a crime, juvenile with a criminal bent, pre-delinquent juvenile, status offender'), +('危惧', 'キグ', 'apprehensions, misgivings, uneasiness, anxiety, fear'), +('憂虞', 'ユウグ', 'anxiety, fear'), +('卸下', 'シャガ', 'cargo unloading'), +('温和', 'オンワ', 'mild (climate), temperate, clement, pleasant, agreeable, gentle (nature, personality, etc.), mild, quiet, pleasant, moderate (statement, measure, etc.), mild, temperate'), +('穏健', 'オンケン', 'quiet, dependable, uniform, (politically) moderate'), +('安穏', 'アンノン', 'peace, quiet, tranquility, tranquillity'), +('無事平穏', 'ブジヘイオン', 'peace and quiet, safe and peaceful, tranquil and uneventful'), +('謁', 'エツ', 'audience (with a superior, e.g. nobility), visiting card, name card'), +('謁を賜わる', 'エツヲタマワル', 'to be granted an audience'), +('請謁', 'セイエツ', 'beseeching, requesting (an audience)'), +('内謁', 'ナイエツ', 'private audience'), +('臆病', 'オクビョウ', 'cowardly, timid, easily frightened'), +('臆面もなく', 'オクメンモナク', 'boldly, audaciously, impudently, unashamedly, unabashedly'), +('剛臆', 'ゴウオク', 'bravery and cowardice'), +('胸臆', 'キョウオク', 'one''s inmost thoughts (feelings)'), +('架', 'カ', 'rack, mount, stand'), +('架空', 'カクウ', 'fictitious, imaginary, fanciful, fabricated, aerial, overhead'), +('担架', 'タンカ', 'stretcher, litter (medical), gurney'), +('高架', 'コウカ', 'elevated (structure), overhead'), +('靴帯', 'カタイ', 'ankle strap (for fastening a shoe)'), +('靴の沓', 'カノクツ', 'black-lacquered cowhide boots with curved toes, metal buckles, and brocade tops (worn with ceremonial dress)'), +('軍靴', 'グンカ', 'military shoes, combat boots'), +('製靴', 'セイカ', 'shoe-making'), +('過酷', 'カコク', 'severe, harsh, hard, cruel, rigorous'), +('苛虐', 'カギャク', 'cruel treatment'), +('寡', 'カ', 'minority, small numbers, unmarried person, widow, widower'), +('寡婦', 'カフ', 'widow, divorced woman not remarried, unmarried woman'), +('多寡', 'タカ', 'degree (of something), greatness or smallness (of something), quantity, number, amount, size'), +('鰥寡', 'カンカ', 'widow and widower, lonely people'), +('箇', 'カ', 'counter for the ichi-ni-san counting system (usu. directly preceding the item being counted), a noun read using its on-yomi'), +('箇所', 'カショ', 'place, point, part, spot, area, passage, portion, counter for places, parts, passages, etc.'), +('個', 'コ', 'counter for articles, counter for military units, individual'), +('個々', 'ココ', 'individual, one by one, separate, each'), +('真箇', 'シンコ', 'real, true'), +('蚊帳', 'カヤ', 'mosquito net'), +('夜鷹', 'ヨタカ', 'grey nightjar (Caprimulgus indicus), nightjar (any bird of family Caprimulgidae), goatsucker, streetwalker, low class prostitute (Edo period), soba vendors who walk around at night, soba sold by these vendors'), +('金蚊', 'カナブン', 'drone beetle (scarabaeid beetle) (Rhomborrhina japonica)'), +('雅', 'ガ', 'elegance, grace, festal song (genre of the Shi Jing)'), +('雅致', 'ガチ', 'artistry, good taste, elegance, grace'), +('清雅', 'セイガ', 'graceful, elegant'), +('大雅', 'タイガ', 'major festal song (subgenre of the Shi Jing)'), +('渦中', 'カチュウ', 'vortex, maelstrom, whirlpool, (in the middle of a) scandal, controversy, quarrel, turmoil'), +('渦状', 'カジョウ', 'spiral'), +('極渦', 'キョクウズ', 'polar vortex, polar cell'), +('戦渦', 'センカ', 'chaos of war, war turmoil'), +('餓死寸前', 'ガシスンゼン', 'being on the verge of starvation, being about to starve'), +('餓鬼', 'ガキ', 'brat, kid, urchin, little devil, preta, hungry ghost'), +('飢餓', 'キガ', 'starvation, famine, hunger'), +('華', 'カ', 'flashiness, showiness, brilliance, splendor, bloom, flowers'), +('華麗', 'カレイ', 'splendid, magnificent, gorgeous'), +('献花', 'ケンカ', 'flower offering, floral tribute, laying flowers'), +('精華', 'セイカ', 'essence, quintessence, flower, glory'), +('華厳', 'ケゴン', 'avatamsa (flower adornment, as a metaphor for becoming a buddha), Avatamska sutra, Kegon (sect of Buddhism)'), +('花かご', 'ハナカゴ', 'flower basket, flower basket (or plate) used for flower-scattering rituals'), +('法華', 'ホッケ', 'Nichiren sect, Tendai sect, Lotus Sutra'), +('天花', 'テンゲ', 'flowers that bloom in the heavens, paper flowers scattered before the Buddha''s image'), +('暇人', 'ヒマジン', 'person with a lot of free time on their hands, person of leisure, idler, loafer'), +('寸暇', 'スンカ', 'moment''s leisure, free minute'), +('請暇', 'セイカ', 'vacation request, request for leave of absence'), +('牙城', 'ガジョウ', 'stronghold (esp. of an enemy or opponent), inner citadel, bastion'), +('牙関緊急', 'ガカンキンキュウ', 'trismus, lockjaw'), +('爪牙', 'ソウガ', 'claws and fangs, claws and tusks, clutches, devious design, means of causing harm, weapon, pawn, stooge, cat''s-paw, right-hand man'), +('毒牙', 'ドクガ', 'poison fang, sinister ways, crooked means, clutches, wily ways, dirty trick'), +('牙', 'ゲ', 'tooth, ivory'), +('新象牙', 'シンゾウゲ', 'ivory-like plastic (used for mahjong tiles, shogi pieces, etc.)'), +('黒花狼牙', 'クロバナロウゲ', 'purple marshlocks (Comarum palustre), swamp cinquefoil, marsh cinquefoil'), +('禍', 'カ', 'disaster, calamity, misfortune'), +('禍福', 'カフク', 'fortune and misfortune, prosperity and adversity, good and evil, weal and woe'), +('コロナ禍', 'コロナカ', 'coronavirus crisis, COVID-19 crisis'), +('惨禍', 'サンカ', 'calamity, disaster, catastrophe'), +('稼ぐ', 'カセグ', 'to earn (income), to make (money), to score (points, victory), to gain (time), to play (for time), to work hard (at one''s job), to labor, to labour, to toil'), +('稼ぎ', 'カセギ', 'earnings'), +('嫁す', 'カス', 'to wed, to be married, to shift blame to someone else'), +('嫁する', 'カスル', 'to wed, to be married, to shift blame to someone else'), +('責任転嫁', 'セキニンテンカ', 'shift the responsibility (for something) on to (someone), pass the buck'), +('再嫁', 'サイカ', 'remarriage'), +('菓', 'カ', 'fruit, counter for fruit'), +('果物', 'クダモノ', 'fruit'), +('製菓', 'セイカ', 'confectionery production'), +('聖菓', 'セイカ', 'Christmas cake'), +('佳', 'カ', 'beautiful, good, excellent'), +('佳人薄命', 'カジンハクメイ', 'beauties die young, beauty and luck seldom go together'), +('絶佳', 'ゼッカ', 'superb (view, landscape)'), +('風光絶佳', 'フウコウゼッカ', 'scenic beauty'), +('貝', 'カイ', 'shellfish, seashell, shell'), +('介護', 'カイゴ', 'nursing, care, caregiving, caring'), +('紹介', 'ショウカイ', 'introduction, presentation'), +('仲介', 'チュウカイ', 'agency, intermediation'), +('怪', 'カイ', 'mystery, wonder'), +('怪獣', 'カイジュウ', 'monster'), +('妖怪', 'ヨウカイ', 'ghost, apparition, phantom, spectre, specter, demon, monster, goblin, yōkai'), +('奇々怪々', 'キキカイカイ', 'very strange, bizarre, weird, mysterious'), +('怪我', 'ケガ', 'injury, wound, mistake, accident, loss'), +('けが人', 'ケガニン', 'wounded person, injured person'), +('物怪', 'モッケ', 'unexpected'), +('物の怪', 'モノノケ', '(vengeful) ghost, specter, spectre'), +('拐引', 'カイイン', 'carrying off by deception, kidnap'), +('拐取', 'カイシュ', 'abduction, kidnapping'), +('誘拐', 'ユウカイ', 'abduction, kidnapping, kidnaping'), +('デジタル誘拐', 'デジタルユウカイ', 'digital kidnapping'), +('瓦斯', 'ガス', 'gas (as a fuel), gas (state of matter), poison gas, dense fog, thick fog, gas stove, gas cooker, gas range, gasoline, gas, petrol, flatulence, gas, wind, fart, gassed yarn'), +('瓦礫', 'ガレキ', 'rubble, debris, wreckage, tiles and pebbles, trash, rubbish'), +('煉瓦', 'レンガ', 'brick'), +('鞍橋', 'クラボネ', 'saddle tree'), +('悔恨', 'カイコン', 'regret, remorse, repentance, contrition'), +('悔悟', 'カイゴ', 'remorse, repentance'), +('後悔', 'コウカイ', 'regret, repentance, remorse'), +('痛悔', 'ツウカイ', 'contrition, extreme regret, contrition (in Catholicism)'), +('戒', 'カイ', 'admonition, commandment, sila (precept)'), +('戒厳令', 'カイゲンレイ', 'martial law'), +('警戒', 'ケイカイ', 'vigilance, caution, alertness, precaution, being on guard'), +('厳戒', 'ゲンカイ', 'strict guard'), +('塊茎', 'カイケイ', 'tuber'), +('塊鉱', 'カイコウ', 'lump ore'), +('団塊', 'ダンカイ', 'mass, lump, clod, clump, nodule, baby boom generation (of 1947-1949), babyboomer (born between 1947-1949)'), +('山塊', 'サンカイ', 'mountain mass, massif'), +('楷', 'カイ', 'regular script (of Chinese characters), square style, block style, standard style, Chinese pistache (Pistacia chinensis)'), +('楷書', 'カイショ', 'printed style (of writing Chinese characters), square style, block style, standard style'), +('壊滅', 'カイメツ', 'destruction, annihilation, devastation, catastrophe'), +('潰瘍', 'カイヨウ', 'ulcer'), +('決壊', 'ケッカイ', 'burst (e.g. dam, embankment, levee), breach, collapse, washout, rupture'), +('倒壊', 'トウカイ', 'destruction, collapse, crumbling'), +('壊滅', 'カイメツ', 'destruction, annihilation, devastation, catastrophe'), +('壊滅的', 'カイメツテキ', 'devastating, catastrophic, crushing'), +('決壊', 'ケッカイ', 'burst (e.g. dam, embankment, levee), breach, collapse, washout, rupture'), +('倒壊', 'トウカイ', 'destruction, collapse, crumbling'), +('壊死', 'エシ', 'necrosis'), +('壊劫', 'エコウ', 'the kalpa of destruction (the third aeon of the universe)'), +('不壊', 'フエ', 'indestructibility'), +('金剛不壊', 'コンゴウフエ', 'firm and solid, sturdy and indestructible, unshakable, adamantine'), +('皆目', 'カイモク', 'entirely, (not) at all'), +('皆既日食', 'カイキニッショク', 'total solar eclipse'), +('悉皆', 'シッカイ', 'all'), +('劾奏', 'ガイソウ', 'report of an official''s offence to the emperor (offense)'), +('弾劾', 'ダンガイ', 'impeachment, denunciation, accusation, censure, arraignment'), +('諧和', 'カイワ', 'gentle mutual affection, harmony, harmony'), +('諧謔', 'カイギャク', 'joke, jest, banter'), +('俳諧', 'ハイカイ', 'haikai, collective name for haiku, haibun, haiga, senryū, etc., humorous or vulgar renga poetry'), +('懐中電灯', 'カイチュウデントウ', '(electric) torch, flashlight'), +('懐柔', 'カイジュウ', 'winning over, placation, gentle persuasion'), +('述懐', 'ジュッカイ', 'speaking about (one''s thoughts, memories, etc.), relating (one''s feelings, reminiscences, etc.), recollection, reminiscence'), +('追懐', 'ツイカイ', 'recollection, remembrance, reminiscence'), +('際涯', 'サイガイ', 'limits, boundary, end'), +('水涯', 'スイガイ', 'water''s edge'), +('熟柿', 'ジュクシ', 'ripe persimmon'), +('該', 'ガイ', 'said, matter in question'), +('該当', 'ガイトウ', 'corresponding to, being applicable to, being relevant to, coming under, falling under, fulfilling (requirements), meeting (conditions), qualifying for'), +('当該', 'トウガイ', 'appropriate (e.g. authorities), concerned, relevant, said, aforementioned, competent, applicable, respective'), +('岳人', 'ガクジン', 'alpinist, mountaineer'), +('岳神', 'ガクジン', 'mountain god'), +('山岳', 'サンガク', 'mountain chain, mountains'), +('富岳', 'フガク', 'Mount Fuji, Mt. Fuji'), +('骸骨', 'ガイコツ', 'skeleton'), +('骸炭', 'ガイタン', 'coke (carbon fuel)'), +('死骸', 'シガイ', '(dead) body, corpse, carcass, remains'), +('形骸', 'ケイガイ', 'ruin, wreck, mere skeleton, framework'), +('獲得', 'カクトク', 'acquisition, possession'), +('獲得形質', 'カクトクケイシツ', 'acquired characteristics (as opposed to inherited)'), +('乱獲', 'ランカク', 'excessive fishing, overfishing, overhunting, excessive taking'), +('収獲', 'シュウカク', 'catch (fishing), bag (hunting), haul'), +('収穫', 'シュウカク', 'harvest, crop, ingathering, fruits (of one''s labors), gain, result, returns'), +('規模に関する収穫', 'キボニカンスルシュウカク', 'returns to scale'), +('較差', 'カクサ', 'range'), +('較優位論', 'カクユウイロン', 'theory of comparative advantage'), +('比較', 'ヒカク', 'comparison'), +('国際比較', 'コクサイヒカク', 'international comparison, country-by-country comparison'), +('校正', 'コウセイ', 'proofreading, correction of press, calibration'), +('較量', 'コウリョウ', 'comparison'), +('隔', 'カク', 'every other, second, alternate'), +('隔離', 'カクリ', 'isolation, segregation, separation, quarantine'), +('遠隔', 'エンカク', 'distant, remote, isolated'), +('縦隔', 'ジュウカク', 'mediastinum'), +('廓', 'クルワ', 'district, quarter, enclosure, area enclosed by earthwork, red-light district, wide and empty'), +('廓清', 'カクセイ', 'purification, cleaning up, purging'), +('外郭', 'ガイカク', 'outer wall (e.g. castle), outer block (enclosure), outline, contour'), +('遊郭', 'ユウカク', '(licensed) red light district'), +('垣牆', 'エンショウ', 'hedge, fence'), +('紫微垣', 'シビエン', 'Purple Forbidden Enclosure (group of constellations in the northern sky associated with the emperor)'), +('崖下', 'ガイカ', 'below a cliff'), +('崖上', 'ガイジョウ', 'cliff top'), +('断層崖', 'ダンソウガイ', 'fault scarp, fault escarpment'), +('崎崖', 'キガイ', 'steepness of a mountain'), +('概', 'ガイ', 'appearance, look, aspect, strong spirit, mettle'), +('概念', 'ガイネン', 'general idea, concept, notion'), +('気概', 'キガイ', 'strong spirit, mettle, backbone, guts, fighting spirit'), +('梗概', 'コウガイ', 'outline, summary, epitome'), +('赫々', 'カクカク', 'brilliant, bright, glorious'), +('嚇す', 'カクス', 'to threaten, to menace'), +('威嚇', 'イカク', 'threat, intimidation, menace'), +('恐嚇', 'キョウカク', 'intimidation, threat'), +('殻', 'カク', 'shell (e.g. electron shell)'), +('殻構造', 'カクコウゾウ', 'shell structure'), +('地殻', 'チカク', '(Earth''s) crust'), +('介殻', 'カイカク', 'sea shell'), +('枸橘', 'カラタチ', 'trifoliate orange (Poncirus trifoliata), hardy orange'), +('船殻', 'センコク', 'hull'), +('蓋果', 'ガイカ', 'pyxidium'), +('蓋然', 'ガイゼン', 'probability'), +('鰓蓋', 'エラブタ', 'gill cover, operculum'), +('口蓋', 'コウガイ', 'palate'), +('慨世', 'ガイセイ', 'deploring the course of public events'), +('慨する', 'ガイスル', 'to regret, to deplore'), +('憤慨', 'フンガイ', 'indignation, resentment'), +('感慨', 'カンガイ', 'deep emotion, strong feelings'), +('核', 'カク', 'stone (of a fruit), pit, pip, core (of an organization, team, etc.), nucleus, heart, nuclear weapons, nucleus (of an atom), nucleus (of a cell), condensation nucleus, (planetary) core, ring (in a cyclic compound), kernel, core, nucleus (of a cultured pearl)'), +('核家族', 'カクカゾク', 'nuclear family'), +('中核', 'チュウカク', 'kernel, core, nucleus, center, centre'), +('放射性同位核', 'ホウシャセイドウイカク', 'radioisotope'), +('汗', 'カン', 'khan (medieval ruler of a Tatary tribe)'), +('汗顔', 'カンガン', 'ashamed'), +('発汗', 'ハッカン', 'sweating, perspiration, sudation, hidrosis, diaphoresis'), +('成吉思汗', 'ジンギスカン', 'jingisukan, grilled mutton and vegetable dish, slotted dome cast iron grill (used for jingisukan)'), +('苟且', 'コウショ', 'temporary, transient, trifling, slight, negligent'), +('暫且', 'ザンショ', 'short while'), +('釜山', 'プサン', 'Busan (South Korea), Pusan'), +('釜中の魚', 'フチュウノウオ', 'fish in a pot about to be boiled, person who is blissfully unaware of deadly danger'), +('刈除', 'ガイジョ', 'removal, cut off, mowing'), +('刈除', 'ガイジョ', 'removal, cut off, mowing'), +('渇', 'カツ', 'thirst'), +('渇望', 'カツボウ', 'craving, longing, thirsting'), +('枯渇', 'コカツ', 'drying up, running dry, running out, being exhausted, being drained'), +('口渇', 'コウカツ', 'thirst, dry mouth, -dipsia'), +('喝', 'カツ', 'exclamation used to scold practitioners (in Zen), scolding or threatening with a shout'), +('カツ上げ', 'カツアゲ', 'extortion, shakedown'), +('恐喝', 'キョウカツ', 'blackmail, extortion, threat (to extort money)'), +('恫喝', 'ドウカツ', 'intimidation, threat, bluster'), +('さつま芋', 'サツマイモ', 'sweet potato (Ipomoea batatas)'), +('甘言', 'カンゲン', 'sweet words, smooth talk, cajolery, flattery, sycophancy'), +('冠', 'カンムリ', 'traditional cap worn by Shinto clergy and courtiers, crown, diadem, coronet, top kanji radical, first verse of a haikai, etc., best, peerless, first, name, title, named sponsorship of a program, event, team, etc.'), +('冠水', 'カンスイ', 'being covered with water (i.e. in a flood), being submerged, being inundated, flooding'), +('宝冠', 'ホウカン', 'diadem, jeweled crown'), +('月桂冠', 'ゲッケイカン', 'laurel wreath'), +('肝心', 'カンジン', 'essential, important, crucial, vital, main'), +('肝炎', 'カンエン', 'hepatitis'), +('肺肝', 'ハイカン', 'lungs and livers, depths of one''s heart, innermost heart'), +('脂肪肝', 'シボウカン', 'fatty liver'), +('管轄', 'カンカツ', 'jurisdiction, control'), +('所轄', 'ショカツ', 'jurisdiction'), +('褐', 'カチ', 'dark indigo (almost black), coarse cloth'), +('褐色', 'カチイロ', 'dark indigo (almost black)'), +('顎', 'アゴ', 'jaw, chin, barb (of a fishhook)'), +('顎関節', 'ガクカンセツ', 'jaw joint, temporomandibular joint, TMJ'), +('上顎', 'ウワアゴ', 'upper jaw, palate'), +('下顎', 'シタアゴ', 'lower jaw, mandible'), +('掛留', 'ケイリュウ', 'music suspension'), +('滑落', 'カツラク', 'slipping down, avalanche'), +('滑液', 'カツエキ', 'synovial fluid'), +('平滑', 'ヘイカツ', 'smooth, even, level, flat'), +('粘滑', 'ネンカツ', 'mucilaginous, demulcent'), +('陥落', 'カンラク', 'subsidence, sinking, cave-in, collapse, falling in, fall (of a city, fortress, etc.), surrender, fall (in position, rank, etc.), demotion, giving in (to someone''s persuasion), yielding, being convinced'), +('陥没', 'カンボツ', 'cave-in, collapse, sinking, depression (e.g. of the skull), subsidence'), +('擠陥', 'セイカン', 'tempting into crime'), +('注意欠陥', 'チュウイケッカン', 'attention deficit'), +('括約筋', 'カツヤクキン', 'sphincter, sphincter muscle, constrictor'), +('一括', 'イッカツ', 'lumping together, summing up, bundle, lump, batch'), +('包括', 'ホウカツ', 'inclusion, complete coverage, comprehensiveness'), +('缶', 'カン', 'can, tin, canned food'), +('缶詰', 'カンヅメ', 'canned food, tinned food, confining someone (e.g. so they can concentrate on work), being stuck in a confined space'), +('薬缶', 'ヤカン', 'kettle'), +('ドラム缶', 'ドラムカン', 'drum (e.g. oil, gasoline), metal barrel'), +('乾電池', 'カンデンチ', 'dry cell, battery'), +('乾燥', 'カンソウ', 'dryness, aridity, drying (e.g. clothes), dehydration, desiccation, insipidity'), +('速乾', 'ソッカン', 'drying quickly'), +('臘乾', 'ラカン', 'Chinese smoked and salted ham'), +('乾', 'ケン', 'qian (one of the trigrams of the I Ching: heaven, northwest)'), +('乾坤一擲', 'ケンコンイッテキ', 'stake all (on something), play for all or nothing, throwing all into a task'), +('貫', 'カン', 'kan (obs. unit of weight, approx. 3.75 kg, 8.3 lb), kan (obs. unit of currency, equiv. to 1000 mon in the Edo period; col. 10 mon in the Meiji period), counter for pieces of sushi, 10 points, 12 points'), +('貫禄', 'カンロク', 'presence, dignity'), +('終始一貫', 'シュウシイッカン', 'consistently, unchangingly, throughout'), +('縦貫', 'ジュウカン', 'running through, traversal'), +('勘', 'カン', 'perception, intuition, the sixth sense'), +('考える', 'カンガエル', 'to think (about, of), to think over, to ponder, to contemplate, to reflect (on), to meditate (on), to consider, to bear in mind, to allow for, to take into consideration, to think (that), to believe, to hold (a view), to judge, to conclude, to suspect, to intend (to do), to think of (doing), to plan, to predict, to anticipate, to expect, to imagine, to come up with, to think up, to contrive, to devise, to consider (as), to regard (as), to look on (as), to take, to view'), +('勅勘', 'チョッカン', 'the emperor''s censure'), +('山勘', 'ヤマカン', 'guesswork, speculation, hunch'), +('喚問', 'カンモン', 'summons'), +('喚起', 'カンキ', 'arousal, excitation, awakening, evocation'), +('召喚', 'ショウカン', 'summons, summonsing, citation, subpoena, arraigning, calling, summoning'), +('叫喚', 'キョウカン', 'shout, scream'), +('換算', 'カンサン', 'conversion (e.g. yen to dollars), change, exchange, translation (numerical)'), +('換気', 'カンキ', 'ventilation'), +('交換', 'コウカン', 'exchange, interchange, switching, reciprocity, barter, substitution, replacement, clearing (of checks, cheques)'), +('転換', 'テンカン', 'conversion, diversion, changeover, commutation, switchover'), +('患者', 'カンジャ', 'patient'), +('患部', 'カンブ', 'affected part, diseased part, wound'), +('疾患', 'シッカン', 'disease, ailment, illness'), +('病患', 'ビョウカン', 'sickness, disease'), +('堪忍袋の緒が切れる', 'カンニンブクロノオガキレル', 'to be out of patience, to be unable to put up with something anymore'), +('堪忍袋', 'カンニンブクロ', 'one''s store of patience'), +('不堪', 'フカン', 'incompetence'), +('堪能', 'タンノウ', 'proficient, skillful, enjoying, satisfaction, satiation, having one''s fill (of)'), +('堪航能力', 'タンコウノウリョク', 'seaworthiness'), +('款', 'カン', 'title, heading, article, benevolence, friendly feeling'), +('歓待', 'カンタイ', 'warm welcome, friendly reception, hospitality, entertainment'), +('約款', 'ヤッカン', 'agreement, stipulation, article, clause'), +('交歓', 'コウカン', 'exchange of courtesies (cordialities), fraternization, fraternisation'), +('敢闘', 'カントウ', 'fighting bravely'), +('敢行', 'カンコウ', 'decisive action, going through with, daring to do, carrying out'), +('勇猛果敢', 'ユウモウカカン', 'daring and resolute, having dauntless courage'), +('迅速果敢', 'ジンソクカカン', 'quick and decisive, fast and daring, swift and resolute'), +('閑', 'カン', 'spare time, free time, leisure'), +('閑散', 'カンサン', 'deserted (esp. store, market, town, streets), quiet, still, hushed, empty, inactive (business, trade, etc.), slack, flat, off-season, quiet, dull, idle, free, unoccupied'), +('清閑', 'セイカン', 'peaceful, quiet, tranquility, tranquillity'), +('休閑', 'キュウカン', 'fallowing'), +('勧奨', 'カンショウ', 'encouragement, stimulation'), +('勧告', 'カンコク', 'advice, counsel, remonstrance, recommendation'), +('棺', 'カン', 'coffin, casket'), +('棺桶', 'カンオケ', 'coffin, casket'), +('石棺', 'セッカン', 'sarcophagus, stone coffin'), +('納棺', 'ノウカン', 'placing of body in coffin'), +('寛', 'カン', 'lenient, gentle'), +('寛容', 'カンヨウ', 'tolerance, open-mindedness, forbearance, generosity, magnanimity'), +('長寛', 'チョウカン', 'Chōkan era (1163.3.29-1165.6.5)'), +('寛緩', 'カンカン', 'looking cool and collect, with an air of perfect composure'), +('歓', 'カン', 'joy, enjoyment, delight, pleasure'), +('歓迎', 'カンゲイ', 'welcome, reception'), +('哀歓', 'アイカン', 'joys and sorrows, happiness and sadness'), +('交歓', 'コウカン', 'exchange of courtesies (cordialities), fraternization, fraternisation'), +('監督', 'カントク', 'supervision, control, superintendence, direction, director, superintendent, supervisor, coach, foreman, manager, overseer, controller, boss'), +('監視', 'カンシ', 'monitoring, watching, observation, surveillance, guarding, supervision, lookout'), +('総監', 'ソウカン', 'inspector general, commissioner'), +('収監', 'シュウカン', 'imprisonment'), +('緩和', 'カンワ', 'relief, mitigation, alleviation, relaxation (of restrictions, tensions, etc.), easing, softening'), +('緩急', 'カンキュウ', 'pace, tempo, slow and fast, in case of emergency'), +('弛緩', 'シカン', 'relaxation (e.g. of muscles), becoming flaccid'), +('軍紀弛緩', 'グンキチカン', 'lack of (slackness in) military discipline, demoralization'), +('還元', 'カンゲン', 'restoration, return, reduction, resolution, deoxidization, deoxidation'), +('還暦', 'カンレキ', 'kanreki, one''s 60th birthday (or 61st in the traditional age reckoning system) when one has lived through a full sexagenary cycle'), +('償還', 'ショウカン', 'repayment, redemption, amortization, amortisation'), +('生還', 'セイカン', 'returning alive, surviving, reaching the home plate'), +('環', 'カン', 'ring, band, rim, ring, circum-'), +('環境', 'カンキョウ', 'environment, circumstance'), +('循環', 'ジュンカン', 'circulation, rotation, cycle, loop'), +('円環', 'エンカン', 'circle, ring, torus'), +('漢方薬', 'カンポウヤク', 'Chinese herbal medicine'), +('韓国', 'カンコク', 'South Korea, Republic of Korea, Korean Empire (1897-1910)'), +('日韓', 'ニッカン', 'Japan and South Korea, Japanese-Korean'), +('在韓', 'ザイカン', 'resident in South Korea, situated in South Korea'), +('艦', 'カン', 'warship'), +('艦船', 'カンセン', 'warships and other vessels, naval vessels'), +('駆逐艦', 'クチクカン', 'destroyer (ship)'), +('巡洋艦', 'ジュンヨウカン', 'cruiser'), +('鑑賞', 'カンショウ', 'appreciation (of art, music, poetry, etc.)'), +('監査', 'カンサ', 'inspection, audit, judgement, judgment'), +('印鑑', 'インカン', 'stamp, seal'), +('名鑑', 'メイカン', 'directory, list'), +('含有量', 'ガンユウリョウ', 'content (of a mineral, etc.)'), +('含嗽', 'ガンソウ', 'gargling, rinsing one''s mouth'), +('包含', 'ホウガン', 'inclusion, comprehension, implication, containing, covering'), +('内含', 'ナイガン', 'containing within (it), inclusion, (material) implication, material conditional'), +('玩具', 'オモチャ', 'toy, (person or thing treated as a) plaything'), +('おもちゃ屋', 'オモチャヤ', 'toy shop'), +('賞玩', 'ショウガン', 'appreciation, admiration, enjoyment'), +('食玩', 'ショクガン', 'small toy included with food'), +('企業', 'キギョウ', 'enterprise, business, company, corporation'), +('企画', 'キカク', 'planning, plan, project, arrangements'), +('投企', 'トウキ', 'projection, project, philosophical concept introduced by Heidegger (Entwurf)'), +('発起', 'ホッキ', 'originating (something), coming up with the idea, starting (something), initiating, proposing, spiritual awakening, resolution'), +('忌', 'キ', 'mourning, mourning period, anniversary of one''s death'), +('忌憚のない', 'キタンノナイ', 'unrestrained, unreserved, candid, frank'), +('回忌', 'カイキ', 'death anniversary'), +('七回忌', 'シチカイキ', 'sixth anniversary of a death'), +('奇', 'キ', 'strange, unconventional, eccentric, novel, odd, odd number'), +('綺麗', 'キレイ', 'pretty, lovely, beautiful, fair, clean, clear, pure, tidy, neat, completely, entirely'), +('物好き', 'モノズキ', '(idle) curiosity, fancifulness, whimsy, (having) strange tastes'), +('怪奇', 'カイキ', 'bizarre, strange, weird, mysterious, grotesque'), +('技', 'ワザ', 'technique, art, skill, move'), +('技能', 'ギノウ', 'technical skill, ability, capacity'), +('雑技', 'ザツギ', 'performing arts, acrobatics'), +('歌舞伎', 'カブキ', 'kabuki, traditional form of drama and music performed by male actors wearing makeup mainly in white and red'), +('地歌舞伎', 'ジカブキ', 'amateur kabuki performed at local festivals'), +('軌', 'キ', 'rut, wheel track, distance between two wheels, gauge'), +('軌道', 'キドウ', 'orbit, trajectory, railroad track, (right) track, proper course'), +('広軌', 'コウキ', 'broad gauge'), +('狭軌', 'キョウキ', 'narrow gauge'), +('頑固', 'ガンコ', 'stubborn, obstinate, pigheaded'), +('頑丈', 'ガンジョウ', 'solid, firm, stout, burly, strong, sturdy'), +('祈祷', 'キトウ', 'prayer, grace (at meals), exorcism'), +('祈願', 'キガン', 'prayer (for something), supplication'), +('畿内', 'キナイ', 'Kinai (the five provinces in the immediate vicinity of Kyoto)'), +('京畿', 'ケイキ', 'territories in the vicinity of Kyoto, territories in the vicinity of the imperial palace'), +('五畿', 'ゴキ', 'the Five Home Provinces (Yamato, Yamashiro, Settsu, Kawachi, and Izumi)'), +('棄権', 'キケン', 'abstention (from voting), renunciation (of a right), withdrawal (from a contest)'), +('棄却', 'キキャク', 'rejection, dismissal, turning down, abandoning, renunciation'), +('破棄', 'ハキ', 'tearing up and discarding (e.g. documents), disposal (e.g. weaponry), destruction, annulment, cancellation, abrogation, voiding, breaking (e.g. treaty), reversal (of an original ruling)'), +('廃棄', 'ハイキ', 'disposal, abandonment, scrapping, discarding, abolition, annulment, cancellation, abrogation, repeal'), +('飢饉', 'キキン', 'famine, crop failure, chronic shortage (e.g. of water)'), +('飢餓', 'キガ', 'starvation, famine, hunger'), +('棋士', 'キシ', 'professional shogi player, professional go player'), +('棋譜', 'キフ', 'record of a game of go, shogi, chess, etc.'), +('毀損', 'キソン', 'damage, injury, defamation, harm'), +('毀壊', 'キカイ', 'breaking, demolishing, smashing, destroying, wrecking, being broken, being ruined, being destroyed, being worn out'), +('破棄', 'ハキ', 'tearing up and discarding (e.g. documents), disposal (e.g. weaponry), destruction, annulment, cancellation, abrogation, voiding, breaking (e.g. treaty), reversal (of an original ruling)'), +('焼毀', 'ショウキ', 'completely destroying by fire'), +('輝度', 'キド', 'brightness, luminance'), +('輝安鉱', 'キアンコウ', 'stibnite (mineral), antimonite'), +('光輝', 'コウキ', 'brightness, splendour, splendor'), +('輝々', 'キキ', 'brilliant (of light), shining'), +('擬', 'ギ', 'pseudo-, quasi-'), +('擬声語', 'ギセイゴ', 'onomatope (i.e. word formed by onomatopoeia)'), +('冗談', 'ジョウダン', 'joke, jest, funny story'), +('戯曲', 'ギキョク', 'drama, play, Chinese opera'), +('球技', 'キュウギ', 'ball game (e.g. baseball, tennis, soccer), billiards'), +('遊戯', 'ユウギ', 'game, play, sports'), +('冗談', 'ジョウダン', 'joke, jest, funny story'), +('戯作', 'ゲサク', 'cheap literature, writing for amusement, light literature popular in the late Edo period'), +('儀', 'ギ', 'ceremony, matter, affair, with regard to, as for, as concerns'), +('儀式', 'ギシキ', 'ceremony, rite, ritual, service'), +('お辞儀', 'オジギ', 'bow, bowing'), +('難儀', 'ナンギ', 'troublesome (person, task, etc.), difficult, suffering, hardship, trouble, affliction, difficulty'), +('欺瞞', 'ギマン', 'deception, deceit'), +('欺詐', 'ギサ', 'fraud, fraudulence, dupery, hoax'), +('詐欺', 'サギ', 'fraud, swindle, graft, cheating, trick, scam, saying you''re going to do something but in the end not doing it, making promises without keeping them'), +('ナイジェリア詐欺', 'ナイジェリアサギ', 'Nigerian fraud, 419 fraud'), +('鬼', 'オニ', 'ogre, demon, oni, spirit of a deceased person, ogre-like person (i.e. fierce, relentless, merciless, etc.), it (in a game of tag, hide-and-seek, etc.), Chinese "ghost" constellation (one of the 28 mansions), very, extremely, super-'), +('鬼神', 'キシン', 'fierce god'), +('債鬼', 'サイキ', 'cruel creditor, bill collector'), +('窮鬼', 'キュウキ', 'god of poverty, vengeful spirit'), +('幾何学', 'キカガク', 'geometry'), +('幾何', 'キカ', 'geometry'), +('庶幾', 'ショキ', 'desire, hope'), +('丁幾', 'チンキ', 'tincture'), +('宜陽殿', 'ギヨウデン', 'pavilion housing imperial treasures and historical artifacts (in Heian Palace)'), +('時宜', 'ジギ', 'right time, appropriate time, season''s greetings'), +('友誼', 'ユウギ', 'friendship, friendly relations, fellowship'), +('既婚', 'キコン', 'married'), +('既成事実', 'キセイジジツ', 'established fact, fait accompli'), +('皆既', 'カイキ', 'total eclipse, totality'), +('亀裂', 'キレツ', 'crack, crevice, fissure, chap, rift'), +('亀甲', 'キッコウ', 'tortoise shell'), +('霊亀', 'レイキ', 'mysterious turtle (an omen of good luck), Reiki era (715.9.2-717.11.17)'), +('宝亀', 'ホウキ', 'Hōki era (770.10.1-781.1.1)'), +('偽', 'ギ', 'falseness (logic), falsehood'), +('偽造', 'ギゾウ', 'forgery, counterfeiting, fabrication, falsification'), +('真偽', 'シンギ', 'truth or falsehood, genuineness, authenticity, veracity'), +('詐偽', 'サギ', 'lie, untruth, prevarication'), +('騎', 'キ', 'counter for horsemen'), +('騎士', 'キシ', 'samurai on horseback, (medieval) knight'), +('一騎', 'イッキ', 'one horseman'), +('顔騎', 'ガンキ', 'facesitting (sex act)'), +('菊', 'キク', 'chrysanthemum (Chrysanthemum morifolium)'), +('菊花', 'キッカ', 'chrysanthemum flower'), +('一菊', 'イッキク', 'one scoop (of water)'), +('斧琴菊', 'ヨキコトキク', 'dyeing pattern with a yoki, koto bridge and a chrysanthemum'), +('虐待', 'ギャクタイ', 'abuse, ill-treatment, maltreatment, mistreatment, cruelty'), +('虐殺', 'ギャクサツ', 'slaughter, massacre'), +('自虐', 'ジギャク', 'self-torture, masochism, inflicting damage to oneself'), +('凌虐', 'リョウギャク', 'humiliation, indignity, affront, assault'), +('喫煙', 'キツエン', 'smoking'), +('喫煙コーナー', 'キツエンコーナー', 'smoking corner'), +('満喫', 'マンキツ', 'having one''s fill (of food or drink), eating (drinking) to one''s heart''s content, enjoying to the full'), +('漫喫', 'マンキツ', 'manga cafe, coffee shop with a manga library (usu. has Internet facilities and charges by the hour)'), +('丘陵', 'キュウリョウ', 'hill'), +('丘疹', 'キュウシン', 'pimple, papule'), +('墳丘', 'フンキュウ', 'tumulus, grave mound'), +('砂丘', 'サキュウ', 'sand dune, sand hill'), +('窮屈', 'キュウクツ', 'narrow, tight, cramped, formal, stiff, strict, ceremonious, rigid, constrained, uncomfortable, tight (e.g. finances)'), +('究極', 'キュウキョク', 'ultimate, final, last, eventual'), +('追究', 'ツイキュウ', 'investigation (e.g. academically, of the unknown), close inquiry (enquiry)'), +('貧窮', 'ヒンキュウ', 'great poverty'), +('脚', 'キャク', 'counter for chairs or seats'), +('脚本', 'キャクホン', 'script, screenplay, scenario'), +('失脚', 'シッキャク', 'losing one''s position, losing one''s standing, downfall, fall (from power), being overthrown'), +('橋脚', 'キョウキャク', 'bridge pier, pontoon bridge'), +('脚', 'キャク', 'counter for chairs or seats'), +('脚本', 'キャクホン', 'script, screenplay, scenario'), +('脚病', 'カクビョウ', 'beriberi'), +('冷却', 'レイキャク', 'cooling, refrigeration'), +('売却', 'バイキャク', 'selling off, disposal by sale, sale'), +('巨大', 'キョダイ', 'huge, gigantic, enormous'), +('巨匠', 'キョショウ', 'master, masterhand, maestro'), +('朽壊', 'キュウカイ', 'rotting and crumbling'), +('朽廃', 'キュウハイ', 'decay, dilapidation (ruin)'), +('老朽', 'ロウキュウ', 'infirmity (due to old age), decrepitude, senility, senescence, superannuation'), +('若朽', 'ジャッキュウ', 'being young yet unambitious, being young but lacking spirit'), +('糾合', 'キュウゴウ', 'rally, muster'), +('糾弾', 'キュウダン', 'censure, denunciation, (verbal) attack, blaming'), +('紛糾', 'フンキュウ', 'complication, confusion, disorder'), +('吉', 'キチ', 'good fortune (esp. omikuji fortune-telling result), good luck, auspiciousness, unspecified day of the month (used to obscure the date a letter, invitation, etc. was written)'), +('吉祥天', 'キッショウテン', 'Sri-mahadevi (consort of Vaishravana)'), +('大吉', 'ダイキチ', 'excellent luck'), +('小吉', 'ショウキチ', 'slightly good luck (as a fortune telling result)'), +('吉', 'キチ', 'good fortune (esp. omikuji fortune-telling result), good luck, auspiciousness, unspecified day of the month (used to obscure the date a letter, invitation, etc. was written)'), +('吉事', 'キチジ', 'auspicious event'), +('嘉吉', 'カキツ', 'Kakitsu era (1441.2.17-1444.2.5)'), +('勿吉', 'モッキツ', 'Mohe (one of the Tungusic-speaking tribes)'), +('虚', 'キョ', 'unpreparedness, falsehood, Chinese "Emptiness" constellation (one of the 28 mansions)'), +('虚偽', 'キョギ', 'falsehood, untruth, lie, misinformation, fallacy (logic)'), +('盈虚', 'エイキョ', 'waxing and waning (of the moon), phase, rising and falling (of fortune)'), +('太虚', 'タイキョ', 'the sky, the universe, taixu (the great vacuity, in Chinese philosophy, the primordial substance that gives rise to qi)'), +('虚偽', 'キョギ', 'falsehood, untruth, lie, misinformation, fallacy (logic)'), +('虚空', 'コクウ', 'empty space, empty sky'), +('詰問', 'キツモン', 'cross-examination, close questioning, demanding an explanation'), +('難詰', 'ナンキツ', 'reprimand'), +('面詰', 'メンキツ', 'reprimanding (a person) personally, personal reproof'), +('嗅覚', 'キュウカク', 'sense of smell, olfaction'), +('嗅覚障害', 'キュウカクショウガイ', 'dysosmia'), +('距', 'キョ', 'tubular nectary, spur'), +('距離', 'キョリ', 'distance, range, interval, difference (e.g. in opinion), gap, distance'), +('緯距', 'イキョ', 'latitude'), +('経距', 'ケイキョ', 'departure (surveying, etc.)'), +('犠牲', 'ギセイ', 'sacrifice, victim, sacrifice (to a deity)'), +('犠牲者', 'ギセイシャ', 'victim'), +('供犠', 'クギ', 'sacrifice, sacrificial animal'), +('拒否', 'キョヒ', 'refusal, rejection, denial, veto'), +('拒絶', 'キョゼツ', 'refusal, rejection'), +('抗拒', 'コウキョ', 'resistance, opposition'), +('着拒', 'チャッキョ', 'blocking communications (from a phone number or an e-mail address)'), +('臼蓋', 'キュウガイ', 'acetabular roof'), +('臼蓋形成不全', 'キュウガイケイセイフゼン', 'acetabular dysplasia'), +('脱臼', 'ダッキュウ', 'dislocation'), +('亜脱臼', 'アダッキュウ', 'subluxation'), +('凶', 'キョウ', 'bad luck, bad fortune, evil, wickedness'), +('凶悪', 'キョウアク', 'atrocious, fiendish, brutal, villainous'), +('元凶', 'ゲンキョウ', 'ringleader, main culprit, main cause, source'), +('大凶', 'ダイキョウ', 'terrible luck, very bad luck'), +('及第', 'キュウダイ', 'passing (an examination), making the grade'), +('及第点', 'キュウダイテン', 'passing mark'), +('普及', 'フキュウ', 'diffusion, spread, popularization, promulgation, familiarization'), +('言及', 'ゲンキュウ', 'reference, allusion'), +('御', 'ギョ', 'honorific affix, honorific prefix'), +('御苑', 'ギョエン', 'imperial garden'), +('防御', 'ボウギョ', 'defense, defence, safeguard, protection'), +('制御', 'セイギョ', 'control (of a machine, device, etc.), control (over an opponent, one''s emotions, etc.), governing, management, suppression, keeping in check'), +('御', 'ゴ', 'honorific/polite/humble prefix, honorific suffix'), +('ご飯', 'ゴハン', 'cooked rice, meal'), +('甥御', 'オイゴ', '(another person''s) nephew'), +('大御', 'オオイゴ', 'older lady'), +('叫喚', 'キョウカン', 'shout, scream'), +('叫号', 'キョウゴウ', 'crying aloud'), +('絶叫', 'ゼッキョウ', 'scream, shriek, shout, exclamation'), +('哀叫', 'アイキョウ', 'crying loudly with sadness'), +('拠点', 'キョテン', 'position, location, base, point, site'), +('拠出', 'キョシュツ', 'donation, contribution'), +('根拠', 'コンキョ', 'basis, grounds, foundation, reason, authority, base (of operations)'), +('占拠', 'センキョ', 'occupation (e.g. of territory), exclusive possession'), +('有罪証拠', 'ユウザイショウコ', 'corpus delicti'), +('事例証拠', 'ジレイショウコ', 'anecdotal evidence'), +('状況', 'ジョウキョウ', 'state of affairs, situation, conditions, circumstances'), +('市況', 'シキョウ', 'market conditions'), +('峡谷', 'キョウコク', 'gorge, ravine, canyon, glen'), +('峡間', 'キョウカン', 'between the mountains'), +('国際海峡', 'コクサイカイキョウ', 'international strait'), +('イギリス海峡', 'イギリスカイキョウ', 'English Channel'), +('享受', 'キョウジュ', 'reception, acceptance, enjoyment, being given'), +('享有', 'キョウユウ', 'possession, enjoyment'), +('永享', 'エイキョウ', 'Eikyō era (1429.9.5-1441.2.17)'), +('貞享', 'ジョウキョウ', 'Jōkyō era (1684.2.21-1688.9.30)'), +('恐怖', 'キョウフ', 'fear, dread, dismay, terror, horror, scare, panic'), +('恐縮', 'キョウシュク', 'feeling obliged, being grateful, being thankful, being sorry, being ashamed, shrinking back in fear'), +('戦々恐々', 'センセンキョウキョウ', 'trembling with fear, filled with trepidation'), +('最恐', 'サイキョウ', 'scariest, most frightening'), +('狭心症', 'キョウシンショウ', 'heart attack, angina pectoris'), +('狭窄', 'キョウサク', 'contraction, narrowing, stricture, stenosis'), +('偏狭', 'ヘンキョウ', 'narrow-mindedness, intolerance, illiberality, narrowness'), +('広狭', 'コウキョウ', 'width, width and narrowness'), +('挟撃', 'キョウゲキ', 'attack on both sides, pincer movement, double envelopment'), +('挟殺', 'キョウサツ', 'rundown'), +('狂', 'キョウ', '(some type of) enthusiast, someone possessed of a (certain kind of) mental abnormality'), +('狂気', 'キョウキ', 'madness, insanity'), +('熱狂', 'ネッキョウ', 'wild enthusiasm, being crazy about'), +('発狂', 'ハッキョウ', 'madness, craziness, insanity'), +('脅迫', 'キョウハク', 'threat, menace, coercion, blackmail'), +('脅威', 'キョウイ', 'threat, menace'), +('威脅', 'イキョウ', 'threat, menace'), +('矯正', 'キョウセイ', 'correction (of fault, defect, flaw, etc.), remedy, rectification, redress, reform'), +('矯角殺牛', 'キョウカクサツギュウ', 'trying to straighten the horns of a bull, and killing it in the process, trying to correct a small defect and ruining the whole thing, the cure is worse than the disease'), +('奇矯', 'キキョウ', 'eccentric'), +('驚異', 'キョウイ', 'wonder, miracle, amazement, prodigy'), +('驚愕', 'キョウガク', 'astonishment, amazement, surprise, fright, shock'), +('一驚', 'イッキョウ', 'surprise, amazement'), +('吃驚', 'キッキョウ', 'surprise'), +('響岩', 'キョウガン', 'phonolite, clinkstone'), +('響笛', 'キョウテキ', 'vibrating pipe'), +('影響', 'エイキョウ', 'influence, effect, impact'), +('反響', 'ハンキョウ', 'echo, reverberation, response, reaction, repercussions, sensation, influence'), +('恐悦', 'キョウエツ', 'delight'), +('恭賀', 'キョウガ', 'respectful congratulations'), +('允恭', 'インキョウ', 'courtesy, sincerity'), +('暁星', 'ギョウセイ', 'morning star, Venus, rarity'), +('暁鴉', 'ギョウア', 'crow cawing in the morning, crows crying in the morning'), +('早暁', 'ソウギョウ', 'daybreak, dawn'), +('通暁', 'ツウギョウ', 'well versed, thorough knowledge'), +('寒暁', 'カンギョウ', 'cold winter dawn'), +('菌', 'キン', 'fungus, germ, bacterium, bacillus'), +('菌類', 'キンルイ', 'fungus, fungi'), +('殺菌', 'サッキン', 'sterilization, sterilisation, disinfection'), +('ばい菌', 'バイキン', 'germ, germs, bacteria, bug, something dirty or harmful, vermin'), +('斤', 'キン', 'kin, catty, traditional unit of weight, 600g, pound (unit of weight), loaf (of bread)'), +('斤量', 'キンリョウ', 'weight'), +('英斤', 'エイキン', 'pound (unit of weight)'), +('一斤', 'イッキン', '1 kin (approx. 0.6 kg), 1 loaf of bread'), +('仰々しい', 'ギョウギョウシイ', 'exaggerated, bombastic, highly colored, highly coloured'), +('仰天', 'ギョウテン', 'being amazed, being horrified, being taken aback'), +('大仰', 'オオギョウ', 'exaggerated, overblown, pretentious'), +('景仰', 'ケイコウ', 'adoration, admiration, reverence'), +('信仰', 'シンコウ', '(religious) faith, belief, creed'), +('景仰', 'ケイコウ', 'adoration, admiration, reverence'), +('凝視', 'ギョウシ', 'stare, gaze, fixation'), +('凝固', 'ギョウコ', 'coagulation, freezing, solidification'), +('巾', 'キン', 'napkin, cloth'), +('巾単', 'キンタン', 'unipotent'), +('頭巾', 'ズキン', 'headgear (esp. one made of cloth), hood, kerchief, cap, skullcap, hat, tokin (headgear worn by yamabushi)'), +('三角巾', 'サンカクキン', 'triangular bandage, sling, triangular kerchief, bandana, bandanna'), +('琴', 'キン', 'qin (7-stringed Chinese zither), guqin'), +('琴曲', 'キンキョク', 'koto music'), +('奚琴', 'ケイキン', 'xiqin (2-stringed Chinese musical instrument)'), +('携琴', 'ケイキン', 'sihu (4-stringed Chinese musical instrument played with a bow)'), +('和琴', 'ワゴン', 'wagon, yamatogoto, six-stringed native Japanese zither'), +('僅々', 'キンキン', 'only, just, merely, no more than'), +('僅差', 'キンサ', 'narrow margin, slim margin'), +('僅々', 'キンキン', 'only, just, merely, no more than'), +('緊張', 'キンチョウ', 'tension, strain, nervousness, stress, tensions (between countries, groups, etc.), tonus, muscle tone'), +('緊急', 'キンキュウ', 'urgency, emergency'), +('喫緊', 'キッキン', 'urgent, pressing, exigent'), +('採掘', 'サイクツ', 'mining'), +('試掘', 'シクツ', 'prospecting, trial digging'), +('繰糸', 'ソウシ', 'reeling (silk)'), +('繰糸機', 'ソウシキ', 'silk reeling machine'), +('勲', 'クン', 'merit (esp. order of merit)'), +('勲章', 'クンショウ', 'decoration, order, medal'), +('叙勲', 'ジョクン', 'conferring of decorations'), +('殊勲', 'シュクン', 'distinguished services, meritorious deeds'), +('窟院', 'クツイン', 'cave temple'), +('巣窟', 'ソウクツ', 'den, haunt, hangout, nest, lair'), +('宝窟', 'ホウクツ', 'treasure mine'), +('駆使', 'クシ', 'using freely, making full use of, having a good command of, working (someone) hard, driving (someone) on'), +('駆除', 'クジョ', 'extermination (esp. pests), expulsion, destruction'), +('先駆', 'センク', 'forerunner, precursor, pioneer, leader, outrider, outriding'), +('疾駆', 'シック', 'riding fast, driving a horse fast'), +('偶', 'グウ', 'even number, even, spouse, mate'), +('偶然', 'グウゼン', 'coincidence, chance, accident, fortuity, by chance, unexpectedly, accidentally, contingency'), +('土偶', 'ドグウ', 'earthen figure, clay figure, dogū, clay figurines from the late Jōmon period'), +('配偶', 'ハイグウ', 'combination, spouse, husband or wife, partner, married couple, husband and wife'), +('襟懐', 'キンカイ', '(one''s) inner thoughts, feelings'), +('襟度', 'キンド', 'magnanimity, generosity, welcoming personality'), +('胸襟', 'キョウキン', 'one''s heart'), +('開襟', 'カイキン', 'unbuttoning a collar, opening up (one''s heart), open-necked shirt'), +('謹慎', 'キンシン', 'self restraint, moderating one''s behaviour, penitence, discipline, confinement to one''s home, house arrest'), +('謹賀新年', 'キンガシンネン', 'Happy New Year'), +('細謹', 'サイキン', 'slight flaw'), +('一隅', 'イチグウ', 'corner, nook'), +('四隅', 'ヨスミ', 'four corners, four ordinal directions'), +('薫', 'クン', 'pleasant smell, aroma, fragrance, scent, pleasant-smelling vegetation'), +('燻蒸', 'クンジョウ', 'fumigation, smoking (out)'), +('余薫', 'ヨクン', 'lingering odor, lingering odour'), +('茎頂', 'ケイチョウ', 'tip of a stem (of a plant)'), +('茎葉', 'ケイヨウ', 'stems and leaves'), +('塊茎', 'カイケイ', 'tuber'), +('包茎', 'ホウケイ', 'phimosis'), +('包茎', 'ホウケイ', 'phimosis'), +('陰茎', 'インケイ', 'penis'), +('吟', 'ギン', 'recitation (of a poem), chanting, singing, composition (of a poem), composed poem, classical Chinese poetry form, stress of sound in noh song'), +('吟味', 'ギンミ', 'close examination, careful investigation, close inspection, careful selection, inquiry, enquiry, scrutiny, testing, investigation of a crime, inquiry into someone''s guilt, winner (of the most rounds, i.e. a full game), reciting and appreciating traditional poetry'), +('愛吟', 'アイギン', 'love of reciting or singing favourite poems or songs'), +('詠吟', 'エイギン', 'reciting poetry'), +('遇す', 'グウス', 'to entertain, to treat'), +('遇する', 'グウスル', 'to entertain, to treat'), +('最優遇', 'サイユウグウ', 'most favourable treatment, most favorable treatment, very warm reception'), +('優遇', 'ユウグウ', 'favorable treatment, favourable treatment, hospitality, warm reception, good treatment, hearty welcome'), +('刑', 'ケイ', 'penalty, sentence, punishment'), +('刑事', 'ケイジ', '(police) detective, criminal matter'), +('処刑', 'ショケイ', 'execution'), +('量刑', 'リョウケイ', 'judge''s sentence, assessment of a case'), +('疑懼', 'ギク', 'apprehension, uneasiness'), +('危惧', 'キグ', 'apprehensions, misgivings, uneasiness, anxiety, fear'), +('絶滅危惧', 'ゼツメツキグ', 'threatened (species), endangered'), +('屈辱', 'クツジョク', 'disgrace, humiliation'), +('屈従', 'クツジュウ', 'servile submission, subservience'), +('背屈', 'ハイクツ', 'dorsiflexion, dorsal flexion'), +('後屈', 'コウクツ', 'retroflexion'), +('契約', 'ケイヤク', 'contract, compact, agreement'), +('契機', 'ケイキ', 'opportunity, chance, trigger, cause'), +('幽契', 'ユウケイ', 'secret promise made to the gods'), +('黙契', 'モッケイ', 'implicit agreement, tacit understanding'), +('愚', 'グ', 'foolishness, silliness, stupidity, folly, I, me'), +('愚痴', 'グチ', 'idle complaint, grumble, moha (ignorance, folly)'), +('軽愚', 'ケイグ', 'moronity, moron'), +('大愚', 'タイグ', 'great folly or fool'), +('恵雨', 'ケイウ', 'welcome rain'), +('恵存', 'ケイソン', 'message appended to a note accompanying a gift, requesting the recipient to keep the gift at hand'), +('互恵', 'ゴケイ', 'reciprocity, mutual benefit'), +('慈恵', 'ジケイ', 'mercy and love'), +('恵', 'エ', 'wisdom, enlightenment, prajñā (one of the three divisions of the noble eightfold path), wisdom'), +('恵比寿', 'エビス', 'Ebisu, god of fishing and commerce'), +('悪知恵', 'ワルヂエ', 'craft, cunning, guile, serpentine wisdom'), +('付け知恵', 'ツケヂエ', 'hint, suggestion'), +('啓発', 'ケイハツ', 'enlightenment, development, edification, public awareness, illumination, education, inspiration'), +('啓蒙', 'ケイモウ', 'enlightenment, instruction'), +('拝啓', 'ハイケイ', 'Dear (so and so), Dear Sir, Dear Madam, To Whom It May Concern'), +('敬啓', 'ケイケイ', 'salutation at the end of a formal letter'), +('錦華鳥', 'キンカチョウ', 'zebra finch (Taeniopygia guttata)'), +('錦旗', 'キンキ', 'pennant, gold-brocade flag'), +('蜀錦', 'ショッキン', 'type of brocade'), +('蛍光灯', 'ケイコウトウ', 'fluorescent lamp, fluorescent light, person who is slow to react, someone slow on the uptake'), +('蛍光', 'ケイコウ', 'fluorescence'), +('渓谷', 'ケイコク', 'valley (with a river running through it), gorge, ravine, canyon'), +('渓流', 'ケイリュウ', 'mountain stream, mountain torrent'), +('雪渓', 'セッケイ', 'snowy valley'), +('猊鼻渓', 'ゲイビケイ', 'Geibi Gorge (Ichinoseki, Iwate)'), +('傾向', 'ケイコウ', 'tendency, trend, inclination'), +('傾斜', 'ケイシャ', 'inclination, slant, slope, bevel, list, dip, tilt, lean'), +('前傾', 'ゼンケイ', 'forward inclination (of the body), bending forward, anteversion'), +('右傾', 'ウケイ', 'leaning to the right, leaning to the (political) right, rightist tendency, becoming right-wing'), +('継続', 'ケイゾク', 'continuation, continuance, going on'), +('継承', 'ケイショウ', 'inheritance, succession, accession, share-alike'), +('生中継', 'ナマチュウケイ', 'live broadcast (radio, TV), live coverage'), +('後継', 'コウケイ', 'succession, successor'), +('掲示板', 'ケイジバン', 'bulletin board, display board, notice board, electronic bulletin board, BBS'), +('掲示', 'ケイジ', 'notice, bulletin, post, posting, placard'), +('再掲', 'サイケイ', 'redisplaying, republishing, reproduction, reprint, repost'), +('上掲', 'ジョウケイ', 'the above-mentioned'), +('慶事', 'ケイジ', 'happy event, auspicious event, matter for congratulation'), +('慶祝', 'ケイシュク', 'congratulation, celebration'), +('弁慶', 'ベンケイ', 'strong person, person putting on a brave front, bamboo tube with holes drilled in it (used as a stand for kitchen utensils, fans, etc.), checks, plaid, checked pattern'), +('大慶', 'タイケイ', 'great joy'), +('携帯', 'ケイタイ', 'carrying (on one''s person or in the hand), mobile phone, cell phone'), +('携帯電話', 'ケイタイデンワ', 'mobile telephone, cellular telephone'), +('提携', 'テイケイ', 'cooperation, tie-up, joint business, partnership, alliance, sponsorship'), +('連携', 'レンケイ', 'cooperation, coordination, link'), +('稽古', 'ケイコ', 'practice, practising, training, study'), +('稽古場', 'ケイコバ', 'training room (hall), gymnasium'), +('無稽', 'ムケイ', 'unsupported, unfounded, nonsense'), +('憧憬', 'ドウケイ', 'longing, yearning, aspiration, adoration'), +('参詣', 'サンケイ', 'visit to a temple or shrine, worship, pilgrimage'), +('造詣', 'ゾウケイ', 'deep knowledge, attainments, scholarship'), +('献血', 'ケンケツ', 'blood donation'), +('献金', 'ケンキン', 'donation, contribution, offering'), +('貢献', 'コウケン', 'contribution (furthering a goal or cause), services (to a cause)'), +('社会貢献', 'シャカイコウケン', 'contribution to society'), +('献立', 'コンダテ', 'menu, bill of fare, program, programme, schedule'), +('献立表', 'コンダテヒョウ', 'menu, list of meals (e.g. for the week)'), +('九献', 'クコン', 'three-times-three exchange of nuptial cups, sake (secret language of court ladies), rice wine'), +('一献', 'イッコン', 'one cup (of sake), (going out for, treating someone to) a drink, small drinking party'), +('鶏肉', 'トリニク', 'chicken meat, fowl, poultry, bird meat'), +('鶏卵', 'ケイラン', 'hen''s egg'), +('養鶏', 'ヨウケイ', 'poultry raising, poultry farming, chicken farming'), +('成鶏', 'セイケイ', 'adult chicken, mature fowl'), +('軒', 'ケン', 'counter for buildings (esp. houses), suffix for a pen name, stage name, etc.'), +('軒昂', 'ケンコウ', 'high-spirited, in high spirits'), +('一軒一軒', 'イッケンイッケン', 'house to house, door to door'), +('遣唐使', 'ケントウシ', 'envoy to Tang China'), +('遣欧', 'ケンオウ', 'dispatching to Europe (e.g. an envoy), sending to Europe'), +('先遣', 'センケン', 'sending ahead'), +('差遣', 'サケン', 'dispatch, despatch, sending'), +('嫌疑', 'ケンギ', 'suspicion'), +('嫌悪', 'ケンオ', 'disgust, hate, repugnance, loathing'), +('一杯機嫌', 'イッパイキゲン', 'tipsy, a little drunk, slightly intoxicated'), +('酒機嫌', 'サカキゲン', 'one''s mood when drinking alcohol'), +('堅', 'ケン', 'strength, solidity, firmness, armour, armor'), +('堅実', 'ケンジツ', 'steady, sound, reliable, solid'), +('中堅', 'チュウケン', 'nucleus, backbone, mainstay, key figure, medium-level, mid-level, middle-ranking, midsize, main body (of troops), crack troops, select troops, center field, centre field, center fielder, centre fielder, athlete competing in the middle-number match in a team competition, i.e. second in 3-on-3, third in 5-on-5 (kendo, judo, etc.)'), +('米利堅', 'メリケン', 'America, American, fist'), +('傑', 'ケツ', 'the top (e.g. top ten), the best'), +('傑物', 'ケツブツ', 'great man, heroic figure, remarkable character'), +('豪傑', 'ゴウケツ', 'hero, great man'), +('英傑', 'エイケツ', 'great man, hero, master mind'), +('賢', 'ケン', 'intelligence, genius, scholarship, virtue'), +('賢明', 'ケンメイ', 'wise, sensible, well-advised, intelligent, sagacious, prudent'), +('遺賢', 'イケン', 'able men left out of office'), +('聖賢', 'セイケン', 'saints and sages'), +('兼', 'ケン', 'cum (e.g. bedroom-cum-study), and (concurrently; e.g. chauffeur and secretary), in addition to, at the same time'), +('兼用', 'ケンヨウ', 'multi-use, combined use, combination, serving two purposes'), +('肩高', 'ケンコウ', 'withers (height from ground to shoulder blades in animals)'), +('肩甲骨', 'ケンコウコツ', 'shoulder blade, scapula'), +('比肩', 'ヒケン', 'ranking equal with, comparing favourably with, comparing favorably with'), +('強肩', 'キョウケン', 'strong throwing arm'), +('撃墜', 'ゲキツイ', 'shooting down (aircraft)'), +('撃退', 'ゲキタイ', 'repulse, repelling (e.g. the enemy), driving back'), +('攻撃', 'コウゲキ', 'attack, assault, raid, onslaught, offensive, criticism, censure, denunciation, condemnation'), +('襲撃', 'シュウゲキ', 'attack, charge, raid'), +('鯨肉', 'ゲイニク', 'whale meat'), +('鯨飲', 'ゲイイン', 'drinking hard, drinking like a fish'), +('白鯨', 'ハクゲイ', 'white whale, Moby Dick'), +('反捕鯨', 'ハンホゲイ', 'opposition to whaling, anti-whaling'), +('憩室', 'ケイシツ', 'diverticulum'), +('憩室炎', 'ケイシツエン', 'diverticulitis'), +('休憩', 'キュウケイ', 'rest, break, recess, intermission'), +('小休憩', 'ショウキュウケイ', 'short break, breather'), +('剣', 'ケン', 'sword (esp. a large, double-edged one), blade, bayonet, swordsmanship, stinger, ovipositor, dart'), +('剣道', 'ケンドウ', 'kendo, Japanese martial art using bamboo swords'), +('銃剣', 'ジュウケン', 'bayonet, guns and swords'), +('刀剣', 'トウケン', 'sword, dagger, knife, bayonet'), +('拳', 'ケン', 'hand game (e.g. rock-paper-scissors)'), +('拳銃', 'ケンジュウ', 'pistol, handgun, revolver'), +('じゃん拳', 'ジャンケン', 'rock-paper-scissors (game), janken'), +('形意拳', 'ケイイケン', 'shape-of-the-mind fist, Hsing I Chuan'), +('拳骨', 'ゲンコツ', '(clenched) fist, knuckles'), +('拳固', 'ゲンコ', 'fist'), +('倹', 'ケン', 'economizing, thriftiness, prudence, frugality'), +('倹約', 'ケンヤク', 'thrift, economy, frugality'), +('恭倹', 'キョウケン', 'respectfulness and modesty, deference'), +('節倹', 'セッケン', 'economy, thrift'), +('隙', 'スキ', 'gap, space, break, interlude, interval, chink (in one''s armor, armour), chance, opportunity, weak spot, breach (of a relationship between people)'), +('細隙', 'サイゲキ', 'slit, interstice, narrow aperture'), +('空隙', 'クウゲキ', 'vacant space, aperture, gap, opening'), +('迎撃', 'ゲイゲキ', 'intercept, interception, counter-attack'), +('迎合', 'ゲイゴウ', 'ingratiation, pandering, catering (to), going along with (someone or something), accommodating oneself (e.g. to public opinion)'), +('歓迎', 'カンゲイ', 'welcome, reception'), +('送迎', 'ソウゲイ', 'seeing off and meeting on return'), +('圏', 'ケン', 'sphere, circle, range, area, zone, bloc, category'), +('圏内', 'ケンナイ', '(being) within range (radio, commuting, etc.), (being) within the sphere (e.g. of influence)'), +('成層圏', 'セイソウケン', 'stratosphere'), +('勢力圏', 'セイリョクケン', 'sphere of influence'), +('鍵', 'ケン', 'key (of a piano, etc.)'), +('鍵盤', 'ケンバン', 'keyboard (piano, computer, etc.)'), +('打鍵', 'ダケン', 'keystroke'), +('黒鍵', 'コッケン', 'black key (on a piano, organ, etc.)'), +('絹糸', 'ケンシ', 'silk thread'), +('繭価', 'マユカ', 'price of a cocoon'), +('黄繭', 'コウケン', 'yellow cocoon'), +('収繭', 'シュウケン', 'cocoon crop'), +('幻想', 'ゲンソウ', 'fantasy, illusion, vision, dream'), +('幻覚', 'ゲンカク', 'hallucination, illusion'), +('変幻', 'ヘンゲン', 'transformation'), +('夢幻', 'ムゲン', 'dreams, fantasy, visions'), +('桁端', 'コウタン', 'yardarm'), +('衣桁', 'イコウ', 'clothes rack'), +('謙虚', 'ケンキョ', 'modest, humble'), +('謙遜', 'ケンソン', 'modesty, humility, being humble'), +('恭謙', 'キョウケン', 'modesty, humility'), +('顕', 'ケン', 'exposure, clarity, exoteric Buddhism, public Buddhist teachings'), +('顕微鏡', 'ケンビキョウ', 'microscope'), +('露見', 'ロケン', 'discovery (of a plot, misdeed, etc.), detection, exposure, disclosure'), +('貴顕', 'キケン', 'distinguished person'), +('懸命', 'ケンメイ', 'eager, earnest, strenuous, fervent, assiduous, with utmost effort'), +('懸垂', 'ケンスイ', 'pull-up (exercise), chin-up, chinning, suspension, dangling, hanging'), +('倒懸', 'トウケン', 'hanging (someone) upside down'), +('懸命', 'ケンメイ', 'eager, earnest, strenuous, fervent, assiduous, with utmost effort'), +('懸念', 'ケネン', 'worry, fear, anxiety, concern'), +('手掛け', 'テカケ', 'handle, mistress, kept woman, concubine'), +('首懸', 'コウガケ', 'leather strap put across a horse''s neck'), +('玄関', 'ゲンカン', 'entrance, front door, entryway, entranceway, entry hall, vestibule, porch, foyer, mud room'), +('玄米', 'ゲンマイ', 'unpolished rice, unmilled rice, brown rice'), +('幽玄', 'ユウゲン', 'mysterious profundity, quiet beauty, the subtle and profound, yūgen'), +('鼓舞', 'コブ', 'encouragement, inspiration, rousing, stirring up, raising (e.g. morale)'), +('鼓動', 'コドウ', 'beat, palpitation, pulsation, throbbing'), +('大太鼓', 'オオダイコ', 'large drum, bass drum'), +('御太鼓', 'オタイコ', 'very common way of tying a woman''s kimono sash'), +('軽禁錮', 'ケイキンコ', 'minor imprisonment, imprisonment without hard labor (hard labour)'), +('重禁錮', 'ジュウキンコ', 'major imprisonment, imprisonment with hard labor (hard labour)'), +('弧', 'コ', 'arc'), +('弧形', 'コケイ', 'arc'), +('括弧', 'カッコ', 'brackets, parentheses'), +('円弧', 'エンコ', 'arc'), +('孤', 'コ', 'being alone, solitude, loneliness, orphan'), +('孤児', 'コジ', 'orphan, person without friends'), +('遺孤', 'イコ', 'orphan'), +('互角', 'ゴカク', 'equal (in ability), even, evenly matched, well-matched, on par (with)'), +('互換', 'ゴカン', 'interchange, transposition, compatible (e.g. PC)'), +('舷', 'ゲン', 'side of a boat, gunwale'), +('舷窓', 'ゲンソウ', 'porthole'), +('左舷', 'サゲン', 'port (left side of vessel)'), +('右舷', 'ウゲン', 'starboard'), +('悟性', 'ゴセイ', 'wisdom, understanding'), +('悟達', 'ゴタツ', 'attaining enlightenment'), +('覚悟', 'カクゴ', 'readiness, preparedness, resolution, resignation'), +('大悟', 'タイゴ', 'enlightenment, great wisdom'), +('勾配', 'コウバイ', 'slope, incline, gradient, grade, pitch, slope (of a linear function), gradient (vector calculus)'), +('勾引', 'コウイン', 'arrest, custody, apprehending, abduction'), +('股間', 'コカン', 'nether region, between the legs, groin, crotch'), +('股関節', 'コカンセツ', 'hip joint, coxa'), +('控股', 'コウコ', 'holdings, holding company'), +('四股', 'シコ', 'wrestler''s ceremonial leg raising and stomping'), +('顧問', 'コモン', 'adviser, advisor, consultant'), +('顧客', 'コキャク', 'customer, client, patron'), +('回顧', 'カイコ', 'recollecting, reminiscing, looking back, retrospection, review'), +('一顧', 'イッコ', 'slightest notice, slightest consideration, slightest attention, a little thought, glance'), +('碁', 'ゴ', 'go (board game)'), +('碁盤', 'ゴバン', 'Go board'), +('囲碁', 'イゴ', 'go (board game)'), +('相碁', 'アイゴ', 'Go played by two equally skilled players'), +('枯れ木', 'カレキ', 'dead tree, withered tree, leafless tree, bare tree'), +('枯死', 'コシ', 'withering, dying'), +('栄枯', 'エイコ', 'vicissitudes, ups and downs'), +('蒼古', 'ソウコ', 'old-fashioned and tasteful'), +('誇張', 'コチョウ', 'exaggeration'), +('誇示', 'コジ', 'ostentation, display'), +('虎列剌', 'コレラ', 'cholera'), +('虎視眈々', 'コシタンタン', 'vigilantly (watching for an opportunity), eagerly, with an eagle eye'), +('猛虎', 'モウコ', 'fierce tiger, ferocious tiger, Hanshin Tigers (baseball team)'), +('竜虎', 'リュウコ', 'dragon and tiger, two mighty rivals'), +('娯楽', 'ゴラク', 'amusement, entertainment, recreation, pleasure, pastime, hobby'), +('娯楽施設', 'ゴラクシセツ', 'amusement facilities, recreational facilities'), +('弦', 'ゲン', 'bowstring, string (of a shamisen, etc.), stringed instrument, chord, hypotenuse'), +('弦楽', 'ゲンガク', 'music for strings, string music'), +('三絃', 'サンゲン', 'shamisen, samisen, sanxian (Chinese lute), three string instruments (in gagaku; biwa, wagon and sou), three-stringed instrument'), +('移弦', 'イゲン', 'string-crossing (violin, cello, etc.)'), +('呉', 'ゴ', 'Wu (region in China, south of the lower Yangtze), Wu (kingdom in China during the Five Dynasties and Ten Kingdoms era; 902-937 CE), Southern Wu, Wu (kingdom in China during the Three Kingdoms era; 222-280 CE)), Eastern Wu, Sun Wu, Wu (kingdom in China during the Spring and Autumn era; 11th century-473 BCE)'), +('豆汁', 'ゴ', 'go, soy beans soaked and mashed to a creamy paste (ingredient of tofu and soy milk)'), +('藍子', 'アイゴ', 'mottled spinefoot (Siganus fuscescens, species of Western Pacific rabbitfish), dusky rabbitfish, sandy spinefoot'), +('貢', 'コウ', 'tribute'), +('貢献', 'コウケン', 'contribution (furthering a goal or cause), services (to a cause)'), +('朝貢', 'チョウコウ', 'bringing tribute'), +('幣貢', 'ヘイコウ', 'offering, tribute'), +('洪', 'コウ', 'Hungary'), +('洪水', 'コウズイ', 'flood, flooding'), +('拘束', 'コウソク', 'restriction, restraint, binding, constraint'), +('拘置', 'コウチ', 'detention, confinement, arrest'), +('控除', 'コウジョ', 'subtraction, deduction (e.g. tax), subsidy'), +('控訴', 'コウソ', 'appeal to a higher court, intermediate appeal'), +('巧', 'コウ', 'skilfulness, skillfulness, cleverness'), +('巧妙', 'コウミョウ', 'ingenious, skillful, clever, deft'), +('不精巧', 'フセイコウ', 'clumsy, bungling'), +('大巧', 'タイコウ', 'great talent'), +('攻撃', 'コウゲキ', 'attack, assault, raid, onslaught, offensive, criticism, censure, denunciation, condemnation'), +('攻勢', 'コウセイ', 'offensive (movement), aggression'), +('専攻', 'センコウ', 'major subject, special study'), +('速攻', 'ソッコウ', 'swift attack, quick attack, fast break, right away, without delay, immediately'), +('侯', 'コウ', 'marquis, lord, daimyo'), +('侯爵', 'コウシャク', 'marquis, marquess'), +('王侯', 'オウコウ', 'king and princes, noble rank'), +('仙台侯', 'センダイコウ', 'Lord of Sendai'), +('郊外', 'コウガイ', 'suburb, residential area on the outskirt of a city, commuter belt'), +('郊外化', 'コウガイカ', 'suburbanization'), +('南郊', 'ナンコウ', 'southern suburbs'), +('北郊', 'ホッコウ', 'northern suburbs'), +('肯定', 'コウテイ', 'affirmation, affirmative'), +('肯定的', 'コウテイテキ', 'affirmative'), +('首肯', 'シュコウ', 'assent, consent'), +('喉', 'コン', 'fish, counter for fish'), +('喉頭', 'コウトウ', 'larynx'), +('咽喉', 'インコウ', 'throat'), +('耳鼻咽喉', 'ジビインコウ', 'ear, nose, and throat'), +('荒廃', 'コウハイ', 'ruin, destruction, devastation, waste, decay'), +('荒野', 'コウヤ', 'wasteland, wilderness, deserted land, prairie, vast plain, wilds, desert, wild land'), +('破天荒', 'ハテンコウ', 'unheard-of, unprecedented'), +('救荒', 'キュウコウ', 'famine relief'), +('甲', 'コウ', 'carapace, shell, 1st in rank, grade A, instep, back of hand, the A party (e.g. in a contract), the first party, plaintiff (label in legal documents)'), +('甲板', 'カンパン', 'deck (of a ship)'), +('装甲', 'ソウコウ', 'armoring, armouring, armor, armour'), +('亀甲', 'キッコウ', 'tortoise shell'), +('甲', 'カン', 'treble range (in Japanese music), high note'), +('甲板', 'カンパン', 'deck (of a ship)'), +('坑', 'コウ', 'pit (esp. of a mine)'), +('坑口', 'コウコウ', 'pithead, minehead'), +('廃坑', 'ハイコウ', 'abandoned mine, disused mine'), +('開坑', 'カイコウ', 'opening of mine'), +('恒星', 'コウセイ', 'star'), +('恒産', 'コウサン', 'fixed property, real property, fixed occupation'), +('抗', 'コウ', 'anti-'), +('抗議', 'コウギ', 'protest, objection'), +('反抗', 'ハンコウ', 'opposition, resistance, insubordination, defiance, hostility, rebellion'), +('対抗', 'タイコウ', 'opposition, rivalry, competition, antagonism'), +('更', 'コウ', 'one-fifth of the night (approx. 2 hours)'), +('更新', 'コウシン', 'renewal, update, replacement, renovation, breaking (a record)'), +('変更', 'ヘンコウ', 'change, modification, alteration, revision, amendment'), +('中更', 'チュウコウ', 'middle watch, 12 midnight-2am'), +('江', 'コウ', 'large river (esp. the Yangtze), Lake Biwa'), +('江上', 'コウジョウ', '(on the) bank of a large river'), +('長江', 'チョウコウ', 'Yangtze River, Changjiang River'), +('揚子江', 'ヨウスコウ', 'Yangtze River (in China)'), +('孔子', 'コウシ', 'Confucius'), +('孔隙率', 'コウゲキリツ', 'porosity'), +('瞳孔', 'ドウコウ', 'pupil (of the eye)'), +('鰓孔', 'エラアナ', 'gill slit, pharyngeal slit'), +('孔雀', 'クジャク', 'peafowl (incl. the male peacock, female peahen, and young peachick)'), +('孔子', 'コウシ', 'Confucius'), +('雇用', 'コヨウ', 'employment, hire'), +('雇い主', 'ヤトイヌシ', 'employer'), +('解雇', 'カイコ', 'discharge, dismissal'), +('不当解雇', 'フトウカイコ', 'unfair dismissal, wrongful dismissal, unfair termination'), +('恐慌', 'キョウコウ', 'panic, scare, alarm, panic, financial panic'), +('世界恐慌', 'セカイキョウコウ', 'worldwide financial crisis, global depression'), +('梗塞', 'コウソク', 'stoppage, tightness, block, infarction (e.g. cardiac)'), +('梗概', 'コウガイ', 'outline, summary, epitome'), +('花梗', 'カコウ', 'flower stalk, peduncle'), +('小花梗', 'ショウカコウ', 'pedicel'), +('桔梗', 'キキョウ', 'Chinese bellflower (Platycodon grandiflorus)'), +('捻じ桔梗', 'ネジキキョウ', 'Chinese bellflower (slightly screwed)'), +('絞', 'コウ', 'death by hanging (punishment in the ritsuryō system)'), +('絞殺', 'コウサツ', 'strangulation, strangling'), +('項', 'コウ', 'clause, paragraph, item, argument, term (of an equation), nape (of the neck)'), +('項目', 'コウモク', 'item, heading, category, clause, headword (in a dictionary, encyclopedia, etc.), entry'), +('要項', 'ヨウコウ', 'important points, main points'), +('別項', 'ベッコウ', 'special heading, separate paragraph'), +('溝', 'コウ', '10^32, hundred nonillion'), +('溝渠', 'コウキョ', 'ditch, sewer, canal'), +('排水溝', 'ハイスイコウ', 'drainage, gutter, ditch'), +('海溝', 'カイコウ', 'ocean trench, deep'), +('酵素', 'コウソ', 'enzyme'), +('酵母', 'コウボ', 'yeast, leaven'), +('発酵', 'ハッコウ', 'fermentation, zymosis'), +('並行複発酵', 'ヘイコウフクハッコウ', 'multiple parallel fermentation (esp. in sake brewing)'), +('硬', 'コウ', 'hardness'), +('硬貨', 'コウカ', 'coin, hard currency'), +('生硬', 'セイコウ', 'crude, immature, unpolished'), +('超硬', 'チョウコウ', 'cemented carbide, superhard, ultrahard'), +('綱', 'コウ', 'class'), +('綱領', 'コウリョウ', 'general plan, main points, summary, platform (e.g. for a campaign), mission statement'), +('要綱', 'ヨウコウ', 'main principle, gist, general plan, guidelines, outline'), +('大綱', 'タイコウ', 'fundamental principles, main lines, outline, summary, general features'), +('衡器', 'コウキ', 'scale, balance, weighing machine'), +('衡平', 'コウヘイ', 'balance, equity'), +('選考', 'センコウ', 'selection, screening'), +('均衡', 'キンコウ', 'equilibrium, balance'), +('稿', 'コウ', 'manuscript, version, draft'), +('稿料', 'コウリョウ', 'manuscript fee, payment for a piece of writing'), +('投稿', 'トウコウ', 'contribution (to a newspaper, magazine, etc.), submission, post (on a blog, social media, etc.)'), +('寄稿', 'キコウ', 'contribution (e.g. to newspaper)'), +('購入', 'コウニュウ', 'purchase, buy'), +('購読', 'コウドク', 'buying and reading (book, magazine, etc.), subscribing (incl. free subscriptions), taking (e.g. newspaper)'), +('傲慢', 'ゴウマン', 'haughty, arrogant, insolent, proud, overbearing'), +('傲岸', 'ゴウガン', 'haughty, arrogant, supercilious'), +('驕傲', 'キョウゴウ', 'pride, arrogance'), +('倨傲', 'キョゴウ', 'pride, arrogance'), +('乞食', 'コジキ', 'beggar, begging'), +('乞丐', 'コツガイ', 'beggar, bum'), +('行乞', 'ギョウコツ', 'going on an alms round (for food), going begging (for food), going to ask for alms of food, pindacara'), +('乞巧奠', 'キッコウデン', 'Festival to Plead for Skills (progenitor festival of Tanabata)'), +('乞丐', 'コツガイ', 'beggar, bum'), +('拷問', 'ゴウモン', 'torture'), +('拷器', 'ゴウキ', 'instruments of torture'), +('克服', 'コクフク', 'conquest (of a difficulty, illness, handicap, etc.), overcoming, bringing under control, subjugation, victory over'), +('克明', 'コクメイ', 'detailed, scrupulous, careful, minute, faithful, elaborate, diligent, honest, upright, sincere'), +('相克', 'ソウコク', 'rivalry'), +('超克', 'チョウコク', 'overcoming, conquering, surmounting, getting over'), +('剛', 'ゴウ', 'strong, hard, manly'), +('強情', 'ゴウジョウ', 'obstinate, stubborn, headstrong'), +('強豪', 'キョウゴウ', 'overwhelming strength, extremely strong person, powerhouse, very strong player, very strong team'), +('金剛', 'コンゴウ', 'vajra (indestructible substance), diamond, adamantine, thunderbolt, Indra''s weapon, Buddhist symbol of the indestructible truth'), +('剛', 'ゴウ', 'strong, hard, manly'), +('豪', 'ゴウ', 'Australia'), +('強豪', 'キョウゴウ', 'overwhelming strength, extremely strong person, powerhouse, very strong player, very strong team'), +('古豪', 'コゴウ', 'veteran, old-timer, experienced person'), +('産駒', 'サンク', 'horse offspring'), +('獄', 'ゴク', 'jail, gaol, prison'), +('獄舎', 'ゴクシャ', 'prison (building), jail'), +('出獄', 'シュツゴク', 'release (from prison)'), +('投獄', 'トウゴク', 'imprisonment, incarceration'), +('婚', 'コン', 'marriage'), +('婚約', 'コンヤク', 'engagement, betrothal'), +('離婚', 'リコン', 'divorce'), +('再婚', 'サイコン', 'second marriage, remarriage'), +('昆虫', 'コンチュウ', 'insect, bug'), +('昆虫採集', 'コンチュウサイシュウ', 'insect collecting'), +('後昆', 'コウコン', 'grandchildren, posterity'), +('酷', 'コク', 'severe, harsh, stringent, rigorous, strict, unfair'), +('酷寒', 'コッカン', 'severe cold, intense cold, bitter cold'), +('残忍冷酷', 'ザンニンレイコク', 'atrocious and cold-blooded, cruel, brutal, merciless'), +('厳酷', 'ゲンコク', 'severity, rigor, rigour'), +('頃', 'ケイ', 'qing (Chinese unit of land area equal to 100 mu)'), +('頃刻', 'ケイコク', 'short period'), +('万頃', 'バンケイ', 'vast expanse'), +('紺', 'コン', 'navy blue, deep blue'), +('紺屋', 'コウヤ', 'dyer'), +('紫紺', 'シコン', 'bluish purple'), +('茄子紺', 'ナスコン', 'dusky purple, dark purple, eggplant color'), +('痕', 'コン', 'scar (e.g. from operation, injection), trace, mark (e.g. skid marks)'), +('痕跡', 'コンセキ', 'trace, vestige, mark, sign, evidence'), +('弾痕', 'ダンコン', 'bullet hole, bullet mark'), +('聖痕', 'セイコン', 'stigmata'), +('魂', 'コン', 'Yang energy, spirit'), +('魂魄', 'コンパク', 'soul, spirit, ghost'), +('鎮魂', 'チンコン', 'repose of a soul, ceremony for the repose of a departed soul'), +('入魂', 'ニュウコン', 'putting one''s heart and soul (into), giving one''s all, breathing a soul into (e.g. a Buddhist statue), intimacy, familiarity'), +('墾田', 'コンデン', 'new rice field'), +('開墾', 'カイコン', 'cultivating new land, clearing, reclamation'), +('未開墾', 'ミカイコン', 'uncultivated'), +('恨事', 'コンジ', 'regrettable matter'), +('痛恨', 'ツウコン', 'regretful, sorrowful, bitter, contrition'), +('意趣遺恨', 'イシュイコン', 'grudge, spite, malice, rancor'), +('懇願', 'コンガン', 'entreaty, supplication, petition'), +('懇意', 'コンイ', 'kindness, intimacy, friendship'), +('米懇', 'ベイコン', 'Round Table Conference on Rice Price'), +('昵懇', 'ジッコン', 'intimacy, familiarity, closeness'), +('示唆', 'シサ', 'suggestion, hint, implication'), +('教唆', 'キョウサ', 'instigation, incitement'), +('沙', 'シャ', 'one hundred-millionth'), +('砂漠', 'サバク', 'desert'), +('秋沙', 'アイサ', 'merganser (any duck of genus Mergus)'), +('海秋沙', 'ウミアイサ', 'red-breasted merganser'), +('沙', 'シャ', 'one hundred-millionth'), +('砂丘', 'サキュウ', 'sand dune, sand hill'), +('泥砂', 'デイサ', 'mud and sand'), +('恒河沙', 'ゴウガシャ', '10^52 (or 10^56), innumerable'), +('挫折', 'ザセツ', 'setback, failure (e.g. plans, business), frustration, discouragement'), +('挫傷', 'ザショウ', 'sprain, wrench, bruise, contusion, fracture'), +('捻挫', 'ネンザ', 'sprain, twist, wrench'), +('頓挫', 'トンザ', 'setback, deadlock, standstill, impasse, miscarriage'), +('閉ざす', 'トザス', 'to shut, to close, to fasten, to lock, to block (a street, entrance, etc.), to shut in (with snow, ice, etc.), to shut off, to cut off, to cover (e.g. in darkness), to consume (with negative feelings), to fill (e.g. with sadness), to bury (e.g. in grief)'), +('鎖国', 'サコク', 'national isolation, closing the country (to foreigners), sakoku, policy of national isolation enacted by the Tokugawa shogunate'), +('経済封鎖', 'ケイザイフウサ', 'economic blockade, embargo'), +('学級閉鎖', 'ガッキュウヘイサ', 'temporary closing of classes'), +('砕石', 'サイセキ', 'crushed stone, macadam, crushing (rock)'), +('砕岩機', 'サイガンキ', 'rock crusher'), +('粉砕', 'フンサイ', 'pulverization, pulverisation, reducing to pieces, smashing, demolishing'), +('破砕', 'ハサイ', 'crushing (into pieces), smashing, cracking, breaking up'), +('詐欺', 'サギ', 'fraud, swindle, graft, cheating, trick, scam, saying you''re going to do something but in the end not doing it, making promises without keeping them'), +('詐欺師', 'サギシ', 'swindler, fraudster, trickster, con man'), +('欺詐', 'ギサ', 'fraud, fraudulence, dupery, hoax'), +('譎詐', 'キッサ', 'falsehood, fabrication, dissimulation'), +('采', 'サイ', 'dice, die, baton (of command)'), +('さいの目', 'サイノメ', 'pip (spot on a die), small cube (esp. of food), die, dice'), +('喝采', 'カッサイ', 'cheers, applause, ovation, acclamation'), +('納采', 'ノウサイ', 'betrothal gift'), +('栽培', 'サイバイ', 'cultivation'), +('栽培家', 'サイバイカ', 'grower, farmer'), +('植栽', 'ショクサイ', 'raising trees and plants'), +('輪栽', 'リンサイ', 'rotation of crops'), +('宰相', 'サイショウ', 'prime minister, premier, chancellor'), +('宰領', 'サイリョウ', 'supervision, superintendence, management, supervisor'), +('主宰', 'シュサイ', 'supervision, superintendence, chairmanship, chairman'), +('厨宰', 'チュウサイ', 'chef, head cook'), +('彩色', 'サイシキ', 'colouring, coloring, colouration, coloration, painting'), +('彩雲', 'サイウン', 'iridescent clouds, glowing clouds'), +('油彩', 'ユサイ', 'oil painting'), +('光彩', 'コウサイ', 'brilliance, splendour, splendor, lustre, luster'), +('債', 'サイ', 'debt, loan'), +('債権', 'サイケン', 'credit, claim'), +('割引債', 'ワリビキサイ', 'discount bond'), +('起債', 'キサイ', 'issuing of bonds'), +('斎場', 'サイジョウ', 'funeral hall, ceremony site'), +('斎戒', 'サイカイ', 'purification'), +('大斎', 'タイサイ', 'Great Lent, Great Fast'), +('小斎', 'ショウサイ', 'abstinence (in Catholicism)'), +('催促', 'サイソク', 'pressing, urging, demanding, demand'), +('催眠', 'サイミン', 'hypnosis'), +('主催', 'シュサイ', 'sponsorship (i.e. conducting under one''s auspices), promotion, organizing, organising, hosting, staging'), +('開催', 'カイサイ', 'holding (a conference, exhibition, etc.), opening, hosting (e.g. the Olympics)'), +('塞源', 'ソクゲン', 'blockage of a source'), +('塞栓', 'ソクセン', 'embolus, abnormal substance (i.e. air) circulating in the blood'), +('梗塞', 'コウソク', 'stoppage, tightness, block, infarction (e.g. cardiac)'), +('閉塞', 'ヘイソク', 'blockage, blockade, blocking up, stoppage, obstruction, occlusion'), +('塞翁が馬', 'サイオウガウマ', 'the future is unpredictable, inscrutable are the ways of heaven, the irony of fate'), +('道祖神', 'ドウソジン', 'traveler''s guardian deity (traveller)'), +('防塞', 'ボウサイ', 'fort, defensive position'), +('城塞', 'ジョウサイ', 'fortress, stronghold, citadel'), +('歳', 'サイ', '-years-old'), +('歳月', 'サイゲツ', 'time, years'), +('何歳', 'ナンサイ', 'how old, what age'), +('歳歳', 'サイサイ', 'annual'), +('歳暮', 'セイボ', 'year-end gift, end of the year, year end'), +('載', 'サイ', '10^44, hundred tredecillion'), +('採録', 'サイロク', 'recording, transcription'), +('記載', 'キサイ', 'mention (in a document), record, entry, statement, listing'), +('掲載', 'ケイサイ', 'publication (e.g. of an article in a newspaper), carrying (e.g. a story), running (e.g. a serial), insertion (e.g. of an advertisement), printing, posting (e.g. on the web)'), +('剤', 'ザイ', 'medicine, agent, (chemical) substance, drug, dose'), +('剤形', 'ザイケイ', 'dosage form'), +('調剤', 'チョウザイ', 'making up a prescription, dispensing medicine, preparing medicine'), +('覚醒剤', 'カクセイザイ', 'stimulant (e.g. psychoactive drugs like methamphetamine, ritalin, etc.)'), +('柵', 'サク', 'fence, paling, railing, fortress'), +('柵状組織', 'サクジョウソシキ', 'palisade layer'), +('馬防柵', 'バボウサク', 'anti-cavalry palisade (Sengoku period)'), +('電気柵', 'デンキサク', 'electric fence'), +('酢酸', 'サクサン', 'acetic acid'), +('酢酸エチル', 'サクサンエチル', 'ethyl acetate'), +('木酢', 'モクサク', 'wood vinegar, pyroligneous acid'), +('鉛酢', 'エンサク', 'Goulard''s extract, subacetate of lead, vinegar of lead'), +('索', 'サク', 'rope, cord'), +('索引', 'サクイン', 'index (in a book)'), +('捜索', 'ソウサク', 'search (esp. for someone or something missing), manhunt, legally authorized search of a person, building, etc.'), +('検索', 'ケンサク', 'looking up (e.g. a word in a dictionary), retrieval (e.g. data), searching for, referring to'), +('搾取', 'サクシュ', 'exploitation, bleeding dry, squeezing dry, milking (e.g. a cow''s teat), extracting (a liquid) through squeezing'), +('搾乳', 'サクニュウ', 'milking (a cow)'), +('圧搾', 'アッサク', 'pressure, compression'), +('錯乱', 'サクラン', 'confusion, distraction, derangement'), +('錯誤', 'サクゴ', 'mistake, error, discrepancy, discrepancy between one''s actions and intentions'), +('交錯', 'コウサク', 'mixture, blending, complication, crossing, intersecting, interlacing'), +('性倒錯', 'セイトウサク', 'paraphilia, sexual deviancy'), +('介錯', 'カイシャク', 'beheading (as the ending to a seppuku), assistance, help'), +('削', 'サク', 'plane, sharpen, whittle, pare, shave (leather), scrape off, crossout, reduce, curtail'), +('削除', 'サクジョ', 'deletion, elimination, erasure, striking out'), +('添削', 'テンサク', 'correction, looking over, touching up'), +('掘削', 'クッサク', 'digging out, excavation'), +('恣意', 'シイ', 'arbitrariness, self-will, whim'), +('恣意性', 'シイセイ', 'arbitrariness'), +('放恣', 'ホウシ', 'licentious, self-indulgent'), +('驕恣', 'キョウシ', 'being proud and self-willed'), +('祉福', 'シフク', 'prosperity, happiness, blessedness and joy'), +('老人福祉', 'ロウジンフクシ', 'welfare for the aged'), +('健康福祉', 'ケンコウフクシ', 'health and welfare'), +('年頭挨拶', 'ネントウアイサツ', 'New Year''s greetings'), +('ご挨拶', 'ゴアイサツ', 'greeting, a fine thing to say'), +('惨', 'サン', 'appalling'), +('惨事', 'サンジ', 'disaster, tragedy, tragic incident, horrible accident'), +('凄惨', 'セイサン', 'ghastly, gruesome, appalling, lurid'), +('陰惨', 'インサン', 'sadness and gloom'), +('残酷', 'ザンコク', 'cruel, brutal, ruthless, merciless, inhuman'), +('残虐', 'ザンギャク', 'cruel, brutal, savage, barbarous'), +('冷酷無惨', 'レイコクムザン', 'cruel and heartless, merciless, implacable, cold-blooded'), +('撮影', 'サツエイ', 'photography (still or motion), photographing, filming, shooting, (video) recording'), +('撮影隊', 'サツエイタイ', 'film unit'), +('盗撮', 'トウサツ', 'sneak photography, non-consensual photography, peeping photos'), +('特撮', 'トクサツ', 'special effects, SFX, tokusatsu (genre of live-action film or television drama that makes heavy use of special effects, e.g. Godzilla)'), +('擦弦楽器', 'サツゲンガッキ', 'bowed stringed instrument'), +('塗擦', 'トサツ', 'rubbing an ointment into the skin'), +('冷水摩擦', 'レイスイマサツ', 'rubdown with a wet towel, cold-water rubbing'), +('肢体', 'シタイ', 'limbs, arms and legs, body'), +('肢体不自由児', 'シタイフジユウジ', 'physically handicapped child'), +('四肢', 'シシ', 'the (four) limbs, arms and legs'), +('下肢', 'カシ', 'lower limbs, legs'), +('桟', 'サン', 'frame (i.e. of a sliding door), crosspiece, bar, sliding wooden bolt (for holding a door or window shut), rung (of a ladder)'), +('桟橋', 'サンバシ', 'wharf, bridge, jetty, pier'), +('障子の桟', 'ショウジノサン', 'frame of a shoji (paper sliding-door)'), +('窓の桟', 'マドノサン', 'window frame, window sill'), +('脂肪', 'シボウ', 'fat, grease, blubber, lard, suet'), +('脂質', 'シシツ', 'lipid, fats, adipose'), +('樹脂', 'ジュシ', 'resin, rosin'), +('皮脂', 'ヒシ', 'sebum, sebaceous matter'), +('刺', 'シ', 'calling card'), +('刺激', 'シゲキ', 'stimulus, stimulation, irritation, impetus, impulse, stimulus, spur, incentive, encouragement, stimulation, motivation, provocation, excitement, thrill'), +('風刺', 'フウシ', 'satire, irony, sarcasm'), +('牛刺', 'ギュウサシ', 'sliced raw beef'), +('旨意', 'シイ', 'intent, purpose, aim'), +('旨趣', 'シシュ', 'objective, purport, intent'), +('本旨', 'ホンシ', 'main object, principal object, true aim'), +('宗旨', 'シュウシ', 'tenets (of a religious sect), doctrines, (religious) sect, denomination, religion, faith, one''s principles, one''s tastes, one''s preferences'), +('巧笑', 'コウショウ', 'courteous laughter, forced laughter'), +('暫定', 'ザンテイ', 'provisional, temporary, tentative'), +('暫定的', 'ザンテイテキ', 'temporary, provisional, interim'), +('刹', 'サツ', 'temple (Buddhist), central pillar of a pagoda, kshetra (realm, country), ksetra'), +('刹那的', 'セツナテキ', 'ephemeral, transitory'), +('十刹', 'ジッサツ', 'ten important Rinzai temples, second in significance to the Kyoto Gozan'), +('仏刹', 'ブッサツ', 'Buddhist temple'), +('刹', 'サツ', 'temple (Buddhist), central pillar of a pagoda, kshetra (realm, country), ksetra'), +('名刹', 'メイサツ', 'famous temple'), +('古刹', 'コサツ', 'ancient temple'), +('傘下', 'サンカ', 'affiliated with, under jurisdiction of, under the umbrella'), +('傘寿', 'サンジュ', '80th birthday'), +('落下傘', 'ラッカサン', 'parachute'), +('開傘', 'カイサン', 'opening of a parachute'), +('紫外線', 'シガイセン', 'ultraviolet rays, ultraviolet radiation'), +('紫色', 'ムラサキイロ', 'purple, violet'), +('紅紫', 'コウシ', 'crimson and purple, red-purple, magenta'), +('九紫', 'キュウシ', 'ninth of nine traditional astrological signs (corresponding to Mars and south)'), +('伺候', 'シコウ', 'waiting upon (someone)'), +('経伺', 'ケイシ', 'asking for instructions, consulting and obtaining approval'), +('奉伺', 'ホウシ', 'inquiring about (one''s health)'), +('施設', 'シセツ', 'institution, establishment, facility, home (for elderly, orphans, etc.)'), +('施行', 'シコウ', 'putting in force (a law), putting into operation, putting into effect, enforcement, carrying out (a plan, policy, etc.), execution'), +('実施', 'ジッシ', 'enforcement, implementation, putting into practice, carrying out, operation, working (e.g. working parameters), enactment'), +('施行', 'シコウ', 'putting in force (a law), putting into operation, putting into effect, enforcement, carrying out (a plan, policy, etc.), execution'), +('施錠', 'セジョウ', 'locking'), +('布施', 'フセ', 'alms-giving, charity, offerings (usu. money) to a priest (for reading sutras, etc.)'), +('仕着せ', 'シキセ', 'servant''s clothes provided by an employer, livery'), +('摯実', 'シジツ', 'serious, sincere'), +('真摯', 'シンシ', 'sincere, earnest, serious'), +('嗣', 'シ', 'succession, successor'), +('嗣業', 'シギョウ', 'succeeding to a business'), +('継嗣', 'ケイシ', 'successor, heir, heiress'), +('世子', 'セイシ', 'heir, successor'), +('斬', 'ザン', 'beheading, decapitation'), +('斬新', 'ザンシン', 'novel, original, new, innovative'), +('雌雄', 'シユウ', 'male and female (animals), the two sexes, victory and defeat, strengths and weaknesses'), +('雌黄', 'シオウ', 'orpiment, gamboge, falsification, alteration'), +('璽', 'ジ', 'emperor''s seal'), +('璽書', 'ジショ', 'document with the emperor''s seal'), +('国璽', 'コクジ', 'the seal of state'), +('玉璽', 'ギョクジ', 'sovereign''s seal'), +('赦', 'シャ', 'pardon, amnesty'), +('赦免', 'シャメン', 'pardon, remission, amnesty'), +('容赦', 'ヨウシャ', 'pardon, forgiveness, tolerance, overlooking, leniency, mercy, going easy (on someone)'), +('特赦', 'トクシャ', 'special pardon, (general) amnesty'), +('賜杯', 'シハイ', 'Emperor''s cup, trophy given by the Emperor'), +('賜暇', 'シカ', 'furlough, leave of absence'), +('恩賜', 'オンシ', 'Imperial gift'), +('追賜', 'ツイシ', 'being granted a court rank after death'), +('軸', 'ジク', 'axis, shaft, axle, center, centre, focal point, key point, stalk, stem, hanging scroll'), +('軸足', 'ジクアシ', 'pivot foot, emphasis, priority, focus'), +('基軸', 'キジク', 'basis, foundation, core, criterion, standard'), +('中軸', 'チュウジク', 'axis, pivot, central figure, key man'), +('疾雷', 'シツライ', 'sudden and violent thunder'), +('癈疾', 'ハイシツ', 'disablement'), +('廃疾', 'ハイシツ', 'disablement, disability'), +('採餌', 'サイジ', 'feeding (by animals), food getting'), +('好餌', 'コウジ', 'bait, decoy, lure, easy prey, easy victim, sucker'), +('執拗い', 'シツコイ', 'insistent, obstinate, persistent, tenacious, too rich (taste, etc.), fatty, heavy, greasy'), +('執拗', 'シツヨウ', 'persistent, obstinate, tenacious, relentless, insistent, importunate, persevering, stubborn'), +('固執', 'コシツ', 'sticking to (an opinion, theory, belief, etc.), clinging to, adherence, persistence, insistence'), +('中執', 'チュウシツ', 'Central Executive Committee'), +('執', 'シュウ', 'attachment, obsession, persistence'), +('執着', 'シュウチャク', 'attachment, adhesion, tenacity, fixation, obsession'), +('固執', 'コシツ', 'sticking to (an opinion, theory, belief, etc.), clinging to, adherence, persistence, insistence'), +('愛執', 'アイシュウ', 'attachment, covetous affection'), +('侍従', 'ジジュウ', 'chamberlain'), +('侍医', 'ジイ', 'court physician'), +('内侍', 'ナイシ', 'maid of honor, maid of honour'), +('陪侍', 'バイジ', 'retainer, attending on the nobility'), +('内侍', 'ナイシ', 'maid of honor, maid of honour'), +('慈善', 'ジゼン', 'charity, philanthropy'), +('慈悲', 'ジヒ', 'mercy, compassion, clemency, pity, charity, benevolence, Hodgson''s hawk-cuckoo (Cuculus fugax), Horsfield''s hawk cuckoo'), +('具慈', 'グジ', 'tilefish (Branchiostegus spp.), blanquillo, horse-head fish'), +('仁慈', 'ジンジ', 'kind-hearted, benevolence'), +('芝', 'シバ', 'lawn, sod, turf'), +('芝居', 'シバイ', 'play, drama'), +('霊芝', 'レイシ', 'bracket fungus (Ganoderma lucidum), reishi mushroom'), +('漆芸', 'シツゲイ', '(Japanese) lacquer art'), +('膠漆', 'コウシツ', 'glue and lacquer, great intimacy'), +('仮漆', 'カシツ', 'varnish'), +('諮問', 'シモン', 'consultation, question, enquiry, inquiry'), +('諮議', 'シギ', 'consultation, conference'), +('湿', 'シツ', 'moisture, humidity, dampness, scabies, sarcoptic mange, the itch'), +('湿度', 'シツド', 'level of humidity'), +('除湿', 'ジョシツ', 'dehumidification'), +('多湿', 'タシツ', 'high humidity'), +('斜', 'ハス', 'diagonal'), +('斜面', 'シャメン', 'slope, slanting surface, bevel'), +('傾斜', 'ケイシャ', 'inclination, slant, slope, bevel, list, dip, tilt, lean'), +('急傾斜', 'キュウケイシャ', 'steep slope, steep incline'), +('邪', 'ジャ', 'wickedness, evil, wicked person'), +('邪魔', 'ジャマ', 'hindrance, obstacle, nuisance, disturbance, interruption, interference, to visit (someone''s home), demon who hinders Buddhist training, demon who obstructs sentient beings from maintaining moral behaviour'), +('妖邪', 'ヨウジャ', 'evil intent, malice'), +('破邪', 'ハジャ', '(sense of) crushing evil'), +('煮沸消毒', 'シャフツショウドク', 'sterilization by boiling, sterilisation by boiling'), +('煮沸', 'シャフツ', 'boiling up'), +('蛇', 'ヘビ', 'snake, serpent, large snake'), +('蛇口', 'ジャグチ', 'faucet, tap'), +('王蛇', 'オウジャ', 'boa'), +('長蛇', 'チョウダ', 'long snake, long line (of people, etc.)'), +('蛇行', 'ダコウ', 'meandering, snaking, zigzagging'), +('蛇蠍', 'ダカツ', 'serpent (snake) and scorpion, detestation'), +('委蛇', 'イイ', 'winding, meandering'), +('游蛇', 'ユウダ', 'water snake'), +('委蛇', 'イイ', 'winding, meandering'), +('酌', 'シャク', 'pouring alcohol, person pouring alcohol (esp. a woman)'), +('酌量', 'シャクリョウ', 'taking into consideration, making allowances'), +('斟酌', 'シンシャク', 'taking into consideration, making allowances (for), reserve, restraint, leniency, mercy'), +('媒酌', 'バイシャク', 'matchmaking, acting as a go-between'), +('釈明', 'シャクメイ', 'explanation, vindication'), +('釈放', 'シャクホウ', 'release, liberation, acquittal'), +('解釈', 'カイシャク', 'interpretation, explanation, reading, construction'), +('注釈', 'チュウシャク', 'notes, comment, remark, annotation'), +('釈然', 'シャクゼン', 'fully satisfied (with an explanation, apology, etc.), happy, cleared of doubt'), +('爵', 'シャク', 'jue (ancient 3-legged Chinese wine pitcher, usu. made of bronze), peerage (hereditary title bestowed by the emperor)'), +('爵位', 'シャクイ', 'peerage, court rank'), +('公爵', 'コウシャク', 'prince, duke'), +('伯爵', 'ハクシャク', 'count, earl'), +('朱', 'シュ', 'cinnabar, vermillion, red, slightly-orange red, red pigment (and ink made from same), red text (as used to correct documents)'), +('朱肉', 'シュニク', 'thick red ink (used for signature seals), red ink pad, vermillion ink, cinnabar ink'), +('堆朱', 'ツイシュ', 'red lacquerware with patterns carved in relief'), +('銀朱', 'ギンシュ', 'vermilion, scarlet'), +('狩猟', 'シュリョウ', 'hunting'), +('狩猟鳥', 'シュリョウチョウ', 'game bird, game fowl'), +('巡狩', 'ジュンシュ', 'Imperial visit'), +('殊勲', 'シュクン', 'distinguished services, meritorious deeds'), +('殊勝', 'シュショウ', 'admirable, laudable'), +('特殊', 'トクシュ', 'special, particular, peculiar, unique'), +('遮断', 'シャダン', 'isolation, cut off, blockade, quarantine, interception, deprivation'), +('遮二無二', 'シャニムニ', 'desperately, recklessly, rush headlong'), +('間遮', 'アイシャ', 'piece placed to block opponent''s check, interposed piece'), +('腫', 'シュ', 'tumor, tumour'), +('腫瘍', 'シュヨウ', 'tumor, tumour, neoplasm, neoplasia'), +('奇形腫', 'キケイシュ', 'teratoma, teratocarcinoma, teratoid tumor'), +('神経腫', 'シンケイシュ', 'neuroma'), +('疽腫', 'ソショウ', 'swelling, boil'), +('寂', 'ジャク', '(entering into) nirvana, died, silent, tranquil'), +('寂然', 'セキゼン', 'lonely, desolate, forlornness, desolation'), +('和敬清寂', 'ワケイセイジャク', 'harmony, respect, purity and tranquility, the four most important elements of the tea ceremony'), +('空寂', 'クウジャク', 'complete emptiness (i.e. as a denial of the inherent existence of all things), nirvana (where this emptiness is realized), quiet and lonely'), +('寂', 'ジャク', '(entering into) nirvana, died, silent, tranquil'), +('寂然', 'セキゼン', 'lonely, desolate, forlornness, desolation'), +('闃寂', 'ゲキセキ', 'silent and still, desolate'), +('寂々', 'セキセキ', 'sad, lonesome, desolate'), +('呪', 'ジュ', 'spell, curse, dharani, mantra'), +('呪術', 'ジュジュツ', 'magic, sorcery, incantation'), +('消災呪', 'ショウサイジュ', 'disaster-preventing incantation, disaster-preventing dharani'), +('明呪', 'ミョウジュ', 'mantra'), +('呪詛', 'ジュソ', 'curse, malediction, hex'), +('寿', 'ジュ', 'age, years, longevity, long life, congratulation, celebration, congratulatory gift'), +('寿命', 'ジュミョウ', 'life span'), +('喜寿', 'キジュ', '77th birthday'), +('米寿', 'ベイジュ', '88th birthday'), +('寿司', 'スシ', 'sushi, anything made with vinegared rice (may also contain vegetables, spices, fish, or other delicacies)'), +('すき焼き', 'スキヤキ', 'sukiyaki, thin slices of beef, cooked with various vegetables in a table-top cast-iron pan'), +('恵比寿', 'エビス', 'Ebisu, god of fishing and commerce'), +('趣味', 'シュミ', 'hobby, pastime, tastes, preference, liking'), +('趣旨', 'シュシ', 'meaning, point (e.g. of a statement), gist, effect, goal, intent, object, aim, point'), +('異趣', 'イシュ', 'extraordinary appearance'), +('意趣', 'イシュ', 'grudge, malice, spite, intention, disposition, obstinacy, reason, revenge'), +('儒', 'ジュ', 'Confucianism, Confucianist, Chinese scholar'), +('儒教', 'ジュキョウ', 'Confucianism'), +('大儒', 'タイジュ', 'great Confucian (scholar), great scholar, person of great erudition'), +('坑儒', 'コウジュ', 'burying Confucian scholars alive'), +('囚', 'シュウ', 'imprisonment, captive, prisoner'), +('囚人', 'シュウジン', 'prisoner'), +('確定死刑囚', 'カクテイシケイシュウ', 'criminal condemned to death, convict on death row'), +('罪囚', 'ザイシュウ', 'prisoner, convict'), +('舟艇', 'シュウテイ', 'boat, watercraft'), +('舟橋', 'フナバシ', 'pontoon bridge'), +('軽舟', 'ケイシュウ', 'light boat, skiff'), +('同舟', 'ドウシュウ', 'shipmates, fellow passengers'), +('需要', 'ジュヨウ', 'demand, request'), +('需給', 'ジュキュウ', 'supply and demand'), +('外需', 'ガイジュ', 'foreign demand'), +('内需', 'ナイジュ', 'domestic demand'), +('珠算', 'シュザン', 'calculation on an abacus'), +('珠玉', 'シュギョク', 'jewel, gem, gem (of a story, essay, etc.), accomplished work, beautiful piece'), +('遺珠', 'イシュ', 'unknown literary masterpiece, lost pearl'), +('胚珠', 'ハイシュ', 'ovule'), +('臭', 'シュウ', '-smell, stinking of, smacking of, hinting of'), +('臭覚', 'シュウカク', 'the sense of smell'), +('体臭', 'タイシュウ', 'body odor, body odour, personal odor, personal odour, characteristic (of someone)'), +('異臭', 'イシュウ', 'offensive smell, off-flavor, off-flavour'), +('秀', 'シュウ', 'preeminence, supremacy, distinction, excellence'), +('秀才', 'シュウサイ', 'bright person, talented student, prodigy'), +('閨秀', 'ケイシュウ', 'accomplished lady, talented woman, eminent woman'), +('清秀', 'セイシュウ', 'having refined and distinguished features, having a bright face'), +('羞恥心', 'シュウチシン', 'shyness, shame'), +('羞恥', 'シュウチ', 'shyness, bashfulness, shame'), +('嬌羞', 'キョウシュウ', 'charming and coy'), +('含羞', 'ガンシュウ', 'shyness'), +('愁傷', 'シュウショウ', 'grief, sorrow'), +('愁色', 'シュウショク', 'worried look'), +('哀愁', 'アイシュウ', 'pathos, sorrow, grief'), +('幽愁', 'ユウシュウ', 'deep contemplation, melancholy, gloom'), +('応酬', 'オウシュウ', 'exchange, reciprocation, give-and-take, return, reply, riposte'), +('無報酬', 'ムホウシュウ', 'unpaid, without pay, gratuitous, voluntary'), +('袖手傍観', 'シュウシュボウカン', 'looking on with folded arms (with one''s hands in one''s sleeves), remaining a passive onlooker'), +('袖珍', 'シュウチン', 'pocket size'), +('領袖', 'リョウシュウ', 'leader, chief, boss'), +('醜', 'シュウ', 'ugliness, shame, disgrace'), +('醜女', 'シュウジョ', 'homely woman, plain-looking woman, female demon'), +('老醜', 'ロウシュウ', 'ugliness of old age'), +('美醜', 'ビシュウ', 'beauty or ugliness, personal appearance, looks'), +('蹴鞠', 'ケマリ', 'kemari, type of football played by courtiers in ancient Japan'), +('蹴球', 'シュウキュウ', 'football (incl. soccer, rugby, American football, etc.; esp. used for soccer)'), +('一蹴', 'イッシュウ', 'flatly rejecting, curtly refusing, brushing aside, beating easily, defeating handily, one kick'), +('先蹴', 'センシュウ', 'kick-off (esp. rugby)'), +('襲撃', 'シュウゲキ', 'attack, charge, raid'), +('襲名', 'シュウメイ', 'succession to another''s professional name'), +('逆襲', 'ギャクシュウ', 'counterattack'), +('空襲', 'クウシュウ', 'air-raid'), +('十分', 'ジュウブン', 'enough, sufficient, plenty, adequate, satisfactory, sufficiently, fully, thoroughly, well, perfectly, division into ten'), +('充実', 'ジュウジツ', 'fullness, completeness, perfection, substantiality, enhancement, improvement, enrichment, upgrading, replenishment, repletion'), +('拡充', 'カクジュウ', 'expansion'), +('補充', 'ホジュウ', 'replenishment, supplementation, supplement, replacement, refilling'), +('渋滞', 'ジュウタイ', 'congestion (e.g. traffic), delay, stagnation'), +('渋面', 'ジュウメン', 'grimace, sullen face'), +('難渋', 'ナンジュウ', 'suffering, distress, difficulty, hardship, misery, being bogged down, hurdle'), +('晦渋', 'カイジュウ', 'ambiguous, obscure, equivocal'), +('汁液', 'ジュウエキ', 'juice'), +('鼻汁', 'ハナジル', '(liquid) nasal mucus, nasal discharge, pituita, snot'), +('果汁', 'カジュウ', 'fruit juice'), +('獣', 'ケモノ', 'beast, brute, animal'), +('獣医', 'ジュウイ', 'veterinarian, veterinary surgeon, vet'), +('鳥獣', 'チョウジュウ', 'birds and wild animals, wildlife'), +('海獣', 'カイジュウ', 'marine mammal'), +('銃', 'ジュウ', 'gun, rifle, small arms'), +('銃器', 'ジュウキ', 'small arms'), +('短銃', 'タンジュウ', 'pistol, revolver'), +('小銃', 'ショウジュウ', 'rifle, small arms'), +('叔母', 'オバ', 'aunt'), +('叔父', 'オジ', 'uncle'), +('伯叔', 'ハクシュク', 'brothers, one''s father''s brothers'), +('柔', 'ジュウ', 'softness, gentleness, weakness'), +('柔道', 'ジュウドウ', 'judo'), +('懐柔', 'カイジュウ', 'winning over, placation, gentle persuasion'), +('内剛外柔', 'ナイゴウガイジュウ', 'gentle on the outside but tough on the inside, an iron hand in a velvet glove'), +('柔和', 'ニュウワ', 'gentle, mild, meek, tender'), +('柔弱', 'ニュウジャク', 'weakness, effeminacy, enervation'), +('淑女', 'シュクジョ', 'lady, (female) pervert'), +('淑徳', 'シュクトク', 'womanly virtues'), +('貞淑', 'テイシュク', 'chastity, virtue, fidelity, feminine modesty'), +('私淑', 'シシュク', 'looking up to a person as one''s own master or model, being influenced by a person through his works, idolizing'), +('升', 'ショウ', 'shō, traditional unit of volume, approx. 1.8 litres'), +('升遷', 'ショウセン', 'rising up'), +('一升', 'イッショウ', 'one shō (approx. 1.8 litres)'), +('粛', 'シュク', 'solemn, respectful, reverent, silent, quiet'), +('粛軍', 'シュクグン', 'army purge'), +('自粛', 'ジシュク', 'self-restraint, voluntary restraint, self-imposed control, self-discipline'), +('粛々', 'シュクシュク', 'silent, solemn, quiet'), +('循環', 'ジュンカン', 'circulation, rotation, cycle, loop'), +('循環器', 'ジュンカンキ', 'circulatory organ'), +('因循', 'インジュン', 'indecision, vacillation'), +('遵守', 'ジュンシュ', 'observance (of laws, rules, etc.), adherence, obeying, following, abiding by, compliance'), +('遵法', 'ジュンポウ', 'law observance, obeying the law'), +('殉職', 'ジュンショク', 'dying at one''s post, being killed in the line of duty'), +('殉教', 'ジュンキョウ', 'martyrdom'), +('俊', 'シュン', 'excellence, genius'), +('俊足', 'シュンソク', 'swiftness of foot, fast runner, swift horse, fleet steed, person of great talent, gifted person'), +('英俊', 'エイシュン', 'genius, prodigy'), +('潤滑油', 'ジュンカツユ', 'lubricating oil, lubricant, lube, person or thing that makes things run smoothly, facilitator'), +('潤沢', 'ジュンタク', 'abundant, ample, plentiful, affluent, lustrous, glossy'), +('豊潤', 'ホウジュン', 'abundant, rich, ripe, mellow'), +('芳醇', 'ホウジュン', 'mellow (flavor or fragrance, esp. alcohol), rich, full-bodied, superior'), +('徐々', 'ジョジョ', 'slow, gradual, steady, calm, composed, relaxed'), +('徐行', 'ジョコウ', 'going slowly'), +('緩徐', 'カンジョ', 'gentle and quiet'), +('緒', 'ショ', 'beginning, inception'), +('緒戦', 'ショセン', 'beginning of hostilities, beginning of competition'), +('端緒', 'タンショ', 'start, beginning, first step, clue'), +('由緒', 'ユイショ', 'history, pedigree, lineage'), +('緒', 'ショ', 'beginning, inception'), +('緒戦', 'ショセン', 'beginning of hostilities, beginning of competition'), +('端緒', 'タンショ', 'start, beginning, first step, clue'), +('下町情緒', 'シタマチジョウチョ', 'the friendly atmosphere of the traditional commercial and working-class neighborhoods'), +('召集', 'ショウシュウ', 'convening, calling together (e.g. parliament), call-up (for military service)'), +('召喚', 'ショウカン', 'summons, summonsing, citation, subpoena, arraigning, calling, summoning'), +('応召', 'オウショウ', 'responding to a call-up for military service, answering a call-up'), +('庶民', 'ショミン', 'common people, ordinary people, masses'), +('庶民的', 'ショミンテキ', 'popular, folksy, plebeian, ordinary, unpretentious'), +('衆庶', 'シュウショ', 'the masses, common people'), +('士庶', 'シショ', 'samurai and commoners, normal people (as opposed to people of a high social standing)'), +('序文', 'ジョブン', 'preface, foreword, introduction'), +('叙事詩', 'ジョジシ', 'descriptive poetry, epic poem'), +('倒叙', 'トウジョ', 'reverse chronological order'), +('昇叙', 'ショウジョ', 'promotion, advancement'), +('矛盾', 'ムジュン', 'contradiction, inconsistency'), +('相矛盾', 'アイムジュン', 'mutually contradictory'), +('抄', 'ショウ', 'excerpt, extract, annotation, shō (unit of volume, approx. 1.8 ml), banknote, paper money'), +('抄本', 'ショウホン', 'excerpt, abridgment, abridgement, book of selections'), +('和名抄', 'ワミョウショウ', 'Wamyōruijushō (famous Heian-period Japanese dictionary)'), +('史記抄', 'シキショウ', 'commentary on Shiki'), +('床', 'ショウ', 'counter for beds'), +('床板', 'ユカイタ', 'floorboard'), +('起床', 'キショウ', 'rising (from one''s bed), getting up, getting out of bed'), +('温床', 'オンショウ', 'hotbed, breeding ground'), +('巡', 'ジュン', 'counter for tours, cycles, rounds, circuits, etc.'), +('巡査', 'ジュンサ', 'police officer, policeman, constable'), +('一巡', 'イチジュン', 'one round, one tour, one circuit, one patrol'), +('軽巡', 'ケイジュン', 'light cruiser'), +('瞬間', 'シュンカン', 'moment, second, instant'), +('瞬時', 'シュンジ', 'instant, moment, (split) second, (in a) flash, (in the) blink of an eye'), +('数瞬', 'スウシュン', 'a few moments'), +('転瞬', 'テンシュン', 'blink of an eye, instant, moment'), +('塾', 'ジュク', 'cram school, private tutoring school, juku'), +('塾長', 'ジュクチョウ', 'principal of a private school'), +('義塾', 'ギジュク', 'private school'), +('入塾', 'ニュウジュク', 'enrolling at a cram school'), +('匠', 'ショウ', 'craftsman, artisan, carpenter, (skilled) workman'), +('匠気', 'ショウキ', 'affectation, desire to be impressive'), +('師匠', 'シショウ', 'master, teacher, stable master'), +('意匠', 'イショウ', 'design'), +('肖像', 'ショウゾウ', 'portrait, likeness, picture'), +('肖像画', 'ショウゾウガ', 'portrait'), +('不肖', 'フショウ', 'unworthy (of one''s father, teacher, etc.), I, me, incompetent, unskilled, inexperienced, foolish, unfortunate, unlucky'), +('如才ない', 'ジョサイナイ', 'tactful, adroit, shrewd, clever, smart, affable'), +('如月', 'キサラギ', 'second month of the lunar calendar'), +('欠如', 'ケツジョ', 'lack, absence, shortage, deficiency, privation'), +('躍如', 'ヤクジョ', 'vivid, lifelike, graphic'), +('如', 'ニョ', 'tathata (the ultimate nature of all things)'), +('如実', 'ニョジツ', 'reality, actuality, actual conditions, true situation, faithful representation, vivid depiction, ultimate reality, absolute truth'), +('一如', 'イチニョ', 'oneness'), +('形影一如', 'ケイエイイチニョ', 'being inseparable as a form and its shadow, a person''s deed mirrors the good or evil of his mind, husband and wife being never apart'), +('旬', 'ジュン', 'ten-day period (in a month), ten-year period (in one''s age), decade'), +('旬報', 'ジュンポウ', 'ten-day report'), +('初旬', 'ショジュン', 'first 10 days of the month'), +('月中旬', 'ゲツチュウジュン', 'middle of the month, mid-month'), +('旬', 'シュン', 'season (e.g. fruit, fish), in vogue, popular, fresh, up to date'), +('旬の魚', 'シュンノサカナ', 'fish in season'), +('最旬', 'サイシュン', 'hottest (e.g. fashion), freshest, in vogue'), +('昇進', 'ショウシン', 'promotion, advancement, rising in rank'), +('昇給', 'ショウキュウ', 'salary raise'), +('上昇', 'ジョウショウ', 'rising, ascending, climbing'), +('定昇', 'テイショウ', 'regular (annual) pay raise'), +('準', 'ジュン', 'semi-, quasi-, associate'), +('準じる', 'ジュンジル', 'to follow, to conform, to apply to'), +('批准', 'ヒジュン', 'ratification'), +('終宵', 'シュウショウ', 'all-night long'), +('一宵', 'イッショウ', 'one evening, one night'), +('尚古', 'ショウコ', 'respect for olden days'), +('尚古主義', 'ショウコシュギ', 'classicism, primitivism'), +('和尚', 'オショウ', 'priestly teacher, preceptor, monk (esp. the head monk of a temple), priest, head priest, second highest priestly rank in Buddhism, master (of one''s art, trade, etc.)'), +('好尚', 'コウショウ', 'taste, fancy, fashion'), +('沼地', 'ヌマチ', 'marshland, wetland, swampland'), +('沼沢', 'ショウタク', 'marsh, swamp, bog'), +('湖沼', 'コショウ', 'lake, marsh, wetland, inland waters'), +('池沼', 'チショウ', 'ponds and swamps, retard, mentally disabled person'), +('症', 'ショウ', 'illness'), +('症状', 'ショウジョウ', 'symptoms, condition (of a patient)'), +('自閉症', 'ジヘイショウ', 'autism'), +('後遺症', 'コウイショウ', 'prognostic symptoms, after-effect, sequela'), +('祥', 'ショウ', 'omen (usu. good), (auspicious) sign, first two anniversaries of a person''s death'), +('祥雲', 'ショウウン', 'auspicious cloud'), +('瑞祥', 'ズイショウ', 'auspicious sign, good omen'), +('清祥', 'セイショウ', 'happiness and health'), +('渉外', 'ショウガイ', 'public relations, client liaison, client relations'), +('渉外係', 'ショウガイガカリ', 'liaison officer, public relations man'), +('干渉', 'カンショウ', 'interference, intervention, meddling'), +('交渉', 'コウショウ', 'negotiations, bargaining, discussions, talks, connection, relationship, relations, dealings'), +('称', 'ショウ', 'name, title, designation, fame, reputation'), +('称する', 'ショウスル', 'to take the name of, to call oneself, to pretend, to feign, to purport'), +('名称', 'メイショウ', 'name, title'), +('略称', 'リャクショウ', 'abbreviation'), +('紹介', 'ショウカイ', 'introduction, presentation'), +('紹介者', 'ショウカイシャ', 'person who introduces someone, introducer'), +('訟務', 'ショウム', 'litigation'), +('訟務部', 'ショウムブ', 'Litigation Department (of the Ministry of Justice)'), +('訴訟', 'ソショウ', 'litigation, lawsuit'), +('行政訴訟', 'ギョウセイソショウ', 'administrative litigation (action)'), +('手のひら', 'テノヒラ', 'palm (of the hand)'), +('掌握', 'ショウアク', 'grasping, seizing, holding, commanding, having control over'), +('合掌', 'ガッショウ', 'pressing one''s hands together in prayer, triangular frame of a thatched roof, yours sincerely, yours truly, sincerely yours'), +('鞅掌', 'オウショウ', 'being busy with'), +('焦点', 'ショウテン', 'focus (e.g. photographic), focal point'), +('焦眉', 'ショウビ', 'emergency, urgency, imminence'), +('合焦', 'ガッショウ', 'being in focus, bringing into focus'), +('中焦', 'チュウショウ', 'middle jiao (in traditional Chinese medicine), middle burner'), +('硝子', 'ガラス', 'glass, pane'), +('硝酸', 'ショウサン', 'nitric acid'), +('芒硝', 'ボウショウ', 'sal mirabilis, mirabilite, sodium sulfate decahydrate, sodium sulphate decahydrate'), +('石灰芒硝', 'セッカイボウショウ', 'glauberite'), +('晶化', 'ショウカ', 'crystallization, crystallisation'), +('晶光', 'ショウコウ', 'brilliant light'), +('結晶', 'ケッショウ', 'crystal, crystallization, crystallisation, fruits (of labor, union, etc.)'), +('水晶', 'スイショウ', '(rock) crystal, high purity quartz'), +('化粧', 'ケショウ', 'make-up, makeup, cosmetics, decoration, dressing, veneer'), +('厚化粧', 'アツゲショウ', 'thick makeup, heavy makeup'), +('奨学金', 'ショウガクキン', 'scholarship, stipend, bursary, student loan'), +('奨励', 'ショウレイ', 'encouragement, promotion, inducement, incitement, stimulation'), +('勧奨', 'カンショウ', 'encouragement, stimulation'), +('推奨', 'スイショウ', 'recommendation, endorsement'), +('詳細', 'ショウサイ', 'details, particulars, specifics, detailed, specific, minute, close-up view (of a digitally displayed map), zoomed-in view'), +('詳報', 'ショウホウ', 'detailed report, full report, details, particulars'), +('不詳', 'フショウ', 'unknown, unidentified, unspecified'), +('姓名不詳', 'セイメイフショウ', 'unidentified, name unknown'), +('衝', 'ショウ', 'important point (e.g. on a route), important role (responsibility, etc.), opposition'), +('衝突', 'ショウトツ', 'collision, crash, impact, running into, conflict, clash, discord, quarrel'), +('折衝', 'セッショウ', 'negotiation'), +('要衝', 'ヨウショウ', 'important point, strategic position, key point'), +('彰義隊', 'ショウギタイ', 'Shōgitai (group of former Tokugawa retainers opposed to the Meiji government and fought in the battle of Ueno)'), +('彰徳', 'ショウトク', 'public praise, making another''s virtues well-known'), +('顕彰', 'ケンショウ', 'honouring (publicly), honoring, making someone''s good deeds or achievements well-known'), +('表彰', 'ヒョウショウ', 'public acknowledgment, public acknowledgement, public recognition, commendation, awarding'), +('詔', 'ミコトノリ', 'imperial decree, imperial edict'), +('詔書', 'ショウショ', 'imperial edict, decree'), +('大詔', 'タイショウ', 'imperial rescript'), +('償還', 'ショウカン', 'repayment, redemption, amortization, amortisation'), +('償却', 'ショウキャク', 'repayment, redemption, depreciation, amortization, amortisation'), +('補償', 'ホショウ', 'compensation, reparation'), +('賠償', 'バイショウ', 'compensation, reparations, indemnity, damages'), +('剰余金', 'ジョウヨキン', 'surplus, balance'), +('冗員', 'ジョウイン', 'supernumerary, superfluous staff, excess personnel, useless staff'), +('余剰', 'ヨジョウ', 'surplus, remainder, residue, margin, balance'), +('出生過剰', 'シュッショウカジョウ', 'excessive birth (rate)'), +('壌土', 'ジョウド', 'soil, loamy soil, loam, soil with clay content of 25-37.5%'), +('平壌', 'ピョンヤン', 'Pyongyang (North Korea)'), +('黄壌', 'コウジョウ', 'yellow soil, loess, Hades, hell, underworld, world of the dead'), +('冗', 'ジョウ', 'waste, uselessness, redundance'), +('冗談', 'ジョウダン', 'joke, jest, funny story'), +('憧憬', 'ドウケイ', 'longing, yearning, aspiration, adoration'), +('憧憬', 'ドウケイ', 'longing, yearning, aspiration, adoration'), +('丈', 'ジョウ', '3.03 meters (ten shaku), length, measure, Mr., Mrs.'), +('丈夫', 'ジョウブ', 'healthy, robust, strong, solid, durable'), +('気丈', 'キジョウ', 'stout-hearted, firm, courageous, brave, tough'), +('方丈', 'ホウジョウ', 'square jō (approx. 10 sq feet), abbot''s chamber, chief priest'), +('浄水器', 'ジョウスイキ', 'water filter, water purification system'), +('浄化槽', 'ジョウカソウ', 'water-purification tank, septic tank'), +('自浄', 'ジジョウ', 'self-purification, self-cleansing'), +('不浄', 'フジョウ', 'uncleanliness, dirtiness, impurity, filthiness, defilement, menses, feces (faeces), bathroom'), +('畳', 'ジョウ', 'tatami mat (esp. as a measure of room size, either 1.82 sqm or 1.54 sqm)'), +('畳韻', 'ジョウイン', 'repeated rhymes (in Chinese poetry), recurring rhymes'), +('重畳', 'チョウジョウ', 'placed one upon another, piled up, excellent, splendid, superimposition, superposition'), +('山岳重畳', 'サンガクチョウジョウ', 'mountains rising one above another'), +('醸造', 'ジョウゾウ', 'brewing'), +('醸成', 'ジョウセイ', 'brewing, fermenting, arousing, causing, creating, fermenting, bringing about'), +('銘醸', 'メイジョウ', 'famous winery, famous brewery'), +('佳醸', 'カジョウ', 'sweet sake, good wine'), +('錠', 'ジョウ', 'lock, padlock, tablet, lozenge, pill'), +('錠剤', 'ジョウザイ', 'pill, lozenge, tablet'), +('施錠', 'セジョウ', 'locking'), +('糖衣錠', 'トウイジョウ', 'sugar-coated pill'), +('礁', 'ショウ', 'reef'), +('礁湖', 'ショウコ', 'barrier lagoon, coral-reef lagoon'), +('環礁', 'カンショウ', 'atoll, circular coral reef'), +('座礁', 'ザショウ', 'running aground, being stranded, grounding, beaching'), +('鐘楼', 'ショウロウ', 'belfry, bell tower'), +('鍾乳洞', 'ショウニュウドウ', 'limestone cave, limestone cavern'), +('警鐘', 'ケイショウ', 'alarm bell, fire bell, warning, wake-up call'), +('鳴鐘', 'メイショウ', 'bell-ringing (at a temple)'), +('拭浄', 'ショクジョウ', 'wiping and purifying, wiping and cleansing'), +('払拭', 'フッショク', 'wiping out, sweeping away, eradicating, dispelling'), +('清拭', 'セイシキ', 'bed bath, sponge bath, blanket bath, toilet'), +('払拭', 'フッショク', 'wiping out, sweeping away, eradicating, dispelling'), +('清拭', 'セイシキ', 'bed bath, sponge bath, blanket bath, toilet'), +('嬢', 'ジョウ', 'unmarried woman, Miss, -ess, -ette'), +('娘核', 'ジョウカク', 'daughter nucleus'), +('令嬢', 'レイジョウ', '(your) daughter, young woman'), +('愛嬢', 'アイジョウ', 'one''s beloved daughter'), +('植民地', 'ショクミンチ', 'colony, (Japanese) settlement (in Brazil)'), +('植民', 'ショクミン', 'colonization, colonisation'), +('繁殖', 'ハンショク', 'breeding, propagation, reproduction, multiplication, increase'), +('移植', 'イショク', 'transplanting (a plant), transplant, grafting, transplantation (of an organ, tissue, etc.), transplant, embryo transfer, embryo transplant, porting (software)'), +('嘱託', 'ショクタク', 'commission, entrusting with (work), part-time employee, temporary work'), +('嘱望', 'ショクボウ', '(having great) expectation, pinning one''s hopes on'), +('委嘱', 'イショク', 'commissioning, entrusting (with), request, appointment (to a position)'), +('遺嘱', 'イショク', 'dying wish, wish by dying person to be carried out after their death'), +('飾緒', 'ショクショ', 'aiguillette (ornamental braided cord)'), +('装飾', 'ソウショク', 'ornament, decoration'), +('修飾', 'シュウショク', 'ornamentation, embellishment, decoration, adornment, modification, qualification'), +('恥', 'ハジ', 'shame, embarrassment, disgrace'), +('辱知', 'ジョクチ', 'acquaintance'), +('侮辱', 'ブジョク', 'insult, affront, slight, contempt (e.g. of court)'), +('雪辱', 'セツジョク', 'vindication of honour, vindication of honor, making up for loss, revenge'), +('触媒', 'ショクバイ', 'catalyst'), +('触発', 'ショクハツ', 'detonation by contact, contact detonation, touching off (something), triggering, sparking, provocation, inspiration'), +('接触', 'セッショク', 'touch, contact, touching'), +('鎧袖一触', 'ガイシュウイッショク', '(beating someone) hands down, with a single blow'), +('伸縮性', 'シンシュクセイ', 'elasticity'), +('伸縮', 'シンシュク', 'expansion and contraction, elasticity, flexibility'), +('続伸', 'ゾクシン', 'continuous rise (in market price)'), +('急伸', 'キュウシン', 'sudden rise (esp. of stock prices), jump'), +('芯', 'シン', 'wick, marrow, staple (for stapler), (pencil) lead, stuffing, pith, core, heart, centre, center, pistil (of a flower), stamen'), +('芯が強い', 'シンガツヨイ', 'mentally strong, strong-willed'), +('排水芯', 'ハイスイシン', 'toilet drain outlet'), +('灯心', 'トウシン', '(lamp) wick'), +('侵入', 'シンニュウ', 'invasion, incursion, raid, aggression, intrusion, trespass, penetration, hacking'), +('侵略', 'シンリャク', 'invasion (e.g. of a country), raid, aggression'), +('不可侵', 'フカシン', 'inviolability, nonaggression, sacredness'), +('辛', 'カノト', '8th in rank, eighth sign of the Chinese calendar'), +('辛抱', 'シンボウ', 'patience, endurance'), +('細辛', 'サイシン', 'Siebold''s wild ginger (esp. its dried root or rhizome, used as an antitussive and analgesic in traditional Chinese medicine)'), +('薄葉細辛', 'ウスバサイシン', 'Siebold''s wild ginger (Asarum sieboldii)'), +('妊娠', 'ニンシン', 'pregnancy, conception, gestation'), +('人工妊娠', 'ジンコウニンシン', 'pregnancy resulting from artificial insemination, in-vitro fertilization, etc. (esp. of animals)'), +('唇音', 'シンオン', 'labial sound'), +('唇音化', 'シンオンカ', 'labialization'), +('下唇', 'シタクチビル', 'lower lip'), +('上唇', 'ウワクチビル', 'upper lip, labrum'), +('津液', 'シンエキ', 'saliva, spit, spittle, fluid (in Chinese medicine, esp. a colourless bodily fluid, e.g. tears)'), +('津々', 'シンシン', 'gushing, overflowing, everlasting, unfailing, endless'), +('京津', 'ケイシン', 'Kyoto-Otsu, Kyoto and Otsu, Kyoto-Settsu, Kyoto and Settsu'), +('入津', 'ニュウシン', 'entering a port'), +('後輪', 'コウリン', 'rear wheel, cantle'), +('尻座', 'コウザ', 'crouching'), +('紳士', 'シンシ', 'gentleman'), +('紳士的', 'シンシテキ', 'gentlemanly, well-mannered, well-bred, gentlemanlike'), +('貴紳', 'キシン', 'noble, men of rank, notables'), +('縉紳', 'シンシン', 'person of rank, person of status, ranked official'), +('振興', 'シンコウ', 'promotion, encouragement'), +('振幅', 'シンプク', 'amplitude (of vibration), (degree of) instability, volatility, fluctuation, variation, swing'), +('三振', 'サンシン', 'strikeout, strike out, fanning out'), +('不振', 'フシン', 'dullness, slump, stagnation, inactivity, depression'), +('浸透', 'シントウ', 'permeation (of thought, ideology, culture, etc.), infiltration (e.g. of ideas), spread, penetration (e.g. into a market), pervasion, permeation (of a liquid, etc.), soaking, percolation, osmosis'), +('浸水', 'シンスイ', 'inundation, submersion, flood'), +('防浸', 'ボウシン', 'watertight, waterproof'), +('液浸', 'エキシン', 'immersion, dipping, in microscopy, immersing both the objective lens and the specimen in a liquid to increase the numerical aperture, in photolithography, filling the air gap between the final lens and the wafer surface with a liquid to increase the resolution'), +('譲歩', 'ジョウホ', 'concession, conciliation, compromise'), +('譲渡', 'ジョウト', 'transfer, assignment, conveyance'), +('分譲', 'ブンジョウ', 'selling (real-estate) lots'), +('移譲', 'イジョウ', 'transfer, assignment'), +('炊事', 'スイジ', 'cooking, kitchen work'), +('炊飯器', 'スイハンキ', 'rice cooker'), +('雑炊', 'ゾウスイ', 'rice gruel containing vegetables, fish, etc., and seasoned with miso or soy sauce'), +('烹炊', 'ホウスイ', 'cooking by boiling'), +('迅速', 'ジンソク', 'quick, fast, rapid, swift, prompt, streamlined, expedited, expeditious'), +('迅速果敢', 'ジンソクカカン', 'quick and decisive, fast and daring, swift and resolute'), +('奮迅', 'フンジン', 'impetuous dash forward'), +('酔客', 'スイキャク', 'drunken person'), +('酔漢', 'スイカン', 'drunkard, drunken fellow'), +('泥酔', 'デイスイ', 'being dead drunk, drunken stupor'), +('局所麻酔', 'キョクショマスイ', 'local anesthesia, local anaesthesia'), +('寝', 'ネ', 'sleep'), +('寝台', 'シンダイ', 'bed, couch'), +('就寝', 'シュウシン', 'going to bed, retiring (for the night)'), +('腎', 'ジン', 'kidney'), +('腎臓', 'ジンゾウ', 'kidney'), +('右腎', 'ウジン', 'right kidney'), +('後じん', 'コウジン', 'metanephros, third stage of kidney development'), +('吹奏楽', 'スイソウガク', 'wind music, wind instrument music'), +('推挙', 'スイキョ', 'recommendation (of a person for a position), nomination'), +('鼓吹', 'コスイ', 'rousing (courage, morale, etc.), encouragement, advocacy, promotion (of a belief), encouragement, inspiring (someone with an idea)'), +('陣', 'ジン', 'battle formation, camp, encampment, position, group, gang, party, corps, war, battle, campaign'), +('陣営', 'ジンエイ', 'camp (supporters of a doctrine, party, etc.), faction (of a party), military camp, encampment, cantonment'), +('退陣', 'タイジン', 'resignation, stepping down, retirement, retreat, decamping, withdrawal'), +('出陣', 'シュツジン', 'going into battle, departure for the front, appearing (in a match), starting an election campaign'), +('兵刃', 'ヘイジン', 'sword blade'), +('刀刃', 'トウジン', 'sword blade'), +('刃傷', 'ニンジョウ', 'bloodshed'), +('刃傷沙汰', 'ニンジョウザタ', 'bloodshed'), +('須らく', 'スベカラク', 'absolutely (ought to), by all means, all, entirely'), +('須恵器', 'スエキ', 'Sue ware (type of unglazed pottery made from the middle of the Kofun era through the Heian era)'), +('恵比寿', 'エビス', 'Ebisu, god of fishing and commerce'), +('提宇子', 'ダイウス', 'God'), +('須髯', 'シュゼン', 'beard'), +('須弥山', 'シュミセン', 'Mount Sumeru (believed to be the centre of the Buddhist world)'), +('粋', 'スイ', 'essence, the best, cream, chic, smart, stylish, tasteful, refined, sophisticated, considerate, understanding, thoughtful, tactful, familiar with worldly pleasures (esp. sexual relations, geisha districts and red-light districts)'), +('粋が身を食う', 'スイガミヲクウ', 'too much pleasure ruins a man (esp. in reference to spending too much time with geisha and prostitutes), playing the dandy ruins a man'), +('抜粋', 'バッスイ', 'extract, excerpt, selection'), +('国粋', 'コクスイ', 'national characteristics'), +('遂行', 'スイコウ', 'accomplishment, execution'), +('完遂', 'カンスイ', 'successful execution, accomplishment, completion, fulfillment, carrying through'), +('既遂', 'キスイ', 'already finished (action), already accomplished, committed (crime; as opposed to attempted), perpetrated, consummated, successful'), +('衰退', 'スイタイ', 'decline, degeneration, decay, waning, ebbing'), +('衰弱', 'スイジャク', 'weakness, debility, breakdown, prostration'), +('老衰', 'ロウスイ', 'senility, senile decay, infirmity (through age)'), +('盛衰', 'セイスイ', 'rise and fall, ups and downs, welfare, vicissitudes'), +('尋', 'ヒロ', 'fathom'), +('尋問', 'ジンモン', 'questioning, interrogation, examination (of a witness)'), +('討尋', 'トウジン', 'minute investigation, thorough inquiry, thorough enquiry'), +('審尋', 'シンジン', 'hearing, interrogation'), +('薪炭', 'シンタン', 'wood and charcoal, fuel'), +('薪水', 'シンスイ', 'fuel and water, firewood and water, gathering firewood and drawing water, kitchen work, housework'), +('柴薪', 'サイシン', 'brushwood and firewood'), +('甚大', 'ジンダイ', 'very great, enormous, serious'), +('甚句', 'ジンク', 'lively song, lively dance'), +('激甚', 'ゲキジン', 'intenseness, violence, severity, vehemence, keenness'), +('幸甚', 'コウジン', 'pleased, obliged, appreciative'), +('元帥', 'ゲンスイ', '(field) marshal, (fleet) admiral, general of the army'), +('総帥', 'ソウスイ', 'commander-in-chief, leader, head of a group of companies'), +('尽', 'ジン', 'last day (of the month)'), +('尽力', 'ジンリョク', 'efforts, exertion, endeavour, assistance, services'), +('理不尽', 'リフジン', 'unreasonable, irrational, outrageous, absurd'), +('縦横無尽', 'ジュウオウムジン', 'freely, right and left, as one pleases'), +('震', 'シン', 'zhen (one of the trigrams of the I Ching: thunder, east)'), +('震源', 'シンゲン', 'hypocentre (of an earthquake), hypocenter'), +('微震', 'ビシン', 'slight earthquake'), +('軽震', 'ケイシン', 'weak earthquake'), +('睡眠', 'スイミン', 'sleep'), +('睡魔', 'スイマ', 'sleepiness, drowsiness, the sandman, Morpheus'), +('一睡', 'イッスイ', 'wink of sleep, snooze, doze, nap'), +('熟睡', 'ジュクスイ', 'deep sleep, sound sleep, profound sleep'), +('穂状', 'スイジョウ', 'shaped like an ear of grain'), +('穂状花序', 'スイジョウカジョ', 'spike (inflorescence)'), +('花穂', 'カスイ', 'spike'), +('出穂', 'シュッスイ', 'appearance of ears of grain'), +('慎重', 'シンチョウ', 'careful, cautious, prudent, discreet, deliberate'), +('慎重吟味', 'シンチョウギンミ', 'scrutiny, careful (close) examination (investigation), careful inquiry, careful selection'), +('謹慎', 'キンシン', 'self restraint, moderating one''s behaviour, penitence, discipline, confinement to one''s home, house arrest'), +('不謹慎', 'フキンシン', 'indiscrete, imprudent, unscrupulous'), +('診察', 'シンサツ', 'medical examination'), +('診断', 'シンダン', 'diagnosis, medical examination'), +('打診', 'ダシン', 'percussion, tapping, examining by percussion, sounding out (someone''s intentions), making an approach (about)'), +('誤診', 'ゴシン', 'wrong diagnosis, misdiagnosis'), +('髄', 'ズイ', 'medulla, marrow, pith'), +('髄膜炎', 'ズイマクエン', 'meningitis'), +('骨髄', 'コツズイ', 'bone marrow, medulla, true spirit, one''s mind'), +('脊髄', 'セキズイ', 'spinal cord'), +('崇拝', 'スウハイ', 'worship, adoration, admiration, cult'), +('崇高', 'スウコウ', 'lofty, sublime, noble, the sublime (aesthetics)'), +('尊崇', 'ソンスウ', 'reverence, veneration'), +('随意', 'ズイイ', 'voluntary, optional, free, elective'), +('随分', 'ズイブン', 'very, extremely, surprisingly, considerably, awfully, terribly, terrible, horrid, contemptible, reprehensible, remarkable, extraordinary'), +('追随', 'ツイズイ', 'following (in the footsteps of), catching up with, coming level with'), +('付随', 'フズイ', 'being incident to, being accompanied by, being collateral with, being attached to'), +('審判', 'シンパン', 'judgement, judgment, decision, verdict, sentence, refereeing, umpiring, judging, judgement (of God), referee, umpire, judge'), +('審査', 'シンサ', 'judging, inspection, examination, investigation, review'), +('一審', 'イッシン', 'first instance, first trial'), +('再審', 'サイシン', 'retrial, reopening of a case, review, reexamination'), +('老杉', 'ロウサン', 'old cryptomeria'), +('据銃', 'キョジュウ', 'mounting a gun (i.e. holding the stock against one''s shoulder), gun mount'), +('拮据', 'キッキョ', 'diligence, assiduity, pinching, hard toil'), +('姓', 'セイ', 'surname, family name, hereditary title (used in ancient Japan to denote rank and political standing)'), +('姓名', 'セイメイ', '(full) name, family name and given name'), +('改姓', 'カイセイ', 'change of one''s family name, changed family name'), +('同姓', 'ドウセイ', 'same surname'), +('姓', 'セイ', 'surname, family name, hereditary title (used in ancient Japan to denote rank and political standing)'), +('俗姓', 'ゾクショウ', 'secular surname (of a priest)'), +('小百姓', 'コビャクショウ', 'peasant, small farmer'), +('征服', 'セイフク', 'conquest, subjugation, overcoming (a difficulty), conquering (e.g. a mountain), mastery (of a skill)'), +('征圧', 'セイアツ', 'conquest, subjugation, overcoming, controlling'), +('遠征', 'エンセイ', 'expedition, (military) campaign, tour (by a sports team, performer, etc.), visit'), +('出征', 'シュッセイ', 'going to war, departure for the front, departure for military service (in response to a draft)'), +('是', 'ゼ', 'righteousness, justice, right'), +('是非', 'ゼヒ', 'certainly, without fail, right and wrong, pros and cons'), +('国是', 'コクゼ', 'national policy'), +('党是', 'トウゼ', 'party platform, party principles'), +('彼是', 'アレコレ', 'this and that, this or that, one thing or another, this way and that, around, about, round about, roughly, nearly, almost'), +('凄艶', 'セイエン', 'weirdly beautiful'), +('凄惨', 'セイサン', 'ghastly, gruesome, appalling, lurid'), +('斉', 'セイ', 'Qi (kingdom in China during the Spring and Autumn Period and the Period of the Warring States), Ch''i'), +('斉唱', 'セイショウ', 'singing in unison, chanting in unison'), +('一斉', 'イッセイ', 'simultaneous, all at once'), +('整斉', 'セイセイ', 'arranged, organized, orderly, neat'), +('斎行', 'サイコウ', 'carrying out (a religious festival or ceremony)'), +('斉衡', 'サイコウ', 'Saikō era (854.11.30-857.2.21)'), +('逝去', 'セイキョ', 'death, passing'), +('急逝', 'キュウセイ', 'sudden death'), +('永逝', 'エイセイ', 'death, dying'), +('女婿', 'ジョセイ', 'one''s son-in-law'), +('愛婿', 'アイセイ', 'one''s favorite son-in-law, one''s favourite son-in-law'), +('請求', 'セイキュウ', 'claim, demand, charge, application, request, billing (for a service)'), +('請願', 'セイガン', 'petition'), +('申請', 'シンセイ', 'application, request, petition'), +('招請', 'ショウセイ', 'invitation'), +('普請', 'フシン', 'building, construction, group effort by Buddhist practitioners, group activities by a community (e.g. cleaning, etc.)'), +('安普請', 'ヤスブシン', 'cheap structure (e.g. of houses)'), +('請', 'ショウ', 'request, invitation, privilege in criminal law given to nobles of the fifth rank or above (ritsuryō system)'), +('招待', 'ショウタイ', 'invitation'), +('招請', 'ショウセイ', 'invitation'), +('拝請', 'ハイショウ', 'humbly inviting'), +('枢要', 'スウヨウ', '(most) important, principal, pivotal, key, cardinal'), +('枢軸', 'スウジク', 'axle, pivot, center (of power, activity), central point, the Axis (WWII alliance)'), +('中枢', 'チュウスウ', 'centre, center, pivot, mainstay, nucleus, hub, backbone, central figure, pillar, key person, central nervous system'), +('神経中枢', 'シンケイチュウスウ', 'nerve centre, nerve center'), +('析出', 'セキシュツ', 'separation, deposition, precipitation'), +('分析', 'ブンセキ', 'analysis'), +('解析', 'カイセキ', 'analysis, analytical study, parsing, parse'), +('醒覚', 'セイカク', 'awakening, waking up, opening one''s eyes'), +('覚醒', 'カクセイ', 'waking up, awakening, arousal, revival, disillusion, disillusionment, awakening'), +('警醒', 'ケイセイ', 'warning'), +('隻', 'セキ', 'counter for ships (large boats), counter for half of a pair (e.g. half of a folding screen), counter for fish, birds, arrows, etc.'), +('隻影', 'セキエイ', 'a glimpse of an object''s outlines'), +('数隻', 'スウセキ', 'several (boats)'), +('斥力', 'セキリョク', 'repulsion, repulsive force'), +('排斥', 'ハイセキ', 'rejection, expulsion, boycott, ostracism'), +('外国人排斥', 'ガイコクジンハイセキ', 'xenophobia, exclusion (of foreigners)'), +('外戚', 'ガイセキ', 'maternal relative'), +('休戚', 'キュウセキ', 'weal and woe, joys and sorrows, welfare'), +('脊椎', 'セキツイ', 'spine, vertebral column'), +('脊髄', 'セキズイ', 'spinal cord'), +('跡', 'セキ', 'trace'), +('史跡', 'シセキ', 'historic landmark, historic site, historic remains'), +('軌跡', 'キセキ', 'tire track, traces of a person or thing, path one has taken, locus'), +('籍', 'セキ', 'one''s family register, one''s domicile, nationality, membership (club, party, etc.)'), +('籍船', 'セキセン', 'ship registry'), +('在籍', 'ザイセキ', 'being enrolled (at a school), being registered, being a member (of a team, organization, etc.)'), +('移籍', 'イセキ', 'transfer (of one''s name into another family register), transfer (to another team, company, etc.)'), +('惜敗', 'セキハイ', 'regrettable defeat, defeat by a narrow margin'), +('惜春', 'セキシュン', 'lamenting the passing of spring, lamenting the passing of one''s youth'), +('痛惜', 'ツウセキ', 'deep regret'), +('哀惜', 'アイセキ', 'grief, sorrow'), +('誓約', 'セイヤク', 'oath, vow, pledge, covenant'), +('誓約書', 'セイヤクショ', 'written oath, covenant, pledge'), +('宣誓', 'センセイ', 'oath, abjuration, pledge'), +('祈誓', 'キセイ', 'vow, oath, pledge'), +('窃用', 'セツヨウ', 'using without permission, using information obtained in the course of one''s duties'), +('剽窃', 'ヒョウセツ', 'plagiarism, piracy'), +('鼠窃', 'ソセツ', 'sneak-thief'), +('摂理', 'セツリ', '(divine) providence, dispensation'), +('摂護腺', 'セツゴセン', 'prostate gland'), +('包摂', 'ホウセツ', 'subsumption, connotation, inclusion, encompassing'), +('金融包摂', 'キンユウホウセツ', 'financial inclusion, availability and equality of opportunities to access financial services'), +('接心', 'セッシン', 'concentration, period of intensive zazen'), +('摂受', 'ショウジュ', 'converting someone (gently) to Buddhism, proselytization'), +('扇風機', 'センプウキ', 'electric fan'), +('扇子', 'センス', 'folding fan'), +('換気扇', 'カンキセン', 'ventilation fan, extractor fan'), +('夏炉冬扇', 'カロトウセン', 'summer fires and winter fans, useless things'), +('拙', 'セツ', 'poor, unskillful, clumsy, I, me'), +('拙劣', 'セツレツ', 'clumsy, unskillful'), +('稚拙', 'チセツ', 'unskillful, childish, immature, naive, artless, clumsy, crude'), +('巧拙', 'コウセツ', 'skill, workmanship, dexterity, quality'), +('栓', 'セン', 'stopper, cork, plug, bung, tap, faucet, stopcock'), +('栓抜き', 'センヌキ', 'bottle opener, corkscrew'), +('脳血栓', 'ノウケッセン', 'cerebral thrombosis'), +('血栓', 'ケッセン', 'thrombus, blood clot'), +('占領', 'センリョウ', 'occupying, having (an area) all to oneself, military occupation, possession, capture, seizure'), +('占拠', 'センキョ', 'occupation (e.g. of territory), exclusive possession'), +('寡占', 'カセン', 'oligopoly'), +('買い手寡占', 'カイテカセン', 'oligopsony'), +('仙', 'セン', 'hermit, wizard, wizardry'), +('仙', 'セント', 'cent (monetary unit)'), +('水仙', 'スイセン', 'daffodil (esp. Narcissus tazetta var. chinensis), narcissus'), +('黄水仙', 'キズイセン', 'jonquil (Narcissus jonquilla)'), +('仙', 'セント', 'cent (monetary unit)'), +('仙洞御所', 'セントウゴショ', 'palace of a retired emperor'), +('旋律', 'センリツ', 'melody, tune'), +('旋風', 'センプウ', 'whirlwind, sensation, commotion, hullabaloo'), +('斡旋', 'アッセン', 'good offices, kind offices, services, influence, recommendation, mediation, intercession, conciliation, acting as a go-between'), +('凱旋', 'ガイセン', 'triumphant return, returning in triumph'), +('羨望', 'センボウ', 'envy'), +('羨望の的', 'センボウノマト', 'object of envy'), +('欣羨', 'キンセン', 'being very jealous, extreme jealousy'), +('煎', 'セン', 'infusing (tea), infusion'), +('煎餅', 'センベイ', 'rice cracker, senbei, Japanese cracker, rice cookie, wafer'), +('焙煎', 'バイセン', 'roasting (e.g. of coffee)'), +('香煎', 'コウセン', 'roasted barley flour, parched flour with various ingredients added and drunk in hot water'), +('腺', 'セン', 'gland'), +('腺癌', 'センガン', 'adenocarcinoma'), +('前立腺', 'ゼンリツセン', 'prostate (gland)'), +('甲状腺', 'コウジョウセン', 'thyroid gland'), +('遷都', 'セント', 'relocation of the capital, transfer of the capital'), +('遷宮', 'セングウ', 'installation of a deity in a new shrine, transfer of a shrine'), +('変遷', 'ヘンセン', 'change, transition, vicissitudes'), +('左遷', 'サセン', 'demotion, relegation, reduction in rank, degradation, downward move'), +('詮', 'セン', 'way, method, means, effect, result, benefit, help, worth, use'), +('選考', 'センコウ', 'selection, screening'), +('禅', 'ゼン', 'dhyana (profound meditation), Zen (Buddhism)'), +('禅坊主', 'ゼンボウズ', 'Zen monk'), +('吹禅', 'スイゼン', 'Zen blowing meditation (performed with shakuhachi)'), +('如来禅', 'ニョライゼン', 'Zen Buddhism based on the original teachings of Buddha'), +('繊', 'セン', 'daikon julienne, julienned daikon, one ten-millionth'), +('繊維', 'センイ', 'fibre, fiber, textile'), +('化繊', 'カセン', 'synthetic fiber, synthetic fibre, chemical fiber, chemical fibre'), +('合繊', 'ゴウセン', 'synthetic fiber, synthetic fibre'), +('阻止', 'ソシ', 'obstruction, check, hindrance, prevention, impediment, interdiction, preemption, blocking'), +('阻害', 'ソガイ', 'obstruction, impediment, hindrance, inhibition, blocking, check'), +('悪阻', 'ツワリ', 'morning sickness, hyperemesis gravidarum'), +('妊娠悪阻', 'ニンシンオソ', 'hyperemesis gravidarum, HG, severe morning sickness'), +('疎', 'ソ', 'sparse, distant (of a relationship), estranged, alienated'), +('疎通', 'ソツウ', '(mutual) understanding, communication, passing without obstruction'), +('過疎', 'カソ', 'depopulation'), +('空疎', 'クウソ', 'empty (e.g. argument), insubstantial, hollow, fruitless'), +('漸', 'ゼン', 'gradual progress'), +('漸減', 'ゼンゲン', 'gradual decrease, decline'), +('西漸', 'セイゼン', 'westward advance'), +('東漸', 'トウゼン', 'eastward advance'), +('粗', 'ソ', 'coarse, rough, crude, raw, unrefined'), +('粗末', 'ソマツ', 'crude, rough, plain, humble, shabby'), +('精粗', 'セイソ', 'fineness or coarseness, minuteness or roughness'), +('修繕', 'シュウゼン', 'repair, mending'), +('営繕', 'エイゼン', 'maintenance and repair, upkeep (of equipment)'), +('狙撃兵', 'ソゲキヘイ', 'sniper, sharpshooter'), +('狙撃', 'ソゲキ', 'shooting, sniping'), +('践言', 'センゲン', 'keeping one''s word'), +('践祚', 'センソ', 'accession (to the throne)'), +('履践', 'リセン', 'implementation, carrying out, practice'), +('薦挙', 'センキョ', 'recommendation'), +('仙骨', 'センコツ', 'sacrum, sacral bone, hermitry, appearance of a hermit, unworldliness, unusual physique, outstanding appearance'), +('推薦', 'スイセン', 'recommendation, referral, endorsement'), +('自薦', 'ジセン', 'self-recommendation, self-nomination, putting oneself forward'), +('租', 'ソ', 'rice tax (ritsuryō system), rice levy, tax on rice fields, annual tribute, annual tax'), +('租税', 'ソゼイ', 'taxes, taxation'), +('公租', 'コウソ', 'public tax'), +('貢租', 'コウソ', 'annual tax, tribute'), +('措置', 'ソチ', 'measure, step, action'), +('措辞', 'ソジ', 'wording, phraseology, diction'), +('特措', 'トクソ', 'special measure, special measures'), +('挙措', 'キョソ', 'behavior, behaviour, manner'), +('膳', 'ゼン', 'small dining table (usu. for a single person), serving tray (with legs), meal, food, serving, counter for bowlfuls of rice, counter for pairs of chopsticks'), +('膳越し', 'ゼンゴシ', 'rudely reaching over one''s serving tray to grab food behind it with one''s chopsticks'), +('大膳', 'ダイゼン', 'black-bellied plover, grey plover (Pluvialis squatarola)'), +('陪膳', 'バイゼン', 'serving food (to a nobleman), nobleman''s server'), +('鮮明', 'センメイ', 'vivid, clear, distinct'), +('鮮度', 'センド', '(degree of) freshness'), +('海鮮', 'カイセン', 'seafood'), +('来鮮', 'ライセン', 'coming to Korea'), +('箋', 'セン', 'slip (of paper), tag (usu. bamboo, wood, ivory, etc.), label'), +('付箋', 'フセン', 'sticky note, tag, slip, label, Post-it note'), +('鄭箋', 'テイセン', 'commentary on the Book of Odes by Zheng Xuan'), +('潜水', 'センスイ', 'diving, submerging, going underwater'), +('潜入', 'センニュウ', 'infiltration, sneaking in, going undercover'), +('原潜', 'ゲンセン', 'nuclear submarine'), +('対潜', 'タイセン', 'antisubmarine'), +('遡河魚', 'ソカギョ', 'anadromous fish (fish that migrates upstream, e.g. salmon)'), +('遡及', 'ソキュウ', 'tracing back, retroactivity'), +('遡源', 'サクゲン', 'returning to the origin, going back to the beginning, retracing'), +('掃除', 'ソウジ', 'cleaning, sweeping, dusting, scrubbing'), +('掃除機', 'ソウジキ', 'vacuum cleaner, vacuum, hoover, cleaning device'), +('清掃', 'セイソウ', 'cleaning, clean-up, garbage collection, scavenging'), +('一掃', 'イッソウ', 'clean sweep, purging, doing away with, eradication'), +('爽快', 'ソウカイ', 'refreshing, exhilarating, invigorating, bracing'), +('爽秋', 'ソウシュウ', 'refreshing and pleasant autumn'), +('豪爽', 'ゴウソウ', 'fine disposition'), +('英姿颯爽', 'エイシサッソウ', 'cutting a fine (dashing, gallant, noble) figure'), +('塑像', 'ソゾウ', 'plaster image, clay figure'), +('塑性', 'ソセイ', 'plasticity'), +('彫塑', 'チョウソ', 'carving, engraving, clay model, plastic art'), +('泥塑', 'デイソ', 'unfired clay figurine'), +('桑田', 'ソウデン', 'mulberry plantation'), +('桑園', 'ソウエン', 'mulberry plantation'), +('扶桑', 'フソウ', 'land east of China, Japan'), +('挿入', 'ソウニュウ', 'insertion, incorporation, infixing'), +('挿話', 'ソウワ', 'episode, side story, story within a story, aside, anecdote'), +('外挿', 'ガイソウ', 'extrapolation'), +('内挿', 'ナイソウ', 'interpolation'), +('遭難', 'ソウナン', 'disaster, accident, shipwreck, distress'), +('遭難信号', 'ソウナンシンゴウ', 'distress signal, SOS'), +('曾', 'ヒイ', 'great (i.e. great-grandson, great-grandmother)'), +('ひ孫', 'ヒマゴ', 'great-grandchild'), +('曾', 'ヒイ', 'great (i.e. great-grandson, great-grandmother)'), +('ひ孫', 'ヒマゴ', 'great-grandchild'), +('白檜曽', 'シラビソ', 'Veitch''s silver fir (Abies veitchii)'), +('大白檜曽', 'オオシラビソ', 'Maries'' fir (Abies mariesii)'), +('曾遊', 'ソウユウ', 'former visit'), +('壮', 'ソウ', 'vibrancy, strength, bravery, manliness, (esp. of men) one''s prime (approx. age 30), counter for times of moxibustion'), +('壮大', 'ソウダイ', 'magnificent, grand, majestic, splendid'), +('悲壮', 'ヒソウ', 'tragic but brave, heroic, grim, pathetic'), +('強壮', 'キョウソウ', 'able-bodied, robust, sturdy, strong'), +('訴訟', 'ソショウ', 'litigation, lawsuit'), +('訴状', 'ソジョウ', 'petition, complaint, (legal) brief'), +('控訴', 'コウソ', 'appeal to a higher court, intermediate appeal'), +('敗訴', 'ハイソ', 'loss of a (legal) case'), +('曹', 'ソウ', 'palace room for government officials, fellow, set (of people), clan, family'), +('曹灰硼石', 'ソウカイホウセキ', 'ulexite'), +('軍曹', 'グンソウ', 'sergeant'), +('法曹', 'ホウソウ', 'legal profession, judicial officer, lawyer, attorney'), +('曹司', 'ゾウシ', 'palace room for government officials or ladies in waiting, room inside a palace or private estate allocated to employees, person living in such a room, boarding house for trainee administrators (ritsuryō period)'), +('捜索隊', 'ソウサクタイ', 'search party'), +('捜索', 'ソウサク', 'search (esp. for someone or something missing), manhunt, legally authorized search of a person, building, etc.'), +('特捜', 'トクソウ', 'special investigation'), +('博捜', 'ハクソウ', 'searching far and wide'), +('荘', 'ショウ', 'manor, villa'), +('荘厳', 'ソウゴン', 'solemn, sublime, grand, magnificent, impressive'), +('山荘', 'サンソウ', 'mountain villa, mountain retreat, mountain cottage'), +('山水荘', 'サンスイソウ', 'The Sansui Inn'), +('荘', 'ショウ', 'manor, villa'), +('荘園', 'ショウエン', 'manor, demesne'), +('荘', 'チャン', 'counter for games of mahjong'), +('荘風牌', 'チャンフォンパイ', 'tile matching the round wind'), +('半荘', 'ハンチャン', 'half-game consisting of an east and south round'), +('連チャン', 'レンチャン', 'repeated events (e.g. meetings, drinking sessions), series of events, streak, straight, dealer continuing as dealer and east after winning, dealer keep'), +('葬', 'ソウ', 'funeral'), +('葬式', 'ソウシキ', 'funeral'), +('埋葬', 'マイソウ', 'burial'), +('土葬', 'ドソウ', 'burial, interment'), +('礎石', 'ソセキ', 'foundation stone, cornerstone'), +('礎材', 'ソザイ', 'foundation materials'), +('定礎', 'テイソ', 'laying a cornerstone (foundation stone)'), +('柱礎', 'チュウソ', 'plinth'), +('僧', 'ソウ', 'monk, priest, sangha (the Buddhist community)'), +('僧侶', 'ソウリョ', 'priest, monk, bonze'), +('尼僧', 'ニソウ', 'Buddhist nun, Catholic nun, sister'), +('高僧', 'コウソウ', 'high priest, highly-ranked priest, virtuous priest, priest of great sanctity and learning'), +('喪', 'モ', 'mourning, calamity, misfortune'), +('喪失', 'ソウシツ', 'loss, forfeit'), +('大喪', 'タイソウ', 'funeral service of a Japanese emperor, Imperial mourning'), +('国喪', 'コクソウ', 'national mourning'), +('双', 'ソウ', 'pair'), +('双子', 'フタゴ', 'twins, twin'), +('一双', 'イッソウ', 'pair (esp. of folding screens)'), +('八双', 'ハッソウ', 'style of sword fighting'), +('痩身', 'ソウシン', 'slim figure, lean figure, weight reduction'), +('痩果', 'ソウカ', 'achene, akene, achenium'), +('羸痩', 'ルイソウ', 'emaciation, weight loss'), +('踪跡', 'ソウセキ', 'traces, footprints, whereabouts'), +('失踪', 'シッソウ', 'disappearance, running away, going missing, absconding'), +('槽', 'ソウ', 'body (of a biwa)'), +('浄化槽', 'ジョウカソウ', 'water-purification tank, septic tank'), +('電解槽', 'デンカイソウ', 'electrolytic cell, electrolytic bath'), +('ご無沙汰', 'ゴブサタ', 'not writing or contacting for a while, neglecting (failing) to write (call, visit, etc.), long silence'), +('無沙汰', 'ブサタ', 'not writing or contacting for a while, neglecting to write (call, visit, etc.), failing to write (call, visit, etc.), long silence'), +('乾燥', 'カンソウ', 'dryness, aridity, drying (e.g. clothes), dehydration, desiccation, insipidity'), +('焦燥', 'ショウソウ', 'impatience, uneasiness, irritation, fretfulness'), +('妥当', 'ダトウ', 'valid, proper, right, appropriate, reasonable'), +('妥協', 'ダキョウ', 'compromise, giving in'), +('促進', 'ソクシン', 'promotion, acceleration, encouragement, facilitation, spurring on'), +('促音', 'ソクオン', 'geminate consonant (small "tsu" in Japanese)'), +('催促', 'サイソク', 'pressing, urging, demanding, demand'), +('督促', 'トクソク', 'urge, demand, importunity'), +('贈賄', 'ゾウワイ', 'bribery, graft'), +('贈呈', 'ゾウテイ', 'presentation (e.g. of a gift, etc.)'), +('寄贈', 'キゾウ', 'donation, presentation, gift'), +('遺贈', 'イゾウ', 'bequest, legacy'), +('寄贈', 'キゾウ', 'donation, presentation, gift'), +('遜色', 'ソンショク', 'inferiority'), +('遜色がある', 'ソンショクガアル', 'inferior to, suffering by comparison with, unable to compare with'), +('不遜', 'フソン', 'arrogance, insolence, disrespect'), +('尊大不遜', 'ソンダイフソン', 'arrogant and presumptuous, haughty arrogance, intolerable insolence'), +('憎悪', 'ゾウオ', 'hatred, abhorrence, loathing, detestation'), +('憎悪犯罪', 'ゾウオハンザイ', 'hate crime'), +('惰性', 'ダセイ', 'inertia, force of habit'), +('惰気', 'ダキ', 'indolence, listlessness'), +('懶惰', 'ランダ', 'lazy, idle, indolence, laziness, sloth, idleness'), +('遊惰', 'ユウダ', 'indolence'), +('耐', 'タイ', '-proof, -resistant'), +('耐久性', 'タイキュウセイ', 'durability'), +('忍耐', 'ニンタイ', 'endurance, perseverance, patience'), +('不耐', 'フタイ', 'intolerance (to food, drug, etc.)'), +('賊', 'ゾク', 'thief, robber, burglar, rebel, insurgent, traitor'), +('賊軍', 'ゾクグン', 'rebel army'), +('空賊', 'クウゾク', 'air pirate, air piracy'), +('流賊', 'リュウゾク', 'roving robber, marauder'), +('俗', 'ゾク', 'layman (esp. as opposed to a Buddhist monk), laity, man of the world, the world, local manners, modern customs, common, popular, vulgar, low'), +('俗語', 'ゾクゴ', 'colloquialism, colloquial language, slang'), +('民俗', 'ミンゾク', 'folk customs, folkways, ethnic customs'), +('低俗', 'テイゾク', 'vulgar, lowbrow, coarse'), +('胎', 'タイ', 'womb'), +('胎動', 'タイドウ', 'quickening, fetal movement, fomenting (trouble)'), +('母胎', 'ボタイ', 'womb, uterus, parent body, base, basis'), +('堕胎', 'ダタイ', 'abortion, feticide'), +('騒音', 'ソウオン', 'noise, din'), +('騒々しい', 'ソウゾウシイ', 'noisy, loud, boisterous, clamorous, raucous, turbulent, unsettled, restless'), +('狂躁', 'キョウソウ', 'mania, wild excitement'), +('鼓譟', 'コソウ', 'motivating the troops on the battlefield with war drums and war cries, making an uproar'), +('霜害', 'ソウガイ', 'frost damage'), +('霜剣', 'ソウケン', 'cold sharp sword, blade of ice'), +('星霜', 'セイソウ', 'years, time'), +('幾星霜', 'イクセイソウ', 'many months and years'), +('把捉', 'ハソク', 'grasping (a meaning)'), +('捕捉', 'ホソク', 'capture, seizure, prehension, trapping, apprehension, understanding, grasp'), +('退屈', 'タイクツ', 'tedium, boredom, dullness, to feel bored, to get bored with, to get tired of'), +('滞納', 'タイノウ', 'falling behind (with a payment), being in arrears, non-payment, default, delinquency'), +('倦怠', 'ケンタイ', 'weariness, fatigue, languor, boredom, tedium, ennui'), +('懈怠', 'ケタイ', 'laziness, indolence, negligence (of duties), misfeasance, nonfeasance, negligence, laches, kausidya'), +('駄', 'ダ', 'poor, low-grade, trivial, insignificant, worthless, load, pack, horse load, packhorse'), +('駄目', 'ダメ', 'no good, not serving its purpose, useless, broken, hopeless, wasted, in vain, purposeless, cannot, must not, not allowed, neutral point (in go), intersection owned by neither player at the end of a game'), +('雪駄', 'セッタ', 'leather-soled sandals (geta)'), +('足駄', 'アシダ', 'high clogs, rain clogs'), +('中下駄', 'チュウゲタ', 'medium height geta'), +('高下駄', 'タカゲタ', 'tall wooden clogs'), +('藻類', 'ソウルイ', 'seaweed, algae'), +('藻菌類', 'ソウキンルイ', 'algal fungi'), +('海藻', 'カイソウ', 'seaweed'), +('石灰藻', 'セッカイソウ', 'calcareous algae'), +('堕落', 'ダラク', 'depravity, corruption, degradation'), +('堕胎', 'ダタイ', 'abortion, feticide'), +('落堕', 'ラクダ', 'marrying (of a monk), returning to secular life (of a monk)'), +('即', 'ソク', 'instantly, immediately, at once, equals, means, is, oneness (of two opposing things), inseparability'), +('即する', 'ソクスル', 'to conform to, to agree with, to be adapted to, to be based on'), +('相即', 'ソウソク', 'coming together and dissolving into oneness, being closely related, being inseparable'), +('即即', 'ソクソク', 'immediate sex (without taking a shower first)'), +('堆', 'タイ', 'bank (river, lake), pile, heap'), +('堆積', 'タイセキ', 'accumulation, pile, heap, sedimentation'), +('砂堆', 'サタイ', 'sandbank, shoal'), +('浅堆', 'センタイ', 'bank (sea, ocean), shoal'), +('堆朱', 'ツイシュ', 'red lacquerware with patterns carved in relief'), +('袋', 'タイ', 'counter for things inside a bag'), +('袋果', 'タイカ', 'follicle'), +('頸袋', 'ケイタイ', 'dewlap'), +('製袋', 'セイタイ', 'bag manufacturing'), +('逮捕', 'タイホ', 'arrest, apprehension, capture'), +('逮捕及び監禁罪', 'タイホオヨビカンキンザイ', 'false arrest and imprisonment, illegal arrest and confinement'), +('交代', 'コウタイ', 'alternation, change, relief, relay, shift, substitution (sports, etc.), taking turns'), +('代替', 'ダイタイ', 'substitution, alternative, substitute'), +('唾液', 'ダエキ', 'saliva, sputum'), +('唾液腺', 'ダエキセン', 'salivary gland'), +('泰', 'タイ', 'Thailand'), +('泰然', 'タイゼン', 'calm, composed, self-possessed, firm'), +('昌泰', 'ショウタイ', 'Shōtai era (898.4.26-901.7.15)'), +('日タイ', 'ニッタイ', 'Japan and Thailand, Japanese-Thai'), +('滞在中', 'タイザイチュウ', 'during a stay'), +('滞在', 'タイザイ', 'stay, sojourn'), +('渋滞', 'ジュウタイ', '(traffic) congestion, traffic jam, gridlock, delay, stagnation'), +('停滞', 'テイタイ', 'stagnation, tie-up, standstill, congestion, delay, accumulation, falling into arrears'), +('択', 'タク', 'counter for choices, options, etc.'), +('択一', 'タクイツ', 'choosing one from among several, multiple choice'), +('選択', 'センタク', 'choice, selection, option'), +('採択', 'サイタク', 'adoption, selection, choice'), +('諾', 'ダク', 'agreement, assent, Norway'), +('諾否', 'ダクヒ', 'consent or refusal, yes or no, decision to accept or decline, up or down (vote), assent or dissent, accept or reject'), +('承諾', 'ショウダク', 'consent, approval, acceptance, agreement, compliance'), +('受諾', 'ジュダク', 'acceptance'), +('戴冠式', 'タイカンシキ', 'coronation ceremony, enthronement'), +('戴冠', 'タイカン', 'coronation, crowning'), +('推戴', 'スイタイ', '(being) presided over by'), +('奉戴', 'ホウタイ', 'having a prince for a president, being the recipient of (an imperial favor, favour), reverential acceptance'), +('肝', 'キモ', 'liver, innards, courage, spirit, pluck, guts, crux, essential point, key'), +('胆石', 'タンセキ', 'gallstones'), +('落胆', 'ラクタン', 'discouragement, despondency, dejection, disappointment'), +('臥薪嘗胆', 'ガシンショウタン', 'going through thick and thin to attain one''s objective, enduring unspeakable hardships for the sake of vengeance'), +('旦過', 'タンガ', 'staying the night (of an itinerant priest in Zen Buddhism), itinerant priest''s lodging, providing a room for an itinerant priest so that he may meditate for a long period of time'), +('旦日', 'タンジツ', 'tomorrow, tomorrow morning'), +('歳旦', 'サイタン', 'New Year''s Day'), +('明旦', 'ミョウタン', 'tomorrow morning'), +('旦那', 'ダンナ', 'master (of a house, shop, etc.), husband, sir, boss, master, governor, patron of a mistress, geisha, bar or nightclub hostess, sugar daddy, alms, almsgiving, almsgiver'), +('旦つく', 'ダンツク', 'husband'), +('眛旦', 'マイダン', 'dawn, daybreak'), +('震旦', 'シンタン', '(ancient) China'), +('託児所', 'タクジショ', 'creche, day nursery'), +('託児施設', 'タクジシセツ', 'child-minding facility'), +('委託', 'イタク', 'entrusting (something to a person), consignment (of goods), putting in someone''s charge, trust, commission'), +('受託', 'ジュタク', 'being entrusted with, taking charge of'), +('破綻', 'ハタン', 'failure, collapse, breakdown, break-up, bankruptcy'), +('経営破綻', 'ケイエイハタン', 'business failure'), +('誰何', 'スイカ', 'challenging (an unknown person), asking a person''s identity'), +('拓銀', 'タクギン', 'Takushoku Bank'), +('拓殖', 'タクショク', 'colonization, colonisation, development, settlement, exploitation'), +('開拓', 'カイタク', 'reclamation (e.g. of wasteland), cultivation, development, pioneering, opening up (e.g. of a new market), breaking new ground, trailblazing'), +('未開拓', 'ミカイタク', 'undeveloped (area), unexplored (field of study), wild (areas), untapped area'), +('乾燥洗濯', 'カンソウセンタク', 'dry cleaning'), +('鬼の居ぬ間に洗濯', 'オニノイヌマニセンタク', 'playing while the cat is away, taking a break while the boss is out, doing what one wants when one is (finally) alone, relaxing while the demon is out'), +('卓', 'タク', 'table, desk, counter for tables, desks, etc., offering table before an altar (sometimes used in tea ceremony), tabletop incense burner'), +('卓越', 'タクエツ', 'preeminence, excellence, superiority, transcendence'), +('聖卓', 'セイタク', 'altar (esp. Christian)'), +('音声調整卓', 'オンセイチョウセイタク', 'mixing board (console, desk), (audio) mixer'), +('脱', 'ダツ', 'de- (indicating reversal, removal, etc.), post-'), +('脱税', 'ダツゼイ', 'tax evasion'), +('離脱', 'リダツ', 'withdrawal, secession, separation, breakaway'), +('逸脱', 'イツダツ', 'deviation, departure, omission'), +('嘆', 'タン', 'sigh, grief, lamentation'), +('嘆願', 'タンガン', 'entreaty, appeal, petition'), +('詠嘆', 'エイタン', 'exclamation, admiration'), +('慨嘆', 'ガイタン', 'deploring, lamentation, regret, complaint'), +('沢', 'タク', 'blessing, grace, favour, favor, benefit'), +('沢山', 'タクサン', 'a lot, lots, plenty, many, a large number, much, a great deal, a good deal, enough, sufficient, enough, too many, too much'), +('沼沢', 'ショウタク', 'marsh, swamp, bog'), +('恵沢', 'ケイタク', 'blessing, pity, favor, favour, benefit'), +('壇', 'ダン', 'platform, podium, rostrum, pulpit, (ceremonial) mound, world (of haiku, art, etc.), (literary) circles, mandala'), +('壇上', 'ダンジョウ', 'on a stage, on a platform, on an altar'), +('仏壇', 'ブツダン', 'Buddhist (household) altar'), +('教壇', 'キョウダン', '(teacher''s) platform, podium, dais'), +('黒檀', 'コクタン', 'ebony'), +('端', 'タン', 'origin, beginning, variable measure of fabric (28.8 cm in width), for kimonos: at least 10 m in length, for haori: at least 7.27 m in length, for other clothes: at least 6.06 m in length, tip, extremity'), +('端的', 'タンテキ', 'frank, direct, plain, straightforward, point-blank, concise'), +('末端', 'マッタン', 'end, tip, extremities, terminal'), +('北端', 'ホクタン', 'northern extremity'), +('氷棚', 'ヒョウホウ', 'ice shelf'), +('陸棚', 'リクダナ', 'continental shelf'), +('弾', 'ダン', 'counter for parts, stages, installments, etc. (of a story, series, project, campaign, etc.), counter for bullets'), +('発条', 'バネ', 'spring, spring (in one''s legs), bounce, springboard, impetus'), +('着弾', 'チャクダン', 'impact (of a projectile), landing (of a bullet), striking'), +('原子爆弾', 'ゲンシバクダン', 'atomic bomb, A-bomb'), +('奪三振', 'ダツサンシン', 'striking a batter out'), +('奪三振王', 'ダツサンシンオウ', '(season''s) record holder in (for) the most strike-outs'), +('略奪', 'リャクダツ', 'pillage, plunder, looting, robbery'), +('強奪', 'ゴウダツ', 'robbery, pillage, seizure, hijacking, plunder, extortion'), +('恥辱', 'チジョク', 'disgrace, shame, insult'), +('恥丘', 'チキュウ', 'mons pubis, mons veneris'), +('無恥', 'ムチ', 'shameless'), +('羞恥', 'シュウチ', 'shyness, bashfulness, shame'), +('丹念', 'タンネン', 'painstaking, careful, meticulous, scrupulous, detailed, elaborate'), +('丹精', 'タンセイ', 'working earnestly, sincerity, diligence, effort, pains'), +('牡丹', 'ボタン', 'tree peony (Paeonia suffruticosa), moutan, wild boar (meat)'), +('伊勢丹', 'イセタン', 'Isetan (department store)'), +('鍛錬', 'タンレン', 'tempering (metal), annealing, forging, toughening, disciplining, training'), +('鍛金', 'タンキン', 'hammering'), +('稚魚', 'チギョ', 'fry, juvenile fish, fingerling'), +('稚拙', 'チセツ', 'unskillful, childish, immature, naive, artless, clumsy, crude'), +('丁稚', 'デッチ', 'apprentice, shop boy'), +('淡水', 'タンスイ', 'fresh water (i.e. not salt water)'), +('淡々', 'タンタン', 'uninterested, unconcerned, indifferent, dispassionate, matter-of-fact, detached, plain, light, simple, bland, flowing gently'), +('濃淡', 'ノウタン', 'light and shade, shade (of colour, color), depth (of flavor), complexity, strength and weakness (of flavor)'), +('平淡', 'ヘイタン', 'simple, quiet'), +('痴', 'チ', 'foolishness, fool, moha (ignorance, folly)'), +('痴漢', 'チカン', 'molester, groper, masher, pervert'), +('愚痴', 'グチ', 'idle complaint, grumble, moha (ignorance, folly)'), +('白痴', 'ハクチ', 'idiot, retard, idiocy, profound mental retardation'), +('緻密', 'チミツ', 'minute, fine, delicate, accurate, precise, elaborate'), +('精緻', 'セイチ', 'delicate, minute, fine, detailed, subtle'), +('細緻', 'サイチ', 'minute, meticulous'), +('遅刻', 'チコク', 'lateness, tardiness, arriving late'), +('遅延', 'チエン', 'delay, latency'), +('棲遅', 'セイチ', 'living in tranquility, retiring to the countryside, retirement house'), +('巧遅', 'コウチ', 'elaborate but slow execution, polished but slow work'), +('致命的', 'チメイテキ', 'fatal, lethal'), +('致命傷', 'チメイショウ', 'fatal wound'), +('一致', 'イッチ', 'agreement, accord, correspondence, consistency, coincidence, union, unity, cooperation'), +('合致', 'ガッチ', 'agreement, concurrence, conformance, compliance'), +('逐一', 'チクイチ', 'one by one, in detail, minutely'), +('逐語的', 'チクゴテキ', 'word-for-word, verbatim'), +('駆逐', 'クチク', 'extermination, expulsion, destruction'), +('放逐', 'ホウチク', 'expulsion, ousting, ejection, dismissal, banishment'), +('ダミ声', 'ダミゴエ', 'thick voice, husky voice, guttural voice, hoarse voice, gravelly voice, voice with a thick accent'), +('濁流', 'ダクリュウ', 'muddy stream'), +('汚濁', 'オダク', 'pollution, contamination, corruption, graft'), +('清濁', 'セイダク', 'good and evil, purity and impurity, voiced and unvoiced consonants'), +('濁酒', 'ドブロク', 'doburoku (unrefined sake)'), +('濁世', 'ダクセ', 'this corrupt or degenerate world, this world or life, the world of mankind'), +('畜産', 'チクサン', 'animal husbandry, livestock industry'), +('畜生', 'チクショウ', 'damn it, damn, son of a bitch, for Christ''s sake, beast, animal, person reborn into the animal realm, brute, bastard'), +('牧畜', 'ボクチク', 'stock-farming, livestock farming, cattle breeding'), +('人畜', 'ジンチク', 'men and animals'), +('蓄音機', 'チクオンキ', 'gramophone, phonograph'), +('蓄積', 'チクセキ', 'accumulation, accumulate, store'), +('貯蓄', 'チョチク', 'savings'), +('備蓄', 'ビチク', 'stockpile, reserves, storing, stocking up, laying in (supplies)'), +('脱窒', 'ダッチツ', 'denitrification, denitration'), +('嫡出', 'チャクシュツ', 'legitimate birth'), +('嫡子', 'チャクシ', 'legitimate child'), +('正嫡', 'セイチャク', 'legal wife, her child, main family'), +('廃嫡', 'ハイチャク', 'disinheritance'), +('嫡出', 'チャクシュツ', 'legitimate birth'), +('嫡出子', 'チャクシュツシ', 'legitimate child'), +('正嫡', 'セイチャク', 'legal wife, her child, main family'), +('眺望', 'チョウボウ', 'prospect, view, outlook'), +('眺望権', 'チョウボウケン', 'right to a view'), +('弔問', 'チョウモン', 'condolence call'), +('弔辞', 'チョウジ', 'message of condolence, memorial address'), +('慶弔', 'ケイチョウ', 'congratulations and condolences'), +('哀弔', 'アイチョウ', 'sympathetic condolences'), +('聴講', 'チョウコウ', 'lecture attendance, auditing'), +('聴覚', 'チョウカク', 'the sense of hearing'), +('傍聴', 'ボウチョウ', 'listening (to a lecture, hearing, parliament session, etc.), attending (without participating), sitting in (e.g. on a meeting), observing'), +('盗聴', 'トウチョウ', 'interception (email), wiretap, bug'), +('視聴', 'シチョウ', 'looking and listening, (television) viewing, watching, (public) attention, interest'), +('挑戦', 'チョウセン', 'challenge, defiance, dare, attempt, try'), +('挑戦者', 'チョウセンシャ', 'challenger'), +('跳躍', 'チョウヤク', 'jump, leap, skip, bound'), +('跳馬', 'チョウバ', 'long horse (for vaulting)'), +('反跳', 'ハンチョウ', '(physical) recoil'), +('酎', 'チュウ', 'shōchū'), +('酎ハイ', 'チュウハイ', 'shōchū highball, cocktail of shōchū with tonic water'), +('麦焼酎', 'ムギショウチュウ', 'shōchū distilled from barley'), +('球磨焼酎', 'クマジョウチュウ', 'Kumamoto rice shōchū'), +('酎', 'チュウ', 'shōchū'), +('酎ハイ', 'チュウハイ', 'shōchū highball, cocktail of shōchū with tonic water'), +('鋳造', 'チュウゾウ', 'casting, founding, minting'), +('鋳貨', 'チュウカ', 'coinage, mintage'), +('改鋳', 'カイチュウ', 'reminting, recasting'), +('再鋳', 'サイチュウ', 'recasting'), +('鋳物', 'イモノ', 'casting, cast-metal object'), +('鋳型', 'イガタ', 'mold, mould, template'), +('秩序', 'チツジョ', 'order, discipline, regularity, system, method'), +('秩序正しい', 'チツジョタダシイ', 'orderly, well-ordered'), +('詔', 'ミコトノリ', 'imperial decree, imperial edict'), +('勅意', 'チョクイ', 'meaning or gist of a decree'), +('違勅', 'イチョク', 'disobeying the emperor''s order'), +('回勅', 'カイチョク', 'encyclical'), +('澄徹', 'チョウテツ', 'clearness (e.g. sky), transparency'), +('澄明', 'チョウメイ', 'clear and bright'), +('清澄', 'セイチョウ', 'clear, serene'), +('明澄', 'メイチョウ', 'lucid, clear'), +('彫刻', 'チョウコク', 'carving, engraving, sculpture'), +('彫像', 'チョウゾウ', 'sculpture, carved statue, graven image'), +('木彫', 'モクチョウ', 'wood carving, wooden sculpture, woodcraft'), +('徴', 'チョウ', 'sign, indication, symptom, call, summons, requisition, expropriation'), +('兆候', 'チョウコウ', 'sign, indication, omen, symptom'), +('象徴', 'ショウチョウ', '(abstract) symbol, emblem, representation'), +('追徴', 'ツイチョウ', 'supplementary charge, additional collection'), +('徴', 'チ', 'fourth degree (of the Japanese and Chinese pentatonic scale)'), +('徴', 'チョウ', 'sign, indication, symptom, call, summons, requisition, expropriation'), +('変徴', 'ヘンチ', 'note a semitone below the fourth degree of the Chinese and Japanese pentatonic scale'), +('嘲笑', 'チョウショウ', 'scornful laughter, ridicule, derision, sneer'), +('嘲罵', 'チョウバ', '(verbal) abuse, insulting remark, taunt'), +('自嘲', 'ジチョウ', 'self-deprecation, self-derision, self-mockery, laughing at oneself'), +('冷嘲', 'レイチョウ', 'sneer, derision, scornful laugh'), +('釣果', 'チョウカ', 'catch (fishing), amount of fish caught, caught fish'), +('釣菌', 'チョウキン', 'extracting bacteria (from a petri dish, etc.)'), +('爆釣', 'バクチョウ', 'big catch (of fish), big haul'), +('衷心', 'チュウシン', 'innermost feelings'), +('衷情', 'チュウジョウ', 'true heart, inner feelings'), +('和洋折衷', 'ワヨウセッチュウ', 'blending of Japanese and Western styles'), +('折衷', 'セッチュウ', 'compromise, cross, blending, eclecticism'), +('抽象的', 'チュウショウテキ', 'abstract'), +('抽出', 'チュウシュツ', 'extraction, abstraction, selection (from a group), sampling'), +('沈黙', 'チンモク', 'silence, being silent, quiet, hush, reticence, inaction'), +('沈没', 'チンボツ', 'sinking, foundering, going down, submersion, getting dead drunk, having too much fun (esp. in a red-light district, etc.) and missing work or neglecting one''s duties, staying in one place for a long time'), +('意気消沈', 'イキショウチン', 'depressed in spirits, dispirited, disheartened, rejection'), +('消沈', 'ショウチン', 'depression, low spirits, dejection'), +('沈香', 'ジンコウ', 'agarwood, aloeswood, gharuwood, eaglewood, agalloch, agallochum, aquilaria tree, lign aloes'), +('沈香も焚かず屁も放らず', 'ジンコウモタカズヘモヒラズ', 'having few faults as well as few virtues, not burning agarwood (incense); not passing wind'), +('貼付', 'チョウフ', 'pasting, sticking, attaching, affixing, appending'), +('貼', 'チョウ', 'counter for doses of medicine, etc.'), +('貼付', 'チョウフ', 'pasting, sticking, attaching, affixing, appending'), +('朕', 'チン', 'We'), +('懲罰', 'チョウバツ', 'discipline, punishment, reprimand'), +('懲役', 'チョウエキ', 'penal servitude, imprisonment with hard labor (hard labour)'), +('膺懲', 'ヨウチョウ', 'punishment (of an enemy), chastisement'), +('暴支膺懲', 'ボウシヨウチョウ', 'punishing savage China'), +('超', 'チョウ', 'super-, ultra-, hyper-, extreme, extremely, really, totally, absolutely, over, more than'), +('超過', 'チョウカ', 'excess, being more than'), +('出超', 'シュッチョウ', 'excess of exports, favorable balance of trade, favourable balance of trade'), +('入超', 'ニュウチョウ', 'excess of imports'), +('駐車場', 'チュウシャジョウ', 'parking lot, car park, carpark, parking garage'), +('駐車', 'チュウシャ', 'parking (e.g. car)'), +('常駐', 'ジョウチュウ', 'permanent stationing, staying permanently, resident (program, file, etc.)'), +('進駐', 'シンチュウ', 'occupation, stationing'), +('鎮', 'チン', 'a weight, temple supervisor, town (of China)'), +('鎮圧', 'チンアツ', 'suppression, subjugation'), +('重鎮', 'ジュウチン', 'leader, authority, mainstay'), +('郷鎮', 'ゴウチン', 'township and village enterprises (in China), TVE'), +('珍', 'チン', 'rare, strange, odd, peculiar, curious'), +('珍紛漢紛', 'チンプンカンプン', 'unintelligible language, incoherent language, talking nonsense, babble, gibberish, jargon, gobbledygook'), +('袖珍', 'シュウチン', 'pocket size'), +('繻珍', 'シュチン', 'satin with raised figures'), +('円塚', 'マルヅカ', 'round burial mound'), +('墜落', 'ツイラク', 'fall, crash (e.g. aircraft)'), +('墜落事故', 'ツイラクジコ', 'plane crash, fall (accident)'), +('撃墜', 'ゲキツイ', 'shooting down (aircraft)'), +('失墜', 'シッツイ', 'abasement, fall, forfeiture, sinking (in people''s estimation)'), +('進捗', 'シンチョク', 'progress, being under way'), +('椎間板', 'ツイカンバン', 'intervertebral disk'), +('椎間板ヘルニア', 'ツイカンバンヘルニア', 'disk herniation, herniated disk, hernia of intervertebral disk, slipped disk'), +('脊椎', 'セキツイ', 'spine, vertebral column'), +('腰椎', 'ヨウツイ', 'lumbar vertebra, lumbar vertebrae'), +('爪牙', 'ソウガ', 'claws and fangs, claws and tusks, clutches, devious design, means of causing harm, weapon, pawn, stooge, cat''s-paw, right-hand man'), +('爪痕', 'ソウコン', 'fingernail mark, scratch'), +('陥入爪', 'カンニュウソウ', 'ingrown nail, ingrowing nail'), +('狼爪', 'ロウソウ', 'dewclaw'), +('呈する', 'テイスル', 'to present, to offer, to show, to display, to exhibit, to assume (e.g. a shape)'), +('呈示', 'テイシ', 'exhibition'), +('贈呈', 'ゾウテイ', 'presentation (e.g. of a gift, etc.)'), +('進呈', 'シンテイ', 'presentation (e.g. of a gift)'), +('浸漬', 'シンシ', 'dipping, soaking, immersing'), +('陳', 'チン', 'Chen (ancient Chinese state; approx. 1045-479 BCE), Ch''en, Chen dynasty (of China; 557-589 BCE), Ch''en dynasty'), +('陳列', 'チンレツ', 'exhibition, display, putting on show'), +('開陳', 'カイチン', 'stating (one''s views), expressing'), +('具陳', 'グチン', 'report in detail, formal statement'), +('鶴首', 'カクシュ', 'looking forward to'), +('鶴首して待つ', 'カクシュシテマツ', 'to wait expectantly, to be full of anticipation, to long for'), +('鶏群の一鶴', 'ケイグンノイッカク', 'a swan among ducklings, a diamond among stones, a great figure among the common run of men'), +('鶏群一鶴', 'ケイグンイッカク', 'a swan among ducklings, a diamond among stones, a great figure among the common run of men'), +('廷臣', 'テイシン', 'courtier'), +('廷丁', 'テイテイ', 'court attendant'), +('出廷', 'シュッテイ', 'appearance in court'), +('開廷', 'カイテイ', 'court session, trial'), +('邸', 'テイ', 'residence, mansion'), +('邸宅', 'テイタク', 'mansion, residence'), +('御用邸', 'ゴヨウテイ', 'imperial villa'), +('公邸', 'コウテイ', 'official residence'), +('貞', 'テイ', 'firm adherence to one''s principles, chastity (of a woman)'), +('貞潔', 'テイケツ', 'chastity, purity'), +('シロウト童貞', 'シロウトドウテイ', 'man who has never had sex except with sex workers'), +('不貞', 'フテイ', 'unfaithfulness, infidelity, unchastity'), +('貞永', 'ジョウエイ', 'Jōei era (1232.4.2-1233.4.15)'), +('貞応', 'ジョウオウ', 'Jōō era (1222.4.13-1224.11.20)'), +('抵抗', 'テイコウ', 'resistance, opposition, standing up to, reluctance, repulsion, repugnance, resistance, drag, friction, electrical resistance, resistor'), +('抵触', 'テイショク', 'infringement (of a law, treaty, etc.), contravention, running afoul, conflict (with a theory, claim, etc.), inconsistency, incompatibility, contradiction, collision, contact, touching'), +('抗抵', 'コウテイ', 'resistance, opposition'), +('角觝', 'カクテイ', 'strength contest, sumo wrestling'), +('逓信', 'テイシン', 'communications (e.g. post, telegraph)'), +('逓減', 'テイゲン', 'gradual decrease, gradual diminution'), +('駅逓', 'エキテイ', 'delivery of packages, postal service'), +('亭', 'テイ', 'arbor, arbour, bower, pavilion, suffix forming the final part of the pseudonyms of some writers and performers, suffix forming the final part of the name of a restaurant'), +('亭主', 'テイシュ', 'household head, master, host (e.g. of a tea gathering), innkeeper, owner (e.g. of a hotel), husband'), +('料亭', 'リョウテイ', 'ryotei, traditional Japanese restaurant (esp. a luxurious one)'), +('亭々', 'テイテイ', 'lofty (tree)'), +('亭', 'テイ', 'arbor, arbour, bower, pavilion, suffix forming the final part of the pseudonyms of some writers and performers, suffix forming the final part of the name of a restaurant'), +('帝国', 'テイコク', 'empire, imperial'), +('帝王切開', 'テイオウセッカイ', 'Caesarean section (Cesarean), C-section'), +('女帝', 'ジョテイ', 'empress'), +('大帝', 'タイテイ', 'great emperor, ... the Great'), +('提出', 'テイシュツ', 'presentation (of documents), submission (of an application, report, etc.), production (e.g. of evidence), introduction (e.g. of a bill), filing, turning in'), +('堤防', 'テイボウ', 'bank, weir, embankment, levee'), +('突堤', 'トッテイ', 'breakwater'), +('神経堤', 'シンケイテイ', 'neural crest'), +('偵察', 'テイサツ', 'scouting, reconnaissance'), +('偵察衛星', 'テイサツエイセイ', 'reconnaissance satellite, spy satellite'), +('内偵', 'ナイテイ', 'secret investigation, private enquiry, private inquiry, reconnaissance, scouting'), +('密偵', 'ミッテイ', 'spy, emissary'), +('訂正', 'テイセイ', 'correction, revision, amendment'), +('訂する', 'テイスル', 'to correct'), +('改訂', 'カイテイ', 'revision (of text), alteration, change'), +('装丁', 'ソウテイ', 'binding (of a book), design (of a book cover)'), +('諦観', 'テイカン', 'clear insight, resignation (to one''s fate), acceptance'), +('諦念', 'テイネン', 'understanding and acceptance, spiritual awakening, a heart that understands truth, (feeling of) resignation'), +('妙諦', 'ミョウテイ', 'amazing truth, cardinal principle, key (to understanding)'), +('要諦', 'ヨウテイ', 'important point'), +('諦', 'タイ', 'satya, truth'), +('空諦', 'クウタイ', 'truth of emptiness (holding that all things are void)'), +('道諦', 'ドウタイ', 'truth of the way to the cessation of suffering'), +('締結', 'テイケツ', 'conclusion, execution (of a contract), entering (into treaty), fastening (as in a joint)'), +('締約', 'テイヤク', 'conclusion of a treaty'), +('摘発', 'テキハツ', 'exposing, unmasking, laying bare'), +('摘出', 'テキシュツ', 'picking out, taking out, (surgical) removal, exposure'), +('指摘', 'シテキ', 'pointing out, identification'), +('溺死', 'デキシ', 'death by drowning'), +('溺愛', 'デキアイ', 'infatuation, adoration, blind love, doting (on a child)'), +('惑溺', 'ワクデキ', 'indulgence, addiction, infatuation'), +('沈溺', 'チンデキ', 'being immersed in water, being drowned, being infatuated, being dazed, being blinded by'), +('滴', 'テキ', 'counter for drops of liquid'), +('滴下', 'テキカ', 'drip, drop, distill'), +('雨滴', 'ウテキ', 'raindrop'), +('数滴', 'スウテキ', 'several drops'), +('唐', 'トウ', 'Tang dynasty (of China; 618-907), T''ang dynasty, China, foreign country'), +('唐土', 'モロコシ', 'China, Chinese'), +('頽唐', 'タイトウ', 'decadence, decline'), +('後唐', 'コウトウ', 'Later Tang dynasty (of China; 923-937), Later T''ang dynasty'), +('哲', 'テツ', 'sage, wise man, philosopher, disciple, sagacity, wisdom, intelligence'), +('哲学', 'テツガク', 'philosophy'), +('変哲', 'ヘンテツ', 'something unusual, something odd, something out of the ordinary'), +('西哲', 'セイテツ', 'Western philosopher'), +('添付', 'テンプ', 'attaching (documents, etc.), appending, affixing'), +('添削', 'テンサク', 'correction, looking over, touching up'), +('水添', 'スイテン', 'hydrogenation'), +('別添', 'ベッテン', 'attachment, annexation, addendum, appendix'), +('怒鳴る', 'ドナル', 'to shout (in anger), to yell'), +('怒気', 'ドキ', 'anger, wrath'), +('激怒', 'ゲキド', 'rage, fury'), +('喜怒', 'キド', 'joy and anger, human emotions'), +('憤怒', 'フンヌ', 'anger, rage, resentment, indignation, exasperation'), +('凍結', 'トウケツ', 'freezing (e.g. water), freezing (prices, wages, assets, etc.), moratorium, suspension (e.g. investment)'), +('凍死', 'トウシ', 'death from cold, freezing to death'), +('冷凍', 'レイトウ', 'freezing, cold storage, refrigeration'), +('解凍', 'カイトウ', 'thawing, defrosting, decompression (of data), extraction, unpacking, unzipping'), +('徹夜', 'テツヤ', 'staying up all night'), +('徹カラ', 'テツカラ', 'all-night karaoke'), +('貫徹', 'カンテツ', 'accomplishment, realization, attainment, fulfillment, achievement, penetration, pervasion'), +('冷徹', 'レイテツ', 'cool-headed, level-headed, hard-headed'), +('倒産', 'トウサン', '(corporate) bankruptcy, insolvency, commercial failure, failed business'), +('倒錯', 'トウサク', 'perversion, inversion'), +('圧倒', 'アットウ', 'to overwhelm (e.g. an opponent), to overpower, to crush, to defeat completely, to overwhelm (someone with emotion), to move, to impress, to fill with emotion, to intimidate, to frighten, to threaten'), +('打倒', 'ダトウ', 'overthrow, defeat, bringing down, knockdown'), +('桃花', 'トウカ', 'peach blossom'), +('桃源', 'トウゲン', 'earthly paradise, Shangri-la'), +('寿星桃', 'ジュセイトウ', 'Prunus persica var. densa (Chinese variety of peach)'), +('黄桃', 'オウトウ', 'yellow peach'), +('途', 'ト', 'way, route'), +('途中', 'トチュウ', 'on the way, en route, in the middle of, midway, halfway'), +('使途', 'シト', 'purpose for which money is spent, the way money is spent, how goods are used'), +('目処', 'メド', 'aim, goal, prospect, outlook'), +('渡来', 'トライ', 'visit (from abroad), introduction (from abroad), importation'), +('渡米', 'トベイ', 'going to the United States'), +('一寸', 'チョット', 'a little, a bit, slightly, just a minute, for a moment, briefly, somewhat, rather, fairly, pretty, quite, (not) easily, (not) readily, hey!, come on, excuse me, thanks, but no, not feasible, not possible'), +('譲渡', 'ジョウト', 'transfer, assignment, conveyance'), +('透明', 'トウメイ', 'transparent, clear'), +('透明度', 'トウメイド', 'transparency, degree of clearness'), +('浸透', 'シントウ', 'permeation (of thought, ideology, culture, etc.), infiltration (e.g. of ideas), spread, penetration (e.g. into a market), pervasion, permeation (of a liquid, etc.), soaking, percolation, osmosis'), +('失透', 'シットウ', 'devitrification'), +('迭立', 'テツリツ', 'alternate succession (e.g. to throne)'), +('更迭', 'コウテツ', 'change (of personnel), reshuffle (e.g. of a cabinet), shake-up, dismissal (e.g. of a minister), replacement'), +('陶芸', 'トウゲイ', 'ceramic art, ceramics'), +('陶器', 'トウキ', 'porcelain (esp. soft-paste porcelain), china, chinaware, earthenware, pottery, ceramics, crockery'), +('製陶', 'セイトウ', 'porcelain manufacturing'), +('作陶', 'サクトウ', 'porcelain making, ceramics making, pottery making'), +('到頭', 'トウトウ', 'finally, at last, ultimately, in the end'), +('到着', 'トウチャク', 'arrival'), +('殺到', 'サットウ', 'rush, flood, deluge'), +('前人未到', 'ゼンジンミトウ', 'untrodden (region, field of study, etc.), unprecedented (discovery, achievement, etc.)'), +('妬心', 'トシン', 'jealousy'), +('嫉妬', 'シット', 'jealousy, envy'), +('盗難', 'トウナン', 'theft, robbery'), +('盗聴', 'トウチョウ', 'interception (email), wiretap, bug'), +('窃盗', 'セットウ', 'theft, stealing, larceny'), +('怪盗', 'カイトウ', 'mysterious thief, phantom thief'), +('塔', 'トウ', 'tower, steeple, spire, stupa, pagoda, dagoba'), +('塔屋', 'トウヤ', 'rooftop structure, e.g. tower, elevator machine room, etc.'), +('広告塔', 'コウコクトウ', 'billboard, advertising tower, face (of a company, group, etc.), poster girl, poster boy'), +('バベルの塔', 'バベルノトウ', 'Tower of Babel'), +('填星', 'テンセイ', 'Saturn (planet)'), +('填補', 'テンポ', 'making up (a deficit, loss, etc.), covering, compensation, supplementation, replenishment'), +('充填', 'ジュウテン', 'filling (up), replenishing, filling in (tooth), loading (gun with ammunition, camera with film, etc.), packing, plugging'), +('装填', 'ソウテン', 'loading, charging, filling'), +('奴隷', 'ドレイ', 'slave, servant, slavery'), +('奴隷制', 'ドレイセイ', 'slavery'), +('売国奴', 'バイコクド', 'traitor (to one''s country), quisling'), +('農奴', 'ノウド', 'serf'), +('吐息', 'トイキ', 'sigh, long breath'), +('吐血', 'トケツ', 'vomiting of blood'), +('嘔吐', 'オウト', 'vomiting, emesis'), +('噴出性嘔吐', 'フンシュツセイオウト', 'projectile vomiting'), +('逃亡', 'トウボウ', 'escape, flight, running away, elopement, fleeing'), +('逃走', 'トウソウ', 'flight, desertion, escape'), +('塗装', 'トソウ', 'coating, painting'), +('塗布', 'トフ', 'application (of ointment, etc.), coating'), +('道途', 'ドウト', 'road'), +('糊塗', 'コト', 'patching up (e.g. a failure), covering up (e.g. a mistake), glossing over'), +('艇', 'テイ', 'boat'), +('艇身', 'テイシン', 'boat length'), +('艦艇', 'カンテイ', 'naval vessels, warships'), +('競艇', 'キョウテイ', 'kyōtei, boat race, hydroplane racing event and gambling sport in Japan'), +('泥沼', 'ドロヌマ', 'bog, marsh, swamp, quagmire, morass, quandary, dire situation from which one cannot extricate oneself, imbroglio'), +('泥水', 'ドロミズ', 'muddy water, red-light district'), +('拘泥', 'コウデイ', 'adhering to, being a stickler for, being particular about, worrying too much about'), +('汚泥', 'オデイ', 'sludge, slime, dregs, mire, hopeless situation, hell, despair'), +('泥洹', 'ナイオン', 'nirvana'), +('泥沼', 'ドロヌマ', 'bog, marsh, swamp, quagmire, morass, quandary, dire situation from which one cannot extricate oneself, imbroglio'), +('泥水', 'ドロミズ', 'muddy water, red-light district'), +('殿堂', 'デンドウ', 'palace, hall, shrine, temple, sanctuary, hall of fame'), +('殿下', 'デンカ', 'your Highness, his Highness, her Highness'), +('沈澱', 'チンデン', 'precipitation, deposition, settlement (e.g. of sediment)'), +('拝殿', 'ハイデン', 'front shrine, hall of worship'), +('殿下', 'デンカ', 'your Highness, his Highness, her Highness'), +('殿上', 'テンジョウ', 'the court, palace circles, palace floor'), +('御殿', 'ゴテン', 'palace, court'), +('紫御殿', 'ムラサキゴテン', 'wandering jew (Tradescantia pallida ''Purpurea''), purple secretia, purple-heart, purple queen'), +('搭載', 'トウサイ', 'loading (on board), equipping, equipped (with), built-in'), +('搭乗', 'トウジョウ', 'embarkation, boarding (an aeroplane, airplane)'), +('賭博師', 'トバクシ', 'gambler, gamester'), +('賭博', 'トバク', 'gambling'), +('痘痕', 'アバタ', 'pockmark'), +('痘瘡', 'トウソウ', 'smallpox, variola'), +('種痘', 'シュトウ', 'smallpox vaccination, inoculation against smallpox'), +('水痘', 'スイトウ', 'chickenpox, chicken pox'), +('悼辞', 'トウジ', 'funeral address, message of condolence, words of condolence'), +('悼惜', 'トウセキ', 'mourning, grieving'), +('哀悼', 'アイトウ', 'condolence, regret, tribute, sorrow, sympathy, lament'), +('追悼', 'ツイトウ', 'mourning (dead persons), memorial'), +('斗', 'ト', 'to, traditional unit of volume, approx. 18 litres, square bearing block (at the top of a pillar), Chinese "Dipper" constellation (one of the 28 mansions)'), +('斗', 'トマス', 'kanji radical 68 at right'), +('不図', 'フト', 'suddenly, casually, accidentally, incidentally, unexpectedly, unintentionally'), +('星斗', 'セイト', 'star'), +('闘争', 'トウソウ', 'fight, battle, combat, conflict, struggle (for rights, higher wages, etc.), strife, (labor) dispute, strike'), +('闘魂', 'トウコン', 'fighting spirit'), +('擬斗', 'ギトウ', 'fight scene, stage combat, staged sword fight'), +('踏襲', 'トウシュウ', 'following (a precedent, former policy, etc.), continuing with, sticking to, observing'), +('踏破', 'トウハ', 'travelling on foot, traveling on foot, travelling all over'), +('舞踏', 'ブトウ', 'dance (esp. Western style), dancing'), +('雑踏', 'ザットウ', 'hustle and bustle, throng, crowd, congestion, traffic jam'), +('謄本', 'トウホン', 'certified copy, transcript, official copy of the family register'), +('謄写', 'トウシャ', 'copy, transcription, mimeograph, photocopy'), +('棟', 'トウ', 'large building, building with a long roof, counter for buildings, apartments, etc.'), +('棟梁', 'トウリョウ', 'central figure, pillar (e.g. of the nation), mainstay, chief support, leader, chief, boss, leader, head, master carpenter, beams and ridge supports of a roof'), +('病棟', 'ビョウトウ', '(hospital) ward'), +('上棟', 'ジョウトウ', 'raising the ridgepole'), +('筒状', 'ツツジョウ', 'cylindrical, tubular'), +('筒状花', 'トウジョウカ', 'tubular flower, disk floret'), +('円筒', 'エントウ', 'cylinder'), +('気筒', 'キトウ', 'cylinder'), +('稲架', 'ハサ', 'drying rice on a rack, rack for drying rice'), +('稲熱病', 'イモチビョウ', 'rice blight, rice blast'), +('水稲', 'スイトウ', 'wet-land rice'), +('占城稲', 'センジョウトウ', 'Champa rice'), +('中手', 'ナカテ', 'mid-season crops, mid-season rice, mid-season vegetables, metacarpus'), +('奥手', 'オクテ', 'late-growing rice, late-ripening crops, late-blooming flowers, late developer (e.g. child who reaches puberty late), late bloomer'), +('奈落', 'ナラク', 'Naraka, Hell, Hades, very bottom, the end, worst possible circumstances, trap room (of a theatre), below-stage basement'), +('那覇', 'ナハ', 'Naha (city in Okinawa)'), +('刹那', 'セツナ', 'moment, instant, kshana, duration of a single mental event (about 1/75 second), shortest possible interval of time'), +('印度支那', 'インドシナ', 'Indochina'), +('篤と', 'トクト', 'carefully, thoroughly, fully, deliberately'), +('篤志家', 'トクシカ', 'charitable person, philanthropist, volunteer, supporter'), +('重篤', 'ジュウトク', 'critical (condition), serious'), +('懇篤', 'コントク', 'cordial, kind'), +('曇天', 'ドンテン', 'cloudy sky, overcast sky, cloudy weather'), +('晴曇', 'セイドン', 'fine weather and cloudy'), +('謎語', 'メイゴ', 'mysterious words, confusing words'), +('豚', 'トン', 'pig, pork'), +('豚肉', 'ブタニク', 'pork'), +('養豚', 'ヨウトン', 'pig-keeping, pig farming'), +('焼きとん', 'ヤキトン', 'yakiton, grilled pork on skewers'), +('突然', 'トツゼン', 'abrupt, sudden, unexpected'), +('突如', 'トツジョ', 'suddenly, all of a sudden'), +('衝突', 'ショウトツ', 'collision, crash, impact, running into, conflict, clash, discord, quarrel'), +('激突', 'ゲキトツ', 'crash into, clash'), +('匿', 'トク', 'shelter, shield, hide'), +('匿名', 'トクメイ', 'anonymity, using an assumed name'), +('隠匿', 'イントク', 'concealment'), +('秘匿', 'ヒトク', 'hiding, concealment'), +('頓', 'トミ', 'sudden, abrupt, unexpected, stupid, foolish, attaining enlightenment in one effort (without ascetic practices, etc.)'), +('頓知', 'トンチ', 'quick wit, ready wit'), +('整頓', 'セイトン', 'orderliness, put in order, tidying up, arranging neatly'), +('華盛頓', 'ワシントン', 'Washington, D.C. (United States), Washington (US state)'), +('屯', 'トン', 'ton (esp. a metric ton, i.e. 1000 kg), tonne'), +('屯営', 'トンエイ', 'military camp, barracks, camping'), +('駐屯', 'チュウトン', 'stationing (troops), occupancy'), +('英噸', 'エイトン', 'long ton, British ton'), +('鈍', 'ドン', 'dull, slow, stupid, dull-brained'), +('鈍感', 'ドンカン', 'thickheaded, insensitive, dull, thick-skinned'), +('焼鈍', 'ショウドン', 'annealing'), +('愚鈍', 'グドン', 'stupidity, silliness, asininity, imbecility, dim-wittedness'), +('藤黄', 'トウオウ', 'gamboge'), +('藤花', 'トウカ', 'wisteria flower'), +('葛藤', 'カットウ', 'conflict, complication, troubles, discord'), +('督促', 'トクソク', 'urge, demand, importunity'), +('督学官', 'トクガクカン', 'school inspector'), +('総督', 'ソウトク', 'governor-general, governor, viceroy'), +('家督', 'カトク', 'heir, successor, family estate, family fortune, inheritance, headship of a family'), +('胴', 'ドウ', 'trunk, torso, body, abdomen, waist, plastron (in kendo), touching the plastron (kimari-te in kendo), frame (of a drum, etc.), sound box (of a shamisen, etc.), hull (of a ship), dealer'), +('銅像', 'ドウゾウ', 'bronze statue'), +('共鳴胴', 'キョウメイドウ', 'sound box (of an instrument), sounding box'), +('響胴', 'キョウドウ', 'sound box (of a musical instrument), soundbox'), +('貪', 'タン', 'coveting, raga (desire)'), +('貪欲', 'ドンヨク', 'avarice, greed, covetousness, raga (desire)'), +('貪', 'タン', 'coveting, raga (desire)'), +('貪欲', 'ドンヨク', 'avarice, greed, covetousness, raga (desire)'), +('貪', 'タン', 'coveting, raga (desire)'), +('貪欲', 'ドンヨク', 'avarice, greed, covetousness, raga (desire)'), +('無貪', 'ムトン', 'non-craving, non-coveting'), +('凸', 'トツ', 'convex'), +('凸凹', 'デコボコ', 'unevenness, roughness, ruggedness, bumpiness, inequality, imbalance, unevenness, difference'), +('凹凸', 'オウトツ', 'unevenness, bumpiness, roughness, ruggedness, imbalance, inequality, unevenness, disparity'), +('両凸', 'リョウトツ', 'biconvex'), +('瞳孔', 'ドウコウ', 'pupil (of the eye)'), +('瞳孔拡張', 'ドウコウカクチョウ', 'pupil dilation'), +('縮瞳', 'シュクドウ', 'miosis, myosis, (excessive) constriction of the pupil'), +('散瞳', 'サンドウ', 'mydriasis, (excessive) dilation of the pupil'), +('騰貴', 'トウキ', 'rise (in price or value), appreciation, advance'), +('騰勢', 'トウセイ', 'upward trend'), +('急騰', 'キュウトウ', 'sudden rise (in price), sharp rise, jump, surge'), +('高騰', 'コウトウ', 'sudden price jump, steep price rise'), +('尼', 'ニ', 'bhikkhuni (fully ordained nun), Indonesia'), +('尼僧', 'ニソウ', 'Buddhist nun, Catholic nun, sister'), +('僧尼', 'ソウニ', 'monks and nuns'), +('修道尼', 'シュウドウニ', 'nun'), +('二', 'ニ', 'two, 2'), +('20', 'ニジュウ', 'twenty, 20'), +('二心', 'フタゴコロ', 'duplicity, treachery, double-dealing'), +('疑弐', 'ギジ', 'doubt, distrust, disobedience'), +('副弐', 'フクジ', 'secondary (thing), backup'), +('闘争', 'トウソウ', 'fight, battle, combat, conflict, struggle (for rights, higher wages, etc.), strife, (labor) dispute, strike'), +('闘志', 'トウシ', 'fighting spirit, (will to) fight'), +('戦闘', 'セントウ', 'battle, fight, combat'), +('格闘', 'カクトウ', '(hand-to-hand) fight, grapple, scuffle, tussle, struggling (with a problem, task, etc.), grappling, wrestling, getting to grips (with)'), +('虹霓', 'コウゲイ', 'rainbow'), +('虹彩', 'コウサイ', 'iris (of the eye)'), +('副虹', 'フクニジ', 'secondary rainbow'), +('月虹', 'ゲッコウ', 'moonbow, lunar rainbow, whitish rainbow cast by moonlight, lunar bow, space rainbow'), +('軟', 'ナン', 'soft'), +('軟骨', 'ナンコツ', 'cartilage, nankotsu, (dish of) gristle (usu. of chicken, deep-fried)'), +('硬軟', 'コウナン', 'hardness and softness, hard line and moderate line'), +('洞', 'ドウ', 'sinus, cavity, antrum, neighborhood (administrative division in North Korea)'), +('洞察', 'ドウサツ', 'discernment, insight'), +('空洞', 'クウドウ', 'cave, hollow, cavity, hollow'), +('風洞', 'フウドウ', 'wind tunnel'), +('尿', 'ニョウ', 'urine'), +('尿酸', 'ニョウサン', 'uric acid'), +('検尿', 'ケンニョウ', 'urinalysis'), +('排尿', 'ハイニョウ', 'urination, micturition'), +('妊娠', 'ニンシン', 'pregnancy, conception, gestation'), +('妊婦', 'ニンプ', 'pregnant woman'), +('避妊', 'ヒニン', 'contraception'), +('不妊', 'フニン', 'infertility, sterility, barrenness'), +('忍', 'ニン', 'endurance, forbearance, patience, self-restraint'), +('忍耐', 'ニンタイ', 'endurance, perseverance, patience'), +('無生法忍', 'ムショウホウニン', 'anutpattika-dharma-ksanti (recognition that nothing really arises or perishes)'), +('中忍', 'チュウニン', 'ninja commander'), +('寧夏回族自治区', 'ネイカカイゾクジチク', 'Ningxia Hui Autonomous Region (China)'), +('寧日', 'ネイジツ', 'peaceful day'), +('西寧', 'セイネイ', 'Xining (China)'), +('静寧', 'セイネイ', 'peace and quiet, tranquility, peace on earth'), +('粘膜', 'ネンマク', 'mucous membrane'), +('粘土', 'ネンド', 'clay'), +('濃', 'ノウ', 'dark (color), concentrated, thick'), +('濃厚', 'ノウコウ', 'rich (in flavor, color, smell, etc.), thick, dense, strong, very likely, highly possible, passionate, hot'), +('取っ手', 'トッテ', 'handle, grip, knob'), +('把握', 'ハアク', 'grasp, catch, understanding'), +('銃把', 'ジュウハ', 'grip of a gun'), +('握把', 'アクハ', 'holding, gripping, grip (sword, gun, etc.), hilt, handle'), +('把', 'ワ', 'counter for bundles'), +('一把', 'イチワ', 'bundle, bunch'), +('捻挫', 'ネンザ', 'sprain, twist, wrench'), +('捻軍', 'ネングン', 'Nian Rebellion (of China; 1851-1868)'), +('揉捻', 'ジュウネン', 'rolling freshly-picked tea-leaves, crushing tea'), +('悩殺', 'ノウサツ', 'fascinate, bewitch, enchant'), +('悩乱', 'ノウラン', 'worry, anguish'), +('苦悩', 'クノウ', '(mental) agony, anguish, suffering, distress'), +('懊悩', 'オウノウ', 'anguish, trouble, agony'), +('覇', 'ハ', 'supremacy (over a nation), hegemony, domination, leadership, championship, victory'), +('覇権', 'ハケン', 'hegemony'), +('制覇', 'セイハ', 'conquest, domination, supremacy, mastery, winning (a championship)'), +('初制覇', 'ハツセイハ', 'first victory'), +('縛', 'バク', 'tying up, restraint, restriction, arrest'), +('縛する', 'バクスル', 'to bind, to restrain'), +('捕縛', 'ホバク', 'arrest, apprehension, capture'), +('呪縛', 'ジュバク', 'spell (that restricts one''s movements), binding spell'), +('漠', 'バク', 'vague, obscure, vast, boundless'), +('漠然', 'バクゼン', 'vague, obscure, indistinct, hazy, ambiguous'), +('冥漠', 'メイバク', 'dim and distant'), +('空漠', 'クウバク', 'vast, boundless, vague'), +('婆', 'ババ', 'old woman, joker (card), hag, bitch'), +('婆さん', 'バアサン', 'grandmother, old woman, female senior citizen'), +('爪哇', 'ジャワ', 'Java (Indonesian island), Java coffee'), +('提婆', 'ダイバ', 'deva (being with god-like characteristics)'), +('廃止', 'ハイシ', 'abolition, discontinuance, discontinuation, repeal, annulment'), +('廃棄', 'ハイキ', 'disposal, abandonment, scrapping, discarding, abolition, annulment, cancellation, abrogation, repeal'), +('荒廃', 'コウハイ', 'ruin, destruction, devastation, waste, decay'), +('退廃', 'タイハイ', '(moral) decay, (social) decline, decadence, corruption, degeneration, deterioration, decline (in prosperity)'), +('拍', 'ハク', 'beat, mora'), +('拍手', 'ハクシュ', 'clapping hands, applause'), +('強拍', 'キョウハク', 'accented beat'), +('弱拍', 'ジャクハク', 'unaccented beat'), +('拍子木', 'ヒョウシギ', 'wooden clappers'), +('拍子', 'ヒョウシ', '(musical) time, tempo, beat, rhythm, the moment, the instance, chance'), +('賠償', 'バイショウ', 'compensation, reparations, indemnity, damages'), +('賠償金', 'バイショウキン', 'indemnities, reparations'), +('損賠', 'ソンバイ', 'restitution, compensation for damages'), +('培養', 'バイヨウ', 'cultivation, nurture, culture'), +('培植', 'バイショク', 'cultivation (of plants), culturing'), +('栽培', 'サイバイ', 'cultivation'), +('育成栽培', 'イクセイサイバイ', 'vegetable and fruit growing'), +('薄氷', 'ハクヒョウ', 'thin ice'), +('薄弱', 'ハクジャク', 'feebleness, weakness, weak'), +('肉薄', 'ニクハク', 'closing in on (the enemy, first place, etc.), coming close to, pressing hard, pressing hard (e.g. with a question), taking to task, grilling'), +('精薄', 'セイハク', 'mental retardation (pejorative), mentally retarded'), +('輩', 'ハイ', 'group, gang, bunch'), +('輩出', 'ハイシュツ', 'producing (people) in great numbers, appearing one after the other'), +('軽輩', 'ケイハイ', 'underling'), +('儕輩', 'サイハイ', 'colleagues, fellows, comrades'), +('迫害', 'ハクガイ', 'persecution, oppression'), +('迫害者', 'ハクガイシャ', 'persecutor'), +('脅迫', 'キョウハク', 'threat, menace, coercion, blackmail'), +('肉薄', 'ニクハク', 'closing in on (the enemy, first place, etc.), coming close to, pressing hard, pressing hard (e.g. with a question), taking to task, grilling'), +('剥奪', 'ハクダツ', 'stripping (of rights, office, etc.), deprivation, forfeit, revocation, divestiture'), +('剥脱', 'ハクダツ', 'coming off, peeling off'), +('落剥', 'ラクハク', 'peeling off, coming off'), +('排', 'ハイ', 'anti-'), +('排除', 'ハイジョ', 'exclusion, removal, elimination, clearing away, getting rid of'), +('暴排', 'ボウハイ', 'combating organized crime, elimination of criminal gangs'), +('陪審', 'バイシン', 'jury'), +('陪審員', 'バイシンイン', 'juror, juryman'), +('反閇', 'ヘンバイ', 'ceremony performed by a sorcerer to protect a noble setting out on a trip, dance steps inspired by this ceremony'), +('媒体', 'バイタイ', 'medium, media'), +('媒酌', 'バイシャク', 'matchmaking, acting as a go-between'), +('溶媒', 'ヨウバイ', 'solvent'), +('冷媒', 'レイバイ', 'refrigerant, coolant'), +('泊', 'ハク', 'counter for nights of a stay, overnight stay, lodging'), +('泊地', 'ハクチ', 'anchorage, berth'), +('宿泊', 'シュクハク', 'accommodation, lodging'), +('停泊', 'テイハク', 'anchorage, anchoring, mooring'), +('伯', 'ハク', 'count, earl, chief official of the Department of Worship, eldest brother, Brazil, Brazilian'), +('伯爵', 'ハクシャク', 'count, earl'), +('画伯', 'ガハク', 'master painter, artist'), +('医伯', 'イハク', 'doctor'), +('杯', 'ハイ', 'sake cup, cup for alcoholic beverages, counter for cupfuls, bowlfuls, spoonfuls, etc., counter for boats, counter for octopuses and squid, cup (in sports), championship'), +('杯洗', 'ハイセン', 'small vessel or bowl in which sake cups are rinsed'), +('賜杯', 'シハイ', 'Emperor''s cup, trophy given by the Emperor'), +('苦杯', 'クハイ', 'bitter experience (ordeal)'), +('舶来品', 'ハクライヒン', 'imported article, imported goods'), +('舶来', 'ハクライ', 'imported, foreign-made'), +('巨舶', 'キョハク', 'ocean liner'), +('罵倒', 'バトウ', '(verbal) abuse, denunciation, disparagement, vilification, scathing criticism'), +('罵言', 'バゲン', '(verbal) abuse, abusive language'), +('冷罵', 'レイバ', 'sneer, scoffing, abuse'), +('痛罵', 'ツウバ', 'abuse, invective, denunciation, sharp criticism'), +('爆', 'バク', 'burst of laughter, roar of laughter'), +('爆発', 'バクハツ', 'explosion, detonation, eruption, eruption (of discontent, etc.), outburst, outpouring'), +('空爆', 'クウバク', 'aerial bombing'), +('水爆', 'スイバク', 'hydrogen bomb'), +('匕箸', 'ヒチョ', 'spoon and chopsticks'), +('鉢', 'ハチ', 'bowl, pot, basin, flowerpot, crown, brainpan'), +('鉢植え', 'ハチウエ', 'potted plant, potting'), +('乳鉢', 'ニュウバチ', 'mortar'), +('衣鉢', 'イハツ', 'mysteries of one''s master''s art, robes and a bowl (monk''s key possessions auctioned off at his funeral), transmission of the dharma from master to disciple (in Zen)'), +('托鉢', 'タクハツ', 'religious mendicancy, asking for alms, monk''s begging, going with one''s bowl to the meditation hall at mealtime (in a Zen temple)'), +('衣鉢', 'イハツ', 'mysteries of one''s master''s art, robes and a bowl (monk''s key possessions auctioned off at his funeral), transmission of the dharma from master to disciple (in Zen)'), +('髪', 'ハツ', 'hair (on the head), tresses, locks'), +('理髪', 'リハツ', 'haircut'), +('毛髪', 'モウハツ', 'hair'), +('抜群', 'バツグン', 'outstanding, excellent, exceptional, surpassing, extraordinary, distinguished, preeminence, distinction, extraordinariness'), +('抜山蓋世', 'バツザンガイセイ', 'great strength and energy (of a mighty hero), Herculean strength and vitality'), +('選抜', 'センバツ', 'selection, choice, picking out'), +('卓抜', 'タクバツ', 'excellence, superiority, preeminence, prevalence'), +('氾濫', 'ハンラン', 'overflowing, flood, inundation, deluge, oversupply, plethora'), +('氾濫原', 'ハンランゲン', 'flood plain'), +('伐木', 'バツボク', 'felling, logging'), +('間伐', 'カンバツ', 'periodic thinning (e.g. forest)'), +('乱伐', 'ランバツ', 'reckless deforestation, overcutting of forests'), +('木目', 'キメ', 'texture (e.g. skin, fabric), grain (e.g. wood), detail'), +('肌骨', 'キコツ', 'skin and bones'), +('雪肌', 'ユキハダ', 'snow''s surface, lily-white skin, fair skin'), +('美肌', 'ビハダ', 'beautiful skin'), +('罰', 'バツ', 'punishment, penalty'), +('罰一', 'バツイチ', 'being once divorced, one-time divorcee, one x mark (i.e. one name struck from the family register)'), +('処罰', 'ショバツ', 'punishment, penalty'), +('懲罰', 'チョウバツ', 'discipline, punishment, reprimand'), +('罰', 'バチ', '(divine) punishment, curse, retribution'), +('罰が当たる', 'バチガアタル', 'to incur divine punishment, to pay for one''s sins, you''ll pay for that!, what goes around, comes around'), +('仏罰', 'ブツバチ', 'punishment by Buddha, divine retribution'), +('閥', 'バツ', 'clique, clan, faction'), +('閥族', 'バツゾク', 'clan, clique'), +('財閥', 'ザイバツ', 'zaibatsu, financial conglomerate, industrial group'), +('学閥', 'ガクバツ', 'alma mater clique, old school tie'), +('帆走', 'ハンソウ', 'sailing'), +('帆船', 'ハンセン', 'sailing ship, sailing boat, sailing vessel'), +('横帆', 'オウハン', 'square sail'), +('縦帆', 'ジュウハン', 'fore-and-aft sail'), +('畦畔', 'ケイハン', 'ridge between rice fields, causeway'), +('橋畔', 'キョウハン', 'approach to a bridge'), +('伴侶', 'ハンリョ', 'companion, partner, spouse'), +('伴性遺伝', 'ハンセイイデン', 'sex-linked inheritance'), +('同伴', 'ドウハン', 'accompanying, being accompanied by, going with'), +('随伴', 'ズイハン', 'attendance, accompanying, following, adjoint'), +('伴奏', 'バンソウ', '(musical) accompaniment'), +('伴侶', 'ハンリョ', 'companion, partner, spouse'), +('相伴', 'ショウバン', 'partaking, participating, taking part in, sharing (something with someone)'), +('お相伴', 'オショウバン', 'sharing a meal'), +('汎', 'ハン', 'pan-'), +('氾濫', 'ハンラン', 'overflowing, flood, inundation, deluge, oversupply, plethora'), +('販売', 'ハンバイ', 'sales, selling, marketing'), +('販路', 'ハンロ', 'market (for goods, services, etc.), outlet (for selling), opening'), +('市販', 'シハン', 'putting on the market, putting on sale, making commercially available, commercial, off-the-shelf, store-bought, over-the-counter'), +('再販', 'サイハン', 'resale'), +('搬入', 'ハンニュウ', 'carrying in (esp. heavy objects, artwork, furniture), bringing in, taking in'), +('搬送', 'ハンソウ', 'transportation, conveyance, delivery, hospitalization, transfer to hospital'), +('斑', 'ブチ', 'spots, speckles, mottles'), +('斑点', 'ハンテン', 'speck, fleck'), +('水斑', 'スイハン', 'water spot (e.g. dried on a dish after washing)'), +('黄斑', 'オウハン', 'macula, macule, macula lutea, yellow spot'), +('頒布', 'ハンプ', 'distribution, circulation'), +('頒価', 'ハンカ', 'distribution price'), +('煩', 'ハン', 'trouble'), +('煩雑', 'ハンザツ', 'complex, intricate, complicated, confused, troublesome, vexatious, cumbersome'), +('煩悩', 'ボンノウ', 'worldly desires, evil passions, appetites of the flesh, klesha (polluting thoughts such as greed, hatred and delusion, which result in suffering)'), +('煩悩具足', 'ボンノウグソク', 'possessing worldly desires and passions'), +('範', 'ハン', 'example, model'), +('範囲', 'ハンイ', 'extent, scope, sphere, range, span'), +('垂範', 'スイハン', 'setting an example'), +('師範', 'シハン', 'instructor, (fencing) teacher, model'), +('般若', 'ハンニャ', 'prajna (wisdom required to attain enlightenment), noh mask of a grinning, horned demoness (represents a woman''s rage and jealousy), family crest designed after the Hannya noh mask, dreadful face (esp. of a woman driven mad by jealousy), terrifying facial expression'), +('汎化', 'ハンカ', 'generalization (psychology, linguistics, etc.)'), +('諸般', 'ショハン', 'various, several'), +('過般', 'カハン', 'some time ago, recently'), +('蛮勇', 'バンユウ', 'foolhardiness, recklessness, savage valour, savage valor, brute courage'), +('蛮行', 'バンコウ', 'act of barbarity, barbarism, brutality, savagery'), +('南蛮', 'ナンバン', 'southern barbarians (formerly used by the Chinese to refer to non-ethnic Chinese to the south), South-East Asia, Western Europe (esp. Spain and Portugal, their South-East Asian colonies, and their goods and people arriving in Japan via the colonies), exotic (esp. Western European or South-East Asian style), (in dance, puppetry, etc.) thrusting the right foot and right arm forward at the same time (or left foot and left arm), nanban, dish prepared using chili peppers and Welsh onions'), +('生蕃', 'セイバン', 'unconquered savage, uncivilized aboriginal, aboriginal Taiwanese tribes outside Qing China''s jurisdiction'), +('妃', 'ヒ', 'princess, consort'), +('妃殿下', 'ヒデンカ', 'princess, Her Royal Highness'), +('皇太子妃', 'コウタイシヒ', 'crown princess'), +('王太妃', 'オウタイヒ', 'crown princess'), +('藩', 'ハン', 'feudal domain (Edo and early Meiji periods, precursor to current prefectures), fiefdom, province'), +('藩主', 'ハンシュ', 'feudal lord, daimyo'), +('大藩', 'タイハン', 'large feudal domain, large fiefdom, powerful clan'), +('廃藩', 'ハイハン', 'abolition of the han system'), +('繁', 'ハン', 'complexity, frequency, trouble, traditional Chinese character, unsimplified Chinese character'), +('繁栄', 'ハンエイ', 'prosperity, thriving, flourishing'), +('盤', 'バン', 'disk, disc, record, clock face, tray, shallow bowl, grid, board (e.g. in shogi)'), +('盤面', 'バンメン', 'surface of a board or record'), +('地盤', 'ジバン', 'ground, crust (earth), bed (gravel, river, etc.), foundation (building, etc.), base, constituency, power base, support (electoral), footing, foothold'), +('算盤', 'ソロバン', 'abacus, soroban, calculation (esp. of profit and loss), reckoning'), +('疲労', 'ヒロウ', 'fatigue, weariness, exhaustion, tiredness'), +('疲労感', 'ヒロウカン', 'tired feeling, feeling of exhaustion, sense of fatigue, fatigability'), +('卑怯', 'ヒキョウ', 'cowardly, craven, unfair, mean, sneaky, dirty, dastardly'), +('卑屈', 'ヒクツ', 'menial, meanness, servility, abject'), +('男尊女卑', 'ダンソンジョヒ', 'male domination of women, male chauvinism, subjection of women'), +('野卑', 'ヤヒ', 'vulgar, mean, base, coarse, crude'), +('彼是', 'アレコレ', 'this and that, this or that, one thing or another, this way and that, around, about, round about, roughly, nearly, almost'), +('彼岸', 'ヒガン', 'equinoctial week (when Buddhist services are held), Buddhist services during the equinoctial week, nirvana'), +('被', 'ヒ', 'indicates the target of an activity, -ee (e.g. employee, examinee, trustee)'), +('被害', 'ヒガイ', '(suffering) damage, injury, harm'), +('外被', 'ガイヒ', '(protective) coat, casing, housing, jacket'), +('花被', 'カヒ', 'perianth, floral envelope'), +('披露', 'ヒロウ', 'announcement, presentation, demonstration, displaying, showing, introducing, unveiling, revealing, performing'), +('披露宴', 'ヒロウエン', 'reception (e.g. wedding), banquet, celebration, party'), +('直披', 'ジキヒ', 'personal, confidential (letter)'), +('嫡披', 'チャクヒ', 'confidential letter'), +('開扉', 'カイヒ', 'opening a door'), +('小開扉', 'ショウカイヒ', 'opening a door for a moment (esp. on the train, when someone''s foot is stuck, etc.)'), +('碑', 'イシブミ', 'stone monument bearing an inscription (esp. memorial for future generations), stele, stela'), +('碑文', 'ヒブン', 'inscription, epitaph, epigraph'), +('詩碑', 'シヒ', 'monument (stele, gravestone, etc.) engraved with a poem'), +('慰霊碑', 'イレイヒ', 'cenotaph, memorial monument'), +('罷免', 'ヒメン', 'dismissal (from a position), discharge'), +('罷官', 'ヒカン', 'removal from office'), +('避難', 'ヒナン', 'taking refuge, finding shelter, evacuation, escape, seeking safe haven'), +('避難民', 'ヒナンミン', 'evacuees, displaced persons, refugees'), +('回避', 'カイヒ', 'evasion, avoidance'), +('逃避', 'トウヒ', 'escape, evasion, flight'), +('尾', 'ビ', 'Chinese "Tail" constellation (one of the 28 mansions), counter for fish, shrimp, etc.'), +('尾行', 'ビコウ', 'shadow, tail, following'), +('語尾', 'ゴビ', '(inflectional) ending of a word, end of a sentence'), +('最後尾', 'サイコウビ', 'end (e.g. of a line), tail end, rear, backmost part'), +('扶養', 'フヨウ', 'support (e.g. of one''s dependents), maintenance'), +('扶養家族', 'フヨウカゾク', 'one''s dependents'), +('家扶', 'カフ', 'steward'), +('煙突掃除夫', 'エントツソウジフ', 'chimney sweeper (cleaner)'), +('眉宇', 'ビウ', 'brow, brows'), +('眉雪', 'ビセツ', 'snow-white eyebrows'), +('拝眉', 'ハイビ', 'having the pleasure of seeing (a person)'), +('愁眉', 'シュウビ', 'worried look, melancholy air'), +('眉間', 'ミケン', 'brow, glabella, middle forehead, area between the eyebrows'), +('肘関節', 'チュウカンセツ', 'elbow joint'), +('肘頭滑液嚢炎', 'チュウトウカツエキノウエン', 'olecranoid bursitis, miner''s elbow'), +('掣肘', 'セイチュウ', 'restraint, restriction, control, check'), +('舞姫', 'マイヒメ', 'female dancer, dancing girl, danseuse'), +('寵姫', 'チョウキ', 'one''s favorite mistress, one''s favourite mistress'), +('描写', 'ビョウシャ', 'depiction, description, portrayal'), +('描画', 'ビョウガ', 'drawing, painting'), +('線描', 'センビョウ', 'line drawing'), +('素描', 'ソビョウ', 'drawing, sketch, outline, summary, synopsis'), +('漂流', 'ヒョウリュウ', 'drifting, drift, being adrift'), +('漂流者', 'ヒョウリュウシャ', 'person adrift on the sea, castaway (on an island)'), +('漂々', 'ヒョウヒョウ', 'buoyantly, airily, with a light heart'), +('浮漂', 'フヒョウ', 'floating'), +('恐怖', 'キョウフ', 'fear, dread, dismay, terror, horror, scare, panic'), +('畏怖', 'イフ', 'awe, fear, dread, fright'), +('浜堤', 'ヒンテイ', 'beach ridge'), +('海浜', 'カイヒン', 'seashore, seaside, beach'), +('京浜', 'ケイヒン', 'Tokyo and Yokohama'), +('匹偶', 'ヒツグウ', 'pair, couple (husband and wife), friend, comrade'), +('馬匹', 'バヒツ', 'horses'), +('瓶', 'ビン', 'bottle, jar, decanter, flagon, phial, vial'), +('瓶詰め', 'ビンヅメ', 'bottling, bottled'), +('火炎瓶', 'カエンビン', 'Molotov cocktail, petrol bomb, gasoline bomb'), +('水瓶', 'スイビョウ', 'portable water vessel (for drinking or washing up)'), +('付近', 'フキン', 'neighborhood, vicinity, environs, district, approaching'), +('付加', 'フカ', 'addition, annexation, appendage'), +('寄付', 'キフ', 'contribution, donation'), +('送付', 'ソウフ', 'sending (esp. email attachments), forwarding, remitting'), +('苗', 'ミャオ', 'Miao (people), Hmong'), +('苗裔', 'ビョウエイ', 'descendant'), +('種苗', 'シュビョウ', 'seeds and seedlings, eggs and hatchlings, (fish) eggs and fry'), +('育苗', 'イクビョウ', 'raising seedlings'), +('苗字', 'ミョウジ', 'surname, family name, last name'), +('苗字帯刀', 'ミョウジタイトウ', 'the right to bear a surname and to wear a sword (during the Edo period)'), +('豆苗', 'トウミョウ', 'pea sprouts'), +('猫額', 'ビョウガク', '(as small as a) cat''s forehead'), +('猫額大', 'ビョウガクダイ', 'tiny'), +('怪猫', 'カイビョウ', 'monster cat, cat with magical powers'), +('成猫', 'セイビョウ', 'adult cat, fully-grown cat'), +('頻繁', 'ヒンパン', 'frequent, incessant'), +('頻度', 'ヒンド', 'frequency (of occurrence)'), +('赴任', 'フニン', 'moving to a different location to start a new job, (proceeding to) new appointment'), +('赴援', 'フエン', 'going to save, reinforcing (e.g. troops)'), +('賓客', 'ヒンキャク', 'guest of honour, guest of honor, privileged guest, visitor'), +('賓格', 'ヒンカク', 'objective case'), +('国賓', 'コクヒン', 'state guest'), +('来賓', 'ライヒン', 'guest, visitor, visitor''s arrival'), +('微', 'ビ', 'minuteness, one millionth'), +('微妙', 'ビミョウ', 'subtle, delicate, fine, difficult, complex, tricky, delicate (situation, position, etc.), close (e.g. decision), doubtful, questionable, dicey, not great, iffy'), +('衰微', 'スイビ', 'decline, decay, ebb'), +('細微', 'サイビ', 'minute, meager, meagre, mean'), +('浮力', 'フリョク', 'buoyancy, floating power'), +('浮上', 'フジョウ', 'surfacing, rising to the surface, emerging, leaping into prominence, rising (of rank)'), +('軽浮', 'ケイフ', 'fickle, frivolous'), +('敏', 'ビン', 'quick, nimble, agile, sharp, smart, clever'), +('敏感', 'ビンカン', 'sensitive, alert, aware, susceptible'), +('穎敏', 'エイビン', 'sharp (mind), keen, acute'), +('慧敏', 'ケイビン', 'clever, of quick intellect'), +('訃', 'フ', 'news of someone''s death'), +('訃報', 'フホウ', 'news of someone''s death, obituary'), +('膝窩静脈', 'シツカジョウミャク', 'popliteal vein'), +('膝窩動脈', 'シツカドウミャク', 'popliteal artery'), +('符', 'フ', 'charm, talisman, amulet, tally, sign, mark, note, fu, unit used in calculation of a hand''s score'), +('符合', 'フゴウ', 'agreement, coincidence, correspondence, conformity'), +('意符', 'イフ', 'part of a kanji for which the role is primarily to represent the meaning (as opposed to the pronunciation)'), +('合い符', 'アイフ', 'baggage claim tag (at hotels, stations, etc.)'), +('腐敗', 'フハイ', 'decomposition, putrefaction, putrescence, spoilage, corruption, degeneracy, decay, depravity'), +('腐食', 'フショク', 'corrosion, etching, action of acid, rot, rust, erosion, saprophagy'), +('防腐', 'ボウフ', 'preservation from decay, prevention of putrefaction, embalmment, antisepsis'), +('高野豆腐', 'コウヤドウフ', 'freeze-dried tofu'), +('皮膚', 'ヒフ', 'skin'), +('肌膚', 'キフ', 'skin'), +('敷設', 'フセツ', 'laying (a railroad, pipes, naval mines, etc.), construction'), +('敷衍', 'フエン', 'expatiation, enlargement (e.g. on a point), elaboration, amplification, clear explanation, paraphrasing'), +('泌尿器', 'ヒニョウキ', 'urinary organs'), +('泌乳', 'ヒツニュウ', 'lactation'), +('泌尿器', 'ヒニョウキ', 'urinary organs'), +('泌乳', 'ヒツニュウ', 'lactation'), +('舞台', 'ブタイ', 'stage (of a theatre, concert hall, etc.), (stage) performance, setting (of a story), scene, sphere (of activity), stage (e.g. political stage), scene, arena, world'), +('舞踏', 'ブトウ', 'dance (esp. Western style), dancing'), +('鼓舞', 'コブ', 'encouragement, inspiration, rousing, stirring up, raising (e.g. morale)'), +('演舞', 'エンブ', 'dance performance'), +('伏兵', 'フクヘイ', 'ambush, troops in ambush, unexpected opposition, unexpected obstacle'), +('伏線', 'フクセン', 'foreshadowing, preparation, precautionary measures'), +('起伏', 'キフク', 'undulation, ups and downs, highs and lows'), +('承服', 'ショウフク', 'accepting, consenting, agreeing, submission, compliance, agreement, consent'), +('沸々', 'フツフツ', 'simmer, bubble out, flow out'), +('煮沸', 'シャフツ', 'boiling up'), +('沸々', 'フツフツ', 'simmer, bubble out, flow out'), +('賦', 'フ', 'poem, narrative (style of the Shi Jing), classical Chinese rhymed prose'), +('賦課', 'フカ', 'levy, imposition'), +('配賦', 'ハイフ', 'allocation, apportionment, distribution'), +('貢賦', 'コウフ', 'tribute and taxation'), +('賦役', 'フエキ', 'slave labour, slave labor, compulsory service, forced labour, forced labor, exacted service'), +('賦払い', 'ブバライ', 'payment on an installment system, payment on an instalment system, easy payment plan'), +('噴火', 'フンカ', 'eruption, volcanic eruption'), +('噴水', 'フンスイ', 'water fountain'), +('暴噴', 'ボウフン', 'blowout (oil well, gas field, etc.)'), +('自噴', 'ジフン', 'gushing forth (e.g. of oil), spouting, natural emergence (of a hot spring)'), +('憤慨', 'フンガイ', 'indignation, resentment'), +('憤激', 'フンゲキ', 'fury'), +('公憤', 'コウフン', 'public indignation, anger (as a citizen)'), +('痛憤', 'ツウフン', 'strong indignation'), +('柄節', 'ヘイセツ', 'scape (of an insect)'), +('政柄', 'セイヘイ', 'political power'), +('羽柄', 'ウヘイ', 'calamus, quill'), +('併用', 'ヘイヨウ', 'using together (jointly), used at the same time'), +('併合', 'ヘイゴウ', 'merger, joining into one, amalgamation, melding, merging, annexation, absorption'), +('払暁', 'フツギョウ', 'dawn, daybreak'), +('墳墓', 'フンボ', 'grave, tomb'), +('墳丘', 'フンキュウ', 'tumulus, grave mound'), +('古墳', 'コフン', 'ancient burial mound, barrow, tumulus'), +('前方後円墳', 'ゼンポウコウエンフン', 'keyhole-shaped tumulus (form of ancient Imperial grave)'), +('幅', 'フク', 'scroll, counter for scrolls'), +('幅員', 'フクイン', 'width (of a road, bridge, etc.)'), +('増幅', 'ゾウフク', 'amplification (elec.), magnification, amplification, making larger'), +('双幅', 'ソウフク', 'pair of hanging scrolls'), +('普通', 'フツウ', 'normal, ordinary, regular, usual, common, average, normally, ordinarily, usually, generally, commonly, local train, train that stops at every station'), +('普段', 'フダン', 'usual, normal, everyday, habitual, ordinary, usually, normally, generally, habitually, always'), +('譜', 'フ', '(sheet) music, (musical) note, (musical) score, genealogy, family tree, record of a game of go, shogi, chess, etc.'), +('譜面', 'フメン', 'sheet music, score'), +('系譜', 'ケイフ', 'genealogy, lineage, family tree, pedigree'), +('五線譜', 'ゴセンフ', 'staff notation'), +('紛争', 'フンソウ', 'dispute, conflict, trouble, strife'), +('紛失', 'フンシツ', 'loss, going missing'), +('人工授粉', 'ジンコウジュフン', 'artificial pollination, hand pollination, mechanical pollination'), +('侮', 'ブ', '(something) despised, (something) made light of'), +('侮辱', 'ブジョク', 'insult, affront, slight, contempt (e.g. of court)'), +('軽侮', 'ケイブ', 'contempt, scorn'), +('封', 'フウ', 'seal'), +('封筒', 'フウトウ', 'envelope'), +('同封', 'ドウフウ', 'enclosing (e.g. with a letter)'), +('未開封', 'ミカイフウ', 'unopened, with an unbroken seal'), +('封建', 'ホウケン', 'feudalistic'), +('封建的', 'ホウケンテキ', 'feudal, feudalistic'), +('移封', 'イホウ', 'forced relocation of a daimyo to a different domain by the Edo shogunate'), +('旧封', 'キュウホウ', 'former fief'), +('覆', 'フク', 'concealment (of one''s vices), veil, cover, overturning, toppling'), +('覆面', 'フクメン', 'mask, veil, disguise, anonymous, unmarked, incognito'), +('修復', 'シュウフク', 'restoration, repair, mending'), +('被覆', 'ヒフク', 'coating, covering, cover'), +('雰囲気', 'フンイキ', 'atmosphere, mood, ambience, ambiance, aura, feel, a certain air, presence, special aura, something (about someone), (Earth''s) atmosphere'), +('雰囲気美人', 'フンイキビジン', 'woman who is not traditionally beautiful yet somehow very attractive, woman with an aura of beauty'), +('丙', 'ヘイ', 'third rank, third class, third person (in a contract, etc.), third sign of the Chinese calendar'), +('丙寅', 'ヒノエトラ', 'Fire Tiger (3rd term of the sexagenary cycle, e.g. 1926, 1986, 2046)'), +('甲乙丙', 'コウオツヘイ', 'ABC, 1, 2 and 3'), +('塀', 'ヘイ', 'wall, fence'), +('塀越し', 'ヘイゴシ', 'over a wall, crossing a fence'), +('土塀', 'ドベイ', 'mud wall, earthen wall, plaster wall'), +('高塀', 'タカベイ', 'tall fence'), +('幣', 'ヘイ', 'staff with plaited paper streamers'), +('幣串', 'ヘイグシ', 'staff to which shide are attached to make a go-hei'), +('造幣', 'ゾウヘイ', 'coinage, mintage'), +('衰幣', 'スイヘイ', 'decline'), +('弊', 'ヘイ', 'bad habit, harm, my, our'), +('弊害', 'ヘイガイ', 'harmful effect, harmful influence, evil practice, abuse, malady'), +('疲弊', 'ヒヘイ', 'exhaustion, fatigue, impoverishment, (financial) exhaustion, ruin'), +('病弊', 'ビョウヘイ', 'evil influence, ill effect'), +('障屏', 'ショウヘイ', 'partitions in a Japanese house (e.g. screens, sliding doors, etc.)'), +('遮蔽', 'シャヘイ', 'shielding, sheltering, screening, shading, masking'), +('璧', 'ヘキ', 'bi (ancient Chinese artifact; flat jade or glass disc with a circular hole in the centre)'), +('圭璧', 'ケイヘキ', 'ritual jades worn by feudal lords in ancient China'), +('双璧', 'ソウヘキ', '(two) matchless things, (two) matchless people, pair of bright jewels'), +('壁', 'カベ', 'wall, partition, barrier, obstacle, Chinese "Wall" constellation (one of the 28 mansions)'), +('壁画', 'ヘキガ', 'fresco, mural, wall painting'), +('隔壁', 'カクヘキ', 'barrier wall, bulkhead, partition, septum, diaphragm'), +('内壁', 'ナイヘキ', 'inner wall'), +('癖', 'クセ', 'habit (usu. a bad one), tendency, peculiarity, idiosyncrasy, mannerism, quirk, crease, wrinkle, curl, kink'), +('妄想癖', 'モウソウヘキ', 'day-dreamer, fantasist'), +('盗癖', 'トウヘキ', 'kleptomania'), +('偏', 'ヘン', 'left-hand radical of a character'), +('偏見', 'ヘンケン', 'prejudice, bias, distorted view'), +('普遍', 'フヘン', 'universal, general, ubiquitous, omnipresent'), +('貝偏', 'カイヘン', 'kanji "shell" radical at left'), +('軽蔑', 'ケイベツ', 'scorn, disdain, contempt'), +('侮蔑', 'ブベツ', 'scorn, disdain, contempt, slight'), +('遍', 'ヘン', 'number of times'), +('遍歴', 'ヘンレキ', 'travels, pilgrimage, itinerancy'), +('普遍', 'フヘン', 'universal, general, ubiquitous, omnipresent'), +('餅餤', 'ベイダン', 'Heian-period pastry made of duck or goose eggs mixed with vegetables boiled and wrapped in mochi which is then cut into squares'), +('餅盤', 'ヘイバン', 'laccolith'), +('画餅', 'ガベイ', 'something useless, picture of rice cakes'), +('供餅', 'クモチ', 'mochi rice cakes used as offering'), +('哺', 'ホ', 'holding food in one''s mouth, food held in one''s mouth'), +('哺乳', 'ホニュウ', 'suckling, nursing, lactation'), +('握髪吐哺', 'アクハツトホ', '(a statesman making) extraordinary efforts to find and employ capable persons (persons of great wisdom)'), +('捕鯨', 'ホゲイ', 'whaling, whale hunting, whale fishing'), +('捕獲', 'ホカク', 'capture, seizure'), +('逮捕', 'タイホ', 'arrest, apprehension, capture'), +('採捕', 'サイホ', 'collecting (plants and animals), gathering, capturing, catching'), +('募集', 'ボシュウ', 'recruitment, invitation, selection, advertisement, taking applications, raising (funds, donations, etc.), collection, subscription, solicitation, flotation (of shares, loans, etc.)'), +('募金', 'ボキン', 'fund-raising, collection of funds'), +('応募', 'オウボ', 'application, subscription, entry (competition, raffle, etc.), enlistment'), +('公募', 'コウボ', 'public appeal (e.g. for contributions), public advertisement (of a post), open recruitment, public offering (of securities)'), +('芳香', 'ホウコウ', 'perfume, fragrance, aroma, balm, sweet scent'), +('芳韻', 'ホウイン', 'Chinese poem, poem, rhyme'), +('遺芳', 'イホウ', 'memory or autograph of deceased'), +('余芳', 'ヨホウ', 'lingering fragrance, continuing fame (after death)'), +('簿記', 'ボキ', 'journalization (accounts), journalisation, bookkeeping'), +('簿外', 'ボガイ', 'unaccounted, off the books'), +('出納簿', 'スイトウボ', 'cashbook'), +('乗客名簿', 'ジョウキャクメイボ', 'list of passengers, passenger manifest, passenger register'), +('奉仕', 'ホウシ', 'service, ministry, attendance, church work, offering goods at a reduced price, providing a service for free'), +('奉公', 'ホウコウ', 'live-in domestic service, live-in apprenticeship, public duty, public service'), +('奉行', 'ブギョウ', 'magistrate, shogunate administrator'), +('奉行所', 'ブギョウショ', 'magistrate''s office'), +('供奉', 'グブ', 'accompanying, being in attendance on, inner offerer (any of the 10 high-ranking monks serving at the inner offering hall)'), +('内供奉', 'ナイグブ', 'inner offerer (any of the 10 high-ranking monks serving at the inner offering hall)'), +('邦貨', 'ホウカ', 'Japanese money'), +('邦画', 'ホウガ', 'Japanese film, Japanese painting'), +('東邦', 'トウホウ', 'Oriental country, the Orient'), +('友邦', 'ユウホウ', 'friendly nation'), +('慕情', 'ボジョウ', 'longing, yearning'), +('思慕', 'シボ', 'yearning, longing for, deep affection'), +('哀慕', 'アイボ', 'cherish the memory of, yearn for'), +('抱負', 'ホウフ', 'aspiration, ambition, plan, hopes, wishes'), +('抱腹絶倒', 'ホウフクゼットウ', 'laughing oneself into convulsions, splitting one''s sides laughing, rolling with laughter'), +('介抱', 'カイホウ', 'nursing, looking after'), +('懐抱', 'カイホウ', 'bearing in mind (a thought, feeling, etc.), embrace, hug, holding in one''s arms, bosom, (breast) pocket'), +('模倣', 'モホウ', 'imitation, copying'), +('俸', 'ホウ', 'salary'), +('俸給', 'ホウキュウ', 'salary (esp. public employees), wages, pay'), +('号俸', 'ゴウホウ', 'gradational salary'), +('増俸', 'ゾウホウ', 'salary increase, raise'), +('泡影', 'ホウエイ', 'bubbles and shadows, something transient'), +('宝瓶', 'ホウヒン', 'handleless Japanese tea pot'), +('水泡', 'スイホウ', 'foam, bubble, nothing'), +('気泡', 'キホウ', '(air) bubble (esp. in a liquid)'), +('胞子', 'ホウシ', 'spore'), +('胞衣', 'エナ', 'afterbirth, placenta'), +('卵胞', 'ランポウ', '(ovarian) follicle'), +('肺胞', 'ハイホウ', 'pulmonary alveolus, alveoli, lung cavity, air cell'), +('砲', 'ホウ', 'gun, cannon, artillery, ordnance'), +('砲火', 'ホウカ', 'gunfire, fire'), +('主砲', 'シュホウ', 'main battery, main armament'), +('迫撃砲', 'ハクゲキホウ', 'mortar'), +('蜂起', 'ホウキ', 'uprising, revolt'), +('蜂窩', 'ホウカ', 'beehive, hive, honeycomb'), +('寄生蜂', 'キセイバチ', 'parasitoid wasp, parasitic wasp, parasitic bee'), +('養蜂', 'ヨウホウ', 'beekeeping, apiculture'), +('峰頭', 'ホウトウ', 'summit of a peak'), +('未踏峰', 'ミトウホウ', 'unclimbed mountain'), +('高峰', 'コウホウ', 'high mountain, lofty peak'), +('舗', 'ホ', 'shop, store, counter for foldable things such as maps, etc.'), +('舗装', 'ホソウ', 'paving (a road), surfacing (with asphalt, concrete, etc.), pavement'), +('老舗', 'シニセ', 'long-established shop, shop of long standing, old shop'), +('名舗', 'メイホ', 'quality shop, famous store'), +('縫合', 'ホウゴウ', 'sewing together, stitching up (a wound), suture'), +('縫製', 'ホウセイ', 'sewing (by machine)'), +('裁縫', 'サイホウ', 'sewing, needlework'), +('弥縫', 'ビホウ', 'patching up'), +('飽和', 'ホウワ', 'saturation, satiation'), +('飽食', 'ホウショク', 'eating until one is full, eating one''s fill, gorging (on), satiation, having adequate food, having all one needs (for daily living), plenty'), +('坊', 'ボウ', 'bonze, monk, monk''s dwelling, boy, son, sonny, I, me, little, person who is ...'), +('坊さん', 'ボウサン', 'Buddhist priest, monk, boy'), +('朝寝坊', 'アサネボウ', 'oversleeping, late riser'), +('通せんぼ', 'トオセンボ', 'blocking the way, standing in the way'), +('坊ちゃん', 'ボッチャン', '(another''s) son, boy, young master, green young man from a well-to-do family, young man innocent of the ways of the world'), +('坊ちゃま', 'ボッチャマ', '(another''s) son, boy, young master, green young man from a well-to-do family, young man innocent of the ways of the world'), +('妨害', 'ボウガイ', 'disturbance, obstruction, hindrance, jamming, interference'), +('妨害機', 'ボウガイキ', 'jammer (e.g. radio signals), interceptor (aircraft)'), +('公妨', 'コウボウ', 'interference with a public servant in the execution of his or her duties'), +('転び公妨', 'コロビコウボウ', 'falsely-provoked arrest for obstruction, police pretending to be knocked down so as to have grounds for an arrest'), +('忙殺', 'ボウサツ', 'being extremely busy, being swamped with work'), +('忙殺される', 'ボウサツサレル', 'to be very busily occupied, to be swamped with work'), +('煩忙', 'ハンボウ', 'pressure of business, busy'), +('乏精子症', 'ボウセイシショウ', 'oligozoospermia, oligospermia'), +('乏尿', 'ボウニョウ', 'oliguria'), +('欠乏', 'ケツボウ', 'want, shortage, famine'), +('窮乏', 'キュウボウ', 'poverty, destitution, privation, indigence, penury'), +('某', 'ボウ', 'certain, one, I, me'), +('某氏', 'ボウシ', 'a certain person, unnamed person, Mr. So-and-so, a certain someone who shall remain unnamed'), +('某々', 'ボウボウ', 'so-and-so'), +('何がし', 'ナニガシ', 'certain amount, some, certain person, Mr So-and-so, a certain ..., I, me'), +('房', 'ボウ', 'chamber, room, cell (prison), atrium, home of a monk, monk, Chinese "room" constellation (one of the 28 mansions)'), +('坊主', 'ボウズ', 'Buddhist priest, bonze, close-cropped hair, crew cut, person with a shorn head, boy, sonny, lad, not catching anything (in fishing), the August 20-point card'), +('暖房', 'ダンボウ', '(indoor) heating'), +('冷房', 'レイボウ', 'air conditioning, air cooling'), +('中性脂肪', 'チュウセイシボウ', 'neutral fat, neutral lipid, triglyceride'), +('動物性脂肪', 'ドウブツセイシボウ', 'animal fat'), +('傍聴', 'ボウチョウ', 'listening (to a lecture, hearing, parliament session, etc.), attending (without participating), sitting in (e.g. on a meeting), observing'), +('傍観', 'ボウカン', 'looking on, standing by and watching, sitting back and watching, remaining a spectator'), +('路傍', 'ロボウ', 'roadside'), +('道傍', 'ドウボウ', 'side of the road, roadside'), +('冒険', 'ボウケン', 'adventure, venture, venture which is unlikely to succeed, risky attempt, danger, hazard, risk'), +('冒頭', 'ボウトウ', 'beginning, start, outset'), +('感冒', 'カンボウ', 'cold (illness)'), +('流行性感冒', 'リュウコウセイカンボウ', 'influenza, flu'), +('墨', 'ボク', 'Mexico, Mohism, ink, tattooing'), +('墨書', 'ボクショ', 'writing in India ink'), +('遺墨', 'イボク', 'autographs (brushwork) of departed person'), +('水墨', 'スイボク', 'water and ink, ink painting'), +('膨大', 'ボウダイ', 'huge, vast, enormous, colossal, extensive, large, swelling, expansion'), +('膨張', 'ボウチョウ', 'expansion, swelling, increase, growth'), +('海膨', 'カイボウ', 'rise'), +('剖検', 'ボウケン', 'autopsy, necropsy'), +('法医解剖', 'ホウイカイボウ', 'medicolegal autopsy, forensic autopsy'), +('生体解剖', 'セイタイカイボウ', 'vivisection'), +('紡績', 'ボウセキ', 'spinning (textiles), spun yarn'), +('紡織', 'ボウショク', 'spinning and weaving'), +('混紡', 'コンボウ', 'mixed yarn, mixed spinning'), +('綿紡', 'メンボウ', 'cotton spinning'), +('崩壊', 'ホウカイ', 'collapse, crumbling, breaking down, caving in, (radioactive) decay, disintegration'), +('崩落', 'ホウラク', 'collapse, break, cave-in, crash, (market) decline'), +('壊崩', 'カイホウ', 'collapse, crumbling, breaking down, caving in'), +('褒美', 'ホウビ', 'reward, prize'), +('報奨金', 'ホウショウキン', 'cash bonus, reward, bounty'), +('過褒', 'カホウ', 'excessive praise, overpraise'), +('撲滅', 'ボクメツ', 'eradication, extermination, destruction, suppression'), +('撲殺', 'ボクサツ', 'beat to death'), +('打撲', 'ダボク', 'blow, hit (on the body), beating'), +('帽', 'ボウ', 'hat, cap'), +('帽子', 'ボウシ', 'hat, cap'), +('脱帽', 'ダツボウ', 'removing one''s hat, admiring (someone) greatly, taking one''s hat off to'), +('水泳帽', 'スイエイボウ', 'swimming or bathing cap'), +('没', 'ボツ', 'death, rejection (of a manuscript, etc.), lacking, without'), +('没落', 'ボツラク', 'ruin, fall, collapse, downfall, bankruptcy'), +('出没', 'シュツボツ', 'making frequent appearances, appearing often, appearing and disappearing'), +('水没', 'スイボツ', 'submerge'), +('没薬', 'モツヤク', 'myrrh'), +('勃', 'ボツ', 'Bulgaria, spirited, rising, energetic, sudden, abrupt'), +('勃然', 'ボツゼン', 'suddenly, all at once, flaring up (in anger), in a flare'), +('鬱勃', 'ウツボツ', 'pent-up (energy, enthusiasm, etc.), burning (e.g. ambition), irrepressible (e.g. desire)'), +('勃々', 'ボツボツ', 'spirited, rising, energetic'), +('僕', 'ボク', 'I, me, you, manservant'), +('僕たち', 'ボクタチ', 'we'), +('校僕', 'コウボク', 'student studying and working at the school'), +('童僕', 'ドウボク', 'young male servant, page'), +('朴直', 'ボクチョク', 'simplicity, honesty, naivete'), +('朴訥', 'ボクトツ', 'unsophisticated, ruggedly honest, artless, unaffected, simple, naive'), +('淳朴', 'ジュンボク', 'rustic simplicity, homeliness, unsophisticated, naive, honest, simple'), +('厚朴', 'コウボク', 'Japanese bigleaf magnolia bark (used in Chinese medicine)'), +('奔放', 'ホンポウ', 'wild, uninhibited, extravagant, rampant'), +('奔走', 'ホンソウ', 'running about, making every effort, being busily engaged (in something), good offices'), +('狂奔', 'キョウホン', 'rushing around, running wild'), +('謀議', 'ボウギ', 'plot, conspiracy, conference'), +('謀反', 'ムホン', 'rebellion, uprising, insurrection, treason'), +('無謀', 'ムボウ', 'reckless, thoughtless, rash, ill-advised, impulsive, mad (e.g. scheme)'), +('共謀', 'キョウボウ', 'conspiracy, collusion, complicity'), +('謀反', 'ムホン', 'rebellion, uprising, insurrection, treason'), +('謀反', 'ムヘン', 'plotting to overthrow the government (by assassinating the emperor)'), +('親睦', 'シンボク', 'friendship, amity'), +('和睦', 'ワボク', 'reconciliation, peace, rapprochement'), +('盆', 'ボン', 'tray, family, household, O-Bon, Bon Festival, Lantern Festival, Festival of the Dead, gambler''s den'), +('盆地', 'ボンチ', 'basin (e.g. between mountains)'), +('旧盆', 'キュウボン', 'Bon Festival of the lunar calendar'), +('海盆', 'カイボン', 'ocean basin'), +('変貌', 'ヘンボウ', 'transfiguration, transformation, change of appearance'), +('風貌', 'フウボウ', 'looks, appearance'), +('麻酔', 'マスイ', 'anaesthesia, anesthesia'), +('麻痺', 'マヒ', 'paralysis, palsy, numbness, stupor'), +('大麻', 'タイマ', 'hemp, cannabis, marijuana, pot, hashish, Shinto paper offerings'), +('胡麻', 'ゴマ', 'sesame seeds, sesame (Sesamum indicum)'), +('麻雀', 'マージャン', 'mahjong, mah-jongg'), +('摩擦', 'マサツ', 'friction, rubbing, chafing, discord, friction, strife, conflict'), +('摩天楼', 'マテンロウ', 'skyscraper'), +('研磨', 'ケンマ', 'grinding, polishing, refining (a skill, knowledge, etc.), applying oneself (to study), disciplining oneself'), +('あん摩', 'アンマ', 'massage (esp. anma, a traditional form of Japanese massage), masseur, masseuse, massager, blind person'), +('翻訳', 'ホンヤク', 'translation, deciphering, decoding, translation'), +('翻弄', 'ホンロウ', 'trifling with, toying with, playing with, making sport of, making fun of, leading around by the nose, tossing about (a ship)'), +('翻', 'ハン', 'han, fan, unit that doubles the score of a hand'), +('翻刻', 'ホンコク', 'reprinting (of a book)'), +('摩耗', 'マモウ', 'wear, abrasion'), +('磨羯宮', 'マカツキュウ', 'Capricorn (10th zodiacal sign), the Goat'), +('琢磨', 'タクマ', 'polish (jewels), cultivation'), +('達磨', 'ダルマ', 'daruma, tumbling doll, round, red-painted good-luck doll in the shape of Bodhidharma, with a blank eye to be completed when a person''s wish is granted, Bodhidharma, prostitute'), +('凡', 'ボン', 'ordinary, common, mediocre'), +('凡退', 'ボンタイ', 'out in 1-2-3 order'), +('超凡', 'チョウボン', 'extraordinary'), +('不凡', 'フボン', 'uncommon, outstanding'), +('凡例', 'ハンレイ', 'explanatory notes (at the start of a book), introductory remarks, usage guide (e.g. of a dictionary), legend (on maps, drawings, etc.)'), +('膜', 'マク', 'membrane, film'), +('膜厚', 'マクアツ', 'film thickness, coating thickness'), +('角膜', 'カクマク', 'cornea'), +('網膜', 'モウマク', 'retina'), +('埋蔵', 'マイゾウ', 'burying in the ground, having underground deposits'), +('埋葬', 'マイソウ', 'burial'), +('三昧', 'サンマイ', 'samadhi (state of intense concentration achieved through meditation), being immersed in, being absorbed in, indulging in, doing to one''s heart''s content, prone to, apt to'), +('蒙昧', 'モウマイ', 'ignorance, (lack of) enlightenment or civilization (civilisation), unenlightened, uncivilized, uncivilised'), +('魔', 'マ', 'demon, devil, evil spirit, evil influence, -crazed person, -obsessed person, fiend'), +('魔女', 'マジョ', 'witch'), +('病魔', 'ビョウマ', 'demon of ill health, disease'), +('尼', 'アマ', 'Buddhist nun, Catholic nun, sister, bitch, Amagasaki (city in Hyogo Prefecture), Amazon (online retailer)'), +('枕籍', 'チンセキ', 'bedding, bed, to sleep together in the same bed, to sleep together using each other''s bodies as pillow, to sleep together using books as a pillow'), +('枕状溶岩', 'マクラジョウヨウガン', 'pillow lava'), +('開枕', 'カイチン', 'bringing out the pillows and futon (in Zen Buddhism), sleeping'), +('陶枕', 'トウチン', 'porcelain pillow (used in summer)'), +('塗抹', 'トマツ', 'smear, daub, coating over'), +('慢性的', 'マンセイテキ', 'chronic'), +('慢性', 'マンセイ', 'chronic (illness)'), +('自慢', 'ジマン', 'pride, boast'), +('やせ我慢', 'ヤセガマン', 'enduring something out of pride, putting up with it, grinning and bearing it'), +('蜜', 'ミツ', 'nectar, honey, honeydew, treacle, molasses, sorbitol (when visible as dark patches inside an apple)'), +('蜜蜂', 'ミツバチ', 'honeybee (Apis sp.), honey bee'), +('水蜜', 'スイミツ', 'white peach'), +('糖蜜', 'トウミツ', 'molasses, black treacle, (sugar) syrup'), +('岬角', 'コウカク', 'anat promontory, promontory'), +('岬湾', 'コウワン', 'capes and bays, indentation (of a coast)'), +('漫画', 'マンガ', 'cartoon, comic, comic strip, manga'), +('漫画家', 'マンガカ', 'cartoonist, comic book artist, manga artist, manga author, mangaka'), +('瀰漫', 'ビマン', 'spread, pervasion, permeation'), +('海漫', 'カイマン', 'ocean, large sea'), +('妙', 'ミョウ', 'strange, weird, odd, curious, wonder, mystery, miracle, excellence, cleverness, adroitness, knack, skill'), +('妙案', 'ミョウアン', 'ingenious idea, excellent plan, bright idea'), +('絶妙', 'ゼツミョウ', 'exquisite, superb, perfect, miraculous'), +('軽妙', 'ケイミョウ', 'light and easy, lambent, clever, witty, smart'), +('神妙', 'シンミョウ', 'meek, quiet, docile, humble, faithful, obedient, mysterious, marvelous, marvellous'), +('魅力', 'ミリョク', 'charm, fascination, glamour, glamor, attraction, appeal'), +('魅了', 'ミリョウ', 'fascination, to charm, to fascinate, to mesmerize'), +('鬼魅', 'キミ', 'demon, monster, apparition'), +('魑魅', 'チミ', 'mountain demon'), +('冥福', 'メイフク', 'happiness in the next world'), +('瞑想', 'メイソウ', 'meditation, contemplation'), +('晦冥', 'カイメイ', 'darkness'), +('天地晦冥', 'テンチカイメイ', 'The world is covered in darkness, All is plunged into darkness'), +('冥福', 'メイフク', 'happiness in the next world'), +('冥利', 'ミョウリ', 'providence, luck, favor, favour, advantage'), +('嬢', 'ジョウ', 'unmarried woman, Miss, -ess, -ette'), +('娘核', 'ジョウカク', 'daughter nucleus'), +('令娘', 'レイジョウ', 'your daughter, young lady'), +('中国娘', 'チュウゴクジョウ', 'Chinese girl'), +('眠剤', 'ミンザイ', 'sleeping pills'), +('仮眠', 'カミン', 'nap, doze'), +('冬眠', 'トウミン', 'hibernation, winter sleep, torpor'), +('麺', 'メン', 'noodles, flour'), +('麺子', 'メンス', 'noodles'), +('生麺', 'ナマメン', 'raw noodles, uncooked noodles, fresh noodles'), +('製麺', 'セイメン', 'noodle making'), +('滅亡', 'メツボウ', 'downfall, ruin, collapse, destruction'), +('滅罪', 'メツザイ', 'expiation'), +('全滅', 'ゼンメツ', 'annihilation, total destruction, complete destruction, crushing defeat'), +('撲滅', 'ボクメツ', 'eradication, extermination, destruction, suppression'), +('妄想', 'モウソウ', 'delusion, wild idea, (wild) fancy, (ridiculous) fantasy'), +('盲信', 'モウシン', 'blind acceptance, blind belief, credulity'), +('迷妄', 'メイモウ', 'illusion, fallacy, delusion'), +('謬妄', 'ビュウモウ', 'fallacy, conjecture, baseless thing, random thing'), +('妄想', 'モウソウ', 'delusion, wild idea, (wild) fancy, (ridiculous) fantasy'), +('盲信', 'モウシン', 'blind acceptance, blind belief, credulity'), +('狂妄', 'キョウボウ', 'eccentric, wild, off-kilter, mad'), +('誣謗', 'フボウ', 'slander'), +('茂林', 'モリン', 'luxuriant (dense) forest'), +('繁茂', 'ハンモ', 'luxuriant growth, rankness (of weeds)'), +('盲', 'モウ', 'blindness'), +('盲人', 'モウジン', 'blind person'), +('全盲', 'ゼンモウ', 'total blindness'), +('衆盲', 'シュウモウ', 'the blind masses, the ignorant masses, the unenlightened masses, many blind people'), +('免', 'メン', 'dismissal, discharge'), +('免許', 'メンキョ', 'license, licence, permission, permit, certificate'), +('減免', 'ゲンメン', 'reduction and exemption (e.g. taxes), mitigation and remission (e.g. in criminal law)'), +('罷免', 'ヒメン', 'dismissal (from a position), discharge'), +('消耗', 'ショウモウ', 'exhaustion, consumption, using up, dissipation, waste'), +('摩耗', 'マモウ', 'wear, abrasion'), +('消耗', 'ショウモウ', 'exhaustion, consumption, using up, dissipation, waste'), +('減耗', 'ゲンモウ', 'natural decrease'), +('猛', 'モウ', 'greatly energetic, ferocious, extreme, severe'), +('猛烈', 'モウレツ', 'fierce, intense, severe, violent, strong, vehement, terrific, terrible'), +('勇猛', 'ユウモウ', 'daring, brave, bold, valiant, intrepid, dauntless'), +('豪猛', 'ゴウモウ', 'strongly ferocious'), +('網', 'モウ', 'network'), +('網羅', 'モウラ', 'encompassing, covering (exhaustively), including (all of), comprising, comprehending'), +('通信網', 'ツウシンモウ', 'communications network'), +('鉄条網', 'テツジョウモウ', '(barbed) wire entanglements'), +('矛盾', 'ムジュン', 'contradiction, inconsistency'), +('矛盾原理', 'ムジュンゲンリ', 'principle of contradiction (logic)'), +('弥撒', 'ミサ', '(Catholic) Mass'), +('弥勒', 'ミロク', 'Maitreya (Bodhisattva), Miroku'), +('沙弥', 'シャミ', 'male Buddhist novice'), +('瀰漫', 'ビマン', 'spread, pervasion, permeation'), +('弥久', 'ビキュウ', 'extending over a long time'), +('黙とう', 'モクトウ', 'silent prayer'), +('黙認', 'モクニン', 'connivance, tacit consent, toleration, acquiescence'), +('寡黙', 'カモク', 'untalkative, quiet, taciturn, reticent, uncommunicative'), +('温厚寡黙', 'オンコウカモク', 'gentle and reticent'), +('厄', 'ヤク', 'misfortune, bad luck, evil, disaster, unlucky year, critical year, smallpox'), +('厄年', 'ヤクドシ', 'unlucky year, critical year, year (esp. age 25 and 42 for men, 19 and 33 for women) that is considered unlucky (orig. in Onmyōdō), bad year, annus horribilis'), +('災厄', 'サイヤク', 'calamity, disaster, accident'), +('大厄', 'タイヤク', 'calamity, disaster, great misfortune, grand climacteric'), +('冶', 'ヤ', 'melting'), +('冶金', 'ヤキン', 'metallurgy'), +('艷冶', 'エンヤ', 'charming, bewitching, coquettish'), +('鍛冶', 'カジ', 'smithing, blacksmith'), +('躍動', 'ヤクドウ', 'lively motion, throb'), +('躍進', 'ヤクシン', 'making rapid progress, making great advances, rush, dash, onslaught'), +('活躍', 'カツヤク', 'activity (esp. energetic or successful), great efforts, active participation, walking about with great vigor'), +('暗躍', 'アンヤク', 'secret manoeuvres (maneuvers), operating behind the scenes'), +('霧化', 'ムカ', 'atomization'), +('霧散', 'ムサン', 'dispersing, vanishing'), +('夕霧', 'ユウギリ', 'evening mist'), +('海霧', 'カイム', 'sea fog'), +('暗黒', 'アンコク', 'darkness'), +('暗夜', 'アンヤ', 'dark night'), +('冥暗', 'メイアン', 'gloom, shade'), +('幽暗', 'ユウアン', 'gloom, darkness, seclusion'), +('愉快', 'ユカイ', 'pleasant, delightful, enjoyable, joyful, cheerful, amusing, happy'), +('愉悦', 'ユエツ', 'joy, pleasure, delight'), +('教諭', 'キョウユ', '(licensed) teacher'), +('比喩', 'ヒユ', 'simile, metaphor, allegory, parable'), +('唯一', 'ユイイツ', 'only, sole, unique'), +('唯一無二', 'ユイイツムニ', 'one and only, unique'), +('唯々', 'イイ', 'obedient, submissive, tame, slavish'), +('唯々諾々', 'イイダクダク', 'obedient, submissive, tame, slavish'), +('唯々', 'イイ', 'obedient, submissive, tame, slavish'), +('銘', 'メイ', 'inscription, epitaph, (manufacturer''s) engraved signature, motto, maxim, precept'), +('銘々', 'メイメイ', 'each, individual'), +('感銘', 'カンメイ', 'deep impression'), +('座右銘', 'ザユウメイ', 'favourite motto, pet saying'), +('癒着', 'ユチャク', 'adhesion, conglutination, collusion, collusive relationship'), +('癒合', 'ユゴウ', 'agglutination, adhesion'), +('快癒', 'カイユ', 'recovery, convalescence'), +('治癒', 'チユ', 'healing, cure, recovery'), +('紋', 'モン', '(family) crest, coat of arms, pattern, figure, playing card suit (in karuta)'), +('文様', 'モンヨウ', 'pattern, design'), +('家紋', 'カモン', 'family crest'), +('声紋', 'セイモン', 'voiceprint'), +('幽霊', 'ユウレイ', 'ghost, specter, spectre, apparition, phantom'), +('憂鬱', 'ユウウツ', 'depression, melancholy, dejection, gloom, despondency'), +('幽々', 'ユウユウ', 'deep, dark'), +('帰幽', 'キユウ', 'death'), +('諭吉', 'ユキチ', '10,000 yen note'), +('諭告', 'ユコク', 'admonition, public announcement'), +('教諭', 'キョウユ', '(licensed) teacher'), +('比喩', 'ヒユ', 'simile, metaphor, allegory, parable'), +('悠', 'ユウ', 'quiet, calm, leisurely, composed, distant, far-off, boundless, endless, eternal'), +('悠々', 'ユウユウ', 'quiet, calm, leisurely, composed, easily, comfortably, without difficulty, distant, far-off, boundless, endless, eternal'), +('雄', 'ユウ', 'male, man, excellence, greatness, best (of), great person, leading figure'), +('雄大', 'ユウダイ', 'grand, magnificent, majestic, great, sublime'), +('雌雄', 'シユウ', 'male and female (animals), the two sexes, victory and defeat, strengths and weaknesses'), +('両雄', 'リョウユウ', 'two great men (rivals)'), +('湧水', 'ユウスイ', 'spring, welling of water'), +('湧出', 'ユウシュツ', 'gushing out, welling up, springing up'), +('湧出', 'ユウシュツ', 'gushing out, welling up, springing up'), +('湧水', 'ユウスイ', 'spring, welling of water'), +('湧出', 'ユウシュツ', 'gushing out, welling up, springing up'), +('裕福', 'ユウフク', 'wealthy, rich, affluent, well-off'), +('優に', 'ユウニ', 'easily (reach, exceed, etc.), comfortably, amply, fully, well over'), +('猶予', 'ユウヨ', 'postponement, deferment, extension (of time)'), +('猶子', 'ユウシ', 'nephew (like a son), another child considered as one''s own'), +('猶予', 'ユウヨ', 'postponement, deferment, extension (of time)'), +('猶太', 'ユダヤ', 'Judea (southern Palestine), Jews'), +('憂鬱', 'ユウウツ', 'depression, melancholy, dejection, gloom, despondency'), +('憂鬱症', 'ユウウツショウ', 'melancholia, severe depression'), +('外憂', 'ガイユウ', 'external troubles, foreign threat'), +('内憂', 'ナイユウ', 'internal troubles, domestic discord'), +('融通', 'ユウズウ', 'lending (money), finance, loan, adaptability, versatility, flexibility, accommodation'), +('融資', 'ユウシ', 'financing, loan'), +('溶融', 'ヨウユウ', 'melting, fusion'), +('炉心溶融', 'ロシンヨウユウ', 'core meltdown, meltdown, nuclear reactor core meltdown'), +('誉望', 'ヨボウ', 'honor, honour'), +('名誉', 'メイヨ', 'honor, honour, credit, glory, fame, distinction, prestige, dignity, reputation, honor, good name, honorary (e.g. president, doctorate)'), +('声誉', 'セイヨ', 'reputation, fame, credit, honor and distinction, honour and distinction'), +('妖精', 'ヨウセイ', 'fairy, sprite, elf'), +('妖怪', 'ヨウカイ', 'ghost, apparition, phantom, spectre, specter, demon, monster, goblin, yōkai'), +('大妖', 'タイヨウ', 'great demon, ghostly giant'), +('天変地夭', 'テンペンチヨウ', 'natural disaster'), +('誘惑', 'ユウワク', 'temptation, allurement, lure, enticement, seduction'), +('誘導', 'ユウドウ', 'guidance, leading, induction, introduction, incitement, inducement'), +('勧誘', 'カンユウ', 'invitation, solicitation, canvassing, canvasing, inducement, persuasion, encouragement'), +('不招請勧誘', 'フショウセイカンユウ', 'unsolicited promotion'), +('庸', 'ヨウ', 'tax paid to avoid forced labor (ritsuryō period), tax in kind, mediocrity'), +('庸君', 'ヨウクン', 'stupid ruler'), +('登用', 'トウヨウ', 'appointment, assignment, promotion'), +('凡庸', 'ボンヨウ', 'mediocre, ordinary, commonplace, banal'), +('揚力', 'ヨウリョク', 'dynamic lift, lifting power'), +('揚音', 'ヨウオン', 'acute (accent, etc.)'), +('高揚', 'コウヨウ', 'elevation (of spirits), raising (of morale), uplift, upsurge'), +('掲揚', 'ケイヨウ', 'hoisting (e.g. a flag), raising, flying, putting up'), +('与党', 'ヨトウ', 'ruling party, government party, party in power, government'), +('与野党', 'ヨヤトウ', 'ruling and opposition parties, parties in and out of power'), +('関与', 'カンヨ', 'participation, taking part in, participating in, being concerned in'), +('寄与', 'キヨ', 'contribution, service'), +('揺曳', 'ヨウエイ', 'flutter, linger'), +('揺蕩', 'ヨウトウ', 'shaking, swaying'), +('動揺', 'ドウヨウ', 'shaking, trembling, pitching, rolling, oscillation, disturbance, unrest, agitation, excitement, commotion, turmoil, discomposure, feeling shaken'), +('溶岩', 'ヨウガン', 'lava'), +('溶液', 'ヨウエキ', 'solution (liquid)'), +('溶溶', 'ヨウヨウ', 'vast, overflowing with water, spacious'), +('可溶', 'カヨウ', 'soluble, solubilizing, solubilising'), +('胃潰瘍', 'イカイヨウ', 'stomach ulcer, gastric ulcer'), +('消化性潰瘍', 'ショウカセイカイヨウ', 'peptic ulcer'), +('窯業', 'ヨウギョウ', 'ceramics, ceramic industry'), +('窯変', 'ヨウヘン', 'deformation during firing (ceramics), color variation during firing'), +('瓦窯', 'ガヨウ', 'tile kiln'), +('官窯', 'カンヨウ', 'governmental porcelain furnace'), +('踊躍', 'ヨウヤク', 'leaping with joy, jumping about'), +('現代舞踊', 'ゲンダイブヨウ', 'contemporary dance, modern dance'), +('歌舞伎舞踊', 'カブキブヨウ', 'kabuki dance'), +('擁する', 'ヨウスル', 'to have, to possess'), +('擁護', 'ヨウゴ', 'protection, advocacy, support, defence, championship, vindication, to protect (e.g. rights, etc.), to advocate (e.g. free trade, etc.), to support'), +('抱擁', 'ホウヨウ', 'embrace, hug, holding in one''s arms'), +('相擁', 'アイヨウ', 'embrace, hug'), +('謡曲', 'ヨウキョク', 'noh song'), +('民謡', 'ミンヨウ', 'folk song, popular song'), +('歌謡', 'カヨウ', 'song, ballad'), +('ヨウ化', 'ヨウカ', 'iodization, iodisation'), +('ヨウ化カリウム', 'ヨウカカリウム', 'potassium iodide, KI'), +('沃地', 'ヨクチ', 'fertile land, oasis'), +('沃田', 'ヨクデン', 'fertile field, field with fertile soil'), +('膏沃', 'コウヨク', 'fertile soil, fertile land, fertility'), +('豊沃', 'ホウヨク', 'fertility'), +('腰', 'コシ', 'counter for swords, hakama, obi, etc. worn around the waist, counter for quivers of arrows'), +('腰痛', 'ヨウツウ', 'lower back (or hip) pain, lumbago'), +('細腰', 'サイヨウ', 'slender hips, slim waist'), +('柳腰', 'ヤナギゴシ', 'slim waist, slender figure, willowy figure, waist of a willow tree'), +('拉麺', 'ラーメン', 'ramen, Chinese-style noodles'), +('ラテン語', 'ラテンゴ', 'Latin (language)'), +('撒哈拉', 'サハラ', 'Sahara'), +('委内瑞拉', 'ベネズエラ', 'Venezuela'), +('抑揚', 'ヨクヨウ', 'intonation, accent, modulation, inflection'), +('抑制', 'ヨクセイ', 'control, restraint, suppression, constraint, curtailment, inhibition, check, curb'), +('圧抑', 'アツヨク', 'check, restraint, oppression, suppression'), +('謙抑', 'ケンヨク', 'humbling oneself'), +('薄物', 'ウスモノ', 'lightweight fabric or clothing, silk gauze, thin silk, Latin (language)'), +('ラテン語', 'ラテンゴ', 'Latin (language)'), +('網羅', 'モウラ', 'encompassing, covering (exhaustively), including (all of), comprising, comprehending'), +('甲羅', 'コウラ', 'shell (of crab, tortoise, etc.), carapace, plastron, person''s back, years of experience'), +('翼', 'ツバサ', 'wing, Chinese "Wings" constellation (one of the 28 mansions), counter for birds or bird wings'), +('翼下', 'ヨッカ', 'under the wing (esp. of an aircraft), under one''s wing, under one''s control'), +('左翼', 'サヨク', 'left-wing (politics), left wing (of a bird, aircraft, formation, etc.), left flank, left field'), +('右翼', 'ウヨク', 'right-wing (politics), extreme right-wing group, right wing (bird, plane, etc.), right field, right flank, right wing, right fielder, high rank, high grade, A-student'), +('頼信紙', 'ライシンシ', 'telegram form, telegram blank'), +('信頼', 'シンライ', 'reliance, trust, faith, confidence'), +('依頼', 'イライ', 'request, commission, entrusting (with a matter), dependence, reliance'), +('絡繹', 'ラクエキ', 'constant (stream of traffic), incessant'), +('絡糸嬢', 'ラクシジョウ', 'cricket, bush-cricket'), +('連絡', 'レンラク', 'contacting, (making) contact, getting in touch, communication, correspondence, call, message, connection (with a train, bus, etc.), joining (a railway line, etc.), meeting, connection (between matters, incidents, etc.), relation, link'), +('ご連絡', 'ゴレンラク', 'contacting, getting in touch, communication, call, message'), +('酪', 'ラク', 'acidic drink made from fermented milk (cow, sheep, mare; one of the five flavors in Buddhism)'), +('酪農', 'ラクノウ', 'dairy farming'), +('製酪', 'セイラク', 'dairy production (butter, cheese, etc.)'), +('牛酪', 'ギュウラク', 'butter'), +('雷', 'カミナリ', 'lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger'), +('雷雨', 'ライウ', 'thunderstorm'), +('機雷', 'キライ', '(sea) mine'), +('界雷', 'カイライ', 'frontal thunderstorm'), +('藍綬褒章', 'ランジュホウショウ', 'Medal with Blue Ribbon'), +('藍衣社員', 'ランイシャイン', 'blue-collar, blue-collar worker (employee)'), +('伽藍', 'ガラン', 'temple (esp. large one), monastery, temple building'), +('芥藍', 'カイラン', 'kai-lan, gai-lan, Chinese broccoli'), +('吏', 'リ', 'government official, public official'), +('吏員', 'リイン', 'official'), +('捕吏', 'ホリ', 'constable, policeman'), +('下吏', 'カリ', 'lower official'), +('裸像', 'ラゾウ', 'nude (figure, painting, statue)'), +('裸眼', 'ラガン', 'bare eyes (i.e. without glasses, contact lenses, etc.), uncorrected vision, unaided vision'), +('全裸', 'ゼンラ', 'stark naked, nude'), +('赤裸', 'セキラ', 'stark naked, nude, bare, unvarnished (e.g. truth), plain (e.g. fact), frank, candid, outspoken'), +('履歴', 'リレキ', 'personal history, background, career, log, record, history, hysteresis'), +('履行', 'リコウ', 'performance (of a duty), fulfillment (of a promise), fulfilment, execution (of a contract), discharge, implementation'), +('草履', 'ゾウリ', 'zori, traditional Japanese thonged sandals'), +('再履', 'サイリ', 'repeating a course, taking a course again'), +('辣腕', 'ラツワン', 'shrewdness, sharpness, astuteness, acumen, tact'), +('悪辣', 'アクラツ', 'crafty, vicious, unscrupulous, sharp'), +('乱発', 'ランパツ', 'random firing, reckless firing, excessive issue'), +('乱獲', 'ランカク', 'excessive fishing, overfishing, overhunting, excessive taking'), +('氾濫', 'ハンラン', 'overflowing, flood, inundation, deluge, oversupply, plethora'), +('欄', 'ラン', 'section (e.g. in a newspaper), column, page, field (in a form, web page, etc.), blank, handrail, railing, banister, balustrade'), +('欄干', 'ランカン', 'railing, guard rail, handrail, banister, balustrade, parapet, (shining) brightly (of the moon or stars), (flowing) endlessly (of tears)'), +('本欄', 'ホンラン', 'this column'), +('文芸欄', 'ブンゲイラン', 'literary (and the arts) column'), +('離', 'リ', 'li (one of the trigrams of the I Ching: fire, south)'), +('離婚', 'リコン', 'divorce'), +('分離', 'ブンリ', 'separation, partition, detachment, segregation, isolation'), +('距離', 'キョリ', 'distance, range, interval, difference (e.g. in opinion), gap, distance'), +('瑠璃', 'ルリ', 'lapis lazuli, lapis lazuli (color), beryl, mall blue passerine bird (esp. the blue-and-white flycatcher and the Siberian blue robin, but also the red-flanked bluetail), glass'), +('浄瑠璃', 'ジョウルリ', 'jōruri, type of dramatic recitation accompanied by a shamisen (associated with Japanese puppet theater)'), +('柳', 'リュウ', 'Chinese "Willow" constellation (one of the 28 mansions)'), +('柳暗花明', 'リュウアンカメイ', 'beautiful scenery of spring, red-light district'), +('川柳', 'センリュウ', 'senryū, comic haiku, humorous seventeen-mora poem'), +('花柳', 'カリュウ', 'red-light district'), +('痢', 'リ', 'diarrhea, diarrhoea'), +('痢病', 'リビョウ', 'dysentery'), +('下痢', 'ゲリ', 'diarrhea, diarrhoea'), +('赤痢', 'セキリ', 'dysentery'), +('慄然', 'リツゼン', 'terrified, horrified'), +('慄烈', 'リツレツ', 'stinging cold'), +('戦慄', 'センリツ', 'shudder, shiver, trembling with fear'), +('戦々慄々', 'センセンリツリツ', 'trembling with fear, filled with trepidation'), +('竜', 'リュウ', 'dragon (esp. a Chinese dragon), naga, semi-divine human-cobra chimera in Hindu and Buddhist mythology, promoted rook'), +('竜王', 'リュウオウ', 'Dragon King, promoted rook'), +('鎧竜', 'ガイリュウ', 'ankylosaur (any dinosaur of infraorder Ankylosauria)'), +('青龍', 'セイリョウ', 'blue dragon (an auspicious creature in Chinese mythology), Azure Dragon (god said to rule over the eastern heavens)'), +('竜', 'リュウ', 'dragon (esp. a Chinese dragon), naga, semi-divine human-cobra chimera in Hindu and Buddhist mythology, promoted rook'), +('竜駕', 'リョウガ', 'imperial carriage'), +('青龍', 'セイリョウ', 'blue dragon (an auspicious creature in Chinese mythology), Azure Dragon (god said to rule over the eastern heavens)'), +('蛟竜', 'コウリョウ', 'mizuchi, mythical dragon-like beast, believed to ascend to the heavens through rain, unfulfilled genius, dormant talent'), +('隆盛', 'リュウセイ', 'prosperity, flourishing, thriving'), +('隆起', 'リュウキ', 'protuberance, bulge, protrusion, projection, swell, rise, uplift, upheaval, elevation'), +('興隆', 'コウリュウ', 'rise, prosperity'), +('膨隆', 'ボウリュウ', 'swelling up'), +('粒', 'ツブ', 'grain, bead, drop, counter for small round objects including grains, seeds, pills, drops'), +('粒子', 'リュウシ', 'particle, grain'), +('細粒', 'サイリュウ', 'fine grain, fine granule, microsphere'), +('粒々', 'リュウリュウ', 'each grain, every grain'), +('侶伴', 'リョハン', 'companion'), +('同侶', 'ドウリョ', 'companion'), +('虜', 'リョ', 'captive, prisoner, foreigner, barbarian, slave'), +('虜囚', 'リョシュウ', 'captive, prisoner'), +('胡虜', 'コリョ', 'northern barbarian tribes surrounding ancient China, foreigner, barbarian tribe'), +('墨黠虜', 'ボクカツリョ', 'late Edo-period pejorative for Americans'), +('了', 'リョウ', 'finish, completion, the end'), +('諒', 'リョウ', 'fact, truth, understanding, consideration'), +('完了', 'カンリョウ', 'completion, conclusion, perfect (tense, form, aspect)'), +('終了', 'シュウリョウ', 'end, close, termination'), +('慮外', 'リョガイ', 'unexpected'), +('慮外者', 'リョガイモノ', 'rude person, insolent person'), +('考慮', 'コウリョ', 'consideration, taking into account'), +('配慮', 'ハイリョ', 'consideration, concern, attention, thoughtfulness, making arrangements, care, trouble'), +('涼', 'リョウ', 'cool breeze, cool air, refreshing coolness'), +('涼風', 'リョウフウ', 'cool breeze, refreshing breeze'), +('清涼', 'セイリョウ', 'cool, refreshing'), +('納涼', 'ノウリョウ', 'escaping the heat to enjoy the cool breeze (by the river, etc.)'), +('僚友', 'リョウユウ', 'colleague, workmate, comrade, coworker'), +('僚船', 'リョウセン', 'consort ship'), +('幕僚', 'バクリョウ', 'staff, staff officer'), +('下僚', 'カリョウ', 'subordinates, petty officials'), +('寮', 'リョウ', 'hostel, dormitory, bureau (government department beneath a ministry under the ritsuryō system), tea-ceremony room, villa'), +('寮生', 'リョウセイ', 'boarder, boarding student'), +('大炊寮', 'オオイリョウ', 'Bureau of the Imperial Palace Kitchens (under the ritsuryō system)'), +('女男性寮', 'メオセイリョウ', 'co-ed dormitory, mixed student accommodation'), +('陵', 'ミササギ', 'imperial mausoleum, Emperor''s tomb, big hill'), +('陵墓', 'リョウボ', 'imperial tomb, imperial mausoleum'), +('帝陵', 'テイリョウ', 'imperial mausoleum'), +('皇陵', 'コウリョウ', 'imperial mausoleum'), +('猟', 'リョウ', 'hunting, shooting, game, quarry'), +('猟犬', 'リョウケン', 'hound, hunting dog, gun dog'), +('狩猟', 'シュリョウ', 'hunting'), +('密猟', 'ミツリョウ', 'poaching'), +('瞭然', 'リョウゼン', 'obvious, evident, clear'), +('簡潔明瞭', 'カンケツメイリョウ', 'clear and concise'), +('簡単明瞭', 'カンタンメイリョウ', 'simple and clear'), +('療養', 'リョウヨウ', 'recuperation, medical treatment'), +('療法', 'リョウホウ', 'therapy, treatment, remedy, cure'), +('診療', 'シンリョウ', 'diagnosis and treatment, medical care'), +('治療', 'チリョウ', '(medical) treatment, care, therapy, cure, remedy'), +('糧', 'カテ', 'food, provisions, nourishment (mental, spiritual, etc.), sustenance (e.g. of one''s life), source of encouragement'), +('糧食', 'リョウショク', 'provisions'), +('衣糧', 'イリョウ', 'food and clothing'), +('口糧', 'コウリョウ', 'rations'), +('兵糧', 'ヒョウロウ', '(army) provisions, food'), +('厘', 'リン', 'one-hundredth, 0.3 mm (one-hundredth of a sun), 0.1 percent (one-hundredth of a wari), 0.0375 grams (one-hundredth of a monme), rin (monetary unit; 0.001 yen)'), +('厘毛', 'リンモウ', 'farthing, trifle'), +('毫釐', 'ゴウリ', 'very small quantity'), +('九分九厘', 'クブクリン', 'ten to one, nine cases out of ten'), +('倫理的', 'リンリテキ', 'ethical'), +('倫理', 'リンリ', 'ethics, morals'), +('映倫', 'エイリン', 'Eirin, Film Classification and Rating Organization'), +('五倫', 'ゴリン', 'the five Confucian filial-piety relationships'), +('瑠璃', 'ルリ', 'lapis lazuli, lapis lazuli (color), beryl, mall blue passerine bird (esp. the blue-and-white flycatcher and the Siberian blue robin, but also the red-flanked bluetail), glass'), +('瑠璃色', 'ルリイロ', 'lapis lazuli blue, bright blue, azure'), +('涙腺', 'ルイセン', 'tear gland, lacrimal gland'), +('涙液', 'ルイエキ', 'lacrimal fluid, tears'), +('催涙', 'サイルイ', 'tear-inducing'), +('感涙', 'カンルイ', 'tears (from being deeply moved), tears of gratitude'), +('戻入', 'レイニュウ', 'reversal of monies, funds, commissions'), +('背戻', 'ハイレイ', 'disobeying, infringing, running counter to'), +('暴戻', 'ボウレイ', 'tyranny, atrocity, brutality'), +('零', 'レイ', 'zero, nought'), +('零点', 'レイテン', 'zero (points, marks), no marks, zero (of a function), root, zero degrees (Celsius), freezing point'), +('漂零', 'ヒョウレイ', 'being ruined (reduced to poverty), falling low, going under, coming to ruin'), +('飄零', 'ヒョウレイ', 'blowing in the wind (e.g. leaf, petal), wandering, roaming, being ruined (reduced to poverty), falling low, going under, coming to ruin'), +('隣国', 'リンゴク', 'neighbouring country, neighboring country, adjacent country'), +('隣家', 'リンカ', 'neighbouring house, neighboring house'), +('善隣', 'ゼンリン', 'good neighbour, good neighbor'), +('四隣', 'シリン', 'whole neighborhood, whole neighbourhood, surrounding countries'), +('励起', 'レイキ', '(electrical) excitation'), +('励起状態', 'レイキジョウタイ', 'excited state'), +('激励', 'ゲキレイ', 'encouragement, spurring (on), cheering (on)'), +('奨励', 'ショウレイ', 'encouragement, promotion, inducement, incitement, stimulation'), +('累', 'ルイ', 'trouble, harmful effect, evil influence, implication, involvement'), +('累計', 'ルイケイ', 'cumulative total, accumulated total, total up to now'), +('係累', 'ケイルイ', 'dependents, family members that one has to support, encumbrances, things that tie one down'), +('累々', 'ルイルイ', 'in heaps'), +('鈴', 'スズ', 'bell (often globular)'), +('亜鈴', 'アレイ', 'dumbbell'), +('鉄アレイ', 'テツアレイ', '(iron) dumbbells, (pair) of dumbbells'), +('鈴', 'スズ', 'bell (often globular)'), +('鈴を鳴らす', 'リンヲナラス', 'to ring a bell'), +('風鈴', 'フウリン', 'wind chime, wind bell'), +('塁', 'ルイ', 'base, bag, sack, fortress, stronghold'), +('塁打', 'ルイダ', 'base hit'), +('盗塁', 'トウルイ', 'base stealing, steal, stolen base'), +('走塁', 'ソウルイ', 'base running'), +('霊', 'レイ', 'soul, spirit, departed soul, ghost'), +('霊感', 'レイカン', 'inspiration, afflatus, ability to sense the supernatural (esp. ghosts, etc.)'), +('心霊', 'シンレイ', 'spirit (e.g. human spirit), soul, spirit, ghost, ethereal being'), +('英霊', 'エイレイ', 'spirits of war dead, person of great ability, soul of a talented person'), +('霊', 'リョウ', 'vengeful spirit, revengeful ghost'), +('霊異', 'レイイ', 'miracle, wonder, wondrous thing'), +('怨霊', 'オンリョウ', 'revengeful ghost, apparition'), +('新精霊', 'アラショウリョウ', 'spirit of someone on the first O-Bon after their death'), +('隷', 'レイ', 'clerical script (ancient, highly angular style of kanji)'), +('隷属', 'レイゾク', 'subordination, servitude, servility, vassalage, slavery, subordinate, underling'), +('性奴隷', 'セイドレイ', 'sex slave, sexual slavery'), +('性的奴隷', 'セイテキドレイ', 'sex slave, sexual slavery'), +('麗句', 'レイク', 'elegant phrase'), +('麗景殿', 'レイケイデン', 'ladies'' pavilion (of the inner Heian Palace)'), +('瑰麗', 'カイレイ', 'extraordinarily beautiful, exceptionally pretty, gorgeous, magnificent'), +('麗々', 'レイレイ', 'ostentatious, gaudy, showy'), +('齢', 'レイ', 'instar (developmental stage of arthropods), age, years'), +('適齢', 'テキレイ', 'suitable age'), +('加齢', 'カレイ', 'aging, ageing, adding to one''s years'), +('暦', 'コヨミ', 'calendar, almanac, koyomi'), +('暦年', 'レキネン', 'calendar year, civil year, time, year after year'), +('還暦', 'カンレキ', 'kanreki, one''s 60th birthday (or 61st in the traditional age reckoning system) when one has lived through a full sexagenary cycle'), +('改暦', 'カイレキ', 'calendar reform, adoption of a new calendar system, new calendar (for a new year), new year'), +('暦応', 'リャクオウ', 'Ryakuō era (of the Northern Court) (1338.8.28-1342.4.27), Rekiō era'), +('暦仁', 'リャクニン', 'Ryakunin era (1238.11.23-1239.2.7)'), +('永暦', 'エイリャク', 'Eiryaku era (1160.1.10-1161.9.4)'), +('康暦', 'コウリャク', 'Kōryaku era (of the Northern Court) (1379.3.22-1381.2.24)'), +('裂孔ヘルニア', 'レツコウヘルニア', 'hiatal hernia, hiatus hernia'), +('裂肉歯', 'レツニクシ', 'carnassial, carnassial tooth'), +('分裂', 'ブンレツ', 'split, division, break up'), +('決裂', 'ケツレツ', 'breakdown, rupture'), +('牢', 'ロウ', 'prison, jail, gaol, firm, solid, strong'), +('籠球', 'ロウキュウ', 'basketball'), +('蒸籠', 'セイロ', 'bamboo steamer, steaming basket, wooden frame holder with reed base used to steam food over a pot, soba served on a small wickerwork tray, wickerwork tray (for serving soba)'), +('灯籠', 'トウロウ', 'garden lantern, hanging lantern'), +('劣', 'レツ', 'sub-, inferior, minor'), +('劣悪', 'レツアク', 'inferior, coarse, poor quality, inadequate, deteriorated'), +('卑劣', 'ヒレツ', 'mean, contemptible, despicable, dirty, foul, cowardly, base'), +('拙劣', 'セツレツ', 'clumsy, unskillful'), +('恋愛', 'レンアイ', 'love, love-making, passion, emotion, affections'), +('恋歌', 'コイウタ', 'love song, love poem'), +('失恋', 'シツレン', 'disappointed love, broken heart, unrequited love, being lovelorn'), +('悲恋', 'ヒレン', 'blighted love, disappointed love'), +('廉', 'レン', 'cheap, inexpensive, pure, honest, upright'), +('廉価版', 'レンカバン', 'cheap edition, low-priced edition, popular edition'), +('清廉', 'セイレン', 'honesty, integrity, purity and unselfishness'), +('低廉', 'テイレン', 'cheap, inexpensive'), +('山麓', 'サンロク', 'foot of a mountain, base of a mountain'), +('岳麓', 'ガクロク', 'foot of Mt Fuji'), +('錬金術', 'レンキンジュツ', 'alchemy, way of making money, moneymaker, money-spinner'), +('錬金術師', 'レンキンジュツシ', 'alchemist'), +('修練', 'シュウレン', 'training, drill, practice, practising, discipline'), +('精錬', 'セイレン', 'refining, refinement, smelting, training'), +('烈日', 'レツジツ', 'blazing sun, scorching sun, hot day'), +('烈女', 'レツジョ', 'heroine'), +('痛烈', 'ツウレツ', 'severe, bitter, scathing'), +('壮烈', 'ソウレツ', 'heroic, brave'), +('蝋色漆', 'ロイロウルシ', 'black lacquer'), +('呂律', 'ロレツ', 'articulation'), +('露天風呂', 'ロテンブロ', 'open-air bath, rotenburo, rotemburo'), +('大呂', 'タイリョ', 'second note of the ancient Chinese chromatic scale (approx. D sharp), twelfth lunar month'), +('呂', 'リョ', 'bass range (in Japanese music), six even-numbered notes of the ancient chromatic scale, Japanese seven-tone gagaku scale similar to Mixolydian mode (corresp. to: re, mi, fa, so, la, ti, do)'), +('呂旋', 'リョセン', 'Japanese seven-tone gagaku scale (corresponding to: so, la, ti, do, re, mi, fa), similar to Mixolydian mode'), +('大呂', 'タイリョ', 'second note of the ancient Chinese chromatic scale (approx. D sharp), twelfth lunar month'), +('仲呂', 'チュウリョ', '(in China) 6th note of the ancient chromatic scale (approx. G), fourth lunar month'), +('郎', 'ロウ', 'nth son, lang, official title in ancient China, man, young man, my husband, my lover, nth child (male and female)'), +('郎君', 'ロウクン', 'young man, boy, son (of one''s master, employer, etc.), husband, (male) lover, dear, darling'), +('新郎', 'シンロウ', 'bridegroom'), +('女郎', 'ジョロウ', 'prostitute (esp. Edo period)'), +('露', 'ロ', 'Russia'), +('露骨', 'ロコツ', 'open, unconcealed, undisguised, blatant, plain, frank, broad, lewd, indecent, crude'), +('暴露', 'バクロ', 'disclosure, exposure, revelation'), +('結露', 'ケツロ', 'condensation, formation of dew'), +('披露', 'ヒロウ', 'announcement, presentation, demonstration, displaying, showing, introducing, unveiling, revealing, performing'), +('襲名披露', 'シュウメイヒロウ', 'announcing the succession to another''s stage name'), +('炉', 'ロ', 'hearth, fireplace, furnace, kiln'), +('炉辺', 'ロヘン', 'fireside'), +('原子炉', 'ゲンシロ', 'atomic reactor, nuclear reactor'), +('高炉', 'コウロ', 'blast furnace'), +('廊', 'ロウ', 'corridor, passage, hall'), +('廊下', 'ロウカ', 'corridor, hallway, passageway'), +('回廊', 'カイロウ', 'corridor, gallery, hallway, cloister (i.e. covered walk typically circling a building or garden, esp. in a palace or place of worship)'), +('ポーランド回廊', 'ポーランドカイロウ', 'Polish Corridor'), +('弄火', 'ロウカ', 'playing with fire'), +('弄花', 'ロウカ', 'gambling with hanafuda'), +('愚弄', 'グロウ', 'mockery, derision, ridicule'), +('嘲弄', 'チョウロウ', 'scorn, mockery, ridicule'), +('硫化', 'リュウカ', 'sulfuration, sulphuration'), +('硫安', 'リュウアン', 'ammonium sulfate'), +('脱硫', 'ダツリュウ', 'desulfurization, desulphurisation, desulphurization'), +('加硫', 'カリュウ', 'vulcanizing (rubber)'), +('貨賂', 'カロ', 'bribe'), +('漏洩', 'ロウエイ', 'leak (of secrets, information, etc.), disclosure, divulging, leak (of gas, liquid, etc.), leakage, escape (of gas), coming through (of light)'), +('漏出', 'ロウシュツ', 'leaking out, leak'), +('遺漏', 'イロウ', 'omission'), +('早漏', 'ソウロウ', 'premature ejaculation'), +('楼', 'ロウ', 'tower, tall building, belvedere, turret, lookout, watchtower, brothel'), +('楼閣', 'ロウカク', 'multistoried building'), +('鐘楼', 'ショウロウ', 'belfry, bell tower'), +('山水楼', 'サンスイロウ', 'Sansuiro (name of an exclusive restaurant)'), +('脇息', 'キョウソク', 'armrest'), +('脇侍', 'ワキジ', 'flanking image (e.g. in a Buddha triad)'), +('惑', 'ワク', 'klesha'), +('惑星', 'ワクセイ', 'planet, dark horse'), +('誘惑', 'ユウワク', 'temptation, allurement, lure, enticement, seduction'), +('困惑', 'コンワク', 'bewilderment, perplexity, embarrassment, discomfiture, bafflement'), +('浪', 'ロウ', 'person who has spent X years after graduating high school attempting to get admitted to (a specific) university'), +('浪費', 'ロウヒ', 'waste, extravagance'), +('放浪', 'ホウロウ', 'wandering'), +('1浪', 'イチロウ', 'failing college entrance exams and retaking them a year later'), +('腕力', 'ワンリョク', 'physical strength, brute strength, arm strength'), +('腕白', 'ワンパク', 'naughty, mischievous, unruly'), +('敏腕', 'ビンワン', 'ability, capability, competence, skill'), +('鉄腕', 'テツワン', 'strong arm'), +('賄賂', 'ワイロ', 'bribe, sweetener, douceur'), +('収賄', 'シュウワイ', 'accepting bribes, corruption, graft'), +('斡旋収賄', 'アッセンシュウワイ', 'influence peddling'), +('湾', 'ワン', 'bay, gulf, inlet'), +('湾岸', 'ワンガン', 'gulf coast, bay coast'), +('メキシコ湾', 'メキシコワン', 'Gulf of Mexico'), +('内湾', 'ナイワン', 'enclosed bay, inlet, deep bay, basin'); + +INSERT INTO Kanji_ResultOnyomiExample_XRef(exampleID, kanji) VALUES +(8250, '亜'), +(8251, '亜'), +(8252, '亜'), +(8253, '亜'), +(8254, '哀'), +(8255, '哀'), +(8256, '哀'), +(8257, '挨'), +(8258, '挨'), +(8259, '曖'), +(8260, '曖'), +(8261, '曖'), +(8262, '握'), +(8263, '握'), +(8264, '握'), +(8265, '握'), +(8266, '嵐'), +(8267, '嵐'), +(8268, '嵐'), +(8269, '依'), +(8270, '依'), +(8271, '依'), +(8272, '依'), +(8273, '依'), +(8274, '依'), +(8275, '依'), +(8276, '宛'), +(8277, '宛'), +(8278, '尉'), +(8279, '尉'), +(8280, '尉'), +(8281, '尉'), +(8282, '尉'), +(8283, '尉'), +(8284, '為'), +(8285, '為'), +(8286, '為'), +(8287, '為'), +(8288, '畏'), +(8289, '畏'), +(8290, '畏'), +(8291, '畏'), +(8292, '椅'), +(8293, '椅'), +(8294, '萎'), +(8295, '萎'), +(8296, '萎'), +(8297, '彙'), +(8298, '彙'), +(8299, '彙'), +(8300, '彙'), +(8301, '違'), +(8302, '違'), +(8303, '違'), +(8304, '違'), +(8305, '維'), +(8306, '維'), +(8307, '維'), +(8308, '維'), +(8309, '壱'), +(8310, '壱'), +(8311, '威'), +(8312, '威'), +(8313, '威'), +(8314, '威'), +(8315, '偉'), +(8316, '偉'), +(8317, '偉'), +(8318, '偉'), +(8319, '逸'), +(8320, '逸'), +(8321, '逸'), +(8322, '逸'), +(8323, '咽'), +(8324, '咽'), +(8325, '咽'), +(8326, '咽'), +(8327, '咽'), +(8328, '緯'), +(8329, '緯'), +(8330, '緯'), +(8331, '緯'), +(8332, '姻'), +(8333, '姻'), +(8334, '姻'), +(8335, '芋'), +(8336, '芋'), +(8337, '淫'), +(8338, '淫'), +(8339, '淫'), +(8340, '淫'), +(8341, '陰'), +(8342, '陰'), +(8343, '陰'), +(8344, '陰'), +(8345, '慰'), +(8346, '慰'), +(8347, '慰'), +(8348, '慰'), +(8349, '疫'), +(8350, '疫'), +(8351, '疫'), +(8352, '疫'), +(8353, '疫'), +(8354, '疫'), +(8355, '怨'), +(8356, '怨'), +(8357, '怨'), +(8358, '怨'), +(8359, '怨'), +(8360, '怨'), +(8361, '宴'), +(8362, '宴'), +(8363, '宴'), +(8364, '宴'), +(8365, '鋭'), +(8366, '鋭'), +(8367, '鋭'), +(8368, '鋭'), +(8369, '閲'), +(8370, '閲'), +(8371, '閲'), +(8372, '閲'), +(8373, '悦'), +(8374, '悦'), +(8375, '悦'), +(8376, '悦'), +(8377, '煙'), +(8378, '煙'), +(8379, '煙'), +(8380, '煙'), +(8381, '炎'), +(8382, '炎'), +(8383, '炎'), +(8384, '炎'), +(8385, '浦'), +(8386, '浦'), +(8387, '韻'), +(8388, '韻'), +(8389, '韻'), +(8390, '韻'), +(8391, '鬱'), +(8392, '鬱'), +(8393, '鬱'), +(8394, '鬱'), +(8395, '援'), +(8396, '援'), +(8397, '援'), +(8398, '援'), +(8399, '詠'), +(8400, '詠'), +(8401, '詠'), +(8402, '詠'), +(8403, '猿'), +(8404, '猿'), +(8405, '猿'), +(8406, '猿'), +(8407, '越'), +(8408, '越'), +(8409, '越'), +(8410, '越'), +(8411, '越'), +(8412, '越'), +(8413, '越'), +(8414, '縁'), +(8415, '縁'), +(8416, '縁'), +(8417, '縁'), +(8418, '隠'), +(8419, '隠'), +(8420, '隠'), +(8421, '隠'), +(8422, '隠'), +(8423, '隠'), +(8424, '影'), +(8425, '影'), +(8426, '影'), +(8427, '影'), +(8428, '唄'), +(8429, '唄'), +(8430, '鉛'), +(8431, '鉛'), +(8432, '鉛'), +(8433, '鉛'), +(8434, '艶'), +(8435, '艶'), +(8436, '艶'), +(8437, '艶'), +(8438, '凹'), +(8439, '凹'), +(8440, '凹'), +(8441, '凹'), +(8442, '畝'), +(8443, '畝'), +(8444, '憶'), +(8445, '憶'), +(8446, '憶'), +(8447, '憶'), +(8448, '欧'), +(8449, '欧'), +(8450, '欧'), +(8451, '欧'), +(8452, '押'), +(8453, '押'), +(8454, '押'), +(8455, '奥'), +(8456, '奥'), +(8457, '奥'), +(8458, '奥'), +(8459, '殴'), +(8460, '殴'), +(8461, '汚'), +(8462, '汚'), +(8463, '汚'), +(8464, '汚'), +(8465, '旺'), +(8466, '旺'), +(8467, '翁'), +(8468, '翁'), +(8469, '翁'), +(8470, '翁'), +(8471, '乙'), +(8472, '乙'), +(8473, '乙'), +(8474, '乙'), +(8475, '乙'), +(8476, '乙'), +(8477, '乙'), +(8478, '乙'), +(8479, '虞'), +(8480, '虞'), +(8481, '虞'), +(8482, '虞'), +(8483, '卸'), +(8484, '穏'), +(8485, '穏'), +(8486, '穏'), +(8487, '穏'), +(8488, '謁'), +(8489, '謁'), +(8490, '謁'), +(8491, '謁'), +(8492, '臆'), +(8493, '臆'), +(8494, '臆'), +(8495, '臆'), +(8496, '架'), +(8497, '架'), +(8498, '架'), +(8499, '架'), +(8500, '靴'), +(8501, '靴'), +(8502, '靴'), +(8503, '靴'), +(8504, '苛'), +(8505, '苛'), +(8506, '寡'), +(8507, '寡'), +(8508, '寡'), +(8509, '寡'), +(8510, '箇'), +(8511, '箇'), +(8512, '箇'), +(8513, '箇'), +(8514, '箇'), +(8515, '蚊'), +(8516, '蚊'), +(8517, '蚊'), +(8518, '雅'), +(8519, '雅'), +(8520, '雅'), +(8521, '雅'), +(8522, '渦'), +(8523, '渦'), +(8524, '渦'), +(8525, '渦'), +(8526, '餓'), +(8527, '餓'), +(8528, '餓'), +(8529, '華'), +(8530, '華'), +(8531, '華'), +(8532, '華'), +(8533, '華'), +(8534, '華'), +(8535, '華'), +(8536, '華'), +(8537, '暇'), +(8538, '暇'), +(8539, '暇'), +(8540, '牙'), +(8541, '牙'), +(8542, '牙'), +(8543, '牙'), +(8544, '牙'), +(8545, '牙'), +(8546, '牙'), +(8547, '禍'), +(8548, '禍'), +(8549, '禍'), +(8550, '禍'), +(8551, '稼'), +(8552, '稼'), +(8553, '嫁'), +(8554, '嫁'), +(8555, '嫁'), +(8556, '嫁'), +(8557, '菓'), +(8558, '菓'), +(8559, '菓'), +(8560, '菓'), +(8561, '佳'), +(8562, '佳'), +(8563, '佳'), +(8564, '佳'), +(8565, '介'), +(8566, '介'), +(8567, '介'), +(8568, '介'), +(8569, '怪'), +(8570, '怪'), +(8571, '怪'), +(8572, '怪'), +(8573, '怪'), +(8574, '怪'), +(8575, '怪'), +(8576, '怪'), +(8577, '拐'), +(8578, '拐'), +(8579, '拐'), +(8580, '拐'), +(8581, '瓦'), +(8582, '瓦'), +(8583, '瓦'), +(8584, '瓦'), +(8585, '悔'), +(8586, '悔'), +(8587, '悔'), +(8588, '悔'), +(8589, '戒'), +(8590, '戒'), +(8591, '戒'), +(8592, '戒'), +(8593, '塊'), +(8594, '塊'), +(8595, '塊'), +(8596, '塊'), +(8597, '楷'), +(8598, '楷'), +(8599, '潰'), +(8600, '潰'), +(8601, '潰'), +(8602, '潰'), +(8603, '壊'), +(8604, '壊'), +(8605, '壊'), +(8606, '壊'), +(8607, '壊'), +(8608, '壊'), +(8609, '壊'), +(8610, '壊'), +(8611, '皆'), +(8612, '皆'), +(8613, '皆'), +(8614, '劾'), +(8615, '劾'), +(8616, '諧'), +(8617, '諧'), +(8618, '諧'), +(8619, '懐'), +(8620, '懐'), +(8621, '懐'), +(8622, '懐'), +(8623, '涯'), +(8624, '涯'), +(8625, '柿'), +(8626, '該'), +(8627, '該'), +(8628, '該'), +(8629, '岳'), +(8630, '岳'), +(8631, '岳'), +(8632, '岳'), +(8633, '骸'), +(8634, '骸'), +(8635, '骸'), +(8636, '骸'), +(8637, '獲'), +(8638, '獲'), +(8639, '獲'), +(8640, '獲'), +(8641, '穫'), +(8642, '穫'), +(8643, '較'), +(8644, '較'), +(8645, '較'), +(8646, '較'), +(8647, '較'), +(8648, '較'), +(8649, '隔'), +(8650, '隔'), +(8651, '隔'), +(8652, '隔'), +(8653, '郭'), +(8654, '郭'), +(8655, '郭'), +(8656, '郭'), +(8657, '垣'), +(8658, '垣'), +(8659, '崖'), +(8660, '崖'), +(8661, '崖'), +(8662, '崖'), +(8663, '概'), +(8664, '概'), +(8665, '概'), +(8666, '概'), +(8667, '嚇'), +(8668, '嚇'), +(8669, '嚇'), +(8670, '嚇'), +(8671, '殻'), +(8672, '殻'), +(8673, '殻'), +(8674, '殻'), +(8675, '殻'), +(8676, '殻'), +(8677, '蓋'), +(8678, '蓋'), +(8679, '蓋'), +(8680, '蓋'), +(8681, '慨'), +(8682, '慨'), +(8683, '慨'), +(8684, '慨'), +(8685, '核'), +(8686, '核'), +(8687, '核'), +(8688, '核'), +(8689, '汗'), +(8690, '汗'), +(8691, '汗'), +(8692, '汗'), +(8693, '且'), +(8694, '且'), +(8695, '釜'), +(8696, '釜'), +(8697, '刈'), +(8698, '刈'), +(8699, '渇'), +(8700, '渇'), +(8701, '渇'), +(8702, '渇'), +(8703, '喝'), +(8704, '喝'), +(8705, '喝'), +(8706, '喝'), +(8707, '甘'), +(8708, '甘'), +(8709, '冠'), +(8710, '冠'), +(8711, '冠'), +(8712, '冠'), +(8713, '肝'), +(8714, '肝'), +(8715, '肝'), +(8716, '肝'), +(8717, '轄'), +(8718, '轄'), +(8719, '褐'), +(8720, '褐'), +(8721, '顎'), +(8722, '顎'), +(8723, '顎'), +(8724, '顎'), +(8725, '掛'), +(8726, '滑'), +(8727, '滑'), +(8728, '滑'), +(8729, '滑'), +(8730, '陥'), +(8731, '陥'), +(8732, '陥'), +(8733, '陥'), +(8734, '括'), +(8735, '括'), +(8736, '括'), +(8737, '缶'), +(8738, '缶'), +(8739, '缶'), +(8740, '缶'), +(8741, '乾'), +(8742, '乾'), +(8743, '乾'), +(8744, '乾'), +(8745, '乾'), +(8746, '乾'), +(8747, '貫'), +(8748, '貫'), +(8749, '貫'), +(8750, '貫'), +(8751, '勘'), +(8752, '勘'), +(8753, '勘'), +(8754, '勘'), +(8755, '喚'), +(8756, '喚'), +(8757, '喚'), +(8758, '喚'), +(8759, '換'), +(8760, '換'), +(8761, '換'), +(8762, '換'), +(8763, '患'), +(8764, '患'), +(8765, '患'), +(8766, '患'), +(8767, '堪'), +(8768, '堪'), +(8769, '堪'), +(8770, '堪'), +(8771, '堪'), +(8772, '款'), +(8773, '款'), +(8774, '款'), +(8775, '款'), +(8776, '敢'), +(8777, '敢'), +(8778, '敢'), +(8779, '敢'), +(8780, '閑'), +(8781, '閑'), +(8782, '閑'), +(8783, '閑'), +(8784, '勧'), +(8785, '勧'), +(8786, '棺'), +(8787, '棺'), +(8788, '棺'), +(8789, '棺'), +(8790, '寛'), +(8791, '寛'), +(8792, '寛'), +(8793, '寛'), +(8794, '歓'), +(8795, '歓'), +(8796, '歓'), +(8797, '歓'), +(8798, '監'), +(8799, '監'), +(8800, '監'), +(8801, '監'), +(8802, '緩'), +(8803, '緩'), +(8804, '緩'), +(8805, '緩'), +(8806, '還'), +(8807, '還'), +(8808, '還'), +(8809, '還'), +(8810, '環'), +(8811, '環'), +(8812, '環'), +(8813, '環'), +(8814, '韓'), +(8815, '韓'), +(8816, '韓'), +(8817, '韓'), +(8818, '艦'), +(8819, '艦'), +(8820, '艦'), +(8821, '艦'), +(8822, '鑑'), +(8823, '鑑'), +(8824, '鑑'), +(8825, '鑑'), +(8826, '含'), +(8827, '含'), +(8828, '含'), +(8829, '含'), +(8830, '玩'), +(8831, '玩'), +(8832, '玩'), +(8833, '玩'), +(8834, '企'), +(8835, '企'), +(8836, '企'), +(8837, '企'), +(8838, '忌'), +(8839, '忌'), +(8840, '忌'), +(8841, '忌'), +(8842, '奇'), +(8843, '奇'), +(8844, '奇'), +(8845, '奇'), +(8846, '伎'), +(8847, '伎'), +(8848, '伎'), +(8849, '伎'), +(8850, '伎'), +(8851, '軌'), +(8852, '軌'), +(8853, '軌'), +(8854, '軌'), +(8855, '頑'), +(8856, '頑'), +(8857, '祈'), +(8858, '祈'), +(8859, '畿'), +(8860, '畿'), +(8861, '畿'), +(8862, '棄'), +(8863, '棄'), +(8864, '棄'), +(8865, '棄'), +(8866, '飢'), +(8867, '飢'), +(8868, '棋'), +(8869, '棋'), +(8870, '毀'), +(8871, '毀'), +(8872, '毀'), +(8873, '毀'), +(8874, '輝'), +(8875, '輝'), +(8876, '輝'), +(8877, '輝'), +(8878, '擬'), +(8879, '擬'), +(8880, '戯'), +(8881, '戯'), +(8882, '戯'), +(8883, '戯'), +(8884, '戯'), +(8885, '戯'), +(8886, '儀'), +(8887, '儀'), +(8888, '儀'), +(8889, '儀'), +(8890, '欺'), +(8891, '欺'), +(8892, '欺'), +(8893, '欺'), +(8894, '鬼'), +(8895, '鬼'), +(8896, '鬼'), +(8897, '鬼'), +(8898, '幾'), +(8899, '幾'), +(8900, '幾'), +(8901, '幾'), +(8902, '宜'), +(8903, '宜'), +(8904, '宜'), +(8905, '既'), +(8906, '既'), +(8907, '既'), +(8908, '亀'), +(8909, '亀'), +(8910, '亀'), +(8911, '亀'), +(8912, '偽'), +(8913, '偽'), +(8914, '偽'), +(8915, '偽'), +(8916, '騎'), +(8917, '騎'), +(8918, '騎'), +(8919, '騎'), +(8920, '菊'), +(8921, '菊'), +(8922, '菊'), +(8923, '菊'), +(8924, '虐'), +(8925, '虐'), +(8926, '虐'), +(8927, '虐'), +(8928, '喫'), +(8929, '喫'), +(8930, '喫'), +(8931, '喫'), +(8932, '丘'), +(8933, '丘'), +(8934, '丘'), +(8935, '丘'), +(8936, '窮'), +(8937, '窮'), +(8938, '窮'), +(8939, '窮'), +(8940, '脚'), +(8941, '脚'), +(8942, '脚'), +(8943, '脚'), +(8944, '脚'), +(8945, '脚'), +(8946, '脚'), +(8947, '却'), +(8948, '却'), +(8949, '巨'), +(8950, '巨'), +(8951, '朽'), +(8952, '朽'), +(8953, '朽'), +(8954, '朽'), +(8955, '糾'), +(8956, '糾'), +(8957, '糾'), +(8958, '吉'), +(8959, '吉'), +(8960, '吉'), +(8961, '吉'), +(8962, '吉'), +(8963, '吉'), +(8964, '吉'), +(8965, '吉'), +(8966, '虚'), +(8967, '虚'), +(8968, '虚'), +(8969, '虚'), +(8970, '虚'), +(8971, '虚'), +(8972, '詰'), +(8973, '詰'), +(8974, '詰'), +(8975, '嗅'), +(8976, '嗅'), +(8977, '距'), +(8978, '距'), +(8979, '距'), +(8980, '距'), +(8981, '犠'), +(8982, '犠'), +(8983, '犠'), +(8984, '拒'), +(8985, '拒'), +(8986, '拒'), +(8987, '拒'), +(8988, '臼'), +(8989, '臼'), +(8990, '臼'), +(8991, '臼'), +(8992, '凶'), +(8993, '凶'), +(8994, '凶'), +(8995, '凶'), +(8996, '及'), +(8997, '及'), +(8998, '及'), +(8999, '及'), +(9000, '御'), +(9001, '御'), +(9002, '御'), +(9003, '御'), +(9004, '御'), +(9005, '御'), +(9006, '御'), +(9007, '御'), +(9008, '叫'), +(9009, '叫'), +(9010, '叫'), +(9011, '叫'), +(9012, '拠'), +(9013, '拠'), +(9014, '拠'), +(9015, '拠'), +(9016, '拠'), +(9017, '拠'), +(9018, '況'), +(9019, '況'), +(9020, '峡'), +(9021, '峡'), +(9022, '峡'), +(9023, '峡'), +(9024, '享'), +(9025, '享'), +(9026, '享'), +(9027, '享'), +(9028, '恐'), +(9029, '恐'), +(9030, '恐'), +(9031, '恐'), +(9032, '狭'), +(9033, '狭'), +(9034, '狭'), +(9035, '狭'), +(9036, '挟'), +(9037, '挟'), +(9038, '狂'), +(9039, '狂'), +(9040, '狂'), +(9041, '狂'), +(9042, '脅'), +(9043, '脅'), +(9044, '脅'), +(9045, '矯'), +(9046, '矯'), +(9047, '矯'), +(9048, '驚'), +(9049, '驚'), +(9050, '驚'), +(9051, '驚'), +(9052, '響'), +(9053, '響'), +(9054, '響'), +(9055, '響'), +(9056, '恭'), +(9057, '恭'), +(9058, '恭'), +(9059, '暁'), +(9060, '暁'), +(9061, '暁'), +(9062, '暁'), +(9063, '暁'), +(9064, '菌'), +(9065, '菌'), +(9066, '菌'), +(9067, '菌'), +(9068, '斤'), +(9069, '斤'), +(9070, '斤'), +(9071, '斤'), +(9072, '仰'), +(9073, '仰'), +(9074, '仰'), +(9075, '仰'), +(9076, '仰'), +(9077, '仰'), +(9078, '凝'), +(9079, '凝'), +(9080, '巾'), +(9081, '巾'), +(9082, '巾'), +(9083, '巾'), +(9084, '琴'), +(9085, '琴'), +(9086, '琴'), +(9087, '琴'), +(9088, '琴'), +(9089, '僅'), +(9090, '僅'), +(9091, '僅'), +(9092, '緊'), +(9093, '緊'), +(9094, '緊'), +(9095, '掘'), +(9096, '掘'), +(9097, '繰'), +(9098, '繰'), +(9099, '勲'), +(9100, '勲'), +(9101, '勲'), +(9102, '勲'), +(9103, '窟'), +(9104, '窟'), +(9105, '窟'), +(9106, '駆'), +(9107, '駆'), +(9108, '駆'), +(9109, '駆'), +(9110, '偶'), +(9111, '偶'), +(9112, '偶'), +(9113, '偶'), +(9114, '襟'), +(9115, '襟'), +(9116, '襟'), +(9117, '襟'), +(9118, '謹'), +(9119, '謹'), +(9120, '謹'), +(9121, '隅'), +(9122, '隅'), +(9123, '薫'), +(9124, '薫'), +(9125, '薫'), +(9126, '茎'), +(9127, '茎'), +(9128, '茎'), +(9129, '茎'), +(9130, '茎'), +(9131, '茎'), +(9132, '吟'), +(9133, '吟'), +(9134, '吟'), +(9135, '吟'), +(9136, '遇'), +(9137, '遇'), +(9138, '遇'), +(9139, '遇'), +(9140, '刑'), +(9141, '刑'), +(9142, '刑'), +(9143, '刑'), +(9144, '惧'), +(9145, '惧'), +(9146, '惧'), +(9147, '屈'), +(9148, '屈'), +(9149, '屈'), +(9150, '屈'), +(9151, '契'), +(9152, '契'), +(9153, '契'), +(9154, '契'), +(9155, '愚'), +(9156, '愚'), +(9157, '愚'), +(9158, '愚'), +(9159, '恵'), +(9160, '恵'), +(9161, '恵'), +(9162, '恵'), +(9163, '恵'), +(9164, '恵'), +(9165, '恵'), +(9166, '恵'), +(9167, '啓'), +(9168, '啓'), +(9169, '啓'), +(9170, '啓'), +(9171, '錦'), +(9172, '錦'), +(9173, '錦'), +(9174, '蛍'), +(9175, '蛍'), +(9176, '渓'), +(9177, '渓'), +(9178, '渓'), +(9179, '渓'), +(9180, '傾'), +(9181, '傾'), +(9182, '傾'), +(9183, '傾'), +(9184, '継'), +(9185, '継'), +(9186, '継'), +(9187, '継'), +(9188, '掲'), +(9189, '掲'), +(9190, '掲'), +(9191, '掲'), +(9192, '慶'), +(9193, '慶'), +(9194, '慶'), +(9195, '慶'), +(9196, '携'), +(9197, '携'), +(9198, '携'), +(9199, '携'), +(9200, '稽'), +(9201, '稽'), +(9202, '稽'), +(9203, '憬'), +(9204, '詣'), +(9205, '詣'), +(9206, '献'), +(9207, '献'), +(9208, '献'), +(9209, '献'), +(9210, '献'), +(9211, '献'), +(9212, '献'), +(9213, '献'), +(9214, '鶏'), +(9215, '鶏'), +(9216, '鶏'), +(9217, '鶏'), +(9218, '軒'), +(9219, '軒'), +(9220, '軒'), +(9221, '遣'), +(9222, '遣'), +(9223, '遣'), +(9224, '遣'), +(9225, '嫌'), +(9226, '嫌'), +(9227, '嫌'), +(9228, '嫌'), +(9229, '堅'), +(9230, '堅'), +(9231, '堅'), +(9232, '堅'), +(9233, '傑'), +(9234, '傑'), +(9235, '傑'), +(9236, '傑'), +(9237, '賢'), +(9238, '賢'), +(9239, '賢'), +(9240, '賢'), +(9241, '兼'), +(9242, '兼'), +(9243, '肩'), +(9244, '肩'), +(9245, '肩'), +(9246, '肩'), +(9247, '撃'), +(9248, '撃'), +(9249, '撃'), +(9250, '撃'), +(9251, '鯨'), +(9252, '鯨'), +(9253, '鯨'), +(9254, '鯨'), +(9255, '憩'), +(9256, '憩'), +(9257, '憩'), +(9258, '憩'), +(9259, '剣'), +(9260, '剣'), +(9261, '剣'), +(9262, '剣'), +(9263, '拳'), +(9264, '拳'), +(9265, '拳'), +(9266, '拳'), +(9267, '拳'), +(9268, '拳'), +(9269, '倹'), +(9270, '倹'), +(9271, '倹'), +(9272, '倹'), +(9273, '隙'), +(9274, '隙'), +(9275, '隙'), +(9276, '迎'), +(9277, '迎'), +(9278, '迎'), +(9279, '迎'), +(9280, '圏'), +(9281, '圏'), +(9282, '圏'), +(9283, '圏'), +(9284, '鍵'), +(9285, '鍵'), +(9286, '鍵'), +(9287, '鍵'), +(9288, '繭'), +(9289, '繭'), +(9290, '繭'), +(9291, '繭'), +(9292, '幻'), +(9293, '幻'), +(9294, '幻'), +(9295, '幻'), +(9296, '桁'), +(9297, '桁'), +(9298, '謙'), +(9299, '謙'), +(9300, '謙'), +(9301, '顕'), +(9302, '顕'), +(9303, '顕'), +(9304, '顕'), +(9305, '懸'), +(9306, '懸'), +(9307, '懸'), +(9308, '懸'), +(9309, '懸'), +(9310, '懸'), +(9311, '懸'), +(9312, '玄'), +(9313, '玄'), +(9314, '玄'), +(9315, '鼓'), +(9316, '鼓'), +(9317, '鼓'), +(9318, '鼓'), +(9319, '錮'), +(9320, '錮'), +(9321, '弧'), +(9322, '弧'), +(9323, '弧'), +(9324, '弧'), +(9325, '孤'), +(9326, '孤'), +(9327, '孤'), +(9328, '互'), +(9329, '互'), +(9330, '舷'), +(9331, '舷'), +(9332, '舷'), +(9333, '舷'), +(9334, '悟'), +(9335, '悟'), +(9336, '悟'), +(9337, '悟'), +(9338, '勾'), +(9339, '勾'), +(9340, '股'), +(9341, '股'), +(9342, '股'), +(9343, '股'), +(9344, '顧'), +(9345, '顧'), +(9346, '顧'), +(9347, '顧'), +(9348, '碁'), +(9349, '碁'), +(9350, '碁'), +(9351, '碁'), +(9352, '枯'), +(9353, '枯'), +(9354, '枯'), +(9355, '枯'), +(9356, '誇'), +(9357, '誇'), +(9358, '虎'), +(9359, '虎'), +(9360, '虎'), +(9361, '虎'), +(9362, '娯'), +(9363, '娯'), +(9364, '弦'), +(9365, '弦'), +(9366, '弦'), +(9367, '弦'), +(9368, '呉'), +(9369, '呉'), +(9370, '呉'), +(9371, '貢'), +(9372, '貢'), +(9373, '貢'), +(9374, '貢'), +(9375, '洪'), +(9376, '洪'), +(9377, '拘'), +(9378, '拘'), +(9379, '控'), +(9380, '控'), +(9381, '巧'), +(9382, '巧'), +(9383, '巧'), +(9384, '巧'), +(9385, '攻'), +(9386, '攻'), +(9387, '攻'), +(9388, '攻'), +(9389, '侯'), +(9390, '侯'), +(9391, '侯'), +(9392, '侯'), +(9393, '郊'), +(9394, '郊'), +(9395, '郊'), +(9396, '郊'), +(9397, '肯'), +(9398, '肯'), +(9399, '肯'), +(9400, '喉'), +(9401, '喉'), +(9402, '喉'), +(9403, '喉'), +(9404, '荒'), +(9405, '荒'), +(9406, '荒'), +(9407, '荒'), +(9408, '甲'), +(9409, '甲'), +(9410, '甲'), +(9411, '甲'), +(9412, '甲'), +(9413, '甲'), +(9414, '坑'), +(9415, '坑'), +(9416, '坑'), +(9417, '坑'), +(9418, '恒'), +(9419, '恒'), +(9420, '抗'), +(9421, '抗'), +(9422, '抗'), +(9423, '抗'), +(9424, '更'), +(9425, '更'), +(9426, '更'), +(9427, '更'), +(9428, '江'), +(9429, '江'), +(9430, '江'), +(9431, '江'), +(9432, '孔'), +(9433, '孔'), +(9434, '孔'), +(9435, '孔'), +(9436, '孔'), +(9437, '孔'), +(9438, '雇'), +(9439, '雇'), +(9440, '雇'), +(9441, '雇'), +(9442, '慌'), +(9443, '慌'), +(9444, '梗'), +(9445, '梗'), +(9446, '梗'), +(9447, '梗'), +(9448, '梗'), +(9449, '梗'), +(9450, '絞'), +(9451, '絞'), +(9452, '項'), +(9453, '項'), +(9454, '項'), +(9455, '項'), +(9456, '溝'), +(9457, '溝'), +(9458, '溝'), +(9459, '溝'), +(9460, '酵'), +(9461, '酵'), +(9462, '酵'), +(9463, '酵'), +(9464, '硬'), +(9465, '硬'), +(9466, '硬'), +(9467, '硬'), +(9468, '綱'), +(9469, '綱'), +(9470, '綱'), +(9471, '綱'), +(9472, '衡'), +(9473, '衡'), +(9474, '衡'), +(9475, '衡'), +(9476, '稿'), +(9477, '稿'), +(9478, '稿'), +(9479, '稿'), +(9480, '購'), +(9481, '購'), +(9482, '傲'), +(9483, '傲'), +(9484, '傲'), +(9485, '傲'), +(9486, '乞'), +(9487, '乞'), +(9488, '乞'), +(9489, '乞'), +(9490, '乞'), +(9491, '拷'), +(9492, '拷'), +(9493, '克'), +(9494, '克'), +(9495, '克'), +(9496, '克'), +(9497, '剛'), +(9498, '剛'), +(9499, '剛'), +(9500, '剛'), +(9501, '豪'), +(9502, '豪'), +(9503, '豪'), +(9504, '豪'), +(9505, '駒'), +(9506, '獄'), +(9507, '獄'), +(9508, '獄'), +(9509, '獄'), +(9510, '婚'), +(9511, '婚'), +(9512, '婚'), +(9513, '婚'), +(9514, '昆'), +(9515, '昆'), +(9516, '昆'), +(9517, '酷'), +(9518, '酷'), +(9519, '酷'), +(9520, '酷'), +(9521, '頃'), +(9522, '頃'), +(9523, '頃'), +(9524, '紺'), +(9525, '紺'), +(9526, '紺'), +(9527, '紺'), +(9528, '痕'), +(9529, '痕'), +(9530, '痕'), +(9531, '痕'), +(9532, '魂'), +(9533, '魂'), +(9534, '魂'), +(9535, '魂'), +(9536, '墾'), +(9537, '墾'), +(9538, '墾'), +(9539, '恨'), +(9540, '恨'), +(9541, '恨'), +(9542, '懇'), +(9543, '懇'), +(9544, '懇'), +(9545, '懇'), +(9546, '唆'), +(9547, '唆'), +(9548, '沙'), +(9549, '沙'), +(9550, '沙'), +(9551, '沙'), +(9552, '沙'), +(9553, '沙'), +(9554, '沙'), +(9555, '沙'), +(9556, '挫'), +(9557, '挫'), +(9558, '挫'), +(9559, '挫'), +(9560, '鎖'), +(9561, '鎖'), +(9562, '鎖'), +(9563, '鎖'), +(9564, '砕'), +(9565, '砕'), +(9566, '砕'), +(9567, '砕'), +(9568, '詐'), +(9569, '詐'), +(9570, '詐'), +(9571, '詐'), +(9572, '采'), +(9573, '采'), +(9574, '采'), +(9575, '采'), +(9576, '栽'), +(9577, '栽'), +(9578, '栽'), +(9579, '栽'), +(9580, '宰'), +(9581, '宰'), +(9582, '宰'), +(9583, '宰'), +(9584, '彩'), +(9585, '彩'), +(9586, '彩'), +(9587, '彩'), +(9588, '債'), +(9589, '債'), +(9590, '債'), +(9591, '債'), +(9592, '斎'), +(9593, '斎'), +(9594, '斎'), +(9595, '斎'), +(9596, '催'), +(9597, '催'), +(9598, '催'), +(9599, '催'), +(9600, '塞'), +(9601, '塞'), +(9602, '塞'), +(9603, '塞'), +(9604, '塞'), +(9605, '塞'), +(9606, '塞'), +(9607, '塞'), +(9608, '歳'), +(9609, '歳'), +(9610, '歳'), +(9611, '歳'), +(9612, '歳'), +(9613, '載'), +(9614, '載'), +(9615, '載'), +(9616, '載'), +(9617, '剤'), +(9618, '剤'), +(9619, '剤'), +(9620, '剤'), +(9621, '柵'), +(9622, '柵'), +(9623, '柵'), +(9624, '柵'), +(9625, '酢'), +(9626, '酢'), +(9627, '酢'), +(9628, '酢'), +(9629, '索'), +(9630, '索'), +(9631, '索'), +(9632, '索'), +(9633, '搾'), +(9634, '搾'), +(9635, '搾'), +(9636, '錯'), +(9637, '錯'), +(9638, '錯'), +(9639, '錯'), +(9640, '錯'), +(9641, '削'), +(9642, '削'), +(9643, '削'), +(9644, '削'), +(9645, '恣'), +(9646, '恣'), +(9647, '恣'), +(9648, '恣'), +(9649, '祉'), +(9650, '祉'), +(9651, '祉'), +(9652, '拶'), +(9653, '拶'), +(9654, '惨'), +(9655, '惨'), +(9656, '惨'), +(9657, '惨'), +(9658, '惨'), +(9659, '惨'), +(9660, '惨'), +(9661, '撮'), +(9662, '撮'), +(9663, '撮'), +(9664, '撮'), +(9665, '擦'), +(9666, '擦'), +(9667, '擦'), +(9668, '肢'), +(9669, '肢'), +(9670, '肢'), +(9671, '肢'), +(9672, '桟'), +(9673, '桟'), +(9674, '桟'), +(9675, '桟'), +(9676, '脂'), +(9677, '脂'), +(9678, '脂'), +(9679, '脂'), +(9680, '刺'), +(9681, '刺'), +(9682, '刺'), +(9683, '刺'), +(9684, '旨'), +(9685, '旨'), +(9686, '旨'), +(9687, '旨'), +(9688, '咲'), +(9689, '暫'), +(9690, '暫'), +(9691, '刹'), +(9692, '刹'), +(9693, '刹'), +(9694, '刹'), +(9695, '刹'), +(9696, '刹'), +(9697, '刹'), +(9698, '傘'), +(9699, '傘'), +(9700, '傘'), +(9701, '傘'), +(9702, '紫'), +(9703, '紫'), +(9704, '紫'), +(9705, '紫'), +(9706, '伺'), +(9707, '伺'), +(9708, '伺'), +(9709, '施'), +(9710, '施'), +(9711, '施'), +(9712, '施'), +(9713, '施'), +(9714, '施'), +(9715, '施'), +(9716, '摯'), +(9717, '摯'), +(9718, '嗣'), +(9719, '嗣'), +(9720, '嗣'), +(9721, '嗣'), +(9722, '斬'), +(9723, '斬'), +(9724, '雌'), +(9725, '雌'), +(9726, '璽'), +(9727, '璽'), +(9728, '璽'), +(9729, '璽'), +(9730, '赦'), +(9731, '赦'), +(9732, '赦'), +(9733, '赦'), +(9734, '賜'), +(9735, '賜'), +(9736, '賜'), +(9737, '賜'), +(9738, '軸'), +(9739, '軸'), +(9740, '軸'), +(9741, '軸'), +(9742, '疾'), +(9743, '疾'), +(9744, '疾'), +(9745, '餌'), +(9746, '餌'), +(9747, '執'), +(9748, '執'), +(9749, '執'), +(9750, '執'), +(9751, '執'), +(9752, '執'), +(9753, '執'), +(9754, '執'), +(9755, '侍'), +(9756, '侍'), +(9757, '侍'), +(9758, '侍'), +(9759, '侍'), +(9760, '慈'), +(9761, '慈'), +(9762, '慈'), +(9763, '慈'), +(9764, '芝'), +(9765, '芝'), +(9766, '芝'), +(9767, '漆'), +(9768, '漆'), +(9769, '漆'), +(9770, '諮'), +(9771, '諮'), +(9772, '湿'), +(9773, '湿'), +(9774, '湿'), +(9775, '湿'), +(9776, '斜'), +(9777, '斜'), +(9778, '斜'), +(9779, '斜'), +(9780, '邪'), +(9781, '邪'), +(9782, '邪'), +(9783, '邪'), +(9784, '煮'), +(9785, '煮'), +(9786, '蛇'), +(9787, '蛇'), +(9788, '蛇'), +(9789, '蛇'), +(9790, '蛇'), +(9791, '蛇'), +(9792, '蛇'), +(9793, '蛇'), +(9794, '蛇'), +(9795, '酌'), +(9796, '酌'), +(9797, '酌'), +(9798, '酌'), +(9799, '釈'), +(9800, '釈'), +(9801, '釈'), +(9802, '釈'), +(9803, '釈'), +(9804, '爵'), +(9805, '爵'), +(9806, '爵'), +(9807, '爵'), +(9808, '朱'), +(9809, '朱'), +(9810, '朱'), +(9811, '朱'), +(9812, '狩'), +(9813, '狩'), +(9814, '狩'), +(9815, '殊'), +(9816, '殊'), +(9817, '殊'), +(9818, '遮'), +(9819, '遮'), +(9820, '遮'), +(9821, '腫'), +(9822, '腫'), +(9823, '腫'), +(9824, '腫'), +(9825, '腫'), +(9826, '寂'), +(9827, '寂'), +(9828, '寂'), +(9829, '寂'), +(9830, '寂'), +(9831, '寂'), +(9832, '寂'), +(9833, '寂'), +(9834, '呪'), +(9835, '呪'), +(9836, '呪'), +(9837, '呪'), +(9838, '呪'), +(9839, '寿'), +(9840, '寿'), +(9841, '寿'), +(9842, '寿'), +(9843, '寿'), +(9844, '寿'), +(9845, '寿'), +(9846, '趣'), +(9847, '趣'), +(9848, '趣'), +(9849, '趣'), +(9850, '儒'), +(9851, '儒'), +(9852, '儒'), +(9853, '儒'), +(9854, '囚'), +(9855, '囚'), +(9856, '囚'), +(9857, '囚'), +(9858, '舟'), +(9859, '舟'), +(9860, '舟'), +(9861, '舟'), +(9862, '需'), +(9863, '需'), +(9864, '需'), +(9865, '需'), +(9866, '珠'), +(9867, '珠'), +(9868, '珠'), +(9869, '珠'), +(9870, '臭'), +(9871, '臭'), +(9872, '臭'), +(9873, '臭'), +(9874, '秀'), +(9875, '秀'), +(9876, '秀'), +(9877, '秀'), +(9878, '羞'), +(9879, '羞'), +(9880, '羞'), +(9881, '羞'), +(9882, '愁'), +(9883, '愁'), +(9884, '愁'), +(9885, '愁'), +(9886, '酬'), +(9887, '酬'), +(9888, '袖'), +(9889, '袖'), +(9890, '袖'), +(9891, '醜'), +(9892, '醜'), +(9893, '醜'), +(9894, '醜'), +(9895, '蹴'), +(9896, '蹴'), +(9897, '蹴'), +(9898, '蹴'), +(9899, '襲'), +(9900, '襲'), +(9901, '襲'), +(9902, '襲'), +(9903, '充'), +(9904, '充'), +(9905, '充'), +(9906, '充'), +(9907, '渋'), +(9908, '渋'), +(9909, '渋'), +(9910, '渋'), +(9911, '汁'), +(9912, '汁'), +(9913, '汁'), +(9914, '獣'), +(9915, '獣'), +(9916, '獣'), +(9917, '獣'), +(9918, '銃'), +(9919, '銃'), +(9920, '銃'), +(9921, '銃'), +(9922, '叔'), +(9923, '叔'), +(9924, '叔'), +(9925, '柔'), +(9926, '柔'), +(9927, '柔'), +(9928, '柔'), +(9929, '柔'), +(9930, '柔'), +(9931, '淑'), +(9932, '淑'), +(9933, '淑'), +(9934, '淑'), +(9935, '升'), +(9936, '升'), +(9937, '升'), +(9938, '粛'), +(9939, '粛'), +(9940, '粛'), +(9941, '粛'), +(9942, '循'), +(9943, '循'), +(9944, '循'), +(9945, '遵'), +(9946, '遵'), +(9947, '殉'), +(9948, '殉'), +(9949, '俊'), +(9950, '俊'), +(9951, '俊'), +(9952, '潤'), +(9953, '潤'), +(9954, '潤'), +(9955, '潤'), +(9956, '徐'), +(9957, '徐'), +(9958, '徐'), +(9959, '緒'), +(9960, '緒'), +(9961, '緒'), +(9962, '緒'), +(9963, '緒'), +(9964, '緒'), +(9965, '緒'), +(9966, '緒'), +(9967, '召'), +(9968, '召'), +(9969, '召'), +(9970, '庶'), +(9971, '庶'), +(9972, '庶'), +(9973, '庶'), +(9974, '叙'), +(9975, '叙'), +(9976, '叙'), +(9977, '叙'), +(9978, '盾'), +(9979, '盾'), +(9980, '抄'), +(9981, '抄'), +(9982, '抄'), +(9983, '抄'), +(9984, '床'), +(9985, '床'), +(9986, '床'), +(9987, '床'), +(9988, '巡'), +(9989, '巡'), +(9990, '巡'), +(9991, '巡'), +(9992, '瞬'), +(9993, '瞬'), +(9994, '瞬'), +(9995, '瞬'), +(9996, '塾'), +(9997, '塾'), +(9998, '塾'), +(9999, '塾'), +(10000, '匠'), +(10001, '匠'), +(10002, '匠'), +(10003, '匠'), +(10004, '肖'), +(10005, '肖'), +(10006, '肖'), +(10007, '如'), +(10008, '如'), +(10009, '如'), +(10010, '如'), +(10011, '如'), +(10012, '如'), +(10013, '如'), +(10014, '如'), +(10015, '旬'), +(10016, '旬'), +(10017, '旬'), +(10018, '旬'), +(10019, '旬'), +(10020, '旬'), +(10021, '旬'), +(10022, '昇'), +(10023, '昇'), +(10024, '昇'), +(10025, '昇'), +(10026, '准'), +(10027, '准'), +(10028, '准'), +(10029, '宵'), +(10030, '宵'), +(10031, '尚'), +(10032, '尚'), +(10033, '尚'), +(10034, '尚'), +(10035, '沼'), +(10036, '沼'), +(10037, '沼'), +(10038, '沼'), +(10039, '症'), +(10040, '症'), +(10041, '症'), +(10042, '症'), +(10043, '祥'), +(10044, '祥'), +(10045, '祥'), +(10046, '祥'), +(10047, '渉'), +(10048, '渉'), +(10049, '渉'), +(10050, '渉'), +(10051, '称'), +(10052, '称'), +(10053, '称'), +(10054, '称'), +(10055, '紹'), +(10056, '紹'), +(10057, '訟'), +(10058, '訟'), +(10059, '訟'), +(10060, '訟'), +(10061, '掌'), +(10062, '掌'), +(10063, '掌'), +(10064, '掌'), +(10065, '焦'), +(10066, '焦'), +(10067, '焦'), +(10068, '焦'), +(10069, '硝'), +(10070, '硝'), +(10071, '硝'), +(10072, '硝'), +(10073, '晶'), +(10074, '晶'), +(10075, '晶'), +(10076, '晶'), +(10077, '粧'), +(10078, '粧'), +(10079, '奨'), +(10080, '奨'), +(10081, '奨'), +(10082, '奨'), +(10083, '詳'), +(10084, '詳'), +(10085, '詳'), +(10086, '詳'), +(10087, '衝'), +(10088, '衝'), +(10089, '衝'), +(10090, '衝'), +(10091, '彰'), +(10092, '彰'), +(10093, '彰'), +(10094, '彰'), +(10095, '詔'), +(10096, '詔'), +(10097, '詔'), +(10098, '償'), +(10099, '償'), +(10100, '償'), +(10101, '償'), +(10102, '剰'), +(10103, '剰'), +(10104, '剰'), +(10105, '剰'), +(10106, '壌'), +(10107, '壌'), +(10108, '壌'), +(10109, '冗'), +(10110, '冗'), +(10111, '憧'), +(10112, '憧'), +(10113, '丈'), +(10114, '丈'), +(10115, '丈'), +(10116, '丈'), +(10117, '浄'), +(10118, '浄'), +(10119, '浄'), +(10120, '浄'), +(10121, '畳'), +(10122, '畳'), +(10123, '畳'), +(10124, '畳'), +(10125, '醸'), +(10126, '醸'), +(10127, '醸'), +(10128, '醸'), +(10129, '錠'), +(10130, '錠'), +(10131, '錠'), +(10132, '錠'), +(10133, '礁'), +(10134, '礁'), +(10135, '礁'), +(10136, '礁'), +(10137, '鐘'), +(10138, '鐘'), +(10139, '鐘'), +(10140, '鐘'), +(10141, '拭'), +(10142, '拭'), +(10143, '拭'), +(10144, '拭'), +(10145, '拭'), +(10146, '嬢'), +(10147, '嬢'), +(10148, '嬢'), +(10149, '嬢'), +(10150, '殖'), +(10151, '殖'), +(10152, '殖'), +(10153, '殖'), +(10154, '嘱'), +(10155, '嘱'), +(10156, '嘱'), +(10157, '嘱'), +(10158, '飾'), +(10159, '飾'), +(10160, '飾'), +(10161, '辱'), +(10162, '辱'), +(10163, '辱'), +(10164, '辱'), +(10165, '触'), +(10166, '触'), +(10167, '触'), +(10168, '触'), +(10169, '伸'), +(10170, '伸'), +(10171, '伸'), +(10172, '伸'), +(10173, '芯'), +(10174, '芯'), +(10175, '芯'), +(10176, '芯'), +(10177, '侵'), +(10178, '侵'), +(10179, '侵'), +(10180, '辛'), +(10181, '辛'), +(10182, '辛'), +(10183, '辛'), +(10184, '娠'), +(10185, '娠'), +(10186, '唇'), +(10187, '唇'), +(10188, '唇'), +(10189, '唇'), +(10190, '津'), +(10191, '津'), +(10192, '津'), +(10193, '津'), +(10194, '尻'), +(10195, '尻'), +(10196, '紳'), +(10197, '紳'), +(10198, '紳'), +(10199, '紳'), +(10200, '振'), +(10201, '振'), +(10202, '振'), +(10203, '振'), +(10204, '浸'), +(10205, '浸'), +(10206, '浸'), +(10207, '浸'), +(10208, '譲'), +(10209, '譲'), +(10210, '譲'), +(10211, '譲'), +(10212, '炊'), +(10213, '炊'), +(10214, '炊'), +(10215, '炊'), +(10216, '迅'), +(10217, '迅'), +(10218, '迅'), +(10219, '酔'), +(10220, '酔'), +(10221, '酔'), +(10222, '酔'), +(10223, '寝'), +(10224, '寝'), +(10225, '寝'), +(10226, '腎'), +(10227, '腎'), +(10228, '腎'), +(10229, '腎'), +(10230, '吹'), +(10231, '吹'), +(10232, '吹'), +(10233, '陣'), +(10234, '陣'), +(10235, '陣'), +(10236, '陣'), +(10237, '刃'), +(10238, '刃'), +(10239, '刃'), +(10240, '刃'), +(10241, '須'), +(10242, '須'), +(10243, '須'), +(10244, '須'), +(10245, '須'), +(10246, '須'), +(10247, '粋'), +(10248, '粋'), +(10249, '粋'), +(10250, '粋'), +(10251, '遂'), +(10252, '遂'), +(10253, '遂'), +(10254, '衰'), +(10255, '衰'), +(10256, '衰'), +(10257, '衰'), +(10258, '尋'), +(10259, '尋'), +(10260, '尋'), +(10261, '尋'), +(10262, '薪'), +(10263, '薪'), +(10264, '薪'), +(10265, '甚'), +(10266, '甚'), +(10267, '甚'), +(10268, '甚'), +(10269, '帥'), +(10270, '帥'), +(10271, '尽'), +(10272, '尽'), +(10273, '尽'), +(10274, '尽'), +(10275, '震'), +(10276, '震'), +(10277, '震'), +(10278, '震'), +(10279, '睡'), +(10280, '睡'), +(10281, '睡'), +(10282, '睡'), +(10283, '穂'), +(10284, '穂'), +(10285, '穂'), +(10286, '穂'), +(10287, '慎'), +(10288, '慎'), +(10289, '慎'), +(10290, '慎'), +(10291, '診'), +(10292, '診'), +(10293, '診'), +(10294, '診'), +(10295, '髄'), +(10296, '髄'), +(10297, '髄'), +(10298, '髄'), +(10299, '崇'), +(10300, '崇'), +(10301, '崇'), +(10302, '随'), +(10303, '随'), +(10304, '随'), +(10305, '随'), +(10306, '審'), +(10307, '審'), +(10308, '審'), +(10309, '審'), +(10310, '杉'), +(10311, '据'), +(10312, '据'), +(10313, '姓'), +(10314, '姓'), +(10315, '姓'), +(10316, '姓'), +(10317, '姓'), +(10318, '姓'), +(10319, '姓'), +(10320, '征'), +(10321, '征'), +(10322, '征'), +(10323, '征'), +(10324, '是'), +(10325, '是'), +(10326, '是'), +(10327, '是'), +(10328, '是'), +(10329, '凄'), +(10330, '凄'), +(10331, '斉'), +(10332, '斉'), +(10333, '斉'), +(10334, '斉'), +(10335, '斉'), +(10336, '斉'), +(10337, '逝'), +(10338, '逝'), +(10339, '逝'), +(10340, '婿'), +(10341, '婿'), +(10342, '請'), +(10343, '請'), +(10344, '請'), +(10345, '請'), +(10346, '請'), +(10347, '請'), +(10348, '請'), +(10349, '請'), +(10350, '請'), +(10351, '請'), +(10352, '枢'), +(10353, '枢'), +(10354, '枢'), +(10355, '枢'), +(10356, '析'), +(10357, '析'), +(10358, '析'), +(10359, '醒'), +(10360, '醒'), +(10361, '醒'), +(10362, '隻'), +(10363, '隻'), +(10364, '隻'), +(10365, '斥'), +(10366, '斥'), +(10367, '斥'), +(10368, '戚'), +(10369, '戚'), +(10370, '脊'), +(10371, '脊'), +(10372, '跡'), +(10373, '跡'), +(10374, '跡'), +(10375, '籍'), +(10376, '籍'), +(10377, '籍'), +(10378, '籍'), +(10379, '惜'), +(10380, '惜'), +(10381, '惜'), +(10382, '惜'), +(10383, '誓'), +(10384, '誓'), +(10385, '誓'), +(10386, '誓'), +(10387, '窃'), +(10388, '窃'), +(10389, '窃'), +(10390, '摂'), +(10391, '摂'), +(10392, '摂'), +(10393, '摂'), +(10394, '摂'), +(10395, '摂'), +(10396, '扇'), +(10397, '扇'), +(10398, '扇'), +(10399, '扇'), +(10400, '拙'), +(10401, '拙'), +(10402, '拙'), +(10403, '拙'), +(10404, '栓'), +(10405, '栓'), +(10406, '栓'), +(10407, '栓'), +(10408, '占'), +(10409, '占'), +(10410, '占'), +(10411, '占'), +(10412, '仙'), +(10413, '仙'), +(10414, '仙'), +(10415, '仙'), +(10416, '仙'), +(10417, '仙'), +(10418, '旋'), +(10419, '旋'), +(10420, '旋'), +(10421, '旋'), +(10422, '羨'), +(10423, '羨'), +(10424, '羨'), +(10425, '煎'), +(10426, '煎'), +(10427, '煎'), +(10428, '煎'), +(10429, '腺'), +(10430, '腺'), +(10431, '腺'), +(10432, '腺'), +(10433, '遷'), +(10434, '遷'), +(10435, '遷'), +(10436, '遷'), +(10437, '詮'), +(10438, '詮'), +(10439, '禅'), +(10440, '禅'), +(10441, '禅'), +(10442, '禅'), +(10443, '繊'), +(10444, '繊'), +(10445, '繊'), +(10446, '繊'), +(10447, '阻'), +(10448, '阻'), +(10449, '阻'), +(10450, '阻'), +(10451, '疎'), +(10452, '疎'), +(10453, '疎'), +(10454, '疎'), +(10455, '漸'), +(10456, '漸'), +(10457, '漸'), +(10458, '漸'), +(10459, '粗'), +(10460, '粗'), +(10461, '粗'), +(10462, '繕'), +(10463, '繕'), +(10464, '狙'), +(10465, '狙'), +(10466, '践'), +(10467, '践'), +(10468, '践'), +(10469, '薦'), +(10470, '薦'), +(10471, '薦'), +(10472, '薦'), +(10473, '租'), +(10474, '租'), +(10475, '租'), +(10476, '租'), +(10477, '措'), +(10478, '措'), +(10479, '措'), +(10480, '措'), +(10481, '膳'), +(10482, '膳'), +(10483, '膳'), +(10484, '膳'), +(10485, '鮮'), +(10486, '鮮'), +(10487, '鮮'), +(10488, '鮮'), +(10489, '箋'), +(10490, '箋'), +(10491, '箋'), +(10492, '潜'), +(10493, '潜'), +(10494, '潜'), +(10495, '潜'), +(10496, '遡'), +(10497, '遡'), +(10498, '遡'), +(10499, '掃'), +(10500, '掃'), +(10501, '掃'), +(10502, '掃'), +(10503, '爽'), +(10504, '爽'), +(10505, '爽'), +(10506, '爽'), +(10507, '塑'), +(10508, '塑'), +(10509, '塑'), +(10510, '塑'), +(10511, '桑'), +(10512, '桑'), +(10513, '桑'), +(10514, '挿'), +(10515, '挿'), +(10516, '挿'), +(10517, '挿'), +(10518, '遭'), +(10519, '遭'), +(10520, '曽'), +(10521, '曽'), +(10522, '曽'), +(10523, '曽'), +(10524, '曽'), +(10525, '曽'), +(10526, '曽'), +(10527, '壮'), +(10528, '壮'), +(10529, '壮'), +(10530, '壮'), +(10531, '訴'), +(10532, '訴'), +(10533, '訴'), +(10534, '訴'), +(10535, '曹'), +(10536, '曹'), +(10537, '曹'), +(10538, '曹'), +(10539, '曹'), +(10540, '捜'), +(10541, '捜'), +(10542, '捜'), +(10543, '捜'), +(10544, '荘'), +(10545, '荘'), +(10546, '荘'), +(10547, '荘'), +(10548, '荘'), +(10549, '荘'), +(10550, '荘'), +(10551, '荘'), +(10552, '荘'), +(10553, '荘'), +(10554, '葬'), +(10555, '葬'), +(10556, '葬'), +(10557, '葬'), +(10558, '礎'), +(10559, '礎'), +(10560, '礎'), +(10561, '礎'), +(10562, '僧'), +(10563, '僧'), +(10564, '僧'), +(10565, '僧'), +(10566, '喪'), +(10567, '喪'), +(10568, '喪'), +(10569, '喪'), +(10570, '双'), +(10571, '双'), +(10572, '双'), +(10573, '双'), +(10574, '痩'), +(10575, '痩'), +(10576, '痩'), +(10577, '踪'), +(10578, '踪'), +(10579, '槽'), +(10580, '槽'), +(10581, '槽'), +(10582, '汰'), +(10583, '汰'), +(10584, '燥'), +(10585, '燥'), +(10586, '妥'), +(10587, '妥'), +(10588, '促'), +(10589, '促'), +(10590, '促'), +(10591, '促'), +(10592, '贈'), +(10593, '贈'), +(10594, '贈'), +(10595, '贈'), +(10596, '贈'), +(10597, '遜'), +(10598, '遜'), +(10599, '遜'), +(10600, '遜'), +(10601, '憎'), +(10602, '憎'), +(10603, '惰'), +(10604, '惰'), +(10605, '惰'), +(10606, '惰'), +(10607, '耐'), +(10608, '耐'), +(10609, '耐'), +(10610, '耐'), +(10611, '賊'), +(10612, '賊'), +(10613, '賊'), +(10614, '賊'), +(10615, '俗'), +(10616, '俗'), +(10617, '俗'), +(10618, '俗'), +(10619, '胎'), +(10620, '胎'), +(10621, '胎'), +(10622, '胎'), +(10623, '騒'), +(10624, '騒'), +(10625, '騒'), +(10626, '騒'), +(10627, '霜'), +(10628, '霜'), +(10629, '霜'), +(10630, '霜'), +(10631, '捉'), +(10632, '捉'), +(10633, '怠'), +(10634, '怠'), +(10635, '怠'), +(10636, '怠'), +(10637, '駄'), +(10638, '駄'), +(10639, '駄'), +(10640, '駄'), +(10641, '駄'), +(10642, '駄'), +(10643, '藻'), +(10644, '藻'), +(10645, '藻'), +(10646, '藻'), +(10647, '堕'), +(10648, '堕'), +(10649, '堕'), +(10650, '即'), +(10651, '即'), +(10652, '即'), +(10653, '即'), +(10654, '堆'), +(10655, '堆'), +(10656, '堆'), +(10657, '堆'), +(10658, '堆'), +(10659, '袋'), +(10660, '袋'), +(10661, '袋'), +(10662, '袋'), +(10663, '逮'), +(10664, '逮'), +(10665, '替'), +(10666, '替'), +(10667, '唾'), +(10668, '唾'), +(10669, '泰'), +(10670, '泰'), +(10671, '泰'), +(10672, '泰'), +(10673, '滞'), +(10674, '滞'), +(10675, '滞'), +(10676, '滞'), +(10677, '択'), +(10678, '択'), +(10679, '択'), +(10680, '択'), +(10681, '諾'), +(10682, '諾'), +(10683, '諾'), +(10684, '諾'), +(10685, '戴'), +(10686, '戴'), +(10687, '戴'), +(10688, '戴'), +(10689, '胆'), +(10690, '胆'), +(10691, '胆'), +(10692, '胆'), +(10693, '旦'), +(10694, '旦'), +(10695, '旦'), +(10696, '旦'), +(10697, '旦'), +(10698, '旦'), +(10699, '旦'), +(10700, '旦'), +(10701, '託'), +(10702, '託'), +(10703, '託'), +(10704, '託'), +(10705, '綻'), +(10706, '綻'), +(10707, '誰'), +(10708, '拓'), +(10709, '拓'), +(10710, '拓'), +(10711, '拓'), +(10712, '濯'), +(10713, '濯'), +(10714, '卓'), +(10715, '卓'), +(10716, '卓'), +(10717, '卓'), +(10718, '脱'), +(10719, '脱'), +(10720, '脱'), +(10721, '脱'), +(10722, '嘆'), +(10723, '嘆'), +(10724, '嘆'), +(10725, '嘆'), +(10726, '沢'), +(10727, '沢'), +(10728, '沢'), +(10729, '沢'), +(10730, '壇'), +(10731, '壇'), +(10732, '壇'), +(10733, '壇'), +(10734, '壇'), +(10735, '端'), +(10736, '端'), +(10737, '端'), +(10738, '端'), +(10739, '棚'), +(10740, '棚'), +(10741, '弾'), +(10742, '弾'), +(10743, '弾'), +(10744, '弾'), +(10745, '奪'), +(10746, '奪'), +(10747, '奪'), +(10748, '奪'), +(10749, '恥'), +(10750, '恥'), +(10751, '恥'), +(10752, '恥'), +(10753, '丹'), +(10754, '丹'), +(10755, '丹'), +(10756, '丹'), +(10757, '鍛'), +(10758, '鍛'), +(10759, '稚'), +(10760, '稚'), +(10761, '稚'), +(10762, '淡'), +(10763, '淡'), +(10764, '淡'), +(10765, '淡'), +(10766, '痴'), +(10767, '痴'), +(10768, '痴'), +(10769, '痴'), +(10770, '緻'), +(10771, '緻'), +(10772, '緻'), +(10773, '遅'), +(10774, '遅'), +(10775, '遅'), +(10776, '遅'), +(10777, '致'), +(10778, '致'), +(10779, '致'), +(10780, '致'), +(10781, '逐'), +(10782, '逐'), +(10783, '逐'), +(10784, '逐'), +(10785, '濁'), +(10786, '濁'), +(10787, '濁'), +(10788, '濁'), +(10789, '濁'), +(10790, '濁'), +(10791, '畜'), +(10792, '畜'), +(10793, '畜'), +(10794, '畜'), +(10795, '蓄'), +(10796, '蓄'), +(10797, '蓄'), +(10798, '蓄'), +(10799, '窒'), +(10800, '嫡'), +(10801, '嫡'), +(10802, '嫡'), +(10803, '嫡'), +(10804, '嫡'), +(10805, '嫡'), +(10806, '嫡'), +(10807, '眺'), +(10808, '眺'), +(10809, '弔'), +(10810, '弔'), +(10811, '弔'), +(10812, '弔'), +(10813, '聴'), +(10814, '聴'), +(10815, '聴'), +(10816, '聴'), +(10817, '聴'), +(10818, '挑'), +(10819, '挑'), +(10820, '跳'), +(10821, '跳'), +(10822, '跳'), +(10823, '酎'), +(10824, '酎'), +(10825, '酎'), +(10826, '酎'), +(10827, '酎'), +(10828, '酎'), +(10829, '鋳'), +(10830, '鋳'), +(10831, '鋳'), +(10832, '鋳'), +(10833, '鋳'), +(10834, '鋳'), +(10835, '秩'), +(10836, '秩'), +(10837, '勅'), +(10838, '勅'), +(10839, '勅'), +(10840, '勅'), +(10841, '澄'), +(10842, '澄'), +(10843, '澄'), +(10844, '澄'), +(10845, '彫'), +(10846, '彫'), +(10847, '彫'), +(10848, '徴'), +(10849, '徴'), +(10850, '徴'), +(10851, '徴'), +(10852, '徴'), +(10853, '徴'), +(10854, '徴'), +(10855, '嘲'), +(10856, '嘲'), +(10857, '嘲'), +(10858, '嘲'), +(10859, '釣'), +(10860, '釣'), +(10861, '釣'), +(10862, '衷'), +(10863, '衷'), +(10864, '衷'), +(10865, '衷'), +(10866, '抽'), +(10867, '抽'), +(10868, '沈'), +(10869, '沈'), +(10870, '沈'), +(10871, '沈'), +(10872, '沈'), +(10873, '沈'), +(10874, '貼'), +(10875, '貼'), +(10876, '貼'), +(10877, '朕'), +(10878, '懲'), +(10879, '懲'), +(10880, '懲'), +(10881, '懲'), +(10882, '超'), +(10883, '超'), +(10884, '超'), +(10885, '超'), +(10886, '駐'), +(10887, '駐'), +(10888, '駐'), +(10889, '駐'), +(10890, '鎮'), +(10891, '鎮'), +(10892, '鎮'), +(10893, '鎮'), +(10894, '珍'), +(10895, '珍'), +(10896, '珍'), +(10897, '珍'), +(10898, '塚'), +(10899, '墜'), +(10900, '墜'), +(10901, '墜'), +(10902, '墜'), +(10903, '捗'), +(10904, '椎'), +(10905, '椎'), +(10906, '椎'), +(10907, '椎'), +(10908, '爪'), +(10909, '爪'), +(10910, '爪'), +(10911, '爪'), +(10912, '呈'), +(10913, '呈'), +(10914, '呈'), +(10915, '呈'), +(10916, '漬'), +(10917, '陳'), +(10918, '陳'), +(10919, '陳'), +(10920, '陳'), +(10921, '鶴'), +(10922, '鶴'), +(10923, '鶴'), +(10924, '鶴'), +(10925, '廷'), +(10926, '廷'), +(10927, '廷'), +(10928, '廷'), +(10929, '邸'), +(10930, '邸'), +(10931, '邸'), +(10932, '邸'), +(10933, '貞'), +(10934, '貞'), +(10935, '貞'), +(10936, '貞'), +(10937, '貞'), +(10938, '貞'), +(10939, '抵'), +(10940, '抵'), +(10941, '抵'), +(10942, '抵'), +(10943, '逓'), +(10944, '逓'), +(10945, '逓'), +(10946, '亭'), +(10947, '亭'), +(10948, '亭'), +(10949, '亭'), +(10950, '亭'), +(10951, '帝'), +(10952, '帝'), +(10953, '帝'), +(10954, '帝'), +(10955, '堤'), +(10956, '堤'), +(10957, '堤'), +(10958, '堤'), +(10959, '偵'), +(10960, '偵'), +(10961, '偵'), +(10962, '偵'), +(10963, '訂'), +(10964, '訂'), +(10965, '訂'), +(10966, '訂'), +(10967, '諦'), +(10968, '諦'), +(10969, '諦'), +(10970, '諦'), +(10971, '諦'), +(10972, '諦'), +(10973, '諦'), +(10974, '締'), +(10975, '締'), +(10976, '摘'), +(10977, '摘'), +(10978, '摘'), +(10979, '溺'), +(10980, '溺'), +(10981, '溺'), +(10982, '溺'), +(10983, '滴'), +(10984, '滴'), +(10985, '滴'), +(10986, '滴'), +(10987, '唐'), +(10988, '唐'), +(10989, '唐'), +(10990, '唐'), +(10991, '哲'), +(10992, '哲'), +(10993, '哲'), +(10994, '哲'), +(10995, '添'), +(10996, '添'), +(10997, '添'), +(10998, '添'), +(10999, '怒'), +(11000, '怒'), +(11001, '怒'), +(11002, '怒'), +(11003, '怒'), +(11004, '凍'), +(11005, '凍'), +(11006, '凍'), +(11007, '凍'), +(11008, '徹'), +(11009, '徹'), +(11010, '徹'), +(11011, '徹'), +(11012, '倒'), +(11013, '倒'), +(11014, '倒'), +(11015, '倒'), +(11016, '桃'), +(11017, '桃'), +(11018, '桃'), +(11019, '桃'), +(11020, '途'), +(11021, '途'), +(11022, '途'), +(11023, '途'), +(11024, '渡'), +(11025, '渡'), +(11026, '渡'), +(11027, '渡'), +(11028, '透'), +(11029, '透'), +(11030, '透'), +(11031, '透'), +(11032, '迭'), +(11033, '迭'), +(11034, '陶'), +(11035, '陶'), +(11036, '陶'), +(11037, '陶'), +(11038, '到'), +(11039, '到'), +(11040, '到'), +(11041, '到'), +(11042, '妬'), +(11043, '妬'), +(11044, '盗'), +(11045, '盗'), +(11046, '盗'), +(11047, '盗'), +(11048, '塔'), +(11049, '塔'), +(11050, '塔'), +(11051, '塔'), +(11052, '塡'), +(11053, '塡'), +(11054, '塡'), +(11055, '塡'), +(11056, '奴'), +(11057, '奴'), +(11058, '奴'), +(11059, '奴'), +(11060, '吐'), +(11061, '吐'), +(11062, '吐'), +(11063, '吐'), +(11064, '逃'), +(11065, '逃'), +(11066, '塗'), +(11067, '塗'), +(11068, '塗'), +(11069, '塗'), +(11070, '艇'), +(11071, '艇'), +(11072, '艇'), +(11073, '艇'), +(11074, '泥'), +(11075, '泥'), +(11076, '泥'), +(11077, '泥'), +(11078, '泥'), +(11079, '泥'), +(11080, '泥'), +(11081, '殿'), +(11082, '殿'), +(11083, '殿'), +(11084, '殿'), +(11085, '殿'), +(11086, '殿'), +(11087, '殿'), +(11088, '殿'), +(11089, '搭'), +(11090, '搭'), +(11091, '賭'), +(11092, '賭'), +(11093, '痘'), +(11094, '痘'), +(11095, '痘'), +(11096, '痘'), +(11097, '悼'), +(11098, '悼'), +(11099, '悼'), +(11100, '悼'), +(11101, '斗'), +(11102, '斗'), +(11103, '斗'), +(11104, '斗'), +(11105, '斗'), +(11106, '斗'), +(11107, '斗'), +(11108, '踏'), +(11109, '踏'), +(11110, '踏'), +(11111, '踏'), +(11112, '謄'), +(11113, '謄'), +(11114, '棟'), +(11115, '棟'), +(11116, '棟'), +(11117, '棟'), +(11118, '筒'), +(11119, '筒'), +(11120, '筒'), +(11121, '筒'), +(11122, '稲'), +(11123, '稲'), +(11124, '稲'), +(11125, '稲'), +(11126, '稲'), +(11127, '稲'), +(11128, '那'), +(11129, '那'), +(11130, '那'), +(11131, '那'), +(11132, '篤'), +(11133, '篤'), +(11134, '篤'), +(11135, '篤'), +(11136, '曇'), +(11137, '曇'), +(11138, '謎'), +(11139, '豚'), +(11140, '豚'), +(11141, '豚'), +(11142, '豚'), +(11143, '突'), +(11144, '突'), +(11145, '突'), +(11146, '突'), +(11147, '匿'), +(11148, '匿'), +(11149, '匿'), +(11150, '匿'), +(11151, '頓'), +(11152, '頓'), +(11153, '頓'), +(11154, '頓'), +(11155, '屯'), +(11156, '屯'), +(11157, '屯'), +(11158, '屯'), +(11159, '鈍'), +(11160, '鈍'), +(11161, '鈍'), +(11162, '鈍'), +(11163, '藤'), +(11164, '藤'), +(11165, '藤'), +(11166, '督'), +(11167, '督'), +(11168, '督'), +(11169, '督'), +(11170, '胴'), +(11171, '胴'), +(11172, '胴'), +(11173, '胴'), +(11174, '貪'), +(11175, '貪'), +(11176, '貪'), +(11177, '貪'), +(11178, '貪'), +(11179, '貪'), +(11180, '貪'), +(11181, '凸'), +(11182, '凸'), +(11183, '凸'), +(11184, '凸'), +(11185, '瞳'), +(11186, '瞳'), +(11187, '瞳'), +(11188, '瞳'), +(11189, '騰'), +(11190, '騰'), +(11191, '騰'), +(11192, '騰'), +(11193, '尼'), +(11194, '尼'), +(11195, '尼'), +(11196, '尼'), +(11197, '弐'), +(11198, '弐'), +(11199, '弐'), +(11200, '弐'), +(11201, '弐'), +(11202, '闘'), +(11203, '闘'), +(11204, '闘'), +(11205, '闘'), +(11206, '虹'), +(11207, '虹'), +(11208, '虹'), +(11209, '虹'), +(11210, '軟'), +(11211, '軟'), +(11212, '軟'), +(11213, '洞'), +(11214, '洞'), +(11215, '洞'), +(11216, '洞'), +(11217, '尿'), +(11218, '尿'), +(11219, '尿'), +(11220, '尿'), +(11221, '妊'), +(11222, '妊'), +(11223, '妊'), +(11224, '妊'), +(11225, '忍'), +(11226, '忍'), +(11227, '忍'), +(11228, '忍'), +(11229, '寧'), +(11230, '寧'), +(11231, '寧'), +(11232, '寧'), +(11233, '粘'), +(11234, '粘'), +(11235, '濃'), +(11236, '濃'), +(11237, '把'), +(11238, '把'), +(11239, '把'), +(11240, '把'), +(11241, '把'), +(11242, '把'), +(11243, '捻'), +(11244, '捻'), +(11245, '捻'), +(11246, '悩'), +(11247, '悩'), +(11248, '悩'), +(11249, '悩'), +(11250, '覇'), +(11251, '覇'), +(11252, '覇'), +(11253, '覇'), +(11254, '縛'), +(11255, '縛'), +(11256, '縛'), +(11257, '縛'), +(11258, '漠'), +(11259, '漠'), +(11260, '漠'), +(11261, '漠'), +(11262, '婆'), +(11263, '婆'), +(11264, '婆'), +(11265, '婆'), +(11266, '廃'), +(11267, '廃'), +(11268, '廃'), +(11269, '廃'), +(11270, '拍'), +(11271, '拍'), +(11272, '拍'), +(11273, '拍'), +(11274, '拍'), +(11275, '拍'), +(11276, '賠'), +(11277, '賠'), +(11278, '賠'), +(11279, '培'), +(11280, '培'), +(11281, '培'), +(11282, '培'), +(11283, '薄'), +(11284, '薄'), +(11285, '薄'), +(11286, '薄'), +(11287, '輩'), +(11288, '輩'), +(11289, '輩'), +(11290, '輩'), +(11291, '迫'), +(11292, '迫'), +(11293, '迫'), +(11294, '迫'), +(11295, '剝'), +(11296, '剝'), +(11297, '剝'), +(11298, '排'), +(11299, '排'), +(11300, '排'), +(11301, '陪'), +(11302, '陪'), +(11303, '陪'), +(11304, '媒'), +(11305, '媒'), +(11306, '媒'), +(11307, '媒'), +(11308, '泊'), +(11309, '泊'), +(11310, '泊'), +(11311, '泊'), +(11312, '伯'), +(11313, '伯'), +(11314, '伯'), +(11315, '伯'), +(11316, '杯'), +(11317, '杯'), +(11318, '杯'), +(11319, '杯'), +(11320, '舶'), +(11321, '舶'), +(11322, '舶'), +(11323, '罵'), +(11324, '罵'), +(11325, '罵'), +(11326, '罵'), +(11327, '爆'), +(11328, '爆'), +(11329, '爆'), +(11330, '爆'), +(11331, '箸'), +(11332, '鉢'), +(11333, '鉢'), +(11334, '鉢'), +(11335, '鉢'), +(11336, '鉢'), +(11337, '鉢'), +(11338, '髪'), +(11339, '髪'), +(11340, '髪'), +(11341, '抜'), +(11342, '抜'), +(11343, '抜'), +(11344, '抜'), +(11345, '氾'), +(11346, '氾'), +(11347, '伐'), +(11348, '伐'), +(11349, '伐'), +(11350, '肌'), +(11351, '肌'), +(11352, '肌'), +(11353, '肌'), +(11354, '罰'), +(11355, '罰'), +(11356, '罰'), +(11357, '罰'), +(11358, '罰'), +(11359, '罰'), +(11360, '罰'), +(11361, '閥'), +(11362, '閥'), +(11363, '閥'), +(11364, '閥'), +(11365, '帆'), +(11366, '帆'), +(11367, '帆'), +(11368, '帆'), +(11369, '畔'), +(11370, '畔'), +(11371, '伴'), +(11372, '伴'), +(11373, '伴'), +(11374, '伴'), +(11375, '伴'), +(11376, '伴'), +(11377, '伴'), +(11378, '伴'), +(11379, '汎'), +(11380, '汎'), +(11381, '販'), +(11382, '販'), +(11383, '販'), +(11384, '販'), +(11385, '搬'), +(11386, '搬'), +(11387, '斑'), +(11388, '斑'), +(11389, '斑'), +(11390, '斑'), +(11391, '頒'), +(11392, '頒'), +(11393, '煩'), +(11394, '煩'), +(11395, '煩'), +(11396, '煩'), +(11397, '範'), +(11398, '範'), +(11399, '範'), +(11400, '範'), +(11401, '般'), +(11402, '般'), +(11403, '般'), +(11404, '般'), +(11405, '蛮'), +(11406, '蛮'), +(11407, '蛮'), +(11408, '蛮'), +(11409, '妃'), +(11410, '妃'), +(11411, '妃'), +(11412, '妃'), +(11413, '藩'), +(11414, '藩'), +(11415, '藩'), +(11416, '藩'), +(11417, '繁'), +(11418, '繁'), +(11419, '盤'), +(11420, '盤'), +(11421, '盤'), +(11422, '盤'), +(11423, '疲'), +(11424, '疲'), +(11425, '卑'), +(11426, '卑'), +(11427, '卑'), +(11428, '卑'), +(11429, '彼'), +(11430, '彼'), +(11431, '被'), +(11432, '被'), +(11433, '被'), +(11434, '被'), +(11435, '披'), +(11436, '披'), +(11437, '披'), +(11438, '披'), +(11439, '扉'), +(11440, '扉'), +(11441, '碑'), +(11442, '碑'), +(11443, '碑'), +(11444, '碑'), +(11445, '罷'), +(11446, '罷'), +(11447, '避'), +(11448, '避'), +(11449, '避'), +(11450, '避'), +(11451, '尾'), +(11452, '尾'), +(11453, '尾'), +(11454, '尾'), +(11455, '扶'), +(11456, '扶'), +(11457, '扶'), +(11458, '扶'), +(11459, '眉'), +(11460, '眉'), +(11461, '眉'), +(11462, '眉'), +(11463, '眉'), +(11464, '肘'), +(11465, '肘'), +(11466, '肘'), +(11467, '姫'), +(11468, '姫'), +(11469, '描'), +(11470, '描'), +(11471, '描'), +(11472, '描'), +(11473, '漂'), +(11474, '漂'), +(11475, '漂'), +(11476, '漂'), +(11477, '怖'), +(11478, '怖'), +(11479, '浜'), +(11480, '浜'), +(11481, '浜'), +(11482, '匹'), +(11483, '匹'), +(11484, '瓶'), +(11485, '瓶'), +(11486, '瓶'), +(11487, '瓶'), +(11488, '附'), +(11489, '附'), +(11490, '附'), +(11491, '附'), +(11492, '苗'), +(11493, '苗'), +(11494, '苗'), +(11495, '苗'), +(11496, '苗'), +(11497, '苗'), +(11498, '苗'), +(11499, '猫'), +(11500, '猫'), +(11501, '猫'), +(11502, '猫'), +(11503, '頻'), +(11504, '頻'), +(11505, '赴'), +(11506, '赴'), +(11507, '賓'), +(11508, '賓'), +(11509, '賓'), +(11510, '賓'), +(11511, '微'), +(11512, '微'), +(11513, '微'), +(11514, '微'), +(11515, '浮'), +(11516, '浮'), +(11517, '浮'), +(11518, '敏'), +(11519, '敏'), +(11520, '敏'), +(11521, '敏'), +(11522, '訃'), +(11523, '訃'), +(11524, '膝'), +(11525, '膝'), +(11526, '符'), +(11527, '符'), +(11528, '符'), +(11529, '符'), +(11530, '腐'), +(11531, '腐'), +(11532, '腐'), +(11533, '腐'), +(11534, '膚'), +(11535, '膚'), +(11536, '敷'), +(11537, '敷'), +(11538, '泌'), +(11539, '泌'), +(11540, '泌'), +(11541, '泌'), +(11542, '舞'), +(11543, '舞'), +(11544, '舞'), +(11545, '舞'), +(11546, '伏'), +(11547, '伏'), +(11548, '伏'), +(11549, '伏'), +(11550, '沸'), +(11551, '沸'), +(11552, '沸'), +(11553, '賦'), +(11554, '賦'), +(11555, '賦'), +(11556, '賦'), +(11557, '賦'), +(11558, '賦'), +(11559, '噴'), +(11560, '噴'), +(11561, '噴'), +(11562, '噴'), +(11563, '憤'), +(11564, '憤'), +(11565, '憤'), +(11566, '憤'), +(11567, '柄'), +(11568, '柄'), +(11569, '柄'), +(11570, '併'), +(11571, '併'), +(11572, '払'), +(11573, '墳'), +(11574, '墳'), +(11575, '墳'), +(11576, '墳'), +(11577, '幅'), +(11578, '幅'), +(11579, '幅'), +(11580, '幅'), +(11581, '普'), +(11582, '普'), +(11583, '譜'), +(11584, '譜'), +(11585, '譜'), +(11586, '譜'), +(11587, '紛'), +(11588, '紛'), +(11589, '紛'), +(11590, '侮'), +(11591, '侮'), +(11592, '侮'), +(11593, '封'), +(11594, '封'), +(11595, '封'), +(11596, '封'), +(11597, '封'), +(11598, '封'), +(11599, '封'), +(11600, '封'), +(11601, '覆'), +(11602, '覆'), +(11603, '覆'), +(11604, '覆'), +(11605, '雰'), +(11606, '雰'), +(11607, '丙'), +(11608, '丙'), +(11609, '丙'), +(11610, '塀'), +(11611, '塀'), +(11612, '塀'), +(11613, '塀'), +(11614, '幣'), +(11615, '幣'), +(11616, '幣'), +(11617, '幣'), +(11618, '弊'), +(11619, '弊'), +(11620, '弊'), +(11621, '弊'), +(11622, '蔽'), +(11623, '蔽'), +(11624, '璧'), +(11625, '璧'), +(11626, '璧'), +(11627, '壁'), +(11628, '壁'), +(11629, '壁'), +(11630, '壁'), +(11631, '癖'), +(11632, '癖'), +(11633, '癖'), +(11634, '偏'), +(11635, '偏'), +(11636, '偏'), +(11637, '偏'), +(11638, '蔑'), +(11639, '蔑'), +(11640, '遍'), +(11641, '遍'), +(11642, '遍'), +(11643, '餅'), +(11644, '餅'), +(11645, '餅'), +(11646, '餅'), +(11647, '哺'), +(11648, '哺'), +(11649, '哺'), +(11650, '捕'), +(11651, '捕'), +(11652, '捕'), +(11653, '捕'), +(11654, '募'), +(11655, '募'), +(11656, '募'), +(11657, '募'), +(11658, '芳'), +(11659, '芳'), +(11660, '芳'), +(11661, '芳'), +(11662, '簿'), +(11663, '簿'), +(11664, '簿'), +(11665, '簿'), +(11666, '奉'), +(11667, '奉'), +(11668, '奉'), +(11669, '奉'), +(11670, '奉'), +(11671, '奉'), +(11672, '邦'), +(11673, '邦'), +(11674, '邦'), +(11675, '邦'), +(11676, '慕'), +(11677, '慕'), +(11678, '慕'), +(11679, '抱'), +(11680, '抱'), +(11681, '抱'), +(11682, '抱'), +(11683, '倣'), +(11684, '俸'), +(11685, '俸'), +(11686, '俸'), +(11687, '俸'), +(11688, '泡'), +(11689, '泡'), +(11690, '泡'), +(11691, '泡'), +(11692, '胞'), +(11693, '胞'), +(11694, '胞'), +(11695, '胞'), +(11696, '砲'), +(11697, '砲'), +(11698, '砲'), +(11699, '砲'), +(11700, '蜂'), +(11701, '蜂'), +(11702, '蜂'), +(11703, '蜂'), +(11704, '峰'), +(11705, '峰'), +(11706, '峰'), +(11707, '舗'), +(11708, '舗'), +(11709, '舗'), +(11710, '舗'), +(11711, '縫'), +(11712, '縫'), +(11713, '縫'), +(11714, '縫'), +(11715, '飽'), +(11716, '飽'), +(11717, '坊'), +(11718, '坊'), +(11719, '坊'), +(11720, '坊'), +(11721, '坊'), +(11722, '坊'), +(11723, '妨'), +(11724, '妨'), +(11725, '妨'), +(11726, '妨'), +(11727, '忙'), +(11728, '忙'), +(11729, '忙'), +(11730, '乏'), +(11731, '乏'), +(11732, '乏'), +(11733, '乏'), +(11734, '某'), +(11735, '某'), +(11736, '某'), +(11737, '某'), +(11738, '房'), +(11739, '房'), +(11740, '房'), +(11741, '房'), +(11742, '肪'), +(11743, '肪'), +(11744, '傍'), +(11745, '傍'), +(11746, '傍'), +(11747, '傍'), +(11748, '冒'), +(11749, '冒'), +(11750, '冒'), +(11751, '冒'), +(11752, '墨'), +(11753, '墨'), +(11754, '墨'), +(11755, '墨'), +(11756, '膨'), +(11757, '膨'), +(11758, '膨'), +(11759, '剖'), +(11760, '剖'), +(11761, '剖'), +(11762, '紡'), +(11763, '紡'), +(11764, '紡'), +(11765, '紡'), +(11766, '崩'), +(11767, '崩'), +(11768, '崩'), +(11769, '褒'), +(11770, '褒'), +(11771, '褒'), +(11772, '撲'), +(11773, '撲'), +(11774, '撲'), +(11775, '帽'), +(11776, '帽'), +(11777, '帽'), +(11778, '帽'), +(11779, '没'), +(11780, '没'), +(11781, '没'), +(11782, '没'), +(11783, '没'), +(11784, '勃'), +(11785, '勃'), +(11786, '勃'), +(11787, '勃'), +(11788, '僕'), +(11789, '僕'), +(11790, '僕'), +(11791, '僕'), +(11792, '朴'), +(11793, '朴'), +(11794, '朴'), +(11795, '朴'), +(11796, '奔'), +(11797, '奔'), +(11798, '奔'), +(11799, '謀'), +(11800, '謀'), +(11801, '謀'), +(11802, '謀'), +(11803, '謀'), +(11804, '謀'), +(11805, '睦'), +(11806, '睦'), +(11807, '盆'), +(11808, '盆'), +(11809, '盆'), +(11810, '盆'), +(11811, '貌'), +(11812, '貌'), +(11813, '麻'), +(11814, '麻'), +(11815, '麻'), +(11816, '麻'), +(11817, '麻'), +(11818, '摩'), +(11819, '摩'), +(11820, '摩'), +(11821, '摩'), +(11822, '翻'), +(11823, '翻'), +(11824, '翻'), +(11825, '翻'), +(11826, '磨'), +(11827, '磨'), +(11828, '磨'), +(11829, '磨'), +(11830, '凡'), +(11831, '凡'), +(11832, '凡'), +(11833, '凡'), +(11834, '凡'), +(11835, '膜'), +(11836, '膜'), +(11837, '膜'), +(11838, '膜'), +(11839, '埋'), +(11840, '埋'), +(11841, '昧'), +(11842, '昧'), +(11843, '魔'), +(11844, '魔'), +(11845, '魔'), +(11846, '魔'), +(11847, '枕'), +(11848, '枕'), +(11849, '枕'), +(11850, '枕'), +(11851, '抹'), +(11852, '慢'), +(11853, '慢'), +(11854, '慢'), +(11855, '慢'), +(11856, '蜜'), +(11857, '蜜'), +(11858, '蜜'), +(11859, '蜜'), +(11860, '岬'), +(11861, '岬'), +(11862, '漫'), +(11863, '漫'), +(11864, '漫'), +(11865, '漫'), +(11866, '妙'), +(11867, '妙'), +(11868, '妙'), +(11869, '妙'), +(11870, '妙'), +(11871, '魅'), +(11872, '魅'), +(11873, '魅'), +(11874, '魅'), +(11875, '冥'), +(11876, '冥'), +(11877, '冥'), +(11878, '冥'), +(11879, '冥'), +(11880, '冥'), +(11881, '娘'), +(11882, '娘'), +(11883, '娘'), +(11884, '娘'), +(11885, '眠'), +(11886, '眠'), +(11887, '眠'), +(11888, '麺'), +(11889, '麺'), +(11890, '麺'), +(11891, '麺'), +(11892, '滅'), +(11893, '滅'), +(11894, '滅'), +(11895, '滅'), +(11896, '妄'), +(11897, '妄'), +(11898, '妄'), +(11899, '妄'), +(11900, '妄'), +(11901, '妄'), +(11902, '妄'), +(11903, '妄'), +(11904, '茂'), +(11905, '茂'), +(11906, '盲'), +(11907, '盲'), +(11908, '盲'), +(11909, '盲'), +(11910, '免'), +(11911, '免'), +(11912, '免'), +(11913, '免'), +(11914, '耗'), +(11915, '耗'), +(11916, '耗'), +(11917, '耗'), +(11918, '猛'), +(11919, '猛'), +(11920, '猛'), +(11921, '猛'), +(11922, '網'), +(11923, '網'), +(11924, '網'), +(11925, '網'), +(11926, '矛'), +(11927, '矛'), +(11928, '弥'), +(11929, '弥'), +(11930, '弥'), +(11931, '弥'), +(11932, '弥'), +(11933, '黙'), +(11934, '黙'), +(11935, '黙'), +(11936, '黙'), +(11937, '厄'), +(11938, '厄'), +(11939, '厄'), +(11940, '厄'), +(11941, '冶'), +(11942, '冶'), +(11943, '冶'), +(11944, '冶'), +(11945, '躍'), +(11946, '躍'), +(11947, '躍'), +(11948, '躍'), +(11949, '霧'), +(11950, '霧'), +(11951, '霧'), +(11952, '霧'), +(11953, '闇'), +(11954, '闇'), +(11955, '闇'), +(11956, '闇'), +(11957, '愉'), +(11958, '愉'), +(11959, '喩'), +(11960, '喩'), +(11961, '唯'), +(11962, '唯'), +(11963, '唯'), +(11964, '唯'), +(11965, '唯'), +(11966, '銘'), +(11967, '銘'), +(11968, '銘'), +(11969, '銘'), +(11970, '癒'), +(11971, '癒'), +(11972, '癒'), +(11973, '癒'), +(11974, '紋'), +(11975, '紋'), +(11976, '紋'), +(11977, '紋'), +(11978, '幽'), +(11979, '幽'), +(11980, '幽'), +(11981, '幽'), +(11982, '諭'), +(11983, '諭'), +(11984, '諭'), +(11985, '諭'), +(11986, '悠'), +(11987, '悠'), +(11988, '雄'), +(11989, '雄'), +(11990, '雄'), +(11991, '雄'), +(11992, '湧'), +(11993, '湧'), +(11994, '湧'), +(11995, '湧'), +(11996, '湧'), +(11997, '裕'), +(11998, '裕'), +(11999, '猶'), +(12000, '猶'), +(12001, '猶'), +(12002, '猶'), +(12003, '憂'), +(12004, '憂'), +(12005, '憂'), +(12006, '憂'), +(12007, '融'), +(12008, '融'), +(12009, '融'), +(12010, '融'), +(12011, '誉'), +(12012, '誉'), +(12013, '誉'), +(12014, '妖'), +(12015, '妖'), +(12016, '妖'), +(12017, '妖'), +(12018, '誘'), +(12019, '誘'), +(12020, '誘'), +(12021, '誘'), +(12022, '庸'), +(12023, '庸'), +(12024, '庸'), +(12025, '庸'), +(12026, '揚'), +(12027, '揚'), +(12028, '揚'), +(12029, '揚'), +(12030, '与'), +(12031, '与'), +(12032, '与'), +(12033, '与'), +(12034, '揺'), +(12035, '揺'), +(12036, '揺'), +(12037, '溶'), +(12038, '溶'), +(12039, '溶'), +(12040, '溶'), +(12041, '瘍'), +(12042, '瘍'), +(12043, '窯'), +(12044, '窯'), +(12045, '窯'), +(12046, '窯'), +(12047, '踊'), +(12048, '踊'), +(12049, '踊'), +(12050, '擁'), +(12051, '擁'), +(12052, '擁'), +(12053, '擁'), +(12054, '謡'), +(12055, '謡'), +(12056, '謡'), +(12057, '沃'), +(12058, '沃'), +(12059, '沃'), +(12060, '沃'), +(12061, '沃'), +(12062, '沃'), +(12063, '腰'), +(12064, '腰'), +(12065, '腰'), +(12066, '腰'), +(12067, '拉'), +(12068, '拉'), +(12069, '拉'), +(12070, '拉'), +(12071, '抑'), +(12072, '抑'), +(12073, '抑'), +(12074, '抑'), +(12075, '羅'), +(12076, '羅'), +(12077, '羅'), +(12078, '羅'), +(12079, '翼'), +(12080, '翼'), +(12081, '翼'), +(12082, '翼'), +(12083, '頼'), +(12084, '頼'), +(12085, '頼'), +(12086, '絡'), +(12087, '絡'), +(12088, '絡'), +(12089, '絡'), +(12090, '酪'), +(12091, '酪'), +(12092, '酪'), +(12093, '酪'), +(12094, '雷'), +(12095, '雷'), +(12096, '雷'), +(12097, '雷'), +(12098, '藍'), +(12099, '藍'), +(12100, '藍'), +(12101, '藍'), +(12102, '吏'), +(12103, '吏'), +(12104, '吏'), +(12105, '吏'), +(12106, '裸'), +(12107, '裸'), +(12108, '裸'), +(12109, '裸'), +(12110, '履'), +(12111, '履'), +(12112, '履'), +(12113, '履'), +(12114, '辣'), +(12115, '辣'), +(12116, '濫'), +(12117, '濫'), +(12118, '濫'), +(12119, '欄'), +(12120, '欄'), +(12121, '欄'), +(12122, '欄'), +(12123, '離'), +(12124, '離'), +(12125, '離'), +(12126, '離'), +(12127, '璃'), +(12128, '璃'), +(12129, '柳'), +(12130, '柳'), +(12131, '柳'), +(12132, '柳'), +(12133, '痢'), +(12134, '痢'), +(12135, '痢'), +(12136, '痢'), +(12137, '慄'), +(12138, '慄'), +(12139, '慄'), +(12140, '慄'), +(12141, '竜'), +(12142, '竜'), +(12143, '竜'), +(12144, '竜'), +(12145, '竜'), +(12146, '竜'), +(12147, '竜'), +(12148, '竜'), +(12149, '隆'), +(12150, '隆'), +(12151, '隆'), +(12152, '隆'), +(12153, '粒'), +(12154, '粒'), +(12155, '粒'), +(12156, '粒'), +(12157, '侶'), +(12158, '侶'), +(12159, '虜'), +(12160, '虜'), +(12161, '虜'), +(12162, '虜'), +(12163, '了'), +(12164, '了'), +(12165, '了'), +(12166, '了'), +(12167, '慮'), +(12168, '慮'), +(12169, '慮'), +(12170, '慮'), +(12171, '涼'), +(12172, '涼'), +(12173, '涼'), +(12174, '涼'), +(12175, '僚'), +(12176, '僚'), +(12177, '僚'), +(12178, '僚'), +(12179, '寮'), +(12180, '寮'), +(12181, '寮'), +(12182, '寮'), +(12183, '陵'), +(12184, '陵'), +(12185, '陵'), +(12186, '陵'), +(12187, '猟'), +(12188, '猟'), +(12189, '猟'), +(12190, '猟'), +(12191, '瞭'), +(12192, '瞭'), +(12193, '瞭'), +(12194, '療'), +(12195, '療'), +(12196, '療'), +(12197, '療'), +(12198, '糧'), +(12199, '糧'), +(12200, '糧'), +(12201, '糧'), +(12202, '糧'), +(12203, '厘'), +(12204, '厘'), +(12205, '厘'), +(12206, '厘'), +(12207, '倫'), +(12208, '倫'), +(12209, '倫'), +(12210, '倫'), +(12211, '瑠'), +(12212, '瑠'), +(12213, '涙'), +(12214, '涙'), +(12215, '涙'), +(12216, '涙'), +(12217, '戻'), +(12218, '戻'), +(12219, '戻'), +(12220, '零'), +(12221, '零'), +(12222, '零'), +(12223, '零'), +(12224, '隣'), +(12225, '隣'), +(12226, '隣'), +(12227, '隣'), +(12228, '励'), +(12229, '励'), +(12230, '励'), +(12231, '励'), +(12232, '累'), +(12233, '累'), +(12234, '累'), +(12235, '累'), +(12236, '鈴'), +(12237, '鈴'), +(12238, '鈴'), +(12239, '鈴'), +(12240, '鈴'), +(12241, '鈴'), +(12242, '塁'), +(12243, '塁'), +(12244, '塁'), +(12245, '塁'), +(12246, '霊'), +(12247, '霊'), +(12248, '霊'), +(12249, '霊'), +(12250, '霊'), +(12251, '霊'), +(12252, '霊'), +(12253, '霊'), +(12254, '隷'), +(12255, '隷'), +(12256, '隷'), +(12257, '隷'), +(12258, '麗'), +(12259, '麗'), +(12260, '麗'), +(12261, '麗'), +(12262, '齢'), +(12263, '齢'), +(12264, '齢'), +(12265, '暦'), +(12266, '暦'), +(12267, '暦'), +(12268, '暦'), +(12269, '暦'), +(12270, '暦'), +(12271, '暦'), +(12272, '暦'), +(12273, '裂'), +(12274, '裂'), +(12275, '裂'), +(12276, '裂'), +(12277, '籠'), +(12278, '籠'), +(12279, '籠'), +(12280, '籠'), +(12281, '劣'), +(12282, '劣'), +(12283, '劣'), +(12284, '劣'), +(12285, '恋'), +(12286, '恋'), +(12287, '恋'), +(12288, '恋'), +(12289, '廉'), +(12290, '廉'), +(12291, '廉'), +(12292, '廉'), +(12293, '麓'), +(12294, '麓'), +(12295, '錬'), +(12296, '錬'), +(12297, '錬'), +(12298, '錬'), +(12299, '烈'), +(12300, '烈'), +(12301, '烈'), +(12302, '烈'), +(12303, '呂'), +(12304, '呂'), +(12305, '呂'), +(12306, '呂'), +(12307, '呂'), +(12308, '呂'), +(12309, '呂'), +(12310, '呂'), +(12311, '郎'), +(12312, '郎'), +(12313, '郎'), +(12314, '郎'), +(12315, '露'), +(12316, '露'), +(12317, '露'), +(12318, '露'), +(12319, '露'), +(12320, '露'), +(12321, '炉'), +(12322, '炉'), +(12323, '炉'), +(12324, '炉'), +(12325, '廊'), +(12326, '廊'), +(12327, '廊'), +(12328, '廊'), +(12329, '弄'), +(12330, '弄'), +(12331, '弄'), +(12332, '弄'), +(12333, '硫'), +(12334, '硫'), +(12335, '硫'), +(12336, '硫'), +(12337, '賂'), +(12338, '漏'), +(12339, '漏'), +(12340, '漏'), +(12341, '漏'), +(12342, '楼'), +(12343, '楼'), +(12344, '楼'), +(12345, '楼'), +(12346, '脇'), +(12347, '脇'), +(12348, '惑'), +(12349, '惑'), +(12350, '惑'), +(12351, '惑'), +(12352, '浪'), +(12353, '浪'), +(12354, '浪'), +(12355, '浪'), +(12356, '腕'), +(12357, '腕'), +(12358, '腕'), +(12359, '腕'), +(12360, '賄'), +(12361, '賄'), +(12362, '賄'), +(12363, '湾'), +(12364, '湾'), +(12365, '湾'), +(12366, '湾'); + +INSERT OR IGNORE INTO Kanji_Kunyomi(yomi) VALUES +("つ.ぐ"), +("あわ.れ"), +("あわ.れむ"), +("かな.しい"), +("ひら.く"), +("くら.い"), +("にぎ.る"), +("あらし"), +("よ.る"), +("あつか.い"), +("あつか.う"), +("あつか.る"), +("こ.く"), +("あ.てる"), +("-あて"), +("-づつ"), +("あたか.も"), +("ため"), +("な.る"), +("な.す"), +("す.る"), +("たり"), +("つく.る"), +("なり"), +("おそ.れる"), +("かしこま.る"), +("かしこ"), +("かしこ.し"), +("な"), +("しお.れる"), +("しな.びる"), +("しぼ.む"), +("な.える"), +("はりねずみ"), +("ちが.う"), +("ちが.い"), +("ちが.える"), +("-ちが.える"), +("たが.う"), +("たが.える"), +("ひとつ"), +("おど.す"), +("おど.し"), +("おど.かす"), +("えら.い"), +("そ.れる"), +("そ.らす"), +("はぐ.れる"), +("むせ.ぶ"), +("むせ.る"), +("のど"), +("の.む"), +("よこいと"), +("ぬき"), +("いも"), +("ひた.す"), +("ほしいまま"), +("みだ.ら"), +("みだ.れる"), +("みだり"), +("かげ"), +("かげ.る"), +("なぐさ.める"), +("なぐさ.む"), +("うら.む"), +("うらみ"), +("うら.めしい"), +("うたげ"), +("するど.い"), +("けみ.する"), +("よろこ.ぶ"), +("よろこ.ばす"), +("けむ.る"), +("けむり"), +("けむ.い"), +("ほのお"), +("うら"), +("うっ.する"), +("ふさ.ぐ"), +("しげ.る"), +("よ.む"), +("うた.う"), +("さる"), +("こ.す"), +("-こ.す"), +("-ご.し"), +("こ.える"), +("-ご.え"), +("ふち"), +("ふち.どる"), +("ゆかり"), +("よすが"), +("へり"), +("えにし"), +("かく.す"), +("かく.し"), +("かく.れる"), +("よ.る"), +("かげ"), +("うた"), +("うた.う"), +("なまり"), +("つや"), +("なま.めかしい"), +("あで.やか"), +("つや.めく"), +("なま.めく"), +("くぼ.む"), +("へこ.む"), +("ぼこ"), +("せ"), +("うね"), +("うた.う"), +("は.く"), +("お.す"), +("お.し-"), +("お.っ-"), +("お.さえる"), +("おさ.える"), +("おく"), +("おく.まる"), +("くま"), +("なぐ.る"), +("けが.す"), +("けが.れる"), +("けが.らわしい"), +("よご.す"), +("よご.れる"), +("きたな.い"), +("かがや.き"), +("うつくし.い"), +("さかん"), +("おきな"), +("おと-"), +("きのと"), +("おそれ"), +("おもんぱか.る"), +("はか.る"), +("うれ.える"), +("あざむ.く"), +("あやま.る"), +("のぞ.む"), +("たの.しむ"), +("おれ"), +("われ"), +("おろ.す"), +("おろし"), +("おろ.し"), +("おだ.やか"), +("むね"), +("おくする"), +("か.ける"), +("か.かる"), +("くつ"), +("いじ.める"), +("さいな.む"), +("いらだ.つ"), +("からい"), +("こまかい"), +("か"), +("みや.び"), +("うず"), +("う.える"), +("はな"), +("ひま"), +("いとま"), +("きば"), +("は"), +("わざわい"), +("かせ.ぐ"), +("よめ"), +("とつ.ぐ"), +("い.く"), +("ゆ.く"), +("あや.しい"), +("あや.しむ"), +("かわら"), +("ぐらむ"), +("く.いる"), +("く.やむ"), +("くや.しい"), +("いまし.める"), +("かたまり"), +("つちくれ"), +("つぶ.す"), +("つぶ.れる"), +("つい.える"), +("こわ.す"), +("こわ.れる"), +("やぶ.る"), +("みな"), +("みんな"), +("かな.う"), +("やわ.らぐ"), +("ふところ"), +("なつ.かしい"), +("なつ.かしむ"), +("なつ.く"), +("なつ.ける"), +("なず.ける"), +("いだ.く"), +("おも.う"), +("はて"), +("かき"), +("たけ"), +("むくろ"), +("え.る"), +("くら.べる"), +("へだ.てる"), +("へだ.たる"), +("くるわ"), +("かき"), +("がけ"), +("きし"), +("はて"), +("おおむ.ね"), +("おど.す"), +("から"), +("がら"), +("ふた"), +("けだ.し"), +("おお.う"), +("かさ"), +("かこう"), +("なげ.く"), +("あせ"), +("か.つ"), +("かま"), +("か.る"), +("かわ.く"), +("あま.い"), +("あま.える"), +("あま.やかす"), +("うま.い"), +("かんむり"), +("きも"), +("くさび"), +("かま"), +("つづら"), +("くず"), +("あご"), +("あぎと"), +("か.ける"), +("-か.ける"), +("か.け"), +("-か.け"), +("-が.け"), +("か.かる"), +("-か.かる"), +("-が.かる"), +("か.かり"), +("-が.かり"), +("かかり"), +("-がかり"), +("すべ.る"), +("なめ.らか"), +("おちい.る"), +("おとしい.れる"), +("くく.る"), +("かま"), +("かわ.く"), +("かわ.かす"), +("ほ.す"), +("ひ.る"), +("いぬい"), +("つらぬ.く"), +("ぬ.く"), +("ぬき"), +("わめ.く"), +("か.える"), +("-か.える"), +("か.わる"), +("わずら.う"), +("た.える"), +("たま.る"), +("こら.える"), +("こた.える"), +("あ.えて"), +("あ.えない"), +("あ.えず"), +("すす.める"), +("くつろ.ぐ"), +("ひろ.い"), +("ゆる.やか"), +("よろこ.ぶ"), +("ゆる.い"), +("ゆる.やか"), +("ゆる.む"), +("ゆる.める"), +("うら.む"), +("かえ.る"), +("わ"), +("から"), +("いげた"), +("かんが.みる"), +("かがみ"), +("ふく.む"), +("ふく.める"), +("もちあそ.ぶ"), +("もてあそ.ぶ"), +("くわだ.てる"), +("たくら.む"), +("い.む"), +("い.み"), +("い.まわしい"), +("く.しき"), +("あや.しい"), +("くし"), +("めずら.しい"), +("わざ"), +("わざおぎ"), +("かたく.な"), +("いの.る"), +("みやこ"), +("す.てる"), +("う.える"), +("ご"), +("こぼ.つ"), +("こわ.す"), +("こぼ.れる"), +("こわ.れる"), +("そし.る"), +("やぶ.る"), +("かがや.く"), +("まが.い"), +("もど.き"), +("たわむ.れる"), +("ざ.れる"), +("じゃ.れる"), +("あざむ.く"), +("おに"), +("おに-"), +("いく-"), +("いく.つ"), +("いく.ら"), +("よろ.しい"), +("よろ.しく"), +("すで.に"), +("かめ"), +("いつわ.る"), +("にせ"), +("いつわ.り"), +("しいた.げる"), +("の.む"), +("おか"), +("きわ.める"), +("きわ.まる"), +("きわ.まり"), +("きわ.み"), +("あし"), +("かえ.って"), +("しりぞ.く"), +("しりぞ.ける"), +("く.ちる"), +("ただ.す"), +("よし"), +("むな.しい"), +("うつ.ろ"), +("つ.める"), +("つ.め"), +("-づ.め"), +("つ.まる"), +("つ.む"), +("か.ぐ"), +("へだ.たる"), +("けづめ"), +("いけにえ"), +("こば.む"), +("うす"), +("うすづ.く"), +("およ.ぶ"), +("およ.び"), +("および"), +("およ.ぼす"), +("おん-"), +("お-"), +("み-"), +("さけ.ぶ"), +("よ.る"), +("まし.て"), +("いわ.んや"), +("おもむき"), +("はざま"), +("う.ける"), +("おそ.れる"), +("おそ.る"), +("おそ.ろしい"), +("こわ.い"), +("こわ.がる"), +("せま.い"), +("せば.める"), +("せば.まる"), +("さ"), +("はさ.む"), +("はさ.まる"), +("わきばさ.む"), +("さしはさ.む"), +("くる.う"), +("くる.おしい"), +("くるお.しい"), +("おびや.かす"), +("おど.す"), +("おど.かす"), +("た.める"), +("おどろ.く"), +("おどろ.かす"), +("ひび.く"), +("うやうや.しい"), +("あかつき"), +("さと.る"), +("あお.ぐ"), +("おお.せ"), +("お.っしゃる"), +("おっしゃ.る"), +("こ.る"), +("こ.らす"), +("こご.らす"), +("こご.らせる"), +("こご.る"), +("おお.い"), +("ちきり"), +("きれ"), +("こと"), +("わず.か"), +("し.める"), +("し.まる"), +("ほ.る"), +("く.る"), +("くし"), +("つらぬ.く"), +("いさお"), +("いわや"), +("いはや"), +("あな"), +("か.ける"), +("か.る"), +("たま"), +("えり"), +("つつし.む"), +("すみ"), +("かお.る"), +("くき"), +("あ.う"), +("おそ.れる"), +("かが.む"), +("かが.める"), +("ちぎ.る"), +("おろ.か"), +("めぐ.む"), +("めぐ.み"), +("ひら.く"), +("さと.す"), +("にしき"), +("ほたる"), +("たに"), +("たにがわ"), +("かたむ.く"), +("かたむ.ける"), +("かたぶ.く"), +("かた.げる"), +("かし.げる"), +("つ.ぐ"), +("まま-"), +("かか.げる"), +("よろこ.び"), +("たずさ.える"), +("たずさ.わる"), +("かんが.える"), +("とど.める"), +("あこが.れる"), +("けい.する"), +("まい.る"), +("いた.る"), +("もう.でる"), +("たてまつ.る"), +("にわとり"), +("とり"), +("のき"), +("つか.う"), +("-つか.い"), +("-づか.い"), +("つか.わす"), +("や.る"), +("きら.う"), +("きら.い"), +("いや"), +("かた.い"), +("-がた.い"), +("すぐ.れる"), +("かしこ.い"), +("か.ねる"), +("-か.ねる"), +("かた"), +("う.つ"), +("くじら"), +("いこ.い"), +("いこ.う"), +("つるぎ"), +("こぶし"), +("つま.しい"), +("つづまやか"), +("すき"), +("す.く"), +("す.かす"), +("ひま"), +("むか.える"), +("かこ.い"), +("かぎ"), +("まゆ"), +("きぬ"), +("まぼろし"), +("けた"), +("へりくだ.る"), +("あきらか"), +("あらわ.れる"), +("か.ける"), +("か.かる"), +("くろ"), +("くろ.い"), +("つづみ"), +("ふさ.ぐ"), +("たが.い"), +("かたみ.に"), +("ふなばた"), +("ふなべり"), +("さと.る"), +("かぎ"), +("ま.がる"), +("また"), +("もも"), +("かえり.みる"), +("か.れる"), +("か.らす"), +("ほこ.る"), +("とら"), +("つる"), +("く.れる"), +("くれ"), +("みつ.ぐ"), +("かか.わる"), +("ひか.える"), +("ひか.え"), +("たく.み"), +("たく.む"), +("うま.い"), +("せ.める"), +("がえんじ.る"), +("のど"), +("あ.らす"), +("あ.れる"), +("あら.い"), +("すさ.ぶ"), +("すさ.む"), +("あ.らし"), +("きのえ"), +("つね"), +("つねに"), +("あらが.う"), +("さら"), +("さら.に"), +("ふ.ける"), +("ふ.かす"), +("え"), +("あな"), +("やと.う"), +("あわ.てる"), +("あわ.ただしい"), +("ふさぐ"), +("やまにれ"), +("おおむね"), +("しぼ.る"), +("し.める"), +("し.まる"), +("うなじ"), +("みぞ"), +("かた.い"), +("つな"), +("わら"), +("したがき"), +("おご.る"), +("あなど.る"), +("こ.う"), +("か.つ"), +("-こ.む"), +("こ.む"), +("こ.み"), +("-こ.み"), +("こ.める"), +("えら.い"), +("こま"), +("ひど.い"), +("ころ"), +("ごろ"), +("しばら.く"), +("あと"), +("たましい"), +("たま"), +("は.る"), +("ひら.く"), +("うら.む"), +("うら.めしい"), +("ねんご.ろ"), +("そそ.る"), +("そそのか.す"), +("すな"), +("よなげる"), +("くじ.く"), +("くじ.ける"), +("くさり"), +("とざ.す"), +("くだ.く"), +("くだ.ける"), +("いつわ.る"), +("と.る"), +("いろどり"), +("いろど.る"), +("とき"), +("つつし.む"), +("ものいみ"), +("い.む"), +("いわ.う"), +("いつ.く"), +("もよう.す"), +("もよお.す"), +("ふさ.ぐ"), +("とりで"), +("み.ちる"), +("とし"), +("とせ"), +("よわい"), +("の.せる"), +("の.る"), +("かる"), +("けず.る"), +("しがら.む"), +("しがらみ"), +("とりで"), +("やらい"), +("す"), +("しぼ.る"), +("けず.る"), +("はつ.る"), +("そ.ぐ"), +("ほしいまま"), +("せま.る"), +("みじ.め"), +("いた.む"), +("むご.い"), +("と.る"), +("つま.む"), +("-ど.り"), +("す.る"), +("す.れる"), +("-ず.れ"), +("こす.る"), +("こす.れる"), +("かけはし"), +("あぶら"), +("さ.す"), +("さ.さる"), +("さ.し"), +("さし"), +("とげ"), +("むね"), +("うま.い"), +("さ.く"), +("-ざき"), +("しばら.く"), +("かさ"), +("むらさき"), +("うかが.う"), +("ほどこ.す"), +("いた.る"), +("き.る"), +("め-"), +("めす"), +("めん"), +("そね.む"), +("ねた.む"), +("にく.む"), +("たまわ.る"), +("たま.う"), +("たも.う"), +("はや.い"), +("え"), +("えば"), +("えさ"), +("もち"), +("と.る"), +("さむらい"), +("はべ.る"), +("いつく.しむ"), +("しば"), +("うるし"), +("はか.る"), +("しめ.る"), +("しめ.す"), +("うるお.う"), +("うるお.す"), +("なな.め"), +("はす"), +("よこし.ま"), +("に.る"), +("-に"), +("に.える"), +("に.やす"), +("へび"), +("く.む"), +("とく"), +("す.てる"), +("ゆる.す"), +("あけ"), +("か.る"), +("か.り"), +("-が.り"), +("こと"), +("さえぎ.る"), +("は.れる"), +("は.れ"), +("は.らす"), +("はれもの"), +("さび"), +("さび.しい"), +("さび.れる"), +("さみ.しい"), +("まじな.う"), +("のろ.い"), +("まじな.い"), +("のろ.う"), +("ことぶき"), +("ことぶ.く"), +("ことほ.ぐ"), +("おもむき"), +("おもむ.く"), +("とら.われる"), +("ふね"), +("ふな-"), +("-ぶね"), +("たま"), +("くさ.い"), +("-くさ.い"), +("にお.う"), +("にお.い"), +("ひい.でる"), +("はじ.る"), +("すすめ.る"), +("は.ずかしい"), +("うれ.える"), +("うれ.い"), +("むく.いる"), +("そで"), +("みにく.い"), +("しこ"), +("け.る"), +("おそ.う"), +("かさ.ね"), +("あ.てる"), +("み.たす"), +("しぶ"), +("しぶ.い"), +("しぶ.る"), +("しる"), +("-しる"), +("つゆ"), +("けもの"), +("けだもの"), +("つつ"), +("やわ.らか"), +("やわ.らかい"), +("やわ"), +("やわ.ら"), +("しと.やか"), +("ます"), +("つつし.む"), +("うるお.う"), +("うるお.す"), +("うる.む"), +("おもむ.ろに"), +("お"), +("いとぐち"), +("め.す"), +("つい.ず"), +("ついで"), +("たて"), +("とこ"), +("ゆか"), +("めぐ.る"), +("めぐ.り"), +("またた.く"), +("まじろ.ぐ"), +("たくみ"), +("あやか.る"), +("ごと.し"), +("のぼ.る"), +("よい"), +("なお"), +("ぬま"), +("さいわ.い"), +("きざ.し"), +("よ.い"), +("つまび.らか"), +("わた.る"), +("たた.える"), +("とな.える"), +("あ.げる"), +("かな.う"), +("はか.り"), +("はか.る"), +("ほめ.る"), +("てのひら"), +("たなごころ"), +("こ.げる"), +("こ.がす"), +("こ.がれる"), +("あせ.る"), +("じ.れる"), +("じ.らす"), +("すす.める"), +("くわ.しい"), +("つまび.らか"), +("つ.く"), +("みことのり"), +("つぐな.う"), +("あまつさえ"), +("あま.り"), +("あま.る"), +("つち"), +("あこが.れる"), +("たけ"), +("だけ"), +("きよ.める"), +("きよ.い"), +("たた.む"), +("たたみ"), +("かさ.なる"), +("かも.す"), +("かね"), +("ぬぐ.う"), +("ふ.く"), +("むすめ"), +("ふ.える"), +("ふ.やす"), +("しょく.する"), +("たの.む"), +("かざ.る"), +("かざ.り"), +("はずかし.める"), +("ふ.れる"), +("さわ.る"), +("さわ"), +("の.びる"), +("の.ばす"), +("の.べる"), +("の.す"), +("おか.す"), +("から.い"), +("つら.い"), +("-づら.い"), +("かのと"), +("くちびる"), +("つ"), +("しり"), +("ふ.る"), +("ふ.れる"), +("ふ.るう"), +("ひた.す"), +("ひた.る"), +("つ.かる"), +("ゆず.る"), +("た.く"), +("-だ.き"), +("よ.う"), +("よ.い"), +("よ"), +("ね.る"), +("ね.かす"), +("い.ぬ"), +("みたまや"), +("や.める"), +("ふ.く"), +("は"), +("やいば"), +("き.る"), +("すべから.く"), +("すべし"), +("ひげ"), +("まつ"), +("もち.いる"), +("もと.める"), +("いき"), +("と.げる"), +("つい.に"), +("おとろ.える"), +("たず.ねる"), +("ひろ"), +("たきぎ"), +("まき"), +("はなは.だ"), +("はなは.だしい"), +("つ.きる"), +("つ.くす"), +("つ.かす"), +("-づ.く"), +("-ず.く"), +("ことごと.く"), +("ふる.う"), +("ふる.える"), +("ふる.わせる"), +("ふる.わす"), +("ねむ.る"), +("ねむ.い"), +("ほ"), +("つつし.む"), +("つつ.ましい"), +("つつし"), +("つつし.み"), +("み.る"), +("あが.める"), +("まにま.に"), +("したが.う"), +("つまび.らか"), +("つぶさ.に"), +("すそ"), +("すぎ"), +("す.える"), +("す.わる"), +("せ"), +("これ"), +("この"), +("ここ"), +("さむ.い"), +("すご.い"), +("すさ.まじい"), +("そろ.う"), +("ひと.しい"), +("ひと.しく"), +("あたる"), +("はやい"), +("ゆ.く"), +("い.く"), +("むこ"), +("こ.う"), +("う.ける"), +("とぼそ"), +("からくり"), +("さ.ます"), +("さ.める"), +("しりぞ.ける"), +("いた.む"), +("うれ.える"), +("みうち"), +("せ"), +("せい"), +("あと"), +("お.しい"), +("お.しむ"), +("ちか.う"), +("ぬす.む"), +("ひそ.か"), +("おさ.める"), +("かね.る"), +("と.る"), +("おうぎ"), +("つたな.い"), +("し.める"), +("うらな.う"), +("め.ぐる"), +("いばり"), +("うらや.む"), +("あまり"), +("せん.じる"), +("い.る"), +("に.る"), +("うつ.る"), +("うつ.す"), +("みやこがえ"), +("せん.ずる"), +("かい"), +("あき.らか"), +("しずか"), +("ゆず.る"), +("はば.む"), +("うと.い"), +("うと.む"), +("まば.ら"), +("ようや.く"), +("やや"), +("ようよ.う"), +("すす.む"), +("あら.い"), +("あら-"), +("つくろ.う"), +("ねら.う"), +("ねら.い"), +("ふ.む"), +("すす.める"), +("お.く"), +("かしわ"), +("すす.める"), +("そな.える"), +("あざ.やか"), +("ふだ"), +("ひそ.む"), +("もぐ.る"), +("かく.れる"), +("くぐ.る"), +("ひそ.める"), +("さかのぼ.る"), +("は.く"), +("あき.らか"), +("さわ.やか"), +("たがう"), +("でく"), +("くわ"), +("さ.す"), +("はさ.む"), +("あ.う"), +("あ.わせる"), +("かつ"), +("かつて"), +("すなわち"), +("さかん"), +("うった.える"), +("さが.す"), +("ほうき"), +("おごそ.か"), +("ほうむ.る"), +("いしずえ"), +("も"), +("ふた"), +("たぐい"), +("ならぶ"), +("ふたつ"), +("や.せる"), +("あと"), +("ふね"), +("おご.る"), +("にご.る"), +("よな.げる"), +("はしゃ.ぐ"), +("うなが.す"), +("おく.る"), +("したが.う"), +("へりくだ.る"), +("ゆず.る"), +("にく.む"), +("にく.い"), +("にく.らしい"), +("にく.しみ"), +("た.える"), +("さわ.ぐ"), +("うれい"), +("さわ.がしい"), +("しも"), +("とら.える"), +("おこた.る"), +("なま.ける"), +("も"), +("お.ちる"), +("くず.す"), +("くず.れる"), +("つ.く"), +("つ.ける"), +("すなわ.ち"), +("うずたか.い"), +("ふくろ"), +("か.える"), +("か.え-"), +("か.わる"), +("つば"), +("つばき"), +("とどこお.る"), +("えら.ぶ"), +("たき"), +("いただ.く"), +("きも"), +("あき.らか"), +("あきら"), +("ただし"), +("あさ"), +("あした"), +("かこつ.ける"), +("かこ.つ"), +("かこ.つける"), +("ほころ.びる"), +("だれ"), +("たれ"), +("た"), +("ひら.く"), +("すす.ぐ"), +("ゆす.ぐ"), +("ぬ.ぐ"), +("ぬ.げる"), +("なげ.く"), +("なげ.かわしい"), +("さわ"), +("うるお.い"), +("うるお.す"), +("つや"), +("はし"), +("は"), +("はた"), +("-ばた"), +("はな"), +("たな"), +("-だな"), +("ひ.く"), +("-ひ.き"), +("はず.む"), +("たま"), +("はじ.く"), +("はじ.ける"), +("ただ.す"), +("はじ.きゆみ"), +("うば.う"), +("は.じる"), +("はじ"), +("は.じらう"), +("は.ずかしい"), +("に"), +("きた.える"), +("ただ.し"), +("いとけない"), +("おさない"), +("おくて"), +("おでる"), +("あわ.い"), +("し.れる"), +("おろか"), +("こまか.い"), +("おく.れる"), +("おく.らす"), +("おそ.い"), +("いた.す"), +("にご.る"), +("にご.す"), +("たくわ.える"), +("なが.める"), +("とむら.う"), +("とぶら.う"), +("き.く"), +("ゆる.す"), +("いど.む"), +("は.ねる"), +("と.ぶ"), +("-と.び"), +("かも.す"), +("い.る"), +("いまし.める"), +("みことのり"), +("す.む"), +("す.ます"), +("-す.ます"), +("ほ.る"), +("-ぼ.り"), +("しるし"), +("あざけ.る"), +("つ.る"), +("つ.り"), +("つ.り-"), +("ひき-"), +("しず.む"), +("しず.める"), +("は.る"), +("つ.く"), +("こ.りる"), +("こ.らす"), +("こ.らしめる"), +("こ.える"), +("こ.す"), +("しず.める"), +("しず.まる"), +("おさえ"), +("めずら.しい"), +("たから"), +("つか"), +("-づか"), +("お.ちる"), +("お.つ"), +("つぼ"), +("はかど.る"), +("つち"), +("う.つ"), +("つめ"), +("つま-"), +("つ.ける"), +("つ.かる"), +("-づ.け"), +("-づけ"), +("ひ.ねる"), +("つる"), +("やしき"), +("ただし.い"), +("さだ"), +("かわ.る"), +("たがいに"), +("みかど"), +("つつみ"), +("ただ.す"), +("あきら.める"), +("つまびらか"), +("まこと"), +("し.まる"), +("し.まり"), +("し.める"), +("-し.め"), +("-じ.め"), +("つ.む"), +("いばり"), +("おぼ.れる"), +("しずく"), +("したた.る"), +("から"), +("さとい"), +("あきらか"), +("そ.える"), +("そ.う"), +("いか.る"), +("おこ.る"), +("こお.る"), +("こご.える"), +("こご.る"), +("い.てる"), +("し.みる"), +("たお.れる"), +("-だお.れ"), +("たお.す"), +("さかさま"), +("さかさ"), +("さかしま"), +("もも"), +("みち"), +("わた.る"), +("-わた.る"), +("わた.す"), +("す.く"), +("す.かす"), +("す.ける"), +("とう.る"), +("とう.す"), +("すえ"), +("いた.る"), +("ねた.む"), +("そね.む"), +("つも.る"), +("ふさ.ぐ"), +("ぬす.む"), +("ぬす.み"), +("はま.る"), +("うず.める"), +("は.める"), +("ふさ.ぐ"), +("やつ"), +("やっこ"), +("は.く"), +("つ.く"), +("に.げる"), +("に.がす"), +("のが.す"), +("のが.れる"), +("ぬ.る"), +("ぬ.り"), +("まみ.れる"), +("どろ"), +("なず.む"), +("との"), +("-どの"), +("か.ける"), +("かけ"), +("いた.む"), +("ふ.む"), +("ふ.まえる"), +("むね"), +("むな-"), +("つつ"), +("いね"), +("いな-"), +("なに"), +("なんぞ"), +("いかん"), +("あつ.い"), +("くも.る"), +("どんぶり"), +("なぞ"), +("ぶた"), +("つ.く"), +("かくま.う"), +("にわか.に"), +("とん.と"), +("つまず.く"), +("とみ.に"), +("ぬかずく"), +("たむろ"), +("にぶ.い"), +("にぶ.る"), +("にぶ-"), +("なま.る"), +("なまく.ら"), +("ふじ"), +("とうげ"), +("むさぼ.る"), +("なべ"), +("でこ"), +("ひとみ"), +("あが.る"), +("のぼ.る"), +("あま"), +("ふた.つ"), +("そえ"), +("たたか.う"), +("あらそ.う"), +("にじ"), +("やわ.らか"), +("やわ.らかい"), +("ほら"), +("ゆばり"), +("いばり"), +("しと"), +("はら.む"), +("みごも.る"), +("にお.う"), +("にお.い"), +("にお.わせる"), +("しの.ぶ"), +("しの.ばせる"), +("むし.ろ"), +("ねば.る"), +("こ.い"), +("ね.じる"), +("ねじ.る"), +("ひね.くる"), +("ひね.る"), +("なや.む"), +("なや.ます"), +("なや.ましい"), +("なやみ"), +("はたがしら"), +("しば.る"), +("ばば"), +("ばあ"), +("すた.れる"), +("すた.る"), +("つちか.う"), +("うす.い"), +("うす-"), +("-うす"), +("うす.める"), +("うす.まる"), +("うす.らぐ"), +("うす.ら-"), +("うす.れる"), +("すすき"), +("-ばら"), +("やから"), +("やかい"), +("ともがら"), +("せま.る"), +("はぐ"), +("むく"), +("はげる"), +("なこうど"), +("と.まる"), +("と.める"), +("さかずき"), +("ののし.る"), +("は.ぜる"), +("はし"), +("かみ"), +("ぬ.く"), +("-ぬ.く"), +("ぬ.き"), +("ぬ.ける"), +("ぬ.かす"), +("ぬ.かる"), +("ひろ.がる"), +("き.る"), +("そむ.く"), +("う.つ"), +("はだ"), +("ばっ.する"), +("ほ"), +("あぜ"), +("くろ"), +("ほとり"), +("ともな.う"), +("ただよ.う"), +("ひろ.い"), +("ふ"), +("まだら"), +("わ.かつ"), +("わ.ける"), +("わずら.う"), +("わずら.わす"), +("うるさ.がる"), +("うるさ.い"), +("えびす"), +("きさき"), +("しげ.る"), +("しげ.く"), +("つか.れる"), +("-づか.れ"), +("つか.らす"), +("いや.しい"), +("いや.しむ"), +("いや.しめる"), +("かれ"), +("かの"), +("か.の"), +("こうむ.る"), +("おお.う"), +("かぶ.る"), +("かぶ.せる"), +("とびら"), +("いしぶみ"), +("まか.り-"), +("や.める"), +("さ.ける"), +("よ.ける"), +("お"), +("たす.ける"), +("まゆ"), +("ひじ"), +("ひめ"), +("ひめ-"), +("えが.く"), +("か.く"), +("ただよ.う"), +("こわ.い"), +("こわ.がる"), +("お.じる"), +("おそ.れる"), +("はま"), +("ひき"), +("かめ"), +("へい"), +("つ.ける"), +("つ.く"), +("なえ"), +("なわ-"), +("ねこ"), +("しき.りに"), +("おもむ.く"), +("かす.か"), +("う.く"), +("う.かれる"), +("う.かぶ"), +("う.かべる"), +("さとい"), +("しらせ"), +("ひざ"), +("くさ.る"), +("-くさ.る"), +("くさ.れる"), +("くさ.れ"), +("くさ.らす"), +("くさ.す"), +("はだ"), +("し.く"), +("-し.き"), +("ま.う"), +("-ま.う"), +("まい"), +("ふ.せる"), +("ふ.す"), +("わ.く"), +("わ.かす"), +("ふ.く"), +("いきどお.る"), +("がら"), +("え"), +("つか"), +("あわ.せる"), +("はら.う"), +("-はら.い"), +("-ばら.い"), +("はば"), +("あまね.く"), +("あまねし"), +("まぎ.れる"), +("-まぎ.れ"), +("まぎ.らす"), +("まぎ.らわす"), +("まぎ.らわしい"), +("あなど.る"), +("あなず.る"), +("おお.う"), +("くつがえ.す"), +("くつがえ.る"), +("ひのえ"), +("ぬさ"), +("おお.う"), +("おお.い"), +("たま"), +("かべ"), +("くせ"), +("くせ.に"), +("かたよ.る"), +("ないがしろ"), +("なみ.する"), +("くらい"), +("さげす.む"), +("あまね.く"), +("もち"), +("もちい"), +("はぐく.む"), +("ふく.む"), +("と.らえる"), +("と.らわれる"), +("と.る"), +("とら.える"), +("とら.われる"), +("つか.まえる"), +("つか.まる"), +("つの.る"), +("かんば.しい"), +("たてまつ.る"), +("まつ.る"), +("ほう.ずる"), +("くに"), +("した.う"), +("だ.く"), +("いだ.く"), +("かか.える"), +("なら.う"), +("あわ"), +("はち"), +("みね"), +("ね"), +("ぬ.う"), +("あ.きる"), +("あ.かす"), +("あ.く"), +("さまた.げる"), +("いそが.しい"), +("せわ.しい"), +("おそ.れる"), +("うれえるさま"), +("とぼ.しい"), +("とも.しい"), +("それがし"), +("なにがし"), +("ふさ"), +("かたわ.ら"), +("わき"), +("おか-"), +("はた"), +("そば"), +("おか.す"), +("すみ"), +("ふく.らむ"), +("ふく.れる"), +("つむ.ぐ"), +("くず.れる"), +("-くず.れ"), +("くず.す"), +("ほ.める"), +("ずきん"), +("おお.う"), +("おぼ.れる"), +("しず.む"), +("ない"), +("ほお"), +("ほほ"), +("おこ.る"), +("にわかに"), +("しもべ"), +("ほり"), +("ほう"), +("ほお"), +("えのき"), +("はし.る"), +("はか.る"), +("たばか.る"), +("はかりごと"), +("むつ.まじい"), +("むつ.む"), +("むつ.ぶ"), +("かたち"), +("かたどる"), +("あさ"), +("ま.する"), +("さす.る"), +("す.る"), +("ひるがえ.る"), +("ひるがえ.す"), +("みが.く"), +("す.る"), +("およ.そ"), +("おうよ.そ"), +("すべ.て"), +("う.める"), +("う.まる"), +("う.もれる"), +("うず.める"), +("うず.まる"), +("い.ける"), +("くら.い"), +("むさぼ.る"), +("まくら"), +("また"), +("また-"), +("また.の-"), +("みさき"), +("みだり.に"), +("そぞ.ろ"), +("たえ"), +("くら.い"), +("むすめ"), +("こ"), +("ねむ.る"), +("ねむ.い"), +("むぎこ"), +("ほろ.びる"), +("ほろ.ぶ"), +("ほろ.ぼす"), +("みだ.りに"), +("しげ.る"), +("めくら"), +("まぬか.れる"), +("まぬが.れる"), +("あみ"), +("ほこ"), +("や"), +("いや"), +("いよ.いよ"), +("わた.る"), +("だま.る"), +("もだ.す"), +("い.る"), +("おど.る"), +("きり"), +("やみ"), +("くら.い"), +("たの.しい"), +("たの.しむ"), +("たと.える"), +("さと.す"), +("ただ"), +("い.える"), +("いや.す"), +("い.やす"), +("ふか.い"), +("かす.か"), +("くら.い"), +("しろ.い"), +("さと.す"), +("お-"), +("おす"), +("おん"), +("わ.く"), +("なお"), +("うれ.える"), +("うれ.い"), +("う.い"), +("う.き"), +("と.ける"), +("と.かす"), +("ほま.れ"), +("ほ.める"), +("あや.しい"), +("なま.めく"), +("わざわ.い"), +("さそ.う"), +("いざな.う"), +("あ.げる"), +("-あ.げ"), +("あ.がる"), +("あた.える"), +("あずか.る"), +("くみ.する"), +("ともに"), +("ゆ.れる"), +("ゆ.る"), +("ゆ.らぐ"), +("ゆ.るぐ"), +("ゆ.する"), +("ゆ.さぶる"), +("ゆ.すぶる"), +("うご.く"), +("と.ける"), +("と.かす"), +("と.く"), +("かさ"), +("かま"), +("おど.る"), +("うた.い"), +("うた.う"), +("そそ.ぐ"), +("こし"), +("らっ.する"), +("ひし.ぐ"), +("くだ.く"), +("おさ.える"), +("うすもの"), +("つばさ"), +("たの.む"), +("たの.もしい"), +("たよ.る"), +("から.む"), +("から.まる"), +("かみなり"), +("いかずち"), +("いかづち"), +("あい"), +("はだか"), +("は.く"), +("から.い"), +("みだ.りに"), +("みだ.りがましい"), +("てすり"), +("はな.れる"), +("はな.す"), +("やなぎ"), +("ふる.える"), +("おそ.れる"), +("おのの.く"), +("たつ"), +("いせ"), +("つぶ"), +("とも"), +("とりこ"), +("とりく"), +("おもんぱく.る"), +("おもんぱか.る"), +("すず.しい"), +("すず.む"), +("すず.やか"), +("うす.い"), +("ひや.す"), +("まことに"), +("みささぎ"), +("かり"), +("か.る"), +("あきらか"), +("かて"), +("なみだ"), +("もど.す"), +("もど.る"), +("ぜろ"), +("こぼ.す"), +("こぼ.れる"), +("とな.る"), +("となり"), +("はげ.む"), +("はげ.ます"), +("すず"), +("とりで"), +("たま"), +("したが.う"), +("しもべ"), +("うるわ.しい"), +("うら.らか"), +("よわい"), +("とし"), +("こよみ"), +("さ.く"), +("さ.ける"), +("-ぎ.れ"), +("かご"), +("こ.める"), +("こも.る"), +("こ.む"), +("おと.る"), +("こ.う"), +("こい"), +("こい.しい"), +("ふもと"), +("ね.る"), +("はげ.しい"), +("せぼね"), +("おとこ"), +("つゆ"), +("いろり"), +("いじく.る"), +("ろう.する"), +("いじ.る"), +("ひねく.る"), +("たわむ.れる"), +("もてあそ.ぶ"), +("まいな.い"), +("まいな.う"), +("も.る"), +("も.れる"), +("も.らす"), +("たかどの"), +("わき"), +("わけ"), +("まど.う"), +("わく"), +("うで"), +("まかな.う"), +("いりえ"); + +INSERT INTO Kanji_ResultKunyomi_XRef(kanji, yomi) VALUES +('亜', 'つ.ぐ'), +('哀', 'あわ.れ'), +('哀', 'あわ.れむ'), +('哀', 'かな.しい'), +('挨', 'ひら.く'), +('曖', 'くら.い'), +('握', 'にぎ.る'), +('嵐', 'あらし'), +('依', 'よ.る'), +('扱', 'あつか.い'), +('扱', 'あつか.う'), +('扱', 'あつか.る'), +('扱', 'こ.く'), +('宛', 'あ.てる'), +('宛', '-あて'), +('宛', '-づつ'), +('宛', 'あたか.も'), +('為', 'ため'), +('為', 'な.る'), +('為', 'な.す'), +('為', 'す.る'), +('為', 'たり'), +('為', 'つく.る'), +('為', 'なり'), +('畏', 'おそ.れる'), +('畏', 'かしこま.る'), +('畏', 'かしこ'), +('畏', 'かしこ.し'), +('萎', 'な'), +('萎', 'しお.れる'), +('萎', 'しな.びる'), +('萎', 'しぼ.む'), +('萎', 'な.える'), +('彙', 'はりねずみ'), +('違', 'ちが.う'), +('違', 'ちが.い'), +('違', 'ちが.える'), +('違', '-ちが.える'), +('違', 'たが.う'), +('違', 'たが.える'), +('壱', 'ひとつ'), +('威', 'おど.す'), +('威', 'おど.し'), +('威', 'おど.かす'), +('偉', 'えら.い'), +('逸', 'そ.れる'), +('逸', 'そ.らす'), +('逸', 'はぐ.れる'), +('咽', 'むせ.ぶ'), +('咽', 'むせ.る'), +('咽', 'のど'), +('咽', 'の.む'), +('緯', 'よこいと'), +('緯', 'ぬき'), +('芋', 'いも'), +('淫', 'ひた.す'), +('淫', 'ほしいまま'), +('淫', 'みだ.ら'), +('淫', 'みだ.れる'), +('淫', 'みだり'), +('陰', 'かげ'), +('陰', 'かげ.る'), +('慰', 'なぐさ.める'), +('慰', 'なぐさ.む'), +('怨', 'うら.む'), +('怨', 'うらみ'), +('怨', 'うら.めしい'), +('宴', 'うたげ'), +('鋭', 'するど.い'), +('閲', 'けみ.する'), +('悦', 'よろこ.ぶ'), +('悦', 'よろこ.ばす'), +('煙', 'けむ.る'), +('煙', 'けむり'), +('煙', 'けむ.い'), +('炎', 'ほのお'), +('浦', 'うら'), +('鬱', 'うっ.する'), +('鬱', 'ふさ.ぐ'), +('鬱', 'しげ.る'), +('詠', 'よ.む'), +('詠', 'うた.う'), +('猿', 'さる'), +('越', 'こ.す'), +('越', '-こ.す'), +('越', '-ご.し'), +('越', 'こ.える'), +('越', '-ご.え'), +('縁', 'ふち'), +('縁', 'ふち.どる'), +('縁', 'ゆかり'), +('縁', 'よすが'), +('縁', 'へり'), +('縁', 'えにし'), +('隠', 'かく.す'), +('隠', 'かく.し'), +('隠', 'かく.れる'), +('隠', 'よ.る'), +('影', 'かげ'), +('唄', 'うた'), +('唄', 'うた.う'), +('鉛', 'なまり'), +('艶', 'つや'), +('艶', 'なま.めかしい'), +('艶', 'あで.やか'), +('艶', 'つや.めく'), +('艶', 'なま.めく'), +('凹', 'くぼ.む'), +('凹', 'へこ.む'), +('凹', 'ぼこ'), +('畝', 'せ'), +('畝', 'うね'), +('欧', 'うた.う'), +('欧', 'は.く'), +('押', 'お.す'), +('押', 'お.し-'), +('押', 'お.っ-'), +('押', 'お.さえる'), +('押', 'おさ.える'), +('奥', 'おく'), +('奥', 'おく.まる'), +('奥', 'くま'), +('殴', 'なぐ.る'), +('汚', 'けが.す'), +('汚', 'けが.れる'), +('汚', 'けが.らわしい'), +('汚', 'よご.す'), +('汚', 'よご.れる'), +('汚', 'きたな.い'), +('旺', 'かがや.き'), +('旺', 'うつくし.い'), +('旺', 'さかん'), +('翁', 'おきな'), +('乙', 'おと-'), +('乙', 'きのと'), +('虞', 'おそれ'), +('虞', 'おもんぱか.る'), +('虞', 'はか.る'), +('虞', 'うれ.える'), +('虞', 'あざむ.く'), +('虞', 'あやま.る'), +('虞', 'のぞ.む'), +('虞', 'たの.しむ'), +('俺', 'おれ'), +('俺', 'われ'), +('卸', 'おろ.す'), +('卸', 'おろし'), +('卸', 'おろ.し'), +('穏', 'おだ.やか'), +('臆', 'むね'), +('臆', 'おくする'), +('架', 'か.ける'), +('架', 'か.かる'), +('靴', 'くつ'), +('苛', 'いじ.める'), +('苛', 'さいな.む'), +('苛', 'いらだ.つ'), +('苛', 'からい'), +('苛', 'こまかい'), +('蚊', 'か'), +('雅', 'みや.び'), +('渦', 'うず'), +('餓', 'う.える'), +('華', 'はな'), +('暇', 'ひま'), +('暇', 'いとま'), +('牙', 'きば'), +('牙', 'は'), +('禍', 'わざわい'), +('稼', 'かせ.ぐ'), +('嫁', 'よめ'), +('嫁', 'とつ.ぐ'), +('嫁', 'い.く'), +('嫁', 'ゆ.く'), +('怪', 'あや.しい'), +('怪', 'あや.しむ'), +('瓦', 'かわら'), +('瓦', 'ぐらむ'), +('悔', 'く.いる'), +('悔', 'く.やむ'), +('悔', 'くや.しい'), +('戒', 'いまし.める'), +('塊', 'かたまり'), +('塊', 'つちくれ'), +('潰', 'つぶ.す'), +('潰', 'つぶ.れる'), +('潰', 'つい.える'), +('壊', 'こわ.す'), +('壊', 'こわ.れる'), +('壊', 'やぶ.る'), +('皆', 'みな'), +('皆', 'みんな'), +('諧', 'かな.う'), +('諧', 'やわ.らぐ'), +('懐', 'ふところ'), +('懐', 'なつ.かしい'), +('懐', 'なつ.かしむ'), +('懐', 'なつ.く'), +('懐', 'なつ.ける'), +('懐', 'なず.ける'), +('懐', 'いだ.く'), +('懐', 'おも.う'), +('涯', 'はて'), +('柿', 'かき'), +('岳', 'たけ'), +('骸', 'むくろ'), +('獲', 'え.る'), +('較', 'くら.べる'), +('隔', 'へだ.てる'), +('隔', 'へだ.たる'), +('郭', 'くるわ'), +('垣', 'かき'), +('崖', 'がけ'), +('崖', 'きし'), +('崖', 'はて'), +('概', 'おおむ.ね'), +('嚇', 'おど.す'), +('殻', 'から'), +('殻', 'がら'), +('蓋', 'ふた'), +('蓋', 'けだ.し'), +('蓋', 'おお.う'), +('蓋', 'かさ'), +('蓋', 'かこう'), +('慨', 'なげ.く'), +('汗', 'あせ'), +('且', 'か.つ'), +('釜', 'かま'), +('刈', 'か.る'), +('渇', 'かわ.く'), +('甘', 'あま.い'), +('甘', 'あま.える'), +('甘', 'あま.やかす'), +('甘', 'うま.い'), +('冠', 'かんむり'), +('肝', 'きも'), +('轄', 'くさび'), +('鎌', 'かま'), +('葛', 'つづら'), +('葛', 'くず'), +('顎', 'あご'), +('顎', 'あぎと'), +('掛', 'か.ける'), +('掛', '-か.ける'), +('掛', 'か.け'), +('掛', '-か.け'), +('掛', '-が.け'), +('掛', 'か.かる'), +('掛', '-か.かる'), +('掛', '-が.かる'), +('掛', 'か.かり'), +('掛', '-が.かり'), +('掛', 'かかり'), +('掛', '-がかり'), +('滑', 'すべ.る'), +('滑', 'なめ.らか'), +('陥', 'おちい.る'), +('陥', 'おとしい.れる'), +('括', 'くく.る'), +('缶', 'かま'), +('乾', 'かわ.く'), +('乾', 'かわ.かす'), +('乾', 'ほ.す'), +('乾', 'ひ.る'), +('乾', 'いぬい'), +('貫', 'つらぬ.く'), +('貫', 'ぬ.く'), +('貫', 'ぬき'), +('喚', 'わめ.く'), +('換', 'か.える'), +('換', '-か.える'), +('換', 'か.わる'), +('患', 'わずら.う'), +('堪', 'た.える'), +('堪', 'たま.る'), +('堪', 'こら.える'), +('堪', 'こた.える'), +('敢', 'あ.えて'), +('敢', 'あ.えない'), +('敢', 'あ.えず'), +('勧', 'すす.める'), +('寛', 'くつろ.ぐ'), +('寛', 'ひろ.い'), +('寛', 'ゆる.やか'), +('歓', 'よろこ.ぶ'), +('緩', 'ゆる.い'), +('緩', 'ゆる.やか'), +('緩', 'ゆる.む'), +('緩', 'ゆる.める'), +('憾', 'うら.む'), +('還', 'かえ.る'), +('環', 'わ'), +('韓', 'から'), +('韓', 'いげた'), +('鑑', 'かんが.みる'), +('鑑', 'かがみ'), +('含', 'ふく.む'), +('含', 'ふく.める'), +('玩', 'もちあそ.ぶ'), +('玩', 'もてあそ.ぶ'), +('企', 'くわだ.てる'), +('企', 'たくら.む'), +('忌', 'い.む'), +('忌', 'い.み'), +('忌', 'い.まわしい'), +('奇', 'く.しき'), +('奇', 'あや.しい'), +('奇', 'くし'), +('奇', 'めずら.しい'), +('伎', 'わざ'), +('伎', 'わざおぎ'), +('頑', 'かたく.な'), +('祈', 'いの.る'), +('畿', 'みやこ'), +('棄', 'す.てる'), +('飢', 'う.える'), +('棋', 'ご'), +('毀', 'こぼ.つ'), +('毀', 'こわ.す'), +('毀', 'こぼ.れる'), +('毀', 'こわ.れる'), +('毀', 'そし.る'), +('毀', 'やぶ.る'), +('輝', 'かがや.く'), +('擬', 'まが.い'), +('擬', 'もど.き'), +('戯', 'たわむ.れる'), +('戯', 'ざ.れる'), +('戯', 'じゃ.れる'), +('欺', 'あざむ.く'), +('鬼', 'おに'), +('鬼', 'おに-'), +('幾', 'いく-'), +('幾', 'いく.つ'), +('幾', 'いく.ら'), +('宜', 'よろ.しい'), +('宜', 'よろ.しく'), +('既', 'すで.に'), +('亀', 'かめ'), +('偽', 'いつわ.る'), +('偽', 'にせ'), +('偽', 'いつわ.り'), +('虐', 'しいた.げる'), +('喫', 'の.む'), +('丘', 'おか'), +('窮', 'きわ.める'), +('窮', 'きわ.まる'), +('窮', 'きわ.まり'), +('窮', 'きわ.み'), +('脚', 'あし'), +('却', 'かえ.って'), +('却', 'しりぞ.く'), +('却', 'しりぞ.ける'), +('朽', 'く.ちる'), +('糾', 'ただ.す'), +('吉', 'よし'), +('虚', 'むな.しい'), +('虚', 'うつ.ろ'), +('詰', 'つ.める'), +('詰', 'つ.め'), +('詰', '-づ.め'), +('詰', 'つ.まる'), +('詰', 'つ.む'), +('嗅', 'か.ぐ'), +('距', 'へだ.たる'), +('距', 'けづめ'), +('犠', 'いけにえ'), +('拒', 'こば.む'), +('臼', 'うす'), +('臼', 'うすづ.く'), +('及', 'およ.ぶ'), +('及', 'およ.び'), +('及', 'および'), +('及', 'およ.ぼす'), +('御', 'おん-'), +('御', 'お-'), +('御', 'み-'), +('叫', 'さけ.ぶ'), +('拠', 'よ.る'), +('況', 'まし.て'), +('況', 'いわ.んや'), +('況', 'おもむき'), +('峡', 'はざま'), +('享', 'う.ける'), +('恐', 'おそ.れる'), +('恐', 'おそ.る'), +('恐', 'おそ.ろしい'), +('恐', 'こわ.い'), +('恐', 'こわ.がる'), +('狭', 'せま.い'), +('狭', 'せば.める'), +('狭', 'せば.まる'), +('狭', 'さ'), +('挟', 'はさ.む'), +('挟', 'はさ.まる'), +('挟', 'わきばさ.む'), +('挟', 'さしはさ.む'), +('狂', 'くる.う'), +('狂', 'くる.おしい'), +('狂', 'くるお.しい'), +('脅', 'おびや.かす'), +('脅', 'おど.す'), +('脅', 'おど.かす'), +('矯', 'た.める'), +('驚', 'おどろ.く'), +('驚', 'おどろ.かす'), +('響', 'ひび.く'), +('恭', 'うやうや.しい'), +('暁', 'あかつき'), +('暁', 'さと.る'), +('仰', 'あお.ぐ'), +('仰', 'おお.せ'), +('仰', 'お.っしゃる'), +('仰', 'おっしゃ.る'), +('凝', 'こ.る'), +('凝', 'こ.らす'), +('凝', 'こご.らす'), +('凝', 'こご.らせる'), +('凝', 'こご.る'), +('巾', 'おお.い'), +('巾', 'ちきり'), +('巾', 'きれ'), +('琴', 'こと'), +('僅', 'わず.か'), +('緊', 'し.める'), +('緊', 'し.まる'), +('掘', 'ほ.る'), +('繰', 'く.る'), +('串', 'くし'), +('串', 'つらぬ.く'), +('勲', 'いさお'), +('窟', 'いわや'), +('窟', 'いはや'), +('窟', 'あな'), +('駆', 'か.ける'), +('駆', 'か.る'), +('偶', 'たま'), +('襟', 'えり'), +('謹', 'つつし.む'), +('隅', 'すみ'), +('薫', 'かお.る'), +('茎', 'くき'), +('遇', 'あ.う'), +('惧', 'おそ.れる'), +('屈', 'かが.む'), +('屈', 'かが.める'), +('契', 'ちぎ.る'), +('愚', 'おろ.か'), +('恵', 'めぐ.む'), +('恵', 'めぐ.み'), +('啓', 'ひら.く'), +('啓', 'さと.す'), +('錦', 'にしき'), +('蛍', 'ほたる'), +('渓', 'たに'), +('渓', 'たにがわ'), +('傾', 'かたむ.く'), +('傾', 'かたむ.ける'), +('傾', 'かたぶ.く'), +('傾', 'かた.げる'), +('傾', 'かし.げる'), +('継', 'つ.ぐ'), +('継', 'まま-'), +('掲', 'かか.げる'), +('慶', 'よろこ.び'), +('携', 'たずさ.える'), +('携', 'たずさ.わる'), +('稽', 'かんが.える'), +('稽', 'とど.める'), +('憬', 'あこが.れる'), +('詣', 'けい.する'), +('詣', 'まい.る'), +('詣', 'いた.る'), +('詣', 'もう.でる'), +('献', 'たてまつ.る'), +('鶏', 'にわとり'), +('鶏', 'とり'), +('軒', 'のき'), +('遣', 'つか.う'), +('遣', '-つか.い'), +('遣', '-づか.い'), +('遣', 'つか.わす'), +('遣', 'や.る'), +('嫌', 'きら.う'), +('嫌', 'きら.い'), +('嫌', 'いや'), +('堅', 'かた.い'), +('堅', '-がた.い'), +('傑', 'すぐ.れる'), +('賢', 'かしこ.い'), +('兼', 'か.ねる'), +('兼', '-か.ねる'), +('肩', 'かた'), +('撃', 'う.つ'), +('鯨', 'くじら'), +('憩', 'いこ.い'), +('憩', 'いこ.う'), +('剣', 'つるぎ'), +('拳', 'こぶし'), +('倹', 'つま.しい'), +('倹', 'つづまやか'), +('隙', 'すき'), +('隙', 'す.く'), +('隙', 'す.かす'), +('隙', 'ひま'), +('迎', 'むか.える'), +('圏', 'かこ.い'), +('鍵', 'かぎ'), +('繭', 'まゆ'), +('繭', 'きぬ'), +('幻', 'まぼろし'), +('桁', 'けた'), +('謙', 'へりくだ.る'), +('顕', 'あきらか'), +('顕', 'あらわ.れる'), +('懸', 'か.ける'), +('懸', 'か.かる'), +('玄', 'くろ'), +('玄', 'くろ.い'), +('鼓', 'つづみ'), +('錮', 'ふさ.ぐ'), +('互', 'たが.い'), +('互', 'かたみ.に'), +('舷', 'ふなばた'), +('舷', 'ふなべり'), +('悟', 'さと.る'), +('勾', 'かぎ'), +('勾', 'ま.がる'), +('股', 'また'), +('股', 'もも'), +('顧', 'かえり.みる'), +('枯', 'か.れる'), +('枯', 'か.らす'), +('誇', 'ほこ.る'), +('虎', 'とら'), +('弦', 'つる'), +('呉', 'く.れる'), +('呉', 'くれ'), +('貢', 'みつ.ぐ'), +('拘', 'かか.わる'), +('控', 'ひか.える'), +('控', 'ひか.え'), +('巧', 'たく.み'), +('巧', 'たく.む'), +('巧', 'うま.い'), +('攻', 'せ.める'), +('肯', 'がえんじ.る'), +('喉', 'のど'), +('荒', 'あ.らす'), +('荒', 'あ.れる'), +('荒', 'あら.い'), +('荒', 'すさ.ぶ'), +('荒', 'すさ.む'), +('荒', 'あ.らし'), +('甲', 'きのえ'), +('恒', 'つね'), +('恒', 'つねに'), +('抗', 'あらが.う'), +('更', 'さら'), +('更', 'さら.に'), +('更', 'ふ.ける'), +('更', 'ふ.かす'), +('江', 'え'), +('孔', 'あな'), +('雇', 'やと.う'), +('慌', 'あわ.てる'), +('慌', 'あわ.ただしい'), +('梗', 'ふさぐ'), +('梗', 'やまにれ'), +('梗', 'おおむね'), +('絞', 'しぼ.る'), +('絞', 'し.める'), +('絞', 'し.まる'), +('項', 'うなじ'), +('溝', 'みぞ'), +('硬', 'かた.い'), +('綱', 'つな'), +('稿', 'わら'), +('稿', 'したがき'), +('傲', 'おご.る'), +('傲', 'あなど.る'), +('乞', 'こ.う'), +('克', 'か.つ'), +('込', '-こ.む'), +('込', 'こ.む'), +('込', 'こ.み'), +('込', '-こ.み'), +('込', 'こ.める'), +('豪', 'えら.い'), +('駒', 'こま'), +('酷', 'ひど.い'), +('頃', 'ころ'), +('頃', 'ごろ'), +('頃', 'しばら.く'), +('痕', 'あと'), +('魂', 'たましい'), +('魂', 'たま'), +('墾', 'は.る'), +('墾', 'ひら.く'), +('恨', 'うら.む'), +('恨', 'うら.めしい'), +('懇', 'ねんご.ろ'), +('唆', 'そそ.る'), +('唆', 'そそのか.す'), +('沙', 'すな'), +('沙', 'よなげる'), +('挫', 'くじ.く'), +('挫', 'くじ.ける'), +('鎖', 'くさり'), +('鎖', 'とざ.す'), +('砕', 'くだ.く'), +('砕', 'くだ.ける'), +('詐', 'いつわ.る'), +('采', 'と.る'), +('采', 'いろどり'), +('彩', 'いろど.る'), +('斎', 'とき'), +('斎', 'つつし.む'), +('斎', 'ものいみ'), +('斎', 'い.む'), +('斎', 'いわ.う'), +('斎', 'いつ.く'), +('催', 'もよう.す'), +('催', 'もよお.す'), +('塞', 'ふさ.ぐ'), +('塞', 'とりで'), +('塞', 'み.ちる'), +('歳', 'とし'), +('歳', 'とせ'), +('歳', 'よわい'), +('載', 'の.せる'), +('載', 'の.る'), +('剤', 'かる'), +('剤', 'けず.る'), +('柵', 'しがら.む'), +('柵', 'しがらみ'), +('柵', 'とりで'), +('柵', 'やらい'), +('酢', 'す'), +('搾', 'しぼ.る'), +('削', 'けず.る'), +('削', 'はつ.る'), +('削', 'そ.ぐ'), +('恣', 'ほしいまま'), +('拶', 'せま.る'), +('惨', 'みじ.め'), +('惨', 'いた.む'), +('惨', 'むご.い'), +('撮', 'と.る'), +('撮', 'つま.む'), +('撮', '-ど.り'), +('擦', 'す.る'), +('擦', 'す.れる'), +('擦', '-ず.れ'), +('擦', 'こす.る'), +('擦', 'こす.れる'), +('桟', 'かけはし'), +('脂', 'あぶら'), +('刺', 'さ.す'), +('刺', 'さ.さる'), +('刺', 'さ.し'), +('刺', 'さし'), +('刺', 'とげ'), +('旨', 'むね'), +('旨', 'うま.い'), +('咲', 'さ.く'), +('咲', '-ざき'), +('暫', 'しばら.く'), +('傘', 'かさ'), +('紫', 'むらさき'), +('伺', 'うかが.う'), +('施', 'ほどこ.す'), +('摯', 'いた.る'), +('斬', 'き.る'), +('雌', 'め-'), +('雌', 'めす'), +('雌', 'めん'), +('嫉', 'そね.む'), +('嫉', 'ねた.む'), +('嫉', 'にく.む'), +('賜', 'たまわ.る'), +('賜', 'たま.う'), +('賜', 'たも.う'), +('疾', 'はや.い'), +('餌', 'え'), +('餌', 'えば'), +('餌', 'えさ'), +('餌', 'もち'), +('執', 'と.る'), +('侍', 'さむらい'), +('侍', 'はべ.る'), +('慈', 'いつく.しむ'), +('芝', 'しば'), +('漆', 'うるし'), +('諮', 'はか.る'), +('湿', 'しめ.る'), +('湿', 'しめ.す'), +('湿', 'うるお.う'), +('湿', 'うるお.す'), +('斜', 'なな.め'), +('斜', 'はす'), +('邪', 'よこし.ま'), +('煮', 'に.る'), +('煮', '-に'), +('煮', 'に.える'), +('煮', 'に.やす'), +('蛇', 'へび'), +('酌', 'く.む'), +('釈', 'とく'), +('釈', 'す.てる'), +('釈', 'ゆる.す'), +('朱', 'あけ'), +('狩', 'か.る'), +('狩', 'か.り'), +('狩', '-が.り'), +('殊', 'こと'), +('遮', 'さえぎ.る'), +('腫', 'は.れる'), +('腫', 'は.れ'), +('腫', 'は.らす'), +('腫', 'はれもの'), +('寂', 'さび'), +('寂', 'さび.しい'), +('寂', 'さび.れる'), +('寂', 'さみ.しい'), +('呪', 'まじな.う'), +('呪', 'のろ.い'), +('呪', 'まじな.い'), +('呪', 'のろ.う'), +('寿', 'ことぶき'), +('寿', 'ことぶ.く'), +('寿', 'ことほ.ぐ'), +('趣', 'おもむき'), +('趣', 'おもむ.く'), +('囚', 'とら.われる'), +('舟', 'ふね'), +('舟', 'ふな-'), +('舟', '-ぶね'), +('珠', 'たま'), +('臭', 'くさ.い'), +('臭', '-くさ.い'), +('臭', 'にお.う'), +('臭', 'にお.い'), +('秀', 'ひい.でる'), +('羞', 'はじ.る'), +('羞', 'すすめ.る'), +('羞', 'は.ずかしい'), +('愁', 'うれ.える'), +('愁', 'うれ.い'), +('酬', 'むく.いる'), +('袖', 'そで'), +('醜', 'みにく.い'), +('醜', 'しこ'), +('蹴', 'け.る'), +('襲', 'おそ.う'), +('襲', 'かさ.ね'), +('充', 'あ.てる'), +('充', 'み.たす'), +('渋', 'しぶ'), +('渋', 'しぶ.い'), +('渋', 'しぶ.る'), +('汁', 'しる'), +('汁', '-しる'), +('汁', 'つゆ'), +('獣', 'けもの'), +('獣', 'けだもの'), +('銃', 'つつ'), +('柔', 'やわ.らか'), +('柔', 'やわ.らかい'), +('柔', 'やわ'), +('柔', 'やわ.ら'), +('淑', 'しと.やか'), +('升', 'ます'), +('粛', 'つつし.む'), +('潤', 'うるお.う'), +('潤', 'うるお.す'), +('潤', 'うる.む'), +('徐', 'おもむ.ろに'), +('緒', 'お'), +('緒', 'いとぐち'), +('召', 'め.す'), +('叙', 'つい.ず'), +('叙', 'ついで'), +('盾', 'たて'), +('床', 'とこ'), +('床', 'ゆか'), +('巡', 'めぐ.る'), +('巡', 'めぐ.り'), +('瞬', 'またた.く'), +('瞬', 'まじろ.ぐ'), +('匠', 'たくみ'), +('肖', 'あやか.る'), +('如', 'ごと.し'), +('昇', 'のぼ.る'), +('宵', 'よい'), +('尚', 'なお'), +('沼', 'ぬま'), +('祥', 'さいわ.い'), +('祥', 'きざ.し'), +('祥', 'よ.い'), +('祥', 'つまび.らか'), +('渉', 'わた.る'), +('称', 'たた.える'), +('称', 'とな.える'), +('称', 'あ.げる'), +('称', 'かな.う'), +('称', 'はか.り'), +('称', 'はか.る'), +('称', 'ほめ.る'), +('掌', 'てのひら'), +('掌', 'たなごころ'), +('焦', 'こ.げる'), +('焦', 'こ.がす'), +('焦', 'こ.がれる'), +('焦', 'あせ.る'), +('焦', 'じ.れる'), +('焦', 'じ.らす'), +('奨', 'すす.める'), +('詳', 'くわ.しい'), +('詳', 'つまび.らか'), +('衝', 'つ.く'), +('詔', 'みことのり'), +('償', 'つぐな.う'), +('剰', 'あまつさえ'), +('剰', 'あま.り'), +('剰', 'あま.る'), +('壌', 'つち'), +('憧', 'あこが.れる'), +('丈', 'たけ'), +('丈', 'だけ'), +('浄', 'きよ.める'), +('浄', 'きよ.い'), +('畳', 'たた.む'), +('畳', 'たたみ'), +('畳', 'かさ.なる'), +('醸', 'かも.す'), +('鐘', 'かね'), +('拭', 'ぬぐ.う'), +('拭', 'ふ.く'), +('嬢', 'むすめ'), +('殖', 'ふ.える'), +('殖', 'ふ.やす'), +('嘱', 'しょく.する'), +('嘱', 'たの.む'), +('飾', 'かざ.る'), +('飾', 'かざ.り'), +('辱', 'はずかし.める'), +('触', 'ふ.れる'), +('触', 'さわ.る'), +('触', 'さわ'), +('伸', 'の.びる'), +('伸', 'の.ばす'), +('伸', 'の.べる'), +('伸', 'の.す'), +('侵', 'おか.す'), +('辛', 'から.い'), +('辛', 'つら.い'), +('辛', '-づら.い'), +('辛', 'かのと'), +('唇', 'くちびる'), +('津', 'つ'), +('尻', 'しり'), +('振', 'ふ.る'), +('振', 'ふ.れる'), +('振', 'ふ.るう'), +('浸', 'ひた.す'), +('浸', 'ひた.る'), +('浸', 'つ.かる'), +('譲', 'ゆず.る'), +('炊', 'た.く'), +('炊', '-だ.き'), +('酔', 'よ.う'), +('酔', 'よ.い'), +('酔', 'よ'), +('寝', 'ね.る'), +('寝', 'ね.かす'), +('寝', 'い.ぬ'), +('寝', 'みたまや'), +('寝', 'や.める'), +('吹', 'ふ.く'), +('刃', 'は'), +('刃', 'やいば'), +('刃', 'き.る'), +('須', 'すべから.く'), +('須', 'すべし'), +('須', 'ひげ'), +('須', 'まつ'), +('須', 'もち.いる'), +('須', 'もと.める'), +('粋', 'いき'), +('遂', 'と.げる'), +('遂', 'つい.に'), +('衰', 'おとろ.える'), +('尋', 'たず.ねる'), +('尋', 'ひろ'), +('薪', 'たきぎ'), +('薪', 'まき'), +('甚', 'はなは.だ'), +('甚', 'はなは.だしい'), +('尽', 'つ.きる'), +('尽', 'つ.くす'), +('尽', 'つ.かす'), +('尽', '-づ.く'), +('尽', '-ず.く'), +('尽', 'ことごと.く'), +('震', 'ふる.う'), +('震', 'ふる.える'), +('震', 'ふる.わせる'), +('震', 'ふる.わす'), +('睡', 'ねむ.る'), +('睡', 'ねむ.い'), +('穂', 'ほ'), +('慎', 'つつし.む'), +('慎', 'つつ.ましい'), +('慎', 'つつし'), +('慎', 'つつし.み'), +('診', 'み.る'), +('崇', 'あが.める'), +('随', 'まにま.に'), +('随', 'したが.う'), +('審', 'つまび.らか'), +('審', 'つぶさ.に'), +('裾', 'すそ'), +('杉', 'すぎ'), +('据', 'す.える'), +('据', 'す.わる'), +('瀬', 'せ'), +('是', 'これ'), +('是', 'この'), +('是', 'ここ'), +('凄', 'さむ.い'), +('凄', 'すご.い'), +('凄', 'すさ.まじい'), +('斉', 'そろ.う'), +('斉', 'ひと.しい'), +('斉', 'ひと.しく'), +('斉', 'あたる'), +('斉', 'はやい'), +('逝', 'ゆ.く'), +('逝', 'い.く'), +('婿', 'むこ'), +('請', 'こ.う'), +('請', 'う.ける'), +('枢', 'とぼそ'), +('枢', 'からくり'), +('醒', 'さ.ます'), +('醒', 'さ.める'), +('斥', 'しりぞ.ける'), +('戚', 'いた.む'), +('戚', 'うれ.える'), +('戚', 'みうち'), +('脊', 'せ'), +('脊', 'せい'), +('跡', 'あと'), +('惜', 'お.しい'), +('惜', 'お.しむ'), +('誓', 'ちか.う'), +('窃', 'ぬす.む'), +('窃', 'ひそ.か'), +('摂', 'おさ.める'), +('摂', 'かね.る'), +('摂', 'と.る'), +('扇', 'おうぎ'), +('拙', 'つたな.い'), +('占', 'し.める'), +('占', 'うらな.う'), +('旋', 'め.ぐる'), +('旋', 'いばり'), +('羨', 'うらや.む'), +('羨', 'あまり'), +('煎', 'せん.じる'), +('煎', 'い.る'), +('煎', 'に.る'), +('遷', 'うつ.る'), +('遷', 'うつ.す'), +('遷', 'みやこがえ'), +('詮', 'せん.ずる'), +('詮', 'かい'), +('詮', 'あき.らか'), +('禅', 'しずか'), +('禅', 'ゆず.る'), +('阻', 'はば.む'), +('疎', 'うと.い'), +('疎', 'うと.む'), +('疎', 'まば.ら'), +('漸', 'ようや.く'), +('漸', 'やや'), +('漸', 'ようよ.う'), +('漸', 'すす.む'), +('粗', 'あら.い'), +('粗', 'あら-'), +('繕', 'つくろ.う'), +('狙', 'ねら.う'), +('狙', 'ねら.い'), +('践', 'ふ.む'), +('薦', 'すす.める'), +('措', 'お.く'), +('膳', 'かしわ'), +('膳', 'すす.める'), +('膳', 'そな.える'), +('鮮', 'あざ.やか'), +('箋', 'ふだ'), +('潜', 'ひそ.む'), +('潜', 'もぐ.る'), +('潜', 'かく.れる'), +('潜', 'くぐ.る'), +('潜', 'ひそ.める'), +('遡', 'さかのぼ.る'), +('掃', 'は.く'), +('爽', 'あき.らか'), +('爽', 'さわ.やか'), +('爽', 'たがう'), +('塑', 'でく'), +('桑', 'くわ'), +('挿', 'さ.す'), +('挿', 'はさ.む'), +('遭', 'あ.う'), +('遭', 'あ.わせる'), +('曽', 'かつ'), +('曽', 'かつて'), +('曽', 'すなわち'), +('壮', 'さかん'), +('訴', 'うった.える'), +('捜', 'さが.す'), +('荘', 'ほうき'), +('荘', 'おごそ.か'), +('葬', 'ほうむ.る'), +('礎', 'いしずえ'), +('喪', 'も'), +('双', 'ふた'), +('双', 'たぐい'), +('双', 'ならぶ'), +('双', 'ふたつ'), +('痩', 'や.せる'), +('踪', 'あと'), +('槽', 'ふね'), +('汰', 'おご.る'), +('汰', 'にご.る'), +('汰', 'よな.げる'), +('燥', 'はしゃ.ぐ'), +('促', 'うなが.す'), +('贈', 'おく.る'), +('遜', 'したが.う'), +('遜', 'へりくだ.る'), +('遜', 'ゆず.る'), +('憎', 'にく.む'), +('憎', 'にく.い'), +('憎', 'にく.らしい'), +('憎', 'にく.しみ'), +('耐', 'た.える'), +('騒', 'さわ.ぐ'), +('騒', 'うれい'), +('騒', 'さわ.がしい'), +('霜', 'しも'), +('捉', 'とら.える'), +('怠', 'おこた.る'), +('怠', 'なま.ける'), +('藻', 'も'), +('堕', 'お.ちる'), +('堕', 'くず.す'), +('堕', 'くず.れる'), +('即', 'つ.く'), +('即', 'つ.ける'), +('即', 'すなわ.ち'), +('堆', 'うずたか.い'), +('袋', 'ふくろ'), +('替', 'か.える'), +('替', 'か.え-'), +('替', 'か.わる'), +('唾', 'つば'), +('唾', 'つばき'), +('滞', 'とどこお.る'), +('択', 'えら.ぶ'), +('滝', 'たき'), +('戴', 'いただ.く'), +('胆', 'きも'), +('旦', 'あき.らか'), +('旦', 'あきら'), +('旦', 'ただし'), +('旦', 'あさ'), +('旦', 'あした'), +('託', 'かこつ.ける'), +('託', 'かこ.つ'), +('託', 'かこ.つける'), +('綻', 'ほころ.びる'), +('誰', 'だれ'), +('誰', 'たれ'), +('誰', 'た'), +('拓', 'ひら.く'), +('濯', 'すす.ぐ'), +('濯', 'ゆす.ぐ'), +('脱', 'ぬ.ぐ'), +('脱', 'ぬ.げる'), +('嘆', 'なげ.く'), +('嘆', 'なげ.かわしい'), +('沢', 'さわ'), +('沢', 'うるお.い'), +('沢', 'うるお.す'), +('沢', 'つや'), +('端', 'はし'), +('端', 'は'), +('端', 'はた'), +('端', '-ばた'), +('端', 'はな'), +('棚', 'たな'), +('棚', '-だな'), +('弾', 'ひ.く'), +('弾', '-ひ.き'), +('弾', 'はず.む'), +('弾', 'たま'), +('弾', 'はじ.く'), +('弾', 'はじ.ける'), +('弾', 'ただ.す'), +('弾', 'はじ.きゆみ'), +('奪', 'うば.う'), +('恥', 'は.じる'), +('恥', 'はじ'), +('恥', 'は.じらう'), +('恥', 'は.ずかしい'), +('丹', 'に'), +('鍛', 'きた.える'), +('但', 'ただ.し'), +('稚', 'いとけない'), +('稚', 'おさない'), +('稚', 'おくて'), +('稚', 'おでる'), +('淡', 'あわ.い'), +('痴', 'し.れる'), +('痴', 'おろか'), +('緻', 'こまか.い'), +('遅', 'おく.れる'), +('遅', 'おく.らす'), +('遅', 'おそ.い'), +('致', 'いた.す'), +('濁', 'にご.る'), +('濁', 'にご.す'), +('蓄', 'たくわ.える'), +('眺', 'なが.める'), +('弔', 'とむら.う'), +('弔', 'とぶら.う'), +('聴', 'き.く'), +('聴', 'ゆる.す'), +('挑', 'いど.む'), +('跳', 'は.ねる'), +('跳', 'と.ぶ'), +('跳', '-と.び'), +('酎', 'かも.す'), +('鋳', 'い.る'), +('勅', 'いまし.める'), +('勅', 'みことのり'), +('澄', 'す.む'), +('澄', 'す.ます'), +('澄', '-す.ます'), +('彫', 'ほ.る'), +('彫', '-ぼ.り'), +('徴', 'しるし'), +('嘲', 'あざけ.る'), +('釣', 'つ.る'), +('釣', 'つ.り'), +('釣', 'つ.り-'), +('抽', 'ひき-'), +('沈', 'しず.む'), +('沈', 'しず.める'), +('貼', 'は.る'), +('貼', 'つ.く'), +('懲', 'こ.りる'), +('懲', 'こ.らす'), +('懲', 'こ.らしめる'), +('超', 'こ.える'), +('超', 'こ.す'), +('鎮', 'しず.める'), +('鎮', 'しず.まる'), +('鎮', 'おさえ'), +('珍', 'めずら.しい'), +('珍', 'たから'), +('塚', 'つか'), +('塚', '-づか'), +('墜', 'お.ちる'), +('墜', 'お.つ'), +('坪', 'つぼ'), +('捗', 'はかど.る'), +('椎', 'つち'), +('椎', 'う.つ'), +('爪', 'つめ'), +('爪', 'つま-'), +('漬', 'つ.ける'), +('漬', 'つ.かる'), +('漬', '-づ.け'), +('漬', '-づけ'), +('陳', 'ひ.ねる'), +('鶴', 'つる'), +('邸', 'やしき'), +('貞', 'ただし.い'), +('貞', 'さだ'), +('逓', 'かわ.る'), +('逓', 'たがいに'), +('帝', 'みかど'), +('堤', 'つつみ'), +('訂', 'ただ.す'), +('諦', 'あきら.める'), +('諦', 'つまびらか'), +('諦', 'まこと'), +('締', 'し.まる'), +('締', 'し.まり'), +('締', 'し.める'), +('締', '-し.め'), +('締', '-じ.め'), +('摘', 'つ.む'), +('溺', 'いばり'), +('溺', 'おぼ.れる'), +('滴', 'しずく'), +('滴', 'したた.る'), +('唐', 'から'), +('哲', 'さとい'), +('哲', 'あきらか'), +('添', 'そ.える'), +('添', 'そ.う'), +('怒', 'いか.る'), +('怒', 'おこ.る'), +('凍', 'こお.る'), +('凍', 'こご.える'), +('凍', 'こご.る'), +('凍', 'い.てる'), +('凍', 'し.みる'), +('倒', 'たお.れる'), +('倒', '-だお.れ'), +('倒', 'たお.す'), +('倒', 'さかさま'), +('倒', 'さかさ'), +('倒', 'さかしま'), +('桃', 'もも'), +('途', 'みち'), +('渡', 'わた.る'), +('渡', '-わた.る'), +('渡', 'わた.す'), +('透', 'す.く'), +('透', 'す.かす'), +('透', 'す.ける'), +('透', 'とう.る'), +('透', 'とう.す'), +('陶', 'すえ'), +('到', 'いた.る'), +('妬', 'ねた.む'), +('妬', 'そね.む'), +('妬', 'つも.る'), +('妬', 'ふさ.ぐ'), +('盗', 'ぬす.む'), +('盗', 'ぬす.み'), +('塡', 'はま.る'), +('塡', 'うず.める'), +('塡', 'は.める'), +('塡', 'ふさ.ぐ'), +('奴', 'やつ'), +('奴', 'やっこ'), +('吐', 'は.く'), +('吐', 'つ.く'), +('逃', 'に.げる'), +('逃', 'に.がす'), +('逃', 'のが.す'), +('逃', 'のが.れる'), +('塗', 'ぬ.る'), +('塗', 'ぬ.り'), +('塗', 'まみ.れる'), +('泥', 'どろ'), +('泥', 'なず.む'), +('殿', 'との'), +('殿', '-どの'), +('賭', 'か.ける'), +('賭', 'かけ'), +('悼', 'いた.む'), +('踏', 'ふ.む'), +('踏', 'ふ.まえる'), +('棟', 'むね'), +('棟', 'むな-'), +('筒', 'つつ'), +('稲', 'いね'), +('稲', 'いな-'), +('那', 'なに'), +('那', 'なんぞ'), +('那', 'いかん'), +('篤', 'あつ.い'), +('曇', 'くも.る'), +('丼', 'どんぶり'), +('謎', 'なぞ'), +('豚', 'ぶた'), +('突', 'つ.く'), +('匿', 'かくま.う'), +('頓', 'にわか.に'), +('頓', 'とん.と'), +('頓', 'つまず.く'), +('頓', 'とみ.に'), +('頓', 'ぬかずく'), +('屯', 'たむろ'), +('鈍', 'にぶ.い'), +('鈍', 'にぶ.る'), +('鈍', 'にぶ-'), +('鈍', 'なま.る'), +('鈍', 'なまく.ら'), +('藤', 'ふじ'), +('峠', 'とうげ'), +('貪', 'むさぼ.る'), +('鍋', 'なべ'), +('凸', 'でこ'), +('瞳', 'ひとみ'), +('騰', 'あが.る'), +('騰', 'のぼ.る'), +('尼', 'あま'), +('弐', 'ふた.つ'), +('弐', 'そえ'), +('闘', 'たたか.う'), +('闘', 'あらそ.う'), +('虹', 'にじ'), +('軟', 'やわ.らか'), +('軟', 'やわ.らかい'), +('洞', 'ほら'), +('尿', 'ゆばり'), +('尿', 'いばり'), +('尿', 'しと'), +('妊', 'はら.む'), +('妊', 'みごも.る'), +('匂', 'にお.う'), +('匂', 'にお.い'), +('匂', 'にお.わせる'), +('忍', 'しの.ぶ'), +('忍', 'しの.ばせる'), +('寧', 'むし.ろ'), +('粘', 'ねば.る'), +('濃', 'こ.い'), +('捻', 'ね.じる'), +('捻', 'ねじ.る'), +('捻', 'ひね.くる'), +('捻', 'ひね.る'), +('悩', 'なや.む'), +('悩', 'なや.ます'), +('悩', 'なや.ましい'), +('悩', 'なやみ'), +('覇', 'はたがしら'), +('縛', 'しば.る'), +('婆', 'ばば'), +('婆', 'ばあ'), +('廃', 'すた.れる'), +('廃', 'すた.る'), +('培', 'つちか.う'), +('薄', 'うす.い'), +('薄', 'うす-'), +('薄', '-うす'), +('薄', 'うす.める'), +('薄', 'うす.まる'), +('薄', 'うす.らぐ'), +('薄', 'うす.ら-'), +('薄', 'うす.れる'), +('薄', 'すすき'), +('輩', '-ばら'), +('輩', 'やから'), +('輩', 'やかい'), +('輩', 'ともがら'), +('迫', 'せま.る'), +('剝', 'はぐ'), +('剝', 'むく'), +('剝', 'はげる'), +('媒', 'なこうど'), +('泊', 'と.まる'), +('泊', 'と.める'), +('杯', 'さかずき'), +('罵', 'ののし.る'), +('爆', 'は.ぜる'), +('箸', 'はし'), +('髪', 'かみ'), +('抜', 'ぬ.く'), +('抜', '-ぬ.く'), +('抜', 'ぬ.き'), +('抜', 'ぬ.ける'), +('抜', 'ぬ.かす'), +('抜', 'ぬ.かる'), +('氾', 'ひろ.がる'), +('伐', 'き.る'), +('伐', 'そむ.く'), +('伐', 'う.つ'), +('肌', 'はだ'), +('罰', 'ばっ.する'), +('帆', 'ほ'), +('畔', 'あぜ'), +('畔', 'くろ'), +('畔', 'ほとり'), +('伴', 'ともな.う'), +('汎', 'ただよ.う'), +('汎', 'ひろ.い'), +('斑', 'ふ'), +('斑', 'まだら'), +('頒', 'わ.かつ'), +('頒', 'わ.ける'), +('煩', 'わずら.う'), +('煩', 'わずら.わす'), +('煩', 'うるさ.がる'), +('煩', 'うるさ.い'), +('蛮', 'えびす'), +('妃', 'きさき'), +('繁', 'しげ.る'), +('繁', 'しげ.く'), +('疲', 'つか.れる'), +('疲', '-づか.れ'), +('疲', 'つか.らす'), +('卑', 'いや.しい'), +('卑', 'いや.しむ'), +('卑', 'いや.しめる'), +('彼', 'かれ'), +('彼', 'かの'), +('彼', 'か.の'), +('被', 'こうむ.る'), +('被', 'おお.う'), +('被', 'かぶ.る'), +('被', 'かぶ.せる'), +('扉', 'とびら'), +('碑', 'いしぶみ'), +('罷', 'まか.り-'), +('罷', 'や.める'), +('避', 'さ.ける'), +('避', 'よ.ける'), +('尾', 'お'), +('扶', 'たす.ける'), +('眉', 'まゆ'), +('肘', 'ひじ'), +('姫', 'ひめ'), +('姫', 'ひめ-'), +('描', 'えが.く'), +('描', 'か.く'), +('漂', 'ただよ.う'), +('怖', 'こわ.い'), +('怖', 'こわ.がる'), +('怖', 'お.じる'), +('怖', 'おそ.れる'), +('浜', 'はま'), +('匹', 'ひき'), +('瓶', 'かめ'), +('瓶', 'へい'), +('附', 'つ.ける'), +('附', 'つ.く'), +('苗', 'なえ'), +('苗', 'なわ-'), +('猫', 'ねこ'), +('頻', 'しき.りに'), +('赴', 'おもむ.く'), +('微', 'かす.か'), +('浮', 'う.く'), +('浮', 'う.かれる'), +('浮', 'う.かぶ'), +('浮', 'う.かべる'), +('敏', 'さとい'), +('訃', 'しらせ'), +('膝', 'ひざ'), +('腐', 'くさ.る'), +('腐', '-くさ.る'), +('腐', 'くさ.れる'), +('腐', 'くさ.れ'), +('腐', 'くさ.らす'), +('腐', 'くさ.す'), +('膚', 'はだ'), +('敷', 'し.く'), +('敷', '-し.き'), +('舞', 'ま.う'), +('舞', '-ま.う'), +('舞', 'まい'), +('伏', 'ふ.せる'), +('伏', 'ふ.す'), +('沸', 'わ.く'), +('沸', 'わ.かす'), +('噴', 'ふ.く'), +('憤', 'いきどお.る'), +('柄', 'がら'), +('柄', 'え'), +('柄', 'つか'), +('併', 'あわ.せる'), +('払', 'はら.う'), +('払', '-はら.い'), +('払', '-ばら.い'), +('幅', 'はば'), +('普', 'あまね.く'), +('普', 'あまねし'), +('紛', 'まぎ.れる'), +('紛', '-まぎ.れ'), +('紛', 'まぎ.らす'), +('紛', 'まぎ.らわす'), +('紛', 'まぎ.らわしい'), +('侮', 'あなど.る'), +('侮', 'あなず.る'), +('覆', 'おお.う'), +('覆', 'くつがえ.す'), +('覆', 'くつがえ.る'), +('丙', 'ひのえ'), +('幣', 'ぬさ'), +('蔽', 'おお.う'), +('蔽', 'おお.い'), +('璧', 'たま'), +('壁', 'かべ'), +('癖', 'くせ'), +('癖', 'くせ.に'), +('偏', 'かたよ.る'), +('蔑', 'ないがしろ'), +('蔑', 'なみ.する'), +('蔑', 'くらい'), +('蔑', 'さげす.む'), +('遍', 'あまね.く'), +('餅', 'もち'), +('餅', 'もちい'), +('哺', 'はぐく.む'), +('哺', 'ふく.む'), +('捕', 'と.らえる'), +('捕', 'と.らわれる'), +('捕', 'と.る'), +('捕', 'とら.える'), +('捕', 'とら.われる'), +('捕', 'つか.まえる'), +('捕', 'つか.まる'), +('募', 'つの.る'), +('芳', 'かんば.しい'), +('奉', 'たてまつ.る'), +('奉', 'まつ.る'), +('奉', 'ほう.ずる'), +('邦', 'くに'), +('慕', 'した.う'), +('抱', 'だ.く'), +('抱', 'いだ.く'), +('抱', 'かか.える'), +('倣', 'なら.う'), +('泡', 'あわ'), +('蜂', 'はち'), +('峰', 'みね'), +('峰', 'ね'), +('縫', 'ぬ.う'), +('飽', 'あ.きる'), +('飽', 'あ.かす'), +('飽', 'あ.く'), +('妨', 'さまた.げる'), +('忙', 'いそが.しい'), +('忙', 'せわ.しい'), +('忙', 'おそ.れる'), +('忙', 'うれえるさま'), +('乏', 'とぼ.しい'), +('乏', 'とも.しい'), +('某', 'それがし'), +('某', 'なにがし'), +('房', 'ふさ'), +('傍', 'かたわ.ら'), +('傍', 'わき'), +('傍', 'おか-'), +('傍', 'はた'), +('傍', 'そば'), +('冒', 'おか.す'), +('墨', 'すみ'), +('膨', 'ふく.らむ'), +('膨', 'ふく.れる'), +('紡', 'つむ.ぐ'), +('崩', 'くず.れる'), +('崩', '-くず.れ'), +('崩', 'くず.す'), +('褒', 'ほ.める'), +('帽', 'ずきん'), +('帽', 'おお.う'), +('没', 'おぼ.れる'), +('没', 'しず.む'), +('没', 'ない'), +('頰', 'ほお'), +('頰', 'ほほ'), +('勃', 'おこ.る'), +('勃', 'にわかに'), +('僕', 'しもべ'), +('堀', 'ほり'), +('朴', 'ほう'), +('朴', 'ほお'), +('朴', 'えのき'), +('奔', 'はし.る'), +('謀', 'はか.る'), +('謀', 'たばか.る'), +('謀', 'はかりごと'), +('睦', 'むつ.まじい'), +('睦', 'むつ.む'), +('睦', 'むつ.ぶ'), +('貌', 'かたち'), +('貌', 'かたどる'), +('麻', 'あさ'), +('摩', 'ま.する'), +('摩', 'さす.る'), +('摩', 'す.る'), +('翻', 'ひるがえ.る'), +('翻', 'ひるがえ.す'), +('磨', 'みが.く'), +('磨', 'す.る'), +('凡', 'およ.そ'), +('凡', 'おうよ.そ'), +('凡', 'すべ.て'), +('埋', 'う.める'), +('埋', 'う.まる'), +('埋', 'う.もれる'), +('埋', 'うず.める'), +('埋', 'うず.まる'), +('埋', 'い.ける'), +('昧', 'くら.い'), +('昧', 'むさぼ.る'), +('枕', 'まくら'), +('又', 'また'), +('又', 'また-'), +('又', 'また.の-'), +('岬', 'みさき'), +('漫', 'みだり.に'), +('漫', 'そぞ.ろ'), +('妙', 'たえ'), +('冥', 'くら.い'), +('娘', 'むすめ'), +('娘', 'こ'), +('眠', 'ねむ.る'), +('眠', 'ねむ.い'), +('麺', 'むぎこ'), +('滅', 'ほろ.びる'), +('滅', 'ほろ.ぶ'), +('滅', 'ほろ.ぼす'), +('妄', 'みだ.りに'), +('茂', 'しげ.る'), +('盲', 'めくら'), +('免', 'まぬか.れる'), +('免', 'まぬが.れる'), +('網', 'あみ'), +('矛', 'ほこ'), +('弥', 'や'), +('弥', 'いや'), +('弥', 'いよ.いよ'), +('弥', 'わた.る'), +('黙', 'だま.る'), +('黙', 'もだ.す'), +('冶', 'い.る'), +('躍', 'おど.る'), +('霧', 'きり'), +('闇', 'やみ'), +('闇', 'くら.い'), +('愉', 'たの.しい'), +('愉', 'たの.しむ'), +('喩', 'たと.える'), +('喩', 'さと.す'), +('唯', 'ただ'), +('癒', 'い.える'), +('癒', 'いや.す'), +('癒', 'い.やす'), +('幽', 'ふか.い'), +('幽', 'かす.か'), +('幽', 'くら.い'), +('幽', 'しろ.い'), +('諭', 'さと.す'), +('雄', 'お-'), +('雄', 'おす'), +('雄', 'おん'), +('湧', 'わ.く'), +('猶', 'なお'), +('憂', 'うれ.える'), +('憂', 'うれ.い'), +('憂', 'う.い'), +('憂', 'う.き'), +('融', 'と.ける'), +('融', 'と.かす'), +('誉', 'ほま.れ'), +('誉', 'ほ.める'), +('妖', 'あや.しい'), +('妖', 'なま.めく'), +('妖', 'わざわ.い'), +('誘', 'さそ.う'), +('誘', 'いざな.う'), +('揚', 'あ.げる'), +('揚', '-あ.げ'), +('揚', 'あ.がる'), +('与', 'あた.える'), +('与', 'あずか.る'), +('与', 'くみ.する'), +('与', 'ともに'), +('揺', 'ゆ.れる'), +('揺', 'ゆ.る'), +('揺', 'ゆ.らぐ'), +('揺', 'ゆ.るぐ'), +('揺', 'ゆ.する'), +('揺', 'ゆ.さぶる'), +('揺', 'ゆ.すぶる'), +('揺', 'うご.く'), +('溶', 'と.ける'), +('溶', 'と.かす'), +('溶', 'と.く'), +('瘍', 'かさ'), +('窯', 'かま'), +('踊', 'おど.る'), +('謡', 'うた.い'), +('謡', 'うた.う'), +('沃', 'そそ.ぐ'), +('腰', 'こし'), +('拉', 'らっ.する'), +('拉', 'ひし.ぐ'), +('拉', 'くだ.く'), +('抑', 'おさ.える'), +('羅', 'うすもの'), +('翼', 'つばさ'), +('頼', 'たの.む'), +('頼', 'たの.もしい'), +('頼', 'たよ.る'), +('絡', 'から.む'), +('絡', 'から.まる'), +('雷', 'かみなり'), +('雷', 'いかずち'), +('雷', 'いかづち'), +('藍', 'あい'), +('裸', 'はだか'), +('履', 'は.く'), +('辣', 'から.い'), +('濫', 'みだ.りに'), +('濫', 'みだ.りがましい'), +('欄', 'てすり'), +('離', 'はな.れる'), +('離', 'はな.す'), +('柳', 'やなぎ'), +('慄', 'ふる.える'), +('慄', 'おそ.れる'), +('慄', 'おのの.く'), +('竜', 'たつ'), +('竜', 'いせ'), +('粒', 'つぶ'), +('侶', 'とも'), +('虜', 'とりこ'), +('虜', 'とりく'), +('慮', 'おもんぱく.る'), +('慮', 'おもんぱか.る'), +('涼', 'すず.しい'), +('涼', 'すず.む'), +('涼', 'すず.やか'), +('涼', 'うす.い'), +('涼', 'ひや.す'), +('涼', 'まことに'), +('陵', 'みささぎ'), +('猟', 'かり'), +('猟', 'か.る'), +('瞭', 'あきらか'), +('糧', 'かて'), +('涙', 'なみだ'), +('戻', 'もど.す'), +('戻', 'もど.る'), +('零', 'ぜろ'), +('零', 'こぼ.す'), +('零', 'こぼ.れる'), +('隣', 'とな.る'), +('隣', 'となり'), +('励', 'はげ.む'), +('励', 'はげ.ます'), +('鈴', 'すず'), +('塁', 'とりで'), +('霊', 'たま'), +('隷', 'したが.う'), +('隷', 'しもべ'), +('麗', 'うるわ.しい'), +('麗', 'うら.らか'), +('齢', 'よわい'), +('齢', 'とし'), +('暦', 'こよみ'), +('裂', 'さ.く'), +('裂', 'さ.ける'), +('裂', '-ぎ.れ'), +('籠', 'かご'), +('籠', 'こ.める'), +('籠', 'こも.る'), +('籠', 'こ.む'), +('劣', 'おと.る'), +('恋', 'こ.う'), +('恋', 'こい'), +('恋', 'こい.しい'), +('麓', 'ふもと'), +('錬', 'ね.る'), +('烈', 'はげ.しい'), +('呂', 'せぼね'), +('郎', 'おとこ'), +('露', 'つゆ'), +('炉', 'いろり'), +('弄', 'いじく.る'), +('弄', 'ろう.する'), +('弄', 'いじ.る'), +('弄', 'ひねく.る'), +('弄', 'たわむ.れる'), +('弄', 'もてあそ.ぶ'), +('賂', 'まいな.い'), +('賂', 'まいな.う'), +('漏', 'も.る'), +('漏', 'も.れる'), +('漏', 'も.らす'), +('楼', 'たかどの'), +('脇', 'わき'), +('脇', 'わけ'), +('惑', 'まど.う'), +('枠', 'わく'), +('腕', 'うで'), +('賄', 'まかな.う'), +('湾', 'いりえ'); + +INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) VALUES +('次ぐ', 'つぐ', 'to rank next to, to come after'), +('哀れ', 'あわれ', 'pity, sorrow, grief, misery, compassion, pathos, pitiable, pitiful, pathetic, miserable, alack, alas'), +('哀れむ', 'あわれむ', 'to pity, to feel sympathy for, to sympathize with, to sympathise with, to commiserate with, to have mercy on, to enjoy the beauty of, to appreciate, to admire'), +('哀れむ', 'あわれむ', 'to pity, to feel sympathy for, to sympathize with, to sympathise with, to commiserate with, to have mercy on, to enjoy the beauty of, to appreciate, to admire'), +('悲しい', 'かなしい', 'sad, miserable, unhappy, sorrowful, sad, lamentable, deplorable, grievous'), +('悲しいかな', 'かなしいかな', 'sad to say, how sad, alas'), +('握る', 'にぎる', 'to clasp, to grasp, to grip, to clutch, to hold (the answer), to have (e.g. the solution), to be the key, to be the reason, to seize (power), to hold (the reins), to dominate, to control, to make (nigirizushi, rice ball, etc.), to form (with one''s hands), to press into shape, to mold, to mould'), +('嵐', 'あらし', 'storm, tempest, uproar, hullabaloo, storm (e.g. of protest), winds (e.g. of change)'), +('嵐の大洋', 'あらしのたいよう', 'Oceanus Procellarum (lunar mare), Ocean of Storms'), +('青嵐', 'あおあらし', 'wind blowing through fresh verdure, mountain air'), +('太陽嵐', 'たいようあらし', 'solar storm'), +('依る', 'よる', 'to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at'), +('扱い', 'あつかい', 'treatment, service, dealing (with), handling, management, handling (of a machine, tool, etc.), operation, use, treating as, treating like'), +('扱い方', 'あつかいかた', 'how to manage (e.g. case), how to handle (e.g. machine), way with (e.g. children, animal)'), +('扱う', 'あつかう', 'to deal with (a person), to treat, to handle, to take care of, to entertain, to deal with (a problem), to handle, to manage, to operate (e.g. a machine), to handle, to work, to deal in, to sell, to cover (a topic), to treat, to discuss, to take up, to treat A as B, to mediate (an argument), to be too much for one, to find unmanageable, to gossip'), +('扱く', 'こく', 'to thresh, to strip'), +('宛てる', 'あてる', 'to address'), +('恰も', 'あたかも', 'as if, as it were, as though, right then, just then, at that moment'), +('為', 'ため', 'good, advantage, benefit, welfare, sake, purpose, objective, aim, consequence, result, effect, affecting, regarding, concerning'), +('為に', 'ために', 'for, for the sake of, to one''s advantage, in favor of, in favour of, on behalf of, because of, as a result of'), +('外為', 'がいため', 'foreign exchange'), +('念のため', 'ねんのため', '(just) making sure, just to be sure, just in case, for caution''s sake'), +('成る', 'なる', 'to become, to get, to grow, to turn, to reach, to attain, to result in, to turn out, to end up, to prove (to be), to consist of, to be composed of, to be made up of, to be completed, to be realized, to succeed, to be attained, to be accomplished, to change (into), to turn (into), to transform, to come (to do), to begin (to do), to grow (to do), to come to, to amount to, to add up to, to make, to play (the part of), to act as, to be used for, to be useful for, to serve as, to be promoted, to do ...'), +('為す', 'なす', 'to build up, to establish, to form, to become (a state), to accomplish, to achieve, to succeed in, to change into, to do, to perform, to intend to, to attempt, to try'), +('為す術', 'なすすべ', 'means, method, way'), +('為る', 'する', 'to do, to carry out, to perform, to cause to become, to make (into), to turn (into), to serve as, to act as, to work as, to wear (clothes, a facial expression, etc.), to judge as being, to view as being, to think of as, to treat as, to use as, to decide on, to choose, to be sensed (of a smell, noise, etc.), to be (in a state, condition, etc.), to be worth, to cost, to pass (of time), to elapse, to place, or raise, person A to a post or status B, to transform A to B, to make A into B, to exchange A for B, to make use of A for B, to view A as B, to handle A as if it were B, to feel A about B, verbalizing suffix (applies to nouns noted in this dictionary with the part of speech "vs"), creates a humble verb (after a noun prefixed with "o" or "go"), to be just about to, to be just starting to, to try to, to attempt to'), +('成り', 'なり', 'promoted (of a piece)'), +('なり手', 'なりて', 'person willing to take on a role, willing candidate'), +('恐れる', 'おそれる', 'to fear, to be afraid of'), +('畏まる', 'かしこまる', 'to obey respectfully, to humble oneself, to sit straight (upright, respectfully, attentively)'), +('畏', 'かしこ', 'yours sincerely, respectfully yours'), +('賢い', 'かしこい', 'wise, clever, smart, well-behaved (esp. children and pets), obedient, good'), +('萎える', 'なえる', 'to lose strength, to become weak, to disappear (of energy, drive, etc.), to wither, to droop, to wilt, to feel demotivated, to lose interest, to become disappointed'), +('萎え落ち', 'なえおち', 'disconnecting from an online game because one is losing'), +('萎れる', 'しおれる', 'to wither, to wilt, to droop, to fade, to be dejected, to be disheartened, to be depressed, to be crestfallen'), +('萎びる', 'しなびる', 'to shrivel (e.g. cut vegetables, skin), to wilt, to fade, to wither, to be wizened'), +('萎む', 'しぼむ', 'to wither (of flowers, dreams, etc.), to wilt, to droop, to shrivel, to fade (away), to sag, to deflate'), +('萎える', 'なえる', 'to lose strength, to become weak, to disappear (of energy, drive, etc.), to wither, to droop, to wilt, to feel demotivated, to lose interest, to become disappointed'), +('違う', 'ちがう', 'to differ (from), to vary, to not be in the usual condition, to be incorrect, to be wrong, to be off the mark, to be different (from what was promised, etc.), isn''t it?, wasn''t it?'), +('違くて', 'ちがくて', 'different (from), not the same (as)'), +('違い', 'ちがい', 'difference, distinction, discrepancy, mistake, error'), +('違いない', 'ちがいない', 'sure, no mistaking it, for certain, without doubt'), +('違える', 'ちがえる', 'to change, to alter, to mistake, to make a mistake, to fail to keep (e.g. one''s promise), to sprain (a muscle), to dislocate (e.g. one''s neck)'), +('違う', 'たがう', 'to differ, to be different, to run counter to, to change (into something out of the ordinary)'), +('違える', 'たがえる', 'to change, to alter, to run counter to, to go against, to break (one''s word), to make a mistake (in), to err'), +('脅す', 'おどす', 'to threaten, to menace, to frighten (into doing)'), +('縅', 'おどし', 'leather strap binding the plates of traditional Japanese armor (armour)'), +('脅し', 'おどし', 'threat, bird-scaring device (scarecrow, gun, etc.)'), +('脅かす', 'おどかす', 'to threaten, to menace, to intimidate, to startle, to frighten, to scare'), +('偉い', 'えらい', 'great, excellent, admirable, remarkable, distinguished, important, celebrated, famous, eminent, very troublesome, awful, terrible, tiring, tough, very, extremely'), +('偉い人', 'えらいひと', 'celebrated personage, big-wig, person in a high position'), +('逸れる', 'それる', 'to turn away, to bear off, to veer away, to swerve from, to miss (e.g. a target), to deviate (e.g. of a conversation), to digress, to go astray, to wander'), +('逸らす', 'そらす', 'to turn away (one''s eyes, face, etc.), to avert, to divert (e.g. one''s attention), to evade (e.g. a question), to change (e.g. the subject), to displease, to annoy, to offend, to upset, to miss (the target, ball, etc.)'), +('逸れる', 'はぐれる', 'to lose sight of (one''s companions), to stray from, to miss (one''s chance to ...)'), +('咽ぶ', 'むせぶ', 'to be choked, to be stifled, to be smothered'), +('噎せる', 'むせる', 'to choke, to be choked by, to be stifled by'), +('喉', 'のど', 'throat, singing voice'), +('喉から手が出る', 'のどからてがでる', 'to want something desperately, to want something (so badly one can taste it)'), +('横糸', 'よこいと', 'weft, woof (crosswise threads on a loom)'), +('横糸', 'よこいと', 'weft, woof (crosswise threads on a loom)'), +('芋', 'いも', 'tuber, taro, potato, yam, yokel, bumpkin, dud, worthless thing'), +('芋虫', 'いもむし', 'hornworm (caterpillar of a hawk moth), (hairless) caterpillar'), +('焼き芋', 'やきいも', 'roasted sweet potato, baked sweet potato'), +('唐芋', 'とういも', 'sweet potato (Ipomoea batatas)'), +('淫ら', 'みだら', 'obscene, indecent, lewd, bawdy, loose, improper, dirty'), +('陰', 'かげ', 'shade, shadow, behind (something), other side, back, background, behind the scenes, behind someone''s back, gloom (in someone''s expression, nature, etc.), darkness'), +('陰口', 'かげぐち', 'malicious gossip, backbiting, speaking ill behind someone''s back'), +('山陰', 'やまかげ', 'place in the shade of a mountain, shelter of the mountains, mountain recess'), +('物陰', 'ものかげ', 'place hidden from view, cover, shelter, hiding place'), +('陰る', 'かげる', 'to darken, to get dark, to be clouded, to be hidden (behind clouds)'), +('慰める', 'なぐさめる', 'to comfort, to console, to amuse'), +('慰む', 'なぐさむ', 'to feel comforted, to be in good spirits, to feel better, to forget one''s worries, to trifle with, to fool around with'), +('恨む', 'うらむ', 'to bear a grudge against, to resent, to blame, to curse, to feel bitter towards'), +('恨み', 'うらみ', 'resentment, grudge, malice, bitterness, matter for regret, regret'), +('恨み言', 'うらみごと', 'grudge, complaint, reproach'), +('恨めしい', 'うらめしい', 'reproachful, hateful, bitter'), +('宴', 'うたげ', 'party, banquet, feast'), +('花見の宴', 'はなみのうたげ', 'cherry blossom viewing party'), +('鋭い', 'するどい', 'sharp (blade), pointed, sharp (pain), stabbing, cutting (remark), stinging, pointed (question or look), screeching (noise), perceptive, keen, quick (mind), astute, shrewd, discerning, nimble, agile, quick'), +('閲する', 'えっする', 'to inspect, to examine, to check, to elapse, to pass (time)'), +('喜ぶ', 'よろこぶ', 'to be delighted, to be glad, to be pleased, to congratulate, to gratefully accept'), +('喜ばす', 'よろこばす', 'to delight, to give pleasure'), +('煙る', 'けむる', 'to smoke (e.g. fire), to billow smoke, to smoulder, to smolder, to be hazy, to look dim'), +('煙', 'けむり', 'smoke, fumes'), +('煙感知器', 'けむりかんちき', 'smoke detector'), +('黒煙', 'こくえん', 'black smoke'), +('砂煙', 'すなけむり', 'cloud of sand (dust, etc.)'), +('煙い', 'けむい', 'smoky'), +('炎', 'ほのお', 'flame, blaze, flames (of intense emotion, e.g. love, jealousy, anger), passion'), +('炎検出器', 'ほのおけんしゅつき', 'flame detector'), +('瞋恚の炎', 'しんいのほのお', 'intense antipathy (like a blazing fire), flames of rage'), +('嫉妬の炎', 'しっとのほのお', 'flames of jealousy'), +('浦', 'うら', 'inlet, seashore, beach'), +('浦内笛鯛', 'うらうちふえだい', 'Papuan black snapper (Lutjanus goldiei)'), +('津々浦々', 'つつうらうら', 'all over the country, throughout the land, every nook and cranny of the land, far and wide, (in) every port and harbor'), +('鬱ぐ', 'ふさぐ', 'to feel depressed, to be in low spirits, to mope'), +('詠む', 'よむ', 'to compose (a Japanese poem), to write, to use as the theme of a poem, to recite (e.g. a poem), to chant, to intone'), +('歌う', 'うたう', 'to sing, to sing of (love, beauty, etc.) in a poem, to express in the form of a poem, to recite (a poem)'), +('猿', 'さる', 'monkey (esp. the Japanese macaque, Macaca fuscata), ape, non-human primate, sly person, idiot, hick, sliding wooden bolt (for holding a door or window shut), clasp used to control the height of a pot-hook, bathhouse prostitute'), +('猿尾', 'さるお', 'backside part of the shamisen''s neck where it meets the body'), +('木から落ちた猿', 'きからおちたさる', 'person who has lost something they used to rely on, a monkey fallen from the tree'), +('真猿', 'まさる', 'monkey (esp. the Japanese macaque, Macaca fuscata)'), +('越す', 'こす', 'to cross over (e.g. mountain), to go across, to get over (e.g. hardship), to pass time (e.g. a winter), to surpass, to be better than, to exceed, to move house, to go, to come'), +('越える', 'こえる', 'to cross over, to cross, to pass through, to pass over (out of), to go beyond, to go past, to exceed, to surpass, to be more (than)'), +('縁', 'ふち', 'rim, brim, edge, brink'), +('縁石', 'えんせき', 'curb (stone), kerb'), +('盆の縁', 'ぼんのふち', 'edge of a tray'), +('縁取る', 'ふちどる', 'to border, to fringe, to hem, to edge'), +('縁', 'ゆかり', 'connection (to a person, place, etc.), relation, affinity'), +('縁の色', 'ゆかりのいろ', 'violet'), +('縁', 'よすが', 'something to rely on, aid, clue, way, means, someone to rely on, relative, reminder, memento'), +('縁', 'へり', 'edge (of a river, woods, etc.), shoulder (of a road), rim, brim, hem, margin, fringe, selvage, fabric border (of a tatami mat, etc.), edging'), +('縁石', 'えんせき', 'curb (stone), kerb'), +('縁', 'えん', 'fate, destiny (esp. as a mysterious force that binds two people together), relationship (e.g. between two people), bond, link, connection, family ties, affinity, opportunity, chance (to meet someone and start a relationship), pratyaya (indirect conditions, as opposed to direct causes), narrow open-air veranda'), +('隠す', 'かくす', 'to hide, to conceal'), +('隠し', 'かくし', 'hiding, concealing, being hidden, being concealed, pocket'), +('隠し事', 'かくしごと', 'secret, secrecy'), +('釘隠', 'くぎかくし', 'nail hider, nailhead cover, decorative object which conceals the head of a nail'), +('雉隠', 'きじかくし', 'Asparagus schoberioides'), +('隠れる', 'かくれる', 'to hide, to be hidden, to conceal oneself, to disappear'), +('影', 'かげ', 'shadow, silhouette, figure, shape, reflection, image, ominous sign, light (stars, moon), trace, shadow (of one''s former self)'), +('陰口', 'かげぐち', 'malicious gossip, backbiting, speaking ill behind someone''s back'), +('夕影', 'ゆうかげ', 'light of the setting sun, figure lit by the evening sun'), +('月影', 'げつえい', 'moonlight, moon, moonbeams'), +('歌', 'うた', 'song, singing, classical Japanese poem (esp. tanka), modern poetry'), +('歌う', 'うたう', 'to sing, to sing of (love, beauty, etc.) in a poem, to express in the form of a poem, to recite (a poem)'), +('長唄', 'ながうた', 'long epic song with shamisen accompaniment (developed in Edo in the early 17th century)'), +('紡ぎ歌', 'つむぎうた', 'spinning song'), +('歌う', 'うたう', 'to sing, to sing of (love, beauty, etc.) in a poem, to express in the form of a poem, to recite (a poem)'), +('鉛', 'なまり', 'lead (Pb)'), +('鉛色', 'なまりいろ', 'lead colour, lead color'), +('アジ化鉛', 'アジかなまり', 'lead azide'), +('一酸化鉛', 'いっさんかなまり', 'lead monoxide, lead(II) oxide'), +('艶', 'つや', 'gloss, luster, lustre, shine, sheen, polish, mellowness (of a voice), youthfulness (e.g. of skin), interest, appeal, charm, color, colour, feeling, romance, love, sexiness'), +('艶やか', 'つややか', 'glossy (e.g. hair), sleek, shiny, lustrous'), +('艶々', 'つやつや', 'glossy, bright, slick'), +('艶かしい', 'なまめかしい', 'charming, captivating, bewitching, seductive, coquettish'), +('艶やか', 'あでやか', 'glamorous, charming, beguiling, bewitching, beautiful, fascinatingly elegant'), +('艶めく', 'つやめく', '(for an object) to be shiny, to be glossy, (for a woman) to be alluring, to look sexy'), +('艶めく', 'なまめく', 'to brim over with feminine charm, to look captivating (of a woman), to be sexy, to be seductive, to be enticing, to look young and fresh, to be elegant, to look refined, to have a calm and composed appearance'), +('窪む', 'くぼむ', 'to cave in, to become depressed, to sink'), +('凹む', 'へこむ', 'to be dented, to be indented, to yield, to give, to sink, to collapse, to cave in, to be beaten, to be overwhelmed, to yield, to give in, to give up, to be disheartened, to feel down, to feel depressed, to suffer a loss, to lose'), +('凸凹', 'でこぼこ', 'unevenness, roughness, ruggedness, bumpiness, inequality, imbalance, unevenness, difference'), +('穴ぼこ', 'あなぼこ', 'hole, hollow, pothole (road, pavement, etc.)'), +('畝', 'せ', 'se (Japanese unit of area equal to 30 tsubo, approx. 99.174 m.sq.)'), +('畝', 'うね', 'ridge (in field), row of raised earth when planting crops, rib (cloth, mountains, sea), cord (e.g. corduroy)'), +('畝り', 'うねり', 'undulation, winding, meandering, swell (of waves), surge, billow, roller'), +('押す', 'おす', 'to push, to press, to apply pressure from above, to press down, to stamp (i.e. a passport), to apply a seal, to affix (e.g. gold leaf), to press (someone for something), to urge, to compel, to influence, to overwhelm, to overpower, to repress, to push (events along), to advance (a plan), to do in spite of ..., to do even though ..., to force, to make sure, to be pressed for time, to advance troops, to attack, (of light) to be diffused across an entire surface'), +('押忍', 'おっす', 'hi!, yo!, hey man!, hey dude!'), +('押さえる', 'おさえる', 'to pin down, to hold down, to press down, to cover (esp. a part of one''s body with one''s hand), to clutch (a body part in pain), to press (a body part), to get a hold of, to obtain, to seize, to catch, to arrest, to grasp (a point), to comprehend, to quell, to subdue, to suppress, to repress, to hold back, to check, to curb, to contain'), +('押さえる', 'おさえる', 'to pin down, to hold down, to press down, to cover (esp. a part of one''s body with one''s hand), to clutch (a body part in pain), to press (a body part), to get a hold of, to obtain, to seize, to catch, to arrest, to grasp (a point), to comprehend, to quell, to subdue, to suppress, to repress, to hold back, to check, to curb, to contain'), +('奥', 'おく', 'inner part, inside, interior, depths (e.g. of a forest), back (of a house, drawer, etc.), bottom (e.g. of one''s heart), recesses, heart'), +('奥さん', 'おくさん', 'wife, your wife, his wife, married lady, madam'), +('山奥', 'やまおく', 'deep in the mountains, mountain recesses'), +('大奥', 'おおおく', 'inner palace (in Edo Castle), palace''s ladies chambers, shogun''s harem'), +('奥まる', 'おくまる', 'to lie deep in, to extend far back'), +('殴る', 'なぐる', 'to strike, to hit, to beat, to punch'), +('殴る蹴る', 'なぐるける', 'punching and kicking'), +('汚す', 'よごす', 'to pollute, to contaminate, to soil, to make dirty, to stain, to disgrace, to dishonour, to dishonor, to defile'), +('汚れる', 'けがれる', 'to be violated, to be corrupted, to be polluted, to be stained'), +('汚らわしい', 'けがらわしい', 'filthy, unfair, dirty, untouchable, disgusting, nasty, foul, odious, repulsive'), +('汚す', 'よごす', 'to pollute, to contaminate, to soil, to make dirty, to stain, to disgrace, to dishonour, to dishonor, to defile'), +('汚れる', 'よごれる', 'to get dirty, to become dirty, to become sullied, to become corrupted, to lose one''s chastity'), +('汚い', 'きたない', 'dirty, filthy, foul, unclean, disordered, messy, untidy, poor (e.g. handwriting), indecent (language, etc.), dirty, vulgar, coarse, dastardly, mean, base, underhanded, stingy, greedy'), +('汚い戦争', 'きたないせんそう', 'Dirty War (period of state terrorism in Argentina; 1976-1983)'), +('盛ん', 'さかん', 'prosperous, flourishing, thriving, successful, popular, widespread, active, lively, energetic, vigorous, brisk, strong, enthusiastic, eager, hearty, frequent, repeated'), +('翁', 'おう', 'old man, venerable gentleman, venerable, old, father'), +('翁恵比須', 'おきなえびす', 'Beyrich''s slit shell (species of sea snail, Pleurotomaria beyrichii)'), +('乙', 'きのと', 'second in rank, second sign of the Chinese calendar'), +('乙亥', 'きのとい', 'Wood Boar (12th year of the sexagenary cycle, e.g. 1935, 1995, 2055)'), +('恐れ', 'おそれ', 'fear, horror, anxiety, concern, uneasiness, reverence'), +('俺', 'おれ', 'I, me'), +('俺たち', 'おれたち', 'we, us'), +('卸す', 'おろす', 'to sell wholesale, to grate (e.g. vegetables), to cut up fish'), +('卸', 'おろし', 'wholesale'), +('下ろし', 'おろし', 'dropping, unloading, removing, grated vegetables, fruit, etc., grater, using new tools (or clothes, etc.), new tools (or clothes, etc.)'), +('仲卸', 'なかおろし', 'intermediate wholesaler, middle trader, middleman, broker'), +('貴金属卸', 'ききんぞくおろし', 'wholesale (wholesaler) in precious metals'), +('卸', 'おろし', 'wholesale'), +('下ろし', 'おろし', 'dropping, unloading, removing, grated vegetables, fruit, etc., grater, using new tools (or clothes, etc.), new tools (or clothes, etc.)'), +('仲卸', 'なかおろし', 'intermediate wholesaler, middle trader, middleman, broker'), +('貴金属卸', 'ききんぞくおろし', 'wholesale (wholesaler) in precious metals'), +('穏やか', 'おだやか', 'calm, quiet, gentle, peaceful, mild, moderate, reasonable, amicable'), +('臆する', 'おくする', 'to be hesitant, to feel timid'), +('架ける', 'かける', 'to suspend between two points, to build (a bridge, etc.), to put up on something (e.g. legs up on table)'), +('架かる', 'かかる', 'to span, to bridge, to cross, to straddle'), +('靴', 'くつ', 'shoe, shoes, boots, footwear, footgear'), +('靴下', 'くつした', 'socks, sock, stockings, stocking'), +('胴付長靴', 'どうつきながくつ', 'waders (waterproof pants often fitted with boots, used mostly by fishermen)'), +('厚底靴', 'あつぞこぐつ', 'platform shoes, thick-soled shoes'), +('苛める', 'いじめる', 'to ill-treat, to bully, to torment, to pick on, to tease, to be cruel to, to persecute, to be tough on (e.g. one''s body), to treat harshly'), +('苛む', 'さいなむ', 'to torment, to torture, to harass'), +('苛立つ', 'いらだつ', 'to be irritated, to get annoyed, to lose one''s patience'), +('蚊', 'か', 'mosquito'), +('蚊帳', 'かや', 'mosquito net'), +('マラリア蚊', 'マラリアか', 'malaria mosquito'), +('家蚊', 'いえか', 'house mosquito (genus Culex)'), +('雅', 'みやび', 'refinement, elegance, grace'), +('雅び男', 'みやびお', 'elegant and refined man'), +('渦', 'うず', 'whirlpool, swirl, eddy, vortex, maelstrom'), +('渦巻き', 'うずまき', 'whirlpool, maelstrom, vortex, eddy, swirl, spiral (shape, pattern)'), +('寒冷渦', 'かんれいうず', 'cold vortex'), +('極渦', 'きょくうず', 'polar vortex, polar cell'), +('飢える', 'うえる', 'to starve, to be famished, to be hungry, to be starved of (e.g. love), to be thirsty for (e.g. knowledge), to be hungry for'), +('花', 'はな', 'flower, blossom, bloom, petal, cherry blossom, beauty, blooming (esp. of cherry blossoms), ikebana, hanafuda, (the) best, glorious, lovely'), +('華やか', 'はなやか', 'showy, brilliant, gorgeous, florid, gay'), +('武士道の華', 'ぶしどうのはな', 'flower of chivalry (Bushido)'), +('雪の花', 'ゆきのはな', 'snowdrop (Galanthus spp.), snow falling like flower petals, snow on a tree resembling a flower, red snow'), +('暇', 'ひま', 'spare time, free time, leisure, time (e.g. time it takes to do something), time off, day off, vacation, holiday, leave, quitting (one''s job), firing someone, divorcing (one''s spouse), (being) inactive, (of one''s business) slow, leaving, departing'), +('暇つぶし', 'ひまつぶし', 'waste of time, killing time'), +('暇暇', 'ひまひま', 'one''s leisure hours'), +('暇', 'ひま', 'spare time, free time, leisure, time (e.g. time it takes to do something), time off, day off, vacation, holiday, leave, quitting (one''s job), firing someone, divorcing (one''s spouse), (being) inactive, (of one''s business) slow, leaving, departing'), +('暇乞い', 'いとまごい', 'leave-taking, (saying) goodbye, requesting leave (from work)'), +('牙', 'きば', 'tusk, fang'), +('牙海蜷', 'きばうみにな', 'mud creeper (Terebralia palustris)'), +('災い', 'わざわい', 'disaster, calamity, misfortune, trouble, woes'), +('災い転じて福となす', 'わざわいてんじてふくとなす', 'to turn misfortune into fortune (esp. through one''s own efforts), to turn the potential disaster to one''s advantage'), +('稼ぐ', 'かせぐ', 'to earn (income), to make (money), to score (points, victory), to gain (time), to play (for time), to work hard (at one''s job), to labor, to labour, to toil'), +('稼ぐに追いつく貧乏なし', 'かせぐにおいつくびんぼうなし', 'poverty is a stranger to industry, diligence is the mother of good fortune'), +('嫁', 'よめ', 'wife, bride, (one''s) daughter-in-law'), +('嫁入り', 'よめいり', 'marriage, wedding'), +('新嫁', 'しんよめ', 'newly-wed bride'), +('弟嫁', 'おとうとよめ', 'younger brother''s wife'), +('嫁ぐ', 'とつぐ', 'to marry (of a woman), to become a bride, to marry into (a family), to have sexual intercourse'), +('怪しい', 'あやしい', 'suspicious, dubious, questionable, dodgy, shady, fishy, doubtful, unsure, uncertain, unlikely, implausible, untrustworthy, unreliable, clumsy, awkward, shaky, poor, strange, weird, eerie, spooky, uncanny, ominous (e.g. weather), threatening, dangerous (e.g. financial situation), uncertain, suspicious (of a potential amorous relation), mysterious, bewitching, alluring, enticing, enchanting'), +('怪しい手つきで', 'あやしいてつきで', 'clumsily, with clumsy hands'), +('怪しむ', 'あやしむ', 'to suspect'), +('瓦', 'かわら', 'roof tile'), +('瓦状', 'かわらがさね', 'imbricate, tegular, overlapping'), +('瓦', 'グラム', 'gram, gramme'), +('悔いる', 'くいる', 'to regret'), +('悔やむ', 'くやむ', 'to mourn, to lament, to be sorry, to regret, to repent'), +('悔しい', 'くやしい', 'frustrated (over a failure, humiliation or injustice), annoyed, chagrined, (bitterly) disappointed, bitter, vexed, frustrating, annoying, regrettable'), +('戒める', 'いましめる', 'to warn against, to caution against, to admonish, to scold, to rebuke, to prohibit, to forbid, to ban, to be cautious, to detest, to loathe, to punish'), +('塊', 'かたまり', 'lump, mass, bundle, clump, clod, cluster, group, crowd, embodiment (of an idea, quality, feeling etc.), personification'), +('塊肉', 'かたまりにく', 'chunk of meat (e.g. for grilling), joint of meat'), +('一塊', 'いっかい', 'one lump, one group'), +('拝金主義の塊', 'はいきんしゅぎのかたまり', 'money-worshiper'), +('潰す', 'つぶす', 'to smash, to crush, to flatten, to shut down, to put out of business, to force (a company) to close up shop, to wreck, to break, to block, to thwart, to butcher, to slaughter, to kill (livestock, for food), to kill (time), to while away (the time), to use up (one''s time), to waste (e.g. talents)'), +('潰れる', 'つぶれる', 'to be crushed, to be smashed, to be broken, to collapse, to become useless, to cease functioning, to be wasted (e.g. time), to go bankrupt, to go out of business, to fail'), +('潰える', 'ついえる', 'to fall apart, to collapse, to become useless, to be completely defeated (in battle), to be wiped out, to fall apart (one''s body or health)'), +('壊す', 'こわす', 'to break, to destroy, to demolish, to wreck, to ruin, to spoil, to damage, to break (a bill, etc.)'), +('壊れる', 'こわれる', 'to be broken, to break, to fall through, to come to nothing'), +('皆', 'みんな', 'everyone, everybody, all, everything, all'), +('皆さん', 'みなさん', 'all, everyone, everybody'), +('皆が皆', 'みんながみんな', 'each and all, every single one, everybody'), +('皆々', 'みなみな', 'all, everyone, everybody, everything'), +('皆', 'みんな', 'everyone, everybody, all, everything, all'), +('皆して', 'みんなして', 'everyone at once, everyone together'), +('皆が皆', 'みんながみんな', 'each and all, every single one, everybody'), +('懐', 'ふところ', 'inside the breast of one''s clothing (esp. kimono), bosom, (breast) pocket, space between one''s chest and outstretched arms, (one''s) reach, heart (e.g. of a mountain), bosom (e.g. of nature), depths, inner part, mind, heart, inner thoughts, money (one is carrying), purse, pocketbook'), +('懐が暖かい', 'ふところがあったかい', 'flush with money, having a full purse, having a full handbag'), +('苦しい懐', 'くるしいふところ', 'tight budget'), +('自然の懐', 'しぜんのふところ', 'bosom of Nature'), +('懐かしい', 'なつかしい', 'dear (old), fondly-remembered, beloved, missed, nostalgic'), +('懐かしむ', 'なつかしむ', 'to yearn for (someone, something), to miss'), +('懐く', 'なつく', 'to become attached (to), to take (to), to become affectionate (with), to be tamed'), +('懐ける', 'なつける', 'to win over, to win another''s heart'), +('抱く', 'いだく', 'to hold in one''s arms (e.g. a baby), to embrace, to hug, to have (a thought or feeling), to hold, to harbour (suspicion, doubt, etc.), to harbor, to bear (a grudge, ill will, etc.), to entertain (hope, illusions, etc.), to cherish (e.g. an ambition)'), +('思う', 'おもう', 'to think, to consider, to believe, to reckon, to think (of doing), to plan (to do), to judge, to assess, to regard, to imagine, to suppose, to dream, to expect, to look forward to, to feel, to be (in a state of mind), to desire, to want, to recall, to remember'), +('涯', 'はて', 'horizon'), +('柿', 'かき', 'kaki, Japanese persimmon (Diospyros kaki)'), +('柿の木', 'かきのき', 'Japanese persimmon (Diospyros kaki), Chinese persimmon, kaki'), +('筆柿', 'ふでがき', 'fudegaki (variety of sweet Japanese persimmon)'), +('ピー柿', 'ピーかき', 'mix of peanuts and spicy baked or fried mochi chips in the shape of kaki (Japanese persimmon) seeds'), +('岳', 'たけ', 'peak, mountain'), +('岳烏', 'だけがらす', 'spotted nutcracker (Nucifraga caryocatactes)'), +('御嶽', 'みたけ', 'large, high mountain'), +('躯', 'むくろ', '(dead) body, corpse'), +('得る', 'える', 'to get, to earn, to acquire, to procure, to gain, to secure, to attain, to obtain, to win, to understand, to comprehend, to receive something undesirable (e.g. a punishment), to get (ill), to be able to ..., can ...'), +('比べる', 'くらべる', 'to compare, to make a comparison, to compete, to vie'), +('隔てる', 'へだてる', 'to separate (by distance, time, etc.), to isolate, to partition, to divide, to interpose, to have between, to alienate, to estrange'), +('隔たる', 'へだたる', 'to be distant'), +('廓', 'くるわ', 'district, quarter, enclosure, area enclosed by earthwork, red-light district, wide and empty'), +('郭言葉', 'くるわことば', 'sociolect or secret language used by prostitutes in red-light districts (Edo period), vulgar words used by prostitutes (Edo period)'), +('垣', 'かき', 'fence, hedge, barrier, wall, railing'), +('垣根', 'かきね', 'hedge, fence, border, limit'), +('築垣', 'ついがき', 'mud wall with a roof'), +('岩垣', 'いわかき', 'stone wall, natural stone wall'), +('崖', 'がけ', 'cliff, precipice, precipice, brink of a dangerous situation'), +('崖崩れ', 'がけくずれ', 'landslide, landslip'), +('財政の崖', 'ざいせいのがけ', 'fiscal cliff (e.g. potential 2013 US financial crisis), fiscal precipice'), +('ガラスの崖', 'ガラスのがけ', 'glass cliff (corporate leadership)'), +('概ね', 'おおむね', 'in general, generally, mostly, roughly, largely, mainly, on the whole, by and large, gist, point, main idea'), +('脅す', 'おどす', 'to threaten, to menace, to frighten (into doing)'), +('殻', 'から', 'shell, husk, hull, pod, chaff'), +('殻むき', 'からむき', 'shelling (e.g. of eggs, nuts, crabs and such)'), +('雪花菜', 'おから', 'okara, soy pulp, tofu dregs, edible pulp separated from soybean milk in the production of tofu'), +('もぬけの殻', 'もぬけのから', 'completely empty (of a residence, etc.), vacant, deserted, body from which the soul has left, corpse, shed skin (of a snake, insect, etc.)'), +('殻', 'がら', 'chicken bones (e.g. for soup), chicken carcass, poor-quality coke (coal), left-overs, remnants'), +('灰殻', 'はいがら', 'ashes'), +('燃え殻', 'もえがら', 'embers, cinders, burnt residue, combustion residue'), +('蓋', 'ふた', 'cover, lid, cap'), +('蓋を開ける', 'ふたをあける', 'to open the lid, to lift a lid, to open the lid (on), to make public, to start (something), to look at the results (consequences, outcome, effect), to look at the condition of something, to open (of a theatre)'), +('ポケ蓋', 'ポケふた', 'manhole cover decorated with Pokémon creatures'), +('臭い物に蓋', 'くさいものにふた', 'looking the other way, hushing up a problem'), +('蓋し', 'けだし', 'certainly, really, truly, indeed, possibly, maybe, perhaps, probably'), +('覆う', 'おおう', 'to cover, to hide, to conceal, to wrap, to disguise'), +('汗', 'あせ', 'sweat, perspiration, moisture, condensation, gulp, oops'), +('汗ばむ', 'あせばむ', 'to be sweaty'), +('滝汗', 'たきあせ', 'profuse sweating'), +('手汗', 'てあせ', 'palm sweat'), +('且つ', 'かつ', 'and, moreover, besides, as well as, and on top of that, at the same time'), +('且つ又', 'かつまた', 'besides, furthermore, moreover'), +('釜', 'かま', 'iron pot, kettle'), +('釜揚げうどん', 'かまあげうどん', 'straight-from-the-pot udon, udon noodles pulled straight from the pot and served in the hot water used for boiling (traditionally without being soaked in cold water), eaten by dipping in sauce'), +('御釜', 'おかま', 'pot, volcanic crater, (one''s) buttocks, male homosexual, effeminate man, male transvestite'), +('一つ釜', 'ひとつかま', 'one or the same pot, eating or living together'), +('刈る', 'かる', 'to cut (grass, hair, etc.), to mow, to clip, to trim, to prune, to shear, to reap, to harvest'), +('刈萱', 'かるかや', 'Themeda triandra var. japonica (variety of kangaroo grass), Cymbopogon tortilis var. goeringii (variety of grass closely related to lemongrass), thatching grass, thatching sedge'), +('渇く', 'かわく', 'to be thirsty, to feel thirsty, to thirst for, to crave'), +('甘い', 'あまい', 'sweet-tasting, sweet, sugary, sugared, fragrant (smelling), sweet (music), lightly salted, light in salt, not spicy, naive, overly optimistic, soft on, generous, indulgent, easy-going, lenient, half-hearted, not finished properly, insufficient, not satisfactory, inadequate, loose, mild, tempting, enticing, luring'), +('甘いもの', 'あまいもの', 'sweets, sweet food'), +('甘える', 'あまえる', 'to behave like a spoiled child, to fawn on, to take advantage of, to presume upon (e.g. another''s benevolence), to depend on'), +('甘やかす', 'あまやかす', 'to pamper, to spoil'), +('上手い', 'うまい', 'skillful, skilful, skilled, good, expert, clever (expression, trick, etc.), apt, appropriate, delicious, tasty, good, nice, good (deal, idea, etc.), profitable, promising, lucky, fortunate, successful, satisfactory, splendid'), +('うまい話', 'うまいはなし', 'too-good-to-be-true offers (e.g. scams and frauds), too-good-to-be-true stories'), +('冠', 'かんむり', 'traditional cap worn by Shinto clergy and courtiers, crown, diadem, coronet, top kanji radical, first verse of a haikai, etc., best, peerless, first, name, title, named sponsorship of a program, event, team, etc.'), +('冠海雀', 'かんむりうみすずめ', 'Japanese murrelet (Synthliboramphus wumizusume), crested murrelet'), +('初冠', 'ういこうぶり', 'crowning a boy for the first time at a coming-of-age ceremony, noh cap with a rolled or drooping tail (indicative of nobility)'), +('老冠', 'おいかんむり', 'kanji "old" radical at top'), +('肝', 'きも', 'liver, innards, courage, spirit, pluck, guts, crux, essential point, key'), +('肝を冷やす', 'きもをひやす', 'to be struck with terror, to be terrified, to be scared to death'), +('群肝', 'むらぎも', 'internal organs, entrails'), +('あん肝', 'あんきも', 'monkfish liver, goosefish liver'), +('楔', 'くさび', 'wedge, chock, linchpin, lynchpin, tie, bond'), +('鎌', 'かま', 'sickle, leading question, trick question, sickle-and-chain (weapon), spear with curved cross-blades, gooseneck tenon and mortise joint, noisiness, part of a fish around the gills'), +('鎌倉', 'かまくら', 'Kamakura (city)'), +('大鎌', 'おおがま', 'scythe'), +('大脳鎌', 'だいのうかま', 'falx cerebri, cerebral falx'), +('葛', 'くず', 'kudzu (Pueraria montana), Japanese arrowroot, Chinese moonseed (Sinomenium acutum)'), +('葛籠', 'つづら', 'wicker clothes hamper'), +('熊葛', 'くまつづら', 'common vervain (Verbena officinalis), common verbena'), +('葛', 'くず', 'kudzu (Pueraria montana), Japanese arrowroot, Chinese moonseed (Sinomenium acutum)'), +('葛餡', 'くずあん', 'kudzu sauce'), +('顎', 'あご', 'jaw, chin, barb (of a fishhook)'), +('あごで使う', 'あごでつかう', 'to set someone to work in an arrogant fashion, to push someone around, to chatter, to jaw, to jabber'), +('二重顎', 'にじゅうあご', 'double chin'), +('下顎', 'したあご', 'lower jaw, mandible'), +('顎門', 'あぎと', 'chin, jaw, gills, branchia'), +('掛ける', 'かける', 'to hang up (e.g. a coat, a picture on the wall), to let hang, to suspend (from), to hoist (e.g. sail), to raise (e.g. flag), to put on (e.g. a blanket), to put on top of, to cover, to lay, to spread, to put on (glasses, etc.), to wear (a necklace, etc.), to make (a call), to spend (time, money), to expend, to use, to pour (liquid) onto, to sprinkle (powder or spices) onto, to splash, to throw (e.g. water) onto, to turn on (an engine, radio, etc.), to set (a dial, alarm clock, etc.), to put on (a DVD, song, etc.), to use (a device, implement, etc.), to cause (someone inconvenience, trouble, etc.), to burden (someone), to impose, to multiply (arithmetic operation), to secure (e.g. lock), to take a seat, to sit, to rest (something on something else), to support (something on something else), to bind, to wager, to bet, to risk, to stake, to gamble, to put an effect (spell, anaesthetic, etc.) on, to hold (a play, festival, etc.), to hold an emotion for (pity, hope, etc.), to argue (in court), to deliberate (in a meeting), to present (e.g. idea to a conference, etc.), to increase further, to catch (in a trap, etc.), to set atop, to erect (a makeshift building), to apply (insurance), to pun (on a word), to use (a word) as a pivot word, to play on words, to be partway doing ..., to begin (but not complete) ..., to be about to ..., to address (someone), to direct (something, to someone), to do (something, to someone)'), +('掛け', 'かけ', 'credit, money owed on an account, bill, hot noodles in broth, proportion (of wholesale price, as tenths of list price), in the midst of, rest, rack, hanger'), +('掛ける', 'かける', 'to hang up (e.g. a coat, a picture on the wall), to let hang, to suspend (from), to hoist (e.g. sail), to raise (e.g. flag), to put on (e.g. a blanket), to put on top of, to cover, to lay, to spread, to put on (glasses, etc.), to wear (a necklace, etc.), to make (a call), to spend (time, money), to expend, to use, to pour (liquid) onto, to sprinkle (powder or spices) onto, to splash, to throw (e.g. water) onto, to turn on (an engine, radio, etc.), to set (a dial, alarm clock, etc.), to put on (a DVD, song, etc.), to use (a device, implement, etc.), to cause (someone inconvenience, trouble, etc.), to burden (someone), to impose, to multiply (arithmetic operation), to secure (e.g. lock), to take a seat, to sit, to rest (something on something else), to support (something on something else), to bind, to wager, to bet, to risk, to stake, to gamble, to put an effect (spell, anaesthetic, etc.) on, to hold (a play, festival, etc.), to hold an emotion for (pity, hope, etc.), to argue (in court), to deliberate (in a meeting), to present (e.g. idea to a conference, etc.), to increase further, to catch (in a trap, etc.), to set atop, to erect (a makeshift building), to apply (insurance), to pun (on a word), to use (a word) as a pivot word, to play on words, to be partway doing ..., to begin (but not complete) ..., to be about to ..., to address (someone), to direct (something, to someone), to do (something, to someone)'), +('打ち掛け', 'うちかけ', 'women''s bridal robe with trailing skirts worn over a kimono, ending play for the day, leaving a game unfinished (esp. Go)'), +('足掛け', 'あしかけ', 'leg trip (in sumo, judo, etc.), foothold, pedal, indicates a consecutive period of time incl. incomplete days, etc. at the ends'), +('掛かる', 'かかる', 'to take (a resource, e.g. time or money), to hang, to come into view, to arrive, to come under (a contract, a tax), to start (engines, motors), to attend, to deal with, to handle, to have started to, to be on the verge of, to overlap (e.g. information in a manual), to cover, to (come) at, to be fastened, to be covered (e.g. with dust, a table-cloth, etc.), to be caught in, to get a call, to depend on'), +('掛かり', 'かかり', 'starting, engaging, expenses, costs, attack (esp. a corner approach in the game of go), barb, charge, duty, person in charge, official, clerk'), +('係長', 'かかりちょう', 'subsection head, assistant manager, chief clerk'), +('掛かり', 'かかり', 'starting, engaging, expenses, costs, attack (esp. a corner approach in the game of go), barb, charge, duty, person in charge, official, clerk'), +('係長', 'かかりちょう', 'subsection head, assistant manager, chief clerk'), +('滑る', 'すべる', 'to glide, to slide (e.g. on skis), to slip, to fail (an examination), to bomb (when telling a joke), to drop, to go down, to come down, to fall (e.g. in status)'), +('滑らか', 'なめらか', 'smooth (of a surface), glassy, velvety, soft, smooth (of an action, proceedings, etc.), fluent (speech), fluid, trouble-free, continuously differentiable'), +('陥る', 'おちいる', 'to fall into (e.g. a hole), to fall into (chaos, depression, dilemma, illness, etc.), to fall into (a trap, etc.), to fall, to surrender, to capitulate'), +('陥れる', 'おとしいれる', 'to trap (into a difficult situation), to put (in a fix), to throw (e.g. into turmoil), to trick (into doing), to lure (into a trap), to frame (for a crime), to capture (a castle, fortress, etc.), to take, to reduce, to drop (something) into'), +('括る', 'くくる', 'to tie up, to tie together, to bind, to bundle, to fasten, to hang (oneself), to summarize, to put (it all) together, to consolidate, to estimate, to expect, to tie-dye, to detain, to check, to restrain'), +('缶', 'かま', 'boiler'), +('乾く', 'かわく', 'to get dry'), +('乾かす', 'かわかす', 'to dry (clothes, etc.), to desiccate'), +('干す', 'ほす', 'to air, to dry, to desiccate, to drain (off), to drink up, to deprive of a role, job, etc.'), +('戌亥', 'いぬい', 'northwest'), +('貫く', 'つらぬく', 'to go through, to pierce, to penetrate, to run through (e.g. a river through a city), to pass through, to stick to (opinion, principles, etc.), to carry out, to persist with, to keep (e.g. faith), to maintain (e.g. independence)'), +('貫', 'ぬき', 'crosspiece (between pillars, etc.), penetrating tie beam'), +('貫き通す', 'つらぬきとおす', 'to go through, to pierce, to penetrate, to stick to (opinion, principles, etc.), to carry out, to persist with, to keep (e.g. faith), to maintain (e.g. independence)'), +('吹き抜き', 'ふきぬき', 'stairwell, atrium, streamer, pennant'), +('指貫', 'さしぬき', 'type of hakama worn in ancient times'), +('喚く', 'わめく', 'to shout, to cry, to scream, to clamour'), +('換える', 'かえる', 'to replace, to exchange, to interchange, to substitute'), +('替わる', 'かわる', 'to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch'), +('患う', 'わずらう', 'to be ill, to suffer from, to worry about, to be concerned about, to have trouble doing ..., to be unable to ..., to fail to ...'), +('耐える', 'たえる', 'to bear, to stand, to endure, to put up with, to support, to withstand, to resist, to brave, to be fit for, to be equal to'), +('堪る', 'たまる', 'to bear, to endure'), +('堪える', 'こらえる', 'to bear, to stand, to endure, to put up with, to restrain, to control, to keep a check on, to forgive, to put up with, to pardon'), +('堪える', 'こらえる', 'to bear, to stand, to endure, to put up with, to restrain, to control, to keep a check on, to forgive, to put up with, to pardon'), +('敢えて', 'あえて', 'purposely (of something needless, unexpected or seemingly counterproductive, etc.), daringly (doing something), deliberately, intentionally, not necessarily, not particularly, not especially, definitely not'), +('敢え無い', 'あえない', 'disappointing (end, result, etc.), sad, miserable, tragic, fleeting, transient'), +('勧める', 'すすめる', 'to recommend (someone to do), to advise, to encourage, to urge, to recommend (a book, someone for a position, etc.), to suggest, to offer (a drink, cigarette, seat, etc.)'), +('寛ぐ', 'くつろぐ', 'to relax, to feel at home'), +('寛い', 'ひろい', 'broadminded'), +('喜ぶ', 'よろこぶ', 'to be delighted, to be glad, to be pleased, to congratulate, to gratefully accept'), +('緩い', 'ゆるい', 'loose, lenient, lax, gentle (curve, slope, etc.), slow, weak, soft, not firm, difficult, hard'), +('緩やか', 'ゆるやか', 'loose, slack, gentle (slope, curve), slow (speed), lenient, liberal, lax'), +('緩やかに進む', 'ゆるやかにすすむ', 'to proceed slowly'), +('緩む', 'ゆるむ', 'to become loose, to slacken (e.g. rope), to become less tense, to relax, to let one''s guard down, to slacken (e.g. coldness, supervision), to become lax, to become softer (e.g. ground, facial expression), (of ice) to partially melt, to decrease (e.g. speed), (of a market price) to go down slightly'), +('緩める', 'ゆるめる', 'to loosen, to slacken, to relax (attention, efforts, etc.), to let down (one''s guard), to relieve (tension), to relax (a rule), to ease (e.g. restrictions), to loosen (control), to reduce (speed), to slow down, to ease up, to make more gradual (of a slope)'), +('憾む', 'うらむ', 'to regret'), +('恨むらくは', 'うらむらくは', 'I regret that, I feel terrible but, I''m sorry but'), +('帰る', 'かえる', 'to return, to come home, to go home, to go back, to leave (of a guest, customer, etc.), to get home, to get to home plate'), +('輪', 'わ', 'ring, circle, loop, hoop, wheel, circle (e.g. of friends), planetary ring'), +('浮き輪', 'うきわ', 'swim ring, swimming ring, life buoy, life belt, life preserver, lifesaver'), +('耳環', 'みみわ', 'earring (non-pierced), helix'), +('唐', 'から', 'China (sometimes also used in ref. to Korea or other foreign countries)'), +('唐国', 'からくに', 'China, Korea'), +('鑑みる', 'かんがみる', 'to take into account, to bear in mind, to consider, to learn from, to take warning from'), +('鑑', 'かがみ', 'model, pattern, paragon, exemplar'), +('手鑑', 'てかがみ', 'collection of handwriting (usu. old), model, example'), +('武士の鑑', 'ぶしのかがみ', 'paragon of knighthood'), +('含む', 'ふくむ', 'to contain, to comprise, to have, to hold, to include, to embrace, to hold in the mouth, to bear in mind, to understand, to harbor (grudge, etc.), to harbour, to express (emotion, etc.), to imply'), +('含むところがある', 'ふくむところがある', 'to harbor ill feeling'), +('含める', 'ふくめる', 'to include (in a group or scope), to instruct, to make one understand, to include (a nuance), to put in (an implication), to put in (someone''s) mouth, to permeate with flavor'), +('弄ぶ', 'もてあそぶ', 'to play with (a toy, one''s hair, etc.), to fiddle with, to toy with (one''s emotions, etc.), to trifle with, to do with something as one pleases, to appreciate'), +('企てる', 'くわだてる', 'to plan, to plot, to propose, to design, to intend, to contemplate, to attempt (e.g. suicide, murder), to undertake (e.g. business), to stand on tip-toes'), +('企む', 'たくらむ', 'to scheme, to plan, to play a trick, to invent, to conspire, to frame up'), +('忌む', 'いむ', 'to avoid, to refrain from, to shun, to detest'), +('忌むべき', 'いむべき', 'abominable, detestable'), +('忌み', 'いみ', 'mourning, abstinence, taboo, religious purification, pure, holy'), +('忌み明け', 'いみあけ', 'end of mourning'), +('子忌み', 'ねいみ', 'collecting herbs and pulling out young pine trees by the roots (annual event held on the first day of the Rat of the New Year)'), +('物忌み', 'ものいみ', 'fasting, abstinence, confinement to one''s house on an unlucky day'), +('忌まわしい', 'いまわしい', 'unpleasant, disagreeable, abominable, disgusting, unsavory, unlucky, inauspicious, ominous'), +('奇しき', 'くしき', 'strange, mysterious, queer'), +('奇しくも', 'くしくも', 'strangely, oddly, miraculously, mysteriously'), +('奇しき', 'くしき', 'strange, mysterious, queer'), +('技', 'わざ', 'technique, art, skill, move'), +('頑な', 'かたくな', 'obstinate, stubborn, mulish, die-hard, bigoted'), +('祈る', 'いのる', 'to pray, to wish'), +('捨てる', 'すてる', 'to throw away, to cast away, to dump, to discard, to abandon, to desert, to leave, to give up, to resign'), +('飢える', 'うえる', 'to starve, to be famished, to be hungry, to be starved of (e.g. love), to be thirsty for (e.g. knowledge), to be hungry for'), +('碁', 'ご', 'go (board game)'), +('毀つ', 'こぼつ', 'to destroy, to break, to damage'), +('壊す', 'こわす', 'to break, to destroy, to demolish, to wreck, to ruin, to spoil, to damage, to break (a bill, etc.)'), +('毀れる', 'こぼれる', 'to be chipped, to be nicked'), +('壊れる', 'こわれる', 'to be broken, to break, to fall through, to come to nothing'), +('輝く', 'かがやく', 'to shine, to glitter, to sparkle'), +('輝く女性', 'かがやくじょせい', 'women who excel, women in prominent positions'), +('紛い', 'まがい', 'imitation, sham, -like'), +('紛い物', 'まがいもの', 'imitation, fake, sham'), +('擬き', 'もどき', '-like, pseudo-, mock ..., imitation ..., in the style of ..., comical character who mocks or apes the main character (in Japanese performing arts), criticism, censure'), +('銀竜草擬', 'ぎんりょうそうもどき', 'Indian pipe (Monotropa uniflora)'), +('太平洋赤坊擬', 'たいへいようあかぼうもどき', 'Longman''s beaked whale (Indopacetus pacificus), Indo-Pacific beaked whale, tropical bottlenose whale'), +('戯れる', 'たわむれる', 'to be playful, to gambol, to be amused (with something), to play, to sport, to frolic, to joke, to flirt with'), +('戯れる', 'たわむれる', 'to be playful, to gambol, to be amused (with something), to play, to sport, to frolic, to joke, to flirt with'), +('戯れる', 'たわむれる', 'to be playful, to gambol, to be amused (with something), to play, to sport, to frolic, to joke, to flirt with'), +('欺く', 'あざむく', 'to deceive, to delude, to trick, to fool, to be as ... as ... (e.g. "as bright as day", "as beautiful as a rose")'), +('鬼', 'おに', 'ogre, demon, oni, spirit of a deceased person, ogre-like person (i.e. fierce, relentless, merciless, etc.), it (in a game of tag, hide-and-seek, etc.), Chinese "ghost" constellation (one of the 28 mansions), very, extremely, super-'), +('鬼が出るか蛇が出るか', 'おにがでるかじゃがでるか', 'God only knows what may happen'), +('青鬼', 'あおおに', '(horned) blue demon, blue ogre'), +('赤鬼', 'あかおに', 'red-horned demon, red ogre'), +('幾つ', 'いくつ', 'how many, how old'), +('幾つか', 'いくつか', '(a) few, some, several'), +('幾ら', 'いくら', 'how much, something over, and something, -odd, however (much), no matter how'), +('幾らか', 'いくらか', 'some, (a) little, somewhat, to some extent, in part'), +('宜しい', 'よろしい', 'good, OK, all right, fine, very well, will do, may, can'), +('宜しく', 'よろしく', 'well, properly, suitably, best regards, please remember me, please treat me favorably (favourably), please take care of, please do, just like ..., as though one were ..., by all means, of course'), +('よろしくお願いいたします', 'よろしくおねがいいたします', 'please remember me, please help me, please treat me well, I look forward to working with you, please do, please take care of'), +('既に', 'すでに', 'already, too late'), +('既にして', 'すでにして', 'in the meantime, meanwhile'), +('亀', 'かめ', 'tortoise, turtle, heavy drinker, turtle crest, turtle mon'), +('亀の甲', 'かめのこう', 'tortoise shell'), +('お亀', 'おかめ', 'homely woman (esp. one with a small low nose, high flat forehead, and bulging cheeks), plain woman, soba in soup with slices of boiled fish paste, shiitake mushrooms, greens, seaweed, etc.'), +('出歯亀', 'でばかめ', 'voyeur, Peeping Tom'), +('偽る', 'いつわる', 'to lie, to cheat, to pretend, to feign, to falsify, to trick, to deceive'), +('偽', 'にせ', 'imitation, fake, phony, counterfeit, forged, bogus, sham, pseudo-'), +('偽物', 'にせもの', 'spurious article, forgery, counterfeit, imitation, sham'), +('偽り', 'いつわり', 'lie, falsehood, fiction, fabrication'), +('偽り語る', 'いつわりかたる', 'to speak falsely'), +('虐げる', 'しいたげる', 'to oppress, to persecute, to tyrannize'), +('喫む', 'のむ', 'to smoke (tobacco)'), +('丘', 'おか', 'hill, height, knoll, rising ground, bonus points awarded to the winner at the end of a game'), +('岡辺', 'おかべ', 'vicinity of a hill'), +('小高い丘', 'こだかいおか', 'small hill, low hill, hillock'), +('極める', 'きわめる', 'to carry to extremes, to go to the end of something, to investigate thoroughly, to master'), +('極まる', 'きわまる', 'to reach an extreme, to reach a limit, to terminate, to come to an end, extremely, to be stuck, to be in a dilemma, to be at a loss, to be decided, to be settled'), +('極まり', 'きわまり', 'extremity, end, bound, limit'), +('極まりない', 'きわまりない', 'extremely, in the extreme, knows no bounds (e.g. rudeness), unparalleled, boundless (e.g. universe, ocean), limitless'), +('極み', 'きわみ', 'height, acme, extremity, peak, end, limit'), +('窮みなき', 'きわみなき', 'without limit, endless'), +('足', 'あし', 'foot, paw, arm (of an octopus, squid, etc.), leg, gait, pace, bottom structural component (i.e. radical) of a kanji, means of transportation, money, coin'), +('脚がある', 'あしがある', 'to have legs, to be able to get around, to be a good runner'), +('舞脚', 'まいあし', 'kanji "dancing legs" radical (radical 136)'), +('二十脚', 'にじゅうあし', 'kanji "twenty legs" radical (radical 55)'), +('却って', 'かえって', 'on the contrary, rather, instead, all the more'), +('退ける', 'しりぞける', 'to repel, to drive away, to repulse, to reject'), +('朽ちる', 'くちる', 'to rot, to decay, to die in obscurity, to be forgotten with time'), +('糺す', 'ただす', 'to ascertain, to confirm, to verify, to make sure of'), +('吉川神道', 'よしかわしんとう', 'Yoshikawa Shinto (Confucianist form of Shinto, stripped of Buddhist influence)'), +('吉牛', 'よしぎゅう', 'Yoshinoya gyudon (beef on rice)'), +('土吉', 'つちよし', 'earth form of "good luck" character'), +('豊臣秀吉', 'とよとみひでよし', 'Toyotomi Hideyoshi'), +('虚しい', 'むなしい', 'empty, void, vacant, vain, fruitless, futile, ineffective, lifeless'), +('虚ろ', 'うつろ', 'cavity, hollow, void, hollow (voice, smile, etc.), blank (eyes, look, etc.), vacant (expression, stare, etc.), empty (words, heart, etc.)'), +('虚舟', 'うつろぶね', 'unidentified craft said to have washed ashore in Ibaraki Prefecture during the Edo period (sometimes alleged to have been a UFO)'), +('詰める', 'つめる', 'to stuff into, to jam, to cram, to pack, to fill, to plug, to stop up, to shorten, to move closer together, to reduce (spending), to conserve, to focus intently on, to strain oneself to do, to go through thoroughly, to work out (details), to bring to a conclusion, to wind up, to be on duty, to be stationed, to corner (esp. an opponent''s king in shogi), to trap, to checkmate, to cut off (one''s finger as an act of apology), to catch (one''s finger in a door, etc.), to do non-stop, to do continuously, to keep doing (without a break), to do completely, to do thoroughly, to force someone into a difficult situation by ...'), +('詰め', 'つめ', 'stuffing, packing, end (esp. the foot of a bridge), lowest-ranking guest at tea ceremony, tea master, endgame (esp. in shogi or used figuratively), sweet eel sauce, middle-aged woman, appointment to a particular workplace, using as the sole ground of judgement (judgment), continuing, keep doing for period of time'), +('詰める', 'つめる', 'to stuff into, to jam, to cram, to pack, to fill, to plug, to stop up, to shorten, to move closer together, to reduce (spending), to conserve, to focus intently on, to strain oneself to do, to go through thoroughly, to work out (details), to bring to a conclusion, to wind up, to be on duty, to be stationed, to corner (esp. an opponent''s king in shogi), to trap, to checkmate, to cut off (one''s finger as an act of apology), to catch (one''s finger in a door, etc.), to do non-stop, to do continuously, to keep doing (without a break), to do completely, to do thoroughly, to force someone into a difficult situation by ...'), +('お詰め', 'おつめ', 'lowest-ranking guest at tea ceremony, tea master'), +('詰まる', 'つまる', 'to be packed (with), to be full (space, schedule, etc.), to be blocked (road, pipe, nose, etc.), to be clogged, to be plugged up, to shorten (width, interval, etc.), to shrink (shirt, word form, etc.), to narrow, to be at a loss, to be hard pressed, to end up, to be settled, to become a geminate consonant, to hit the ball near the handle of the bat'), +('詰まるところ', 'つまるところ', 'in short, in brief, to sum up, ultimately, in the end, in the long run, when all is said and done, what it all comes down to, when you get right down to it'), +('詰む', 'つむ', 'to become fine (of fabric), to be checkmated, to be hard pressed, to be at a loss, to reach the limits'), +('嗅ぐ', 'かぐ', 'to sniff, to smell'), +('隔たる', 'へだたる', 'to be distant'), +('蹴爪', 'けづめ', 'fetlock (horse, etc.), spur (chicken, etc.), cockspur, dewclaw (dog, etc.)'), +('生贄', 'いけにえ', '(living) sacrifice, victim, scapegoat'), +('拒む', 'こばむ', 'to refuse, to reject, to decline, to prevent (from doing), to deny (e.g. access), to block'), +('臼', 'うす', 'millstone, mortar'), +('臼茸', 'うすたけ', 'shaggy chanterelle (Turbinellus floccosus), scaly chanterelle, woolly chanterelle'), +('提宇子', 'ダイウス', 'God'), +('搗き臼', 'つきうす', 'mortar (for pounding rice)'), +('臼搗く', 'うすづく', 'to pound (rice, etc.)'), +('及ぶ', 'およぶ', 'to reach, to amount to, to befall, to happen to, to extend, to go on (for, until), to be up to the task, to come up to, to compare with, to be a match (for), to commit (a crime), to require (to do)'), +('及び', 'および', 'and, as well as'), +('及び腰', 'およびごし', 'bent back, indecisive attitude, timidity, lack of nerve'), +('及び', 'および', 'and, as well as'), +('及び腰', 'およびごし', 'bent back, indecisive attitude, timidity, lack of nerve'), +('及ぼす', 'およぼす', 'to exert (influence), to exercise, to cause (e.g. damage), to do (e.g. harm), to bring about (e.g. benefits), to extend, to have an effect (on)'), +('叫ぶ', 'さけぶ', 'to shout, to cry, to scream, to shriek, to yell, to exclaim, to clamor (for or against), to clamour (for or against)'), +('依る', 'よる', 'to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at'), +('況して', 'まして', 'still more, to say nothing of, not to mention, still less'), +('況してや', 'ましてや', 'much less, to say nothing of'), +('況んや', 'いわんや', 'much more, not to mention, not to speak of, to say nothing of, let alone'), +('受ける', 'うける', 'to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well'), +('恐れる', 'おそれる', 'to fear, to be afraid of'), +('恐る', 'おそる', 'to fear, to be afraid'), +('恐るべき', 'おそるべき', 'dreadful, terrible, horrible, deplorable, fearsome, formidable, awesome, redoubtable'), +('恐ろしい', 'おそろしい', 'terrible, dreadful, terrifying, frightening, surprising, startling, tremendous, amazing'), +('恐ろしい思いをする', 'おそろしいおもいをする', 'to find oneself fearful, to have an awful time'), +('怖い', 'こわい', 'scary, frightening, eerie, dreadful'), +('怖いもの見たさ', 'こわいものみたさ', 'curiosity of fear, urge to look at something frightening, wanting to take a peek at something unpleasant'), +('怖がる', 'こわがる', 'to be afraid of, to fear, to dread, to be nervous (about), to be shy (of)'), +('狭い', 'せまい', 'narrow, confined, small, cramped, limited, narrow-minded, confining'), +('狭める', 'せばめる', 'to narrow, to reduce, to contract'), +('狭まる', 'せばまる', 'to narrow, to contract'), +('狭', 'さ', 'narrow, thin'), +('狭霧', 'さぎり', 'mist, fog'), +('若狭', 'わかさ', 'Wakasa (former province located in the south of present-day Fukui Prefecture)'), +('挟む', 'はさむ', 'to hold between (e.g. one''s fingers, chopsticks), to grip (from both sides), to put between, to sandwich between, to insert, to interpose, to catch (e.g. a finger in a door), to trap, to pinch, to insert (e.g. a break into proceedings), to interpose (e.g. an objection), to interject, to throw in (e.g. a joke), to be on either side of (a road, table, etc.), to have between each other, to be across (a street, river, etc.), to harbour (feelings), to cast (e.g. doubt)'), +('挟まる', 'はさまる', 'to get between, to be caught in'), +('差し挟む', 'さしはさむ', 'to insert, to interrupt, to slip in a word, to harbor (e.g. doubts), to harbour, to entertain (e.g. a theory)'), +('狂う', 'くるう', 'to go mad, to lose one''s mind, to go crazy, to go insane, to get out of order, to go amiss, to malfunction, to become imprecise, to go wrong (of a plan or expectation, etc.), to fall through, to get mixed up, to go crazy (over someone or something), to get enthusiastic, to go wild'), +('狂おしい', 'くるおしい', 'mad (with grief, love, etc.), crazy, out of one''s mind, on the verge of insanity'), +('狂おしい', 'くるおしい', 'mad (with grief, love, etc.), crazy, out of one''s mind, on the verge of insanity'), +('脅かす', 'おびやかす', 'to intimidate, to frighten, to scare, to threaten (e.g. peace), to jeopardize, to endanger, to imperil'), +('脅す', 'おどす', 'to threaten, to menace, to frighten (into doing)'), +('脅かす', 'おどかす', 'to threaten, to menace, to intimidate, to startle, to frighten, to scare'), +('矯める', 'ためる', 'to straighten, to correct, to cure, to falsify'), +('驚く', 'おどろく', 'to be surprised, to be astonished'), +('驚くほど', 'おどろくほど', 'to a surprising degree, to a remarkable extent, surprisingly, astonishingly, amazingly, alarmingly'), +('驚かす', 'おどろかす', 'to surprise, to frighten, to create a stir'), +('響く', 'ひびく', 'to resound, to be heard far away, to reverberate, to shake, to vibrate, to come (home), to remain (with someone), to have an effect, to make an impression'), +('恭しい', 'うやうやしい', 'polite, respectful, reverent'), +('暁', 'あかつき', 'dawn, daybreak, event (e.g. "in the event of ..."), occasion, occurrence'), +('暁起き', 'あかつきおき', 'waking up just before daybreak'), +('仰ぐ', 'あおぐ', 'to look up (at), to look up to, to respect, to revere, to ask for (e.g. guidance), to seek, to turn to (someone) for, to depend on, to rely on, to gulp down, to quaff, to drink'), +('仰せ', 'おおせ', 'order (from one''s superior), command, what you say, (someone''s) words'), +('仰せ言', 'おおせごと', 'statement, order'), +('仰る', 'おっしゃる', 'to say, to speak, to tell, to talk'), +('おっしゃる通り', 'おっしゃるとおり', 'I agree with you, it is as (someone) says'), +('仰る', 'おっしゃる', 'to say, to speak, to tell, to talk'), +('おっしゃる通り', 'おっしゃるとおり', 'I agree with you, it is as (someone) says'), +('凝る', 'こる', 'to become stiff (of muscles), to get absorbed in, to develop a passion for, to devote oneself to, to become obsessed with, to get hooked on, to be elaborate, to be intricate, to be exquisite, to be particular about, to pay great attention to'), +('凝らす', 'こらす', 'to concentrate, to devote, to apply, to strain, to rack'), +('凝らす', 'こごらす', 'to freeze, to congeal, to concentrate one''s attention on, to devote oneself to something, to ponder, to meditate'), +('凝らせる', 'こごらせる', 'to freeze, to congeal'), +('凝る', 'こごる', 'to congeal, to freeze'), +('琴', 'こと', 'koto (13-stringed Japanese zither), stringed instrument, zheng (Chinese zither), guzheng'), +('琴座', 'ことざ', 'Lyra (constellation), the Lyre'), +('箏の琴', 'そうのこと', 'koto'), +('琵琶の琴', 'びわのこと', 'biwa (4 or 5-stringed Oriental lute)'), +('僅か', 'わずか', '(a) little, (a) few, slight, small (amount), trifling, meagre, meager, only, just, merely'), +('僅かしか', 'わずかしか', '(nothing) but a little'), +('緊める', 'しめる', 'to be strict with'), +('閉まる', 'しまる', 'to be shut, to close, to be closed, to be firm (of a body, face, etc.), to be well-knit, to be locked, to tighten, to be tightened, to become sober, to become tense'), +('掘る', 'ほる', 'to dig, to excavate, to hollow, to delve into, to dig up (e.g. vegetables), (for two men) to have anal sex'), +('繰る', 'くる', 'to reel, to wind, to spin (thread), to turn (pages), to flip through (a book), to leaf through (a book), to consult (a dictionary), to refer to (an encyclopedia), to count (e.g. the days), to open one-by-one, to close one-by-one (e.g. shutters)'), +('串', 'くし', 'spit, skewer, proxy (computer server)'), +('串揚げ', 'くしあげ', 'kushiage, deep-fried skewered meat and vegetables'), +('牛串', 'ぎゅうくし', 'skewered beef'), +('魚串', 'うおぐし', 'fish skewer, skewered fish'), +('勲', 'いさお', 'distinguished service, meritorious service'), +('岩屋', 'いわや', 'cavern, grotto'), +('駆ける', 'かける', 'to run, to dash, to race, to gallop (on horseback), to canter, to advance (against one''s enemy), to charge (on horseback)'), +('翔る', 'かける', 'to soar, to fly, to run, to dash'), +('駆る', 'かる', 'to spur on, to urge forward, to impel, to drive at high speed (e.g. a car)'), +('偶', 'たま', 'occasional, infrequent, rare'), +('偶々', 'たまたま', 'occasionally, once in a while, seldom, casually, unexpectedly, accidentally, by chance'), +('襟', 'えり', 'collar, lapel, neckband, neck, nape of the neck, scruff of the neck'), +('襟首', 'えりくび', 'nape of the neck'), +('台襟', 'だいえり', 'neckband (of a shirt)'), +('掛け襟', 'かけえり', 'protective collar on kimono or bed clothes'), +('慎む', 'つつしむ', 'to be careful, to be discreet, to do in moderation, to refrain (from overdoing), to abstain, to be reverent, to be purified, to be chaste'), +('隅', 'すみ', 'corner, nook, recess, downstage right (on a noh stage)'), +('隅々', 'すみずみ', 'every corner, every nook and cranny, all the ins and outs'), +('四隅', 'よすみ', 'four corners, four ordinal directions'), +('一隅', 'いちぐう', 'corner, nook'), +('香る', 'かおる', 'to smell sweet, to be fragrant'), +('茎', 'くき', 'stalk, stem'), +('茎茶', 'くきちゃ', 'twig tea, stem tea, kukicha, tea made from twigs pruned from the tea plant during its dormant season'), +('水茎', 'みずぐき', 'writing brush, writing, handwriting'), +('一茎', 'ひとくき', 'one stem'), +('会う', 'あう', 'to meet, to encounter, to see, to have an accident, to have a bad experience'), +('恐れる', 'おそれる', 'to fear, to be afraid of'), +('屈む', 'かがむ', 'to stoop, to lean over, to bend forward, to bend down, to crouch, to squat'), +('屈める', 'かがめる', 'to stoop, to bend (e.g. one''s knees)'), +('契る', 'ちぎる', 'to pledge, to vow, to promise, to swear, to have sexual intercourse (esp. between husband and wife), to share a bed'), +('愚か', 'おろか', 'foolish, stupid, silly'), +('愚か者', 'おろかもの', 'fool'), +('恵む', 'めぐむ', 'to bless, to show mercy to, to give (money, etc.)'), +('恵み', 'めぐみ', 'blessing, grace'), +('恵みの雨', 'めぐみのあめ', 'welcome rain, merciful rain, blessed rain, rain after a long dry period'), +('天の恵み', 'てんのめぐみ', 'God''s gift, God''s blessing, grace of God, godsend'), +('啓く', 'ひらく', 'to enlighten, to edify'), +('錦', 'にしき', 'brocade, fine dress, fine clothes'), +('錦絵', 'にしきえ', 'nishiki-e, multi-colour woodblock print'), +('蜀江の錦', 'しょっこうのにしき', 'type of red brocade originally from the ancient Chinese country of Shu and passed on in Japan, type of brocade made in Sichuan during the Ming period'), +('綾錦', 'あやにしき', 'twill damask and brocade'), +('蛍', 'ほたる', 'firefly (Luciola cruciata), lightning bug, glowworm'), +('蛍藺', 'ほたるい', 'Scirpus hotarui (species of bulrush)'), +('海蛍', 'うみほたる', 'sea firefly (Vargula hilgendorfii), seed shrimp'), +('谷', 'たに', 'valley'), +('傾く', 'かたむく', 'to incline toward, to slant, to lurch, to heel over, to be disposed to, to trend toward, to be prone to, to go down (sun), to wane, to sink, to decline'), +('傾ける', 'かたむける', 'to incline, to lean, to tip, to tilt, to slant, to bend, to list, to devote oneself to, to concentrate on, to pour one''s energy into, to ruin, to squander, to empty, to drink (alcohol)'), +('傾く', 'かたむく', 'to incline toward, to slant, to lurch, to heel over, to be disposed to, to trend toward, to be prone to, to go down (sun), to wane, to sink, to decline'), +('傾げる', 'かしげる', 'to tilt (esp. head), to lean, to incline, to slant'), +('傾げる', 'かしげる', 'to tilt (esp. head), to lean, to incline, to slant'), +('継ぐ', 'つぐ', 'to succeed (a person, to a position, etc.), to inherit, to take over, to follow, to patch (clothes), to mend, to repair, to add (e.g. charcoal to the fire), to replenish with, to feed with, to follow up with (e.g. remarks), to gather (one''s breath)'), +('掲げる', 'かかげる', 'to put up (a notice, sign, etc.), to hang out (e.g. a banner), to fly (e.g. a flag), to hoist, to raise, to display, to hold up high, to raise overhead, to tout (a principle, plan, etc.), to herald, to hold up (an ideal), to parade (e.g. a slogan), to publish, to print, to carry (e.g. an article), to tuck up (e.g. sleeves), to roll up, to stoke (a fire), to fan (a flame)'), +('喜び', 'よろこび', 'joy, delight, rapture, pleasure, gratification, rejoicing, congratulations, felicitations'), +('喜び事', 'よろこびごと', 'auspicious event, celebration'), +('携える', 'たずさえる', 'to carry in one''s hand, to carry with one, to have on one''s person, to bear, to take along (someone), to take (someone) with one, to be accompanied by'), +('携わる', 'たずさわる', 'to engage in, to participate in, to take part in, to be involved in'), +('考える', 'かんがえる', 'to think (about, of), to think over, to ponder, to contemplate, to reflect (on), to meditate (on), to consider, to bear in mind, to allow for, to take into consideration, to think (that), to believe, to hold (a view), to judge, to conclude, to suspect, to intend (to do), to think of (doing), to plan, to predict, to anticipate, to expect, to imagine, to come up with, to think up, to contrive, to devise, to consider (as), to regard (as), to look on (as), to take, to view'), +('憧れる', 'あこがれる', 'to long for, to yearn after, to admire, to be attracted by'), +('参る', 'まいる', 'to go, to come, to call, to be defeated, to collapse, to die, to be annoyed, to be nonplussed, to be madly in love, to visit (shrine, grave)'), +('詣でる', 'もうでる', 'to make a pilgrimage'), +('奉る', 'たてまつる', 'to offer, to present, to set someone up in a high position, to revere at a distance, to do respectfully'), +('鶏', 'にわとり', 'chicken (Gallus gallus domesticus), domestic chicken, chicken meat'), +('鶏小屋', 'にわとりごや', 'henhouse, chicken coop'), +('鳥', 'とり', 'bird, bird meat (esp. chicken meat), fowl, poultry'), +('鶏', 'にわとり', 'chicken (Gallus gallus domesticus), domestic chicken, chicken meat'), +('花鶏', 'あとり', 'brambling (bird) (Fringilla montifringilla)'), +('頭青花鶏', 'ずあおあとり', 'chaffinch (Fringilla coelebs)'), +('軒', 'のき', 'eaves, narrow aisle surrounding the core of a temple building'), +('軒先', 'のきさき', 'edge of the eaves, house frontage'), +('傍軒', 'そばのき', 'barge course'), +('使う', 'つかう', 'to use (a tool, method, etc.), to make use of, to put to use, to use (a person, animal, puppet, etc.), to employ, to handle, to manage, to manipulate, to use (time, money, etc.), to spend, to consume, to use (language), to speak'), +('遣わす', 'つかわす', 'to send, to dispatch, to despatch, to bestow (favour, etc.), to grant (e.g. pardon)'), +('遣る', 'やる', 'to do, to undertake, to perform, to play (a game), to study, to send, to dispatch, to despatch, to put, to move, to turn (one''s head, glance, etc.), to give (esp. to someone of equal or lower status), to let have, to present, to bestow, to confer, to make (a vehicle) go faster, to run (a business), to keep, to be engaged in, to practice (law, medicine, etc.), to practise, to have (food, drink, etc.), to eat, to drink, to smoke, to hold (a performance), to perform, to show, to ease (one''s mind), to harm, to injure, to kill, to have sex with, to live, to get by, to get along, to do ... completely, to do ... broadly, to do ... to a great distance, to do ... for (someone of equal or lower status), to do ... to, to make active efforts to ...'), +('やる気', 'やるき', 'willingness (e.g. to do something), eagerness, motivation, inspiration, determination, high aspirations'), +('嫌う', 'きらう', 'to hate, to dislike, to loathe'), +('嫌い', 'きらい', 'disliked, hated, disagreeable, tendency, smack (of), touch (of), distinction, discrimination'), +('嫌いがある', 'きらいがある', 'to have a tendency to, to be liable to, to have a touch of, to have a smack of'), +('嫌', 'いや', 'disagreeable, detestable, unpleasant, reluctant'), +('嫌がる', 'いやがる', 'to appear uncomfortable (with), to seem to hate, to express dislike'), +('硬い', 'かたい', 'hard, solid, tough, stiff, tight, wooden, unpolished (e.g. writing), strong, firm (not viscous or easily moved), safe, steady, honest, steadfast, obstinate, stubborn, bookish, formal, stuffy'), +('堅い商売', 'かたいしょうばい', 'sound business'), +('優れる', 'すぐれる', 'to surpass, to outstrip, to excel'), +('賢い', 'かしこい', 'wise, clever, smart, well-behaved (esp. children and pets), obedient, good'), +('兼ねる', 'かねる', 'to be unable to, to find difficult (unpleasant, awkward, painful) to do, to serve two or more functions or roles simultaneously, to contain (or combine) two or more features, to work in two or more jobs simultaneously (positions, etc.), to do alongside, to hesitate to do something (out of consideration for others), to think of the future (as well as the present)'), +('肩', 'かた', 'shoulder'), +('肩書き', 'かたがき', 'title (e.g. Doctor, Professor, Lord), job title, position (in a company), degree, status, rank'), +('路肩', 'ろかた', 'shoulder (of a road), berm'), +('相肩', 'あいかた', 'partner, someone who shares one''s load'), +('撃つ', 'うつ', 'to shoot (at), to attack, to defeat, to destroy, to avenge'), +('鯨', 'くじら', 'whale (Cetacea spp.)'), +('鯨肉', 'げいにく', 'whale meat'), +('タスマニア鯨', 'タスマニアくじら', 'Shepherd''s beaked whale (Tasmacetus shepherdi)'), +('五島鯨', 'ごとうくじら', 'larger whales of family Delphinidae (esp. the pilot whale or blackfish)'), +('憩い', 'いこい', 'rest, relaxation'), +('憩いの場', 'いこいのば', 'place for relaxation and refreshment'), +('憩う', 'いこう', 'to rest, to relax, to repose'), +('剣', 'けん', 'sword (esp. a large, double-edged one), blade, bayonet, swordsmanship, stinger, ovipositor, dart'), +('剣の山', 'つるぎのやま', 'mountain of swords, mountain in hell covered in swords (with their tips pointing upward)'), +('月の剣', 'つきのつるぎ', 'new moon, crescent moon'), +('草薙の剣', 'くさなぎのつるぎ', 'Kusanagi no Tsurugi (alternate name for Ama-no-Murakumo no Tsurugi; the sword of the Imperial regalia), grass-mowing sword'), +('拳', 'こぶし', 'fist'), +('こぶし大', 'こぶしだい', 'fist-sized'), +('力拳', 'ちからこぶし', 'clenched fist'), +('倹しい', 'つましい', 'thrifty, frugal, economical'), +('隙', 'すき', 'gap, space, break, interlude, interval, chink (in one''s armor, armour), chance, opportunity, weak spot, breach (of a relationship between people)'), +('隙間', 'すきま', 'crevice, crack, gap, opening, clearance, spare moment, interval, break, pause, spare time, chink (in one''s armor, armour), unpreparedness, carelessness'), +('隙', 'すき', 'gap, space, break, interlude, interval, chink (in one''s armor, armour), chance, opportunity, weak spot, breach (of a relationship between people)'), +('暇人', 'ひまじん', 'person with a lot of free time on their hands, person of leisure, idler, loafer'), +('迎える', 'むかえる', 'to go out to meet, to receive, to welcome, to greet, to salute, to hail, to reach, to approach, to enter (a phase, era, etc.), to accept (e.g. as a member of a group or family), to call for, to summon, to invite, to approach (a certain time, a point in one''s life, etc.)'), +('鍵', 'かぎ', 'key, lock, key (to a problem), clue'), +('鍵が掛かる', 'かぎがかかる', 'to become locked (e.g. of automatic locking)'), +('公開鍵', 'こうかいかぎ', 'public key'), +('暗号鍵', 'あんごうかぎ', 'cryptographic key, encryption key'), +('繭', 'まゆ', 'cocoon'), +('繭価', 'まゆか', 'price of a cocoon'), +('黄繭', 'こうけん', 'yellow cocoon'), +('屑繭', 'くずまゆ', 'waste cocoon (silk), bad cocoon, damaged cocoon'), +('絹糸', 'けんし', 'silk thread'), +('幻', 'まぼろし', 'phantom, vision, illusion, apparition, something fleeting, short-lived dream, fabled item, mythical thing, very rare thing'), +('幻を追う', 'まぼろしをおう', 'to pursue an illusion, to pursue a fantasy, to pursue phantoms'), +('夢幻', 'むげん', 'dreams, fantasy, visions'), +('桁', 'けた', 'column, beam, girder, crossbeam, spar, yard, digit, decade, order of magnitude'), +('桁上り', 'けたあがり', 'carry (of digit, bit, etc.)'), +('有効桁', 'ゆうこうけた', 'significant digit'), +('五桁', 'ごけた', 'five-digit number, "ten thousands" column'), +('謙る', 'へりくだる', 'to deprecate oneself and praise the listener, to abase oneself'), +('明らか', 'あきらか', 'clear, obvious, evident, plain, definite, bright, light'), +('現れる', 'あらわれる', 'to appear, to come in sight, to become visible, to come out, to embody, to materialize, to materialise, to be expressed (e.g. emotions), to become apparent (e.g. trends, effects)'), +('掛ける', 'かける', 'to hang up (e.g. a coat, a picture on the wall), to let hang, to suspend (from), to hoist (e.g. sail), to raise (e.g. flag), to put on (e.g. a blanket), to put on top of, to cover, to lay, to spread, to put on (glasses, etc.), to wear (a necklace, etc.), to make (a call), to spend (time, money), to expend, to use, to pour (liquid) onto, to sprinkle (powder or spices) onto, to splash, to throw (e.g. water) onto, to turn on (an engine, radio, etc.), to set (a dial, alarm clock, etc.), to put on (a DVD, song, etc.), to use (a device, implement, etc.), to cause (someone inconvenience, trouble, etc.), to burden (someone), to impose, to multiply (arithmetic operation), to secure (e.g. lock), to take a seat, to sit, to rest (something on something else), to support (something on something else), to bind, to wager, to bet, to risk, to stake, to gamble, to put an effect (spell, anaesthetic, etc.) on, to hold (a play, festival, etc.), to hold an emotion for (pity, hope, etc.), to argue (in court), to deliberate (in a meeting), to present (e.g. idea to a conference, etc.), to increase further, to catch (in a trap, etc.), to set atop, to erect (a makeshift building), to apply (insurance), to pun (on a word), to use (a word) as a pivot word, to play on words, to be partway doing ..., to begin (but not complete) ..., to be about to ..., to address (someone), to direct (something, to someone), to do (something, to someone)'), +('掛かる', 'かかる', 'to take (a resource, e.g. time or money), to hang, to come into view, to arrive, to come under (a contract, a tax), to start (engines, motors), to attend, to deal with, to handle, to have started to, to be on the verge of, to overlap (e.g. information in a manual), to cover, to (come) at, to be fastened, to be covered (e.g. with dust, a table-cloth, etc.), to be caught in, to get a call, to depend on'), +('玄人', 'くろうと', 'expert, professional, master, connoisseur, woman in the nightlife business, demimondaine, geisha and prostitutes'), +('玄人はだし', 'くろうとはだし', 'ability that outdoes (shames) professionals'), +('鼓', 'つづみ', 'hand drum'), +('舌鼓', 'したつづみ', 'smacking one''s lips (over food)'), +('大鼓', 'おおつづみ', 'large hand drum'), +('互い', 'たがい', 'each other, one another'), +('互いに', 'たがいに', 'mutually, with each other, reciprocally, together'), +('互に', 'かたみに', 'mutually, reciprocally, together'), +('船端', 'ふなばた', 'side of a boat, gunwale'), +('船縁', 'ふなべり', 'side of a boat, gunwale'), +('悟る', 'さとる', 'to perceive, to sense, to discern, to understand, to comprehend, to realize, to attain enlightenment'), +('股', 'また', 'crotch, crutch, groin, thigh, fork (in a tree, road, river, etc.), tines (of a fork)'), +('跨る', 'またがる', 'to straddle, to sit astride, to mount, to extend over, to spread over, to span, to extend into'), +('小股', 'こまた', 'short steps, mincing stride, crotch, groin, thigh'), +('外小股', 'そとこまた', 'over-thigh scooping body drop'), +('股', 'もも', 'thigh, femoral'), +('股白蝙蝠', 'ももじろこうもり', 'big-footed myotis (Myotis macrodactylus), eastern long-fingered bat, Japanese large-footed bat'), +('太もも', 'ふともも', 'thigh, buttocks, arse, ass, butt'), +('外股', 'そともも', 'outer thigh'), +('顧みる', 'かえりみる', 'to look back on (the past), to reflect on, to reminisce about, to look behind (at), to turn round (and look), to look over one''s shoulder, to consider, to concern oneself about, to take notice of, to pay attention to, to take into consideration'), +('枯れる', 'かれる', 'to wither (of a plant), to be blasted, to die, to mature (of one''s personality, abilities, etc.)'), +('枯らす', 'からす', 'to let dry, to kill (vegetation), to season (lumber)'), +('誇る', 'ほこる', 'to boast of, to be proud of, to take pride in'), +('虎', 'とら', 'tiger (Panthera tigris), drunkard, drunk, sot'), +('虎の子', 'とらのこ', 'tiger cub, one''s treasure, precious savings'), +('大虎', 'おおとら', 'big tiger, drinker, staggering drunkard'), +('小虎', 'ことら', 'small tiger, light drinker, occasional drinker'), +('弦', 'つる', 'bowstring, string (of shamisen, guitar, violin, etc.), bail (arched pot handle), diagonal levelling wire across the top of a masu'), +('弦音', 'つるおと', 'sound of vibrating bowstring'), +('呉れる', 'くれる', 'to give, to let (one) have, to give, to do for one, to take the trouble to do, to do to someone''s disadvantage'), +('呉れる', 'くれる', 'to give, to let (one) have, to give, to do for one, to take the trouble to do, to do to someone''s disadvantage'), +('呉れ呉れも', 'くれぐれも', 'sincerely, earnestly, repeatedly, over and over, again and again'), +('何くれ', 'なにくれ', 'in various ways'), +('貢ぐ', 'みつぐ', 'to support (someone) financially, to finance, to supply (money), to give (in support), to present (money or gifts) to a monarch (feudal lord, etc.)'), +('関わる', 'かかわる', 'to be affected, to be influenced, to be concerned with, to have to do with, to stick to (opinions)'), +('控える', 'ひかえる', 'to be temperate in, to refrain, to abstain, to hold back, to restrain oneself from excessive ..., to make notes, to jot down (e.g. phone number), to be in preparation for, to be in waiting for, to be soon, to be in the offing, to be in a close relationship (e.g. as a backer, etc.)'), +('控え', 'ひかえ', 'reserve, spare, backup, note, memorandum, duplicate, copy, stub (of a ticket, etc.), waiting one''s turn'), +('控える', 'ひかえる', 'to be temperate in, to refrain, to abstain, to hold back, to restrain oneself from excessive ..., to make notes, to jot down (e.g. phone number), to be in preparation for, to be in waiting for, to be soon, to be in the offing, to be in a close relationship (e.g. as a backer, etc.)'), +('お客様控え', 'おきゃくさまひかえ', 'customer copy (of a receipt, etc.)'), +('巧み', 'たくみ', 'skillful, adroit, dexterous, masterful, clever, ingenious, cunning, craft, craftsmanship, skill, dexterity, design, plot, scheme, artifice, trick'), +('巧む', 'たくむ', 'to devise, to plot, to plan'), +('上手い', 'うまい', 'skillful, skilful, skilled, good, expert, clever (expression, trick, etc.), apt, appropriate, delicious, tasty, good, nice, good (deal, idea, etc.), profitable, promising, lucky, fortunate, successful, satisfactory, splendid'), +('攻める', 'せめる', 'to attack, to assault, to assail'), +('肯んじる', 'がえんじる', 'to consent, to allow, to accept, to agree'), +('喉', 'のど', 'throat, singing voice'), +('喉から手が出る', 'のどからてがでる', 'to want something desperately, to want something (so badly one can taste it)'), +('荒らす', 'あらす', 'to lay waste, to devastate, to damage, to invade, to break into, to troll (e.g. web forums), to spam'), +('粗筋', 'あらすじ', 'outline, summary, argument'), +('荒れる', 'あれる', 'to become stormy, to become rough (of the sea), to fall into ruin, to become neglected, to become dilapidated, to become rough (of skin), to get chapped, to become unruly, to become violent, to go wild, to get out of control, to become unsettled (e.g. of one''s life), to become disordered'), +('荒い', 'あらい', 'rough, wild, violent, rude, coarse, harsh, fierce, heavy (e.g. breathing), immoderate, extravagant, reckless'), +('荒石', 'あらいし', 'unprocessed stone, rubble'), +('荒ぶ', 'すさぶ', 'to grow wild, to run to waste, to become degenerate, to become rough (of art, craft, etc.), to lose refinement, to deteriorate (of skill), to intensify (of wind, rain, etc.), to become more severe, to do as one pleases, to amuse oneself, to play around'), +('荒む', 'すさむ', 'to grow wild, to run to waste, to become degenerate, to become rough (of art, craft, etc.), to lose refinement, to deteriorate (of skill), to intensify (of wind, rain, etc.), to become more severe'), +('荒らし', 'あらし', '(Internet) troll, disturber, raising havoc, laying waste, trolling, vandalism, robbery, holdup, robber, thief'), +('荒らし回る', 'あらしまわる', 'to break into (houses here and there), to rampage'), +('山荒', 'やまあらし', 'porcupine (any mammal of suborder Hystricomorpha)'), +('甲', 'きのえ', 'first sign of the Chinese calendar'), +('甲戌', 'きのえいぬ', 'Wood Dog (11th year of the sexagenary cycle, e.g. 1934, 1994, 2054)'), +('常', 'つね', 'usual state of things'), +('抗う', 'あらがう', 'to go against, to fight against, to oppose, to resist, to deny'), +('新', 'さら', 'new, unused, new, obvious, natural'), +('更に', 'さらに', 'furthermore, again, after all, more and more, moreover, even more'), +('殊更', 'ことさら', 'intentionally, deliberately, designedly, on purpose, especially, particularly'), +('平更', 'ひらさら', 'earnestly, intently, determinedly, by all means, ... the heck (e.g. "what the heck?"), ... in the world (e.g. "why in the world?"), ... on earth (e.g. "who on earth?")'), +('更に', 'さらに', 'furthermore, again, after all, more and more, moreover, even more'), +('さらに困ったことに', 'さらにこまったことに', 'to make matters worse'), +('更ける', 'ふける', 'to get late, to advance, to wear on'), +('更かす', 'ふかす', 'to sit up late'), +('江', 'え', 'inlet, bay'), +('縁', 'えん', 'fate, destiny (esp. as a mysterious force that binds two people together), relationship (e.g. between two people), bond, link, connection, family ties, affinity, opportunity, chance (to meet someone and start a relationship), pratyaya (indirect conditions, as opposed to direct causes), narrow open-air veranda'), +('堀江', 'ほりえ', 'canal'), +('松江', 'まつえ', 'Matsue (city in Shimane)'), +('穴', 'あな', 'hole, opening, perforation, pit, hollow, hole (in the ground, etc.), burrow, den, lair, holt, hole, deficit, shortage, missing person (in a team, meeting, etc.), vacancy, opening, flaw, well-kept secret place, upset victory (with a large payoff), pit (of a theater), hiding place, hideout, underbelly (of society, etc.)'), +('巣穴', 'すあな', 'nesting hole, burrow, den'), +('音孔', 'おとあな', 'tone hole'), +('雇う', 'やとう', 'to employ, to hire, to charter'), +('慌てる', 'あわてる', 'to become confused (disconcerted, disorganized, disorganised), to be flustered, to panic, to hurry, to rush, to hasten'), +('慌てる乞食はもらいが少ない', 'あわてるこじきはもらいがすくない', 'slow and steady wins the race, there is luck in the last helping'), +('慌ただしい', 'あわただしい', 'busy, hurried, confused, flurried'), +('絞る', 'しぼる', 'to wring (towel, rag), to squeeze, to squeeze (fruit to extract juice), to press, to extract, to milk, to express milk, to rack (one''s brains), to strain (one''s voice), to extort, to exploit, to chew out, to reprimand severely, to rake over the coals, to give a sound scolding, to tell someone off, to scold, to rebuke, to drill into, to train, to narrow down (one''s focus), to whittle down, to gather up (curtain, etc.), to tighten (drawstring), to stop down (lens), to turn down (e.g. radio), to bend (bow), to draw, to hold down, to constrict, to immobilize'), +('絞める', 'しめる', 'to strangle, to constrict'), +('絞まる', 'しまる', 'to be strangled, to be constricted'), +('項', 'うなじ', 'nape (of the neck), nucha'), +('溝', 'みぞ', 'ditch, drain, gutter, trench, groove, tread, gap (between people, countries, etc.), gulf, rift'), +('溝隠', 'みぞかくし', 'Chinese lobelia (Lobelia chinensis)'), +('押さえ溝', 'おさえみぞ', 'groove in the body of wooden plane which holds the blade'), +('逃げ溝', 'にげみぞ', 'clearance groove, under cut'), +('硬い', 'かたい', 'hard, solid, tough, stiff, tight, wooden, unpolished (e.g. writing), strong, firm (not viscous or easily moved), safe, steady, honest, steadfast, obstinate, stubborn, bookish, formal, stuffy'), +('かたいことは言いっこなし', 'かたいことはいいっこなし', 'let''s put formalities aside, let''s not speak so stiffly'), +('綱', 'つな', 'rope, cord, line, grand champion''s braided belt'), +('綱引き', 'つなひき', 'tug of war (orig. a form of divination to predict whether the year will be favourable or unfavourable), forward puller (of a rickshaw)'), +('命の綱', 'いのちのつな', 'the thread of life'), +('望みの綱', 'のぞみのつな', 'one''s last hope, one''s only hope, the last hope'), +('奢る', 'おごる', 'to give (someone) a treat, to be extravagant, to live luxuriously, to be proud, to be haughty'), +('請う', 'こう', 'to beg, to ask, to request, to invite'), +('乞高評', 'こうこうひょう', 'with the author''s compliments'), +('勝つ', 'かつ', 'to win, to gain victory'), +('込む', 'こむ', 'to be crowded, to be packed, to be congested, to be thronged (with), to be complex, to be intricate, to go into, to go in, to put into, to become (completely), to do thoroughly, to do sufficiently, to remain (silent, seated, etc.), to stay ...'), +('込み', 'こみ', 'including, inclusive of, komi, extra points given to the white player as compensation for playing second (in go)'), +('混み合う', 'こみあう', 'to be crowded, to be packed, to be jammed'), +('割り込み', 'わりこみ', 'queue jumping, breaking into a line, muscling in on, wedging oneself in, interruption, sharing a theater box (theatre), interrupt'), +('差し込み', 'さしこみ', 'insertion, plug, (electrical) outlet, power point, spasm of pain, griping pain, (fit of) convulsions, stitch'), +('込める', 'こめる', 'to load (a gun, etc.), to charge, to put into (e.g. emotion, effort), to include (e.g. tax in a sales price), to hang over, to shroud, to enshroud, to envelop, to screen'), +('偉い', 'えらい', 'great, excellent, admirable, remarkable, distinguished, important, celebrated, famous, eminent, very troublesome, awful, terrible, tiring, tough, very, extremely'), +('駒', 'こま', 'piece (in shogi, chess, etc.), horse, foal, bridge (of a violin, etc.)'), +('小間板', 'こまいた', 'cutting guide board for noodles'), +('1コマ', 'ひとコマ', 'one scene, one frame, one shot, one exposure, one cell, one panel (comic)'), +('将棋駒', 'しょうぎこま', 'shogi piece'), +('酷い', 'ひどい', 'cruel, heartless, hard, harsh, severe, violent, intense, strong, heavy, extreme, very bad, terrible, awful, excessive, exorbitant, unreasonable, outrageous, unfair, unjust'), +('ひどい仕打ち', 'ひどいしうち', 'cruel treatment, raw deal, kick in the pants'), +('頃', 'ころ', '(approximate) time, around, about, toward, suitable time (or condition), time of year, season'), +('頃おい', 'ころおい', 'time, period, days'), +('子供の頃', 'こどものころ', '(time of) one''s childhood, when one was a child'), +('小さい頃', 'ちいさいころ', 'as a child, when one was a child'), +('頃', 'ころ', '(approximate) time, around, about, toward, suitable time (or condition), time of year, season'), +('この頃', 'このごろ', 'these days, nowadays, now, at present, recently, lately'), +('今日この頃', 'きょうこのごろ', 'these days, nowadays, recently'), +('跡', 'あと', 'trace, tracks, mark, sign, site, remains, ruins, scar'), +('ニキビ跡', 'ニキビあと', 'pockmark (caused by a pimple), acne scarring'), +('爪跡', 'つめあと', 'fingernail mark, scratch, scars (e.g. of war), traces (of damage), ravages, after-effects'), +('魂', 'たましい', 'soul, spirit'), +('魂不死説', 'たましいふしせつ', '(theory of) the immortality of the soul'), +('一寸の虫にも五分の魂', 'いっすんのむしにもごぶのたましい', 'tread on a worm and it will turn, even a tiny bug will defend itself, even the weakest and smallest beings have their own wills, so do not make light of them'), +('魂', 'たましい', 'soul, spirit'), +('魂消る', 'たまげる', 'to be astonished, to be flabbergasted, to be startled, to be amazed'), +('稲魂', 'うかのみたま', 'the god of foodstuffs (esp. of rice)'), +('亡き魂', 'なきたま', 'departed soul, spirit'), +('墾く', 'ひらく', 'to cultivate (land), to clear (land)'), +('恨む', 'うらむ', 'to bear a grudge against, to resent, to blame, to curse, to feel bitter towards'), +('憾む', 'うらむ', 'to regret'), +('恨めしい', 'うらめしい', 'reproachful, hateful, bitter'), +('懇ろ', 'ねんごろ', 'kind, courteous, hospitable, warmly respectful, intimate, becoming intimate, having an intimate relationship (sometimes esp. a homosexual relationship)'), +('懇ろになる', 'ねんごろになる', 'to become intimate with (e.g. a woman), to become acquainted'), +('唆る', 'そそる', 'to excite, to incite, to stimulate, to arouse, to tempt, to stir up'), +('唆す', 'そそのかす', 'to instigate, to tempt, to entice, to incite'), +('砂', 'すな', 'sand, grit'), +('砂子', 'すなご', 'gold dust, silver dust, sand, grit'), +('白砂', 'はくしゃ', 'white sand'), +('挫く', 'くじく', 'to sprain, to twist, to dampen (enthusiasm), to discourage, to dishearten, to dispirit, to depress, to unnerve, to crush'), +('挫ける', 'くじける', 'to be disheartened, to lose heart, to be dispirited, to be crushed (emotionally), to be sprained, to be snapped, to be broken'), +('鎖', 'くさり', 'chain, chains'), +('鎖編み', 'くさりあみ', 'chain stitch'), +('救命の鎖', 'きゅうめいのくさり', 'chain of survival'), +('人間の鎖', 'にんげんのくさり', 'human chain (chain of people holding hands, usually in protest)'), +('閉ざす', 'とざす', 'to shut, to close, to fasten, to lock, to block (a street, entrance, etc.), to shut in (with snow, ice, etc.), to shut off, to cut off, to cover (e.g. in darkness), to consume (with negative feelings), to fill (e.g. with sadness), to bury (e.g. in grief)'), +('砕く', 'くだく', 'to break, to smash'), +('砕ける', 'くだける', 'to break (into pieces), to be broken, to be smashed, to collapse, to crumble, to decline, to cool (e.g. enthusiasm), to dampen (e.g. one''s will to fight), to become less formal, to throw off reserve, to become affable, to become easy to understand (e.g. a story), to be worried'), +('偽る', 'いつわる', 'to lie, to cheat, to pretend, to feign, to falsify, to trick, to deceive'), +('彩る', 'いろどる', 'to colour, to color, to paint, to apply make-up, to decorate, to garnish, to adorn, to add flair'), +('斎', 'とき', 'meals exchanged by parishioners and priests'), +('忌む', 'いむ', 'to avoid, to refrain from, to shun, to detest'), +('祝う', 'いわう', 'to celebrate, to congratulate, to observe (a festival), to present (a gift) in celebration, to drink in celebration, to wish for (a happy future, good fortune, etc.), to pray for'), +('斎く', 'いつく', 'to worship, to enshrine'), +('催す', 'もよおす', 'to hold (an event), to give (a dinner, party, etc.), to feel (sensation, emotion, call of nature, etc.), to show signs of'), +('塞ぐ', 'ふさぐ', 'to stop up, to close up, to block (up), to plug up, to shut up, to cover (ears, eyes, etc.), to close (eyes, mouth), to stand in the way, to obstruct, to occupy, to fill up, to take up, to perform one''s role, to do one''s duty, to feel depressed, to be in low spirits, to mope'), +('年', 'とし', 'year, age, years, past one''s prime, old age'), +('年取った', 'としとった', 'old (person), aged'), +('大年', 'おおとし', 'New Year''s Eve, Jupiter (planet)'), +('年', 'とせ', 'counter for years (following a number in the hito-futa-mi counting system)'), +('万年', 'まんねん', 'ten thousand years, eternity, perennial, perpetual'), +('二十歳', 'はたとせ', 'twenty years'), +('乗せる', 'のせる', 'to place on (something), to give (someone) a ride, to give a lift, to pick up, to help on board, to load (luggage), to carry, to take on board, to send out (on the airwaves, etc.), to deceive, to take for a ride, to (sing) along with (musical accompaniment), to let (someone) take part, to excite (someone), to publish (an article), to run (an ad)'), +('載る', 'のる', 'to be placed on, to be set on, to be piled on, to be loaded on, to appear (in print), to be mentioned, to be recorded, to be reported, to be given'), +('柵', 'しがらみ', 'weir, bonds, fetters, ties of obligation'), +('酢', 'す', 'vinegar'), +('酢の物', 'すのもの', 'vinegared dish, pickled dish'), +('合成酢', 'ごうせいす', 'synthetic vinegar'), +('醸造酢', 'じょうぞうす', 'brewed vinegar'), +('絞る', 'しぼる', 'to wring (towel, rag), to squeeze, to squeeze (fruit to extract juice), to press, to extract, to milk, to express milk, to rack (one''s brains), to strain (one''s voice), to extort, to exploit, to chew out, to reprimand severely, to rake over the coals, to give a sound scolding, to tell someone off, to scold, to rebuke, to drill into, to train, to narrow down (one''s focus), to whittle down, to gather up (curtain, etc.), to tighten (drawstring), to stop down (lens), to turn down (e.g. radio), to bend (bow), to draw, to hold down, to constrict, to immobilize'), +('削る', 'けずる', 'to shave (wood, leather, etc.), to sharpen (e.g. pencil), to plane, to whittle, to pare, to scrape off, to erode, to cut down (budget, expenses, staff, time, etc.), to curtail, to reduce, to delete, to erase, to remove, to cross out, to strike out'), +('削る', 'はつる', 'to shave off (esp. concrete), to take a percentage, to take a cut'), +('削ぐ', 'そぐ', 'to chip (off), to shave (off), to slice (off), to sharpen, to dampen (e.g. enthusiasm), to discourage, to weaken, to reduce'), +('恣', 'ほしいまま', 'selfish, self-indulgent, arbitrary'), +('恣にする', 'ほしいままにする', 'to abuse, to exploit to the full, to give free rein to'), +('惨め', 'みじめ', 'miserable, wretched, unhappy, sad, pitiable'), +('惨い', 'むごい', 'cruel, merciless, pitiless, brutal, atrocious, inhuman, tragic, horrible, terrible, dreadful, miserable, ugly, horrifying'), +('撮る', 'とる', 'to take (a photo), to record (video, audio, etc.), to make (a film)'), +('摘む', 'つまむ', 'to pinch, to hold (between one''s fingers), to pick up (with chopsticks, tweezers, etc.), to pick up and eat, to snack on, to pick out (the main point), to summarize, to sum up, to bewitch, to possess, to fascinate'), +('擦る', 'する', 'to rub, to chafe, to strike (match), to file, to frost (glass), to lose (e.g. a match), to forfeit, to squander one''s money (e.g. through gambling, Pachinko, etc.)'), +('擦れる', 'すれる', 'to rub, to chafe, to wear out, to become worn, to lose one''s innocence, to become sly'), +('擦る', 'こする', 'to rub, to scrub, to scrape'), +('擦れる', 'こすれる', 'to be rubbed'), +('懸け橋', 'かけはし', 'temporary (suspension) bridge, makeshift bridge, bridge (between cultures, generations, etc.), link, go-between, intermediary, walkway (constructed on a cliff face), plank path'), +('脂', 'あぶら', 'fat, tallow, lard, grease'), +('脂身', 'あぶらみ', 'fat (of meat), fatty meat'), +('背脂', 'せあぶら', 'back fat, fatty upper part of roast pork'), +('刺す', 'さす', 'to pierce, to stab, to prick, to stick, to thrust, to sting, to bite, to sew, to stitch, to embroider, to pole (a boat), to catch (with a limed pole), to put (a runner) out, to pick off'), +('刺刀', 'さすが', 'dagger'), +('刺さる', 'ささる', 'to stick into (of something with a sharp point), to prick, to pierce, to get stuck (in), to lodge (in), to resonate emotionally, to move'), +('刺し', 'さし', 'grain thief, sharpened tube for testing rice in bags, sashimi (sliced raw fish), stabbing, piercing, pricking'), +('刺身', 'さしみ', 'sashimi (raw sliced fish, shellfish or crustaceans)'), +('牛刺', 'ぎゅうさし', 'sliced raw beef'), +('肉刺し', 'にくさし', 'fork'), +('刺し', 'さし', 'grain thief, sharpened tube for testing rice in bags, sashimi (sliced raw fish), stabbing, piercing, pricking'), +('刺身', 'さしみ', 'sashimi (raw sliced fish, shellfish or crustaceans)'), +('牛刺', 'ぎゅうさし', 'sliced raw beef'), +('肉刺し', 'にくさし', 'fork'), +('刺', 'とげ', 'thorn, spine, prickle, splinter (esp. lodged in one''s flesh), hard sharp item (esp. lodged in one''s throat, e.g. fish bone), biting words'), +('刺々しい', 'とげとげしい', 'sharp, harsh, stinging, thorny, snappy'), +('刺々', 'とげとげ', 'sharply, harshly, stingingly'), +('旨', 'むね', 'principle, aim, main purpose, central part, pillar, purport, gist, drift, meaning, instructions, orders, intention, wishes'), +('旨とする', 'むねとする', 'to make it a principle to ..., to aim at doing'), +('その旨', 'そのむね', '(words to) that effect'), +('御旨', 'みむね', 'God''s will'), +('上手い', 'うまい', 'skillful, skilful, skilled, good, expert, clever (expression, trick, etc.), apt, appropriate, delicious, tasty, good, nice, good (deal, idea, etc.), profitable, promising, lucky, fortunate, successful, satisfactory, splendid'), +('うまい汁', 'うまいしる', 'the lion''s share, the cream'), +('咲く', 'さく', 'to bloom, to flower, to blossom, to open'), +('暫く', 'しばらく', 'for a moment, for a minute, for a while, for some time, for the time being, for now, it''s been a long time, long time no see'), +('しばらくの間', 'しばらくのあいだ', 'for a short while, for a while, for some time, for the time being'), +('傘', 'かさ', 'umbrella, parasol, something shaped like an umbrella or a conical hat, shade (of a lamp), mushroom cap, pileus'), +('笠貝', 'かさがい', 'limpet (esp. species Cellana mazatlandica)'), +('核の傘', 'かくのかさ', 'nuclear umbrella'), +('から傘', 'からかさ', 'paper umbrella, bamboo-and-oiled-paper umbrella'), +('紫', 'むらさき', 'purple, violet, Lithospermum erythrorhizon (species of gromwell), type of soy sauce'), +('紫色', 'むらさきいろ', 'purple, violet'), +('貝紫', 'かいむらさき', 'Tyrian purple'), +('古代紫', 'こだいむらさき', 'reddish-purple'), +('伺う', 'うかがう', 'to ask, to inquire, to hear, to be told, to implore (a god for an oracle), to seek direction (from your superior), to visit, to speak to (a large crowd at a theatre, etc.)'), +('施す', 'ほどこす', 'to give (time, money, goods), to donate, to do, to perform, to conduct, to apply (processing, makeup, etc.), to add (e.g. ornamentation, annotation), to sow, to seed, to scatter (e.g. fertilizer), to sprinkle, to spread far and wide'), +('斬る', 'きる', 'to kill (a human) using a blade (sword, machete, knife, etc.), to slice (off), to lop (off), to cut (off)'), +('雌', 'めす', 'female (animal, plant)'), +('メス犬', 'メスいぬ', 'bitch, female dog'), +('雌', 'めす', 'female (animal, plant)'), +('雌鳥', 'めんどり', 'female bird, hen'), +('嫉む', 'そねむ', 'to be jealous of, to envy, to begrudge'), +('妬む', 'ねたむ', 'to be jealous of, to envy, to begrudge'), +('賜る', 'たまわる', 'to be given, to be granted, to be honored with, to be honoured with, to give, to bestow, to confer, to honor, to honour'), +('給う', 'たまう', 'to give, to do ...'), +('給ふ', 'たまう', 'to give, to receive'), +('給う', 'たもう', 'to give, to do ...'), +('給ふ', 'たまう', 'to give, to receive'), +('早い', 'はやい', 'fast, quick, rapid, swift, speedy, brisk, prompt, early, soon, earlier than usual, premature, too soon, too early, easy, simple, quick, fast, as soon as ..., the moment ..., the instant ...'), +('餌', 'えさ', '(animal) feed, fodder, pet food, bait, lure, enticement'), +('餌場', 'えさば', 'feeding ground'), +('撒き餌', 'まきえ', 'scattered animal feed, ground bait'), +('毒餌', 'どくえ', 'poisonous bait'), +('餌', 'えさ', '(animal) feed, fodder, pet food, bait, lure, enticement'), +('餌場', 'えさば', 'feeding ground'), +('釣り餌', 'つりえ', 'bait (for fishing)'), +('練り餌', 'ねりえ', 'paste bird feed, paste fishing bait'), +('執る', 'とる', 'to take (trouble), to attend (to business), to command (army)'), +('侍', 'さむらい', 'warrior (esp. of military retainers of daimyos in the Edo period), samurai, man in attendance (on a person of high standing), retainer'), +('侍蟻', 'さむらいあり', 'Polyergus samurai (species of amazon ant)'), +('二四六九士', 'にしむくさむらい', 'mnemonic for remembering the months with fewer than 31 days (ni, shi, mu, ku, etc.)'), +('侍る', 'はべる', 'to wait upon, to serve'), +('慈しむ', 'いつくしむ', 'to love (someone weaker than oneself), to be affectionate towards, to treat with tender loving care'), +('芝', 'しば', 'lawn, sod, turf'), +('芝居', 'しばい', 'play, drama'), +('高麗芝', 'こうらいしば', 'Korean lawn grass'), +('道芝', 'みちしば', 'roadside grass, roadside weeds, guidance (sometimes esp. referring to guidance in love), guidepost, guide, Chinese fountain grass (Pennisetum alopecuroides)'), +('漆', 'うるし', 'East-Asian lacquer, japan, Chinese lacquer tree (Toxicodendron vernicifluum, formerly Rhus verniciflua)'), +('漆塗り', 'うるしぬり', 'lacquering, lacquer ware'), +('生漆', 'きうるし', 'unrefined sap of the lacquer tree'), +('透漆', 'すきうるし', 'clear lacquer'), +('諮る', 'はかる', 'to consult with, to discuss, to confer, to deliberate'), +('湿る', 'しめる', 'to become damp, to become moist, to become wet, to lack energy, to be in a slump, to be in low spirits, to feel depressed'), +('湿す', 'しめす', 'to wet, to moisten, to dampen'), +('斜め', 'ななめ', 'slanting, tilted, sloping, diagonal, oblique, distorted (feeling), slanted (e.g. view of the world), bad (mood), amiss, awry'), +('斜め上', 'ななめうえ', 'diagonally upward, (going in a) completely unexpected direction (of a story, result, etc.)'), +('斜', 'はす', 'diagonal'), +('斜交い', 'はすかい', 'aslant, oblique, diagonal, askew, cater-cornered, catty-cornered'), +('邪', 'よこしま', 'wicked, evil'), +('邪まな心', 'よこしまなこころ', 'evil heart'), +('煮る', 'にる', 'to boil, to simmer, to stew, to seethe'), +('煮るなり焼くなり', 'にるなりやくなり', 'as you please, in any way you like, as you wish'), +('煮える', 'にえる', 'to be boiled, to be cooked'), +('煮やす', 'にやす', 'to cook inside'), +('蛇', 'へび', 'snake, serpent, large snake'), +('蛇穴に入る', 'へびあなにいる', 'snake hibernation'), +('裸蛇', 'はだかへび', 'caecilian (any burrowing legless amphibian of the order Gymnophiona)'), +('錦蛇', 'にしきへび', 'python, rock snake'), +('酌む', 'くむ', 'to pour (sake), to serve, to drink together'), +('朱', 'あけ', 'scarlet, red'), +('朱に染まる', 'あけにそまる', 'to welter in blood, to be covered in blood'), +('狩る', 'かる', 'to hunt (animals), to search (for a criminal), to go looking for (flowers, etc.), to gather (mushrooms), to pick (berries)'), +('狩り', 'かり', 'hunting, harvesting (e.g. berries, fruit), picking, gathering'), +('狩人', 'かりゅうど', 'hunter'), +('虫狩', 'むしかり', 'viburnum, Viburnum furcatum'), +('異', 'こと', 'difference (from one another), different thing, other, unusual, extraordinary'), +('殊に', 'ことに', 'especially, particularly, unusually, above all, additionally'), +('遮る', 'さえぎる', 'to interrupt, to obstruct (a view, someone''s way, etc.), to block (light, wind, etc.), to intercept, to cut off'), +('腫れる', 'はれる', 'to swell (from inflammation), to become swollen'), +('腫れ', 'はれ', 'swelling, boil'), +('腫れる', 'はれる', 'to swell (from inflammation), to become swollen'), +('腫らす', 'はらす', 'to cause to swell, to inflame'), +('腫れ物', 'はれもの', 'tumor, tumour, swelling, boil, abscess'), +('腫れ物に触るように', 'はれものにさわるように', 'with great caution, gingerly'), +('寂', 'さび', 'patina, antique look, elegant simplicity, well-trained voice'), +('寂しい', 'さびしい', 'lonely, lonesome, solitary, desolate'), +('侘と寂', 'わびとさび', 'taste for the simple and quiet, wabi and sabi'), +('寂々', 'せきせき', 'sad, lonesome, desolate'), +('寂しい', 'さびしい', 'lonely, lonesome, solitary, desolate'), +('寂れる', 'さびれる', 'to decline (in prosperity), to become deserted, to become desolate, to taper off (of a sound)'), +('寂しい', 'さびしい', 'lonely, lonesome, solitary, desolate'), +('呪う', 'まじなう', 'to pray that one avoids disaster or illness, to pray for harm or death to come upon someone, to curse, to charm, to conjure, to cast a spell (on someone), to treat illness (with a prayer)'), +('呪い', 'のろい', 'curse, spell, malediction'), +('呪い殺す', 'のろいころす', 'to curse someone to death, to put a deadly curse on someone'), +('呪い', 'まじない', 'charm, incantation, spell, curse'), +('呪う', 'のろう', 'to curse, to put a curse on, to detest intensely'), +('寿', 'ことぶき', 'congratulations, felicitations, best wishes, longevity, long life'), +('寿教室', 'ことぶききょうしつ', 'culture courses for the aged'), +('新年の寿', 'しんねんのことぶき', 'New Years greetings'), +('寿く', 'ことぶく', 'to congratulate, to wish one well'), +('寿ぐ', 'ことほぐ', 'to congratulate, to wish (someone) well, to celebrate'), +('趣', 'おもむき', 'meaning, tenor, gist, effect, influence, appearance, aspect, grace, charm, refinement, taste, elegance'), +('趣のある', 'おもむきのある', 'tasteful, elegant, refined, charming, attractive'), +('赴く', 'おもむく', 'to go in the direction of, to proceed toward, to proceed according to, to repair to, to betake oneself to, to become, to face (facts, circumstances, etc.), to abide by, to agree to, to consent to, to obey'), +('捕らわれる', 'とらわれる', 'to be caught, to be captured, to be taken prisoner, to be arrested, to be apprehended, to be seized with (fear, etc.), to be a slave to, to stick to, to adhere to, to be swayed by'), +('船', 'ふね', 'ship, boat, watercraft, vessel, seaplane, tank, tub, vat, trough, counter for boat-shaped containers (e.g. of sashimi)'), +('船貝', 'ふねがい', 'Arca avellana (species of ark shell)'), +('釣り船', 'つりぶね', 'fishing boat, boat-shaped hanging flower vase'), +('浮舟', 'うきふね', 'floating boat'), +('玉', 'たま', 'ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, okonomiyaki, coin, precious, beautiful, excellent'), +('玉に瑕', 'たまにきず', 'fly in the ointment, small flaw in otherwise perfect object, only trouble, only fault'), +('射干玉', 'ぬばたま', 'pitch-black, darkness'), +('臭い', 'くさい', 'stinking, smelly, suspicious, fishy, clumsy, unskilled, smelling of, looking like, appearing like, smacking of, -ish'), +('臭い玉', 'においだま', 'tonsil stone, tonsillolith, scent ball'), +('匂う', 'におう', 'to be fragrant, to smell (good), to stink, to smell (bad), to glow, to be bright, to smack of, to show hints of'), +('匂い', 'におい', 'odour, odor, scent, smell, stench, aura, whiff, smacks of ..., sense, flavour, flavor'), +('匂いがする', 'においがする', 'to smell, to smell of, to have a smell'), +('秀でる', 'ひいでる', 'to excel, to surpass'), +('恥じる', 'はじる', 'to feel ashamed'), +('恥ずかしい', 'はずかしい', 'embarrassing, embarrassed, ashamed, humiliated, shy, disgraceful, shameful'), +('憂える', 'うれえる', 'to worry about, to be anxious about, to be concerned about, to lament, to grieve, to feel sorrow for'), +('憂い', 'うれい', 'sorrow, grief, anguish, distress, trouble, affliction, anxiety, fear, misgivings'), +('憂い顔', 'うれいがお', 'sad face, sorrowful face, anxious look, sad countenance'), +('報いる', 'むくいる', 'to reward, to recompense, to repay, to retaliate, to get revenge'), +('袖', 'そで', 'sleeve, wing (of a stage, desk, gate, etc.)'), +('袖の下', 'そでのした', 'bribe, money under the table'), +('小袖', 'こそで', 'short sleeved kimono (worn as an undergarment during the Heian period), padded silk garment'), +('舞台袖', 'ぶたいそで', 'wings of a stage, side stage, coulisse'), +('醜い', 'みにくい', 'ugly, unattractive, unsightly, unseemly'), +('醜いアヒルの子', 'みにくいアヒルのこ', 'ugly duckling'), +('醜', 'しこ', 'ugly, repulsive, detestable, contemptible, unworthy, insignificant, humble, strong and frightening thing'), +('醜女', 'しゅうじょ', 'homely woman, plain-looking woman, female demon'), +('蹴る', 'ける', 'to kick, to refuse, to reject, to stamp (on the ground), to firmly press one''s feet (against something)'), +('襲う', 'おそう', 'to attack, to assail, to make an assault, to strike, to hunt down, to succeed (someone in a post, role, etc.), to make a sudden visit'), +('重ね', 'かさね', 'pile, heap, layers (e.g. of clothing), set (e.g. of boxes), course (e.g. of stones), counter for things that are stacked, piled up (or layered, etc.), layers of clothing worn under one''s overcoat, combination of colors created by layering of garments (colours)'), +('かさねの色目', 'かさねのいろめ', 'combination of colors created by layering of garments (colours)'), +('充てる', 'あてる', 'to assign, to set aside'), +('満たす', 'みたす', 'to satisfy (conditions, one''s appetite, etc.), to meet (e.g. demands), to fulfill, to gratify, to fill (e.g. a cup), to pack, to supply'), +('渋', 'しぶ', 'kakishibu, astringent persimmon juice used as a dye or to to treat wood, paper, etc.'), +('渋い', 'しぶい', 'astringent, bitter, puckery, rough, harsh, tart, austere, elegant (and unobtrusive), refined, quiet (and simple), sober, sombre, subdued, tasteful (in a quiet way), understated, sour (look), glum, grim, sullen, sulky, stingy, tight-fisted'), +('柿渋', 'かきしぶ', 'kakishibu, astringent persimmon juice used as a dye or to to treat wood, paper, etc.'), +('鉄渋', 'かなしぶ', 'aqueous iron rust'), +('渋い', 'しぶい', 'astringent, bitter, puckery, rough, harsh, tart, austere, elegant (and unobtrusive), refined, quiet (and simple), sober, sombre, subdued, tasteful (in a quiet way), understated, sour (look), glum, grim, sullen, sulky, stingy, tight-fisted'), +('渋い顔をする', 'しぶいかおをする', 'to frown (on), to be grim-faced, to look sullen'), +('渋る', 'しぶる', 'to hesitate, to hold back, to balk, to falter, to be reluctant, to be unwilling, to begrudge, to have loose painful bowel movement, to suffer from tenesmus'), +('汁', 'しる', 'juice, sap, soup, broth, (dipping) sauce'), +('汁気', 'しるけ', 'juice'), +('鼻汁', 'はなじる', '(liquid) nasal mucus, nasal discharge, pituita, snot'), +('魚汁', 'いしる', 'ishiru, ishiri, fish sauce made of salted and fermented sardines, mackerel, or squid; specialty of the Noto Peninsula'), +('汁', 'しる', 'juice, sap, soup, broth, (dipping) sauce'), +('汁だく', 'つゆだく', 'soupy, containing more broth or sauce than usual (of gyudon, etc.)'), +('お汁', 'おつゆ', 'broth, soup (esp. miso soup)'), +('蕎麦つゆ', 'そばつゆ', 'soba dipping sauce'), +('獣', 'けもの', 'beast, brute, animal'), +('獣の数字', 'けもののすうじ', 'Number of the Beast, 666'), +('獣', 'けもの', 'beast, brute, animal'), +('捧げ銃', 'ささげつつ', 'presenting arms'), +('柔らか', 'やわらか', 'soft, tender, limp, subdued (colour or light) (color), gentle, meek'), +('柔らかい', 'やわらかい', 'soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)'), +('柔らかい', 'やわらかい', 'soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)'), +('柔らかい文章', 'やわらかいぶんしょう', 'informal style'), +('柔', 'やわ', 'soft, fragile, weak, poorly built, insubstantial'), +('柔ら', 'やわら', 'judo, jujutsu'), +('柔ら', 'やわら', 'judo, jujutsu'), +('柔らかい', 'やわらかい', 'soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)'), +('淑やか', 'しとやか', 'graceful, ladylike, modest, gentle, polite, quiet, well-mannered, refined (behavior)'), +('升', 'ます', 'measuring container, measure, box (seating at a theatre, etc.), square on a grid, cell of a grid, square bearing block (at the top of a pillar)'), +('升売り', 'ますうり', 'selling something by the boxful (in a wooden masu box)'), +('潤う', 'うるおう', 'to be moist, to be damp, to get wet, to be watered, to profit by, to receive benefits, to receive favors (favours), to become rich, to become at ease financially'), +('潤す', 'うるおす', 'to moisten, to wet, to profit, to enrich, to benefit'), +('潤む', 'うるむ', 'to be wet, to be moist, to get dim, to become blurred, to get cloudy, to get muddy, to be bleared, to become tear-choked'), +('徐ろに', 'おもむろに', 'suddenly, abruptly, deliberately, slowly, gently'), +('緒', 'お', 'cord, strap, thong, string (of a musical instrument, bow, etc.)'), +('緒締め', 'おじめ', 'string-fastener, drawstring on pouch or purse (handbag)'), +('下緒', 'さげお', 'cord for attaching a sword scabbard tightly to the obi, sword strap, sword knot'), +('筈緒', 'はずお', 'hemp rope fastened from the bow of a Japanese ship to the tip of the mast'), +('糸口', 'いとぐち', 'beginning, start, first step, clue, lead, hint, thread end'), +('糸口を開く', 'いとぐちをひらく', 'to find a clue, to make a beginning'), +('召す', 'めす', 'to call, to invite, to send for, to summon, to eat, to drink, to put on, to wear, to ride, to catch (a cold), to take (a bath), to tickle (one''s fancy), to put on (years), to commit (seppuku), to do, used to show respect'), +('盾', 'たて', 'shield, buckler, escutcheon, pretext'), +('楯突く', 'たてつく', 'to defy, to disobey, to rebel against, to oppose, to resist'), +('人間の盾', 'にんげんのたて', 'human shield'), +('円盾', 'まるたて', 'round shield, buckler'), +('床', 'とこ', 'bed, bedding, sickbed, alcove, riverbed, seedbed, straw "core" of a tatami mat, floor'), +('床屋', 'とこや', 'barbershop, barber shop, barber'), +('鋏', 'やっとこ', 'pincers, nippers, pliers'), +('金床', 'かなとこ', 'anvil'), +('床', 'ゆか', 'floor, stage (for the narrator and the shamisen player), dining platform built across a river'), +('床下', 'ゆかした', 'under the floor'), +('河床', 'かしょう', 'riverbed, raised platform on the bank of a river for enjoying the cool in summer'), +('納涼床', 'のうりょうゆか', 'raised platform on the bank of a river for enjoying the summer cool'), +('巡る', 'めぐる', 'to go around, to return, to surround, to concern (usu. of disputes)'), +('巡り', 'めぐり', 'circumference, girth, tour, pilgrimage, circulation (e.g. of blood)'), +('めぐり合う', 'めぐりあう', 'to meet fortuitously (e.g. running into an old friend), to meet by chance, to happen across'), +('瞬く', 'またたく', 'to twinkle (e.g. stars), to flicker, to waver, to blink (one''s eyes), to wink, to bat'), +('瞬く間に', 'またたくまに', 'in the twinkling of an eye, in a flash'), +('瞬ぐ', 'まじろぐ', 'to wink, to blink, to twinkle, to flicker'), +('匠', 'たくみ', 'craftsman, artisan, workman, carpenter, craft, craftsmanship, skill, dexterity, design, plot, scheme, artifice, trick'), +('飛騨の匠', 'ひだのたくみ', 'historical system whereby the Hida region provided the central government 10 carpenters per village in place of taxes'), +('肖る', 'あやかる', 'to share (someone''s) good luck, to follow (someone''s) example, to enjoy the same benefits (of someone or something), to be named after'), +('如し', 'ごとし', 'like, as if, the same as'), +('上る', 'のぼる', 'to ascend, to go up, to climb, to ascend (as a natural process, e.g. the Sun), to rise, to go to (the capital), to be promoted, to add up to, to advance (in price), to swim up (a river), to sail up, to come up (on the agenda)'), +('宵', 'よい', 'evening, early night hours'), +('宵っぱり', 'よいっぱり', 'night owl, nighthawk, late bird, to stay up late, to keep late hours'), +('待宵', 'まつよい', 'night where one waits for someone who is supposed to come, night of the 14th day of the eight month of the lunar calendar'), +('春の宵', 'はるのよい', 'spring evening'), +('尚', 'なお', 'still, yet, more, still more, greater, further, as ..., like ..., furthermore, in addition, moreover, note that ...'), +('尚更', 'なおさら', 'still more, even more, all the more, still less, even less'), +('尚々', 'なおなお', 'all the more'), +('今なお', 'いまなお', 'still, even now'), +('沼', 'ぬま', 'marsh, swamp, wetland, bog, pond, being hooked (on a video game, TV show, etc.)'), +('沼地', 'ぬまち', 'marshland, wetland, swampland'), +('渡る', 'わたる', 'to cross over, to go across, to extend, to cover, to range, to span'), +('称える', 'たたえる', 'to extol, to give praise'), +('称える', 'となえる', 'to assume the name of'), +('褒める', 'ほめる', 'to praise, to commend, to compliment, to speak well of, to speak highly of'), +('手のひら', 'てのひら', 'palm (of the hand)'), +('手のひらを返す', 'てのひらをかえす', 'to flip-flop, to do an about-face, to flip over one''s hand, to do something easy'), +('手のひら', 'てのひら', 'palm (of the hand)'), +('掌の玉', 'たなごころのたま', 'apple of one''s eye'), +('焦げる', 'こげる', 'to burn, to scorch, to char, to singe'), +('焦がす', 'こがす', 'to burn, to scorch, to singe, to char'), +('焦がれる', 'こがれる', 'to yearn for, to be in love with'), +('焦る', 'あせる', 'to be in a hurry, to be impatient, to be anxious (to do), to fret, to get a fright, to panic, to get flustered, to be startled'), +('焦れる', 'じれる', 'to get impatient, to become irritated, to fret, to chafe'), +('焦らす', 'じらす', 'to tease, to irritate, to tantalize, to keep (someone) in suspense'), +('勧める', 'すすめる', 'to recommend (someone to do), to advise, to encourage, to urge, to recommend (a book, someone for a position, etc.), to suggest, to offer (a drink, cigarette, seat, etc.)'), +('詳しい', 'くわしい', 'detailed, full, minute, knowing very well, knowledgeable (about), well-acquainted (with), well-informed (about), familiar (with)'), +('詳らか', 'つまびらか', 'detailed, clear'), +('詳らかでない', 'つまびらかでない', 'unknown'), +('突く', 'つく', 'to prick, to stab, to poke, to prod, to push, to thrust, to nudge, to hit, to strike, to use (a cane), to prop oneself up with, to press against (the floor, etc.), to attack, to brave (the rain, etc.)'), +('衝羽根', 'つくばね', 'Buckleya lanceolata (species of parasitic deciduous shrub)'), +('詔', 'みことのり', 'imperial decree, imperial edict'), +('償う', 'つぐなう', 'to make up for, to compensate for, to indemnify, to recompense, to redeem (e.g. a fault), to atone for'), +('剰え', 'あまつさえ', 'besides, moreover, in addition'), +('憧れる', 'あこがれる', 'to long for, to yearn after, to admire, to be attracted by'), +('丈', 'たけ', 'height, stature, length (esp. of clothing), all (one has), everything, magnificence (of a waka poem, etc.)'), +('丈比べ', 'たけくらべ', 'comparison of statures'), +('成る丈', 'なるたけ', 'as (much) as possible, as (much) as one can, wherever practicable, if possible'), +('草丈', 'くさたけ', 'rice plant''s height'), +('丈', 'だけ', 'only, just, merely, simply, no more than, nothing but, alone, as much as, to the extent of, enough to'), +('丈に', 'だけに', 'given that ... it is only natural that ..., ... being the case, it is unavoidable that ..., (precisely) because ..., as might be expected (from ...), contrary to expectations ...'), +('何れ丈', 'どれだけ', 'how long, how much, to what extent'), +('此れ丈', 'これだけ', 'to this extent, to this degree, this much, this little'), +('清める', 'きよめる', 'to purify, to cleanse, to exorcise, to purge, to ward off'), +('清い', 'きよい', 'clear, pure, noble'), +('畳む', 'たたむ', 'to fold (clothes, umbrella), to close (a shop, business), to vacate'), +('畳', 'たたみ', 'tatami mat, Japanese straw floor coverings'), +('畳敷き', 'たたみじき', 'tatami-matted'), +('琉球畳', 'りゅうきゅうたたみ', 'Ryūkyū tatami, sturdy and durable tatami that has a facing weaved from Shichito matgrass'), +('醸す', 'かもす', 'to brew (sake, etc.), to cause, to bring on, to bring about, to give rise to'), +('鐘', 'かね', 'bell (often a large hanging bell), chime'), +('鐘撞', 'かねつき', 'ringing of a bell, bell ringer'), +('入相の鐘', 'いりあいのかね', 'evening bell, vespers bell'), +('時の鐘', 'ときのかね', 'hour bell'), +('拭う', 'ぬぐう', 'to wipe, to mop up, to get rid of (an impression, feeling, blemish, etc.), to dispel (e.g. shame), to erase, to remove'), +('拭く', 'ふく', 'to wipe, to dry'), +('娘子', 'じょうし', 'girl, young (unmarried) woman, (grown) woman, lady, (someone else''s) wife'), +('娘細胞', 'じょうさいぼう', 'daughter cell'), +('増える', 'ふえる', 'to increase, to multiply'), +('増やす', 'ふやす', 'to increase, to add to, to augment'), +('嘱する', 'しょくする', 'to entrust, to send (a message, etc.)'), +('飾る', 'かざる', 'to decorate, to ornament, to adorn, to display, to exhibit, to put on show, to arrange, to mark (e.g. the day with a victory), to adorn (e.g. the front page), to grace (e.g. the cover), to affect (a manner), to keep up (appearances), to embellish, to dress up, to be showy, to be pretentious'), +('飾り', 'かざり', 'decoration, ornament, trimmings'), +('飾り気', 'かざりけ', 'affectation, showiness, pretence'), +('蓬莱飾り', 'ほうらいかざり', 'Kansai New Year decoration (made from food)'), +('松飾り', 'まつかざり', 'New Year''s pine decorations'), +('辱める', 'はずかしめる', 'to put to shame, to humiliate, to disgrace, to insult, to rape, to assault, to violate'), +('触れる', 'ふれる', 'to touch, to feel, to touch (with), to experience, to come in contact with, to perceive, to touch on (a subject), to allude to, to refer to, to mention, to bring up, to be in conflict with, to violate (law, copyright, etc.), to infringe, to proclaim, to make known, to spread (e.g. a rumour)'), +('触る', 'さわる', 'to touch, to feel, to get involved (with), to approach, to be harmful to, to hinder, to interfere with, to irritate'), +('触る', 'さわる', 'to touch, to feel, to get involved (with), to approach, to be harmful to, to hinder, to interfere with, to irritate'), +('触り', 'さわり', 'feel, touch, impression (of a person), most impressive passage, highlight, punch line, beginning'), +('伸びる', 'のびる', 'to stretch, to extend, to lengthen, to grow (of hair, height, grass, etc.), to straighten out, to be flattened, to become smooth, to spread (of paint, cream, etc.), to stretch out (e.g. of a hand), to extend, to lose elasticity, to become slack, to become soggy (e.g. noodles), to make progress, to develop, to expand, to increase, to improve, to be exhausted, to be groggy, to pass out, to collapse, to be prolonged (meeting, life span, etc.), to be extended (e.g. deadline), to lengthen (e.g. of the days), to be postponed, to be delayed, to be put off'), +('伸ばす', 'のばす', 'to grow long (e.g. hair, nails), to lengthen, to extend, to stretch, to reach out, to hold out, to straighten, to smooth out, to spread evenly (dough, cream, etc.), to dilute, to thin out, to postpone, to prolong, to strengthen, to develop, to expand'), +('延べる', 'のべる', 'to lay out (a futon), to make (bed), to spread out, to stretch, to widen, to postpone, to extend'), +('伸す', 'のす', 'to stretch, to extend, to lengthen, to spread, to gain influence, to become stronger, to increase (e.g. in scope), to go further, to extend one''s journey, to smooth out, to roll out, to spread out (something folded), to iron out (creases), to knock out, to knock down'), +('侵す', 'おかす', 'to invade, to raid, to violate (airspace, etc.), to intrude, to trespass, to infringe, to encroach, to harm, to afflict, to affect'), +('辛い', 'からい', 'spicy, hot, salty, harsh (criticism), severe (punishment), strict, painful, bitter, difficult, tough'), +('辛い味', 'からいあじ', 'pungent taste'), +('辛い', 'つらい', 'painful, bitter, heart-breaking, difficult (emotionally), tough, difficult, hard (usu. of situations), cruel, harsh, cold'), +('辛い目に会う', 'つらいめにあう', 'to have a hard time of it'), +('辛', 'かのと', '8th in rank, eighth sign of the Chinese calendar'), +('辛卯', 'かのとう', 'Metal Rabbit (28th year of the sexagenary cycle, e.g. 1951, 2011, 2071)'), +('唇', 'くちびる', 'lips'), +('唇を奪う', 'くちびるをうばう', 'to steal a kiss, to snatch a kiss'), +('上唇', 'うわくちびる', 'upper lip, labrum'), +('下唇', 'したくちびる', 'lower lip'), +('津', 'つ', 'Tsu (city in Mie), harbour, harbor, port, ferry'), +('津波', 'つなみ', 'tsunami, tidal wave'), +('大津', 'おおつ', 'Ōtsu (city in Shiga)'), +('秋津', 'あきつ', 'dragonfly'), +('尻', 'しり', 'buttocks, behind, rump, bottom, hips, undersurface, bottom, last place, end, consequence'), +('尻尾', 'しっぽ', 'tail (animal), tail end, tip'), +('道の後', 'みちのしり', 'the part of a province furthest from the capital'), +('美尻', 'びしり', 'beautiful buttocks'), +('振る', 'ふる', 'to wave, to shake, to swing, to sprinkle, to throw (dice), to cast (actor), to allocate (work), to turn down (someone), to reject, to jilt, to dump, to abandon, to give up, to ruin, to add kana indicating a reading of a word, to slightly change headings, to change directions, to extract by broiling, to prepare an infusion of, to decoct, to carry with great vigor (e.g. a portable shrine), to bring up a topic, to lead to a topic, to replace, to substitute, to set up a joke for someone else'), +('振る舞う', 'ふるまう', 'to behave, to conduct oneself, to entertain, to treat someone (to a drink), to make tea for someone (tea ceremony)'), +('振れる', 'ふれる', 'to swing, to shake, to wave, to veer, to deflect, to lean towards'), +('振るう', 'ふるう', 'to swing, to wield (physically), to exert, to exercise (e.g. power, ability), to exhibit, to display, to wield (metaphorically), to flourish, to prosper, to thrive'), +('浸す', 'ひたす', 'to soak, to dip, to steep, to immerse, to moisten, to wet'), +('浸る', 'ひたる', 'to be soaked in, to be flooded, to be submerged, to be immersed in (joy, memories, alcohol, etc.), to give oneself over to, to bask in'), +('浸かる', 'つかる', 'to be submerged, to be soaked, to be pickled, to be well seasoned, to be totally immersed (in a condition, e.g. laziness)'), +('譲る', 'ゆずる', 'to hand over, to transfer, to turn over, to assign, to convey, to bequeath, to give up (e.g. one''s seat), to give way, to yield, to concede, to give ground, to surrender, to sell, to postpone, to put off, to defer'), +('炊く', 'たく', 'to cook (grains, e.g. rice), to boil, to simmer, to stew, to seethe'), +('酔う', 'よう', 'to get drunk, to become intoxicated, to feel sick (e.g. in a vehicle), to become nauseated, to be elated, to be exalted, to be spellbound, to be in raptures'), +('酔い', 'よい', 'drunkenness, intoxication, motion sickness, travel sickness'), +('酔いが回る', 'よいがまわる', 'to get drunk, to become tipsy'), +('二日酔い', 'ふつかよい', 'hangover'), +('酔う', 'よう', 'to get drunk, to become intoxicated, to feel sick (e.g. in a vehicle), to become nauseated, to be elated, to be exalted, to be spellbound, to be in raptures'), +('酔っ払い', 'よっぱらい', 'drunkard'), +('寝る', 'ねる', 'to sleep (lying down), to go to bed, to lie in bed, to lie down, to sleep (with someone, i.e. have intercourse), to lie flat (e.g. of hair), to lie idle (of funds, stock, etc.), to ferment (of soy sauce, miso, etc.)'), +('寝る時間', 'ねるじかん', 'bedtime'), +('寝かす', 'ねかす', 'to put to sleep, to lay (something) on its side'), +('吹く', 'ふく', 'to blow (of the wind), to blow (one''s breath), to breathe out, to blow on (hot tea, candles, etc.), to puff, to play (a wind instrument), to blow (a whistle, trumpet, etc.), to whistle (a tune), to emit (smoke, fire, etc.), to spout, to spew, to puff out, to sprout, to put forth (buds), to appear (on the surface), to form, to be coated with (powder, rust, etc.), to burst out laughing, to burst into laughter, to brag, to talk big, to smelt, to mint'), +('刃', 'は', 'edge (of a knife or sword), prong (of an electrical plug)'), +('鋼', 'はがね', 'steel, sword steel, sword'), +('諸刃', 'もろは', 'double-edged, double-edged blade'), +('直刃', 'すぐは', 'suguha, straight temper line (on a sword)'), +('刃', 'やいば', 'blade, sword, forged blade, wavy pattern on forged blades, sharpness, unhulled rice'), +('刃を交える', 'やいばをまじえる', 'to cross swords (with)'), +('氷の刃', 'こおりのやいば', 'gleaming sword'), +('須らく', 'すべからく', 'absolutely (ought to), by all means, all, entirely'), +('粋', 'いき', 'chic, smart, stylish, tasteful, refined, sophisticated, understanding, considerate, thoughtful, sensible, familiar with worldly pleasures (esp. sexual relations, geisha districts and red-light districts)'), +('粋がる', 'いきがる', 'to be pretentious, to put on airs, to try to appear smart, to act brave, to try to look cool'), +('不意気', 'ぶいき', 'vulgar, unrefined'), +('遂げる', 'とげる', 'to accomplish, to achieve, to carry out, to arrive at (a certain outcome), to come to, to end with'), +('遂に', 'ついに', 'finally, at last, in the end, after all, never (happened)'), +('衰える', 'おとろえる', 'to become weak, to decline, to wear, to abate, to decay, to wither, to waste away'), +('尋ねる', 'たずねる', 'to ask, to enquire, to inquire, to search, to look for, to look into, to investigate'), +('尋', 'ひろ', 'fathom'), +('八尋', 'やひろ', 'great length, great size'), +('薪', 'まき', 'piece(s) of firewood (esp. chopped or split from logs), kindling (twigs, branches, etc.), firewood'), +('薪入れ', 'たきぎいれ', 'wood basket, firewood bucket, log holder'), +('薪', 'まき', 'piece(s) of firewood (esp. chopped or split from logs), kindling (twigs, branches, etc.), firewood'), +('薪割り', 'まきわり', 'hatchet, axe, wood-chopping, wood-splitting'), +('甚だ', 'はなはだ', 'very, greatly, exceedingly'), +('甚だしい', 'はなはだしい', 'extreme, excessive, terrible, intense, severe, serious, tremendous, heavy (damage)'), +('甚だしい', 'はなはだしい', 'extreme, excessive, terrible, intense, severe, serious, tremendous, heavy (damage)'), +('尽きる', 'つきる', 'to be used up, to be run out, to be exhausted, to be consumed, to come to an end'), +('尽くす', 'つくす', 'to use up, to exhaust, to run out of, to devote oneself (to), to do one''s utmost (for), to serve, to work (for a cause), to do to exhaustion, to do completely, to do fully'), +('尽かす', 'つかす', 'to use completely, to use up, to exhaust, to exhaust someone''s civility, to give up (on someone)'), +('悉く', 'ことごとく', 'altogether, entirely'), +('震う', 'ふるう', 'to shake, to tremble, to vibrate'), +('震える', 'ふるえる', 'to shiver, to shake, to quake, to tremble, to quaver, to quiver'), +('震わせる', 'ふるわせる', 'to (make something) quiver, to shake, to tremble, to vibrate'), +('震わす', 'ふるわす', 'to (make something) quiver, to shake, to tremble, to vibrate'), +('眠る', 'ねむる', 'to sleep, to die, to rest (in peace), to lie (buried), to sleep (in the grave), to lie idle (e.g. of resources), to lie unused, to lie untapped, to lie untouched, to close one''s eyes'), +('眠い', 'ねむい', 'sleepy, drowsy, somnolent'), +('穂', 'ほ', 'ear (of a cereal plant), head, spike, point (of a brush, spear, etc.), tip, (pointed) head, crest (of a wave), scion (in grafting)'), +('穂木', 'ほぎ', 'twig used in grafting, budwood'), +('花穂', 'かすい', 'spike'), +('瑞穂', 'みずほ', 'fresh, young ears of rice'), +('慎む', 'つつしむ', 'to be careful, to be discreet, to do in moderation, to refrain (from overdoing), to abstain, to be reverent, to be purified, to be chaste'), +('慎ましい', 'つつましい', 'modest, reserved, quiet, humble'), +('慎む', 'つつしむ', 'to be careful, to be discreet, to do in moderation, to refrain (from overdoing), to abstain, to be reverent, to be purified, to be chaste'), +('慎み', 'つつしみ', 'modesty, self-control, discretion'), +('慎み', 'つつしみ', 'modesty, self-control, discretion'), +('慎み深い', 'つつしみぶかい', 'discreet, modest, cautious'), +('診る', 'みる', 'to examine (medically)'), +('崇める', 'あがめる', 'to revere, to respect, to worship'), +('随に', 'まにまに', 'at the mercy of (e.g. wind, waves), (act) as one is told (by)'), +('従う', 'したがう', 'to obey (an order, law, etc.), to abide by (a rule, custom, etc.), to follow, to observe, to conform to, to yield to, to follow (a person), to accompany, to go with, to go alongside (e.g. a river), to follow (e.g. a sign), to serve (as), to engage in (work)'), +('詳らか', 'つまびらか', 'detailed, clear'), +('裾', 'すそ', 'hem, (trouser) cuff, shirttail, bottom (of a kimono), train (of a dress), bottom part, bottom edge, foot (of a mountain), tips (of hair), downstream'), +('裾野', 'すその', 'foot of a mountain, plain at the foot of a mountain, range, spread, extent, encompassing circle'), +('山裾', 'やますそ', 'foot of a mountain, base of a mountain, foothills'), +('裳裾', 'もすそ', 'cuff (of pants), hem (of skirt), train (of dress), foot (of mountain)'), +('杉', 'すぎ', 'Japanese cedar (Cryptomeria japonica)'), +('杉戸', 'すぎど', 'door made of cedar'), +('台杉', 'だいすぎ', 'coppicing-like technique used with cedar trees'), +('神代杉', 'じんだいすぎ', 'lignitized Japanese cedar, lignitised Japanese cedar'), +('据える', 'すえる', 'to place (in position), to fix, to set (e.g. table), to lay (foundation), to install, to seat (someone), to settle (upon something), to fix (e.g. one''s gaze), to apply (moxa)'), +('座る', 'すわる', 'to sit, to squat, to assume (a position), to hold steady, to hold still'), +('瀬', 'せ', 'shallows, shoal, rapids, current, torrent, position, place, chance, opportunity'), +('瀬戸物', 'せともの', 'earthenware, porcelain, china, pottery, crockery'), +('早瀬', 'はやせ', 'swift current, rapids'), +('高瀬', 'たかせ', 'shallow river, shallows, flatboat, river boat'), +('此れ', 'これ', 'this, this one, this person, now, this point (in time), here, used to stress the subject of a sentence, I, me'), +('これ等', 'これら', 'these'), +('彼是', 'あれこれ', 'this and that, this or that, one thing or another, this way and that, around, about, round about, roughly, nearly, almost'), +('此処', 'ここ', 'here, this place, this point, here, now, these past ... (e.g. three years), these last ..., the next ... (e.g. few days), these next ...'), +('凄い', 'すごい', 'terrible, dreadful, amazing (e.g. of strength), great (e.g. of skills), wonderful, terrific, to a great extent, vast (in numbers), awfully, very, immensely'), +('凄い事になる', 'すごいことになる', 'to go crazy (esp. of a situation or thing), to get out of hand, to end up in an extreme state'), +('凄まじい', 'すさまじい', 'terrific, fierce, terrible, tremendous, dreadful, awful, amazing, absurd, cutthroat, intense'), +('等しい', 'ひとしい', 'equal, identical, the same, no different (to), just like, equivalent'), +('等しく', 'ひとしく', 'equally, evenly, similarly, alike, just as ..., as soon as ..., the moment (that) ..., immediately upon ...'), +('行く', 'いく', 'to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination'), +('行く', 'いく', 'to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination'), +('婿', 'むこ', 'husband, groom, (one''s) son-in-law'), +('婿入', 'むこいり', 'being adopted into the family of one''s bride'), +('花婿', 'はなむこ', 'bridegroom'), +('相婿', 'あいむこ', 'brother-in-law'), +('請う', 'こう', 'to beg, to ask, to request, to invite'), +('乞うご期待', 'こうごきたい', 'don''t miss it, stay tuned, coming soon, look forward to it'), +('受ける', 'うける', 'to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well'), +('枢', 'とぼそ', 'cavities in the frame of a door used as part of a pivot hinge, door'), +('覚ます', 'さます', 'to awaken, to arouse from sleep, to bring to one''s senses, to disabuse (someone of), to sober up, to dampen, to throw a damper on, to spoil'), +('覚める', 'さめる', 'to wake, to wake up, to become sober, to sober up, to regain consciousness (e.g. after anaesthesia), to come to one''s senses, to be disillusioned'), +('退ける', 'しりぞける', 'to repel, to drive away, to repulse, to reject'), +('背', 'せ', 'back, reverse, rear side, back (e.g. of a chair), spine (of a book), height, stature, ridge (of a mountain)'), +('背', 'せい', 'height, stature'), +('背', 'せい', 'height, stature'), +('跡', 'あと', 'trace, tracks, mark, sign, site, remains, ruins, scar'), +('後始末', 'あとしまつ', 'settlement (of a matter), sorting out, winding up (affairs), dealing with the aftermath, cleaning up afterwards, tidying up (when finished)'), +('焼け跡', 'やけあと', 'ruins of a fire, fire-devastated area'), +('後々', 'あとあと', 'future, distant future'), +('惜しい', 'おしい', 'regrettable, disappointing, unfortunate, precious, dear, valuable, too good for, deserving better, almost (but not quite), close (but no cigar)'), +('惜しむ', 'おしむ', 'to be frugal, to be sparing, to value, to hold dear, to regret (e.g. a loss), to feel sorry (for), to be unwilling, to be reluctant'), +('惜しむべき', 'おしむべき', 'lamentable, regrettable'), +('誓う', 'ちかう', 'to swear, to vow, to take an oath, to pledge'), +('密か', 'ひそか', 'secret, private, surreptitious'), +('摂る', 'とる', 'to have (e.g. lunch), to take (e.g. vitamins)'), +('扇', 'おうぎ', 'folding fan'), +('扇形', 'おうぎがた', 'fan shape, sector'), +('舞扇', 'まいおうぎ', 'dancer''s fan'), +('絵扇', 'えおうぎ', 'fan painted with a picture'), +('拙い', 'つたない', 'poor-quality, shoddy, crude, unskillful, inexpert, maladroit, inept, foolish, clumsy, unlucky'), +('占める', 'しめる', 'to occupy, to hold, to account for, to make up, to take up'), +('占う', 'うらなう', 'to tell someone''s fortune, to forecast, to predict, to divine'), +('羨む', 'うらやむ', 'to envy, to be envious of, to be jealous of'), +('煎じる', 'せんじる', 'to boil, to decoct, to infuse'), +('炒る', 'いる', 'to roast, to parch, to toast, to boil down'), +('移る', 'うつる', 'to move (house), to transfer (department), to change the target of interest or concern, to elapse (passage of time), to be permeated by a colour or scent, to be infected, to be contagious, to spread (as in fire)'), +('移す', 'うつす', 'to change, to swap, to substitute, to transfer, to change the object of one''s interest or focus, to spend or take time, to infect, to permeate something with the smell or colour of something, to move on to the next or different stage of (a plan, etc.)'), +('詮ずる所', 'せんずるところ', 'after all, in the end, in short, given due consideration, when all is said and done'), +('甲斐', 'かい', 'effect, result, worth, use, avail, Kai (former province located in present-day Yamanashi Prefecture)'), +('阻む', 'はばむ', 'to keep someone from doing, to stop, to prevent, to check, to hinder, to obstruct, to oppose, to thwart'), +('疎い', 'うとい', 'distant (from someone), aloof, estranged, knowing little (of), ill-informed (about), ignorant (of), unfamiliar (with), unacquainted (with)'), +('疎む', 'うとむ', 'to shun, to avoid, to ostracize, to neglect, to distance oneself from, to give the hard shoulder'), +('疎ら', 'まばら', 'sparse, thin, scattered, straggling, sporadic'), +('漸く', 'ようやく', 'finally, at last, barely, narrowly, hardly, only just, gradually, little by little, by degrees'), +('稍', 'やや', 'a little, partially, somewhat, slightly, semi-, -ish, on the ... side, a short time, a while'), +('漸う', 'ようよう', 'finally, barely, only just, gradually'), +('粗い', 'あらい', 'coarse, rough'), +('繕う', 'つくろう', 'to mend, to patch up, to repair, to fix, to darn, to fix (hair, clothes, appearance, etc.), to adjust, to tidy up, to groom, to keep up appearances, to cover up (e.g. a mistake), to gloss over, to treat (illness, injury, etc.)'), +('狙う', 'ねらう', 'to aim at (with a weapon, etc.), to be after (something or someone), to have an eye on, to plan to make one''s own, to aim for, to set up as a goal'), +('狙い', 'ねらい', 'aim'), +('狙いを定める', 'ねらいをさだめる', 'to take aim (at), to set one''s sights (on), to zero in (on)'), +('踏む', 'ふむ', 'to step on, to tread on, to trample on, to set foot on (e.g. foreign soil), to stand on, to visit, to experience, to undergo, to follow (rules, principles, etc.), to go through (e.g. formalities), to complete, to estimate, to guess, to judge, to value, to appraise, to rhyme, to succeed to (e.g. the throne)'), +('勧める', 'すすめる', 'to recommend (someone to do), to advise, to encourage, to urge, to recommend (a book, someone for a position, etc.), to suggest, to offer (a drink, cigarette, seat, etc.)'), +('措く', 'おく', 'to stop (doing something), to cease, to put aside, to leave as is, to leave alone, to exclude, to except'), +('鮮やか', 'あざやか', 'vivid, bright, brilliant, clear, fresh, vibrant, skillful, skilful, adept, adroit, deft, brilliant, beautiful, fine, excellent'), +('潜む', 'ひそむ', 'to lurk, to be hidden, to be concealed, to lie dormant, to be latent'), +('潜る', 'もぐる', 'to dive (into or under water), to get under, to get into, to get in, to creep into, to crawl under, to bury oneself, to burrow into, to dig oneself into, to snuggle under, to hide oneself (esp. from the government), to conceal oneself, to go underground'), +('潜る', 'くぐる', 'to go under, to pass under, to go through, to pass through, to dive (into or under the water), to evade, to get around, to slip past, to survive, to surmount'), +('潜める', 'ひそめる', 'to hide, to conceal, to lower volume (of a sound or one''s voice) so as not to be heard, to become quiet and inconspicuous'), +('遡る', 'さかのぼる', 'to go upstream, to go back (in time, to origin), to date back to, to trace back to, to make retroactive'), +('掃く', 'はく', 'to sweep, to brush, to clean, to gather silkworms'), +('爽やか', 'さわやか', 'fresh, refreshing, invigorating, clear (e.g. voice), fluent, eloquent'), +('桑', 'くわ', 'mulberry (tree)'), +('桑原', 'くわばら', 'mulberry field'), +('挿す', 'さす', 'to insert, to put in, to plant (a cutting), to strike, to arrange (flowers), to wear (a sword) in one''s belt, to shut, to close, to lock, to fasten'), +('挟む', 'はさむ', 'to hold between (e.g. one''s fingers, chopsticks), to grip (from both sides), to put between, to sandwich between, to insert, to interpose, to catch (e.g. a finger in a door), to trap, to pinch, to insert (e.g. a break into proceedings), to interpose (e.g. an objection), to interject, to throw in (e.g. a joke), to be on either side of (a road, table, etc.), to have between each other, to be across (a street, river, etc.), to harbour (feelings), to cast (e.g. doubt)'), +('会う', 'あう', 'to meet, to encounter, to see, to have an accident, to have a bad experience'), +('会わせる', 'あわせる', 'to make (someone) to meet, to let (someone) meet, to expose to, to subject to'), +('盛ん', 'さかん', 'prosperous, flourishing, thriving, successful, popular, widespread, active, lively, energetic, vigorous, brisk, strong, enthusiastic, eager, hearty, frequent, repeated'), +('訴える', 'うったえる', 'to raise, to bring to (someone''s attention), to appeal to (reason, emotions, etc.), to work on (one''s emotions), to play on (one''s sympathies), to complain, to sue (a person), to take someone to court, to resort to (e.g. arms, violence)'), +('探す', 'さがす', 'to search for, to look for, to hunt for, to seek, to search (a house, pocket, etc.), to search through, to rummage in (e.g. a drawer), to fish around'), +('葬る', 'ほうむる', 'to bury, to inter, to entomb, to cover up, to hush up, to shelve'), +('礎', 'いしずえ', 'foundation stone, cornerstone'), +('礎を築く', 'いしずえをきずく', 'to lay the foundation (for)'), +('喪', 'も', 'mourning, calamity, misfortune'), +('喪服', 'もふく', 'mourning dress'), +('服喪', 'ふくも', 'going into mourning'), +('双子', 'ふたご', 'twins, twin'), +('双葉', 'ふたば', 'seed leaves (of a dicot), cotyledons, bud, sprout, early stages, very beginning'), +('並ぶ', 'ならぶ', 'to line up, to stand in a line, to rival, to match, to equal'), +('痩せる', 'やせる', 'to become thin, to lose weight, to reduce (one''s) weight, to slim, to be barren, to be infertile, to be sterile'), +('船', 'ふね', 'ship, boat, watercraft, vessel, seaplane, tank, tub, vat, trough, counter for boat-shaped containers (e.g. of sashimi)'), +('燥ぐ', 'はしゃぐ', 'to make merry, to frolic, to be in high spirits'), +('促す', 'うながす', 'to urge, to encourage, to press, to prompt, to draw (attention to), to stimulate (e.g. growth), to hasten (e.g. development), to quicken, to accelerate, to promote'), +('贈る', 'おくる', 'to give (as a gift), to present, to confer, to bestow, to award'), +('謙る', 'へりくだる', 'to deprecate oneself and praise the listener, to abase oneself'), +('憎む', 'にくむ', 'to hate, to detest'), +('憎い', 'にくい', 'hateful, abominable, poor-looking, detestable, amazing, fantastic, admirable, lovely, wonderful'), +('憎らしい', 'にくらしい', 'odious, hateful, detestable, horrible, (speaking ironically) darling'), +('憎しみ', 'にくしみ', 'hatred'), +('憎しみ合う', 'にくしみあう', 'to hate each other, to hate mutually'), +('耐える', 'たえる', 'to bear, to stand, to endure, to put up with, to support, to withstand, to resist, to brave, to be fit for, to be equal to'), +('騒ぐ', 'さわぐ', 'to make noise, to make racket, to be noisy, to rustle, to swoosh, to make merry, to clamor, to clamour, to make a fuss, to kick up a fuss, to lose one''s cool, to panic, to act flustered, to feel tense, to be uneasy, to be excited'), +('騒がしい', 'さわがしい', 'noisy, boisterous, turbulent (era, etc.), troubled'), +('霜', 'しも', 'frost, white hair, grey hair, gray hair'), +('霜降り', 'しもふり', 'speckled with white, salt-and-pepper (pattern, fabric, etc.), marbling (of beef), (of fish, chicken, shellfish, etc.) blanching by exposure to boiling and then icy water, formation of frost'), +('朝霜', 'あさしも', 'morning frost'), +('水霜', 'みずじも', 'frozen dew (in late autumn), waters (i.e. amniotic fluid discharged shortly before birth)'), +('捉える', 'とらえる', 'to catch, to capture, to seize, to arrest, to grab, to catch hold of, to grasp (e.g. meaning), to perceive, to capture (e.g. features), to captivate, to move (one''s heart)'), +('怠る', 'おこたる', 'to be negligent in doing something, to shirk, to be off one''s guard'), +('怠ける', 'なまける', 'to be idle, to slacken, to neglect (e.g. one''s work)'), +('藻', 'も', 'algae, waterweed, seaweed, duckweed'), +('藻掻く', 'もがく', 'to struggle, to writhe, to wriggle, to squirm, to act frantically, to make desperate efforts'), +('山椒藻', 'さんしょうも', 'floating watermoss (Salvinia natans)'), +('菅藻', 'すがも', 'Phyllospadix iwatensis (species of seagrass)'), +('落ちる', 'おちる', 'to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one''s gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone''s hands), to become someone''s possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths'), +('就く', 'つく', 'to take (seat, position, course, office, etc.), to assume, to be hired, to be employed, to ascend (the throne), to accede, to start (on a journey), to commence, to depart, to study (under teacher), to be an apprentice'), +('就ける', 'つける', 'to install (a king, emperor, etc.), to appoint (to a post), to promote, to assign (to study under)'), +('即ち', 'すなわち', 'that is, namely, i.e.'), +('堆い', 'うずたかい', 'piled up high, in a heap'), +('袋', 'ふくろ', 'bag, sack, pouch, skin of an orange (and other like fruits), dead end, plot of land surrounded by water'), +('袋小路', 'ふくろこうじ', 'blind alley, cul-de-sac, dead end street, deadlock, impasse, dead end'), +('空気袋', 'くうきふくろ', 'air sac, bladder, air bag, windbag, type of inflatable air mattress'), +('換える', 'かえる', 'to replace, to exchange, to interchange, to substitute'), +('替わる', 'かわる', 'to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch'), +('唾', 'つば', 'saliva, spit, sputum'), +('唾く', 'つばく', 'to spit'), +('生唾', 'なまつば', 'saliva (in one''s mouth)'), +('痰唾', 'たんつば', 'sputum, phlegm'), +('唾', 'つば', 'saliva, spit, sputum'), +('滞る', 'とどこおる', 'to stagnate, to be delayed, to be left undone, to be overdue (of a payment), to fall into arrears, to be outstanding'), +('選ぶ', 'えらぶ', 'to choose, to select'), +('滝', 'たき', 'waterfall, rapids'), +('滝川', 'たきがわ', 'rapids'), +('小滝', 'おたき', 'cascade'), +('白滝', 'しらたき', 'shirataki noodles, white noodles made from konjak starch, often used in sukiyaki, waterfall resembling a white sheet'), +('頂く', 'いただく', 'to receive, to get, to accept, to take, to buy, to eat, to drink, to be crowned with, to wear (on one''s head), to have (on top), to have (as one''s leader), to live under (a ruler), to install (a president), to get someone to do something'), +('戴くものは夏も小袖', 'いただくものはなつもこそで', 'taking whatever one can get one''s hands on, being greedy, accepting a padded silk sleeve even in summer'), +('肝', 'きも', 'liver, innards, courage, spirit, pluck, guts, crux, essential point, key'), +('肝いり', 'きもいり', 'good offices, auspices, sponsorship, help, assistance, village official (during the Edo period)'), +('託ける', 'かこつける', 'to use as a pretext, to use as an excuse'), +('託つ', 'かこつ', 'to complain about, to grumble, to make an excuse for'), +('託ける', 'かこつける', 'to use as a pretext, to use as an excuse'), +('託ける', 'かこつける', 'to use as a pretext, to use as an excuse'), +('綻びる', 'ほころびる', 'to come apart at the seams, to be ripped, to be torn, to begin to open, to begin to bloom, to smile broadly, to break into a smile'), +('誰', 'だれ', 'who'), +('誰か', 'だれか', 'someone, somebody'), +('どこの誰', 'どこのだれ', 'who the heck, just who'), +('誰々', 'だれだれ', 'so-and-so, who?, which people?'), +('誰', 'だれ', 'who'), +('誰彼', 'だれかれ', 'this or that person, anybody, many people'), +('誰', 'だれ', 'who'), +('誰彼', 'だれかれ', 'this or that person, anybody, many people'), +('拓く', 'ひらく', 'to open (e.g. path), to clear (the way), to break up (e.g. land)'), +('濯ぐ', 'すすぐ', 'to rinse, to wash out, to have one''s revenge, to wipe out a disgrace'), +('濯ぐ', 'すすぐ', 'to rinse, to wash out, to have one''s revenge, to wipe out a disgrace'), +('脱ぐ', 'ぬぐ', 'to take off (clothes, shoes, etc.), to undress'), +('脱げる', 'ぬげる', 'to come off, to slip down, to slip off'), +('嘆く', 'なげく', 'to lament, to grieve, to regret, to deplore'), +('嘆かわしい', 'なげかわしい', 'sad, wretched, deplorable'), +('沢', 'さわ', 'mountain stream, valley, dale, wetlands, swamp, marsh'), +('沢地', 'さわち', 'marshy land'), +('端', 'はし', 'end (e.g. of street), tip, point, edge, margin, beginning, start, first, odds and ends, scrap, odd bit, least'), +('端', 'はした', 'fraction, odd sum, odd money, small change, low class female servant'), +('木の端', 'きのはし', 'fragment of wood'), +('道の端', 'みちのはし', 'edge of a street'), +('端', 'はし', 'end (e.g. of street), tip, point, edge, margin, beginning, start, first, odds and ends, scrap, odd bit, least'), +('側', 'そば', 'near, close, beside, vicinity, proximity, besides, while, third person'), +('切り羽', 'きりは', 'face (of a wall of coal or ore, etc.), working face (of a mine)'), +('継端', 'つぎは', 'opportunity to continue a conversation'), +('側', 'そば', 'near, close, beside, vicinity, proximity, besides, while, third person'), +('端から', 'はたから', 'from outside, from the side'), +('端', 'はし', 'end (e.g. of street), tip, point, edge, margin, beginning, start, first, odds and ends, scrap, odd bit, least'), +('鼻先', 'はなさき', 'tip of nose, before one''s eyes, under one''s nose, in front of, tip (of something)'), +('出鼻', 'でばな', 'projecting part (of a headland, etc.), moment of departure, (on the) point of going out, outset, start, beginning'), +('上がり端', 'あがりはな', 'entrance (i.e. of a Japanese house), start of a rise (e.g. in prices)'), +('棚', 'たな', 'shelf, ledge, rack, trellis'), +('棚上げ', 'たなあげ', 'shelving, pigeonholing'), +('弾く', 'ひく', 'to play (a stringed or keyboard instrument)'), +('弾む', 'はずむ', 'to spring, to bound, to bounce, to be stimulated, to be encouraged, to get lively, to pay handsomely, to splurge, to part eagerly with (money, etc.), to breathe hard, to pant, to be out of breath'), +('玉', 'たま', 'ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, okonomiyaki, coin, precious, beautiful, excellent'), +('弾傷', 'たまきず', 'bullet wound, gunshot wound'), +('弾く', 'はじく', 'to flip, to snap, to flick, to repel, to use (an abacus), to calculate, to strum, to pluck the strings (of a guitar, etc.)'), +('弾ける', 'はじける', 'to burst open, to split open, to pop, to be bursting with (e.g. youth, laughter, flavor), to bounce, to bound'), +('弾正台', 'だんじょうだい', 'Imperial Prosecuting and Investigating Office (1869-1871 CE), Imperial Prosecuting and Investigating Office (under the ritsuryō system)'), +('奪う', 'うばう', 'to snatch away, to dispossess, to steal'), +('恥じる', 'はじる', 'to feel ashamed'), +('恥', 'はじ', 'shame, embarrassment, disgrace'), +('恥じる', 'はじる', 'to feel ashamed'), +('大恥', 'おおはじ', 'humiliation, shame, loss of face'), +('死に恥', 'しにはじ', 'dishonor that persists after death, shame at the moment of one''s death'), +('恥じらう', 'はじらう', 'to feel shy, to be bashful, to blush'), +('恥ずかしい', 'はずかしい', 'embarrassing, embarrassed, ashamed, humiliated, shy, disgraceful, shameful'), +('丹', 'に', 'red earth (i.e. containing cinnabar or minium), vermilion'), +('丹色', 'にいろ', 'red'), +('海胆', 'うに', 'sea urchin, seasoned sea urchin eggs'), +('黄丹', 'おうだん', 'orange color traditionally worn by the crown prince'), +('鍛える', 'きたえる', 'to forge, to temper, to drill, to train, to discipline'), +('但し', 'ただし', 'but, however, provided that'), +('但し書き', 'ただしがき', 'proviso'), +('幼い', 'おさない', 'very young, little, childish, immature'), +('幼い', 'おさない', 'very young, little, childish, immature'), +('淡い', 'あわい', 'light, faint, pale, fleeting'), +('遅れる', 'おくれる', 'to be late, to be delayed, to fall behind schedule, to be overdue, to fall behind (in a race, one''s studies, etc.), to lag behind, to be behind (the times), to be bereaved of, to be preceded by (someone) in death, to be slow (of a clock or watch)'), +('遅らす', 'おくらす', 'to delay, to postpone, to slow down, to retard'), +('遅い', 'おそい', 'slow, time-consuming, sluggish, late (in the day), towards the end (of the day or night), until a time far into the day or night, later (than expected or usual), late, behind schedule, behind time, tardy, overdue, unpunctual, too late, having missed the boat, dull, stupid'), +('致す', 'いたす', 'to do'), +('濁る', 'にごる', 'to become muddy, to become cloudy, to get impure (of a liquid, gas, etc.), to become dull (of a sound, color, etc.), to become hoarse, to become impure (of a heart, society, etc.), to be corrupted, to be polluted, to become voiced, to add voiced consonant marks'), +('濁す', 'にごす', 'to make muddy (of a liquid), to make cloudy, to make turbid, to roil, to make ambiguous, to evade (e.g. the point), to be noncommittal about'), +('蓄える', 'たくわえる', 'to store, to save up, to stock up on, to lay in stock, to set aside, to accumulate (e.g. knowledge), to build up (e.g. experience), to develop (e.g. one''s skills), to grow (a beard, moustache, etc.), to wear'), +('眺める', 'ながめる', 'to look at, to gaze at, to watch, to stare at, to look out over, to get a view of, to admire (e.g. the scenery), to look on (from the sidelines), to stand by and watch, to observe'), +('弔う', 'とむらう', 'to mourn for, to grieve for, to condole with (the bereaved family, etc.), to hold a memorial service for, to hold a funeral service for'), +('弔う', 'とむらう', 'to mourn for, to grieve for, to condole with (the bereaved family, etc.), to hold a memorial service for, to hold a funeral service for'), +('聞く', 'きく', 'to hear, to listen (e.g. to music), to ask, to enquire, to query, to hear about, to hear of, to learn of, to follow (advice, order, etc.), to obey, to listen to, to comply with, to hear (e.g. a plea), to grant (a request), to accept (e.g. an argument), to give consideration to, to smell (esp. incense), to sample (a fragrance), to taste (alcohol), to try'), +('許す', 'ゆるす', 'to permit, to allow, to approve, to consent to, to forgive, to pardon, to excuse, to tolerate, to exempt (someone) from, to remit, to release, to let off, to acknowledge, to admit, to trust, to confide in, to let one''s guard down, to give up (points in a game, distance in a race, etc.), to yield'), +('挑む', 'いどむ', 'to challenge to (a fight, game, etc.), to throw down the gauntlet, to contend for, to tackle (e.g. a problem), to attempt, to go after (a prize, record, etc.), to pressure (someone) for sex, to make advances to'), +('跳ねる', 'はねる', 'to jump, to leap, to prance, to spring up, to bound, to hop, to break up, to close, to come to an end, to hit (e.g. to have a car hit something or someone)'), +('飛ぶ', 'とぶ', 'to fly, to soar, to jump, to leap, to spring, to bound, to hop, to spatter, to scatter, to splash, to fly (e.g. of sparks), to hurry, to rush, to flee, to run off, to escape, to disappear, to vanish, to fade, to thin out, to break off, to come off, to fall off, to blow (of a fuse), to be sent out (of an order), to fly (of false rumours, catcalls, etc.), to come flying (of a punch, kick, etc.), to be missing (of a page, stitch, etc.), to skip, to jump (e.g. of a conversation)'), +('鋳る', 'いる', 'to cast, to mint, to coin'), +('詔', 'みことのり', 'imperial decree, imperial edict'), +('澄む', 'すむ', 'to become clear (water, air, etc.), to become transparent, to resonate clearly (e.g. voice), to become serene, to become tranquil, to be free of worries, to pronounce as an unvoiced sound'), +('澄ます', 'すます', 'to clear, to make clear, to be unruffled, to look unconcerned, to feign indifference, to look demure, to look prim, to put on airs, to strain (one''s ears), to listen carefully'), +('彫る', 'ほる', 'to carve, to engrave, to sculpt, to chisel, to tattoo'), +('徴', 'しるし', 'sign, indication, omen'), +('嘲る', 'あざける', 'to scoff, to laugh at, to make fun of, to ridicule, to jeer at'), +('釣る', 'つる', 'to fish, to angle, to catch, to lure in, to tempt, to attract, to entice, to allure'), +('つるべ落とし', 'つるべおとし', 'sinking quickly'), +('釣り', 'つり', 'fishing, angling, change (for a purchase), clickbaiting, trolling, writing deliberately inflammatory posts online'), +('釣り合う', 'つりあう', 'to balance, to be in harmony, to be in equilibrium, to suit, to go well together, to be a good match'), +('魚釣り', 'さかなつり', 'fishing'), +('雪釣り', 'ゆきつり', 'game in which children use a piece of charcoal on a string to create and lift up snowballs'), +('沈む', 'しずむ', 'to sink, to go under, to submerge, to go down (e.g. sun), to set, to descend, to feel depressed, to become subdued, to become somber'), +('沈む瀬あれば浮かぶ瀬あり', 'しずむせあればうかぶせあり', 'life has its ups and downs, he who falls today may rise tomorrow'), +('沈める', 'しずめる', 'to sink (e.g. a ship), to submerge, to lower (e.g. one''s body into a chair), to floor (an opponent)'), +('張る', 'はる', 'to stick, to paste, to affix, to stretch, to spread, to strain, to tighten, to put up (tent), to form (e.g. ice on a pond), to fill, to swell, to stick out, to put, to slap, to post (a link, etc. online), to be expensive, to keep a watch on, to be on the lookout, to become one tile away from completion, to span, to generate'), +('懲りる', 'こりる', 'to learn by experience, to learn one''s lesson, to learn the hard way, to be discouraged (by), to have enough (of), to be disgusted (with)'), +('懲らす', 'こらす', 'to chastise, to punish, to discipline'), +('懲らしめる', 'こらしめる', 'to chastise, to punish, to discipline'), +('越える', 'こえる', 'to cross over, to cross, to pass through, to pass over (out of), to go beyond, to go past, to exceed, to surpass, to be more (than)'), +('越す', 'こす', 'to cross over (e.g. mountain), to go across, to get over (e.g. hardship), to pass time (e.g. a winter), to surpass, to be better than, to exceed, to move house, to go, to come'), +('静める', 'しずめる', 'to appease, to suppress, to calm'), +('静まる', 'しずまる', 'to become quiet, to quiet down, to quieten down, to calm down, to die down, to subside, to abate, to be suppressed'), +('珍しい', 'めずらしい', 'unusual, rare, curious, new, novel, fine (e.g. gift)'), +('塚', 'つか', 'mound, heap, hillock, burial mound, tomb, tumulus, barrow, gravesite, standing stone, stone signpost, roadside stone statue'), +('塚穴', 'つかあな', 'grave'), +('高塚', 'たかつか', 'tumulus, burial mound'), +('落ちる', 'おちる', 'to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one''s gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone''s hands), to become someone''s possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths'), +('落つ', 'おつ', 'to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one''s gaze), to be omitted, to be missing, to crash, to degenerate, to degrade, to fall behind, to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone''s hands), to become someone''s possession, to fall, to be defeated, to surrender'), +('坪', 'つぼ', 'tsubo, traditional unit of land area, approx. 3.31 square meters, tsubo, traditional unit of fabric or paper area, approx. 9.18 square centimeters, tsubo, traditional unit of leather or tile area, approx. 918 square centimeters, cubic tsubo (approx. 6 cubic metres)'), +('坪当たり', 'つぼあたり', 'per tsubo (area)'), +('米坪', 'べいつぼ', 'paper weight in gsm'), +('立坪', 'りゅうつぼ', 'cubic tsubo (approx. 6 cubic metres)'), +('捗る', 'はかどる', 'to make (good) progress, to move right ahead (with the work), to advance'), +('爪', 'つめ', 'nail (e.g. fingernail, toenail), claw, talon, hoof, plectrum, pick, hook, clasp'), +('爪を噛む癖', 'つめをかむくせ', 'habit of biting one''s nails'), +('陥入爪', 'かんにゅうそう', 'ingrown nail, ingrowing nail'), +('鷹の爪', 'たかのつめ', 'Gamblea innovans (species of deciduous tree), extremely spicy form of chili pepper, variety of high-quality green tea'), +('漬ける', 'つける', 'to soak (in), to steep, to dip, to dunk, to pickle, to preserve (in salt, vinegar, etc.)'), +('浸かる', 'つかる', 'to be submerged, to be soaked, to be pickled, to be well seasoned, to be totally immersed (in a condition, e.g. laziness)'), +('陳ねる', 'ひねる', 'to age'), +('鶴', 'つる', 'crane (any bird of the family Gruidae, esp. the red-crowned crane, Grus japonensis)'), +('ツル科', 'ツルか', 'Gruidae (bird family comprising the cranes)'), +('掃き溜めに鶴', 'はきだめにつる', 'a jewel in a dunghill'), +('焼け野の雉夜の鶴', 'やけののきぎすよるのつる', 'parents may risk life and limb for their children (like a pheasant when the plains are burning or a crane on a cold night)'), +('屋敷', 'やしき', 'residence, estate, grounds, premises, mansion'), +('貞はる', 'さだはる', 'to harp too long on a subject'), +('帝', 'みかど', 'emperor (of Japan), mikado, (the gates of an) imperial residence'), +('帝揚羽', 'みかどあげは', 'common jay (species of swallowtail butterfly, Graphium doson)'), +('時の帝', 'ときのみかど', 'emperor of the time'), +('堤', 'つつみ', 'bank, embankment, dike'), +('堤を築く', 'つつみをきずく', 'to build an embankment'), +('訂す', 'ただす', 'to correct (a typo, etc.)'), +('諦める', 'あきらめる', 'to give up, to abandon (hope, plans), to resign oneself (to)'), +('閉まる', 'しまる', 'to be shut, to close, to be closed, to be firm (of a body, face, etc.), to be well-knit, to be locked, to tighten, to be tightened, to become sober, to become tense'), +('締まり', 'しまり', 'closing, shutting, firmness, tightness, discipline, control'), +('締まり屋', 'しまりや', 'thrifty person, stingy person, tight-fisted person'), +('締める', 'しめる', 'to tie, to fasten, to tighten, to wear (necktie, belt), to put on, to total, to sum, to be strict with, to economize, to economise, to cut down on, to salt, to marinate, to pickle, to make sushi adding a mixture of vinegar and salt, to kill (fish, poultry, etc.)'), +('摘む', 'つむ', 'to pick, to pluck, to snip, to cut, to nip, to trim'), +('溺れる', 'おぼれる', 'to struggle in the water, to sink below the surface and become unable to breathe, to (nearly) drown, to indulge in, to lose one''s head over something, to be addicted, to wallow in'), +('おぼれる者はわらをもつかむ', 'おぼれるものはわらをもつかむ', 'a drowning man will catch at a straw'), +('滴', 'しずく', 'drop (e.g. of water), drip'), +('滴る', 'したたる', 'to drip, to drop, to trickle, to overflow (with freshness, beauty, etc.)'), +('唐', 'から', 'China (sometimes also used in ref. to Korea or other foreign countries)'), +('空手', 'からて', 'karate, empty handed'), +('添える', 'そえる', 'to garnish, to accompany (as a card does a gift), to add to as support, to prop up, to accompany (as an aid, guide, translator, etc.), to mimic, to imitate, to draw something near to oneself, to approach nearby'), +('添う', 'そう', 'to meet (wishes, expectations, etc.), to satisfy, to comply with, to live up to, to accompany, to go with, to stay by one''s side, to associate with (someone), to mix with, to marry, to wed, to be added'), +('添水', 'そうず', 'water-filled bamboo tube in Japanese garden which clacks against a stone when emptied'), +('怒る', 'おこる', 'to get angry, to get mad, to tell someone off, to scold, to be angular, to be square'), +('怒る', 'おこる', 'to get angry, to get mad, to tell someone off, to scold, to be angular, to be square'), +('凍る', 'こおる', 'to freeze, to be frozen over, to congeal'), +('凍える', 'こごえる', 'to freeze (of one''s body), to be frozen, to become numb (with cold), to be chilled'), +('凍てる', 'いてる', 'to freeze, to freeze over'), +('凍みる', 'しみる', 'to freeze, to be frozen over, to congeal'), +('倒れる', 'たおれる', 'to fall (over, down), to collapse, to take a fall, to topple, to be destroyed (in a collapse), to collapse, to cave in, to crumble, to give away, to be confined to bed (with an illness), to come down with, to break down (e.g. from overwork), to die, to be killed, to go bankrupt (of a company, bank, etc.), to fail, to collapse, to go under, to be defeated (in a game), to lose, to fall (of a government, dictator, etc.), to be overthrown'), +('倒す', 'たおす', 'to throw down, to bring down, to blow down, to fell, to knock down, to set (something) down on its side, to turn (something) on its side, to recline (e.g. a seat), to kill, to defeat, to beat, to overthrow, to trip up, to ruin, to leave unpaid, to cheat'), +('逆さま', 'さかさま', 'inverted, upside down, reversed, back to front, wrong way round'), +('逆様事', 'さかさまごと', 'child dying before parents, occurrence out of sequence, wrong order'), +('逆さま', 'さかさま', 'inverted, upside down, reversed, back to front, wrong way round'), +('逆さ', 'さかさ', 'inverted, upside down, reversed, back to front'), +('逆しま', 'さかしま', 'reverse, inversion, upside down, unreasonable, absurd, wrong'), +('桃', 'もも', 'peach (Prunus persica)'), +('桃色', 'ももいろ', 'pink (colour, color), colour of peach (flowers)'), +('椿桃', 'つばいもも', 'nectarine'), +('苔桃', 'こけもも', 'lingonberry (Vaccinium vitis-idaea), cowberry'), +('道', 'みち', 'road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method'), +('冥き途', 'くらきみち', 'Hades, underworld, realm of the dead, other world'), +('渡る', 'わたる', 'to cross over, to go across, to extend, to cover, to range, to span'), +('渡る世間に鬼はない', 'わたるせけんにおにはない', 'all people aren''t evil, don''t distrust everyone, there is kindness to be found everywhere'), +('渡す', 'わたす', 'to ferry across (e.g. a river), to carry across, to traverse, to lay across, to build across, to hand over, to hand in, to pass, to give, to transfer'), +('透く', 'すく', 'to be transparent, to leave a gap'), +('透かす', 'すかす', 'to look through, to hold up to the light, to make an opening, to leave space, to space (lines), to prune (trees), to fart without making a sound'), +('透ける', 'すける', 'to be transparent, to show through'), +('透水', 'とうすい', 'permeation (e.g. of water), percolation, seepage'), +('透水性', 'とうすいせい', 'permeability'), +('陶', 'すえ', 'ceramics, pottery, porcelain'), +('須恵器', 'すえき', 'Sue ware (type of unglazed pottery made from the middle of the Kofun era through the Heian era)'), +('至る', 'いたる', 'to arrive at (e.g. a decision), to reach (a stage), to attain, to lead to (a place), to get to, in the extreme case of, to come, to arrive, to result in'), +('至る所', 'いたるところ', 'everywhere, all over, throughout'), +('妬む', 'ねたむ', 'to be jealous of, to envy, to begrudge'), +('嫉む', 'そねむ', 'to be jealous of, to envy, to begrudge'), +('盗む', 'ぬすむ', 'to steal, to plagiarize, to steal (a technique, idea, etc.), to watch and learn, to do stealthily, to do during scant time, to steal a base'), +('盗み', 'ぬすみ', 'stealing'), +('盗み食い', 'ぬすみぐい', 'sneaking a bite, snitching food'), +('嵌める', 'はめる', 'to insert, to put in (such that there is a snug fit), to button, to put on (something that envelops, e.g. gloves, ring), to have sex, to fuck, to pigeonhole (into a particular category), to place a ring-shaped object around something (esp. one that restricts freedom, such as handcuffs), to entrap, to set someone up (e.g. frame them for a crime, etc.)'), +('奴', 'やつ', 'fellow, guy, chap, thing, object, he, she, him, her'), +('臣', 'やつこ', 'slave, retainer, servant, captive, varlet, I, me'), +('其奴', 'そいつ', 'he, she, that person, that guy, that fellow, that, that one, that thing'), +('彼奴', 'あいつ', 'he, she, that guy, that, that one, that thing'), +('奴', 'やっこ', 'servant (esp. a samurai''s attendant), chivalrous man (Edo period), cubed tofu (often served cold), kite shaped like an Edo-period footman, Edo-period hairstyle worn by samurai''s attendants, enslavement (of a woman; Edo-period punishment for her own or her husband''s crime), he, she, him, her'), +('奴頭', 'やっこあたま', 'Edo-period hairstyle worn by samurai''s attendants'), +('輪抜奴', 'わぬけやっこ', 'bluering angelfish (Pomacanthus annularis)'), +('三下奴', 'さんしたやっこ', 'petty underling, small fry'), +('吐く', 'はく', 'to vomit, to throw up, to spit up, to emit, to send forth, to breathe out, to give (an opinion), to make (a comment), to express, to tell, to confess'), +('吐く', 'つく', 'to breathe out, to breathe, to tell (a lie), to use (foul language), to vomit, to throw up, to spit up'), +('逃げる', 'にげる', 'to escape, to run away'), +('逃げるが勝ち', 'にげるがかち', 'he that fights and runs away may live to fight another day, fleeing is winning'), +('逃がす', 'にがす', 'to set free, to let go, to release, to miss (e.g. a chance), to lose, to let get away, to fail to catch'), +('逃す', 'のがす', 'to miss (e.g. a chance), to lose, to let get away, to set free, to let go, to fail to ...'), +('逃れる', 'のがれる', 'to escape'), +('塗る', 'ぬる', 'to paint, to plaster, to lacquer, to varnish, to spread, to smear, to put up (wallpaper)'), +('塗り', 'ぬり', 'coating (esp. lacquering)'), +('塗り替える', 'ぬりかえる', 'to repaint, to paint again, to break (a record), to rewrite, to remake'), +('上塗り', 'うわぬり', 'final coat (of paint, plaster, varnish, etc.), finish, glazing, adding more of the same (of something negative, e.g. shame)'), +('春慶塗', 'しゅんけいぬり', 'Shunkei lacquerware, lacquerware created using transparent lacquer on yellow or red-stained wood, allowing the natural wood grain to be seen'), +('塗れる', 'まみれる', 'to be smeared, to be covered'), +('泥', 'どろ', 'mud, slush, (wet) dirt, mire, thief'), +('泥棒', 'どろぼう', 'thief, burglar, robber, theft, burglary, robbery'), +('泥々', 'どろどろ', 'thick, viscous, mushy, pulpy, slushy, syrupy, sticky, muddy, dirty (with oil, grease, etc.), to be in an ugly state (of emotions, relations, etc.), to be murky, to be sordid'), +('警泥', 'けいどろ', 'cops and robbers (hide-and-seek game)'), +('泥む', 'なずむ', 'to cling to, to stick to, to be wedded to'), +('殿', 'との', 'feudal lord, mansion, palace'), +('殿様', 'とのさま', 'nobleman, dignitary, lord, feudal lord (of the Edo period), daimyō, man brought up away from the world, arrogant man with little knowledge of the ways of the world'), +('大殿', 'おおとの', 'current master, father of one''s current master, minister (of government), noble, nobleman''s residence'), +('若殿', 'わかとの', 'young lord, successor of one''s current lord'), +('賭ける', 'かける', 'to wager, to bet, to risk, to stake, to gamble'), +('賭け', 'かけ', 'bet, wager, stake, gamble'), +('賭ける', 'かける', 'to wager, to bet, to risk, to stake, to gamble'), +('悼む', 'いたむ', 'to grieve over, to mourn, to lament'), +('踏む', 'ふむ', 'to step on, to tread on, to trample on, to set foot on (e.g. foreign soil), to stand on, to visit, to experience, to undergo, to follow (rules, principles, etc.), to go through (e.g. formalities), to complete, to estimate, to guess, to judge, to value, to appraise, to rhyme, to succeed to (e.g. the throne)'), +('踏まえる', 'ふまえる', 'to be based on, to take into account, to build upon, to have origin in, to have one''s feet firmly planted on, to plant oneself on'), +('棟', 'むね', 'ridge (of roof), back of a sword, counter for buildings, apartments, etc.'), +('棟上げ', 'むねあげ', 'ridgepole-raising, setting up of the framework of a house'), +('別棟', 'べつむね', 'separate building, outbuilding, outhouse'), +('大棟', 'おおむね', 'top ridge of a roof, main ridge of a roof'), +('筒', 'つつ', 'pipe, tube, cylinder, gun barrel, gun, cannon, well lining, well curb'), +('筒井', 'つつい', 'round well'), +('銃の筒', 'じゅうのつつ', 'barrel of a gun'), +('紙筒', 'かみづつ', 'paper tube, cardboard tube'), +('稲', 'いね', 'rice plant (Oryza sativa)'), +('稲刈り', 'いねかり', 'rice reaping, rice harvesting'), +('束稲', 'つかいね', 'sheaf of rice, bundle of rice plants'), +('アフリカ稲', 'アフリカいね', 'African rice (Oryza glaberrima)'), +('厚い', 'あつい', 'thick, deep, heavy, kind, cordial, hospitable, warm, faithful, serious (of an illness), abundant'), +('曇る', 'くもる', 'to get cloudy, to cloud over, to become overcast, to cloud up, to fog up, to mist up, to become dim, to be gloomy, to be clouded (expression), to be downcast, to look slightly downward (of a noh mask; indicating sadness, grief, etc.)'), +('丼', 'どんぶり', 'porcelain bowl, donburi, bowl of meat, fish, etc. served over rice'), +('どんぶり勘定', 'どんぶりかんじょう', 'rough estimate, sloppy accounting, slapdash bookkeeping'), +('開化丼', 'かいかどんぶり', 'beef (or pork) and egg on rice'), +('中華丼', 'ちゅうかどんぶり', 'bowl of rice with a chop-suey-like mixture on it'), +('謎', 'なぞ', 'riddle, puzzle, enigma, mystery, enigmatic, mysterious'), +('謎々', 'なぞなぞ', 'riddle, puzzle, enigma'), +('豚', 'ぶた', 'pig (Sus scrofa domesticus), pork, fatso, fatty'), +('豚肉', 'ぶたにく', 'pork'), +('野生豚', 'やせいぶた', 'feral pig'), +('萌え豚', 'もえぶた', 'anime freak, person overly interested in female anime and video game characters'), +('突く', 'つく', 'to prick, to stab, to poke, to prod, to push, to thrust, to nudge, to hit, to strike, to use (a cane), to prop oneself up with, to press against (the floor, etc.), to attack, to brave (the rain, etc.)'), +('突棒', 'つくぼう', 'barbed T-shaped weapon for catching thieves (Edo period)'), +('麦突', 'むぎつく', 'Pungtungia herzi (species of cyprinid)'), +('剣突く', 'けんつく', 'rough scolding, upbraiding, tongue-lashing, dressing-down'), +('匿う', 'かくまう', 'to shelter (e.g. a fugitive), to harbour, to harbor, to hide, to give refuge to'), +('頓と', 'とんと', 'completely, not at all'), +('頓に', 'とみに', 'suddenly, all at once, rapidly'), +('屯', 'たむろ', 'gathering, place where people gather, police station, camp, barracks'), +('屯する', 'たむろする', 'to gather in large numbers (of people), to hang out (as a large group), to assemble (as a military unit or posse), to be quartered (in a particular location)'), +('鈍い', 'にぶい', 'dull (e.g. a knife), blunt, thickheaded, obtuse, stupid, dull (sound, color, etc.), dim (light), slow, sluggish, inert, lethargic, insensitive, dull (e.g. reflexes), unperceptive, unfeeling'), +('鈍い音', 'にぶいおと', 'dull sound, muffled sound'), +('鈍る', 'にぶる', 'to become blunt, to grow dull, to become less capable, to weaken, to falter'), +('鈍る', 'にぶる', 'to become blunt, to grow dull, to become less capable, to weaken, to falter'), +('鈍ら', 'なまくら', 'blunt (e.g. sword), dull, lazy, cowardly, good for nothing'), +('藤', 'ふじ', 'wisteria (esp. Japanese wisteria, Wisteria floribunda), wistaria'), +('藤色', 'ふじいろ', 'light purple'), +('草藤', 'くさふじ', 'tufted vetch (Vicia cracca), cow vetch'), +('野田藤', 'のだふじ', 'Japanese wisteria (Wisteria floribunda)'), +('峠', 'とうげ', '(mountain) pass, highest point on a mountain road, ridge, peak (e.g. of summer), worst (e.g. of an illness), crisis, critical point, most difficult part'), +('峠を越す', 'とうげをこす', 'to pass the peak (of something), to get through the most difficult part, to be over the worst (e.g. an illness), to cross a pass'), +('碓氷峠', 'うすいとうげ', 'Usui Pass'), +('貪る', 'むさぼる', 'to covet, to crave, to lust insatiably for, to indulge in, to devour greedily'), +('鍋', 'なべ', 'saucepan, pot, stew, hot pot'), +('鍋物', 'なべもの', 'stew, food cooked in a pot'), +('もつ鍋', 'もつなべ', 'hot pot stew made with offal, vegetables and (often) miso'), +('土鍋', 'どなべ', 'earthenware pot'), +('凸', 'でこ', 'brow, forehead, bump'), +('凸凹', 'でこぼこ', 'unevenness, roughness, ruggedness, bumpiness, inequality, imbalance, unevenness, difference'), +('瞳', 'ひとみ', 'pupil (of eye), eye'), +('瞳を凝らす', 'ひとみをこらす', 'to strain one''s eyes, to stare'), +('尼', 'あま', 'Buddhist nun, Catholic nun, sister, bitch, Amagasaki (city in Hyogo Prefecture), Amazon (online retailer)'), +('尼鷺', 'あまさぎ', 'cattle egret (Bubulcus ibis)'), +('弐つ', 'ふたつ', 'two'), +('戦う', 'たたかう', 'to make war (on), to wage war (against), to go to war (with), to fight (with), to do battle (against), to compete (against), to struggle (against adversities, etc.), to fight, to contend, to resist'), +('虹', 'にじ', 'rainbow'), +('虹色', 'にじいろ', 'rainbow-colored, rainbow-coloured'), +('夕虹', 'ゆうにじ', 'evening rainbow'), +('過剰虹', 'かじょうにじ', 'supernumerary rainbow'), +('柔らか', 'やわらか', 'soft, tender, pliant, supple, soft (colour, light, etc.), subdued, gentle (demeanour, voice, etc.), mild, informal, light, flexible (e.g. thinking)'), +('柔らかい', 'やわらかい', 'soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)'), +('柔らかい', 'やわらかい', 'soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)'), +('柔らかい文章', 'やわらかいぶんしょう', 'informal style'), +('洞', 'ほら', 'hollow, cavity, hole, cave'), +('洞穴', 'ほらあな', 'cave, cavern, den, grotto'), +('尿', 'にょう', 'urine'), +('尿袋', 'いばりぶくろ', 'urinary bladder'), +('尿', 'にょう', 'urine'), +('尿袋', 'いばりぶくろ', 'urinary bladder'), +('尿', 'にょう', 'urine'), +('孕む', 'はらむ', 'to conceive, to become pregnant, to get filled with (e.g. sails filled with wind), to be swollen with, to contain (a contradiction, danger, etc.), to carry (a problem, consequences, etc.), to involve (e.g. risk), to be swollen and ripe (of a plant ear, head, sprout, etc.)'), +('身ごもる', 'みごもる', 'to become pregnant'), +('匂う', 'におう', 'to be fragrant, to smell (good), to stink, to smell (bad), to glow, to be bright, to smack of, to show hints of'), +('匂い', 'におい', 'odour, odor, scent, smell, stench, aura, whiff, smacks of ..., sense, flavour, flavor'), +('匂い油', 'においあぶら', 'perfumed hair oil'), +('匂わせる', 'におわせる', 'to give off (a smell, scent, aroma), to smell of, to perfume (a room, etc.), to hint at, to suggest, to insinuate'), +('忍', 'しのぶ', 'squirrel''s foot fern (Davallia mariesii), Lepisorus thunbergianus (species of fern), color of clothing layers under one''s overcoat (light green on blue), shinobu-wake (Edo-period women''s hairstyle), clothing patterned using squirrel''s foot fern'), +('忍ぶ', 'しのぶ', 'to conceal oneself, to hide, to endure, to bear, to stand, to put up with'), +('軒忍', 'のきしのぶ', 'weeping fern (Lepisorus thunbergianus)'), +('立忍', 'たちしのぶ', 'Japanese claw fern (Onychium japonicum), carrot fern'), +('忍ばせる', 'しのばせる', 'to conceal, to hide'), +('寧ろ', 'むしろ', 'rather, better, instead, if anything'), +('粘る', 'ねばる', 'to be sticky, to be adhesive, to persevere, to persist, to stick to, to hold out, to linger'), +('濃い', 'こい', 'deep (colour), dark, strong (flavour, smell, etc.), thick (consistency), dense, strong (possibility, etc.), thick (i.e. "as thick as thieves"), close, deep (love, etc.)'), +('濃い口', 'こいくち', 'rich (taste), dark-coloured, thick, heavy, dark soy sauce'), +('捩る', 'ねじる', 'to screw, to twist, to distort, to parody, to make a pun, to torture, to wrest'), +('捩る', 'ねじる', 'to screw, to twist, to distort, to parody, to make a pun, to torture, to wrest'), +('捻くる', 'ひねくる', 'to twirl, to spin, to fiddle with, to change (e.g. wording)'), +('捻る', 'ひねる', 'to twist, to wrench, to turn (a switch on or off, etc.), to wring (a neck), to puzzle over, to defeat easily'), +('悩む', 'なやむ', 'to be worried, to be troubled'), +('悩ます', 'なやます', 'to afflict, to torment, to harass, to molest'), +('悩ましい', 'なやましい', 'seductive, carnal, enchanting, troubling, difficult, thorny, hard, anxious, uneasy'), +('悩み', 'なやみ', 'trouble, troubles, worry, distress, sorrows, anguish, agony, problem'), +('悩み事', 'なやみごと', 'matter causing distress, something causing worry'), +('縛る', 'しばる', 'to tie, to bind, to fasten, to restrict (freedom), to tie down (with rules, regulations, etc.), to fetter'), +('婆', 'ばば', 'old woman, joker (card), hag, bitch'), +('婆婆鰈', 'ばばがれい', 'slime flounder (Microstomus achne)'), +('祖父祖母', 'じじばば', 'old people, grandparents'), +('遣り手婆', 'やりてばば', 'brothel madam'), +('婆さん', 'ばあさん', 'grandmother, old woman, female senior citizen'), +('婆ちゃん', 'ばあちゃん', 'granny, grandma, gran, old lady, old woman'), +('糞婆', 'くそばばあ', 'old hag, old woman, old bat'), +('鬼婆', 'おにばば', 'hag, witch, bitch, penurious or spiteful old woman, termagant, virago'), +('廃れる', 'すたれる', 'to go out of use, to become obsolete, to die out, to go out of fashion, to go out of style, to decline (e.g. of morals), to be lost, to go into decline (of a town, business, etc.)'), +('廃る', 'すたる', 'to go out of use, to become obsolete, to die out, to go out of fashion, to go out of style, to become lost (e.g. of dignity), to be sullied'), +('培う', 'つちかう', 'to cultivate, to foster'), +('薄い', 'うすい', 'thin, pale, light, faint, watery, thin, dilute, weak (taste, etc.), little (affection, etc.) not much (of a presence), slim (probability, etc.), small, sparse, patchy, scattered'), +('薄い板', 'うすいいた', 'sheet, thin plate'), +('薄める', 'うすめる', 'to dilute, to water down'), +('薄まる', 'うすまる', 'to become weak'), +('薄らぐ', 'うすらぐ', 'to become thin, to fade, to grow pale'), +('薄れる', 'うすれる', 'to fade, to become dim'), +('薄', 'すすき', 'Japanese pampas grass (Miscanthus sinensis), maiden silvergrass, zebra grass'), +('花薄', 'はなすすき', 'Japanese pampas grass in ear'), +('輩', 'やから', 'party (of people), set (of people), clan, family, fellow'), +('不逞の輩', 'ふていのやから', 'lawless people, gang, malcontents, recalcitrants'), +('輩', 'ともがら', 'comrade, fellow'), +('迫る', 'せまる', 'to approach, to draw near, to be imminent, to press (someone for something), to urge, to compel'), +('剥ぐ', 'はぐ', 'to tear off, to peel off, to rip off, to strip off, to skin, to flay, to bark, to strip of (clothes, rank, etc.), to deprive of, to divest of'), +('剥く', 'むく', 'to peel, to skin, to pare, to hull, to strip, to bare (teeth, fangs), to open wide (eyes)'), +('剥れる', 'むくれる', 'to become angry or sullen, to take offense, to be miffed, to come unstuck from, to peel off, to come off, to be taken off'), +('剥げる', 'はげる', 'to peel off, to come off, to flake off, to be worn off, to fade, to discolor, to discolour'), +('仲人', 'なこうど', 'matchmaker, go-between, intermediary, middleman, mediator, intercessor'), +('泊まる', 'とまる', 'to stay at (e.g. hotel), to be docked, to be berthed, to be moored'), +('泊める', 'とめる', 'to give shelter to, to lodge, to put up, to accommodate'), +('杯', 'さかずき', 'sake cup, cup for alcoholic beverages'), +('杯洗い', 'さかずきあらい', 'small vessel or bowl in which sake cups are rinsed'), +('べく杯', 'べくはい', 'sake cup shaped so it cannot be put down until emptied'), +('水杯', 'みずさかずき', 'farewell cups of water'), +('罵る', 'ののしる', 'to abuse (verbally), to curse at, to shout abuse at, to speak ill of'), +('爆ぜる', 'はぜる', 'to burst open, to pop, to split'), +('箸', 'はし', 'chopsticks'), +('箸洗い', 'はしあらい', 'simple and light soup taken between courses in a kaiseki meal, or during a formal tea ceremony'), +('マイ箸', 'マイばし', 'one''s own chopsticks, washable chopsticks carried in a case (used instead of disposable chopsticks)'), +('髪', 'かみ', 'hair (on the head)'), +('髪の毛', 'かみのけ', 'hair (of the head)'), +('黒髪', 'くろかみ', 'black hair'), +('波打つ髪', 'なみうつかみ', 'wavy hair'), +('抜く', 'ぬく', 'to pull out, to draw out, to extract, to unplug, to weed, to omit, to leave out, to go without, to skip, to do to the end, to carry through, to let out (e.g. air from a tyre), to drain (e.g. water from a bath), to empty, to pick out, to choose, to select, to extract, to pilfer, to steal, to remove, to get rid of, to take out, to pass, to overtake, to outstrip, to get ahead of, to pierce, to break through, to go through, to cut out (a shape), to create (a pattern) by dying the surrounding area, to seize, to capture, to reduce, to scoop (a story), to take out (an opponent''s stones; in go), to masturbate (of a male), to ejaculate (while masturbating), to take (a photo), to record (video)'), +('抜くべからざる', 'ぬくべからざる', 'deep-rooted (suspicion, etc.)'), +('抜き', 'ぬき', 'leaving out, omitting, skipping, dispensing with, (beating) in succession, in a row'), +('抜き打ち', 'ぬきうち', 'drawing a katana and attacking in the same stroke, doing (something) suddenly and without warning, doing without prior notice'), +('手抜き', 'てぬき', 'omitting crucial steps, cutting corners, skimping, intentional negligence, tenuki, taking the initiative by ignoring the opponent''s last move and playing somewhere else (in go)'), +('栓抜き', 'せんぬき', 'bottle opener, corkscrew'), +('抜ける', 'ぬける', 'to come out, to fall out, to be omitted, to be missing, to escape, to come loose, to fade, to discolour, to wear a hole (e.g. clothes), to leave (e.g. a meeting), to be clear, to be transparent (e.g. of the sky), to be stupid, to be absentminded, to be careless, to be inattentive, to exit (a program loop), to go through, to pass through, to give way, to collapse, to finish a round with more than 88 points (not counting points gained from scoring combinations)'), +('抜けるような青空', 'ぬけるようなあおぞら', 'deep blue sky, bottomless blue sky'), +('抜かす', 'ぬかす', 'to omit, to leave out, to skip, to overtake, to pass, to say, to speak'), +('抜かる', 'ぬかる', 'to make a mistake'), +('伐る', 'きる', 'to cut down (e.g. trees)'), +('伐つ', 'うつ', 'to strike, to attack, to punish'), +('肌', 'はだ', 'skin, body (in the context of intimate bodily contact), surface, grain (e.g. of wood), texture, disposition, temperament, character, type'), +('肌着', 'はだぎ', 'underwear, underclothes, lingerie, chemise, singlet'), +('素肌', 'すはだ', 'bare (naked) body, complexion (e.g. face)'), +('地肌', 'じはだ', 'texture, grain, one''s skin (lacking makeup, etc.), natural skin, bare skin, scalp, surface of the earth, bare ground, surface of a sword blade'), +('罰する', 'ばっする', 'to punish, to penalize, to penalise'), +('帆', 'ほ', 'sail'), +('帆柱', 'ほばしら', 'mast'), +('三角帆', 'さんかくほ', 'jib sail'), +('縮帆', 'しゅくほ', 'reefing a sail, bringing in a sail'), +('畦', 'あぜ', 'ridge of earth between rice fields, ridge between grooves in threshold or lintel, footpath between rice fields, causeway'), +('畔唐菜', 'あぜとうな', 'Crepidiastrum keiskeanum (species of plant in the daisy family)'), +('畦', 'あぜ', 'ridge of earth between rice fields, ridge between grooves in threshold or lintel, footpath between rice fields, causeway'), +('辺', 'ほとり', 'side (esp. of a waterbody), edge, bank, shore'), +('伴う', 'ともなう', 'to accompany, to go hand in hand with, to be consequent upon, to be accompanied by, to bring with, to take with, to be involved in'), +('斑', 'ぶち', 'spots, speckles, mottles'), +('斑入り', 'ふいり', 'variegated, spotted'), +('胡麻斑', 'ごまふ', 'black speckles, small black spots (like sprinkled sesame)'), +('白斑', 'はくはん', 'white spot, bright spot, facula, vitiligo, leukoderma, leukoma'), +('斑', 'まだら', 'spots, speckles, mottles, speckled, spotted'), +('斑海豚', 'まだらいるか', 'pantropical spotted dolphin (Stenella attenuata)'), +('浅葱斑', 'あさぎまだら', 'chestnut tiger butterfly (Parantica sita)'), +('鹿の子斑', 'かのこまだら', 'pattern of white spots, dapples'), +('患う', 'わずらう', 'to be ill, to suffer from, to worry about, to be concerned about, to have trouble doing ..., to be unable to ..., to fail to ...'), +('煩わす', 'わずらわす', 'to trouble, to bother, to annoy, to give trouble'), +('煩がる', 'うるさがる', 'to feel annoyed at'), +('煩い', 'うるさい', 'noisy, loud, annoying, troublesome, tiresome, persistent, importunate, fussy, finicky, picky, particular, nagging, fastidious, bossy, shut up!, be quiet!'), +('后', 'きさき', 'empress, queen'), +('茂る', 'しげる', 'to grow thickly, to be in full leaf, to be rampant, to luxuriate, to be luxurious'), +('繁く', 'しげく', 'frequently'), +('疲れる', 'つかれる', 'to get tired, to tire, to get fatigued, to become exhausted, to grow weary, to become worn out (of a well-used object), to starve'), +('疲らす', 'つからす', 'to tire, to weary, to exhaust, to fatigue'), +('卑しい', 'いやしい', 'lowborn, humble, lowly, vulgar, coarse, crude, mean, base, vile, shabby, greedy, gluttonous, avaricious'), +('卑しい生まれ', 'いやしいうまれ', 'lowborn, of humble birth'), +('卑しむ', 'いやしむ', 'to despise, to disdain, to scorn, to hold in contempt, to look down on'), +('卑しむべき', 'いやしむべき', 'despicable'), +('卑しめる', 'いやしめる', 'to demean, to despise, to treat with contempt, to abase'), +('彼', 'かれ', 'he, him, boyfriend'), +('彼ら', 'かれら', 'they, them'), +('前彼', 'まえかれ', 'former boyfriend, ex-boyfriend'), +('元彼', 'もとかれ', 'former boyfriend, ex-boyfriend'), +('彼の', 'かの', 'that well-known ...'), +('彼女', 'かのじょ', 'she, her, girlfriend'), +('彼の', 'かの', 'that well-known ...'), +('彼女', 'かのじょ', 'she, her, girlfriend'), +('被る', 'こうむる', 'to suffer, to receive (kindness, rebuke, support), to sustain (damage)'), +('覆う', 'おおう', 'to cover, to hide, to conceal, to wrap, to disguise'), +('被る', 'かぶる', 'to put on (one''s head), to wear, to have on, to pull over (one''s head), to crown (oneself), to be covered with (dust, snow, etc.), to pour (water, etc.) on oneself, to dash on oneself, to ship water, to bear (e.g. someone''s debts, faults, etc.), to take (blame), to assume (responsibility), to shoulder (burden), to overlap (e.g. sound or color), to be similar, to be redundant, to be fogged (due to overexposure, etc.), to close, to come to an end, to get a full house, to sell out, to blunder, to bungle, to fail, to be deceived'), +('被せる', 'かぶせる', 'to cover (with something), to put on (e.g. on someone else''s head), to plate something (with a metal), to pour or dash a liquid (on something), to charge (a person with a guilt)'), +('扉', 'とびら', 'door, gate, opening, title page'), +('扉絵', 'とびらえ', 'frontispiece'), +('自動扉', 'じどうとびら', 'automatic door'), +('防火扉', 'ぼうかとびら', 'fire door'), +('碑', 'いしぶみ', 'stone monument bearing an inscription (esp. memorial for future generations), stele, stela'), +('辞める', 'やめる', 'to resign, to retire, to quit, to leave (one''s job, etc.)'), +('避ける', 'さける', 'to avoid (physical contact with), to avoid (situation), to ward off, to avert, to put aside, to move out of the way'), +('避ける', 'さける', 'to avoid (physical contact with), to avoid (situation), to ward off, to avert, to put aside, to move out of the way'), +('尾', 'お', 'tail (of an animal), tail (of a kite, etc.), tail end, tail (of a comet), slope at the foot of a mountain'), +('尾羽打ち枯らす', 'おはうちからす', 'to be in a miserable state, to be down and out'), +('ガスの尾', 'ガスのお', 'gas tail (of a comet)'), +('虎の尾', 'とらのお', 'tiger''s tail, gooseneck loosestrife (species of flowering plant, Lysimachia clethroides), Asplenium incisum (species of spleenwort)'), +('助ける', 'たすける', 'to save, to rescue, to help, to assist, to support (financially), to contribute (to), to provide aid, to facilitate, to stimulate, to promote, to contribute to'), +('眉', 'まゆ', 'eyebrow, eyebrows'), +('眉毛', 'まゆげ', 'eyebrow'), +('描き眉', 'かきまゆ', 'painted eyebrows, pencilled eyebrows'), +('三日月眉', 'みかづきまゆ', 'arched eyebrows'), +('肘', 'ひじ', 'elbow'), +('肘掛け', 'ひじかけ', 'armrest (of a chair), elbow rest'), +('野球肘', 'やきゅうひじ', 'Little League elbow, pitcher''s elbow, baseball elbow'), +('右ひじ', 'みぎひじ', 'right elbow'), +('姫', 'ひめ', 'young lady of noble birth, princess (esp. in Western contexts, tales, etc.), girl, small, cute, lesser (in names of species), prostitute'), +('姫君', 'ひめぎみ', 'daughter of a person of high rank (esp. eldest daughter)'), +('歌姫', 'うたひめ', 'songstress, diva'), +('舞姫', 'まいひめ', 'female dancer, dancing girl, danseuse'), +('描く', 'えがく', 'to draw, to paint, to sketch, to depict, to describe, to picture in one''s mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)'), +('描く', 'えがく', 'to draw, to paint, to sketch, to depict, to describe, to picture in one''s mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)'), +('漂う', 'ただよう', 'to drift, to float, to waft (e.g. a scent), to hang in the air, to be in the air (e.g. a feeling or mood), to wander, to walk around aimlessly, to be unsteady, to be unstable, to falter, to flinch, to wince, to live in unreliable circumstances'), +('怖い', 'こわい', 'scary, frightening, eerie, dreadful'), +('怖い顔', 'こわいかお', 'grim face, angry look'), +('怖がる', 'こわがる', 'to be afraid of, to fear, to dread, to be nervous (about), to be shy (of)'), +('怖じる', 'おじる', 'to be scared'), +('恐れる', 'おそれる', 'to fear, to be afraid of'), +('浜', 'はま', 'beach, seashore, captured pieces (in the game of go), captured stones, Yokohama, riverbank, riverside'), +('浜辺', 'はまべ', 'beach, foreshore'), +('白浜', 'しらはま', 'white sandy beach'), +('揚げ浜', 'あげはま', 'artificially flooded salt farm above the high-tide mark, captured pieces (in the game of go), captured stones'), +('匹', 'ひき', 'counter for small animals, counter for rolls of cloth (two han in size), counter for horses, roll of cloth'), +('甕', 'かめ', 'earthenware pot'), +('瓶覗', 'かめのぞき', 'faint indigo blue (traditional Japanese color name)'), +('瓶', 'へい', 'jar or vase with a long narrow neck'), +('瓶子', 'へいじ', 'earthenware pot (used as a decanter), jar, jug'), +('大瓶', 'たいへい', 'large earthenware pot'), +('酒瓶', 'さかびん', 'sake bottle'), +('付ける', 'つける', 'to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit'), +('苗', 'なえ', 'seedling, young plant, rice seedling'), +('苗木', 'なえぎ', 'seedling, sapling, young tree'), +('早苗', 'さなえ', 'rice seedling'), +('花苗', 'はななえ', 'flower seedling'), +('猫', 'ねこ', 'cat (esp. the domestic cat, Felis catus), shamisen, geisha, wheelbarrow, clay bed-warmer, bottom, submissive partner of a homosexual relationship'), +('猫', 'ねこま', 'cat'), +('野良猫', 'のらねこ', 'stray cat, alley cat'), +('山猫', 'やまねこ', 'wildcat (European wildcat, Iriomote cat, Tsushima cat, etc.), wild cat, stray cat'), +('頻りに', 'しきりに', 'frequently, repeatedly, often, incessantly, constantly, eagerly, keenly, strongly, intently, hard, terribly, extremely, severely'), +('赴く', 'おもむく', 'to go in the direction of, to proceed toward, to proceed according to, to repair to, to betake oneself to, to become, to face (facts, circumstances, etc.), to abide by, to agree to, to consent to, to obey'), +('微か', 'かすか', 'faint, dim, weak, slight, vague, indistinct, hazy, poor, wretched, meagre, meager, scanty'), +('浮く', 'うく', 'to float, to become merry, to be cheerful, to become loose, to become unsteady, to feel out of it, to be cut off (e.g. from those around you), to feel out of place, to be frivolous, to be uncertain, to have (time, money, etc.) left over, to be saved (e.g. money), to have no basis, to be unreliable'), +('浮かれる', 'うかれる', 'to make merry, to be festive'), +('浮かぶ', 'うかぶ', 'to float, to be suspended, to rise to the surface, to appear, to emerge, to show up, to loom (up), to come to mind, to have inspiration'), +('浮かぶ瀬', 'うかぶせ', 'chance, opportunity, lucky break'), +('浮かべる', 'うかべる', 'to float, to set afloat, to launch, to show on one''s face (smile, sadness, etc.), to recall, to call to mind, to imagine, to think of'), +('聡い', 'さとい', 'clever, smart, sharp (ear, etc.), sensitive, discerning'), +('膝', 'ひざ', 'knee, lap, knee and thigh (while sitting)'), +('膝頭', 'ひざがしら', 'kneecap'), +('両膝', 'りょうひざ', 'both knees'), +('突き膝', 'つきひざ', 'knee touch down, posture with knees and toes on the floor'), +('腐る', 'くさる', 'to rot, to go bad, to decay, to spoil, to fester, to decompose, to turn sour (e.g. milk), to corrode, to weather, to crumble, to become useless, to blunt, to weaken (from lack of practice), to become depraved, to be degenerate, to be morally bankrupt, to be corrupt, to be depressed, to be dispirited, to feel discouraged, to feel down, to have the audacity to, to be bastard enough to, to lose a bet, to be drenched, to become sopping wet'), +('腐るほど', 'くさるほど', 'more than one can possibly use, countless (e.g. examples), (money) to burn, rolling in (cash)'), +('腐れる', 'くされる', 'to spoil, to rot, to corrode'), +('腐れ', 'くされ', 'rotting, spoiling, decaying, corroding, rotten, worthless, paltry, contemptible'), +('腐れ縁', 'くされえん', '(undesirable but) inseparable relationship'), +('腐らす', 'くさらす', 'to let spoil, to leave to rot, to cause to rot, to corrode, to discourage, to dishearten'), +('腐す', 'くさす', 'to speak ill of'), +('肌', 'はだ', 'skin, body (in the context of intimate bodily contact), surface, grain (e.g. of wood), texture, disposition, temperament, character, type'), +('肌着', 'はだぎ', 'underwear, underclothes, lingerie, chemise, singlet'), +('山肌', 'やまはだ', 'mountain''s surface, bare surface of a mountain'), +('地肌', 'じはだ', 'texture, grain, one''s skin (lacking makeup, etc.), natural skin, bare skin, scalp, surface of the earth, bare ground, surface of a sword blade'), +('敷く', 'しく', 'to spread out, to lay out, to take a position, to impose widely (e.g. over a city)'), +('舞う', 'まう', 'to dance (orig. a whirling dance), to flutter about, to revolve'), +('舞', 'まい', 'dancing, dance'), +('舞い上がる', 'まいあがる', 'to soar, to fly high, to be whirled up, to make merry, to be ecstatic, to be in high spirits'), +('仕舞い', 'しまい', 'end, close, finish, termination, noh dance in plain clothes'), +('獅子舞', 'ししまい', 'lion dance, traditional dance performed by one or more dancers wearing a guardian lion costume'), +('伏せる', 'ふせる', 'to turn over (face down), to lay face down, to lay upside down, to point downwards (eyes, head, etc.), to cast down (eyes), to lie (one''s body) face down, to lie flat (on the ground), to conceal, to hide, to keep secret, to place in hiding (e.g. troops for an ambush), to lie down, to retire, to go to bed (with an illness)'), +('伏す', 'ふす', 'to bend down, to bow down, to prostrate oneself, to hide oneself'), +('沸く', 'わく', 'to grow hot (e.g. water), to boil, to get excited (at), to erupt (in applause, cheering, etc.), to be in a ferment, to take place energetically, to ferment, to melt (of metal)'), +('沸かす', 'わかす', 'to boil, to heat, to excite, to melt (metal)'), +('噴く', 'ふく', 'to emit, to spout, to spurt, to boil over'), +('憤る', 'いきどおる', 'to be angry, to resent, to be enraged, to be indignant'), +('柄', 'がら', 'pattern, design, body build, figure, physique, essential qualities, character, nature, appropriate to, fitting of, suitable for'), +('柄にも無い', 'がらにもない', 'out of character, unlike one'), +('土地柄', 'とちがら', 'nature of the locality, character of a place, local colour, local color'), +('役柄', 'やくがら', 'role'), +('柄', 'え', 'handle, grip, stalk (of a mushroom, leaf, etc.)'), +('柄鏡', 'えかがみ', 'traditional mirror with a handle, popular since the Muromachi period'), +('長柄', 'ながえ', 'long handle, long-handled spear, long shaft'), +('柄', 'つか', 'hilt (of a sword), haft (of a dagger), handle, handgrip'), +('柄頭', 'つかがしら', 'pommel'), +('鎌柄', 'かまつか', 'sickle handle, goby minnow (Pseudogobio esocinus), Oriental photinia (species of shrub, Photinia villosa), Asiatic dayflower (Commelina communis), Joseph''s-coat (species of amaranth, Amaranthus tricolor)'), +('合わせる', 'あわせる', 'to match (rhythm, speed, etc.), to join together, to unite, to combine, to add up, to face, to be opposite (someone), to compare, to check with, to cause to meet (e.g. an unpleasant fate), to place together, to connect, to overlap, to mix, to combine, to put blade to blade, to fight'), +('払う', 'はらう', 'to pay (e.g. money, bill), to brush off, to wipe away, to clear away, to dust off, to cut off (e.g. branches), to drive away (e.g. one''s competitors), to sell off (something unneeded), to dispose of, to pay (e.g. attention), to show (e.g. respect, concern), to make (e.g. effort, sacrifice), to expend, to exert, to move out (of one''s own place), to vacate, to sweep (e.g. one''s legs), to knock aside, to make a sweeping stroke (in Japanese calligraphy), to reset (an abacus)'), +('幅', 'はば', 'width, breadth, freedom (e.g. of thought), latitude, gap, difference (e.g. in price), range (e.g. of voice)'), +('幅広い', 'はばひろい', 'extensive, wide, broad'), +('振幅', 'しんぷく', 'amplitude (of vibration), (degree of) instability, volatility, fluctuation, variation, swing'), +('小幅', 'こはば', 'small, narrow, single-breadth cloth (approx. 36 cm wide)'), +('普く', 'あまねく', 'widely, extensively, far and wide, everywhere, all around, generally, universally'), +('紛れる', 'まぎれる', 'to disappear into, to be lost in, to slip into, to get mixed in among, to do something under the cover of (confusion, etc.), to be almost indistinguishable, to be confusingly similar, to be diverted from (negative emotions, etc.), to forget about, to be distracted by, to be too absorbed in'), +('紛らす', 'まぎらす', 'to divert (e.g. one''s mind), to distract, to relieve (e.g. boredom), to conceal (e.g. one''s sorrow with a smile), to shift (the conversation)'), +('紛らわす', 'まぎらわす', 'to divert, to distract'), +('紛らわしい', 'まぎらわしい', 'easily mixed up (e.g. similar words), easily mistaken, confusingly similar, misleading, equivocal, ambiguous'), +('侮る', 'あなどる', 'to disdain, to look down on, to make light of, to hold in contempt, to scorn, to despise'), +('侮る', 'あなどる', 'to disdain, to look down on, to make light of, to hold in contempt, to scorn, to despise'), +('覆う', 'おおう', 'to cover, to hide, to conceal, to wrap, to disguise'), +('覆す', 'くつがえす', 'to overturn, to capsize, to upset, to overthrow (government etc.), to reverse (decision etc.), to disprove (an established theory etc.), to overrule'), +('覆る', 'くつがえる', 'to topple over, to be overturned, to capsize, to be overruled, to be reversed, to be discredited'), +('丙', 'へい', 'third rank, third class, third person (in a contract, etc.), third sign of the Chinese calendar'), +('丙戌', 'ひのえいぬ', 'Fire Dog (23rd term of the sexagenary cycle, e.g. 1946, 2006, 2066)'), +('幣', 'へい', 'staff with plaited paper streamers'), +('幣を奉る', 'ぬさをたてまつる', 'to offer a wand with hemp and paper streamers to a Shinto god'), +('大幣', 'おおぬさ', 'streamers (made of linen, paper, etc.) attached to a long pole (used as a wand in grand purification ceremonies), being in great demand'), +('小幣', 'こぬさ', 'small purification wand, thinly cut hemp or paper mixed with rice (scattered as an offering to the gods)'), +('覆う', 'おおう', 'to cover, to hide, to conceal, to wrap, to disguise'), +('覆い', 'おおい', 'cover, mantle, shroud, hood'), +('壁', 'かべ', 'wall, partition, barrier, obstacle, Chinese "Wall" constellation (one of the 28 mansions)'), +('壁紙', 'かべがみ', 'wallpaper, wallpaper, background image, desktop image'), +('白壁', 'しらかべ', 'white plaster wall, tofu, bean curd'), +('厚い壁', 'あついかべ', 'hard-to-overcome obstacle, high hurdle, thick wall'), +('癖', 'くせ', 'habit (usu. a bad one), tendency, peculiarity, idiosyncrasy, mannerism, quirk, crease, wrinkle, curl, kink'), +('癖に', 'くせに', 'and yet, though, when, in spite of'), +('悪い癖', 'わるいくせ', 'bad habit, bad habits'), +('自傷癖', 'じしょうくせ', '(practice of) self-injury, (habit of) self-harm'), +('癖に', 'くせに', 'and yet, though, when, in spite of'), +('癖になる', 'くせになる', 'to become a habit, to be addictive, to be moreish'), +('偏る', 'かたよる', 'to lean (to one side), to incline, to be unbalanced (e.g. diet), to be unduly weighted towards, to be concentrated on, to be partial, to be biased, to be prejudiced'), +('蔑ろ', 'ないがしろ', '(a) slight, disrespect, making light (of), neglect'), +('蔑ろにする', 'ないがしろにする', 'to make light of, to ignore, to slight'), +('蔑する', 'なみする', 'to set at naught, to ignore, to disregard'), +('蔑む', 'さげすむ', 'to scorn, to despise, to hold in contempt, to look down on, to disdain'), +('普く', 'あまねく', 'widely, extensively, far and wide, everywhere, all around, generally, universally'), +('餅', 'もち', 'mochi, (sticky) rice cake'), +('餅屋', 'もちや', 'rice cake shop keeper, rice cake store (shop)'), +('椿餅', 'つばいもちい', 'rice-cake sweet sandwiched between two camellia leaves'), +('五平餅', 'ごへいもち', 'skewered sweet rice cakes served with soy sauce and miso'), +('餅', 'もち', 'mochi, (sticky) rice cake'), +('餅いなり', 'もちいなり', 'sticky rice wrapped in deep-fried tofu'), +('椿餅', 'つばいもちい', 'rice-cake sweet sandwiched between two camellia leaves'), +('愛敬の餅', 'あいきょうのもちい', 'Heian-period ceremony where a newlywed groom and bride eat a rice-cake on the third night after the wedding ceremony'), +('捉える', 'とらえる', 'to catch, to capture, to seize, to arrest, to grab, to catch hold of, to grasp (e.g. meaning), to perceive, to capture (e.g. features), to captivate, to move (one''s heart)'), +('捕らわれる', 'とらわれる', 'to be caught, to be captured, to be taken prisoner, to be arrested, to be apprehended, to be seized with (fear, etc.), to be a slave to, to stick to, to adhere to, to be swayed by'), +('捕る', 'とる', 'to take, to catch, to capture'), +('捉える', 'とらえる', 'to catch, to capture, to seize, to arrest, to grab, to catch hold of, to grasp (e.g. meaning), to perceive, to capture (e.g. features), to captivate, to move (one''s heart)'), +('捕らわれる', 'とらわれる', 'to be caught, to be captured, to be taken prisoner, to be arrested, to be apprehended, to be seized with (fear, etc.), to be a slave to, to stick to, to adhere to, to be swayed by'), +('捕まえる', 'つかまえる', 'to catch, to capture, to arrest, to seize, to restrain, to grab, to clutch, to grasp, to seize, to hold on to, to catch hold of (someone), to stop (e.g. a stranger in the street), to hail (a taxi, waiter, etc.), to hold (someone) back, to detain, towards (someone), at (someone), in (someone''s) face'), +('捕まる', 'つかまる', 'to be caught, to be arrested, to hold on to, to grasp, to find (e.g. proof), to get (e.g. a taxi), to be detained by'), +('募る', 'つのる', 'to become stronger, to grow in intensity, to grow violent, to become worse, to invite contributions, etc., to solicit help, participation, etc., to recruit (e.g. soldiers)'), +('芳しい', 'かんばしい', 'sweet-smelling, fragrant, aromatic, good (reputation, condition, results, etc.), favorable'), +('奉る', 'たてまつる', 'to offer, to present, to set someone up in a high position, to revere at a distance, to do respectfully'), +('奉る', 'たてまつる', 'to offer, to present, to set someone up in a high position, to revere at a distance, to do respectfully'), +('奉ずる', 'ほうずる', 'to present, to dedicate, to obey, to follow, to believe in, to serve, to proudly bear'), +('国', 'くに', 'country, state, region, national government, central government, home (i.e. hometown, home country), province (of Japan), land, earth'), +('慕う', 'したう', 'to yearn for, to long for, to pine for, to miss, to love dearly, to adore, to follow (someone), to idolize (for virtue, learning, status, etc.)'), +('抱く', 'だく', 'to hold in one''s arms (e.g. a baby), to embrace, to hug, to have sex with, to make love to, to sleep with, to sit on (eggs), to brood'), +('抱く', 'いだく', 'to hold in one''s arms (e.g. a baby), to embrace, to hug, to have (a thought or feeling), to hold, to harbour (suspicion, doubt, etc.), to harbor, to bear (a grudge, ill will, etc.), to entertain (hope, illusions, etc.), to cherish (e.g. an ambition)'), +('抱える', 'かかえる', 'to hold in one''s arms, to carry in one''s arms, to carry under one''s arm, to hold (one''s head) in one''s hands, to have (problems, debts, etc.), to take on (a responsibility), to be burdened with (e.g. care of a family member), to have (children, etc.) to provide for, to employ, to have (on one''s staff), to hire'), +('倣う', 'ならう', 'to imitate, to follow, to emulate'), +('泡', 'あわ', 'bubble, foam, froth, suds, lather, head (on beer)'), +('泡立ち', 'あわだち', 'foaming, frothing, lathering'), +('口角泡', 'こうかくあわ', 'frothing at the mouth'), +('一泡', 'ひとあわ', 'blow, shock'), +('蜂', 'はち', 'bee, wasp, hornet'), +('蜂蜜', 'はちみつ', 'honey'), +('虻蜂', 'あぶはち', 'horsefly and bee, horsefly and wasp'), +('峰', 'みね', 'peak, summit, ridge, top, back of a blade'), +('峰打ち', 'みねうち', 'striking with the back of the sword'), +('剣ヶ峰', 'けんがみね', 'rim of a volcano (esp. Mt. Fuji), wrestling ring, dire or risky situation with no room for error, sink-or-swim position'), +('峰々', 'みねみね', 'peaks'), +('剣ヶ峰', 'けんがみね', 'rim of a volcano (esp. Mt. Fuji), wrestling ring, dire or risky situation with no room for error, sink-or-swim position'), +('峰々', 'みねみね', 'peaks'), +('縫う', 'ぬう', 'to sew, to stitch, to weave one''s way (e.g. through a crowd)'), +('飽きる', 'あきる', 'to get tired of, to lose interest in, to be fed up with, to have enough'), +('飽かす', 'あかす', 'to bore, to tire, to weary, to stultify, to use lavishly (and without regret)'), +('飽く', 'あく', 'to tire of, to lose interest in, to be satisfied, to enjoy, to do adequately'), +('飽くまで', 'あくまで', 'to the end, to the bitter end, to the last, stubbornly, persistently, consistently, to the utmost, after all, it must be remembered, only, purely, simply'), +('妨げる', 'さまたげる', 'to disturb, to prevent, to obstruct, to hinder'), +('忙しい', 'いそがしい', 'busy, occupied, hectic, restless, hurried, fidgety'), +('忙しい', 'せわしい', 'busy, hectic, frantic, restless, hurried, fidgety'), +('乏しい', 'とぼしい', 'meagre, meager, scarce, limited, destitute, hard up, lacking, scanty, poor'), +('乏しい', 'とぼしい', 'meagre, meager, scarce, limited, destitute, hard up, lacking, scanty, poor'), +('某', 'それがし', 'someone, unknown person, I, me'), +('何がし', 'なにがし', 'certain amount, some, certain person, Mr So-and-so, a certain ..., I, me'), +('何の某', 'なんのなにがし', 'certain person, certain amount'), +('房', 'ふさ', 'tuft (of hair, threads, etc.), fringe, tassel, bunch (of grapes, bananas, etc.), cluster (of flowers), segment (of a tangerine, etc.), section'), +('房房', 'ふさふさ', 'in tufts, tufty, bushy, thick, luxuriant'), +('一房', 'ひとふさ', 'one tuft (of hair, threads, etc.), one bunch (of grapes, bananas, etc.), one cluster (e.g. of flowers), one segment (of a tangerine, etc.), one section'), +('傍ら', 'かたわら', 'side, edge, beside, besides, nearby, while (doing), in addition to, at the same time'), +('傍らに', 'かたわらに', 'beside, nearby'), +('脇役', 'わきやく', 'supporting role (actor), minor role'), +('脇に置く', 'わきにおく', 'to lay aside, to set aside'), +('側', 'そば', 'near, close, beside, vicinity, proximity, besides, while, third person'), +('端から', 'はたから', 'from outside, from the side'), +('側', 'そば', 'near, close, beside, vicinity, proximity, besides, while, third person'), +('側杖', 'そばづえ', 'blow received by a bystander, getting dragged in to someone else''s fight'), +('お側', 'おそば', 'near, close, beside, vicinity, proximity, besides, while, attendant, retainer, vassal'), +('冒す', 'おかす', 'to brave, to risk, to face, to venture, to harm, to afflict, to affect, to desecrate, to profane, to assume (someone else''s surname), to take'), +('墨', 'すみ', 'sumi, India ink, Chinese ink, ink stick, ink-cake, squid ink, octopus ink, carpenter''s inking string'), +('墨付き', 'すみつき', 'certificate, certified document, authorization, authorisation, (the) thumbs up, seal of approval, paper with signature of the shogun or lord'), +('烏賊墨', 'いかすみ', 'squid ink'), +('雪と墨', 'ゆきとすみ', 'diametric opposites, night and day, black and white, snow and ink'), +('膨らむ', 'ふくらむ', 'to expand, to swell (out), to get big, to become inflated'), +('膨れる', 'ふくれる', 'to swell (out), to expand, to be inflated, to distend, to bulge, to get cross, to get sulky, to pout'), +('紡ぐ', 'つむぐ', 'to spin, to make yarn, to spin (a tale), to assemble (e.g. words), to put together'), +('崩れる', 'くずれる', 'to collapse, to crumble, to get out of shape, to lose one''s shape, to become disorganized, to become untidy, to break down, to be thrown into disarray, to crash (stock market), to slump, to decline, to break money into small change, to turn bad (e.g. weather), to change for the worse, to deteriorate'), +('崩す', 'くずす', 'to destroy, to demolish, to pull down, to tear down, to level, to disturb, to put into disorder, to throw off balance, to make shaky, to relax (one''s pose), to make oneself at ease, to break (a bill), to change, to make change, to write in cursive style, to write in running style, to break into a smile, to let off a smile, to lower (a price)'), +('褒める', 'ほめる', 'to praise, to commend, to compliment, to speak well of, to speak highly of'), +('頬', 'ほお', 'cheek (of face)'), +('頬被り', 'ほおかぶり', 'covering one''s head with a handkerchief, scarf, etc., tying a cloth around one''s head, feigning ignorance, shutting one''s eyes (to)'), +('頬', 'ほお', 'cheek (of face)'), +('頬杖', 'ほおづえ', 'resting one''s chin in one''s hands, brace (in construction), angle brace'), +('僕', 'しもべ', 'servant, manservant, menial'), +('神の僕', 'かみのしもべ', 'Servant of God'), +('堀', 'ほり', 'moat, fosse, canal, ditch'), +('堀江', 'ほりえ', 'canal'), +('朴の木', 'ほおのき', 'magnolia (Magnolia obovata), Japanese big leaf magnolia'), +('朴', 'ほお', 'Japanese bigleaf magnolia (Magnolia obovata)'), +('朴の木', 'ほおのき', 'magnolia (Magnolia obovata), Japanese big leaf magnolia'), +('榎', 'えのき', 'Japanese hackberry (Celtis sinensis var. japonica), Chinese nettle tree, enoki mushroom (Flammulina velutipes), winter mushroom, velvet shank, enokitake, enokidake'), +('走る', 'はしる', 'to run, to run (of a vehicle), to drive, to travel, to move, to sail, to rush (to), to dash, to race, to retreat, to flee, to defect (to), to run away, to abscond, to elope, to flash (of lightning), to streak, to shoot (through; e.g. of pain), to run (through), to flare, to flit (e.g. across one''s face), to spread quickly (of news, shock, etc.), to go (e.g. bad, to extremes), to become, to turn, to take to (e.g. crime), to get carried away by (e.g. one''s emotions), to get involved in, to get wrapped up in, to run (through; of a road, street, etc.), to extend (e.g. of a mountain range), to stretch, to lie'), +('図る', 'はかる', 'to plan, to attempt, to devise, to plot, to conspire, to scheme, to aim for, to strive for, to work towards, to seek, to deceive, to trick, to take in'), +('謀る', 'たばかる', 'to work out a plan of deception, to scheme, to take in, to dupe, to deceive, to think up a plan, to think over a plan, to discuss, to consult'), +('謀', 'はかりごと', 'plan, strategy'), +('睦まじい', 'むつまじい', 'harmonious (couple, family, etc.), happy, affectionate, friendly, intimate'), +('睦む', 'むつむ', 'to be harmonious, to get on well, to be intimate or close'), +('睦ぶ', 'むつぶ', 'to be harmonious, to get on well, to be intimate or close'), +('形', 'かたち', 'form, shape, figure, visage'), +('顔かたち', 'かおかたち', 'features, looks'), +('麻', 'あさ', 'cannabis (Cannabis sativa), hemp (plant), hemp (fiber), linen, flax, jute'), +('麻布', 'あさぬの', 'hemp cloth, linen'), +('大麻', 'たいま', 'hemp, cannabis, marijuana, pot, hashish, Shinto paper offerings'), +('絹麻', 'きぬあさ', 'thin linen polished to appear like silk'), +('摩する', 'まする', 'to rub, to scrub, to scrape, to draw near, to press'), +('摩る', 'さする', 'to rub, to pat, to stroke, to massage'), +('擦る', 'する', 'to rub, to chafe, to strike (match), to file, to frost (glass), to lose (e.g. a match), to forfeit, to squander one''s money (e.g. through gambling, Pachinko, etc.)'), +('翻る', 'ひるがえる', 'to flutter (in the wind), to wave, to flap, to fly, to turn over, to flip over, to suddenly change (attitude, opinion, etc.), to suddenly switch, to alter, to flip'), +('翻す', 'ひるがえす', 'to turn over, to turn around, to change (one''s mind), to reverse (one''s decision), to take back (one''s words), to fly (flag, etc.), to wave (skirt, cape, etc.)'), +('磨く', 'みがく', 'to polish, to shine, to burnish, to scour, to scrub, to brush (teeth), to grind (e.g. a lens), to refine (a skill, etc.), to improve, to hone, to polish (up), to cultivate (one''s character)'), +('擦る', 'する', 'to rub, to chafe, to strike (match), to file, to frost (glass), to lose (e.g. a match), to forfeit, to squander one''s money (e.g. through gambling, Pachinko, etc.)'), +('凡そ', 'およそ', 'about, roughly, approximately, generally, on the whole, as a rule, completely, quite, entirely, altogether, totally, not at all (with neg. verb), outline, gist'), +('全て', 'すべて', 'everything, all, the whole, entirely, completely, wholly, all'), +('すべての道はローマに通ず', 'すべてのみちはローマにつうず', 'all roads lead to Rome'), +('埋める', 'うめる', 'to bury (e.g. in the ground), to fill up (e.g. audience fills a hall), to cause to be packed, to plug (a gap), to stop (a gap), to bridge (a difference, a gap), to fill (a seat, a vacant position), to fill out, to make up for (a loss, shortage, etc.), to make amends, to compensate for, to put cold water (in a bath), to cover, to scatter something over'), +('埋まる', 'うまる', 'to be buried, to be covered, to be surrounded, to overflow, to be crowded, to be filled, to be repaid (e.g. debt), to be replenished, to be filled (e.g. blank, vacancy, schedule)'), +('埋もれる', 'うもれる', 'to be buried, to be covered, to be hidden'), +('埋める', 'うずめる', 'to cover, to bury (e.g. one''s face in hands), to submerge, to fill (completely), to stuff, to pack, to cram, to fill up'), +('埋まる', 'うまる', 'to be buried, to be covered, to be surrounded, to overflow, to be crowded, to be filled, to be repaid (e.g. debt), to be replenished, to be filled (e.g. blank, vacancy, schedule)'), +('埋ける', 'いける', 'to bury something in the ground, to cover coals with ash, to bank a fire'), +('枕', 'まくら', 'pillow, bolster, introduction (e.g. to a rakugo story), lead-in'), +('枕投げ', 'まくらなげ', 'pillow fight'), +('新枕', 'にいまくら', 'bridal bed'), +('高枕', 'たかまくら', 'high pillow'), +('又', 'また', 'again, once more, once again, another time, some other time, also, too, as well, likewise, on the other hand, while, and, in addition, besides, moreover, furthermore, or, otherwise, really, how, (what, why) on earth, indirect'), +('又は', 'または', 'or, either ... or ...'), +('尚又', 'なおまた', 'further, besides, moreover, in addition to'), +('猫又', 'ねこまた', 'mythical two-tailed monster cat'), +('岬', 'みさき', 'cape (on coast)'), +('漫ろ', 'そぞろ', 'restless, on edge (and unable to concentrate), distracted, for some reason'), +('そぞろ歩き', 'そぞろあるき', 'slow, relaxed walk, stroll'), +('妙なる調べ', 'たえなるしらべ', 'enchanting melody, sweet tune'), +('妙なる', 'たえなる', 'exquisite (e.g. melody), melodious, delicate, enchanting'), +('白妙', 'しろたえ', 'white cloth, white'), +('暗い', 'くらい', 'dark, gloomy, murky, depressed, dispirited, down in the dumps, dark (mood), dark (in colour), dull, ill-boding, dark (e.g. past), suspicious, unlikely (to succeed), hopeless, unpromising, unfamiliar (with), ignorant (of)'), +('娘', 'むすめ', 'daughter, girl (i.e. a young, unmarried woman)'), +('娘婿', 'むすめむこ', 'son-in-law'), +('一人娘', 'ひとりむすめ', 'only daughter'), +('もらい娘', 'もらいむすめ', 'adopted daughter'), +('ボクっ娘', 'ボクっこ', 'young woman who uses the first person pronoun "boku"'), +('ドジっ子', 'ドジっこ', 'clumsy girl'), +('眠る', 'ねむる', 'to sleep, to die, to rest (in peace), to lie (buried), to sleep (in the grave), to lie idle (e.g. of resources), to lie unused, to lie untapped, to lie untouched, to close one''s eyes'), +('眠い', 'ねむい', 'sleepy, drowsy, somnolent'), +('滅びる', 'ほろびる', 'to go to ruin, to go under, to fall, to be destroyed, to die out, to become extinct, to perish'), +('滅ぶ', 'ほろぶ', 'to be ruined, to go under, to perish, to be destroyed'), +('滅ぼす', 'ほろぼす', 'to destroy, to overthrow, to wreck, to ruin'), +('妄りに', 'みだりに', 'without authority, without reason, unnecessarily, recklessly, indiscriminately, arbitrarily'), +('茂る', 'しげる', 'to grow thickly, to be in full leaf, to be rampant, to luxuriate, to be luxurious'), +('盲', 'めくら', 'blindness, blind person, illiteracy, illiterate person, ignorance, ignoramus'), +('盲穴', 'めくらあな', 'blind hole'), +('俄盲', 'にわかめくら', 'sudden blindness, one suddenly blinded'), +('作り盲', 'つくりめくら', 'feigned blindness'), +('免れる', 'まぬがれる', 'to escape (disaster, death, etc.), to be saved from, to be rescued from, to avoid (e.g. punishment), to evade (e.g. responsibility), to avert, to elude, to be exempted from'), +('免れる', 'まぬがれる', 'to escape (disaster, death, etc.), to be saved from, to be rescued from, to avoid (e.g. punishment), to evade (e.g. responsibility), to avert, to elude, to be exempted from'), +('網', 'あみ', 'net, netting, web'), +('網棚', 'あみだな', 'overhead luggage rack, overhead baggage rack'), +('巻き網', 'まきあみ', 'purse seine, round haul net'), +('底引き網', 'そこびきあみ', 'trawl (net)'), +('矛', 'ほこ', 'long-handled Chinese spear, lance, pike, weapon, arms, grip of a bow, parade float decorated with long-handled Chinese spears'), +('矛先', 'ほこさき', 'point of a spear, spearhead, focus (of one''s attack, criticism, etc.), aim, target, brunt, force (of an argument), edge'), +('銅矛', 'どうほこ', 'bronze hoko, bronze halberd, bronze spearhead'), +('瓊矛', 'ぬほこ', 'jeweled spear (jewelled)'), +('野次馬', 'やじうま', 'curious onlookers, rubbernecks'), +('野次', 'やじ', 'hooting, jeering, heckling'), +('弥', 'いや', 'more and more, increasingly, extremely, very'), +('いやが上にも', 'いやがうえにも', 'all the more'), +('愈', 'いよいよ', 'more and more, all the more, increasingly, at last, finally, beyond doubt, (at the) last moment, worst possible time'), +('渡る', 'わたる', 'to cross over, to go across, to extend, to cover, to range, to span'), +('黙る', 'だまる', 'to be silent, to say nothing'), +('躍る', 'おどる', 'to jump up, to spring up, to leap, to move around, to bounce up and down, to pound (of one''s heart, e.g. with excitement), to throb, to be messy (of handwriting), to be untidy'), +('霧', 'きり', 'fog, mist, spray'), +('霧雨', 'きりさめ', 'drizzle, light rain'), +('黒い霧', 'くろいきり', 'thick fog (of suspicion), black veil of secrecy, covered-up crime, unethical act, etc.'), +('闇', 'やみ', 'darkness, the dark, bewilderment, despair, hopelessness, hidden place, secrecy, oblivion, black market, shady trading, underhand transactions, illegal channels'), +('闇雲', 'やみくも', 'reckless, (at) random, haphazard, blind, sudden, abrupt'), +('暁闇', 'あかつきやみ', 'moonless dawn'), +('五月闇', 'さつきやみ', 'dark night in the rainy season'), +('暗い', 'くらい', 'dark, gloomy, murky, depressed, dispirited, down in the dumps, dark (mood), dark (in colour), dull, ill-boding, dark (e.g. past), suspicious, unlikely (to succeed), hopeless, unpromising, unfamiliar (with), ignorant (of)'), +('楽しい', 'たのしい', 'enjoyable, fun, pleasant, happy, delightful'), +('楽しむ', 'たのしむ', 'to enjoy (oneself)'), +('例える', 'たとえる', 'to compare (something) to, to liken, to speak figuratively, to use a simile, to use a metaphor'), +('只', 'ただ', 'ordinary, common, usual, free of charge, unaffected, as is, safe, only, merely, just, simply, but, however, nevertheless'), +('ただ今', 'ただいま', 'here I am, I''m home!, presently, right away, right now, just now'), +('癒える', 'いえる', 'to recover, to be healed'), +('癒す', 'いやす', 'to heal, to cure, to satisfy (e.g. hunger, thirst), to alleviate (e.g. sorrow, fatigue)'), +('癒す', 'いやす', 'to heal, to cure, to satisfy (e.g. hunger, thirst), to alleviate (e.g. sorrow, fatigue)'), +('微か', 'かすか', 'faint, dim, weak, slight, vague, indistinct, hazy, poor, wretched, meagre, meager, scanty'), +('諭す', 'さとす', 'to admonish, to persuade, to warn, to remonstrate'), +('雄', 'おす', 'male (animal, plant)'), +('雄猿', 'おすざる', 'male monkey'), +('雄', 'おす', 'male (animal, plant)'), +('雄鶏', 'おんどり', 'cock, rooster, chanticleer'), +('湧く', 'わく', 'to well (up), to gush forth (of water), to spring out, to surge, to appear (esp. suddenly) (sweat, tears, etc.), to feel emotions from (joy, bravery, etc.), to hatch (esp. of parasitic insects, etc.)'), +('尚', 'なお', 'still, yet, more, still more, greater, further, as ..., like ..., furthermore, in addition, moreover, note that ...'), +('尚更', 'なおさら', 'still more, even more, all the more, still less, even less'), +('今なお', 'いまなお', 'still, even now'), +('今もなお', 'いまもなお', 'still, even now'), +('憂える', 'うれえる', 'to worry about, to be anxious about, to be concerned about, to lament, to grieve, to feel sorrow for'), +('憂い', 'うれい', 'sorrow, grief, anguish, distress, trouble, affliction, anxiety, fear, misgivings'), +('憂い顔', 'うれいがお', 'sad face, sorrowful face, anxious look, sad countenance'), +('憂い', 'うい', 'unhappy, sad, gloomy'), +('憂き', 'うき', 'unhappy, sad, gloomy'), +('憂き目', 'うきめ', 'bitter experience, misery, distress, grief, sad thoughts, hardship'), +('溶ける', 'とける', 'to melt, to thaw, to fuse, to dissolve'), +('溶かす', 'とかす', 'to dissolve, to melt'), +('誉れ', 'ほまれ', 'honour, honor'), +('誉れ高い', 'ほまれたかい', 'renowned, famous'), +('褒める', 'ほめる', 'to praise, to commend, to compliment, to speak well of, to speak highly of'), +('妖しい', 'あやしい', 'mysterious, bewitching, alluring, enticing, enchanting'), +('誘う', 'さそう', 'to invite, to ask (someone to do), to call (for), to take (someone) along, to tempt, to lure, to entice, to seduce, to induce (tears, laughter, sleepiness, etc.), to arouse (e.g. sympathy), to provoke'), +('誘う', 'さそう', 'to invite, to ask (someone to do), to call (for), to take (someone) along, to tempt, to lure, to entice, to seduce, to induce (tears, laughter, sleepiness, etc.), to arouse (e.g. sympathy), to provoke'), +('上げる', 'あげる', 'to raise, to elevate, to do up (one''s hair), to fly (a kite, etc.), to launch (fireworks, etc.), to surface (a submarine, etc.), to land (a boat), to deep-fry, to show someone (into a room), to give, to send someone (away), to enrol (one''s child in school), to enroll, to increase (price, quality, status, etc.), to develop (talent, skill), to improve, to make (a loud sound), to raise (one''s voice), to earn (something desirable), to praise, to give (an example, etc.), to cite, to summon up (all of one''s energy, etc.), to arrest, to nominate, to summon (for geishas, etc.), to offer up (incense, a prayer, etc.) to the gods (or Buddha, etc.), to bear (a child), to conduct (a ceremony, esp. a wedding), (of the tide) to come in, to vomit, to do for (the sake of someone else), to complete ..., to humbly do ...'), +('上がる', 'あがる', 'to rise, to go up, to come up, to ascend, to be raised, to enter (esp. from outdoors), to come in, to go in, to enter (a school), to advance to the next grade, to get out (of water), to come ashore, to increase, to improve, to make progress, to be promoted, to advance, to be made (of profit, etc.), to occur (esp. of a favourable result), to be adequate (to cover expenses, etc.), to be finished, to be done, to be over, (of rain) to stop, to lift, to stop (working properly), to cut out, to give out, to die, to win (in a card game, etc.), to be arrested, to turn up (of evidence, etc.), to be deep fried, to be spoken loudly, to get nervous, to get stage fright, to be offered (to the gods, etc.), to go, to visit, to eat, to drink, to be listed (as a candidate), to serve (in one''s master''s home), to go north, to be complete, to finish'), +('与える', 'あたえる', 'to give (esp. to someone of lower status), to bestow, to grant, to confer, to present, to award, to provide, to afford, to offer, to supply, to assign, to cause, to pass (a variable to a function)'), +('与る', 'あずかる', 'to participate in, to take part in, to play a part in, to receive, to be given, to enjoy'), +('与する', 'くみする', 'to take part in, to be a party to, to side with, to support, to agree with'), +('揺れる', 'ゆれる', 'to shake, to sway, to waver'), +('揺る', 'ゆる', 'to shake, to jolt, to rock (cradle), to swing'), +('揺るぐ', 'ゆるぐ', 'to shake, to waver, to tremble'), +('揺らぐ', 'ゆらぐ', 'to swing, to sway, to shake, to tremble, to waver, to feel shaken, to become unstable'), +('揺るぐ', 'ゆるぐ', 'to shake, to waver, to tremble'), +('揺する', 'ゆする', 'to shake, to jolt, to rock (cradle), to swing, to blackmail, to extort, to shake down'), +('揺さぶる', 'ゆさぶる', 'to shake, to jolt, to rock, to swing, to sway, to shake (e.g. the political world), to disturb, to shock, to upset, to put off a batter (by varying one''s type of pitch)'), +('揺すぶる', 'ゆすぶる', 'to shake, to jolt, to rock, to swing'), +('溶ける', 'とける', 'to melt, to thaw, to fuse, to dissolve'), +('溶かす', 'とかす', 'to dissolve, to melt'), +('溶く', 'とく', 'to dissolve (paint), to scramble (eggs), to melt (metal, etc.), to mix (water with flour, etc.)'), +('窯', 'かま', 'stove, furnace, kiln'), +('窯元', 'かまもと', 'pottery (i.e. the place), potter'), +('踊る', 'おどる', 'to dance (orig. a hopping dance)'), +('踊る阿呆に見る阿呆', 'おどるあほうにみるあほう', 'you''re a fool if you dance, and a fool if you just look on; we''re all fools, so let''s dance'), +('謡', 'うたい', 'noh chanting, recitation'), +('謡物', 'うたいもの', 'utai (noh chant) piece for recitation'), +('地謡', 'じうたい', 'noh chorus'), +('素謡', 'すうたい', 'bare noh chanting, vocal-only noh theater performance, with no dancing or instruments, unaccompanied utai'), +('歌う', 'うたう', 'to sing, to sing of (love, beauty, etc.) in a poem, to express in the form of a poem, to recite (a poem)'), +('腰', 'こし', 'lower back, waist, hips, lumbar region, body (of hair, noodle, paper, etc.), resilience, spring'), +('腰', 'こし', 'counter for swords, hakama, obi, etc. worn around the waist, counter for quivers of arrows'), +('お腰', 'おこし', 'buttocks, lower back, waist, hips, kimono underskirt'), +('太刀二腰', 'たちふたこし', 'two swords'), +('拉ぐ', 'ひしぐ', 'to crush'), +('抑える', 'おさえる', 'to keep within limits (e.g. spending), to restrain (e.g. emotions), to control, to curb, to hold in check, to hold back (e.g. an enemy), to check, to curb, to contain, to quell, to subdue, to suppress, to repress'), +('薄物', 'うすもの', 'lightweight fabric or clothing, silk gauze, thin silk, Latin (language)'), +('翼', 'つばさ', 'wing, Chinese "Wings" constellation (one of the 28 mansions), counter for birds or bird wings'), +('翼沙魚', 'つばさはぜ', 'loach goby (Rhyacichthys aspro)'), +('片翼', 'かたよく', 'one wing, single wing'), +('虎に翼', 'とらにつばさ', 'making the strong even stronger'), +('頼む', 'たのむ', 'to request, to beg, to ask, to call, to order, to reserve, to entrust to, to rely on, please, please do'), +('頼むから', 'たのむから', 'please!, I''m asking you, for heaven''s sake'), +('頼もしい', 'たのもしい', 'reliable, trustworthy, hopeful, promising'), +('頼る', 'たよる', 'to rely on, to depend on, to count on, to turn to (for help)'), +('絡む', 'からむ', 'to twine, to get tangled, to get entangled, to get caught (in), to be involved (e.g. of money in a matter), to get involved (in), to be a factor (in), to have an influence, to pick a quarrel (with), to find fault (with), to pester, to hassle'), +('絡まる', 'からまる', 'to be entwined, to be involved'), +('雷', 'かみなり', 'lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger'), +('雷雲', 'らいうん', 'thundercloud'), +('水雷', 'みずがみなり', 'thunder accompanied by rain, lightning that does not start a fire'), +('日雷', 'ひがみなり', 'thunder on a clear day, lightning that starts a fire'), +('雷', 'かみなり', 'lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger'), +('雷雲', 'らいうん', 'thundercloud'), +('雷', 'かみなり', 'lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger'), +('藍', 'あい', 'dyer''s knotweed (Persicaria tinctoria, used to produce indigo dye), indigo (dye), indigo (colour)'), +('藍色', 'あいいろ', 'indigo blue'), +('人造藍', 'じんぞうあい', 'synthetic indigo'), +('琉球藍', 'りゅうきゅうあい', 'Assam indigo (Strobilanthes cusia)'), +('裸', 'はだか', 'nakedness, nudity, bareness, nakedness, baldness, being uncovered, being penniless, concealing nothing, openness'), +('裸電球', 'はだかでんきゅう', 'naked light bulb'), +('丸裸', 'まるはだか', 'being stark-naked, having no possessions, losing all one''s belongings'), +('赤裸', 'あかはだか', 'stark naked, nude, bare, stripped of all belongings, penniless, naked barley (Hordeum vulgare var. nudum)'), +('履く', 'はく', 'to put on (lower-body clothing, e.g. pants, skirt, footwear), to wear, to affix (a sword to one''s hip), to affix (a bowstring to a bow)'), +('妄りに', 'みだりに', 'without authority, without reason, unnecessarily, recklessly, indiscriminately, arbitrarily'), +('濫りがましい', 'みだりがましい', 'morally corrupt'), +('離れる', 'はなれる', 'to be separated, to be apart, to be distant, to leave, to go away, to leave (a job, etc.), to quit, to give up, to lose connection with, to drift away from'), +('離す', 'はなす', 'to separate, to part, to divide, to keep apart'), +('柳', 'やなぎ', 'willow (any tree of genus Salix), weeping willow (Salix babylonica)'), +('柳に風', 'やなぎにかぜ', 'handling things without making waves, taking in one''s stride'), +('青柳', 'あおやぎ', 'green willow (i.e. one that has budded), meat of the trough shell (Mactra chinensis)'), +('化粧柳', 'けしょうやなぎ', 'chosenia (Chosenia arbutifolia) (species of willow, also Salix arbutifolia)'), +('戦く', 'おののく', 'to shake (from fear, cold, excitement, etc.), to shudder, to tremble'), +('竜', 'りゅう', 'dragon (esp. a Chinese dragon), naga, semi-divine human-cobra chimera in Hindu and Buddhist mythology, promoted rook'), +('竜巻', 'たつまき', 'tornado, waterspout'), +('伊勢海老', 'いせえび', 'spiny lobster (esp. Japanese spiny lobster, Panulirus japonicus)'), +('粒', 'つぶ', 'grain, bead, drop, counter for small round objects including grains, seeds, pills, drops'), +('粒選り', 'つぶより', 'the pick, the choice'), +('米粒', 'こめつぶ', 'grain of rice'), +('小粒', 'こつぶ', 'small grain, small stature or ability'), +('供', 'とも', 'companion, follower, attendant, retinue'), +('虜', 'とりこ', 'captive, prisoner, victim (of love, etc.), slave (to one''s lust, etc.)'), +('慮る', 'おもんばかる', 'to consider carefully, to deliberate thoroughly, to think over'), +('涼しい', 'すずしい', 'cool, refreshing, clear (e.g. eyes), bright, clear, distinct, composed (facial expression), unruffled, unconcerned, pure, upright, innocent'), +('涼しい顔', 'すずしいかお', 'nonchalant air, unruffled air'), +('涼む', 'すずむ', 'to cool oneself, to cool off, to enjoy the cool air'), +('涼やか', 'すずやか', 'refreshing, clear'), +('陵', 'みささぎ', 'imperial mausoleum, Emperor''s tomb, big hill'), +('猟犬', 'りょうけん', 'hound, hunting dog, gun dog'), +('狩人', 'かりゅうど', 'hunter'), +('狩る', 'かる', 'to hunt (animals), to search (for a criminal), to go looking for (flowers, etc.), to gather (mushrooms), to pick (berries)'), +('糧', 'かて', 'food, provisions, nourishment (mental, spiritual, etc.), sustenance (e.g. of one''s life), source of encouragement'), +('日々の糧', 'ひびのかて', 'one''s daily bread'), +('心の糧', 'こころのかて', 'food for thought'), +('涙', 'なみだ', 'tear, tears, lachrymal secretion, sympathy'), +('涙ぐましい', 'なみだぐましい', 'touching, moving, painful'), +('悔し涙', 'くやしなみだ', 'tears of regret, bitter tears, vexation, chagrin'), +('忝涙', 'かたじけなみだ', 'tears of gratitude'), +('戻す', 'もどす', 'to put back, to return, to give back, to restore (to a previous state, e.g. defrosting, reconstituting, reconciling), to turn back (e.g. clock hand), to vomit, to throw up, to recover (of a market price)'), +('戻る', 'もどる', 'to turn back (e.g. half-way), to return, to go back, to recover (e.g. something lost), to be returned, to rebound, to spring back'), +('0', 'ゼロ', 'zero, 0, nought, nil, nothing, zilch'), +('零因子', 'ぜろいんし', 'zero divisor, null factor, nil factor'), +('零す', 'こぼす', 'to spill, to drop, to shed (tears), to grumble, to complain, to let one''s feelings show'), +('零れる', 'こぼれる', 'to spill, to fall out of, to overflow, to peek through, to become visible (although normally not), to escape (of a smile, tear, etc.)'), +('隣る', 'となる', 'to neighbor (neighbour), to be adjacent to, to be next to, to border'), +('隣', 'となり', 'next (to), adjoining, adjacent, house next door, neighbouring house, next-door neighbour, next-door neighbor'), +('隣り合う', 'となりあう', 'to adjoin each other, to sit side by side'), +('先隣', 'さきとなり', 'next door but one, (a house) two doors away'), +('一軒置いて隣', 'いっけんおいてとなり', 'next door but one'), +('励む', 'はげむ', 'to strive, to endeavour, to endeavor, to make an effort, to be zealous'), +('励ます', 'はげます', 'to encourage, to cheer, to raise (the voice)'), +('鈴', 'すず', 'bell (often globular)'), +('鈴懸の木', 'すずかけのき', 'plane tree (esp. the Oriental plane, Platanus orientalis)'), +('大鈴', 'おおすず', 'large bell (at a shrine)'), +('熊鈴', 'くますず', 'bear bell'), +('砦', 'とりで', 'fort, fortress, stronghold, fortification'), +('魂', 'たましい', 'soul, spirit'), +('魂送り', 'たまおくり', 'sending off the spirits of the dead'), +('僕', 'しもべ', 'servant, manservant, menial'), +('麗しい', 'うるわしい', 'beautiful, lovely, heartwarming, beautiful'), +('麗らか', 'うららか', 'bright (weather, mood, voice, etc.), clear, fine, beautiful, glorious, splendid, cheerful'), +('齢', 'よわい', '(one''s) age'), +('齢を重ねる', 'よわいをかさねる', 'to grow old, to age'), +('暦', 'こよみ', 'calendar, almanac, koyomi'), +('暦改正', 'こよみかいせい', 'calendar reform'), +('裂く', 'さく', 'to tear, to rip up, to cut up, to cleave, to cut open (esp. the abdomen), to forcibly separate (e.g. two lovers), to spare (time, money, etc.), to use part of something, to have a tattoo in the corner of one''s eye'), +('裂ける', 'さける', 'to split, to tear, to burst, to be separated, to be divided'), +('籠', 'かご', 'basket (shopping, etc.), hamper, cage'), +('籠で水を汲む', 'かごでみずをくむ', 'to bail out the ocean with a teaspoon, to scoop water with a basket'), +('相合駕籠', 'あいあいかご', 'two people riding in a palanquin together (esp. a man and a woman)'), +('ほい駕籠', 'ほいかご', 'crude palanquin, street palanquin'), +('込める', 'こめる', 'to load (a gun, etc.), to charge, to put into (e.g. emotion, effort), to include (e.g. tax in a sales price), to hang over, to shroud, to enshroud, to envelop, to screen'), +('篭る', 'こもる', 'to shut oneself in (e.g. one''s room), to be confined in, to seclude oneself, to hide away, to stay inside (one''s shell), to be filled with (emotion, enthusiasm, etc.), to fill the room (of a gas, smell, etc.), to be heavy with (e.g. smoke), to be stuffy, to be dense, to be muffled (e.g. voice), to hold (a castle, fortress, etc.), to confine oneself in a temple to pray'), +('劣る', 'おとる', 'to be inferior to, to be less good at, to fall behind'), +('恋う', 'こう', 'to love'), +('恋', 'こい', '(romantic) love'), +('恋人', 'こいびと', 'lover, sweetheart, boyfriend, girlfriend'), +('リア恋', 'リアこい', 'being in love with an idol, actor, etc., fan who is in love with an idol, actor, etc.'), +('片恋', 'かたこい', 'unrequited love, one-sided love'), +('恋しい', 'こいしい', 'yearned for, longed for, missed'), +('麓', 'ふもと', 'foot (of a mountain or hill), bottom, base'), +('錬る', 'ねる', 'to temper (steel)'), +('激しい', 'はげしい', 'violent, furious, tempestuous, extreme, intense, fierce, strong, fervent, vehement, incessant, relentless, precipitous, steep'), +('露', 'つゆ', 'dew, tears, (not) a bit, (not) at all'), +('露知らず', 'つゆしらず', 'not knowing at all (that), without the slightest idea (that), completely unaware (that)'), +('朝露', 'あさつゆ', 'morning dew'), +('下露', 'したつゆ', 'dew under (dripping from) trees'), +('弄くる', 'いじくる', 'to finger, to tamper (with)'), +('弄する', 'ろうする', 'to play with, to joke, to use (esp. trick, sophistry, etc.), to deride, to scoff at, to make fun of'), +('弄る', 'いじる', 'to finger, to touch, to play with, to fiddle with, to toy with, to make changes to, to tinker with, to tamper with, to dabble in, to do as a hobby, to play around with, to grope, to feel around (in one''s pocket, bag, etc.)'), +('弄ぶ', 'もてあそぶ', 'to play with (a toy, one''s hair, etc.), to fiddle with, to toy with (one''s emotions, etc.), to trifle with, to do with something as one pleases, to appreciate'), +('賂', 'まいない', 'bribe'), +('漏る', 'もる', 'to leak, to run out'), +('漏れる', 'もれる', 'to leak out, to escape, to come through, to shine through, to filter out, to find expression, to give vent, to leak out, to be divulged, to be disclosed, to be omitted, to be left out, to be excluded, to be not included'), +('漏らす', 'もらす', 'to let leak, to let out (e.g. light), to let out (a secret), to leak (information), to divulge, to disclose, to let slip, to give utterance to (e.g. one''s dissatisfaction), to vent, to express, to reveal (e.g. one''s true intentions), to let out (a sigh, etc.), to wet one''s pants, to omit, to leave out, to fail to do, to miss, to omit (by mistake), to forget to do'), +('脇', 'わき', 'armpit, under one''s arm, side, flank, beside, close to, near, by, aside, to the side, away, out of the way, off-track, off-topic, deuteragonist, supporting role, second verse (in a linked series of poems)'), +('脇役', 'わきやく', 'supporting role (actor), minor role'), +('床脇', 'とこわき', 'section of a room next to the alcove (where shelves are often placed)'), +('口脇', 'くちわき', 'edges of the mouth'), +('関脇', 'せきわけ', 'wrestler of the third highest rank'), +('惑う', 'まどう', 'to get lost, to lose one''s bearings, to be puzzled, to be perplexed, to be confused, to be at a loss, to be tempted, to be seduced, to be captivated'), +('枠', 'わく', 'frame, framework, border, box, limit, restriction, quota, category, bracket, class, time slot (in a broadcasting schedule), live stream, live (online) broadcast, spool (of thread), reel'), +('枠組み', 'わくぐみ', 'frame, framework, outline'), +('型枠', 'かたわく', 'mold, mould'), +('鋼枠', 'こうわく', 'steel formwork, steel sets'), +('腕', 'うで', 'arm, skill, efforts, ability'), +('腕前', 'うでまえ', 'ability, skill, facility'), +('細腕', 'ほそうで', 'thin arm, slender arm, slender means, meager ability to earn a living'), +('太い腕', 'ふというで', 'big arm, brawny arm'), +('賄う', 'まかなう', 'to supply (goods, money, etc.), to cover (costs), to pay, to finance, to maintain (e.g. a family), to give board, to provide meals'); + +INSERT INTO Kanji_ResultKunyomiExample_XRef(exampleID, kanji) VALUES +(12367, '亜'), +(12368, '哀'), +(12369, '哀'), +(12370, '哀'), +(12371, '哀'), +(12372, '哀'), +(12373, '握'), +(12374, '嵐'), +(12375, '嵐'), +(12376, '嵐'), +(12377, '嵐'), +(12378, '依'), +(12379, '扱'), +(12380, '扱'), +(12381, '扱'), +(12382, '扱'), +(12383, '宛'), +(12384, '宛'), +(12385, '為'), +(12386, '為'), +(12387, '為'), +(12388, '為'), +(12389, '為'), +(12390, '為'), +(12391, '為'), +(12392, '為'), +(12393, '為'), +(12394, '為'), +(12395, '畏'), +(12396, '畏'), +(12397, '畏'), +(12398, '畏'), +(12399, '萎'), +(12400, '萎'), +(12401, '萎'), +(12402, '萎'), +(12403, '萎'), +(12404, '萎'), +(12405, '違'), +(12406, '違'), +(12407, '違'), +(12408, '違'), +(12409, '違'), +(12410, '違'), +(12411, '違'), +(12412, '威'), +(12413, '威'), +(12414, '威'), +(12415, '威'), +(12416, '偉'), +(12417, '偉'), +(12418, '逸'), +(12419, '逸'), +(12420, '逸'), +(12421, '咽'), +(12422, '咽'), +(12423, '咽'), +(12424, '咽'), +(12425, '緯'), +(12426, '緯'), +(12427, '芋'), +(12428, '芋'), +(12429, '芋'), +(12430, '芋'), +(12431, '淫'), +(12432, '陰'), +(12433, '陰'), +(12434, '陰'), +(12435, '陰'), +(12436, '陰'), +(12437, '慰'), +(12438, '慰'), +(12439, '怨'), +(12440, '怨'), +(12441, '怨'), +(12442, '怨'), +(12443, '宴'), +(12444, '宴'), +(12445, '鋭'), +(12446, '閲'), +(12447, '悦'), +(12448, '悦'), +(12449, '煙'), +(12450, '煙'), +(12451, '煙'), +(12452, '煙'), +(12453, '煙'), +(12454, '煙'), +(12455, '炎'), +(12456, '炎'), +(12457, '炎'), +(12458, '炎'), +(12459, '浦'), +(12460, '浦'), +(12461, '浦'), +(12462, '鬱'), +(12463, '詠'), +(12464, '詠'), +(12465, '猿'), +(12466, '猿'), +(12467, '猿'), +(12468, '猿'), +(12469, '越'), +(12470, '越'), +(12471, '縁'), +(12472, '縁'), +(12473, '縁'), +(12474, '縁'), +(12475, '縁'), +(12476, '縁'), +(12477, '縁'), +(12478, '縁'), +(12479, '縁'), +(12480, '縁'), +(12481, '隠'), +(12482, '隠'), +(12483, '隠'), +(12484, '隠'), +(12485, '隠'), +(12486, '隠'), +(12487, '影'), +(12488, '影'), +(12489, '影'), +(12490, '影'), +(12491, '唄'), +(12492, '唄'), +(12493, '唄'), +(12494, '唄'), +(12495, '唄'), +(12496, '鉛'), +(12497, '鉛'), +(12498, '鉛'), +(12499, '鉛'), +(12500, '艶'), +(12501, '艶'), +(12502, '艶'), +(12503, '艶'), +(12504, '艶'), +(12505, '艶'), +(12506, '艶'), +(12507, '凹'), +(12508, '凹'), +(12509, '凹'), +(12510, '凹'), +(12511, '畝'), +(12512, '畝'), +(12513, '畝'), +(12514, '押'), +(12515, '押'), +(12516, '押'), +(12517, '押'), +(12518, '奥'), +(12519, '奥'), +(12520, '奥'), +(12521, '奥'), +(12522, '奥'), +(12523, '殴'), +(12524, '殴'), +(12525, '汚'), +(12526, '汚'), +(12527, '汚'), +(12528, '汚'), +(12529, '汚'), +(12530, '汚'), +(12531, '汚'), +(12532, '旺'), +(12533, '翁'), +(12534, '翁'), +(12535, '乙'), +(12536, '乙'), +(12537, '虞'), +(12538, '俺'), +(12539, '俺'), +(12540, '卸'), +(12541, '卸'), +(12542, '卸'), +(12543, '卸'), +(12544, '卸'), +(12545, '卸'), +(12546, '卸'), +(12547, '卸'), +(12548, '卸'), +(12549, '穏'), +(12550, '臆'), +(12551, '架'), +(12552, '架'), +(12553, '靴'), +(12554, '靴'), +(12555, '靴'), +(12556, '靴'), +(12557, '苛'), +(12558, '苛'), +(12559, '苛'), +(12560, '蚊'), +(12561, '蚊'), +(12562, '蚊'), +(12563, '蚊'), +(12564, '雅'), +(12565, '雅'), +(12566, '渦'), +(12567, '渦'), +(12568, '渦'), +(12569, '渦'), +(12570, '餓'), +(12571, '華'), +(12572, '華'), +(12573, '華'), +(12574, '華'), +(12575, '暇'), +(12576, '暇'), +(12577, '暇'), +(12578, '暇'), +(12579, '暇'), +(12580, '牙'), +(12581, '牙'), +(12582, '禍'), +(12583, '禍'), +(12584, '稼'), +(12585, '稼'), +(12586, '嫁'), +(12587, '嫁'), +(12588, '嫁'), +(12589, '嫁'), +(12590, '嫁'), +(12591, '怪'), +(12592, '怪'), +(12593, '怪'), +(12594, '瓦'), +(12595, '瓦'), +(12596, '瓦'), +(12597, '悔'), +(12598, '悔'), +(12599, '悔'), +(12600, '戒'), +(12601, '塊'), +(12602, '塊'), +(12603, '塊'), +(12604, '塊'), +(12605, '潰'), +(12606, '潰'), +(12607, '潰'), +(12608, '壊'), +(12609, '壊'), +(12610, '皆'), +(12611, '皆'), +(12612, '皆'), +(12613, '皆'), +(12614, '皆'), +(12615, '皆'), +(12616, '皆'), +(12617, '懐'), +(12618, '懐'), +(12619, '懐'), +(12620, '懐'), +(12621, '懐'), +(12622, '懐'), +(12623, '懐'), +(12624, '懐'), +(12625, '懐'), +(12626, '懐'), +(12627, '涯'), +(12628, '柿'), +(12629, '柿'), +(12630, '柿'), +(12631, '柿'), +(12632, '岳'), +(12633, '岳'), +(12634, '岳'), +(12635, '骸'), +(12636, '獲'), +(12637, '較'), +(12638, '隔'), +(12639, '隔'), +(12640, '郭'), +(12641, '郭'), +(12642, '垣'), +(12643, '垣'), +(12644, '垣'), +(12645, '垣'), +(12646, '崖'), +(12647, '崖'), +(12648, '崖'), +(12649, '崖'), +(12650, '概'), +(12651, '嚇'), +(12652, '殻'), +(12653, '殻'), +(12654, '殻'), +(12655, '殻'), +(12656, '殻'), +(12657, '殻'), +(12658, '殻'), +(12659, '蓋'), +(12660, '蓋'), +(12661, '蓋'), +(12662, '蓋'), +(12663, '蓋'), +(12664, '蓋'), +(12665, '汗'), +(12666, '汗'), +(12667, '汗'), +(12668, '汗'), +(12669, '且'), +(12670, '且'), +(12671, '釜'), +(12672, '釜'), +(12673, '釜'), +(12674, '釜'), +(12675, '刈'), +(12676, '刈'), +(12677, '渇'), +(12678, '甘'), +(12679, '甘'), +(12680, '甘'), +(12681, '甘'), +(12682, '甘'), +(12683, '甘'), +(12684, '冠'), +(12685, '冠'), +(12686, '冠'), +(12687, '冠'), +(12688, '肝'), +(12689, '肝'), +(12690, '肝'), +(12691, '肝'), +(12692, '轄'), +(12693, '鎌'), +(12694, '鎌'), +(12695, '鎌'), +(12696, '鎌'), +(12697, '葛'), +(12698, '葛'), +(12699, '葛'), +(12700, '葛'), +(12701, '葛'), +(12702, '顎'), +(12703, '顎'), +(12704, '顎'), +(12705, '顎'), +(12706, '顎'), +(12707, '掛'), +(12708, '掛'), +(12709, '掛'), +(12710, '掛'), +(12711, '掛'), +(12712, '掛'), +(12713, '掛'), +(12714, '掛'), +(12715, '掛'), +(12716, '掛'), +(12717, '滑'), +(12718, '滑'), +(12719, '陥'), +(12720, '陥'), +(12721, '括'), +(12722, '缶'), +(12723, '乾'), +(12724, '乾'), +(12725, '乾'), +(12726, '乾'), +(12727, '貫'), +(12728, '貫'), +(12729, '貫'), +(12730, '貫'), +(12731, '貫'), +(12732, '喚'), +(12733, '換'), +(12734, '換'), +(12735, '患'), +(12736, '堪'), +(12737, '堪'), +(12738, '堪'), +(12739, '堪'), +(12740, '敢'), +(12741, '敢'), +(12742, '勧'), +(12743, '寛'), +(12744, '寛'), +(12745, '歓'), +(12746, '緩'), +(12747, '緩'), +(12748, '緩'), +(12749, '緩'), +(12750, '緩'), +(12751, '憾'), +(12752, '憾'), +(12753, '還'), +(12754, '環'), +(12755, '環'), +(12756, '環'), +(12757, '韓'), +(12758, '韓'), +(12759, '鑑'), +(12760, '鑑'), +(12761, '鑑'), +(12762, '鑑'), +(12763, '含'), +(12764, '含'), +(12765, '含'), +(12766, '玩'), +(12767, '企'), +(12768, '企'), +(12769, '忌'), +(12770, '忌'), +(12771, '忌'), +(12772, '忌'), +(12773, '忌'), +(12774, '忌'), +(12775, '忌'), +(12776, '奇'), +(12777, '奇'), +(12778, '奇'), +(12779, '伎'), +(12780, '頑'), +(12781, '祈'), +(12782, '棄'), +(12783, '飢'), +(12784, '棋'), +(12785, '毀'), +(12786, '毀'), +(12787, '毀'), +(12788, '毀'), +(12789, '輝'), +(12790, '輝'), +(12791, '擬'), +(12792, '擬'), +(12793, '擬'), +(12794, '擬'), +(12795, '擬'), +(12796, '戯'), +(12797, '戯'), +(12798, '戯'), +(12799, '欺'), +(12800, '鬼'), +(12801, '鬼'), +(12802, '鬼'), +(12803, '鬼'), +(12804, '幾'), +(12805, '幾'), +(12806, '幾'), +(12807, '幾'), +(12808, '宜'), +(12809, '宜'), +(12810, '宜'), +(12811, '既'), +(12812, '既'), +(12813, '亀'), +(12814, '亀'), +(12815, '亀'), +(12816, '亀'), +(12817, '偽'), +(12818, '偽'), +(12819, '偽'), +(12820, '偽'), +(12821, '偽'), +(12822, '虐'), +(12823, '喫'), +(12824, '丘'), +(12825, '丘'), +(12826, '丘'), +(12827, '窮'), +(12828, '窮'), +(12829, '窮'), +(12830, '窮'), +(12831, '窮'), +(12832, '窮'), +(12833, '脚'), +(12834, '脚'), +(12835, '脚'), +(12836, '脚'), +(12837, '却'), +(12838, '却'), +(12839, '朽'), +(12840, '糾'), +(12841, '吉'), +(12842, '吉'), +(12843, '吉'), +(12844, '吉'), +(12845, '虚'), +(12846, '虚'), +(12847, '虚'), +(12848, '詰'), +(12849, '詰'), +(12850, '詰'), +(12851, '詰'), +(12852, '詰'), +(12853, '詰'), +(12854, '詰'), +(12855, '嗅'), +(12856, '距'), +(12857, '距'), +(12858, '犠'), +(12859, '拒'), +(12860, '臼'), +(12861, '臼'), +(12862, '臼'), +(12863, '臼'), +(12864, '臼'), +(12865, '及'), +(12866, '及'), +(12867, '及'), +(12868, '及'), +(12869, '及'), +(12870, '及'), +(12871, '叫'), +(12872, '拠'), +(12873, '況'), +(12874, '況'), +(12875, '況'), +(12876, '享'), +(12877, '恐'), +(12878, '恐'), +(12879, '恐'), +(12880, '恐'), +(12881, '恐'), +(12882, '恐'), +(12883, '恐'), +(12884, '恐'), +(12885, '狭'), +(12886, '狭'), +(12887, '狭'), +(12888, '狭'), +(12889, '狭'), +(12890, '狭'), +(12891, '挟'), +(12892, '挟'), +(12893, '挟'), +(12894, '狂'), +(12895, '狂'), +(12896, '狂'), +(12897, '脅'), +(12898, '脅'), +(12899, '脅'), +(12900, '矯'), +(12901, '驚'), +(12902, '驚'), +(12903, '驚'), +(12904, '響'), +(12905, '恭'), +(12906, '暁'), +(12907, '暁'), +(12908, '仰'), +(12909, '仰'), +(12910, '仰'), +(12911, '仰'), +(12912, '仰'), +(12913, '仰'), +(12914, '仰'), +(12915, '凝'), +(12916, '凝'), +(12917, '凝'), +(12918, '凝'), +(12919, '凝'), +(12920, '琴'), +(12921, '琴'), +(12922, '琴'), +(12923, '琴'), +(12924, '僅'), +(12925, '僅'), +(12926, '緊'), +(12927, '緊'), +(12928, '掘'), +(12929, '繰'), +(12930, '串'), +(12931, '串'), +(12932, '串'), +(12933, '串'), +(12934, '勲'), +(12935, '窟'), +(12936, '駆'), +(12937, '駆'), +(12938, '駆'), +(12939, '偶'), +(12940, '偶'), +(12941, '襟'), +(12942, '襟'), +(12943, '襟'), +(12944, '襟'), +(12945, '謹'), +(12946, '隅'), +(12947, '隅'), +(12948, '隅'), +(12949, '隅'), +(12950, '薫'), +(12951, '茎'), +(12952, '茎'), +(12953, '茎'), +(12954, '茎'), +(12955, '遇'), +(12956, '惧'), +(12957, '屈'), +(12958, '屈'), +(12959, '契'), +(12960, '愚'), +(12961, '愚'), +(12962, '恵'), +(12963, '恵'), +(12964, '恵'), +(12965, '恵'), +(12966, '啓'), +(12967, '錦'), +(12968, '錦'), +(12969, '錦'), +(12970, '錦'), +(12971, '蛍'), +(12972, '蛍'), +(12973, '蛍'), +(12974, '渓'), +(12975, '傾'), +(12976, '傾'), +(12977, '傾'), +(12978, '傾'), +(12979, '傾'), +(12980, '継'), +(12981, '掲'), +(12982, '慶'), +(12983, '慶'), +(12984, '携'), +(12985, '携'), +(12986, '稽'), +(12987, '憬'), +(12988, '詣'), +(12989, '詣'), +(12990, '献'), +(12991, '鶏'), +(12992, '鶏'), +(12993, '鶏'), +(12994, '鶏'), +(12995, '鶏'), +(12996, '鶏'), +(12997, '軒'), +(12998, '軒'), +(12999, '軒'), +(13000, '遣'), +(13001, '遣'), +(13002, '遣'), +(13003, '遣'), +(13004, '嫌'), +(13005, '嫌'), +(13006, '嫌'), +(13007, '嫌'), +(13008, '嫌'), +(13009, '堅'), +(13010, '堅'), +(13011, '傑'), +(13012, '賢'), +(13013, '兼'), +(13014, '肩'), +(13015, '肩'), +(13016, '肩'), +(13017, '肩'), +(13018, '撃'), +(13019, '鯨'), +(13020, '鯨'), +(13021, '鯨'), +(13022, '鯨'), +(13023, '憩'), +(13024, '憩'), +(13025, '憩'), +(13026, '剣'), +(13027, '剣'), +(13028, '剣'), +(13029, '剣'), +(13030, '拳'), +(13031, '拳'), +(13032, '拳'), +(13033, '倹'), +(13034, '隙'), +(13035, '隙'), +(13036, '隙'), +(13037, '隙'), +(13038, '迎'), +(13039, '鍵'), +(13040, '鍵'), +(13041, '鍵'), +(13042, '鍵'), +(13043, '繭'), +(13044, '繭'), +(13045, '繭'), +(13046, '繭'), +(13047, '繭'), +(13048, '幻'), +(13049, '幻'), +(13050, '幻'), +(13051, '桁'), +(13052, '桁'), +(13053, '桁'), +(13054, '桁'), +(13055, '謙'), +(13056, '顕'), +(13057, '顕'), +(13058, '懸'), +(13059, '懸'), +(13060, '玄'), +(13061, '玄'), +(13062, '鼓'), +(13063, '鼓'), +(13064, '鼓'), +(13065, '互'), +(13066, '互'), +(13067, '互'), +(13068, '舷'), +(13069, '舷'), +(13070, '悟'), +(13071, '股'), +(13072, '股'), +(13073, '股'), +(13074, '股'), +(13075, '股'), +(13076, '股'), +(13077, '股'), +(13078, '股'), +(13079, '顧'), +(13080, '枯'), +(13081, '枯'), +(13082, '誇'), +(13083, '虎'), +(13084, '虎'), +(13085, '虎'), +(13086, '虎'), +(13087, '弦'), +(13088, '弦'), +(13089, '呉'), +(13090, '呉'), +(13091, '呉'), +(13092, '呉'), +(13093, '貢'), +(13094, '拘'), +(13095, '控'), +(13096, '控'), +(13097, '控'), +(13098, '控'), +(13099, '巧'), +(13100, '巧'), +(13101, '巧'), +(13102, '攻'), +(13103, '肯'), +(13104, '喉'), +(13105, '喉'), +(13106, '荒'), +(13107, '荒'), +(13108, '荒'), +(13109, '荒'), +(13110, '荒'), +(13111, '荒'), +(13112, '荒'), +(13113, '荒'), +(13114, '荒'), +(13115, '荒'), +(13116, '甲'), +(13117, '甲'), +(13118, '恒'), +(13119, '抗'), +(13120, '更'), +(13121, '更'), +(13122, '更'), +(13123, '更'), +(13124, '更'), +(13125, '更'), +(13126, '更'), +(13127, '更'), +(13128, '江'), +(13129, '江'), +(13130, '江'), +(13131, '江'), +(13132, '孔'), +(13133, '孔'), +(13134, '孔'), +(13135, '雇'), +(13136, '慌'), +(13137, '慌'), +(13138, '慌'), +(13139, '絞'), +(13140, '絞'), +(13141, '絞'), +(13142, '項'), +(13143, '溝'), +(13144, '溝'), +(13145, '溝'), +(13146, '溝'), +(13147, '硬'), +(13148, '硬'), +(13149, '綱'), +(13150, '綱'), +(13151, '綱'), +(13152, '綱'), +(13153, '傲'), +(13154, '乞'), +(13155, '乞'), +(13156, '克'), +(13157, '込'), +(13158, '込'), +(13159, '込'), +(13160, '込'), +(13161, '込'), +(13162, '込'), +(13163, '豪'), +(13164, '駒'), +(13165, '駒'), +(13166, '駒'), +(13167, '駒'), +(13168, '酷'), +(13169, '酷'), +(13170, '頃'), +(13171, '頃'), +(13172, '頃'), +(13173, '頃'), +(13174, '頃'), +(13175, '頃'), +(13176, '頃'), +(13177, '痕'), +(13178, '痕'), +(13179, '痕'), +(13180, '魂'), +(13181, '魂'), +(13182, '魂'), +(13183, '魂'), +(13184, '魂'), +(13185, '魂'), +(13186, '魂'), +(13187, '墾'), +(13188, '恨'), +(13189, '恨'), +(13190, '恨'), +(13191, '懇'), +(13192, '懇'), +(13193, '唆'), +(13194, '唆'), +(13195, '沙'), +(13196, '沙'), +(13197, '沙'), +(13198, '挫'), +(13199, '挫'), +(13200, '鎖'), +(13201, '鎖'), +(13202, '鎖'), +(13203, '鎖'), +(13204, '鎖'), +(13205, '砕'), +(13206, '砕'), +(13207, '詐'), +(13208, '彩'), +(13209, '斎'), +(13210, '斎'), +(13211, '斎'), +(13212, '斎'), +(13213, '催'), +(13214, '塞'), +(13215, '歳'), +(13216, '歳'), +(13217, '歳'), +(13218, '歳'), +(13219, '歳'), +(13220, '歳'), +(13221, '載'), +(13222, '載'), +(13223, '柵'), +(13224, '酢'), +(13225, '酢'), +(13226, '酢'), +(13227, '酢'), +(13228, '搾'), +(13229, '削'), +(13230, '削'), +(13231, '削'), +(13232, '恣'), +(13233, '恣'), +(13234, '惨'), +(13235, '惨'), +(13236, '撮'), +(13237, '撮'), +(13238, '擦'), +(13239, '擦'), +(13240, '擦'), +(13241, '擦'), +(13242, '桟'), +(13243, '脂'), +(13244, '脂'), +(13245, '脂'), +(13246, '刺'), +(13247, '刺'), +(13248, '刺'), +(13249, '刺'), +(13250, '刺'), +(13251, '刺'), +(13252, '刺'), +(13253, '刺'), +(13254, '刺'), +(13255, '刺'), +(13256, '刺'), +(13257, '刺'), +(13258, '刺'), +(13259, '刺'), +(13260, '旨'), +(13261, '旨'), +(13262, '旨'), +(13263, '旨'), +(13264, '旨'), +(13265, '旨'), +(13266, '咲'), +(13267, '暫'), +(13268, '暫'), +(13269, '傘'), +(13270, '傘'), +(13271, '傘'), +(13272, '傘'), +(13273, '紫'), +(13274, '紫'), +(13275, '紫'), +(13276, '紫'), +(13277, '伺'), +(13278, '施'), +(13279, '斬'), +(13280, '雌'), +(13281, '雌'), +(13282, '雌'), +(13283, '雌'), +(13284, '嫉'), +(13285, '嫉'), +(13286, '賜'), +(13287, '賜'), +(13288, '賜'), +(13289, '賜'), +(13290, '賜'), +(13291, '疾'), +(13292, '餌'), +(13293, '餌'), +(13294, '餌'), +(13295, '餌'), +(13296, '餌'), +(13297, '餌'), +(13298, '餌'), +(13299, '餌'), +(13300, '執'), +(13301, '侍'), +(13302, '侍'), +(13303, '侍'), +(13304, '侍'), +(13305, '慈'), +(13306, '芝'), +(13307, '芝'), +(13308, '芝'), +(13309, '芝'), +(13310, '漆'), +(13311, '漆'), +(13312, '漆'), +(13313, '漆'), +(13314, '諮'), +(13315, '湿'), +(13316, '湿'), +(13317, '斜'), +(13318, '斜'), +(13319, '斜'), +(13320, '斜'), +(13321, '邪'), +(13322, '邪'), +(13323, '煮'), +(13324, '煮'), +(13325, '煮'), +(13326, '煮'), +(13327, '蛇'), +(13328, '蛇'), +(13329, '蛇'), +(13330, '蛇'), +(13331, '酌'), +(13332, '朱'), +(13333, '朱'), +(13334, '狩'), +(13335, '狩'), +(13336, '狩'), +(13337, '狩'), +(13338, '殊'), +(13339, '殊'), +(13340, '遮'), +(13341, '腫'), +(13342, '腫'), +(13343, '腫'), +(13344, '腫'), +(13345, '腫'), +(13346, '腫'), +(13347, '寂'), +(13348, '寂'), +(13349, '寂'), +(13350, '寂'), +(13351, '寂'), +(13352, '寂'), +(13353, '寂'), +(13354, '呪'), +(13355, '呪'), +(13356, '呪'), +(13357, '呪'), +(13358, '呪'), +(13359, '寿'), +(13360, '寿'), +(13361, '寿'), +(13362, '寿'), +(13363, '寿'), +(13364, '趣'), +(13365, '趣'), +(13366, '趣'), +(13367, '囚'), +(13368, '舟'), +(13369, '舟'), +(13370, '舟'), +(13371, '舟'), +(13372, '珠'), +(13373, '珠'), +(13374, '珠'), +(13375, '臭'), +(13376, '臭'), +(13377, '臭'), +(13378, '臭'), +(13379, '臭'), +(13380, '秀'), +(13381, '羞'), +(13382, '羞'), +(13383, '愁'), +(13384, '愁'), +(13385, '愁'), +(13386, '酬'), +(13387, '袖'), +(13388, '袖'), +(13389, '袖'), +(13390, '袖'), +(13391, '醜'), +(13392, '醜'), +(13393, '醜'), +(13394, '醜'), +(13395, '蹴'), +(13396, '襲'), +(13397, '襲'), +(13398, '襲'), +(13399, '充'), +(13400, '充'), +(13401, '渋'), +(13402, '渋'), +(13403, '渋'), +(13404, '渋'), +(13405, '渋'), +(13406, '渋'), +(13407, '渋'), +(13408, '汁'), +(13409, '汁'), +(13410, '汁'), +(13411, '汁'), +(13412, '汁'), +(13413, '汁'), +(13414, '汁'), +(13415, '汁'), +(13416, '獣'), +(13417, '獣'), +(13418, '獣'), +(13419, '銃'), +(13420, '柔'), +(13421, '柔'), +(13422, '柔'), +(13423, '柔'), +(13424, '柔'), +(13425, '柔'), +(13426, '柔'), +(13427, '柔'), +(13428, '淑'), +(13429, '升'), +(13430, '升'), +(13431, '潤'), +(13432, '潤'), +(13433, '潤'), +(13434, '徐'), +(13435, '緒'), +(13436, '緒'), +(13437, '緒'), +(13438, '緒'), +(13439, '緒'), +(13440, '緒'), +(13441, '召'), +(13442, '盾'), +(13443, '盾'), +(13444, '盾'), +(13445, '盾'), +(13446, '床'), +(13447, '床'), +(13448, '床'), +(13449, '床'), +(13450, '床'), +(13451, '床'), +(13452, '床'), +(13453, '床'), +(13454, '巡'), +(13455, '巡'), +(13456, '巡'), +(13457, '瞬'), +(13458, '瞬'), +(13459, '瞬'), +(13460, '匠'), +(13461, '匠'), +(13462, '肖'), +(13463, '如'), +(13464, '昇'), +(13465, '宵'), +(13466, '宵'), +(13467, '宵'), +(13468, '宵'), +(13469, '尚'), +(13470, '尚'), +(13471, '尚'), +(13472, '尚'), +(13473, '沼'), +(13474, '沼'), +(13475, '渉'), +(13476, '称'), +(13477, '称'), +(13478, '称'), +(13479, '掌'), +(13480, '掌'), +(13481, '掌'), +(13482, '掌'), +(13483, '焦'), +(13484, '焦'), +(13485, '焦'), +(13486, '焦'), +(13487, '焦'), +(13488, '焦'), +(13489, '奨'), +(13490, '詳'), +(13491, '詳'), +(13492, '詳'), +(13493, '衝'), +(13494, '衝'), +(13495, '詔'), +(13496, '償'), +(13497, '剰'), +(13498, '憧'), +(13499, '丈'), +(13500, '丈'), +(13501, '丈'), +(13502, '丈'), +(13503, '丈'), +(13504, '丈'), +(13505, '丈'), +(13506, '丈'), +(13507, '浄'), +(13508, '浄'), +(13509, '畳'), +(13510, '畳'), +(13511, '畳'), +(13512, '畳'), +(13513, '醸'), +(13514, '鐘'), +(13515, '鐘'), +(13516, '鐘'), +(13517, '鐘'), +(13518, '拭'), +(13519, '拭'), +(13520, '嬢'), +(13521, '嬢'), +(13522, '殖'), +(13523, '殖'), +(13524, '嘱'), +(13525, '飾'), +(13526, '飾'), +(13527, '飾'), +(13528, '飾'), +(13529, '飾'), +(13530, '辱'), +(13531, '触'), +(13532, '触'), +(13533, '触'), +(13534, '触'), +(13535, '伸'), +(13536, '伸'), +(13537, '伸'), +(13538, '伸'), +(13539, '侵'), +(13540, '辛'), +(13541, '辛'), +(13542, '辛'), +(13543, '辛'), +(13544, '辛'), +(13545, '辛'), +(13546, '唇'), +(13547, '唇'), +(13548, '唇'), +(13549, '唇'), +(13550, '津'), +(13551, '津'), +(13552, '津'), +(13553, '津'), +(13554, '尻'), +(13555, '尻'), +(13556, '尻'), +(13557, '尻'), +(13558, '振'), +(13559, '振'), +(13560, '振'), +(13561, '振'), +(13562, '浸'), +(13563, '浸'), +(13564, '浸'), +(13565, '譲'), +(13566, '炊'), +(13567, '酔'), +(13568, '酔'), +(13569, '酔'), +(13570, '酔'), +(13571, '酔'), +(13572, '酔'), +(13573, '寝'), +(13574, '寝'), +(13575, '寝'), +(13576, '吹'), +(13577, '刃'), +(13578, '刃'), +(13579, '刃'), +(13580, '刃'), +(13581, '刃'), +(13582, '刃'), +(13583, '刃'), +(13584, '須'), +(13585, '粋'), +(13586, '粋'), +(13587, '粋'), +(13588, '遂'), +(13589, '遂'), +(13590, '衰'), +(13591, '尋'), +(13592, '尋'), +(13593, '尋'), +(13594, '薪'), +(13595, '薪'), +(13596, '薪'), +(13597, '薪'), +(13598, '甚'), +(13599, '甚'), +(13600, '甚'), +(13601, '尽'), +(13602, '尽'), +(13603, '尽'), +(13604, '尽'), +(13605, '震'), +(13606, '震'), +(13607, '震'), +(13608, '震'), +(13609, '睡'), +(13610, '睡'), +(13611, '穂'), +(13612, '穂'), +(13613, '穂'), +(13614, '穂'), +(13615, '慎'), +(13616, '慎'), +(13617, '慎'), +(13618, '慎'), +(13619, '慎'), +(13620, '慎'), +(13621, '診'), +(13622, '崇'), +(13623, '随'), +(13624, '随'), +(13625, '審'), +(13626, '裾'), +(13627, '裾'), +(13628, '裾'), +(13629, '裾'), +(13630, '杉'), +(13631, '杉'), +(13632, '杉'), +(13633, '杉'), +(13634, '据'), +(13635, '据'), +(13636, '瀬'), +(13637, '瀬'), +(13638, '瀬'), +(13639, '瀬'), +(13640, '是'), +(13641, '是'), +(13642, '是'), +(13643, '是'), +(13644, '凄'), +(13645, '凄'), +(13646, '凄'), +(13647, '斉'), +(13648, '斉'), +(13649, '逝'), +(13650, '逝'), +(13651, '婿'), +(13652, '婿'), +(13653, '婿'), +(13654, '婿'), +(13655, '請'), +(13656, '請'), +(13657, '請'), +(13658, '枢'), +(13659, '醒'), +(13660, '醒'), +(13661, '斥'), +(13662, '脊'), +(13663, '脊'), +(13664, '脊'), +(13665, '跡'), +(13666, '跡'), +(13667, '跡'), +(13668, '跡'), +(13669, '惜'), +(13670, '惜'), +(13671, '惜'), +(13672, '誓'), +(13673, '窃'), +(13674, '摂'), +(13675, '扇'), +(13676, '扇'), +(13677, '扇'), +(13678, '扇'), +(13679, '拙'), +(13680, '占'), +(13681, '占'), +(13682, '羨'), +(13683, '煎'), +(13684, '煎'), +(13685, '遷'), +(13686, '遷'), +(13687, '詮'), +(13688, '詮'), +(13689, '阻'), +(13690, '疎'), +(13691, '疎'), +(13692, '疎'), +(13693, '漸'), +(13694, '漸'), +(13695, '漸'), +(13696, '粗'), +(13697, '繕'), +(13698, '狙'), +(13699, '狙'), +(13700, '狙'), +(13701, '践'), +(13702, '薦'), +(13703, '措'), +(13704, '鮮'), +(13705, '潜'), +(13706, '潜'), +(13707, '潜'), +(13708, '潜'), +(13709, '遡'), +(13710, '掃'), +(13711, '爽'), +(13712, '桑'), +(13713, '桑'), +(13714, '挿'), +(13715, '挿'), +(13716, '遭'), +(13717, '遭'), +(13718, '壮'), +(13719, '訴'), +(13720, '捜'), +(13721, '葬'), +(13722, '礎'), +(13723, '礎'), +(13724, '喪'), +(13725, '喪'), +(13726, '喪'), +(13727, '双'), +(13728, '双'), +(13729, '双'), +(13730, '痩'), +(13731, '槽'), +(13732, '燥'), +(13733, '促'), +(13734, '贈'), +(13735, '遜'), +(13736, '憎'), +(13737, '憎'), +(13738, '憎'), +(13739, '憎'), +(13740, '憎'), +(13741, '耐'), +(13742, '騒'), +(13743, '騒'), +(13744, '霜'), +(13745, '霜'), +(13746, '霜'), +(13747, '霜'), +(13748, '捉'), +(13749, '怠'), +(13750, '怠'), +(13751, '藻'), +(13752, '藻'), +(13753, '藻'), +(13754, '藻'), +(13755, '堕'), +(13756, '即'), +(13757, '即'), +(13758, '即'), +(13759, '堆'), +(13760, '袋'), +(13761, '袋'), +(13762, '袋'), +(13763, '替'), +(13764, '替'), +(13765, '唾'), +(13766, '唾'), +(13767, '唾'), +(13768, '唾'), +(13769, '唾'), +(13770, '滞'), +(13771, '択'), +(13772, '滝'), +(13773, '滝'), +(13774, '滝'), +(13775, '滝'), +(13776, '戴'), +(13777, '戴'), +(13778, '胆'), +(13779, '胆'), +(13780, '託'), +(13781, '託'), +(13782, '託'), +(13783, '託'), +(13784, '綻'), +(13785, '誰'), +(13786, '誰'), +(13787, '誰'), +(13788, '誰'), +(13789, '誰'), +(13790, '誰'), +(13791, '誰'), +(13792, '誰'), +(13793, '拓'), +(13794, '濯'), +(13795, '濯'), +(13796, '脱'), +(13797, '脱'), +(13798, '嘆'), +(13799, '嘆'), +(13800, '沢'), +(13801, '沢'), +(13802, '端'), +(13803, '端'), +(13804, '端'), +(13805, '端'), +(13806, '端'), +(13807, '端'), +(13808, '端'), +(13809, '端'), +(13810, '端'), +(13811, '端'), +(13812, '端'), +(13813, '端'), +(13814, '端'), +(13815, '端'), +(13816, '棚'), +(13817, '棚'), +(13818, '弾'), +(13819, '弾'), +(13820, '弾'), +(13821, '弾'), +(13822, '弾'), +(13823, '弾'), +(13824, '弾'), +(13825, '奪'), +(13826, '恥'), +(13827, '恥'), +(13828, '恥'), +(13829, '恥'), +(13830, '恥'), +(13831, '恥'), +(13832, '恥'), +(13833, '丹'), +(13834, '丹'), +(13835, '丹'), +(13836, '丹'), +(13837, '鍛'), +(13838, '但'), +(13839, '但'), +(13840, '稚'), +(13841, '稚'), +(13842, '淡'), +(13843, '遅'), +(13844, '遅'), +(13845, '遅'), +(13846, '致'), +(13847, '濁'), +(13848, '濁'), +(13849, '蓄'), +(13850, '眺'), +(13851, '弔'), +(13852, '弔'), +(13853, '聴'), +(13854, '聴'), +(13855, '挑'), +(13856, '跳'), +(13857, '跳'), +(13858, '鋳'), +(13859, '勅'), +(13860, '澄'), +(13861, '澄'), +(13862, '彫'), +(13863, '徴'), +(13864, '嘲'), +(13865, '釣'), +(13866, '釣'), +(13867, '釣'), +(13868, '釣'), +(13869, '釣'), +(13870, '釣'), +(13871, '沈'), +(13872, '沈'), +(13873, '沈'), +(13874, '貼'), +(13875, '懲'), +(13876, '懲'), +(13877, '懲'), +(13878, '超'), +(13879, '超'), +(13880, '鎮'), +(13881, '鎮'), +(13882, '珍'), +(13883, '塚'), +(13884, '塚'), +(13885, '塚'), +(13886, '墜'), +(13887, '墜'), +(13888, '坪'), +(13889, '坪'), +(13890, '坪'), +(13891, '坪'), +(13892, '捗'), +(13893, '爪'), +(13894, '爪'), +(13895, '爪'), +(13896, '爪'), +(13897, '漬'), +(13898, '漬'), +(13899, '陳'), +(13900, '鶴'), +(13901, '鶴'), +(13902, '鶴'), +(13903, '鶴'), +(13904, '邸'), +(13905, '貞'), +(13906, '帝'), +(13907, '帝'), +(13908, '帝'), +(13909, '堤'), +(13910, '堤'), +(13911, '訂'), +(13912, '諦'), +(13913, '締'), +(13914, '締'), +(13915, '締'), +(13916, '締'), +(13917, '摘'), +(13918, '溺'), +(13919, '溺'), +(13920, '滴'), +(13921, '滴'), +(13922, '唐'), +(13923, '唐'), +(13924, '添'), +(13925, '添'), +(13926, '添'), +(13927, '怒'), +(13928, '怒'), +(13929, '凍'), +(13930, '凍'), +(13931, '凍'), +(13932, '凍'), +(13933, '倒'), +(13934, '倒'), +(13935, '倒'), +(13936, '倒'), +(13937, '倒'), +(13938, '倒'), +(13939, '倒'), +(13940, '桃'), +(13941, '桃'), +(13942, '桃'), +(13943, '桃'), +(13944, '途'), +(13945, '途'), +(13946, '渡'), +(13947, '渡'), +(13948, '渡'), +(13949, '透'), +(13950, '透'), +(13951, '透'), +(13952, '透'), +(13953, '透'), +(13954, '陶'), +(13955, '陶'), +(13956, '到'), +(13957, '到'), +(13958, '妬'), +(13959, '妬'), +(13960, '盗'), +(13961, '盗'), +(13962, '盗'), +(13963, '塡'), +(13964, '奴'), +(13965, '奴'), +(13966, '奴'), +(13967, '奴'), +(13968, '奴'), +(13969, '奴'), +(13970, '奴'), +(13971, '奴'), +(13972, '吐'), +(13973, '吐'), +(13974, '逃'), +(13975, '逃'), +(13976, '逃'), +(13977, '逃'), +(13978, '逃'), +(13979, '塗'), +(13980, '塗'), +(13981, '塗'), +(13982, '塗'), +(13983, '塗'), +(13984, '塗'), +(13985, '泥'), +(13986, '泥'), +(13987, '泥'), +(13988, '泥'), +(13989, '泥'), +(13990, '殿'), +(13991, '殿'), +(13992, '殿'), +(13993, '殿'), +(13994, '賭'), +(13995, '賭'), +(13996, '賭'), +(13997, '悼'), +(13998, '踏'), +(13999, '踏'), +(14000, '棟'), +(14001, '棟'), +(14002, '棟'), +(14003, '棟'), +(14004, '筒'), +(14005, '筒'), +(14006, '筒'), +(14007, '筒'), +(14008, '稲'), +(14009, '稲'), +(14010, '稲'), +(14011, '稲'), +(14012, '篤'), +(14013, '曇'), +(14014, '丼'), +(14015, '丼'), +(14016, '丼'), +(14017, '丼'), +(14018, '謎'), +(14019, '謎'), +(14020, '豚'), +(14021, '豚'), +(14022, '豚'), +(14023, '豚'), +(14024, '突'), +(14025, '突'), +(14026, '突'), +(14027, '突'), +(14028, '匿'), +(14029, '頓'), +(14030, '頓'), +(14031, '屯'), +(14032, '屯'), +(14033, '鈍'), +(14034, '鈍'), +(14035, '鈍'), +(14036, '鈍'), +(14037, '鈍'), +(14038, '藤'), +(14039, '藤'), +(14040, '藤'), +(14041, '藤'), +(14042, '峠'), +(14043, '峠'), +(14044, '峠'), +(14045, '貪'), +(14046, '鍋'), +(14047, '鍋'), +(14048, '鍋'), +(14049, '鍋'), +(14050, '凸'), +(14051, '凸'), +(14052, '瞳'), +(14053, '瞳'), +(14054, '尼'), +(14055, '尼'), +(14056, '弐'), +(14057, '闘'), +(14058, '虹'), +(14059, '虹'), +(14060, '虹'), +(14061, '虹'), +(14062, '軟'), +(14063, '軟'), +(14064, '軟'), +(14065, '軟'), +(14066, '洞'), +(14067, '洞'), +(14068, '尿'), +(14069, '尿'), +(14070, '尿'), +(14071, '尿'), +(14072, '尿'), +(14073, '妊'), +(14074, '妊'), +(14075, '匂'), +(14076, '匂'), +(14077, '匂'), +(14078, '匂'), +(14079, '忍'), +(14080, '忍'), +(14081, '忍'), +(14082, '忍'), +(14083, '忍'), +(14084, '寧'), +(14085, '粘'), +(14086, '濃'), +(14087, '濃'), +(14088, '捻'), +(14089, '捻'), +(14090, '捻'), +(14091, '捻'), +(14092, '悩'), +(14093, '悩'), +(14094, '悩'), +(14095, '悩'), +(14096, '悩'), +(14097, '縛'), +(14098, '婆'), +(14099, '婆'), +(14100, '婆'), +(14101, '婆'), +(14102, '婆'), +(14103, '婆'), +(14104, '婆'), +(14105, '婆'), +(14106, '廃'), +(14107, '廃'), +(14108, '培'), +(14109, '薄'), +(14110, '薄'), +(14111, '薄'), +(14112, '薄'), +(14113, '薄'), +(14114, '薄'), +(14115, '薄'), +(14116, '薄'), +(14117, '輩'), +(14118, '輩'), +(14119, '輩'), +(14120, '迫'), +(14121, '剝'), +(14122, '剝'), +(14123, '剝'), +(14124, '剝'), +(14125, '媒'), +(14126, '泊'), +(14127, '泊'), +(14128, '杯'), +(14129, '杯'), +(14130, '杯'), +(14131, '杯'), +(14132, '罵'), +(14133, '爆'), +(14134, '箸'), +(14135, '箸'), +(14136, '箸'), +(14137, '髪'), +(14138, '髪'), +(14139, '髪'), +(14140, '髪'), +(14141, '抜'), +(14142, '抜'), +(14143, '抜'), +(14144, '抜'), +(14145, '抜'), +(14146, '抜'), +(14147, '抜'), +(14148, '抜'), +(14149, '抜'), +(14150, '抜'), +(14151, '伐'), +(14152, '伐'), +(14153, '肌'), +(14154, '肌'), +(14155, '肌'), +(14156, '肌'), +(14157, '罰'), +(14158, '帆'), +(14159, '帆'), +(14160, '帆'), +(14161, '帆'), +(14162, '畔'), +(14163, '畔'), +(14164, '畔'), +(14165, '畔'), +(14166, '伴'), +(14167, '斑'), +(14168, '斑'), +(14169, '斑'), +(14170, '斑'), +(14171, '斑'), +(14172, '斑'), +(14173, '斑'), +(14174, '斑'), +(14175, '煩'), +(14176, '煩'), +(14177, '煩'), +(14178, '煩'), +(14179, '妃'), +(14180, '繁'), +(14181, '繁'), +(14182, '疲'), +(14183, '疲'), +(14184, '卑'), +(14185, '卑'), +(14186, '卑'), +(14187, '卑'), +(14188, '卑'), +(14189, '彼'), +(14190, '彼'), +(14191, '彼'), +(14192, '彼'), +(14193, '彼'), +(14194, '彼'), +(14195, '彼'), +(14196, '彼'), +(14197, '被'), +(14198, '被'), +(14199, '被'), +(14200, '被'), +(14201, '扉'), +(14202, '扉'), +(14203, '扉'), +(14204, '扉'), +(14205, '碑'), +(14206, '罷'), +(14207, '避'), +(14208, '避'), +(14209, '尾'), +(14210, '尾'), +(14211, '尾'), +(14212, '尾'), +(14213, '扶'), +(14214, '眉'), +(14215, '眉'), +(14216, '眉'), +(14217, '眉'), +(14218, '肘'), +(14219, '肘'), +(14220, '肘'), +(14221, '肘'), +(14222, '姫'), +(14223, '姫'), +(14224, '姫'), +(14225, '姫'), +(14226, '描'), +(14227, '描'), +(14228, '漂'), +(14229, '怖'), +(14230, '怖'), +(14231, '怖'), +(14232, '怖'), +(14233, '怖'), +(14234, '浜'), +(14235, '浜'), +(14236, '浜'), +(14237, '浜'), +(14238, '匹'), +(14239, '瓶'), +(14240, '瓶'), +(14241, '瓶'), +(14242, '瓶'), +(14243, '瓶'), +(14244, '瓶'), +(14245, '附'), +(14246, '苗'), +(14247, '苗'), +(14248, '苗'), +(14249, '苗'), +(14250, '猫'), +(14251, '猫'), +(14252, '猫'), +(14253, '猫'), +(14254, '頻'), +(14255, '赴'), +(14256, '微'), +(14257, '浮'), +(14258, '浮'), +(14259, '浮'), +(14260, '浮'), +(14261, '浮'), +(14262, '敏'), +(14263, '膝'), +(14264, '膝'), +(14265, '膝'), +(14266, '膝'), +(14267, '腐'), +(14268, '腐'), +(14269, '腐'), +(14270, '腐'), +(14271, '腐'), +(14272, '腐'), +(14273, '腐'), +(14274, '膚'), +(14275, '膚'), +(14276, '膚'), +(14277, '膚'), +(14278, '敷'), +(14279, '舞'), +(14280, '舞'), +(14281, '舞'), +(14282, '舞'), +(14283, '舞'), +(14284, '伏'), +(14285, '伏'), +(14286, '沸'), +(14287, '沸'), +(14288, '噴'), +(14289, '憤'), +(14290, '柄'), +(14291, '柄'), +(14292, '柄'), +(14293, '柄'), +(14294, '柄'), +(14295, '柄'), +(14296, '柄'), +(14297, '柄'), +(14298, '柄'), +(14299, '柄'), +(14300, '併'), +(14301, '払'), +(14302, '幅'), +(14303, '幅'), +(14304, '幅'), +(14305, '幅'), +(14306, '普'), +(14307, '紛'), +(14308, '紛'), +(14309, '紛'), +(14310, '紛'), +(14311, '侮'), +(14312, '侮'), +(14313, '覆'), +(14314, '覆'), +(14315, '覆'), +(14316, '丙'), +(14317, '丙'), +(14318, '幣'), +(14319, '幣'), +(14320, '幣'), +(14321, '幣'), +(14322, '蔽'), +(14323, '蔽'), +(14324, '壁'), +(14325, '壁'), +(14326, '壁'), +(14327, '壁'), +(14328, '癖'), +(14329, '癖'), +(14330, '癖'), +(14331, '癖'), +(14332, '癖'), +(14333, '癖'), +(14334, '偏'), +(14335, '蔑'), +(14336, '蔑'), +(14337, '蔑'), +(14338, '蔑'), +(14339, '遍'), +(14340, '餅'), +(14341, '餅'), +(14342, '餅'), +(14343, '餅'), +(14344, '餅'), +(14345, '餅'), +(14346, '餅'), +(14347, '餅'), +(14348, '捕'), +(14349, '捕'), +(14350, '捕'), +(14351, '捕'), +(14352, '捕'), +(14353, '捕'), +(14354, '捕'), +(14355, '募'), +(14356, '芳'), +(14357, '奉'), +(14358, '奉'), +(14359, '奉'), +(14360, '邦'), +(14361, '慕'), +(14362, '抱'), +(14363, '抱'), +(14364, '抱'), +(14365, '倣'), +(14366, '泡'), +(14367, '泡'), +(14368, '泡'), +(14369, '泡'), +(14370, '蜂'), +(14371, '蜂'), +(14372, '蜂'), +(14373, '峰'), +(14374, '峰'), +(14375, '峰'), +(14376, '峰'), +(14377, '峰'), +(14378, '峰'), +(14379, '縫'), +(14380, '飽'), +(14381, '飽'), +(14382, '飽'), +(14383, '飽'), +(14384, '妨'), +(14385, '忙'), +(14386, '忙'), +(14387, '乏'), +(14388, '乏'), +(14389, '某'), +(14390, '某'), +(14391, '某'), +(14392, '房'), +(14393, '房'), +(14394, '房'), +(14395, '傍'), +(14396, '傍'), +(14397, '傍'), +(14398, '傍'), +(14399, '傍'), +(14400, '傍'), +(14401, '傍'), +(14402, '傍'), +(14403, '傍'), +(14404, '冒'), +(14405, '墨'), +(14406, '墨'), +(14407, '墨'), +(14408, '墨'), +(14409, '膨'), +(14410, '膨'), +(14411, '紡'), +(14412, '崩'), +(14413, '崩'), +(14414, '褒'), +(14415, '頰'), +(14416, '頰'), +(14417, '頰'), +(14418, '頰'), +(14419, '僕'), +(14420, '僕'), +(14421, '堀'), +(14422, '堀'), +(14423, '朴'), +(14424, '朴'), +(14425, '朴'), +(14426, '朴'), +(14427, '奔'), +(14428, '謀'), +(14429, '謀'), +(14430, '謀'), +(14431, '睦'), +(14432, '睦'), +(14433, '睦'), +(14434, '貌'), +(14435, '貌'), +(14436, '麻'), +(14437, '麻'), +(14438, '麻'), +(14439, '麻'), +(14440, '摩'), +(14441, '摩'), +(14442, '摩'), +(14443, '翻'), +(14444, '翻'), +(14445, '磨'), +(14446, '磨'), +(14447, '凡'), +(14448, '凡'), +(14449, '凡'), +(14450, '埋'), +(14451, '埋'), +(14452, '埋'), +(14453, '埋'), +(14454, '埋'), +(14455, '埋'), +(14456, '枕'), +(14457, '枕'), +(14458, '枕'), +(14459, '枕'), +(14460, '又'), +(14461, '又'), +(14462, '又'), +(14463, '又'), +(14464, '岬'), +(14465, '漫'), +(14466, '漫'), +(14467, '妙'), +(14468, '妙'), +(14469, '妙'), +(14470, '冥'), +(14471, '娘'), +(14472, '娘'), +(14473, '娘'), +(14474, '娘'), +(14475, '娘'), +(14476, '娘'), +(14477, '眠'), +(14478, '眠'), +(14479, '滅'), +(14480, '滅'), +(14481, '滅'), +(14482, '妄'), +(14483, '茂'), +(14484, '盲'), +(14485, '盲'), +(14486, '盲'), +(14487, '盲'), +(14488, '免'), +(14489, '免'), +(14490, '網'), +(14491, '網'), +(14492, '網'), +(14493, '網'), +(14494, '矛'), +(14495, '矛'), +(14496, '矛'), +(14497, '矛'), +(14498, '弥'), +(14499, '弥'), +(14500, '弥'), +(14501, '弥'), +(14502, '弥'), +(14503, '弥'), +(14504, '黙'), +(14505, '躍'), +(14506, '霧'), +(14507, '霧'), +(14508, '霧'), +(14509, '闇'), +(14510, '闇'), +(14511, '闇'), +(14512, '闇'), +(14513, '闇'), +(14514, '愉'), +(14515, '愉'), +(14516, '喩'), +(14517, '唯'), +(14518, '唯'), +(14519, '癒'), +(14520, '癒'), +(14521, '癒'), +(14522, '幽'), +(14523, '諭'), +(14524, '雄'), +(14525, '雄'), +(14526, '雄'), +(14527, '雄'), +(14528, '湧'), +(14529, '猶'), +(14530, '猶'), +(14531, '猶'), +(14532, '猶'), +(14533, '憂'), +(14534, '憂'), +(14535, '憂'), +(14536, '憂'), +(14537, '憂'), +(14538, '憂'), +(14539, '融'), +(14540, '融'), +(14541, '誉'), +(14542, '誉'), +(14543, '誉'), +(14544, '妖'), +(14545, '誘'), +(14546, '誘'), +(14547, '揚'), +(14548, '揚'), +(14549, '与'), +(14550, '与'), +(14551, '与'), +(14552, '揺'), +(14553, '揺'), +(14554, '揺'), +(14555, '揺'), +(14556, '揺'), +(14557, '揺'), +(14558, '揺'), +(14559, '揺'), +(14560, '溶'), +(14561, '溶'), +(14562, '溶'), +(14563, '窯'), +(14564, '窯'), +(14565, '踊'), +(14566, '踊'), +(14567, '謡'), +(14568, '謡'), +(14569, '謡'), +(14570, '謡'), +(14571, '謡'), +(14572, '腰'), +(14573, '腰'), +(14574, '腰'), +(14575, '腰'), +(14576, '拉'), +(14577, '抑'), +(14578, '羅'), +(14579, '翼'), +(14580, '翼'), +(14581, '翼'), +(14582, '翼'), +(14583, '頼'), +(14584, '頼'), +(14585, '頼'), +(14586, '頼'), +(14587, '絡'), +(14588, '絡'), +(14589, '雷'), +(14590, '雷'), +(14591, '雷'), +(14592, '雷'), +(14593, '雷'), +(14594, '雷'), +(14595, '雷'), +(14596, '藍'), +(14597, '藍'), +(14598, '藍'), +(14599, '藍'), +(14600, '裸'), +(14601, '裸'), +(14602, '裸'), +(14603, '裸'), +(14604, '履'), +(14605, '濫'), +(14606, '濫'), +(14607, '離'), +(14608, '離'), +(14609, '柳'), +(14610, '柳'), +(14611, '柳'), +(14612, '柳'), +(14613, '慄'), +(14614, '竜'), +(14615, '竜'), +(14616, '竜'), +(14617, '粒'), +(14618, '粒'), +(14619, '粒'), +(14620, '粒'), +(14621, '侶'), +(14622, '虜'), +(14623, '慮'), +(14624, '涼'), +(14625, '涼'), +(14626, '涼'), +(14627, '涼'), +(14628, '陵'), +(14629, '猟'), +(14630, '猟'), +(14631, '猟'), +(14632, '糧'), +(14633, '糧'), +(14634, '糧'), +(14635, '涙'), +(14636, '涙'), +(14637, '涙'), +(14638, '涙'), +(14639, '戻'), +(14640, '戻'), +(14641, '零'), +(14642, '零'), +(14643, '零'), +(14644, '零'), +(14645, '隣'), +(14646, '隣'), +(14647, '隣'), +(14648, '隣'), +(14649, '隣'), +(14650, '励'), +(14651, '励'), +(14652, '鈴'), +(14653, '鈴'), +(14654, '鈴'), +(14655, '鈴'), +(14656, '塁'), +(14657, '霊'), +(14658, '霊'), +(14659, '隷'), +(14660, '麗'), +(14661, '麗'), +(14662, '齢'), +(14663, '齢'), +(14664, '暦'), +(14665, '暦'), +(14666, '裂'), +(14667, '裂'), +(14668, '籠'), +(14669, '籠'), +(14670, '籠'), +(14671, '籠'), +(14672, '籠'), +(14673, '籠'), +(14674, '劣'), +(14675, '恋'), +(14676, '恋'), +(14677, '恋'), +(14678, '恋'), +(14679, '恋'), +(14680, '恋'), +(14681, '麓'), +(14682, '錬'), +(14683, '烈'), +(14684, '露'), +(14685, '露'), +(14686, '露'), +(14687, '露'), +(14688, '弄'), +(14689, '弄'), +(14690, '弄'), +(14691, '弄'), +(14692, '賂'), +(14693, '漏'), +(14694, '漏'), +(14695, '漏'), +(14696, '脇'), +(14697, '脇'), +(14698, '脇'), +(14699, '脇'), +(14700, '脇'), +(14701, '惑'), +(14702, '枠'), +(14703, '枠'), +(14704, '枠'), +(14705, '枠'), +(14706, '腕'), +(14707, '腕'), +(14708, '腕'), +(14709, '腕'), +(14710, '賄'); + +INSERT OR IGNORE INTO Kanji_Part(part) VALUES +("つ.ぐ"), +("あわ.れ"), +("あわ.れむ"), +("かな.しい"), +("ひら.く"), +("くら.い"), +("にぎ.る"), +("あらし"), +("よ.る"), +("あつか.い"), +("あつか.う"), +("あつか.る"), +("こ.く"), +("あ.てる"), +("-あて"), +("-づつ"), +("あたか.も"), +("ため"), +("な.る"), +("な.す"), +("す.る"), +("たり"), +("つく.る"), +("なり"), +("おそ.れる"), +("かしこま.る"), +("かしこ"), +("かしこ.し"), +("な"), +("しお.れる"), +("しな.びる"), +("しぼ.む"), +("な.える"), +("はりねずみ"), +("ちが.う"), +("ちが.い"), +("ちが.える"), +("-ちが.える"), +("たが.う"), +("たが.える"), +("ひとつ"), +("おど.す"), +("おど.し"), +("おど.かす"), +("えら.い"), +("そ.れる"), +("そ.らす"), +("はぐ.れる"), +("むせ.ぶ"), +("むせ.る"), +("のど"), +("の.む"), +("よこいと"), +("ぬき"), +("いも"), +("ひた.す"), +("ほしいまま"), +("みだ.ら"), +("みだ.れる"), +("みだり"), +("かげ"), +("かげ.る"), +("なぐさ.める"), +("なぐさ.む"), +("うら.む"), +("うらみ"), +("うら.めしい"), +("うたげ"), +("するど.い"), +("けみ.する"), +("よろこ.ぶ"), +("よろこ.ばす"), +("けむ.る"), +("けむり"), +("けむ.い"), +("ほのお"), +("うら"), +("うっ.する"), +("ふさ.ぐ"), +("しげ.る"), +("よ.む"), +("うた.う"), +("さる"), +("こ.す"), +("-こ.す"), +("-ご.し"), +("こ.える"), +("-ご.え"), +("ふち"), +("ふち.どる"), +("ゆかり"), +("よすが"), +("へり"), +("えにし"), +("かく.す"), +("かく.し"), +("かく.れる"), +("よ.る"), +("かげ"), +("うた"), +("うた.う"), +("なまり"), +("つや"), +("なま.めかしい"), +("あで.やか"), +("つや.めく"), +("なま.めく"), +("くぼ.む"), +("へこ.む"), +("ぼこ"), +("せ"), +("うね"), +("うた.う"), +("は.く"), +("お.す"), +("お.し-"), +("お.っ-"), +("お.さえる"), +("おさ.える"), +("おく"), +("おく.まる"), +("くま"), +("なぐ.る"), +("けが.す"), +("けが.れる"), +("けが.らわしい"), +("よご.す"), +("よご.れる"), +("きたな.い"), +("かがや.き"), +("うつくし.い"), +("さかん"), +("おきな"), +("おと-"), +("きのと"), +("おそれ"), +("おもんぱか.る"), +("はか.る"), +("うれ.える"), +("あざむ.く"), +("あやま.る"), +("のぞ.む"), +("たの.しむ"), +("おれ"), +("われ"), +("おろ.す"), +("おろし"), +("おろ.し"), +("おだ.やか"), +("むね"), +("おくする"), +("か.ける"), +("か.かる"), +("くつ"), +("いじ.める"), +("さいな.む"), +("いらだ.つ"), +("からい"), +("こまかい"), +("か"), +("みや.び"), +("うず"), +("う.える"), +("はな"), +("ひま"), +("いとま"), +("きば"), +("は"), +("わざわい"), +("かせ.ぐ"), +("よめ"), +("とつ.ぐ"), +("い.く"), +("ゆ.く"), +("あや.しい"), +("あや.しむ"), +("かわら"), +("ぐらむ"), +("く.いる"), +("く.やむ"), +("くや.しい"), +("いまし.める"), +("かたまり"), +("つちくれ"), +("つぶ.す"), +("つぶ.れる"), +("つい.える"), +("こわ.す"), +("こわ.れる"), +("やぶ.る"), +("みな"), +("みんな"), +("かな.う"), +("やわ.らぐ"), +("ふところ"), +("なつ.かしい"), +("なつ.かしむ"), +("なつ.く"), +("なつ.ける"), +("なず.ける"), +("いだ.く"), +("おも.う"), +("はて"), +("かき"), +("たけ"), +("むくろ"), +("え.る"), +("くら.べる"), +("へだ.てる"), +("へだ.たる"), +("くるわ"), +("かき"), +("がけ"), +("きし"), +("はて"), +("おおむ.ね"), +("おど.す"), +("から"), +("がら"), +("ふた"), +("けだ.し"), +("おお.う"), +("かさ"), +("かこう"), +("なげ.く"), +("あせ"), +("か.つ"), +("かま"), +("か.る"), +("かわ.く"), +("あま.い"), +("あま.える"), +("あま.やかす"), +("うま.い"), +("かんむり"), +("きも"), +("くさび"), +("かま"), +("つづら"), +("くず"), +("あご"), +("あぎと"), +("か.ける"), +("-か.ける"), +("か.け"), +("-か.け"), +("-が.け"), +("か.かる"), +("-か.かる"), +("-が.かる"), +("か.かり"), +("-が.かり"), +("かかり"), +("-がかり"), +("すべ.る"), +("なめ.らか"), +("おちい.る"), +("おとしい.れる"), +("くく.る"), +("かま"), +("かわ.く"), +("かわ.かす"), +("ほ.す"), +("ひ.る"), +("いぬい"), +("つらぬ.く"), +("ぬ.く"), +("ぬき"), +("わめ.く"), +("か.える"), +("-か.える"), +("か.わる"), +("わずら.う"), +("た.える"), +("たま.る"), +("こら.える"), +("こた.える"), +("あ.えて"), +("あ.えない"), +("あ.えず"), +("すす.める"), +("くつろ.ぐ"), +("ひろ.い"), +("ゆる.やか"), +("よろこ.ぶ"), +("ゆる.い"), +("ゆる.やか"), +("ゆる.む"), +("ゆる.める"), +("うら.む"), +("かえ.る"), +("わ"), +("から"), +("いげた"), +("かんが.みる"), +("かがみ"), +("ふく.む"), +("ふく.める"), +("もちあそ.ぶ"), +("もてあそ.ぶ"), +("くわだ.てる"), +("たくら.む"), +("い.む"), +("い.み"), +("い.まわしい"), +("く.しき"), +("あや.しい"), +("くし"), +("めずら.しい"), +("わざ"), +("わざおぎ"), +("かたく.な"), +("いの.る"), +("みやこ"), +("す.てる"), +("う.える"), +("ご"), +("こぼ.つ"), +("こわ.す"), +("こぼ.れる"), +("こわ.れる"), +("そし.る"), +("やぶ.る"), +("かがや.く"), +("まが.い"), +("もど.き"), +("たわむ.れる"), +("ざ.れる"), +("じゃ.れる"), +("あざむ.く"), +("おに"), +("おに-"), +("いく-"), +("いく.つ"), +("いく.ら"), +("よろ.しい"), +("よろ.しく"), +("すで.に"), +("かめ"), +("いつわ.る"), +("にせ"), +("いつわ.り"), +("しいた.げる"), +("の.む"), +("おか"), +("きわ.める"), +("きわ.まる"), +("きわ.まり"), +("きわ.み"), +("あし"), +("かえ.って"), +("しりぞ.く"), +("しりぞ.ける"), +("く.ちる"), +("ただ.す"), +("よし"), +("むな.しい"), +("うつ.ろ"), +("つ.める"), +("つ.め"), +("-づ.め"), +("つ.まる"), +("つ.む"), +("か.ぐ"), +("へだ.たる"), +("けづめ"), +("いけにえ"), +("こば.む"), +("うす"), +("うすづ.く"), +("およ.ぶ"), +("およ.び"), +("および"), +("およ.ぼす"), +("おん-"), +("お-"), +("み-"), +("さけ.ぶ"), +("よ.る"), +("まし.て"), +("いわ.んや"), +("おもむき"), +("はざま"), +("う.ける"), +("おそ.れる"), +("おそ.る"), +("おそ.ろしい"), +("こわ.い"), +("こわ.がる"), +("せま.い"), +("せば.める"), +("せば.まる"), +("さ"), +("はさ.む"), +("はさ.まる"), +("わきばさ.む"), +("さしはさ.む"), +("くる.う"), +("くる.おしい"), +("くるお.しい"), +("おびや.かす"), +("おど.す"), +("おど.かす"), +("た.める"), +("おどろ.く"), +("おどろ.かす"), +("ひび.く"), +("うやうや.しい"), +("あかつき"), +("さと.る"), +("あお.ぐ"), +("おお.せ"), +("お.っしゃる"), +("おっしゃ.る"), +("こ.る"), +("こ.らす"), +("こご.らす"), +("こご.らせる"), +("こご.る"), +("おお.い"), +("ちきり"), +("きれ"), +("こと"), +("わず.か"), +("し.める"), +("し.まる"), +("ほ.る"), +("く.る"), +("くし"), +("つらぬ.く"), +("いさお"), +("いわや"), +("いはや"), +("あな"), +("か.ける"), +("か.る"), +("たま"), +("えり"), +("つつし.む"), +("すみ"), +("かお.る"), +("くき"), +("あ.う"), +("おそ.れる"), +("かが.む"), +("かが.める"), +("ちぎ.る"), +("おろ.か"), +("めぐ.む"), +("めぐ.み"), +("ひら.く"), +("さと.す"), +("にしき"), +("ほたる"), +("たに"), +("たにがわ"), +("かたむ.く"), +("かたむ.ける"), +("かたぶ.く"), +("かた.げる"), +("かし.げる"), +("つ.ぐ"), +("まま-"), +("かか.げる"), +("よろこ.び"), +("たずさ.える"), +("たずさ.わる"), +("かんが.える"), +("とど.める"), +("あこが.れる"), +("けい.する"), +("まい.る"), +("いた.る"), +("もう.でる"), +("たてまつ.る"), +("にわとり"), +("とり"), +("のき"), +("つか.う"), +("-つか.い"), +("-づか.い"), +("つか.わす"), +("や.る"), +("きら.う"), +("きら.い"), +("いや"), +("かた.い"), +("-がた.い"), +("すぐ.れる"), +("かしこ.い"), +("か.ねる"), +("-か.ねる"), +("かた"), +("う.つ"), +("くじら"), +("いこ.い"), +("いこ.う"), +("つるぎ"), +("こぶし"), +("つま.しい"), +("つづまやか"), +("すき"), +("す.く"), +("す.かす"), +("ひま"), +("むか.える"), +("かこ.い"), +("かぎ"), +("まゆ"), +("きぬ"), +("まぼろし"), +("けた"), +("へりくだ.る"), +("あきらか"), +("あらわ.れる"), +("か.ける"), +("か.かる"), +("くろ"), +("くろ.い"), +("つづみ"), +("ふさ.ぐ"), +("たが.い"), +("かたみ.に"), +("ふなばた"), +("ふなべり"), +("さと.る"), +("かぎ"), +("ま.がる"), +("また"), +("もも"), +("かえり.みる"), +("か.れる"), +("か.らす"), +("ほこ.る"), +("とら"), +("つる"), +("く.れる"), +("くれ"), +("みつ.ぐ"), +("かか.わる"), +("ひか.える"), +("ひか.え"), +("たく.み"), +("たく.む"), +("うま.い"), +("せ.める"), +("がえんじ.る"), +("のど"), +("あ.らす"), +("あ.れる"), +("あら.い"), +("すさ.ぶ"), +("すさ.む"), +("あ.らし"), +("きのえ"), +("つね"), +("つねに"), +("あらが.う"), +("さら"), +("さら.に"), +("ふ.ける"), +("ふ.かす"), +("え"), +("あな"), +("やと.う"), +("あわ.てる"), +("あわ.ただしい"), +("ふさぐ"), +("やまにれ"), +("おおむね"), +("しぼ.る"), +("し.める"), +("し.まる"), +("うなじ"), +("みぞ"), +("かた.い"), +("つな"), +("わら"), +("したがき"), +("おご.る"), +("あなど.る"), +("こ.う"), +("か.つ"), +("-こ.む"), +("こ.む"), +("こ.み"), +("-こ.み"), +("こ.める"), +("えら.い"), +("こま"), +("ひど.い"), +("ころ"), +("ごろ"), +("しばら.く"), +("あと"), +("たましい"), +("たま"), +("は.る"), +("ひら.く"), +("うら.む"), +("うら.めしい"), +("ねんご.ろ"), +("そそ.る"), +("そそのか.す"), +("すな"), +("よなげる"), +("くじ.く"), +("くじ.ける"), +("くさり"), +("とざ.す"), +("くだ.く"), +("くだ.ける"), +("いつわ.る"), +("と.る"), +("いろどり"), +("いろど.る"), +("とき"), +("つつし.む"), +("ものいみ"), +("い.む"), +("いわ.う"), +("いつ.く"), +("もよう.す"), +("もよお.す"), +("ふさ.ぐ"), +("とりで"), +("み.ちる"), +("とし"), +("とせ"), +("よわい"), +("の.せる"), +("の.る"), +("かる"), +("けず.る"), +("しがら.む"), +("しがらみ"), +("とりで"), +("やらい"), +("す"), +("しぼ.る"), +("けず.る"), +("はつ.る"), +("そ.ぐ"), +("ほしいまま"), +("せま.る"), +("みじ.め"), +("いた.む"), +("むご.い"), +("と.る"), +("つま.む"), +("-ど.り"), +("す.る"), +("す.れる"), +("-ず.れ"), +("こす.る"), +("こす.れる"), +("かけはし"), +("あぶら"), +("さ.す"), +("さ.さる"), +("さ.し"), +("さし"), +("とげ"), +("むね"), +("うま.い"), +("さ.く"), +("-ざき"), +("しばら.く"), +("かさ"), +("むらさき"), +("うかが.う"), +("ほどこ.す"), +("いた.る"), +("き.る"), +("め-"), +("めす"), +("めん"), +("そね.む"), +("ねた.む"), +("にく.む"), +("たまわ.る"), +("たま.う"), +("たも.う"), +("はや.い"), +("え"), +("えば"), +("えさ"), +("もち"), +("と.る"), +("さむらい"), +("はべ.る"), +("いつく.しむ"), +("しば"), +("うるし"), +("はか.る"), +("しめ.る"), +("しめ.す"), +("うるお.う"), +("うるお.す"), +("なな.め"), +("はす"), +("よこし.ま"), +("に.る"), +("-に"), +("に.える"), +("に.やす"), +("へび"), +("く.む"), +("とく"), +("す.てる"), +("ゆる.す"), +("あけ"), +("か.る"), +("か.り"), +("-が.り"), +("こと"), +("さえぎ.る"), +("は.れる"), +("は.れ"), +("は.らす"), +("はれもの"), +("さび"), +("さび.しい"), +("さび.れる"), +("さみ.しい"), +("まじな.う"), +("のろ.い"), +("まじな.い"), +("のろ.う"), +("ことぶき"), +("ことぶ.く"), +("ことほ.ぐ"), +("おもむき"), +("おもむ.く"), +("とら.われる"), +("ふね"), +("ふな-"), +("-ぶね"), +("たま"), +("くさ.い"), +("-くさ.い"), +("にお.う"), +("にお.い"), +("ひい.でる"), +("はじ.る"), +("すすめ.る"), +("は.ずかしい"), +("うれ.える"), +("うれ.い"), +("むく.いる"), +("そで"), +("みにく.い"), +("しこ"), +("け.る"), +("おそ.う"), +("かさ.ね"), +("あ.てる"), +("み.たす"), +("しぶ"), +("しぶ.い"), +("しぶ.る"), +("しる"), +("-しる"), +("つゆ"), +("けもの"), +("けだもの"), +("つつ"), +("やわ.らか"), +("やわ.らかい"), +("やわ"), +("やわ.ら"), +("しと.やか"), +("ます"), +("つつし.む"), +("うるお.う"), +("うるお.す"), +("うる.む"), +("おもむ.ろに"), +("お"), +("いとぐち"), +("め.す"), +("つい.ず"), +("ついで"), +("たて"), +("とこ"), +("ゆか"), +("めぐ.る"), +("めぐ.り"), +("またた.く"), +("まじろ.ぐ"), +("たくみ"), +("あやか.る"), +("ごと.し"), +("のぼ.る"), +("よい"), +("なお"), +("ぬま"), +("さいわ.い"), +("きざ.し"), +("よ.い"), +("つまび.らか"), +("わた.る"), +("たた.える"), +("とな.える"), +("あ.げる"), +("かな.う"), +("はか.り"), +("はか.る"), +("ほめ.る"), +("てのひら"), +("たなごころ"), +("こ.げる"), +("こ.がす"), +("こ.がれる"), +("あせ.る"), +("じ.れる"), +("じ.らす"), +("すす.める"), +("くわ.しい"), +("つまび.らか"), +("つ.く"), +("みことのり"), +("つぐな.う"), +("あまつさえ"), +("あま.り"), +("あま.る"), +("つち"), +("あこが.れる"), +("たけ"), +("だけ"), +("きよ.める"), +("きよ.い"), +("たた.む"), +("たたみ"), +("かさ.なる"), +("かも.す"), +("かね"), +("ぬぐ.う"), +("ふ.く"), +("むすめ"), +("ふ.える"), +("ふ.やす"), +("しょく.する"), +("たの.む"), +("かざ.る"), +("かざ.り"), +("はずかし.める"), +("ふ.れる"), +("さわ.る"), +("さわ"), +("の.びる"), +("の.ばす"), +("の.べる"), +("の.す"), +("おか.す"), +("から.い"), +("つら.い"), +("-づら.い"), +("かのと"), +("くちびる"), +("つ"), +("しり"), +("ふ.る"), +("ふ.れる"), +("ふ.るう"), +("ひた.す"), +("ひた.る"), +("つ.かる"), +("ゆず.る"), +("た.く"), +("-だ.き"), +("よ.う"), +("よ.い"), +("よ"), +("ね.る"), +("ね.かす"), +("い.ぬ"), +("みたまや"), +("や.める"), +("ふ.く"), +("は"), +("やいば"), +("き.る"), +("すべから.く"), +("すべし"), +("ひげ"), +("まつ"), +("もち.いる"), +("もと.める"), +("いき"), +("と.げる"), +("つい.に"), +("おとろ.える"), +("たず.ねる"), +("ひろ"), +("たきぎ"), +("まき"), +("はなは.だ"), +("はなは.だしい"), +("つ.きる"), +("つ.くす"), +("つ.かす"), +("-づ.く"), +("-ず.く"), +("ことごと.く"), +("ふる.う"), +("ふる.える"), +("ふる.わせる"), +("ふる.わす"), +("ねむ.る"), +("ねむ.い"), +("ほ"), +("つつし.む"), +("つつ.ましい"), +("つつし"), +("つつし.み"), +("み.る"), +("あが.める"), +("まにま.に"), +("したが.う"), +("つまび.らか"), +("つぶさ.に"), +("すそ"), +("すぎ"), +("す.える"), +("す.わる"), +("せ"), +("これ"), +("この"), +("ここ"), +("さむ.い"), +("すご.い"), +("すさ.まじい"), +("そろ.う"), +("ひと.しい"), +("ひと.しく"), +("あたる"), +("はやい"), +("ゆ.く"), +("い.く"), +("むこ"), +("こ.う"), +("う.ける"), +("とぼそ"), +("からくり"), +("さ.ます"), +("さ.める"), +("しりぞ.ける"), +("いた.む"), +("うれ.える"), +("みうち"), +("せ"), +("せい"), +("あと"), +("お.しい"), +("お.しむ"), +("ちか.う"), +("ぬす.む"), +("ひそ.か"), +("おさ.める"), +("かね.る"), +("と.る"), +("おうぎ"), +("つたな.い"), +("し.める"), +("うらな.う"), +("め.ぐる"), +("いばり"), +("うらや.む"), +("あまり"), +("せん.じる"), +("い.る"), +("に.る"), +("うつ.る"), +("うつ.す"), +("みやこがえ"), +("せん.ずる"), +("かい"), +("あき.らか"), +("しずか"), +("ゆず.る"), +("はば.む"), +("うと.い"), +("うと.む"), +("まば.ら"), +("ようや.く"), +("やや"), +("ようよ.う"), +("すす.む"), +("あら.い"), +("あら-"), +("つくろ.う"), +("ねら.う"), +("ねら.い"), +("ふ.む"), +("すす.める"), +("お.く"), +("かしわ"), +("すす.める"), +("そな.える"), +("あざ.やか"), +("ふだ"), +("ひそ.む"), +("もぐ.る"), +("かく.れる"), +("くぐ.る"), +("ひそ.める"), +("さかのぼ.る"), +("は.く"), +("あき.らか"), +("さわ.やか"), +("たがう"), +("でく"), +("くわ"), +("さ.す"), +("はさ.む"), +("あ.う"), +("あ.わせる"), +("かつ"), +("かつて"), +("すなわち"), +("さかん"), +("うった.える"), +("さが.す"), +("ほうき"), +("おごそ.か"), +("ほうむ.る"), +("いしずえ"), +("も"), +("ふた"), +("たぐい"), +("ならぶ"), +("ふたつ"), +("や.せる"), +("あと"), +("ふね"), +("おご.る"), +("にご.る"), +("よな.げる"), +("はしゃ.ぐ"), +("うなが.す"), +("おく.る"), +("したが.う"), +("へりくだ.る"), +("ゆず.る"), +("にく.む"), +("にく.い"), +("にく.らしい"), +("にく.しみ"), +("た.える"), +("さわ.ぐ"), +("うれい"), +("さわ.がしい"), +("しも"), +("とら.える"), +("おこた.る"), +("なま.ける"), +("も"), +("お.ちる"), +("くず.す"), +("くず.れる"), +("つ.く"), +("つ.ける"), +("すなわ.ち"), +("うずたか.い"), +("ふくろ"), +("か.える"), +("か.え-"), +("か.わる"), +("つば"), +("つばき"), +("とどこお.る"), +("えら.ぶ"), +("たき"), +("いただ.く"), +("きも"), +("あき.らか"), +("あきら"), +("ただし"), +("あさ"), +("あした"), +("かこつ.ける"), +("かこ.つ"), +("かこ.つける"), +("ほころ.びる"), +("だれ"), +("たれ"), +("た"), +("ひら.く"), +("すす.ぐ"), +("ゆす.ぐ"), +("ぬ.ぐ"), +("ぬ.げる"), +("なげ.く"), +("なげ.かわしい"), +("さわ"), +("うるお.い"), +("うるお.す"), +("つや"), +("はし"), +("は"), +("はた"), +("-ばた"), +("はな"), +("たな"), +("-だな"), +("ひ.く"), +("-ひ.き"), +("はず.む"), +("たま"), +("はじ.く"), +("はじ.ける"), +("ただ.す"), +("はじ.きゆみ"), +("うば.う"), +("は.じる"), +("はじ"), +("は.じらう"), +("は.ずかしい"), +("に"), +("きた.える"), +("ただ.し"), +("いとけない"), +("おさない"), +("おくて"), +("おでる"), +("あわ.い"), +("し.れる"), +("おろか"), +("こまか.い"), +("おく.れる"), +("おく.らす"), +("おそ.い"), +("いた.す"), +("にご.る"), +("にご.す"), +("たくわ.える"), +("なが.める"), +("とむら.う"), +("とぶら.う"), +("き.く"), +("ゆる.す"), +("いど.む"), +("は.ねる"), +("と.ぶ"), +("-と.び"), +("かも.す"), +("い.る"), +("いまし.める"), +("みことのり"), +("す.む"), +("す.ます"), +("-す.ます"), +("ほ.る"), +("-ぼ.り"), +("しるし"), +("あざけ.る"), +("つ.る"), +("つ.り"), +("つ.り-"), +("ひき-"), +("しず.む"), +("しず.める"), +("は.る"), +("つ.く"), +("こ.りる"), +("こ.らす"), +("こ.らしめる"), +("こ.える"), +("こ.す"), +("しず.める"), +("しず.まる"), +("おさえ"), +("めずら.しい"), +("たから"), +("つか"), +("-づか"), +("お.ちる"), +("お.つ"), +("つぼ"), +("はかど.る"), +("つち"), +("う.つ"), +("つめ"), +("つま-"), +("つ.ける"), +("つ.かる"), +("-づ.け"), +("-づけ"), +("ひ.ねる"), +("つる"), +("やしき"), +("ただし.い"), +("さだ"), +("かわ.る"), +("たがいに"), +("みかど"), +("つつみ"), +("ただ.す"), +("あきら.める"), +("つまびらか"), +("まこと"), +("し.まる"), +("し.まり"), +("し.める"), +("-し.め"), +("-じ.め"), +("つ.む"), +("いばり"), +("おぼ.れる"), +("しずく"), +("したた.る"), +("から"), +("さとい"), +("あきらか"), +("そ.える"), +("そ.う"), +("いか.る"), +("おこ.る"), +("こお.る"), +("こご.える"), +("こご.る"), +("い.てる"), +("し.みる"), +("たお.れる"), +("-だお.れ"), +("たお.す"), +("さかさま"), +("さかさ"), +("さかしま"), +("もも"), +("みち"), +("わた.る"), +("-わた.る"), +("わた.す"), +("す.く"), +("す.かす"), +("す.ける"), +("とう.る"), +("とう.す"), +("すえ"), +("いた.る"), +("ねた.む"), +("そね.む"), +("つも.る"), +("ふさ.ぐ"), +("ぬす.む"), +("ぬす.み"), +("はま.る"), +("うず.める"), +("は.める"), +("ふさ.ぐ"), +("やつ"), +("やっこ"), +("は.く"), +("つ.く"), +("に.げる"), +("に.がす"), +("のが.す"), +("のが.れる"), +("ぬ.る"), +("ぬ.り"), +("まみ.れる"), +("どろ"), +("なず.む"), +("との"), +("-どの"), +("か.ける"), +("かけ"), +("いた.む"), +("ふ.む"), +("ふ.まえる"), +("むね"), +("むな-"), +("つつ"), +("いね"), +("いな-"), +("なに"), +("なんぞ"), +("いかん"), +("あつ.い"), +("くも.る"), +("どんぶり"), +("なぞ"), +("ぶた"), +("つ.く"), +("かくま.う"), +("にわか.に"), +("とん.と"), +("つまず.く"), +("とみ.に"), +("ぬかずく"), +("たむろ"), +("にぶ.い"), +("にぶ.る"), +("にぶ-"), +("なま.る"), +("なまく.ら"), +("ふじ"), +("とうげ"), +("むさぼ.る"), +("なべ"), +("でこ"), +("ひとみ"), +("あが.る"), +("のぼ.る"), +("あま"), +("ふた.つ"), +("そえ"), +("たたか.う"), +("あらそ.う"), +("にじ"), +("やわ.らか"), +("やわ.らかい"), +("ほら"), +("ゆばり"), +("いばり"), +("しと"), +("はら.む"), +("みごも.る"), +("にお.う"), +("にお.い"), +("にお.わせる"), +("しの.ぶ"), +("しの.ばせる"), +("むし.ろ"), +("ねば.る"), +("こ.い"), +("ね.じる"), +("ねじ.る"), +("ひね.くる"), +("ひね.る"), +("なや.む"), +("なや.ます"), +("なや.ましい"), +("なやみ"), +("はたがしら"), +("しば.る"), +("ばば"), +("ばあ"), +("すた.れる"), +("すた.る"), +("つちか.う"), +("うす.い"), +("うす-"), +("-うす"), +("うす.める"), +("うす.まる"), +("うす.らぐ"), +("うす.ら-"), +("うす.れる"), +("すすき"), +("-ばら"), +("やから"), +("やかい"), +("ともがら"), +("せま.る"), +("はぐ"), +("むく"), +("はげる"), +("なこうど"), +("と.まる"), +("と.める"), +("さかずき"), +("ののし.る"), +("は.ぜる"), +("はし"), +("かみ"), +("ぬ.く"), +("-ぬ.く"), +("ぬ.き"), +("ぬ.ける"), +("ぬ.かす"), +("ぬ.かる"), +("ひろ.がる"), +("き.る"), +("そむ.く"), +("う.つ"), +("はだ"), +("ばっ.する"), +("ほ"), +("あぜ"), +("くろ"), +("ほとり"), +("ともな.う"), +("ただよ.う"), +("ひろ.い"), +("ふ"), +("まだら"), +("わ.かつ"), +("わ.ける"), +("わずら.う"), +("わずら.わす"), +("うるさ.がる"), +("うるさ.い"), +("えびす"), +("きさき"), +("しげ.る"), +("しげ.く"), +("つか.れる"), +("-づか.れ"), +("つか.らす"), +("いや.しい"), +("いや.しむ"), +("いや.しめる"), +("かれ"), +("かの"), +("か.の"), +("こうむ.る"), +("おお.う"), +("かぶ.る"), +("かぶ.せる"), +("とびら"), +("いしぶみ"), +("まか.り-"), +("や.める"), +("さ.ける"), +("よ.ける"), +("お"), +("たす.ける"), +("まゆ"), +("ひじ"), +("ひめ"), +("ひめ-"), +("えが.く"), +("か.く"), +("ただよ.う"), +("こわ.い"), +("こわ.がる"), +("お.じる"), +("おそ.れる"), +("はま"), +("ひき"), +("かめ"), +("へい"), +("つ.ける"), +("つ.く"), +("なえ"), +("なわ-"), +("ねこ"), +("しき.りに"), +("おもむ.く"), +("かす.か"), +("う.く"), +("う.かれる"), +("う.かぶ"), +("う.かべる"), +("さとい"), +("しらせ"), +("ひざ"), +("くさ.る"), +("-くさ.る"), +("くさ.れる"), +("くさ.れ"), +("くさ.らす"), +("くさ.す"), +("はだ"), +("し.く"), +("-し.き"), +("ま.う"), +("-ま.う"), +("まい"), +("ふ.せる"), +("ふ.す"), +("わ.く"), +("わ.かす"), +("ふ.く"), +("いきどお.る"), +("がら"), +("え"), +("つか"), +("あわ.せる"), +("はら.う"), +("-はら.い"), +("-ばら.い"), +("はば"), +("あまね.く"), +("あまねし"), +("まぎ.れる"), +("-まぎ.れ"), +("まぎ.らす"), +("まぎ.らわす"), +("まぎ.らわしい"), +("あなど.る"), +("あなず.る"), +("おお.う"), +("くつがえ.す"), +("くつがえ.る"), +("ひのえ"), +("ぬさ"), +("おお.う"), +("おお.い"), +("たま"), +("かべ"), +("くせ"), +("くせ.に"), +("かたよ.る"), +("ないがしろ"), +("なみ.する"), +("くらい"), +("さげす.む"), +("あまね.く"), +("もち"), +("もちい"), +("はぐく.む"), +("ふく.む"), +("と.らえる"), +("と.らわれる"), +("と.る"), +("とら.える"), +("とら.われる"), +("つか.まえる"), +("つか.まる"), +("つの.る"), +("かんば.しい"), +("たてまつ.る"), +("まつ.る"), +("ほう.ずる"), +("くに"), +("した.う"), +("だ.く"), +("いだ.く"), +("かか.える"), +("なら.う"), +("あわ"), +("はち"), +("みね"), +("ね"), +("ぬ.う"), +("あ.きる"), +("あ.かす"), +("あ.く"), +("さまた.げる"), +("いそが.しい"), +("せわ.しい"), +("おそ.れる"), +("うれえるさま"), +("とぼ.しい"), +("とも.しい"), +("それがし"), +("なにがし"), +("ふさ"), +("かたわ.ら"), +("わき"), +("おか-"), +("はた"), +("そば"), +("おか.す"), +("すみ"), +("ふく.らむ"), +("ふく.れる"), +("つむ.ぐ"), +("くず.れる"), +("-くず.れ"), +("くず.す"), +("ほ.める"), +("ずきん"), +("おお.う"), +("おぼ.れる"), +("しず.む"), +("ない"), +("ほお"), +("ほほ"), +("おこ.る"), +("にわかに"), +("しもべ"), +("ほり"), +("ほう"), +("ほお"), +("えのき"), +("はし.る"), +("はか.る"), +("たばか.る"), +("はかりごと"), +("むつ.まじい"), +("むつ.む"), +("むつ.ぶ"), +("かたち"), +("かたどる"), +("あさ"), +("ま.する"), +("さす.る"), +("す.る"), +("ひるがえ.る"), +("ひるがえ.す"), +("みが.く"), +("す.る"), +("およ.そ"), +("おうよ.そ"), +("すべ.て"), +("う.める"), +("う.まる"), +("う.もれる"), +("うず.める"), +("うず.まる"), +("い.ける"), +("くら.い"), +("むさぼ.る"), +("まくら"), +("また"), +("また-"), +("また.の-"), +("みさき"), +("みだり.に"), +("そぞ.ろ"), +("たえ"), +("くら.い"), +("むすめ"), +("こ"), +("ねむ.る"), +("ねむ.い"), +("むぎこ"), +("ほろ.びる"), +("ほろ.ぶ"), +("ほろ.ぼす"), +("みだ.りに"), +("しげ.る"), +("めくら"), +("まぬか.れる"), +("まぬが.れる"), +("あみ"), +("ほこ"), +("や"), +("いや"), +("いよ.いよ"), +("わた.る"), +("だま.る"), +("もだ.す"), +("い.る"), +("おど.る"), +("きり"), +("やみ"), +("くら.い"), +("たの.しい"), +("たの.しむ"), +("たと.える"), +("さと.す"), +("ただ"), +("い.える"), +("いや.す"), +("い.やす"), +("ふか.い"), +("かす.か"), +("くら.い"), +("しろ.い"), +("さと.す"), +("お-"), +("おす"), +("おん"), +("わ.く"), +("なお"), +("うれ.える"), +("うれ.い"), +("う.い"), +("う.き"), +("と.ける"), +("と.かす"), +("ほま.れ"), +("ほ.める"), +("あや.しい"), +("なま.めく"), +("わざわ.い"), +("さそ.う"), +("いざな.う"), +("あ.げる"), +("-あ.げ"), +("あ.がる"), +("あた.える"), +("あずか.る"), +("くみ.する"), +("ともに"), +("ゆ.れる"), +("ゆ.る"), +("ゆ.らぐ"), +("ゆ.るぐ"), +("ゆ.する"), +("ゆ.さぶる"), +("ゆ.すぶる"), +("うご.く"), +("と.ける"), +("と.かす"), +("と.く"), +("かさ"), +("かま"), +("おど.る"), +("うた.い"), +("うた.う"), +("そそ.ぐ"), +("こし"), +("らっ.する"), +("ひし.ぐ"), +("くだ.く"), +("おさ.える"), +("うすもの"), +("つばさ"), +("たの.む"), +("たの.もしい"), +("たよ.る"), +("から.む"), +("から.まる"), +("かみなり"), +("いかずち"), +("いかづち"), +("あい"), +("はだか"), +("は.く"), +("から.い"), +("みだ.りに"), +("みだ.りがましい"), +("てすり"), +("はな.れる"), +("はな.す"), +("やなぎ"), +("ふる.える"), +("おそ.れる"), +("おのの.く"), +("たつ"), +("いせ"), +("つぶ"), +("とも"), +("とりこ"), +("とりく"), +("おもんぱく.る"), +("おもんぱか.る"), +("すず.しい"), +("すず.む"), +("すず.やか"), +("うす.い"), +("ひや.す"), +("まことに"), +("みささぎ"), +("かり"), +("か.る"), +("あきらか"), +("かて"), +("なみだ"), +("もど.す"), +("もど.る"), +("ぜろ"), +("こぼ.す"), +("こぼ.れる"), +("とな.る"), +("となり"), +("はげ.む"), +("はげ.ます"), +("すず"), +("とりで"), +("たま"), +("したが.う"), +("しもべ"), +("うるわ.しい"), +("うら.らか"), +("よわい"), +("とし"), +("こよみ"), +("さ.く"), +("さ.ける"), +("-ぎ.れ"), +("かご"), +("こ.める"), +("こも.る"), +("こ.む"), +("おと.る"), +("こ.う"), +("こい"), +("こい.しい"), +("ふもと"), +("ね.る"), +("はげ.しい"), +("せぼね"), +("おとこ"), +("つゆ"), +("いろり"), +("いじく.る"), +("ろう.する"), +("いじ.る"), +("ひねく.る"), +("たわむ.れる"), +("もてあそ.ぶ"), +("まいな.い"), +("まいな.う"), +("も.る"), +("も.れる"), +("も.らす"), +("たかどの"), +("わき"), +("わけ"), +("まど.う"), +("わく"), +("うで"), +("まかな.う"), +("いりえ"); + +INSERT INTO Kanji_ResultPart_XRef(kanji, part) VALUES +('亜', 'つ.ぐ'), +('哀', 'あわ.れ'), +('哀', 'あわ.れむ'), +('哀', 'かな.しい'), +('挨', 'ひら.く'), +('曖', 'くら.い'), +('握', 'にぎ.る'), +('嵐', 'あらし'), +('依', 'よ.る'), +('扱', 'あつか.い'), +('扱', 'あつか.う'), +('扱', 'あつか.る'), +('扱', 'こ.く'), +('宛', 'あ.てる'), +('宛', '-あて'), +('宛', '-づつ'), +('宛', 'あたか.も'), +('為', 'ため'), +('為', 'な.る'), +('為', 'な.す'), +('為', 'す.る'), +('為', 'たり'), +('為', 'つく.る'), +('為', 'なり'), +('畏', 'おそ.れる'), +('畏', 'かしこま.る'), +('畏', 'かしこ'), +('畏', 'かしこ.し'), +('萎', 'な'), +('萎', 'しお.れる'), +('萎', 'しな.びる'), +('萎', 'しぼ.む'), +('萎', 'な.える'), +('彙', 'はりねずみ'), +('違', 'ちが.う'), +('違', 'ちが.い'), +('違', 'ちが.える'), +('違', '-ちが.える'), +('違', 'たが.う'), +('違', 'たが.える'), +('壱', 'ひとつ'), +('威', 'おど.す'), +('威', 'おど.し'), +('威', 'おど.かす'), +('偉', 'えら.い'), +('逸', 'そ.れる'), +('逸', 'そ.らす'), +('逸', 'はぐ.れる'), +('咽', 'むせ.ぶ'), +('咽', 'むせ.る'), +('咽', 'のど'), +('咽', 'の.む'), +('緯', 'よこいと'), +('緯', 'ぬき'), +('芋', 'いも'), +('淫', 'ひた.す'), +('淫', 'ほしいまま'), +('淫', 'みだ.ら'), +('淫', 'みだ.れる'), +('淫', 'みだり'), +('陰', 'かげ'), +('陰', 'かげ.る'), +('慰', 'なぐさ.める'), +('慰', 'なぐさ.む'), +('怨', 'うら.む'), +('怨', 'うらみ'), +('怨', 'うら.めしい'), +('宴', 'うたげ'), +('鋭', 'するど.い'), +('閲', 'けみ.する'), +('悦', 'よろこ.ぶ'), +('悦', 'よろこ.ばす'), +('煙', 'けむ.る'), +('煙', 'けむり'), +('煙', 'けむ.い'), +('炎', 'ほのお'), +('浦', 'うら'), +('鬱', 'うっ.する'), +('鬱', 'ふさ.ぐ'), +('鬱', 'しげ.る'), +('詠', 'よ.む'), +('詠', 'うた.う'), +('猿', 'さる'), +('越', 'こ.す'), +('越', '-こ.す'), +('越', '-ご.し'), +('越', 'こ.える'), +('越', '-ご.え'), +('縁', 'ふち'), +('縁', 'ふち.どる'), +('縁', 'ゆかり'), +('縁', 'よすが'), +('縁', 'へり'), +('縁', 'えにし'), +('隠', 'かく.す'), +('隠', 'かく.し'), +('隠', 'かく.れる'), +('隠', 'よ.る'), +('影', 'かげ'), +('唄', 'うた'), +('唄', 'うた.う'), +('鉛', 'なまり'), +('艶', 'つや'), +('艶', 'なま.めかしい'), +('艶', 'あで.やか'), +('艶', 'つや.めく'), +('艶', 'なま.めく'), +('凹', 'くぼ.む'), +('凹', 'へこ.む'), +('凹', 'ぼこ'), +('畝', 'せ'), +('畝', 'うね'), +('欧', 'うた.う'), +('欧', 'は.く'), +('押', 'お.す'), +('押', 'お.し-'), +('押', 'お.っ-'), +('押', 'お.さえる'), +('押', 'おさ.える'), +('奥', 'おく'), +('奥', 'おく.まる'), +('奥', 'くま'), +('殴', 'なぐ.る'), +('汚', 'けが.す'), +('汚', 'けが.れる'), +('汚', 'けが.らわしい'), +('汚', 'よご.す'), +('汚', 'よご.れる'), +('汚', 'きたな.い'), +('旺', 'かがや.き'), +('旺', 'うつくし.い'), +('旺', 'さかん'), +('翁', 'おきな'), +('乙', 'おと-'), +('乙', 'きのと'), +('虞', 'おそれ'), +('虞', 'おもんぱか.る'), +('虞', 'はか.る'), +('虞', 'うれ.える'), +('虞', 'あざむ.く'), +('虞', 'あやま.る'), +('虞', 'のぞ.む'), +('虞', 'たの.しむ'), +('俺', 'おれ'), +('俺', 'われ'), +('卸', 'おろ.す'), +('卸', 'おろし'), +('卸', 'おろ.し'), +('穏', 'おだ.やか'), +('臆', 'むね'), +('臆', 'おくする'), +('架', 'か.ける'), +('架', 'か.かる'), +('靴', 'くつ'), +('苛', 'いじ.める'), +('苛', 'さいな.む'), +('苛', 'いらだ.つ'), +('苛', 'からい'), +('苛', 'こまかい'), +('蚊', 'か'), +('雅', 'みや.び'), +('渦', 'うず'), +('餓', 'う.える'), +('華', 'はな'), +('暇', 'ひま'), +('暇', 'いとま'), +('牙', 'きば'), +('牙', 'は'), +('禍', 'わざわい'), +('稼', 'かせ.ぐ'), +('嫁', 'よめ'), +('嫁', 'とつ.ぐ'), +('嫁', 'い.く'), +('嫁', 'ゆ.く'), +('怪', 'あや.しい'), +('怪', 'あや.しむ'), +('瓦', 'かわら'), +('瓦', 'ぐらむ'), +('悔', 'く.いる'), +('悔', 'く.やむ'), +('悔', 'くや.しい'), +('戒', 'いまし.める'), +('塊', 'かたまり'), +('塊', 'つちくれ'), +('潰', 'つぶ.す'), +('潰', 'つぶ.れる'), +('潰', 'つい.える'), +('壊', 'こわ.す'), +('壊', 'こわ.れる'), +('壊', 'やぶ.る'), +('皆', 'みな'), +('皆', 'みんな'), +('諧', 'かな.う'), +('諧', 'やわ.らぐ'), +('懐', 'ふところ'), +('懐', 'なつ.かしい'), +('懐', 'なつ.かしむ'), +('懐', 'なつ.く'), +('懐', 'なつ.ける'), +('懐', 'なず.ける'), +('懐', 'いだ.く'), +('懐', 'おも.う'), +('涯', 'はて'), +('柿', 'かき'), +('岳', 'たけ'), +('骸', 'むくろ'), +('獲', 'え.る'), +('較', 'くら.べる'), +('隔', 'へだ.てる'), +('隔', 'へだ.たる'), +('郭', 'くるわ'), +('垣', 'かき'), +('崖', 'がけ'), +('崖', 'きし'), +('崖', 'はて'), +('概', 'おおむ.ね'), +('嚇', 'おど.す'), +('殻', 'から'), +('殻', 'がら'), +('蓋', 'ふた'), +('蓋', 'けだ.し'), +('蓋', 'おお.う'), +('蓋', 'かさ'), +('蓋', 'かこう'), +('慨', 'なげ.く'), +('汗', 'あせ'), +('且', 'か.つ'), +('釜', 'かま'), +('刈', 'か.る'), +('渇', 'かわ.く'), +('甘', 'あま.い'), +('甘', 'あま.える'), +('甘', 'あま.やかす'), +('甘', 'うま.い'), +('冠', 'かんむり'), +('肝', 'きも'), +('轄', 'くさび'), +('鎌', 'かま'), +('葛', 'つづら'), +('葛', 'くず'), +('顎', 'あご'), +('顎', 'あぎと'), +('掛', 'か.ける'), +('掛', '-か.ける'), +('掛', 'か.け'), +('掛', '-か.け'), +('掛', '-が.け'), +('掛', 'か.かる'), +('掛', '-か.かる'), +('掛', '-が.かる'), +('掛', 'か.かり'), +('掛', '-が.かり'), +('掛', 'かかり'), +('掛', '-がかり'), +('滑', 'すべ.る'), +('滑', 'なめ.らか'), +('陥', 'おちい.る'), +('陥', 'おとしい.れる'), +('括', 'くく.る'), +('缶', 'かま'), +('乾', 'かわ.く'), +('乾', 'かわ.かす'), +('乾', 'ほ.す'), +('乾', 'ひ.る'), +('乾', 'いぬい'), +('貫', 'つらぬ.く'), +('貫', 'ぬ.く'), +('貫', 'ぬき'), +('喚', 'わめ.く'), +('換', 'か.える'), +('換', '-か.える'), +('換', 'か.わる'), +('患', 'わずら.う'), +('堪', 'た.える'), +('堪', 'たま.る'), +('堪', 'こら.える'), +('堪', 'こた.える'), +('敢', 'あ.えて'), +('敢', 'あ.えない'), +('敢', 'あ.えず'), +('勧', 'すす.める'), +('寛', 'くつろ.ぐ'), +('寛', 'ひろ.い'), +('寛', 'ゆる.やか'), +('歓', 'よろこ.ぶ'), +('緩', 'ゆる.い'), +('緩', 'ゆる.やか'), +('緩', 'ゆる.む'), +('緩', 'ゆる.める'), +('憾', 'うら.む'), +('還', 'かえ.る'), +('環', 'わ'), +('韓', 'から'), +('韓', 'いげた'), +('鑑', 'かんが.みる'), +('鑑', 'かがみ'), +('含', 'ふく.む'), +('含', 'ふく.める'), +('玩', 'もちあそ.ぶ'), +('玩', 'もてあそ.ぶ'), +('企', 'くわだ.てる'), +('企', 'たくら.む'), +('忌', 'い.む'), +('忌', 'い.み'), +('忌', 'い.まわしい'), +('奇', 'く.しき'), +('奇', 'あや.しい'), +('奇', 'くし'), +('奇', 'めずら.しい'), +('伎', 'わざ'), +('伎', 'わざおぎ'), +('頑', 'かたく.な'), +('祈', 'いの.る'), +('畿', 'みやこ'), +('棄', 'す.てる'), +('飢', 'う.える'), +('棋', 'ご'), +('毀', 'こぼ.つ'), +('毀', 'こわ.す'), +('毀', 'こぼ.れる'), +('毀', 'こわ.れる'), +('毀', 'そし.る'), +('毀', 'やぶ.る'), +('輝', 'かがや.く'), +('擬', 'まが.い'), +('擬', 'もど.き'), +('戯', 'たわむ.れる'), +('戯', 'ざ.れる'), +('戯', 'じゃ.れる'), +('欺', 'あざむ.く'), +('鬼', 'おに'), +('鬼', 'おに-'), +('幾', 'いく-'), +('幾', 'いく.つ'), +('幾', 'いく.ら'), +('宜', 'よろ.しい'), +('宜', 'よろ.しく'), +('既', 'すで.に'), +('亀', 'かめ'), +('偽', 'いつわ.る'), +('偽', 'にせ'), +('偽', 'いつわ.り'), +('虐', 'しいた.げる'), +('喫', 'の.む'), +('丘', 'おか'), +('窮', 'きわ.める'), +('窮', 'きわ.まる'), +('窮', 'きわ.まり'), +('窮', 'きわ.み'), +('脚', 'あし'), +('却', 'かえ.って'), +('却', 'しりぞ.く'), +('却', 'しりぞ.ける'), +('朽', 'く.ちる'), +('糾', 'ただ.す'), +('吉', 'よし'), +('虚', 'むな.しい'), +('虚', 'うつ.ろ'), +('詰', 'つ.める'), +('詰', 'つ.め'), +('詰', '-づ.め'), +('詰', 'つ.まる'), +('詰', 'つ.む'), +('嗅', 'か.ぐ'), +('距', 'へだ.たる'), +('距', 'けづめ'), +('犠', 'いけにえ'), +('拒', 'こば.む'), +('臼', 'うす'), +('臼', 'うすづ.く'), +('及', 'およ.ぶ'), +('及', 'およ.び'), +('及', 'および'), +('及', 'およ.ぼす'), +('御', 'おん-'), +('御', 'お-'), +('御', 'み-'), +('叫', 'さけ.ぶ'), +('拠', 'よ.る'), +('況', 'まし.て'), +('況', 'いわ.んや'), +('況', 'おもむき'), +('峡', 'はざま'), +('享', 'う.ける'), +('恐', 'おそ.れる'), +('恐', 'おそ.る'), +('恐', 'おそ.ろしい'), +('恐', 'こわ.い'), +('恐', 'こわ.がる'), +('狭', 'せま.い'), +('狭', 'せば.める'), +('狭', 'せば.まる'), +('狭', 'さ'), +('挟', 'はさ.む'), +('挟', 'はさ.まる'), +('挟', 'わきばさ.む'), +('挟', 'さしはさ.む'), +('狂', 'くる.う'), +('狂', 'くる.おしい'), +('狂', 'くるお.しい'), +('脅', 'おびや.かす'), +('脅', 'おど.す'), +('脅', 'おど.かす'), +('矯', 'た.める'), +('驚', 'おどろ.く'), +('驚', 'おどろ.かす'), +('響', 'ひび.く'), +('恭', 'うやうや.しい'), +('暁', 'あかつき'), +('暁', 'さと.る'), +('仰', 'あお.ぐ'), +('仰', 'おお.せ'), +('仰', 'お.っしゃる'), +('仰', 'おっしゃ.る'), +('凝', 'こ.る'), +('凝', 'こ.らす'), +('凝', 'こご.らす'), +('凝', 'こご.らせる'), +('凝', 'こご.る'), +('巾', 'おお.い'), +('巾', 'ちきり'), +('巾', 'きれ'), +('琴', 'こと'), +('僅', 'わず.か'), +('緊', 'し.める'), +('緊', 'し.まる'), +('掘', 'ほ.る'), +('繰', 'く.る'), +('串', 'くし'), +('串', 'つらぬ.く'), +('勲', 'いさお'), +('窟', 'いわや'), +('窟', 'いはや'), +('窟', 'あな'), +('駆', 'か.ける'), +('駆', 'か.る'), +('偶', 'たま'), +('襟', 'えり'), +('謹', 'つつし.む'), +('隅', 'すみ'), +('薫', 'かお.る'), +('茎', 'くき'), +('遇', 'あ.う'), +('惧', 'おそ.れる'), +('屈', 'かが.む'), +('屈', 'かが.める'), +('契', 'ちぎ.る'), +('愚', 'おろ.か'), +('恵', 'めぐ.む'), +('恵', 'めぐ.み'), +('啓', 'ひら.く'), +('啓', 'さと.す'), +('錦', 'にしき'), +('蛍', 'ほたる'), +('渓', 'たに'), +('渓', 'たにがわ'), +('傾', 'かたむ.く'), +('傾', 'かたむ.ける'), +('傾', 'かたぶ.く'), +('傾', 'かた.げる'), +('傾', 'かし.げる'), +('継', 'つ.ぐ'), +('継', 'まま-'), +('掲', 'かか.げる'), +('慶', 'よろこ.び'), +('携', 'たずさ.える'), +('携', 'たずさ.わる'), +('稽', 'かんが.える'), +('稽', 'とど.める'), +('憬', 'あこが.れる'), +('詣', 'けい.する'), +('詣', 'まい.る'), +('詣', 'いた.る'), +('詣', 'もう.でる'), +('献', 'たてまつ.る'), +('鶏', 'にわとり'), +('鶏', 'とり'), +('軒', 'のき'), +('遣', 'つか.う'), +('遣', '-つか.い'), +('遣', '-づか.い'), +('遣', 'つか.わす'), +('遣', 'や.る'), +('嫌', 'きら.う'), +('嫌', 'きら.い'), +('嫌', 'いや'), +('堅', 'かた.い'), +('堅', '-がた.い'), +('傑', 'すぐ.れる'), +('賢', 'かしこ.い'), +('兼', 'か.ねる'), +('兼', '-か.ねる'), +('肩', 'かた'), +('撃', 'う.つ'), +('鯨', 'くじら'), +('憩', 'いこ.い'), +('憩', 'いこ.う'), +('剣', 'つるぎ'), +('拳', 'こぶし'), +('倹', 'つま.しい'), +('倹', 'つづまやか'), +('隙', 'すき'), +('隙', 'す.く'), +('隙', 'す.かす'), +('隙', 'ひま'), +('迎', 'むか.える'), +('圏', 'かこ.い'), +('鍵', 'かぎ'), +('繭', 'まゆ'), +('繭', 'きぬ'), +('幻', 'まぼろし'), +('桁', 'けた'), +('謙', 'へりくだ.る'), +('顕', 'あきらか'), +('顕', 'あらわ.れる'), +('懸', 'か.ける'), +('懸', 'か.かる'), +('玄', 'くろ'), +('玄', 'くろ.い'), +('鼓', 'つづみ'), +('錮', 'ふさ.ぐ'), +('互', 'たが.い'), +('互', 'かたみ.に'), +('舷', 'ふなばた'), +('舷', 'ふなべり'), +('悟', 'さと.る'), +('勾', 'かぎ'), +('勾', 'ま.がる'), +('股', 'また'), +('股', 'もも'), +('顧', 'かえり.みる'), +('枯', 'か.れる'), +('枯', 'か.らす'), +('誇', 'ほこ.る'), +('虎', 'とら'), +('弦', 'つる'), +('呉', 'く.れる'), +('呉', 'くれ'), +('貢', 'みつ.ぐ'), +('拘', 'かか.わる'), +('控', 'ひか.える'), +('控', 'ひか.え'), +('巧', 'たく.み'), +('巧', 'たく.む'), +('巧', 'うま.い'), +('攻', 'せ.める'), +('肯', 'がえんじ.る'), +('喉', 'のど'), +('荒', 'あ.らす'), +('荒', 'あ.れる'), +('荒', 'あら.い'), +('荒', 'すさ.ぶ'), +('荒', 'すさ.む'), +('荒', 'あ.らし'), +('甲', 'きのえ'), +('恒', 'つね'), +('恒', 'つねに'), +('抗', 'あらが.う'), +('更', 'さら'), +('更', 'さら.に'), +('更', 'ふ.ける'), +('更', 'ふ.かす'), +('江', 'え'), +('孔', 'あな'), +('雇', 'やと.う'), +('慌', 'あわ.てる'), +('慌', 'あわ.ただしい'), +('梗', 'ふさぐ'), +('梗', 'やまにれ'), +('梗', 'おおむね'), +('絞', 'しぼ.る'), +('絞', 'し.める'), +('絞', 'し.まる'), +('項', 'うなじ'), +('溝', 'みぞ'), +('硬', 'かた.い'), +('綱', 'つな'), +('稿', 'わら'), +('稿', 'したがき'), +('傲', 'おご.る'), +('傲', 'あなど.る'), +('乞', 'こ.う'), +('克', 'か.つ'), +('込', '-こ.む'), +('込', 'こ.む'), +('込', 'こ.み'), +('込', '-こ.み'), +('込', 'こ.める'), +('豪', 'えら.い'), +('駒', 'こま'), +('酷', 'ひど.い'), +('頃', 'ころ'), +('頃', 'ごろ'), +('頃', 'しばら.く'), +('痕', 'あと'), +('魂', 'たましい'), +('魂', 'たま'), +('墾', 'は.る'), +('墾', 'ひら.く'), +('恨', 'うら.む'), +('恨', 'うら.めしい'), +('懇', 'ねんご.ろ'), +('唆', 'そそ.る'), +('唆', 'そそのか.す'), +('沙', 'すな'), +('沙', 'よなげる'), +('挫', 'くじ.く'), +('挫', 'くじ.ける'), +('鎖', 'くさり'), +('鎖', 'とざ.す'), +('砕', 'くだ.く'), +('砕', 'くだ.ける'), +('詐', 'いつわ.る'), +('采', 'と.る'), +('采', 'いろどり'), +('彩', 'いろど.る'), +('斎', 'とき'), +('斎', 'つつし.む'), +('斎', 'ものいみ'), +('斎', 'い.む'), +('斎', 'いわ.う'), +('斎', 'いつ.く'), +('催', 'もよう.す'), +('催', 'もよお.す'), +('塞', 'ふさ.ぐ'), +('塞', 'とりで'), +('塞', 'み.ちる'), +('歳', 'とし'), +('歳', 'とせ'), +('歳', 'よわい'), +('載', 'の.せる'), +('載', 'の.る'), +('剤', 'かる'), +('剤', 'けず.る'), +('柵', 'しがら.む'), +('柵', 'しがらみ'), +('柵', 'とりで'), +('柵', 'やらい'), +('酢', 'す'), +('搾', 'しぼ.る'), +('削', 'けず.る'), +('削', 'はつ.る'), +('削', 'そ.ぐ'), +('恣', 'ほしいまま'), +('拶', 'せま.る'), +('惨', 'みじ.め'), +('惨', 'いた.む'), +('惨', 'むご.い'), +('撮', 'と.る'), +('撮', 'つま.む'), +('撮', '-ど.り'), +('擦', 'す.る'), +('擦', 'す.れる'), +('擦', '-ず.れ'), +('擦', 'こす.る'), +('擦', 'こす.れる'), +('桟', 'かけはし'), +('脂', 'あぶら'), +('刺', 'さ.す'), +('刺', 'さ.さる'), +('刺', 'さ.し'), +('刺', 'さし'), +('刺', 'とげ'), +('旨', 'むね'), +('旨', 'うま.い'), +('咲', 'さ.く'), +('咲', '-ざき'), +('暫', 'しばら.く'), +('傘', 'かさ'), +('紫', 'むらさき'), +('伺', 'うかが.う'), +('施', 'ほどこ.す'), +('摯', 'いた.る'), +('斬', 'き.る'), +('雌', 'め-'), +('雌', 'めす'), +('雌', 'めん'), +('嫉', 'そね.む'), +('嫉', 'ねた.む'), +('嫉', 'にく.む'), +('賜', 'たまわ.る'), +('賜', 'たま.う'), +('賜', 'たも.う'), +('疾', 'はや.い'), +('餌', 'え'), +('餌', 'えば'), +('餌', 'えさ'), +('餌', 'もち'), +('執', 'と.る'), +('侍', 'さむらい'), +('侍', 'はべ.る'), +('慈', 'いつく.しむ'), +('芝', 'しば'), +('漆', 'うるし'), +('諮', 'はか.る'), +('湿', 'しめ.る'), +('湿', 'しめ.す'), +('湿', 'うるお.う'), +('湿', 'うるお.す'), +('斜', 'なな.め'), +('斜', 'はす'), +('邪', 'よこし.ま'), +('煮', 'に.る'), +('煮', '-に'), +('煮', 'に.える'), +('煮', 'に.やす'), +('蛇', 'へび'), +('酌', 'く.む'), +('釈', 'とく'), +('釈', 'す.てる'), +('釈', 'ゆる.す'), +('朱', 'あけ'), +('狩', 'か.る'), +('狩', 'か.り'), +('狩', '-が.り'), +('殊', 'こと'), +('遮', 'さえぎ.る'), +('腫', 'は.れる'), +('腫', 'は.れ'), +('腫', 'は.らす'), +('腫', 'はれもの'), +('寂', 'さび'), +('寂', 'さび.しい'), +('寂', 'さび.れる'), +('寂', 'さみ.しい'), +('呪', 'まじな.う'), +('呪', 'のろ.い'), +('呪', 'まじな.い'), +('呪', 'のろ.う'), +('寿', 'ことぶき'), +('寿', 'ことぶ.く'), +('寿', 'ことほ.ぐ'), +('趣', 'おもむき'), +('趣', 'おもむ.く'), +('囚', 'とら.われる'), +('舟', 'ふね'), +('舟', 'ふな-'), +('舟', '-ぶね'), +('珠', 'たま'), +('臭', 'くさ.い'), +('臭', '-くさ.い'), +('臭', 'にお.う'), +('臭', 'にお.い'), +('秀', 'ひい.でる'), +('羞', 'はじ.る'), +('羞', 'すすめ.る'), +('羞', 'は.ずかしい'), +('愁', 'うれ.える'), +('愁', 'うれ.い'), +('酬', 'むく.いる'), +('袖', 'そで'), +('醜', 'みにく.い'), +('醜', 'しこ'), +('蹴', 'け.る'), +('襲', 'おそ.う'), +('襲', 'かさ.ね'), +('充', 'あ.てる'), +('充', 'み.たす'), +('渋', 'しぶ'), +('渋', 'しぶ.い'), +('渋', 'しぶ.る'), +('汁', 'しる'), +('汁', '-しる'), +('汁', 'つゆ'), +('獣', 'けもの'), +('獣', 'けだもの'), +('銃', 'つつ'), +('柔', 'やわ.らか'), +('柔', 'やわ.らかい'), +('柔', 'やわ'), +('柔', 'やわ.ら'), +('淑', 'しと.やか'), +('升', 'ます'), +('粛', 'つつし.む'), +('潤', 'うるお.う'), +('潤', 'うるお.す'), +('潤', 'うる.む'), +('徐', 'おもむ.ろに'), +('緒', 'お'), +('緒', 'いとぐち'), +('召', 'め.す'), +('叙', 'つい.ず'), +('叙', 'ついで'), +('盾', 'たて'), +('床', 'とこ'), +('床', 'ゆか'), +('巡', 'めぐ.る'), +('巡', 'めぐ.り'), +('瞬', 'またた.く'), +('瞬', 'まじろ.ぐ'), +('匠', 'たくみ'), +('肖', 'あやか.る'), +('如', 'ごと.し'), +('昇', 'のぼ.る'), +('宵', 'よい'), +('尚', 'なお'), +('沼', 'ぬま'), +('祥', 'さいわ.い'), +('祥', 'きざ.し'), +('祥', 'よ.い'), +('祥', 'つまび.らか'), +('渉', 'わた.る'), +('称', 'たた.える'), +('称', 'とな.える'), +('称', 'あ.げる'), +('称', 'かな.う'), +('称', 'はか.り'), +('称', 'はか.る'), +('称', 'ほめ.る'), +('掌', 'てのひら'), +('掌', 'たなごころ'), +('焦', 'こ.げる'), +('焦', 'こ.がす'), +('焦', 'こ.がれる'), +('焦', 'あせ.る'), +('焦', 'じ.れる'), +('焦', 'じ.らす'), +('奨', 'すす.める'), +('詳', 'くわ.しい'), +('詳', 'つまび.らか'), +('衝', 'つ.く'), +('詔', 'みことのり'), +('償', 'つぐな.う'), +('剰', 'あまつさえ'), +('剰', 'あま.り'), +('剰', 'あま.る'), +('壌', 'つち'), +('憧', 'あこが.れる'), +('丈', 'たけ'), +('丈', 'だけ'), +('浄', 'きよ.める'), +('浄', 'きよ.い'), +('畳', 'たた.む'), +('畳', 'たたみ'), +('畳', 'かさ.なる'), +('醸', 'かも.す'), +('鐘', 'かね'), +('拭', 'ぬぐ.う'), +('拭', 'ふ.く'), +('嬢', 'むすめ'), +('殖', 'ふ.える'), +('殖', 'ふ.やす'), +('嘱', 'しょく.する'), +('嘱', 'たの.む'), +('飾', 'かざ.る'), +('飾', 'かざ.り'), +('辱', 'はずかし.める'), +('触', 'ふ.れる'), +('触', 'さわ.る'), +('触', 'さわ'), +('伸', 'の.びる'), +('伸', 'の.ばす'), +('伸', 'の.べる'), +('伸', 'の.す'), +('侵', 'おか.す'), +('辛', 'から.い'), +('辛', 'つら.い'), +('辛', '-づら.い'), +('辛', 'かのと'), +('唇', 'くちびる'), +('津', 'つ'), +('尻', 'しり'), +('振', 'ふ.る'), +('振', 'ふ.れる'), +('振', 'ふ.るう'), +('浸', 'ひた.す'), +('浸', 'ひた.る'), +('浸', 'つ.かる'), +('譲', 'ゆず.る'), +('炊', 'た.く'), +('炊', '-だ.き'), +('酔', 'よ.う'), +('酔', 'よ.い'), +('酔', 'よ'), +('寝', 'ね.る'), +('寝', 'ね.かす'), +('寝', 'い.ぬ'), +('寝', 'みたまや'), +('寝', 'や.める'), +('吹', 'ふ.く'), +('刃', 'は'), +('刃', 'やいば'), +('刃', 'き.る'), +('須', 'すべから.く'), +('須', 'すべし'), +('須', 'ひげ'), +('須', 'まつ'), +('須', 'もち.いる'), +('須', 'もと.める'), +('粋', 'いき'), +('遂', 'と.げる'), +('遂', 'つい.に'), +('衰', 'おとろ.える'), +('尋', 'たず.ねる'), +('尋', 'ひろ'), +('薪', 'たきぎ'), +('薪', 'まき'), +('甚', 'はなは.だ'), +('甚', 'はなは.だしい'), +('尽', 'つ.きる'), +('尽', 'つ.くす'), +('尽', 'つ.かす'), +('尽', '-づ.く'), +('尽', '-ず.く'), +('尽', 'ことごと.く'), +('震', 'ふる.う'), +('震', 'ふる.える'), +('震', 'ふる.わせる'), +('震', 'ふる.わす'), +('睡', 'ねむ.る'), +('睡', 'ねむ.い'), +('穂', 'ほ'), +('慎', 'つつし.む'), +('慎', 'つつ.ましい'), +('慎', 'つつし'), +('慎', 'つつし.み'), +('診', 'み.る'), +('崇', 'あが.める'), +('随', 'まにま.に'), +('随', 'したが.う'), +('審', 'つまび.らか'), +('審', 'つぶさ.に'), +('裾', 'すそ'), +('杉', 'すぎ'), +('据', 'す.える'), +('据', 'す.わる'), +('瀬', 'せ'), +('是', 'これ'), +('是', 'この'), +('是', 'ここ'), +('凄', 'さむ.い'), +('凄', 'すご.い'), +('凄', 'すさ.まじい'), +('斉', 'そろ.う'), +('斉', 'ひと.しい'), +('斉', 'ひと.しく'), +('斉', 'あたる'), +('斉', 'はやい'), +('逝', 'ゆ.く'), +('逝', 'い.く'), +('婿', 'むこ'), +('請', 'こ.う'), +('請', 'う.ける'), +('枢', 'とぼそ'), +('枢', 'からくり'), +('醒', 'さ.ます'), +('醒', 'さ.める'), +('斥', 'しりぞ.ける'), +('戚', 'いた.む'), +('戚', 'うれ.える'), +('戚', 'みうち'), +('脊', 'せ'), +('脊', 'せい'), +('跡', 'あと'), +('惜', 'お.しい'), +('惜', 'お.しむ'), +('誓', 'ちか.う'), +('窃', 'ぬす.む'), +('窃', 'ひそ.か'), +('摂', 'おさ.める'), +('摂', 'かね.る'), +('摂', 'と.る'), +('扇', 'おうぎ'), +('拙', 'つたな.い'), +('占', 'し.める'), +('占', 'うらな.う'), +('旋', 'め.ぐる'), +('旋', 'いばり'), +('羨', 'うらや.む'), +('羨', 'あまり'), +('煎', 'せん.じる'), +('煎', 'い.る'), +('煎', 'に.る'), +('遷', 'うつ.る'), +('遷', 'うつ.す'), +('遷', 'みやこがえ'), +('詮', 'せん.ずる'), +('詮', 'かい'), +('詮', 'あき.らか'), +('禅', 'しずか'), +('禅', 'ゆず.る'), +('阻', 'はば.む'), +('疎', 'うと.い'), +('疎', 'うと.む'), +('疎', 'まば.ら'), +('漸', 'ようや.く'), +('漸', 'やや'), +('漸', 'ようよ.う'), +('漸', 'すす.む'), +('粗', 'あら.い'), +('粗', 'あら-'), +('繕', 'つくろ.う'), +('狙', 'ねら.う'), +('狙', 'ねら.い'), +('践', 'ふ.む'), +('薦', 'すす.める'), +('措', 'お.く'), +('膳', 'かしわ'), +('膳', 'すす.める'), +('膳', 'そな.える'), +('鮮', 'あざ.やか'), +('箋', 'ふだ'), +('潜', 'ひそ.む'), +('潜', 'もぐ.る'), +('潜', 'かく.れる'), +('潜', 'くぐ.る'), +('潜', 'ひそ.める'), +('遡', 'さかのぼ.る'), +('掃', 'は.く'), +('爽', 'あき.らか'), +('爽', 'さわ.やか'), +('爽', 'たがう'), +('塑', 'でく'), +('桑', 'くわ'), +('挿', 'さ.す'), +('挿', 'はさ.む'), +('遭', 'あ.う'), +('遭', 'あ.わせる'), +('曽', 'かつ'), +('曽', 'かつて'), +('曽', 'すなわち'), +('壮', 'さかん'), +('訴', 'うった.える'), +('捜', 'さが.す'), +('荘', 'ほうき'), +('荘', 'おごそ.か'), +('葬', 'ほうむ.る'), +('礎', 'いしずえ'), +('喪', 'も'), +('双', 'ふた'), +('双', 'たぐい'), +('双', 'ならぶ'), +('双', 'ふたつ'), +('痩', 'や.せる'), +('踪', 'あと'), +('槽', 'ふね'), +('汰', 'おご.る'), +('汰', 'にご.る'), +('汰', 'よな.げる'), +('燥', 'はしゃ.ぐ'), +('促', 'うなが.す'), +('贈', 'おく.る'), +('遜', 'したが.う'), +('遜', 'へりくだ.る'), +('遜', 'ゆず.る'), +('憎', 'にく.む'), +('憎', 'にく.い'), +('憎', 'にく.らしい'), +('憎', 'にく.しみ'), +('耐', 'た.える'), +('騒', 'さわ.ぐ'), +('騒', 'うれい'), +('騒', 'さわ.がしい'), +('霜', 'しも'), +('捉', 'とら.える'), +('怠', 'おこた.る'), +('怠', 'なま.ける'), +('藻', 'も'), +('堕', 'お.ちる'), +('堕', 'くず.す'), +('堕', 'くず.れる'), +('即', 'つ.く'), +('即', 'つ.ける'), +('即', 'すなわ.ち'), +('堆', 'うずたか.い'), +('袋', 'ふくろ'), +('替', 'か.える'), +('替', 'か.え-'), +('替', 'か.わる'), +('唾', 'つば'), +('唾', 'つばき'), +('滞', 'とどこお.る'), +('択', 'えら.ぶ'), +('滝', 'たき'), +('戴', 'いただ.く'), +('胆', 'きも'), +('旦', 'あき.らか'), +('旦', 'あきら'), +('旦', 'ただし'), +('旦', 'あさ'), +('旦', 'あした'), +('託', 'かこつ.ける'), +('託', 'かこ.つ'), +('託', 'かこ.つける'), +('綻', 'ほころ.びる'), +('誰', 'だれ'), +('誰', 'たれ'), +('誰', 'た'), +('拓', 'ひら.く'), +('濯', 'すす.ぐ'), +('濯', 'ゆす.ぐ'), +('脱', 'ぬ.ぐ'), +('脱', 'ぬ.げる'), +('嘆', 'なげ.く'), +('嘆', 'なげ.かわしい'), +('沢', 'さわ'), +('沢', 'うるお.い'), +('沢', 'うるお.す'), +('沢', 'つや'), +('端', 'はし'), +('端', 'は'), +('端', 'はた'), +('端', '-ばた'), +('端', 'はな'), +('棚', 'たな'), +('棚', '-だな'), +('弾', 'ひ.く'), +('弾', '-ひ.き'), +('弾', 'はず.む'), +('弾', 'たま'), +('弾', 'はじ.く'), +('弾', 'はじ.ける'), +('弾', 'ただ.す'), +('弾', 'はじ.きゆみ'), +('奪', 'うば.う'), +('恥', 'は.じる'), +('恥', 'はじ'), +('恥', 'は.じらう'), +('恥', 'は.ずかしい'), +('丹', 'に'), +('鍛', 'きた.える'), +('但', 'ただ.し'), +('稚', 'いとけない'), +('稚', 'おさない'), +('稚', 'おくて'), +('稚', 'おでる'), +('淡', 'あわ.い'), +('痴', 'し.れる'), +('痴', 'おろか'), +('緻', 'こまか.い'), +('遅', 'おく.れる'), +('遅', 'おく.らす'), +('遅', 'おそ.い'), +('致', 'いた.す'), +('濁', 'にご.る'), +('濁', 'にご.す'), +('蓄', 'たくわ.える'), +('眺', 'なが.める'), +('弔', 'とむら.う'), +('弔', 'とぶら.う'), +('聴', 'き.く'), +('聴', 'ゆる.す'), +('挑', 'いど.む'), +('跳', 'は.ねる'), +('跳', 'と.ぶ'), +('跳', '-と.び'), +('酎', 'かも.す'), +('鋳', 'い.る'), +('勅', 'いまし.める'), +('勅', 'みことのり'), +('澄', 'す.む'), +('澄', 'す.ます'), +('澄', '-す.ます'), +('彫', 'ほ.る'), +('彫', '-ぼ.り'), +('徴', 'しるし'), +('嘲', 'あざけ.る'), +('釣', 'つ.る'), +('釣', 'つ.り'), +('釣', 'つ.り-'), +('抽', 'ひき-'), +('沈', 'しず.む'), +('沈', 'しず.める'), +('貼', 'は.る'), +('貼', 'つ.く'), +('懲', 'こ.りる'), +('懲', 'こ.らす'), +('懲', 'こ.らしめる'), +('超', 'こ.える'), +('超', 'こ.す'), +('鎮', 'しず.める'), +('鎮', 'しず.まる'), +('鎮', 'おさえ'), +('珍', 'めずら.しい'), +('珍', 'たから'), +('塚', 'つか'), +('塚', '-づか'), +('墜', 'お.ちる'), +('墜', 'お.つ'), +('坪', 'つぼ'), +('捗', 'はかど.る'), +('椎', 'つち'), +('椎', 'う.つ'), +('爪', 'つめ'), +('爪', 'つま-'), +('漬', 'つ.ける'), +('漬', 'つ.かる'), +('漬', '-づ.け'), +('漬', '-づけ'), +('陳', 'ひ.ねる'), +('鶴', 'つる'), +('邸', 'やしき'), +('貞', 'ただし.い'), +('貞', 'さだ'), +('逓', 'かわ.る'), +('逓', 'たがいに'), +('帝', 'みかど'), +('堤', 'つつみ'), +('訂', 'ただ.す'), +('諦', 'あきら.める'), +('諦', 'つまびらか'), +('諦', 'まこと'), +('締', 'し.まる'), +('締', 'し.まり'), +('締', 'し.める'), +('締', '-し.め'), +('締', '-じ.め'), +('摘', 'つ.む'), +('溺', 'いばり'), +('溺', 'おぼ.れる'), +('滴', 'しずく'), +('滴', 'したた.る'), +('唐', 'から'), +('哲', 'さとい'), +('哲', 'あきらか'), +('添', 'そ.える'), +('添', 'そ.う'), +('怒', 'いか.る'), +('怒', 'おこ.る'), +('凍', 'こお.る'), +('凍', 'こご.える'), +('凍', 'こご.る'), +('凍', 'い.てる'), +('凍', 'し.みる'), +('倒', 'たお.れる'), +('倒', '-だお.れ'), +('倒', 'たお.す'), +('倒', 'さかさま'), +('倒', 'さかさ'), +('倒', 'さかしま'), +('桃', 'もも'), +('途', 'みち'), +('渡', 'わた.る'), +('渡', '-わた.る'), +('渡', 'わた.す'), +('透', 'す.く'), +('透', 'す.かす'), +('透', 'す.ける'), +('透', 'とう.る'), +('透', 'とう.す'), +('陶', 'すえ'), +('到', 'いた.る'), +('妬', 'ねた.む'), +('妬', 'そね.む'), +('妬', 'つも.る'), +('妬', 'ふさ.ぐ'), +('盗', 'ぬす.む'), +('盗', 'ぬす.み'), +('塡', 'はま.る'), +('塡', 'うず.める'), +('塡', 'は.める'), +('塡', 'ふさ.ぐ'), +('奴', 'やつ'), +('奴', 'やっこ'), +('吐', 'は.く'), +('吐', 'つ.く'), +('逃', 'に.げる'), +('逃', 'に.がす'), +('逃', 'のが.す'), +('逃', 'のが.れる'), +('塗', 'ぬ.る'), +('塗', 'ぬ.り'), +('塗', 'まみ.れる'), +('泥', 'どろ'), +('泥', 'なず.む'), +('殿', 'との'), +('殿', '-どの'), +('賭', 'か.ける'), +('賭', 'かけ'), +('悼', 'いた.む'), +('踏', 'ふ.む'), +('踏', 'ふ.まえる'), +('棟', 'むね'), +('棟', 'むな-'), +('筒', 'つつ'), +('稲', 'いね'), +('稲', 'いな-'), +('那', 'なに'), +('那', 'なんぞ'), +('那', 'いかん'), +('篤', 'あつ.い'), +('曇', 'くも.る'), +('丼', 'どんぶり'), +('謎', 'なぞ'), +('豚', 'ぶた'), +('突', 'つ.く'), +('匿', 'かくま.う'), +('頓', 'にわか.に'), +('頓', 'とん.と'), +('頓', 'つまず.く'), +('頓', 'とみ.に'), +('頓', 'ぬかずく'), +('屯', 'たむろ'), +('鈍', 'にぶ.い'), +('鈍', 'にぶ.る'), +('鈍', 'にぶ-'), +('鈍', 'なま.る'), +('鈍', 'なまく.ら'), +('藤', 'ふじ'), +('峠', 'とうげ'), +('貪', 'むさぼ.る'), +('鍋', 'なべ'), +('凸', 'でこ'), +('瞳', 'ひとみ'), +('騰', 'あが.る'), +('騰', 'のぼ.る'), +('尼', 'あま'), +('弐', 'ふた.つ'), +('弐', 'そえ'), +('闘', 'たたか.う'), +('闘', 'あらそ.う'), +('虹', 'にじ'), +('軟', 'やわ.らか'), +('軟', 'やわ.らかい'), +('洞', 'ほら'), +('尿', 'ゆばり'), +('尿', 'いばり'), +('尿', 'しと'), +('妊', 'はら.む'), +('妊', 'みごも.る'), +('匂', 'にお.う'), +('匂', 'にお.い'), +('匂', 'にお.わせる'), +('忍', 'しの.ぶ'), +('忍', 'しの.ばせる'), +('寧', 'むし.ろ'), +('粘', 'ねば.る'), +('濃', 'こ.い'), +('捻', 'ね.じる'), +('捻', 'ねじ.る'), +('捻', 'ひね.くる'), +('捻', 'ひね.る'), +('悩', 'なや.む'), +('悩', 'なや.ます'), +('悩', 'なや.ましい'), +('悩', 'なやみ'), +('覇', 'はたがしら'), +('縛', 'しば.る'), +('婆', 'ばば'), +('婆', 'ばあ'), +('廃', 'すた.れる'), +('廃', 'すた.る'), +('培', 'つちか.う'), +('薄', 'うす.い'), +('薄', 'うす-'), +('薄', '-うす'), +('薄', 'うす.める'), +('薄', 'うす.まる'), +('薄', 'うす.らぐ'), +('薄', 'うす.ら-'), +('薄', 'うす.れる'), +('薄', 'すすき'), +('輩', '-ばら'), +('輩', 'やから'), +('輩', 'やかい'), +('輩', 'ともがら'), +('迫', 'せま.る'), +('剝', 'はぐ'), +('剝', 'むく'), +('剝', 'はげる'), +('媒', 'なこうど'), +('泊', 'と.まる'), +('泊', 'と.める'), +('杯', 'さかずき'), +('罵', 'ののし.る'), +('爆', 'は.ぜる'), +('箸', 'はし'), +('髪', 'かみ'), +('抜', 'ぬ.く'), +('抜', '-ぬ.く'), +('抜', 'ぬ.き'), +('抜', 'ぬ.ける'), +('抜', 'ぬ.かす'), +('抜', 'ぬ.かる'), +('氾', 'ひろ.がる'), +('伐', 'き.る'), +('伐', 'そむ.く'), +('伐', 'う.つ'), +('肌', 'はだ'), +('罰', 'ばっ.する'), +('帆', 'ほ'), +('畔', 'あぜ'), +('畔', 'くろ'), +('畔', 'ほとり'), +('伴', 'ともな.う'), +('汎', 'ただよ.う'), +('汎', 'ひろ.い'), +('斑', 'ふ'), +('斑', 'まだら'), +('頒', 'わ.かつ'), +('頒', 'わ.ける'), +('煩', 'わずら.う'), +('煩', 'わずら.わす'), +('煩', 'うるさ.がる'), +('煩', 'うるさ.い'), +('蛮', 'えびす'), +('妃', 'きさき'), +('繁', 'しげ.る'), +('繁', 'しげ.く'), +('疲', 'つか.れる'), +('疲', '-づか.れ'), +('疲', 'つか.らす'), +('卑', 'いや.しい'), +('卑', 'いや.しむ'), +('卑', 'いや.しめる'), +('彼', 'かれ'), +('彼', 'かの'), +('彼', 'か.の'), +('被', 'こうむ.る'), +('被', 'おお.う'), +('被', 'かぶ.る'), +('被', 'かぶ.せる'), +('扉', 'とびら'), +('碑', 'いしぶみ'), +('罷', 'まか.り-'), +('罷', 'や.める'), +('避', 'さ.ける'), +('避', 'よ.ける'), +('尾', 'お'), +('扶', 'たす.ける'), +('眉', 'まゆ'), +('肘', 'ひじ'), +('姫', 'ひめ'), +('姫', 'ひめ-'), +('描', 'えが.く'), +('描', 'か.く'), +('漂', 'ただよ.う'), +('怖', 'こわ.い'), +('怖', 'こわ.がる'), +('怖', 'お.じる'), +('怖', 'おそ.れる'), +('浜', 'はま'), +('匹', 'ひき'), +('瓶', 'かめ'), +('瓶', 'へい'), +('附', 'つ.ける'), +('附', 'つ.く'), +('苗', 'なえ'), +('苗', 'なわ-'), +('猫', 'ねこ'), +('頻', 'しき.りに'), +('赴', 'おもむ.く'), +('微', 'かす.か'), +('浮', 'う.く'), +('浮', 'う.かれる'), +('浮', 'う.かぶ'), +('浮', 'う.かべる'), +('敏', 'さとい'), +('訃', 'しらせ'), +('膝', 'ひざ'), +('腐', 'くさ.る'), +('腐', '-くさ.る'), +('腐', 'くさ.れる'), +('腐', 'くさ.れ'), +('腐', 'くさ.らす'), +('腐', 'くさ.す'), +('膚', 'はだ'), +('敷', 'し.く'), +('敷', '-し.き'), +('舞', 'ま.う'), +('舞', '-ま.う'), +('舞', 'まい'), +('伏', 'ふ.せる'), +('伏', 'ふ.す'), +('沸', 'わ.く'), +('沸', 'わ.かす'), +('噴', 'ふ.く'), +('憤', 'いきどお.る'), +('柄', 'がら'), +('柄', 'え'), +('柄', 'つか'), +('併', 'あわ.せる'), +('払', 'はら.う'), +('払', '-はら.い'), +('払', '-ばら.い'), +('幅', 'はば'), +('普', 'あまね.く'), +('普', 'あまねし'), +('紛', 'まぎ.れる'), +('紛', '-まぎ.れ'), +('紛', 'まぎ.らす'), +('紛', 'まぎ.らわす'), +('紛', 'まぎ.らわしい'), +('侮', 'あなど.る'), +('侮', 'あなず.る'), +('覆', 'おお.う'), +('覆', 'くつがえ.す'), +('覆', 'くつがえ.る'), +('丙', 'ひのえ'), +('幣', 'ぬさ'), +('蔽', 'おお.う'), +('蔽', 'おお.い'), +('璧', 'たま'), +('壁', 'かべ'), +('癖', 'くせ'), +('癖', 'くせ.に'), +('偏', 'かたよ.る'), +('蔑', 'ないがしろ'), +('蔑', 'なみ.する'), +('蔑', 'くらい'), +('蔑', 'さげす.む'), +('遍', 'あまね.く'), +('餅', 'もち'), +('餅', 'もちい'), +('哺', 'はぐく.む'), +('哺', 'ふく.む'), +('捕', 'と.らえる'), +('捕', 'と.らわれる'), +('捕', 'と.る'), +('捕', 'とら.える'), +('捕', 'とら.われる'), +('捕', 'つか.まえる'), +('捕', 'つか.まる'), +('募', 'つの.る'), +('芳', 'かんば.しい'), +('奉', 'たてまつ.る'), +('奉', 'まつ.る'), +('奉', 'ほう.ずる'), +('邦', 'くに'), +('慕', 'した.う'), +('抱', 'だ.く'), +('抱', 'いだ.く'), +('抱', 'かか.える'), +('倣', 'なら.う'), +('泡', 'あわ'), +('蜂', 'はち'), +('峰', 'みね'), +('峰', 'ね'), +('縫', 'ぬ.う'), +('飽', 'あ.きる'), +('飽', 'あ.かす'), +('飽', 'あ.く'), +('妨', 'さまた.げる'), +('忙', 'いそが.しい'), +('忙', 'せわ.しい'), +('忙', 'おそ.れる'), +('忙', 'うれえるさま'), +('乏', 'とぼ.しい'), +('乏', 'とも.しい'), +('某', 'それがし'), +('某', 'なにがし'), +('房', 'ふさ'), +('傍', 'かたわ.ら'), +('傍', 'わき'), +('傍', 'おか-'), +('傍', 'はた'), +('傍', 'そば'), +('冒', 'おか.す'), +('墨', 'すみ'), +('膨', 'ふく.らむ'), +('膨', 'ふく.れる'), +('紡', 'つむ.ぐ'), +('崩', 'くず.れる'), +('崩', '-くず.れ'), +('崩', 'くず.す'), +('褒', 'ほ.める'), +('帽', 'ずきん'), +('帽', 'おお.う'), +('没', 'おぼ.れる'), +('没', 'しず.む'), +('没', 'ない'), +('頰', 'ほお'), +('頰', 'ほほ'), +('勃', 'おこ.る'), +('勃', 'にわかに'), +('僕', 'しもべ'), +('堀', 'ほり'), +('朴', 'ほう'), +('朴', 'ほお'), +('朴', 'えのき'), +('奔', 'はし.る'), +('謀', 'はか.る'), +('謀', 'たばか.る'), +('謀', 'はかりごと'), +('睦', 'むつ.まじい'), +('睦', 'むつ.む'), +('睦', 'むつ.ぶ'), +('貌', 'かたち'), +('貌', 'かたどる'), +('麻', 'あさ'), +('摩', 'ま.する'), +('摩', 'さす.る'), +('摩', 'す.る'), +('翻', 'ひるがえ.る'), +('翻', 'ひるがえ.す'), +('磨', 'みが.く'), +('磨', 'す.る'), +('凡', 'およ.そ'), +('凡', 'おうよ.そ'), +('凡', 'すべ.て'), +('埋', 'う.める'), +('埋', 'う.まる'), +('埋', 'う.もれる'), +('埋', 'うず.める'), +('埋', 'うず.まる'), +('埋', 'い.ける'), +('昧', 'くら.い'), +('昧', 'むさぼ.る'), +('枕', 'まくら'), +('又', 'また'), +('又', 'また-'), +('又', 'また.の-'), +('岬', 'みさき'), +('漫', 'みだり.に'), +('漫', 'そぞ.ろ'), +('妙', 'たえ'), +('冥', 'くら.い'), +('娘', 'むすめ'), +('娘', 'こ'), +('眠', 'ねむ.る'), +('眠', 'ねむ.い'), +('麺', 'むぎこ'), +('滅', 'ほろ.びる'), +('滅', 'ほろ.ぶ'), +('滅', 'ほろ.ぼす'), +('妄', 'みだ.りに'), +('茂', 'しげ.る'), +('盲', 'めくら'), +('免', 'まぬか.れる'), +('免', 'まぬが.れる'), +('網', 'あみ'), +('矛', 'ほこ'), +('弥', 'や'), +('弥', 'いや'), +('弥', 'いよ.いよ'), +('弥', 'わた.る'), +('黙', 'だま.る'), +('黙', 'もだ.す'), +('冶', 'い.る'), +('躍', 'おど.る'), +('霧', 'きり'), +('闇', 'やみ'), +('闇', 'くら.い'), +('愉', 'たの.しい'), +('愉', 'たの.しむ'), +('喩', 'たと.える'), +('喩', 'さと.す'), +('唯', 'ただ'), +('癒', 'い.える'), +('癒', 'いや.す'), +('癒', 'い.やす'), +('幽', 'ふか.い'), +('幽', 'かす.か'), +('幽', 'くら.い'), +('幽', 'しろ.い'), +('諭', 'さと.す'), +('雄', 'お-'), +('雄', 'おす'), +('雄', 'おん'), +('湧', 'わ.く'), +('猶', 'なお'), +('憂', 'うれ.える'), +('憂', 'うれ.い'), +('憂', 'う.い'), +('憂', 'う.き'), +('融', 'と.ける'), +('融', 'と.かす'), +('誉', 'ほま.れ'), +('誉', 'ほ.める'), +('妖', 'あや.しい'), +('妖', 'なま.めく'), +('妖', 'わざわ.い'), +('誘', 'さそ.う'), +('誘', 'いざな.う'), +('揚', 'あ.げる'), +('揚', '-あ.げ'), +('揚', 'あ.がる'), +('与', 'あた.える'), +('与', 'あずか.る'), +('与', 'くみ.する'), +('与', 'ともに'), +('揺', 'ゆ.れる'), +('揺', 'ゆ.る'), +('揺', 'ゆ.らぐ'), +('揺', 'ゆ.るぐ'), +('揺', 'ゆ.する'), +('揺', 'ゆ.さぶる'), +('揺', 'ゆ.すぶる'), +('揺', 'うご.く'), +('溶', 'と.ける'), +('溶', 'と.かす'), +('溶', 'と.く'), +('瘍', 'かさ'), +('窯', 'かま'), +('踊', 'おど.る'), +('謡', 'うた.い'), +('謡', 'うた.う'), +('沃', 'そそ.ぐ'), +('腰', 'こし'), +('拉', 'らっ.する'), +('拉', 'ひし.ぐ'), +('拉', 'くだ.く'), +('抑', 'おさ.える'), +('羅', 'うすもの'), +('翼', 'つばさ'), +('頼', 'たの.む'), +('頼', 'たの.もしい'), +('頼', 'たよ.る'), +('絡', 'から.む'), +('絡', 'から.まる'), +('雷', 'かみなり'), +('雷', 'いかずち'), +('雷', 'いかづち'), +('藍', 'あい'), +('裸', 'はだか'), +('履', 'は.く'), +('辣', 'から.い'), +('濫', 'みだ.りに'), +('濫', 'みだ.りがましい'), +('欄', 'てすり'), +('離', 'はな.れる'), +('離', 'はな.す'), +('柳', 'やなぎ'), +('慄', 'ふる.える'), +('慄', 'おそ.れる'), +('慄', 'おのの.く'), +('竜', 'たつ'), +('竜', 'いせ'), +('粒', 'つぶ'), +('侶', 'とも'), +('虜', 'とりこ'), +('虜', 'とりく'), +('慮', 'おもんぱく.る'), +('慮', 'おもんぱか.る'), +('涼', 'すず.しい'), +('涼', 'すず.む'), +('涼', 'すず.やか'), +('涼', 'うす.い'), +('涼', 'ひや.す'), +('涼', 'まことに'), +('陵', 'みささぎ'), +('猟', 'かり'), +('猟', 'か.る'), +('瞭', 'あきらか'), +('糧', 'かて'), +('涙', 'なみだ'), +('戻', 'もど.す'), +('戻', 'もど.る'), +('零', 'ぜろ'), +('零', 'こぼ.す'), +('零', 'こぼ.れる'), +('隣', 'とな.る'), +('隣', 'となり'), +('励', 'はげ.む'), +('励', 'はげ.ます'), +('鈴', 'すず'), +('塁', 'とりで'), +('霊', 'たま'), +('隷', 'したが.う'), +('隷', 'しもべ'), +('麗', 'うるわ.しい'), +('麗', 'うら.らか'), +('齢', 'よわい'), +('齢', 'とし'), +('暦', 'こよみ'), +('裂', 'さ.く'), +('裂', 'さ.ける'), +('裂', '-ぎ.れ'), +('籠', 'かご'), +('籠', 'こ.める'), +('籠', 'こも.る'), +('籠', 'こ.む'), +('劣', 'おと.る'), +('恋', 'こ.う'), +('恋', 'こい'), +('恋', 'こい.しい'), +('麓', 'ふもと'), +('錬', 'ね.る'), +('烈', 'はげ.しい'), +('呂', 'せぼね'), +('郎', 'おとこ'), +('露', 'つゆ'), +('炉', 'いろり'), +('弄', 'いじく.る'), +('弄', 'ろう.する'), +('弄', 'いじ.る'), +('弄', 'ひねく.る'), +('弄', 'たわむ.れる'), +('弄', 'もてあそ.ぶ'), +('賂', 'まいな.い'), +('賂', 'まいな.う'), +('漏', 'も.る'), +('漏', 'も.れる'), +('漏', 'も.らす'), +('楼', 'たかどの'), +('脇', 'わき'), +('脇', 'わけ'), +('惑', 'まど.う'), +('枠', 'わく'), +('腕', 'うで'), +('賄', 'まかな.う'), +('湾', 'いりえ'); diff --git a/lib/migrations/Makefile b/lib/migrations/Makefile index 32cf375..856c4b8 100644 --- a/lib/migrations/Makefile +++ b/lib/migrations/Makefile @@ -1,9 +1,18 @@ DB_NAME=test.db -all: clean +all: clean dart sqlite3 $(DB_NAME) < 0001_initial.sql sqlite3 $(DB_NAME) < 0002_populate_radicals.sql - python test.py + sqlite3 $(DB_NAME) < 0003_populate_radkfile.sql + sqlite3 $(DB_NAME) < 0004_populate_jouyou_kanji.sql + +convert_kradk: + iconv -f EUC-JP -t UTF-8 -o data/radkfile_utf8 data/radkfile + +dart: + dart run tools/update_0002.dart + dart run tools/update_0003.dart + dart run tools/update_0004.dart clean: rm test.db || true diff --git a/lib/migrations/data/jisho/grade1.json b/lib/migrations/data/jisho/grade1.json deleted file mode 100644 index dfc8006..0000000 --- a/lib/migrations/data/jisho/grade1.json +++ /dev/null @@ -1,7185 +0,0 @@ -[ - { - "query": "一", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "2", - "strokeCount": 1, - "meaning": "one, one radical (no.1)", - "kunyomi": [ - "ひと-", - "ひと.つ" - ], - "onyomi": [ - "イチ", - "イツ" - ], - "onyomiExamples": [ - { - "example": "一", - "reading": "イチ", - "meaning": "one, best, first, foremost, beginning, start, a (single), one (of many), ace (playing card), bottom string (on a shamisen, etc.)" - }, - { - "example": "一位", - "reading": "イチイ", - "meaning": "first place, first rank, unit's position, Japanese yew (Taxus cuspidata)" - }, - { - "example": "均一", - "reading": "キンイツ", - "meaning": "uniformity, equality" - }, - { - "example": "1対1", - "reading": "イチタイイチ", - "meaning": "one-to-one, one-on-one" - }, - { - "example": "一", - "reading": "イツ", - "meaning": "one, same (mind, path, etc.)" - }, - { - "example": "一に", - "reading": "イツニ", - "meaning": "solely, entirely, only, or" - }, - { - "example": "均一", - "reading": "キンイツ", - "meaning": "uniformity, equality" - }, - { - "example": "画一", - "reading": "カクイツ", - "meaning": "uniformity, standardization, standardisation" - } - ], - "kunyomiExamples": [ - { - "example": "一つ", - "reading": "ひとつ", - "meaning": "one, for one thing, only, (not) even, just (e.g. \"just try it\"), some kind of, one type of" - }, - { - "example": "一つ一つ", - "reading": "ひとつひとつ", - "meaning": "one-by-one, separately, in detail" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19968_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e00.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e00.gif", - "uri": "http://jisho.org/search/%E4%B8%80%23kanji" - }, - { - "query": "右", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "602", - "strokeCount": 5, - "meaning": "right", - "kunyomi": [ - "みぎ" - ], - "onyomi": [ - "ウ", - "ユウ" - ], - "onyomiExamples": [ - { - "example": "右中間", - "reading": "ウチュウカン", - "meaning": "between right and center fielders (centre)" - }, - { - "example": "右側", - "reading": "ミギガワ", - "meaning": "right side, right-hand side" - }, - { - "example": "極右", - "reading": "キョクウ", - "meaning": "far right (in politics), extreme right, ultraconservative" - }, - { - "example": "最右", - "reading": "サイウ", - "meaning": "right-most, rightmost" - }, - { - "example": "右筆", - "reading": "ユウヒツ", - "meaning": "private secretary, amanuensis" - }, - { - "example": "右文", - "reading": "ユウブン", - "meaning": "respect for literary culture" - }, - { - "example": "上下左右", - "reading": "ジョウゲサユウ", - "meaning": "up and down, left and right, top and bottom, left and right" - } - ], - "kunyomiExamples": [ - { - "example": "右", - "reading": "みぎ", - "meaning": "right, right-hand side, afore-mentioned (esp. in vertical Japanese writing), foregoing, forgoing, above" - }, - { - "example": "右腕", - "reading": "みぎうで", - "meaning": "right arm, right-hand man, right hand, right-hand person, right-handed pitcher" - }, - { - "example": "上右", - "reading": "うえみぎ", - "meaning": "upper right (corner)" - }, - { - "example": "下右", - "reading": "したみぎ", - "meaning": "lower right (corner)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "一", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21491_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53f3.gif", - "uri": "http://jisho.org/search/%E5%8F%B3%23kanji" - }, - { - "query": "雨", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "950", - "strokeCount": 8, - "meaning": "rain", - "kunyomi": [ - "あめ", - "あま-", - "-さめ" - ], - "onyomi": [ - "ウ" - ], - "onyomiExamples": [ - { - "example": "雨水", - "reading": "アマミズ", - "meaning": "rain water, \"rain water\" solar term (approx. February 19)" - }, - { - "example": "雨季", - "reading": "ウキ", - "meaning": "rainy season" - }, - { - "example": "集中豪雨", - "reading": "シュウチュウゴウウ", - "meaning": "local downpour, severe rain fall" - }, - { - "example": "時雨", - "reading": "シグレ", - "meaning": "rain shower in late autumn (fall) or early winter, seasonable rain" - } - ], - "kunyomiExamples": [ - { - "example": "雨", - "reading": "あめ", - "meaning": "rain, rainy day, rainy weather, the November suit (in hanafuda)" - }, - { - "example": "雨降り", - "reading": "あめふり", - "meaning": "rainfall, rainy weather, rainy, wet" - }, - { - "example": "五月雨", - "reading": "さみだれ", - "meaning": "early-summer rain" - }, - { - "example": "黒い雨", - "reading": "くろいあめ", - "meaning": "heavily polluted, radioactive rain sometimes following an atmospheric nuclear explosion (esp. that of Hiroshima)" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38632_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096e8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96e8.gif", - "uri": "http://jisho.org/search/%E9%9B%A8%23kanji" - }, - { - "query": "円", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "69", - "strokeCount": 4, - "meaning": "circle, yen, round", - "kunyomi": [ - "まる.い", - "まる", - "まど", - "まど.か", - "まろ.やか" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "円", - "reading": "エン", - "meaning": "yen (Japanese monetary unit), circle" - }, - { - "example": "円滑", - "reading": "エンカツ", - "meaning": "smooth, undisturbed, uninterrupted, harmonious" - }, - { - "example": "楕円", - "reading": "ダエン", - "meaning": "ellipse" - }, - { - "example": "同心円", - "reading": "ドウシンエン", - "meaning": "concentric circles" - } - ], - "kunyomiExamples": [ - { - "example": "丸い", - "reading": "まるい", - "meaning": "round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable" - }, - { - "example": "丸", - "reading": "まる", - "meaning": "circle, entirety, whole, full, complete, money, dough, moola, enclosure inside a castle's walls, soft-shelled turtle, suffix for ship names, suffix for names of people (esp. infants), suffix for names of swords, armour, musical instruments, etc., suffix for names of dogs, horses, etc." - }, - { - "example": "丸い", - "reading": "まるい", - "meaning": "round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable" - }, - { - "example": "黒円", - "reading": "くろまる", - "meaning": "black spot, black dot, bull's-eye, middle dot, interpunct" - }, - { - "example": "円居", - "reading": "まどい", - "meaning": "small gathering, happy circle" - }, - { - "example": "円か", - "reading": "まどか", - "meaning": "round, tranquil, contentedly at ease" - }, - { - "example": "円か", - "reading": "まどか", - "meaning": "round, tranquil, contentedly at ease" - }, - { - "example": "円やか", - "reading": "まろやか", - "meaning": "round, circular, spherical, mellow (flavour, voice, etc.), mild, smooth" - } - ], - "radical": { - "symbol": "冂", - "meaning": "open country" - }, - "parts": [ - "一", - "亠", - "冂", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20870_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05186.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5186.gif", - "uri": "http://jisho.org/search/%E5%86%86%23kanji" - }, - { - "query": "王", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N3", - "newspaperFrequencyRank": "684", - "strokeCount": 4, - "meaning": "king, rule, magnate", - "kunyomi": [], - "onyomi": [ - "オウ", - "-ノウ" - ], - "onyomiExamples": [ - { - "example": "王", - "reading": "オウ", - "meaning": "king, ruler, sovereign, monarch, tycoon, magnate, champion, master, king (of the senior player)" - }, - { - "example": "王位", - "reading": "オウイ", - "meaning": "the throne, the crown" - }, - { - "example": "竜王", - "reading": "リュウオウ", - "meaning": "Dragon King, promoted rook" - }, - { - "example": "大王", - "reading": "ダイオウ", - "meaning": "great king" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29579_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0738b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/738b.gif", - "uri": "http://jisho.org/search/%E7%8E%8B%23kanji" - }, - { - "query": "音", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "491", - "strokeCount": 9, - "meaning": "sound, noise", - "kunyomi": [ - "おと", - "ね" - ], - "onyomi": [ - "オン", - "イン", - "-ノン" - ], - "onyomiExamples": [ - { - "example": "音", - "reading": "オト", - "meaning": "sound, noise, report, note, fame, Chinese-derived character reading" - }, - { - "example": "音楽", - "reading": "オンガク", - "meaning": "music" - }, - { - "example": "防音", - "reading": "ボウオン", - "meaning": "soundproof(ing)" - }, - { - "example": "異口同音", - "reading": "イクドウオン", - "meaning": "(saying) with one voice, unanimously, in chorus, in unison, as one" - }, - { - "example": "音信", - "reading": "オンシン", - "meaning": "correspondence, news, letter, tidings" - }, - { - "example": "鸚哥", - "reading": "インコ", - "meaning": "true parrot (esp. small parrots such as the parakeet, lory and conure)" - }, - { - "example": "玉音", - "reading": "ギョクオン", - "meaning": "the Emperor's voice, beautiful voice, beautiful sound" - }, - { - "example": "唐音", - "reading": "トウオン", - "meaning": "tō-on, Tang reading, on reading of a kanji based on Song dynasty and later Chinese" - } - ], - "kunyomiExamples": [ - { - "example": "音", - "reading": "おと", - "meaning": "sound, noise, report, note, fame, Chinese-derived character reading" - }, - { - "example": "音合せ", - "reading": "おとあわせ", - "meaning": "(musical) tuning" - }, - { - "example": "鈍い音", - "reading": "にぶいおと", - "meaning": "dull sound, muffled sound" - }, - { - "example": "風音", - "reading": "かざおと", - "meaning": "sound of the wind" - }, - { - "example": "音", - "reading": "おと", - "meaning": "sound, noise, report, note, fame, Chinese-derived character reading" - }, - { - "example": "音色", - "reading": "ねいろ", - "meaning": "tone color, tone colour, tone quality, timbre" - }, - { - "example": "弱音", - "reading": "よわね", - "meaning": "feeble complaint, whine" - }, - { - "example": "高音", - "reading": "こうおん", - "meaning": "high-pitched tone, soprano" - } - ], - "radical": { - "symbol": "音", - "meaning": "sound" - }, - "parts": [ - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38899_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/097f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/97f3.gif", - "uri": "http://jisho.org/search/%E9%9F%B3%23kanji" - }, - { - "query": "下", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "97", - "strokeCount": 3, - "meaning": "below, down, descend, give, low, inferior", - "kunyomi": [ - "した", - "しも", - "もと", - "さ.げる", - "さ.がる", - "くだ.る", - "くだ.り", - "くだ.す", - "-くだ.す", - "くだ.さる", - "お.ろす", - "お.りる" - ], - "onyomi": [ - "カ", - "ゲ" - ], - "onyomiExamples": [ - { - "example": "下", - "reading": "カ", - "meaning": "under (being in said condition or environment)" - }, - { - "example": "下位", - "reading": "カイ", - "meaning": "low rank, lower position, subordinate position, lower order (e.g. byte)" - }, - { - "example": "陛下", - "reading": "ヘイカ", - "meaning": "Your Majesty, His Majesty, Her Majesty" - }, - { - "example": "最下", - "reading": "サイカ", - "meaning": "the lowest, the worst" - }, - { - "example": "下", - "reading": "ゲ", - "meaning": "lowness (of degree, value, etc.), inferiority, second volume (of two), third volume (of three)" - }, - { - "example": "下山", - "reading": "ゲザン", - "meaning": "descending (mountain)" - }, - { - "example": "高下", - "reading": "コウゲ", - "meaning": "rise and fall (e.g. prices), fluctuation, difference (rank, grade, quality, etc.), variation" - }, - { - "example": "帯下", - "reading": "タイゲ", - "meaning": "leukorrhoea, leucorrhoea, leukorrhea, leucorrhea, mucous discharge from female genitals" - } - ], - "kunyomiExamples": [ - { - "example": "下", - "reading": "した", - "meaning": "below, down, under, younger (e.g. daughter), bottom, beneath, underneath, just after, right after, inferiority, one's inferior (i.e. one's junior), trade-in, preliminary, preparatory" - }, - { - "example": "下請け", - "reading": "したうけ", - "meaning": "subcontract, subcontractor (person or company)" - }, - { - "example": "幕下", - "reading": "まくした", - "meaning": "third highest division, wrestlers of the third highest division" - }, - { - "example": "上下", - "reading": "うえした", - "meaning": "top and bottom, up and down, high and low, above and below, upper and lower ends, upside-down" - }, - { - "example": "下", - "reading": "しも", - "meaning": "lower reaches (of a river), bottom, lower part, lower half (of the body, esp. the privates), feces (faeces), urine, menses, end, far from the imperial palace (i.e. far from Kyoto, esp. of western Japan), dirty (e.g. dirty jokes, etc.)" - }, - { - "example": "下期", - "reading": "しもき", - "meaning": "second half of the (fiscal) year" - }, - { - "example": "風下", - "reading": "かざしも", - "meaning": "leeward, lee, downwind" - }, - { - "example": "裃", - "reading": "かみしも", - "meaning": "samurai costume, old ceremonial costume, top and bottom, up and down, high and low, above and below, upper and lower ends" - }, - { - "example": "下", - "reading": "もと", - "meaning": "under (guidance, supervision, rules, the law, etc.), under (a flag, the sun, etc.), beneath, with (e.g. one blow), on (the promise, condition, assumption, etc. that ...), in (e.g. the name of), (somebody's) side, (somebody's) location" - }, - { - "example": "山元", - "reading": "やまもと", - "meaning": "foot of a mountain, base of a mountain, mine, colliery, owner of a mountain, operator of a mine" - }, - { - "example": "お膝元", - "reading": "おひざもと", - "meaning": "beside a nobleman, close aid (of a nobleman, etc.), place where a high ranking person resides, one's own city (of a shogun, lord, etc.), Imperial capital, Imperial court, (shogun's) headquarters, place under one's direct control, one's own turf, one's own backyard" - }, - { - "example": "下げる", - "reading": "さげる", - "meaning": "to hang, to suspend, to wear (e.g. decoration), to lower, to reduce, to bring down, to demote, to move back, to pull back, to clear (plates), to remove (food, etc. from table or altar), to keep on playing after one has formed a scoring combination with captured cards" - }, - { - "example": "下がる", - "reading": "さがる", - "meaning": "to come down, to go down, to fall, to drop, to sink, to get lower, to hang, to dangle, to move back, to step back, to withdraw, to retire, to deteriorate, to fall off, to be downgraded, to get closer to the present day, to go south" - }, - { - "example": "下る", - "reading": "くだる", - "meaning": "to descend, to go down, to come down, to be handed down (of an order, judgment, etc.), to pass (of time), to surrender, to capitulate, to be less than, to be inferior to, to have the runs, to have diarrhea, to pass (in stool), to be discharged from the body, to depreciate oneself, to be humble" - }, - { - "example": "下り", - "reading": "くだり", - "meaning": "down-train, train heading toward the ending point of its route, down-slope, downward going, downbound (esp. away from Tokyo)" - }, - { - "example": "下り坂", - "reading": "くだりざか", - "meaning": "downhill, downward slope, descent, decline, waning, ebb, (going) downhill" - }, - { - "example": "下す", - "reading": "くだす", - "meaning": "to make a decision, to draw a conclusion, to give a judgement, to hand down a verdict, to pass a sentence, to give an order, to let go down, to lower, to do oneself, to do by oneself, to beat, to defeat, to have loose bowels, to have diarrhea, to pass (in stool), to discharge from the body, to do in one go, to do to the end without stopping" - }, - { - "example": "下さる", - "reading": "くださる", - "meaning": "to give, to confer, to bestow, to kindly do for one, to oblige, to favour, to favor" - }, - { - "example": "下ろす", - "reading": "おろす", - "meaning": "to take down, to bring down, to lower (a hand, flag, shutter, etc.), to drop (an anchor, curtain, etc.), to let down (hair), to launch (a boat), to drop off (a passenger), to let off, to unload (goods, a truck, etc.), to offload, to discharge, to withdraw (money), to use for the first time, to wear for the first time, to cut off, to fillet (fish), to grate (e.g. radish), to prune (branches), to remove (someone from a position), to oust, to drop, to clear (the table), to remove (offerings from an alter), to pass down (e.g. old clothes), to hand down, to expel from the body (e.g. worms), to abort (a fetus), to invoke (a spirit), to call down" - }, - { - "example": "降りる", - "reading": "おりる", - "meaning": "to descend (e.g. a mountain), to go down, to come down, to alight (e.g. from bus), to get off, to disembark, to dismount, to step down, to retire, to give up, to quit, to fold, to be granted, to be issued, to be given, to form (of frost, dew, mist, etc.), to be passed (from the body; e.g. of a roundworm)" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "卜", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19979_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e0b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e0b.gif", - "uri": "http://jisho.org/search/%E4%B8%8B%23kanji" - }, - { - "query": "火", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "574", - "strokeCount": 4, - "meaning": "fire", - "kunyomi": [ - "ひ", - "-び", - "ほ-" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "火", - "reading": "カ", - "meaning": "Tuesday, fire (second of the five elements)" - }, - { - "example": "火炎瓶", - "reading": "カエンビン", - "meaning": "Molotov cocktail, petrol bomb, gasoline bomb" - }, - { - "example": "発火", - "reading": "ハッカ", - "meaning": "ignition, catching fire, firing (e.g. gun), discharging" - }, - { - "example": "小火", - "reading": "ボヤ", - "meaning": "small fire" - } - ], - "kunyomiExamples": [ - { - "example": "火", - "reading": "ひ", - "meaning": "fire, flame, blaze" - }, - { - "example": "火口", - "reading": "ひぐち", - "meaning": "burner, nozzle, origin of a fire" - }, - { - "example": "飛び火", - "reading": "とびひ", - "meaning": "leaping flames, flying sparks, spread of fire (due to leaping flames), repercussions in unanticipated areas, spilling over, effects of an incident spreading to those seemingly uninvolved, impetigo contagiosa" - }, - { - "example": "不知火", - "reading": "しらぬい", - "meaning": "phosphorescent light, mysterious lights on the sea, sea fire" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28779_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0706b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/706b.gif", - "uri": "http://jisho.org/search/%E7%81%AB%23kanji" - }, - { - "query": "花", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "578", - "strokeCount": 7, - "meaning": "flower", - "kunyomi": [ - "はな" - ], - "onyomi": [ - "カ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "花形", - "reading": "ハナガタ", - "meaning": "floral pattern, flourish, ornament, star (actor, player, etc.)" - }, - { - "example": "花園", - "reading": "ハナゾノ", - "meaning": "flower garden" - }, - { - "example": "献花", - "reading": "ケンカ", - "meaning": "flower offering, floral tribute, laying flowers" - }, - { - "example": "紅花", - "reading": "ベニバナ", - "meaning": "safflower (Carthamus tinctorius), dyer's safflower" - }, - { - "example": "花かご", - "reading": "ハナカゴ", - "meaning": "flower basket, flower basket (or plate) used for flower-scattering rituals" - }, - { - "example": "花瓶", - "reading": "ケビョウ", - "meaning": "vase used to hold flower offerings (often made of gilded copper)" - }, - { - "example": "天花", - "reading": "テンゲ", - "meaning": "flowers that bloom in the heavens, paper flowers scattered before the Buddha's image" - } - ], - "kunyomiExamples": [ - { - "example": "花", - "reading": "はな", - "meaning": "flower, blossom, bloom, petal, cherry blossom, beauty, blooming (esp. of cherry blossoms), ikebana, hanafuda, (the) best, glorious, lovely" - }, - { - "example": "花形", - "reading": "はながた", - "meaning": "floral pattern, flourish, ornament, star (actor, player, etc.)" - }, - { - "example": "菜の花", - "reading": "なのはな", - "meaning": "rape blossoms, rapeseed flowers" - }, - { - "example": "紅花", - "reading": "べにばな", - "meaning": "safflower (Carthamus tinctorius), dyer's safflower" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "匕", - "化", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33457_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082b1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82b1.gif", - "uri": "http://jisho.org/search/%E8%8A%B1%23kanji" - }, - { - "query": "貝", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1787", - "strokeCount": 7, - "meaning": "shellfish", - "kunyomi": [ - "かい" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "貝", - "reading": "バイ", - "meaning": "Japanese babylon (species of shelled mollusk, Babylonia japonica), Japanese ivory shell, spinning top (traditionally made from a Japanese babylon shell)" - }, - { - "example": "貝貨", - "reading": "バイカ", - "meaning": "shell money" - }, - { - "example": "越虫貝", - "reading": "エッチュウバイ", - "meaning": "finely-striate buccinum (species of whelk, Buccinum striatissimum)" - }, - { - "example": "蝦夷貝", - "reading": "エゾバイ", - "meaning": "Middendorf's whelk (Buccinum middendorffi)" - } - ], - "kunyomiExamples": [ - { - "example": "貝", - "reading": "かい", - "meaning": "shellfish, seashell, shell" - }, - { - "example": "貝殻", - "reading": "かいがら", - "meaning": "seashell, shell" - }, - { - "example": "魚介", - "reading": "ぎょかい", - "meaning": "marine products, seafood, fish and shellfish" - }, - { - "example": "パウア貝", - "reading": "パウアかい", - "meaning": "paua (edible New Zealand abalone; species Haliotis iris, H. australis, H. virginea)" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35997_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c9d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c9d.gif", - "uri": "http://jisho.org/search/%E8%B2%9D%23kanji" - }, - { - "query": "学", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "63", - "strokeCount": 8, - "meaning": "study, learning, science", - "kunyomi": [ - "まな.ぶ" - ], - "onyomi": [ - "ガク" - ], - "onyomiExamples": [ - { - "example": "学", - "reading": "ガク", - "meaning": "learning, scholarship, study, erudition, knowledge, education, study of ..., -ology, -ics" - }, - { - "example": "学位", - "reading": "ガクイ", - "meaning": "(academic) degree" - }, - { - "example": "短期大学", - "reading": "タンキダイガク", - "meaning": "junior college, vocationally oriented two or three year post-secondary education institution" - }, - { - "example": "法医学", - "reading": "ホウイガク", - "meaning": "forensic medicine, forensic pathology, medical jurisprudence, legal medicine" - } - ], - "kunyomiExamples": [ - { - "example": "学ぶ", - "reading": "まなぶ", - "meaning": "to study (in depth), to learn, to take lessons in" - } - ], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "冖", - "子", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23398_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b66.gif", - "uri": "http://jisho.org/search/%E5%AD%A6%23kanji" - }, - { - "query": "気", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "113", - "strokeCount": 6, - "meaning": "spirit, mind, air, atmosphere, mood", - "kunyomi": [ - "き" - ], - "onyomi": [ - "キ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "気", - "reading": "キ", - "meaning": "spirit, mind, heart, nature, disposition, motivation, intention, mood, feelings, ambience, atmosphere, mood" - }, - { - "example": "気合", - "reading": "キアイ", - "meaning": "(fighting) spirit, motivation, effort, shout (for getting in the right mood to deal with something, etc.), cheer, yell, kiai, short shout when performing an attacking move" - }, - { - "example": "心意気", - "reading": "ココロイキ", - "meaning": "spirit, disposition" - }, - { - "example": "水気", - "reading": "ミズケ", - "meaning": "water content, moisture, juiciness, dampness, water vapor (vapour), steam, dropsy, edema, oedema" - }, - { - "example": "気", - "reading": "ケ", - "meaning": "sign, indication, trace, touch, feeling, somehow, for some reason, seeming to be" - }, - { - "example": "気配", - "reading": "ケハイ", - "meaning": "indication, sign, hint, presence, trend, quotation (esp. stock market)" - }, - { - "example": "嫌気", - "reading": "イヤキ", - "meaning": "dislike, disgust, disinclination, tired of" - }, - { - "example": "水気", - "reading": "ミズケ", - "meaning": "water content, moisture, juiciness, dampness, water vapor (vapour), steam, dropsy, edema, oedema" - } - ], - "kunyomiExamples": [ - { - "example": "気", - "reading": "き", - "meaning": "spirit, mind, heart, nature, disposition, motivation, intention, mood, feelings, ambience, atmosphere, mood" - }, - { - "example": "気合", - "reading": "きあい", - "meaning": "(fighting) spirit, motivation, effort, shout (for getting in the right mood to deal with something, etc.), cheer, yell, kiai, short shout when performing an attacking move" - }, - { - "example": "心意気", - "reading": "こころいき", - "meaning": "spirit, disposition" - }, - { - "example": "水気", - "reading": "みずけ", - "meaning": "water content, moisture, juiciness, dampness, water vapor (vapour), steam, dropsy, edema, oedema" - } - ], - "radical": { - "symbol": "气", - "meaning": "steam, breath" - }, - "parts": [ - "ノ", - "丶", - "乞", - "气" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27671_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c17.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c17.gif", - "uri": "http://jisho.org/search/%E6%B0%97%23kanji" - }, - { - "query": "九", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "55", - "strokeCount": 2, - "meaning": "nine", - "kunyomi": [ - "ここの", - "ここの.つ" - ], - "onyomi": [ - "キュウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "九", - "reading": "キュウ", - "meaning": "nine" - }, - { - "example": "九州", - "reading": "キュウシュウ", - "meaning": "Kyūshū (southernmost of the four main islands of Japan)" - }, - { - "example": "十九", - "reading": "ジュウキュウ", - "meaning": "19, nineteen" - }, - { - "example": "重九", - "reading": "チョウキュウ", - "meaning": "Chrysanthemum Festival (the 9th day of the 9th lunar month), Double Ninth Festival" - }, - { - "example": "九", - "reading": "キュウ", - "meaning": "nine" - }, - { - "example": "9月", - "reading": "クガツ", - "meaning": "September, ninth month of the lunar calendar" - }, - { - "example": "九九", - "reading": "クク", - "meaning": "multiplication table, times table" - }, - { - "example": "第九", - "reading": "ダイク", - "meaning": "the ninth, Beethoven's Ninth Symphony" - } - ], - "kunyomiExamples": [ - { - "example": "九", - "reading": "きゅう", - "meaning": "nine" - }, - { - "example": "九重", - "reading": "ここのえ", - "meaning": "ninefold, imperial palace, the Court" - }, - { - "example": "九つ", - "reading": "ここのつ", - "meaning": "nine, nine years of age, twelve o'clock (old time system)" - }, - { - "example": "九つ時", - "reading": "ここのつどき", - "meaning": "(approx.) twelve o'clock (am or pm, old time system), noon, midnight" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "九" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20061_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e5d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e5d.gif", - "uri": "http://jisho.org/search/%E4%B9%9D%23kanji" - }, - { - "query": "休", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "642", - "strokeCount": 6, - "meaning": "rest, day off, retire, sleep", - "kunyomi": [ - "やす.む", - "やす.まる", - "やす.める" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "休刊", - "reading": "キュウカン", - "meaning": "suspension of publication" - }, - { - "example": "休暇", - "reading": "キュウカ", - "meaning": "holiday, day off, furlough, absence (from work)" - }, - { - "example": "帰休", - "reading": "キキュウ", - "meaning": "leave, furlough, temporary layoff" - }, - { - "example": "定休", - "reading": "テイキュウ", - "meaning": "regular holiday, fixed day off, regular closing day" - } - ], - "kunyomiExamples": [ - { - "example": "休む", - "reading": "やすむ", - "meaning": "to be absent, to take a day off, to rest, to have a break, to go to bed, to (lie down to) sleep, to turn in, to retire, to stop doing some ongoing activity for a time, to suspend business" - }, - { - "example": "休まる", - "reading": "やすまる", - "meaning": "to be rested, to feel at ease, to repose, to be relieved" - }, - { - "example": "休める", - "reading": "やすめる", - "meaning": "to rest, to suspend, to give relief" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20241_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f11.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f11.gif", - "uri": "http://jisho.org/search/%E4%BC%91%23kanji" - }, - { - "query": "玉", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "737", - "strokeCount": 5, - "meaning": "jewel, ball", - "kunyomi": [ - "たま", - "たま-", - "-だま" - ], - "onyomi": [ - "ギョク" - ], - "onyomiExamples": [ - { - "example": "玉", - "reading": "ギョク", - "meaning": "precious stone (esp. jade), egg (sometimes esp. as a sushi topping), stock or security being traded, product being bought or sold, position (in finance, the amount of a security either owned or owed by an investor or dealer), geisha, time charge for a geisha, king (of the junior player)" - }, - { - "example": "玉音", - "reading": "ギョクオン", - "meaning": "the Emperor's voice, beautiful voice, beautiful sound" - }, - { - "example": "珠玉", - "reading": "シュギョク", - "meaning": "jewel, gem, gem (of a story, essay, etc.), accomplished work, beautiful piece" - }, - { - "example": "翠玉", - "reading": "スイギョク", - "meaning": "emerald, jade" - } - ], - "kunyomiExamples": [ - { - "example": "玉", - "reading": "たま", - "meaning": "ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, coin, precious, beautiful, excellent" - }, - { - "example": "卵", - "reading": "たまご", - "meaning": "eggs, egg, spawn, roe, (hen's) egg, (an expert) in the making, beginning, origin, infancy" - }, - { - "example": "埼玉", - "reading": "さいたま", - "meaning": "Saitama (city, prefecture)" - }, - { - "example": "勾玉", - "reading": "まがたま", - "meaning": "comma-shaped jewels" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "丶", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29577_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07389.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7389.gif", - "uri": "http://jisho.org/search/%E7%8E%89%23kanji" - }, - { - "query": "金", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "53", - "strokeCount": 8, - "meaning": "gold", - "kunyomi": [ - "かね", - "かな-", - "-がね" - ], - "onyomi": [ - "キン", - "コン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "金", - "reading": "キン", - "meaning": "gold (Au), golden (color), gold (medal, cup), valuable, of highest value, money, gold coin, Friday, metal (fourth of the five elements), Jin dynasty (China, 1115-1234), Chin dynasty, Jurchen dynasty, gold general, testicles, karat, carat" - }, - { - "example": "金色", - "reading": "キンイロ", - "meaning": "golden (colour, color)" - }, - { - "example": "集金", - "reading": "シュウキン", - "meaning": "money collection" - }, - { - "example": "納金", - "reading": "ノウキン", - "meaning": "payment" - }, - { - "example": "金色", - "reading": "キンイロ", - "meaning": "golden (colour, color)" - }, - { - "example": "金剛", - "reading": "コンゴウ", - "meaning": "vajra (indestructible substance), diamond, adamantine, thunderbolt, Indra's weapon, Buddhist symbol of the indestructible truth" - }, - { - "example": "鬱金", - "reading": "ウコン", - "meaning": "turmeric (Curcuma domestica)" - }, - { - "example": "葛鬱金", - "reading": "クズウコン", - "meaning": "arrowroot (Maranta arundinacea)" - }, - { - "example": "漉油", - "reading": "コシアブラ", - "meaning": "Acanthopanax sciadophylloides (species of flowering plant related to the aralias)" - } - ], - "kunyomiExamples": [ - { - "example": "金", - "reading": "かね", - "meaning": "money, metal" - }, - { - "example": "金持ち", - "reading": "かねもち", - "meaning": "rich person" - }, - { - "example": "細かい金", - "reading": "こまかいかね", - "meaning": "small change" - }, - { - "example": "汚れた金", - "reading": "よごれたかね", - "meaning": "dirty money" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ハ", - "个", - "并", - "王", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37329_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091d1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91d1.gif", - "uri": "http://jisho.org/search/%E9%87%91%23kanji" - }, - { - "query": "空", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "304", - "strokeCount": 8, - "meaning": "empty, sky, void, vacant, vacuum", - "kunyomi": [ - "そら", - "あ.く", - "あ.き", - "あ.ける", - "から", - "す.く", - "す.かす", - "むな.しい" - ], - "onyomi": [ - "クウ" - ], - "onyomiExamples": [ - { - "example": "空", - "reading": "クウ", - "meaning": "empty air, sky, shunyata, emptiness, the lack of an immutable intrinsic nature within any phenomenon, air force, fruitlessness, meaninglessness, void (one of the five elements), empty (e.g. set)" - }, - { - "example": "空域", - "reading": "クウイキ", - "meaning": "airspace" - }, - { - "example": "領空", - "reading": "リョウクウ", - "meaning": "territorial airspace" - }, - { - "example": "防空", - "reading": "ボウクウ", - "meaning": "air defense, air defence" - } - ], - "kunyomiExamples": [ - { - "example": "空", - "reading": "そら", - "meaning": "sky, the air, the heavens, weather, far-off place, distant place, state of mind, feeling, (from) memory, (by) heart, falsehood, lie, somehow, vaguely, fake" - }, - { - "example": "空模様", - "reading": "そらもよう", - "meaning": "look of the sky, weather" - }, - { - "example": "定めなき空", - "reading": "さだめなきそら", - "meaning": "changeable weather" - }, - { - "example": "晴れた空", - "reading": "はれたそら", - "meaning": "clear sky, cloudless sky" - }, - { - "example": "開く", - "reading": "あく", - "meaning": "to open (e.g. doors), to open (e.g. business, etc.), to be empty, to be vacant, to be available, to be free, to be open (e.g. neckline, etc.), to have been opened (of one's eyes, mouth, etc.), to come to an end, to open (one's eyes, mouth, etc.), to have a hole, to form a gap, to have an interval (between events)" - }, - { - "example": "空き", - "reading": "あき", - "meaning": "space, room, gap, emptiness, vacancy, opening, empty seat, free time, time to spare, disuse, unused thing" - }, - { - "example": "空き缶", - "reading": "あきかん", - "meaning": "empty can" - }, - { - "example": "開ける", - "reading": "あける", - "meaning": "to open (a door, etc.), to unwrap (e.g. parcel, package), to unlock, to open (for business, etc.), to empty, to remove, to make space, to make room, to move out, to clear out, to be away from (e.g. one's house), to leave (temporarily), to dawn, to grow light, to end (of a period, season), to begin (of the New Year), to leave (one's schedule) open, to make time (for), to make (a hole), to open up (a hole)" - }, - { - "example": "空", - "reading": "から", - "meaning": "emptiness, vacuum, blank" - }, - { - "example": "空手", - "reading": "からて", - "meaning": "karate, empty handed" - }, - { - "example": "もぬけの殻", - "reading": "もぬけのから", - "meaning": "completely empty (of a residence, etc.), vacant, deserted, body from which the soul has left, corpse, shed skin (of a snake, insect, etc.)" - }, - { - "example": "空く", - "reading": "すく", - "meaning": "to become less crowded, to thin out, to get empty, to be hungry" - }, - { - "example": "空かす", - "reading": "すかす", - "meaning": "to feel hungry, to get hungry" - }, - { - "example": "虚しい", - "reading": "むなしい", - "meaning": "empty, void, vacant, vain, fruitless, futile, ineffective, lifeless" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "宀", - "工", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31354_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a7a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a7a.gif", - "uri": "http://jisho.org/search/%E7%A9%BA%23kanji" - }, - { - "query": "月", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "23", - "strokeCount": 4, - "meaning": "month, moon", - "kunyomi": [ - "つき" - ], - "onyomi": [ - "ゲツ", - "ガツ" - ], - "onyomiExamples": [ - { - "example": "月", - "reading": "ゲツ", - "meaning": "Monday" - }, - { - "example": "月額", - "reading": "ゲツガク", - "meaning": "monthly amount (sum)" - }, - { - "example": "隔月", - "reading": "カクゲツ", - "meaning": "every second month, every other month" - }, - { - "example": "望月", - "reading": "モチヅキ", - "meaning": "full moon, moon on the 15th day of the month (by the lunar calendar), full moon of the eighth lunar month" - }, - { - "example": "月中", - "reading": "ゲツチュウ", - "meaning": "(for the) whole month" - }, - { - "example": "月輪", - "reading": "ゲツリン", - "meaning": "(full) moon, moon when it's round" - }, - { - "example": "旧正月", - "reading": "キュウショウガツ", - "meaning": "lunar New Year (esp. the Chinese New Year)" - }, - { - "example": "お正月", - "reading": "オショウガツ", - "meaning": "New Year (esp. first three days), first month of the year, January" - } - ], - "kunyomiExamples": [ - { - "example": "月", - "reading": "つき", - "meaning": "moon, month" - }, - { - "example": "月末", - "reading": "げつまつ", - "meaning": "end of the month" - }, - { - "example": "卯月", - "reading": "うづき", - "meaning": "fourth month of the lunar calendar" - }, - { - "example": "祥月", - "reading": "しょうつき", - "meaning": "month of a person's death" - } - ], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26376_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06708.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6708.gif", - "uri": "http://jisho.org/search/%E6%9C%88%23kanji" - }, - { - "query": "犬", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1326", - "strokeCount": 4, - "meaning": "dog", - "kunyomi": [ - "いぬ", - "いぬ-" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "犬猿の仲", - "reading": "ケンエンノナカ", - "meaning": "like cats and dogs, (on) very bad terms, relationship of dogs and monkeys" - }, - { - "example": "犬猿", - "reading": "ケンエン", - "meaning": "cats and dogs (as an example of a bad relationship), dogs and monkeys" - }, - { - "example": "柴犬", - "reading": "シバイヌ", - "meaning": "shiba (Japanese breed of dog), shiba inu, brushwood dog" - }, - { - "example": "ポメラニア犬", - "reading": "ポメラニアケン", - "meaning": "Pomeranian (dog)" - } - ], - "kunyomiExamples": [ - { - "example": "犬", - "reading": "いぬ", - "meaning": "dog (Canis (lupus) familiaris), squealer, rat, snitch, informer, informant, spy, loser, asshole, counterfeit, inferior, useless, wasteful" - }, - { - "example": "犬合わせ", - "reading": "いぬあわせ", - "meaning": "dog fighting, dog fight" - }, - { - "example": "野良犬", - "reading": "のらいぬ", - "meaning": "stray dog" - }, - { - "example": "柴犬", - "reading": "しばいぬ", - "meaning": "shiba (Japanese breed of dog), shiba inu, brushwood dog" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "丶", - "大", - "犬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29356_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72ac.gif", - "uri": "http://jisho.org/search/%E7%8A%AC%23kanji" - }, - { - "query": "見", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "22", - "strokeCount": 7, - "meaning": "see, hopes, chances, idea, opinion, look at, visible", - "kunyomi": [ - "み.る", - "み.える", - "み.せる" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "見", - "reading": "ケン", - "meaning": "view (of life, etc.), outlook" - }, - { - "example": "見解", - "reading": "ケンカイ", - "meaning": "opinion, point of view" - }, - { - "example": "後見", - "reading": "コウケン", - "meaning": "guardianship, guardian, (theatrical) assistant, prompter" - }, - { - "example": "政見", - "reading": "セイケン", - "meaning": "political views" - } - ], - "kunyomiExamples": [ - { - "example": "見る", - "reading": "みる", - "meaning": "to see, to look, to watch, to view, to observe, to examine, to look over, to assess, to check, to judge, to look after, to attend to, to take care of, to keep an eye on, to experience, to meet with (misfortune, success, etc.), to try ..., to have a go at ..., to give ... a try, to see (that) ..., to find (that) ..." - }, - { - "example": "見る見る", - "reading": "みるみる", - "meaning": "very fast, in a twinkle, before one's eyes" - }, - { - "example": "見える", - "reading": "みえる", - "meaning": "to be seen, to be in sight, to look, to seem, to appear, to come" - }, - { - "example": "見える化", - "reading": "みえるか", - "meaning": "visualization, rendering visible (e.g. a problem), digitization" - }, - { - "example": "見せる", - "reading": "みせる", - "meaning": "to show, to display" - } - ], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "儿", - "目", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35211_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0898b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/898b.gif", - "uri": "http://jisho.org/search/%E8%A6%8B%23kanji" - }, - { - "query": "五", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "31", - "strokeCount": 4, - "meaning": "five", - "kunyomi": [ - "いつ", - "いつ.つ" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "五", - "reading": "ゴ", - "meaning": "five" - }, - { - "example": "五大湖", - "reading": "ゴダイコ", - "meaning": "the Great Lakes" - }, - { - "example": "端午", - "reading": "タンゴ", - "meaning": "Boy's Day celebration (May 5)" - }, - { - "example": "第五", - "reading": "ダイゴ", - "meaning": "the fifth" - } - ], - "kunyomiExamples": [ - { - "example": "五", - "reading": "ご", - "meaning": "five" - }, - { - "example": "五つ", - "reading": "いつつ", - "meaning": "five, five years of age, eight o'clock (old time system)" - }, - { - "example": "五つ", - "reading": "いつつ", - "meaning": "five, five years of age, eight o'clock (old time system)" - }, - { - "example": "五つ子", - "reading": "いつつご", - "meaning": "quintuplets" - } - ], - "radical": { - "symbol": "二", - "meaning": "two" - }, - "parts": [ - "五" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20116_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e94.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e94.gif", - "uri": "http://jisho.org/search/%E4%BA%94%23kanji" - }, - { - "query": "口", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "284", - "strokeCount": 3, - "meaning": "mouth", - "kunyomi": [ - "くち" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "口", - "reading": "ク", - "meaning": "mouth, speech, counter for people or implements" - }, - { - "example": "口径", - "reading": "コウケイ", - "meaning": "aperture, bore, calibre, caliber" - }, - { - "example": "開口", - "reading": "カイコウ", - "meaning": "opening, aperture (e.g. camera), opening one's mouth, beginning to speak, open, broad" - }, - { - "example": "経口", - "reading": "ケイコウ", - "meaning": "taken by mouth, oral" - }, - { - "example": "口", - "reading": "ク", - "meaning": "mouth, speech, counter for people or implements" - }, - { - "example": "口", - "reading": "クチ", - "meaning": "mouth, opening, hole, gap, orifice, mouth (of a bottle), spout, nozzle, mouthpiece, gate, door, entrance, exit, speaking, speech, talk (i.e. gossip), taste, palate, mouth (to feed), opening (i.e. vacancy), available position, invitation, summons, kind, sort, type, opening (i.e. beginning), counter for mouthfuls, shares (of money), and swords" - }, - { - "example": "猪口", - "reading": "チョコ", - "meaning": "sake cup, small deep porcelain bowl for serving food" - }, - { - "example": "赤口", - "reading": "シャッコウ", - "meaning": "unlucky for all activities, with only the period around noon being auspicious" - } - ], - "kunyomiExamples": [ - { - "example": "口", - "reading": "くち", - "meaning": "mouth, opening, hole, gap, orifice, mouth (of a bottle), spout, nozzle, mouthpiece, gate, door, entrance, exit, speaking, speech, talk (i.e. gossip), taste, palate, mouth (to feed), opening (i.e. vacancy), available position, invitation, summons, kind, sort, type, opening (i.e. beginning), counter for mouthfuls, shares (of money), and swords" - }, - { - "example": "口利き", - "reading": "くちきき", - "meaning": "mediation, good offices, intervention, mediator, middleman, influential person, person of influence, eloquence, eloquent person, way of speaking" - }, - { - "example": "切り口", - "reading": "きりくち", - "meaning": "cut end, section, opening, slit, point of view, (different) perspective, new approach" - }, - { - "example": "大口", - "reading": "おおぐち", - "meaning": "big mouth, mouth opened wide, boastful speech, tall talk, bragging, boasting, large amount, large quantity" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53e3.gif", - "uri": "http://jisho.org/search/%E5%8F%A3%23kanji" - }, - { - "query": "校", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "294", - "strokeCount": 10, - "meaning": "exam, school, printing, proof, correction", - "kunyomi": [], - "onyomi": [ - "コウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "校", - "reading": "コウ", - "meaning": "school, proof (of a book, document, etc.), counter for proofs" - }, - { - "example": "校歌", - "reading": "コウカ", - "meaning": "school song" - }, - { - "example": "一校", - "reading": "イッコウ", - "meaning": "whole school, the first proof, one proofreading" - }, - { - "example": "同校", - "reading": "ドウコウ", - "meaning": "same school" - }, - { - "example": "校合", - "reading": "キョウゴウ", - "meaning": "collation, examining and comparing" - }, - { - "example": "校書", - "reading": "キョウショ", - "meaning": "collation, examining and comparing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "亠", - "木", - "父" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26657_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06821.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6821.gif", - "uri": "http://jisho.org/search/%E6%A0%A1%23kanji" - }, - { - "query": "左", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "630", - "strokeCount": 5, - "meaning": "left", - "kunyomi": [ - "ひだり" - ], - "onyomi": [ - "サ", - "シャ" - ], - "onyomiExamples": [ - { - "example": "左", - "reading": "サ", - "meaning": "left (esp. in vertical Japanese writing), the following" - }, - { - "example": "左右", - "reading": "サユウ", - "meaning": "left and right, right and left, (asserting) control, influence, domination, one's attendants, people accompanying one, (serving at somebody's) side, equivocation" - }, - { - "example": "極左", - "reading": "キョクサ", - "meaning": "extreme left, ultraleft" - }, - { - "example": "最左", - "reading": "サイサ", - "meaning": "left-most" - }, - { - "example": "左官", - "reading": "サカン", - "meaning": "plasterer" - } - ], - "kunyomiExamples": [ - { - "example": "左", - "reading": "ひだり", - "meaning": "left, left hand side" - }, - { - "example": "左腕", - "reading": "さわん", - "meaning": "left arm, left-handed (baseball pitcher)" - }, - { - "example": "向かって左", - "reading": "むかってひだり", - "meaning": "on the left as one faces (it)" - }, - { - "example": "同左", - "reading": "どうひだり", - "meaning": "same as on the left" - } - ], - "radical": { - "symbol": "工", - "meaning": "work" - }, - "parts": [ - "ノ", - "一", - "工" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24038_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05de6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5de6.gif", - "uri": "http://jisho.org/search/%E5%B7%A6%23kanji" - }, - { - "query": "三", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "14", - "strokeCount": 3, - "meaning": "three", - "kunyomi": [ - "み", - "み.つ", - "みっ.つ" - ], - "onyomi": [ - "サン", - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "三", - "reading": "サン", - "meaning": "three, tri-" - }, - { - "example": "三", - "reading": "サン", - "meaning": "three" - }, - { - "example": "十三", - "reading": "ジュウサン", - "meaning": "thirteen, 13, king (playing card)" - }, - { - "example": "七三", - "reading": "シチサン", - "meaning": "7 or 3 ratio, hair parted on one side" - }, - { - "example": "四三", - "reading": "シソウ", - "meaning": "one four-of-a-kind and one three-of-a-kind in a dealt hand, three and a four (in dice games)" - } - ], - "kunyomiExamples": [ - { - "example": "三", - "reading": "さん", - "meaning": "three, tri-" - }, - { - "example": "三十日", - "reading": "みそか", - "meaning": "last day of the month" - }, - { - "example": "三つ", - "reading": "みっつ", - "meaning": "three, three years of age" - }, - { - "example": "三つ折り", - "reading": "みつおり", - "meaning": "threefold, folded in three" - }, - { - "example": "三つ", - "reading": "みっつ", - "meaning": "three, three years of age" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "二" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19977_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e09.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e09.gif", - "uri": "http://jisho.org/search/%E4%B8%89%23kanji" - }, - { - "query": "山", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "131", - "strokeCount": 3, - "meaning": "mountain", - "kunyomi": [ - "やま" - ], - "onyomi": [ - "サン", - "セン" - ], - "onyomiExamples": [ - { - "example": "山", - "reading": "サン", - "meaning": "Mt., Mount, Mt., Mount" - }, - { - "example": "山陰", - "reading": "ヤマカゲ", - "meaning": "place in the shade of a mountain, shelter of the mountains, mountain recess" - }, - { - "example": "治山", - "reading": "チサン", - "meaning": "forest conservation, afforestation" - }, - { - "example": "開山", - "reading": "カイサン", - "meaning": "founding a temple (on a hill-top)" - }, - { - "example": "山道", - "reading": "ヤマミチ", - "meaning": "mountain road, mountain trail" - }, - { - "example": "須弥山", - "reading": "シュミセン", - "meaning": "Mount Sumeru (believed to be the centre of the Buddhist world)" - } - ], - "kunyomiExamples": [ - { - "example": "山", - "reading": "やま", - "meaning": "mountain, hill, mine (e.g. coal mine), heap, pile, crown (of a hat), thread (of a screw), tread (of a tire), protruding part of an object, high part, climax, peak, critical point, guess, speculation, gamble, criminal case, crime, mountain climbing, mountaineering, festival float (esp. one mounted with a decorative halberd), deck (of playing cards on table, face down, from which cards are drawn), stack, wall, wall tile, temple, temple grounds, wild" - }, - { - "example": "山陰", - "reading": "やまかげ", - "meaning": "place in the shade of a mountain, shelter of the mountains, mountain recess" - }, - { - "example": "奥山", - "reading": "おくやま", - "meaning": "remote mountain, mountain recesses" - }, - { - "example": "青山", - "reading": "せいざん", - "meaning": "lush mountain, green mountain, grave, burial place" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "山" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23665_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c71.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c71.gif", - "uri": "http://jisho.org/search/%E5%B1%B1%23kanji" - }, - { - "query": "子", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "72", - "strokeCount": 3, - "meaning": "child, sign of the rat, 11PM-1AM, first sign of Chinese zodiac", - "kunyomi": [ - "こ", - "-こ", - "ね" - ], - "onyomi": [ - "シ", - "ス", - "ツ" - ], - "onyomiExamples": [ - { - "example": "子", - "reading": "シ", - "meaning": "child (esp. a boy), viscount, founder of a school of thought (esp. Confucius), master, masters and philosophers (categorization of Chinese classical literature), you, -er (i.e. man who spends all his time doing...)" - }, - { - "example": "子宮", - "reading": "シキュウ", - "meaning": "womb, uterus" - }, - { - "example": "中性子", - "reading": "チュウセイシ", - "meaning": "neutron" - }, - { - "example": "精子", - "reading": "セイシ", - "meaning": "sperm" - }, - { - "example": "主", - "reading": "ス", - "meaning": "honorific (or familiar) suffix used after a name" - }, - { - "example": "金子", - "reading": "キンス", - "meaning": "money, funds" - }, - { - "example": "恵比寿", - "reading": "エビス", - "meaning": "Ebisu, god of fishing and commerce" - }, - { - "example": "対子", - "reading": "トイツ", - "meaning": "pair, eyes" - }, - { - "example": "七対子", - "reading": "チートイツ", - "meaning": "seven pairs, winning hand composed of seven pairs" - } - ], - "kunyomiExamples": [ - { - "example": "子", - "reading": "こ", - "meaning": "child, young (animal), young woman, young geisha, offshoot, interest, new shares, player who is not a dealer (in cards, mahjong, etc.), bird egg, -er (often of young women)" - }, - { - "example": "子", - "reading": "こう", - "meaning": "child, interest" - }, - { - "example": "根っこ", - "reading": "ねっこ", - "meaning": "root (of a plant), stump (of a tree), root (of a problem, etc.), base, foundation, origin, source" - }, - { - "example": "江戸っ子", - "reading": "えどっこ", - "meaning": "true Tokyoite, Edoite, person born and raised in Edo" - }, - { - "example": "子", - "reading": "ね", - "meaning": "the Rat (first sign of the Chinese zodiac), hour of the Rat (around midnight, 11pm to 1am, or 12 midnight to 2am), north, eleventh month of the lunar calendar" - }, - { - "example": "子忌み", - "reading": "ねいみ", - "meaning": "collecting herbs and pulling out young pine trees by the roots (annual event held on the first day of the Rat of the New Year)" - }, - { - "example": "庚子", - "reading": "かのえね", - "meaning": "Metal Rat (37th year of the sexagenary cycle, e.g. 1960, 2020, 2080)" - }, - { - "example": "甲子", - "reading": "きのえね", - "meaning": "Wood Rat (1st year of the sexagenary cycle, e.g. 1924, 1984, 2044)" - } - ], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "子" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23376_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b50.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b50.gif", - "uri": "http://jisho.org/search/%E5%AD%90%23kanji" - }, - { - "query": "四", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "47", - "strokeCount": 5, - "meaning": "four", - "kunyomi": [ - "よ", - "よ.つ", - "よっ.つ", - "よん" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "四", - "reading": "シ", - "meaning": "four" - }, - { - "example": "4月", - "reading": "シガツ", - "meaning": "April, fourth month in the lunar calendar" - }, - { - "example": "十四", - "reading": "ジュウシ", - "meaning": "14, fourteen" - }, - { - "example": "炭素14", - "reading": "タンソジュウシ", - "meaning": "carbon-14" - } - ], - "kunyomiExamples": [ - { - "example": "四", - "reading": "し", - "meaning": "four" - }, - { - "example": "四畳半", - "reading": "よじょうはん", - "meaning": "four and a half tatami mats, four-and-a-half-mat room, small room esp. for assignations" - }, - { - "example": "四つ", - "reading": "よっつ", - "meaning": "four, four years of age, ten o'clock (old time system), cross grips" - }, - { - "example": "四つ角", - "reading": "よつかど", - "meaning": "four corners, crossroads, intersecting street, street corner" - }, - { - "example": "四つ", - "reading": "よっつ", - "meaning": "four, four years of age, ten o'clock (old time system), cross grips" - }, - { - "example": "四つの自由", - "reading": "よっつのじゆう", - "meaning": "the Four Freedoms (as defined by Franklin D. Roosevelt: freedom of speech, freedom of worship, freedom from want, freedom from fear)" - }, - { - "example": "四", - "reading": "し", - "meaning": "four" - }, - { - "example": "40", - "reading": "よんじゅう", - "meaning": "forty, 40" - }, - { - "example": "十四", - "reading": "じゅうし", - "meaning": "14, fourteen" - }, - { - "example": "軽四", - "reading": "けいよん", - "meaning": "four-wheeled light vehicle" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "儿", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22235_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56db.gif", - "uri": "http://jisho.org/search/%E5%9B%9B%23kanji" - }, - { - "query": "糸", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1488", - "strokeCount": 6, - "meaning": "thread", - "kunyomi": [ - "いと" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "糸", - "reading": "シ", - "meaning": "thread, 0.0001, one ten-thousandth" - }, - { - "example": "糸価", - "reading": "シカ", - "meaning": "price of silk thread" - }, - { - "example": "蚕糸", - "reading": "サンシ", - "meaning": "silk thread, silk yarn" - }, - { - "example": "金糸", - "reading": "キンシ", - "meaning": "gold thread" - } - ], - "kunyomiExamples": [ - { - "example": "糸", - "reading": "いと", - "meaning": "thread, yarn, string" - }, - { - "example": "糸口", - "reading": "いとぐち", - "meaning": "beginning, start, first step, clue, lead, hint, thread end" - }, - { - "example": "横糸", - "reading": "よこいと", - "meaning": "weft, woof (crosswise threads on a loom)" - }, - { - "example": "生糸", - "reading": "きいと", - "meaning": "raw silk thread" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31992_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07cf8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7cf8.gif", - "uri": "http://jisho.org/search/%E7%B3%B8%23kanji" - }, - { - "query": "字", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "485", - "strokeCount": 6, - "meaning": "character, letter, word, section of village", - "kunyomi": [ - "あざ", - "あざな", - "-な" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "字", - "reading": "ジ", - "meaning": "character (esp. kanji), letter, written text, handwriting, penmanship, the ... word (e.g. \"the L word\" = \"love\")" - }, - { - "example": "字形", - "reading": "ジケイ", - "meaning": "character style, character form" - }, - { - "example": "題字", - "reading": "ダイジ", - "meaning": "title lettering" - }, - { - "example": "英字", - "reading": "エイジ", - "meaning": "English letter, alphabetic character" - } - ], - "kunyomiExamples": [ - { - "example": "字", - "reading": "あざ", - "meaning": "section of village" - }, - { - "example": "字", - "reading": "あざな", - "meaning": "Chinese courtesy name (name formerly given to adult Chinese men, used in place of their given name in formal situations), nickname, section of a village" - }, - { - "example": "大字", - "reading": "おおあざ", - "meaning": "larger section (of village)" - }, - { - "example": "小字", - "reading": "こあざ", - "meaning": "small administrative unit (of a village)" - }, - { - "example": "字", - "reading": "あざな", - "meaning": "Chinese courtesy name (name formerly given to adult Chinese men, used in place of their given name in formal situations), nickname, section of a village" - } - ], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "子", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23383_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b57.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b57.gif", - "uri": "http://jisho.org/search/%E5%AD%97%23kanji" - }, - { - "query": "耳", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1328", - "strokeCount": 6, - "meaning": "ear", - "kunyomi": [ - "みみ" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "耳鼻科", - "reading": "ジビカ", - "meaning": "otolaryngology, ear, nose, and throat department" - }, - { - "example": "耳鼻咽喉科", - "reading": "ジビインコウカ", - "meaning": "otorhinolaryngology, otolaryngology, ear, nose and throat department" - }, - { - "example": "中耳", - "reading": "チュウジ", - "meaning": "middle ear, tympanum" - }, - { - "example": "外耳", - "reading": "ガイジ", - "meaning": "external ear, concha" - } - ], - "kunyomiExamples": [ - { - "example": "耳", - "reading": "みみ", - "meaning": "ear, hearing, edge, crust, selvedge (non-fray machined edge of fabrics), selvage" - }, - { - "example": "耳障り", - "reading": "みみざわり", - "meaning": "hard (on the ears), offensive (to the ear), rasping, rough, harsh, grating, jarring, cacophonous" - }, - { - "example": "大耳", - "reading": "おおみみ", - "meaning": "big ears, listening without paying attention" - }, - { - "example": "遠耳", - "reading": "とおみみ", - "meaning": "sharp hearing" - } - ], - "radical": { - "symbol": "耳", - "meaning": "ear" - }, - "parts": [ - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32819_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08033.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8033.gif", - "uri": "http://jisho.org/search/%E8%80%B3%23kanji" - }, - { - "query": "七", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "115", - "strokeCount": 2, - "meaning": "seven", - "kunyomi": [ - "なな", - "なな.つ", - "なの" - ], - "onyomi": [ - "シチ" - ], - "onyomiExamples": [ - { - "example": "七", - "reading": "シチ", - "meaning": "seven, hepta-" - }, - { - "example": "7月", - "reading": "シチガツ", - "meaning": "July, seventh month of the lunar calendar" - }, - { - "example": "セシウム137", - "reading": "セシウムヒャクサンジュウシチ", - "meaning": "cesium 137 (Cs-137), caesium 137" - }, - { - "example": "属七", - "reading": "ゾクシチ", - "meaning": "dominant seventh (chord)" - } - ], - "kunyomiExamples": [ - { - "example": "七", - "reading": "しち", - "meaning": "seven, hepta-" - }, - { - "example": "7月", - "reading": "しちがつ", - "meaning": "July, seventh month of the lunar calendar" - }, - { - "example": "七つ", - "reading": "ななつ", - "meaning": "seven, seven years of age, four o'clock (old time system)" - }, - { - "example": "七帯アルマジロ", - "reading": "ななつおびアルマジロ", - "meaning": "seven-banded armadillo (Dasypus septemcinctus)" - }, - { - "example": "七日", - "reading": "なのか", - "meaning": "seventh day of the month, seven days" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "ノ", - "乙", - "匕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19971_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e03.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e03.gif", - "uri": "http://jisho.org/search/%E4%B8%83%23kanji" - }, - { - "query": "車", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "333", - "strokeCount": 7, - "meaning": "car", - "kunyomi": [ - "くるま" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "車", - "reading": "シャ", - "meaning": "car, vehicle" - }, - { - "example": "車検", - "reading": "シャケン", - "meaning": "vehicle inspection" - }, - { - "example": "見切り発車", - "reading": "ミキリハッシャ", - "meaning": "starting a train (or bus, etc.) before all the passengers are on board, making a snap decision, starting an action without considering objections to it any longer" - }, - { - "example": "軽自動車", - "reading": "ケイジドウシャ", - "meaning": "light motor vehicle (up to 660cc and 64bhp), k-car, kei car" - } - ], - "kunyomiExamples": [ - { - "example": "車", - "reading": "くるま", - "meaning": "car, automobile, vehicle, wheel" - }, - { - "example": "車椅子", - "reading": "くるまいす", - "meaning": "wheelchair, folding push-chair" - }, - { - "example": "火の車", - "reading": "ひのくるま", - "meaning": "fiery chariot (which carries the souls of sinners into hell), desperate financial situation, dire straits" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36554_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08eca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8eca.gif", - "uri": "http://jisho.org/search/%E8%BB%8A%23kanji" - }, - { - "query": "手", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "60", - "strokeCount": 4, - "meaning": "hand", - "kunyomi": [ - "て", - "て-", - "-て", - "た-" - ], - "onyomi": [ - "シュ", - "ズ" - ], - "onyomiExamples": [ - { - "example": "手術", - "reading": "シュジュツ", - "meaning": "surgery, operation, procedure" - }, - { - "example": "手記", - "reading": "シュキ", - "meaning": "note, memorandum" - }, - { - "example": "二塁手", - "reading": "ニルイシュ", - "meaning": "second baseman" - }, - { - "example": "名手", - "reading": "メイシュ", - "meaning": "master, expert, expert board game player (chess, go, shogi, etc.)" - }, - { - "example": "交際上手", - "reading": "コウサイジョウズ", - "meaning": "good at socializing, sociability, being a good mixer" - }, - { - "example": "処世上手", - "reading": "ショセイジョウズ", - "meaning": "knowing how to get on in the world, knowing the secret of success in life" - } - ], - "kunyomiExamples": [ - { - "example": "手", - "reading": "て", - "meaning": "hand, arm, forepaw, foreleg, handle, hand, worker, help, trouble, care, effort, means, way, trick, move, technique, workmanship, hand, handwriting, kind, type, sort, one's hands, one's possession, ability to cope, hand (of cards), direction, move (in go, shogi, etc.)" - }, - { - "example": "手足", - "reading": "てあし", - "meaning": "hands and feet, limbs" - }, - { - "example": "逆手", - "reading": "ぎゃくて", - "meaning": "underhand grip, backhand grip (e.g. in tennis), unexpected twist, turning the tables (on an opponent)" - }, - { - "example": "担い手", - "reading": "にないて", - "meaning": "bearer, carrier, person bearing responsibility, person in charge, supporter" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "手" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25163_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0624b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/624b.gif", - "uri": "http://jisho.org/search/%E6%89%8B%23kanji" - }, - { - "query": "十", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "8", - "strokeCount": 2, - "meaning": "ten", - "kunyomi": [ - "とお", - "と", - "そ" - ], - "onyomi": [ - "ジュウ", - "ジッ", - "ジュッ" - ], - "onyomiExamples": [ - { - "example": "十", - "reading": "ジュウ", - "meaning": "ten, ten years of age" - }, - { - "example": "十一", - "reading": "ジュウイチ", - "meaning": "eleven, 11, jack (playing card), Hodgson's hawk-cuckoo (Cuculus fugax), Horsfield's hawk cuckoo" - }, - { - "example": "90", - "reading": "キュウジュウ", - "meaning": "ninety, 90" - }, - { - "example": "明日の百より今日の五十", - "reading": "アスノヒャクヨリキョウノゴジュウ", - "meaning": "a bird in the hand is worth two in the bush, fifty today is better than a hundred tomorrow" - }, - { - "example": "十種競技", - "reading": "ジッシュキョウギ", - "meaning": "decathlon" - }, - { - "example": "十指", - "reading": "ジッシ", - "meaning": "the ten fingers" - }, - { - "example": "十指", - "reading": "ジッシ", - "meaning": "the ten fingers" - }, - { - "example": "十回", - "reading": "ジッカイ", - "meaning": "ten times" - } - ], - "kunyomiExamples": [ - { - "example": "十", - "reading": "じゅう", - "meaning": "ten, ten years of age" - }, - { - "example": "十日", - "reading": "とおか", - "meaning": "tenth day of the month, ten days" - }, - { - "example": "十", - "reading": "じゅう", - "meaning": "ten, ten years of age" - }, - { - "example": "十日", - "reading": "とおか", - "meaning": "tenth day of the month, ten days" - }, - { - "example": "算盤", - "reading": "そろばん", - "meaning": "abacus" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "十" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21313_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05341.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5341.gif", - "uri": "http://jisho.org/search/%E5%8D%81%23kanji" - }, - { - "query": "出", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "13", - "strokeCount": 5, - "meaning": "exit, leave, go out, come out, put out, protrude", - "kunyomi": [ - "で.る", - "-で", - "だ.す", - "-だ.す", - "い.でる", - "い.だす" - ], - "onyomi": [ - "シュツ", - "スイ" - ], - "onyomiExamples": [ - { - "example": "出", - "reading": "シュツ", - "meaning": "coming out, emerging, being born into (a certain family), being a native of (a particular place)" - }, - { - "example": "出演", - "reading": "シュツエン", - "meaning": "performance, appearance (in a stage, film, TV show, etc.)" - }, - { - "example": "輩出", - "reading": "ハイシュツ", - "meaning": "producing (people) in great numbers, appearing one after the other" - }, - { - "example": "歳出", - "reading": "サイシュツ", - "meaning": "annual expenditure" - }, - { - "example": "出納", - "reading": "スイトウ", - "meaning": "receipts and expenditure (disbursements)" - }, - { - "example": "出納簿", - "reading": "スイトウボ", - "meaning": "cashbook" - } - ], - "kunyomiExamples": [ - { - "example": "出る", - "reading": "でる", - "meaning": "to leave, to exit, to go out, to come out, to get out, to leave (on a journey), to depart, to start out, to set out, to move forward, to come to, to get to, to lead to, to reach, to appear, to come out, to emerge, to surface, to come forth, to turn up, to be found, to be detected, to be discovered, to be exposed, to show, to be exhibited, to be on display, to appear (in print), to be published, to be announced, to be issued, to be listed, to come out, to attend, to participate, to take part, to enter (an event), to play in, to perform, to be stated, to be expressed, to come up, to be brought up, to be raised, to sell, to exceed, to go over, to stick out, to protrude, to break out, to occur, to start, to originate, to be produced, to come from, to be derived from, to be given, to get, to receive, to be offered, to be provided, to be presented, to be submitted, to be handed in, to be turned in, to be paid, to answer (phone, door, etc.), to get, to assume (an attitude), to act, to behave, to pick up (speed, etc.), to gain, to flow (e.g. tears), to run, to bleed, to graduate" - }, - { - "example": "出る杭は打たれる", - "reading": "でるくいはうたれる", - "meaning": "the nail that sticks out gets hammered down, people that stick out too much get punished, tall trees catch much wind, people that excel at something become disliked" - }, - { - "example": "出す", - "reading": "だす", - "meaning": "to take out, to get out, to put out, to reveal, to show, to submit (e.g. thesis), to turn in, to publish, to make public, to send (e.g. letter), to produce (a sound), to start (fire), to serve (food), ... out (e.g. to jump out, to carry out), to begin ..., to start to ..., to burst into ..." - }, - { - "example": "出すことは舌を出すも嫌い", - "reading": "だすことはしたをだすもきらい", - "meaning": "being exceptionally stingy" - }, - { - "example": "出でる", - "reading": "いでる", - "meaning": "to go, to come" - } - ], - "radical": { - "symbol": "凵", - "meaning": "container, open mouth" - }, - "parts": [ - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20986_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51fa.gif", - "uri": "http://jisho.org/search/%E5%87%BA%23kanji" - }, - { - "query": "女", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "151", - "strokeCount": 3, - "meaning": "woman, female", - "kunyomi": [ - "おんな", - "め" - ], - "onyomi": [ - "ジョ", - "ニョ", - "ニョウ" - ], - "onyomiExamples": [ - { - "example": "女", - "reading": "ジョ", - "meaning": "woman, girl, daughter, Chinese \"Girl\" constellation (one of the 28 mansions)" - }, - { - "example": "女王", - "reading": "ジョオウ", - "meaning": "queen, female champion" - }, - { - "example": "処女", - "reading": "ショジョ", - "meaning": "virgin, maiden" - }, - { - "example": "一女", - "reading": "イチジョ", - "meaning": "one daughter, eldest daughter, first-born daughter" - }, - { - "example": "女王", - "reading": "ジョオウ", - "meaning": "queen, female champion" - }, - { - "example": "女房", - "reading": "ニョウボウ", - "meaning": "wife (esp. one's own wife), court lady, female court attache, woman who served at the imperial palace, woman (esp. as a love interest)" - }, - { - "example": "老若男女", - "reading": "ロウニャクナンニョ", - "meaning": "men and women of all ages" - }, - { - "example": "天女", - "reading": "テンニョ", - "meaning": "heavenly nymph, celestial maiden, beautiful and kind woman" - }, - { - "example": "女房", - "reading": "ニョウボウ", - "meaning": "wife (esp. one's own wife), court lady, female court attache, woman who served at the imperial palace, woman (esp. as a love interest)" - }, - { - "example": "女官", - "reading": "ジョカン", - "meaning": "court lady, lady-in-waiting" - } - ], - "kunyomiExamples": [ - { - "example": "女", - "reading": "おんな", - "meaning": "female, woman, female sex, female lover, girlfriend, mistress, (someone's) woman" - }, - { - "example": "女形", - "reading": "おんながた", - "meaning": "onnagata, male actor in female kabuki roles, female partner (in a relationship)" - }, - { - "example": "醜女", - "reading": "しゅうじょ", - "meaning": "homely woman, plain-looking woman, female demon" - }, - { - "example": "囲い女", - "reading": "かこいおんな", - "meaning": "mistress" - }, - { - "example": "雌", - "reading": "め", - "meaning": "female, smaller (of the two), weaker, woman, wife" - }, - { - "example": "女神", - "reading": "めがみ", - "meaning": "goddess, female deity" - }, - { - "example": "早乙女", - "reading": "さおとめ", - "meaning": "young female rice planter, young girl" - }, - { - "example": "醜女", - "reading": "しゅうじょ", - "meaning": "homely woman, plain-looking woman, female demon" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22899_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05973.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5973.gif", - "uri": "http://jisho.org/search/%E5%A5%B3%23kanji" - }, - { - "query": "小", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "114", - "strokeCount": 3, - "meaning": "little, small", - "kunyomi": [ - "ちい.さい", - "こ-", - "お-", - "さ-" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "小", - "reading": "ショウ", - "meaning": "smallness, small item, short month (i.e. having fewer than 31 days), elementary school, younger or inferior (of two items or people with the same name), unit of field area (approx. 400 sq m)" - }, - { - "example": "小雨", - "reading": "コサメ", - "meaning": "light rain, drizzle" - }, - { - "example": "微小", - "reading": "ビショウ", - "meaning": "microscopic" - }, - { - "example": "中小", - "reading": "チュウショウ", - "meaning": "small and medium" - } - ], - "kunyomiExamples": [ - { - "example": "小さい", - "reading": "ちいさい", - "meaning": "small, little, tiny, slight, below average (in degree, amount, etc.), minor, small, low (e.g. sound), soft (e.g. voice), unimportant, petty, insignificant, trifling, trivial, young, juvenile" - }, - { - "example": "小さい頃", - "reading": "ちいさいころ", - "meaning": "as a child, when one was a child" - } - ], - "radical": { - "symbol": "小", - "meaning": "small, insignificant" - }, - "parts": [ - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23567_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c0f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c0f.gif", - "uri": "http://jisho.org/search/%E5%B0%8F%23kanji" - }, - { - "query": "上", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "35", - "strokeCount": 3, - "meaning": "above, up", - "kunyomi": [ - "うえ", - "-うえ", - "うわ-", - "かみ", - "あ.げる", - "-あ.げる", - "あ.がる", - "-あ.がる", - "あ.がり", - "-あ.がり", - "のぼ.る", - "のぼ.り", - "のぼ.せる", - "のぼ.す", - "たてまつ.る" - ], - "onyomi": [ - "ジョウ", - "ショウ", - "シャン" - ], - "onyomiExamples": [ - { - "example": "上", - "reading": "ジョウ", - "meaning": "from the standpoint of, as a matter of (e.g. fact), in the field of, being of the type of, aboard (a ship or vehicle), on top of, on, above, first volume (e.g. book), superior quality, best, top, high class, going up, governmental, imperial, presenting, showing, ana-" - }, - { - "example": "上位", - "reading": "ジョウイ", - "meaning": "superior (in rank), top, ranking, higher order (e.g. byte), host computer (of connected device)" - }, - { - "example": "口上", - "reading": "コウジョウ", - "meaning": "vocal message, speech, statement, prologue at the start of a kabuki performance" - }, - { - "example": "水上", - "reading": "スイジョウ", - "meaning": "aquatic, on the water" - }, - { - "example": "上人", - "reading": "ショウニン", - "meaning": "holy priest, saint" - }, - { - "example": "上下", - "reading": "ショウカ", - "meaning": "top and bottom, up and down, high and low, above and below, upper and lower ends, upper and lower classes, ruler and ruled, the government and the people" - }, - { - "example": "主上", - "reading": "シュジョウ", - "meaning": "emperor" - }, - { - "example": "雲上", - "reading": "ウンジョウ", - "meaning": "above the clouds, the heavens" - }, - { - "example": "上海", - "reading": "シャンハイ", - "meaning": "Shanghai (China)" - }, - { - "example": "上湯", - "reading": "シャンタン", - "meaning": "top-grade Chinese soup stock" - } - ], - "kunyomiExamples": [ - { - "example": "上", - "reading": "うえ", - "meaning": "above, up, over, elder (e.g. daughter), top, summit, head (e.g. of a staircase), surface, before, previous, superiority, one's superior, one's elder, on top of that, besides, what's more, not only ... but, upon (further inspection, etc.), based on (and occurring after), matters concerning ..., as concerns ..., since (i.e. \"for that reason\"), honorable, venerable, place of one's superior (e.g. the throne), emperor, sovereign, shogun, daimyo, noblewoman (esp. the wife of a nobleman)" - }, - { - "example": "上向き", - "reading": "うわむき", - "meaning": "pointing up, pointing upward, upturn, uptrend, upward tendency" - }, - { - "example": "床上", - "reading": "ゆかうえ", - "meaning": "on a floor, above floor level" - }, - { - "example": "一枚上", - "reading": "いちまいうえ", - "meaning": "one step higher, one better, cut above, one up" - }, - { - "example": "上", - "reading": "かみ", - "meaning": "upper reaches (of a river), upper stream, top, upper part, upper half (of the body), long ago, beginning, first, person of high rank (e.g. the emperor), government, imperial court, imperial capital (i.e. Kyoto), capital region (i.e. Kansai), region (or direction of) the imperial palace, head (of a table), wife, mistress (of a restaurant)" - }, - { - "example": "上方", - "reading": "かみがた", - "meaning": "Kyoto and vicinity (esp. during Edo period), Kyoto-Osaka region, Kansai region" - }, - { - "example": "風上", - "reading": "かざかみ", - "meaning": "windward, upwind" - }, - { - "example": "御上", - "reading": "おかみ", - "meaning": "the Emperor, His Majesty, the government, the authorities, proprietress, hostess, landlady, mistress, your wife, his wife, (one's) master, lord" - }, - { - "example": "上げる", - "reading": "あげる", - "meaning": "to raise, to elevate, to do up (one's hair), to fly (a kite, etc.), to launch (fireworks, etc.), to surface (a submarine, etc.), to land (a boat), to deep-fry, to show someone (into a room), to give, to send someone (away), to enrol (one's child in school), to enroll, to increase (price, quality, status, etc.), to develop (talent, skill), to improve, to make (a loud sound), to raise (one's voice), to earn (something desirable), to praise, to give (an example, etc.), to cite, to summon up (all of one's energy, etc.), to arrest, to nominate, to summon (for geishas, etc.), to offer up (incense, a prayer, etc.) to the gods (or Buddha, etc.), to bear (a child), to conduct (a ceremony, esp. a wedding), (of the tide) to come in, to vomit, to do for (the sake of someone else), to complete ..., to humbly do ..." - }, - { - "example": "上がる", - "reading": "あがる", - "meaning": "to rise, to go up, to come up, to ascend, to be raised, to enter (esp. from outdoors), to come in, to go in, to enter (a school), to advance to the next grade, to get out (of water), to come ashore, to increase, to improve, to make progress, to be promoted, to advance, to be made (of profit, etc.), to occur (esp. of a favourable result), to be adequate (to cover expenses, etc.), to be finished, to be done, to be over, (of rain) to stop, to lift, to stop (working properly), to cut out, to give out, to die, to win (in a card game, etc.), to be arrested, to turn up (of evidence, etc.), to be deep fried, to be spoken loudly, to get nervous, to get stage fright, to be offered (to the gods, etc.), to go, to visit, to eat, to drink, to be listed (as a candidate), to serve (in one's master's home), to go north, to be complete, to finish" - }, - { - "example": "上がり", - "reading": "あがり", - "meaning": "rise, increase, ascent, income, takings, earnings, proceeds, (crop) yield, return, profit, completion, end, finish, end result (e.g. of crafts), how something comes out, finish, finishing (in a board or card game, etc.), green tea (esp. in a sushi restaurant), after (rain, illness, etc.), ex- (e.g. ex-bureaucrat), former" - }, - { - "example": "上がり下り", - "reading": "あがりおり", - "meaning": "going up and down, ascent and descent" - }, - { - "example": "芸者上がり", - "reading": "げいしゃあがり", - "meaning": "ex-geisha, former geisha" - }, - { - "example": "上る", - "reading": "のぼる", - "meaning": "to ascend, to go up, to climb, to ascend (as a natural process, e.g. the Sun), to rise, to go to (the capital), to be promoted, to add up to, to advance (in price), to swim up (a river), to sail up, to come up (on the agenda)" - }, - { - "example": "上り", - "reading": "のぼり", - "meaning": "ascent, climbing, ascending (path), climb, up-train, train heading toward the starting point of its route, upbound (esp. toward Tokyo)" - }, - { - "example": "上り下り", - "reading": "のぼりくだり", - "meaning": "rising and falling, going up and down" - }, - { - "example": "逆上せる", - "reading": "のぼせる", - "meaning": "to feel dizzy, to have blood rush to one's head, to lose one's cool, to be obsessed, to be infatuated, to become conceited" - }, - { - "example": "上せる", - "reading": "のぼせる", - "meaning": "to raise, to record, to bring up (a matter), to serve (food), to send some on out" - }, - { - "example": "上す", - "reading": "のぼす", - "meaning": "to raise, to record, to bring up (a matter), to serve (food), to send someone out" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "卜" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19978_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e0a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e0a.gif", - "uri": "http://jisho.org/search/%E4%B8%8A%23kanji" - }, - { - "query": "森", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "609", - "strokeCount": 12, - "meaning": "forest, woods", - "kunyomi": [ - "もり" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "森林", - "reading": "シンリン", - "meaning": "forest, woods" - }, - { - "example": "森閑", - "reading": "シンカン", - "meaning": "silent, still, quiet, hushed" - }, - { - "example": "森森", - "reading": "シンシン", - "meaning": "deeply forested" - } - ], - "kunyomiExamples": [ - { - "example": "森", - "reading": "もり", - "meaning": "forest, shrine grove" - }, - { - "example": "森青蛙", - "reading": "もりあおがえる", - "meaning": "forest green tree frog (Rhacophorus arboreus)" - }, - { - "example": "青森", - "reading": "あおもり", - "meaning": "Aomori (city, prefecture)" - }, - { - "example": "大森", - "reading": "おおもり", - "meaning": "large forest" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26862_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068ee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68ee.gif", - "uri": "http://jisho.org/search/%E6%A3%AE%23kanji" - }, - { - "query": "人", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "5", - "strokeCount": 2, - "meaning": "person", - "kunyomi": [ - "ひと", - "-り", - "-と" - ], - "onyomi": [ - "ジン", - "ニン" - ], - "onyomiExamples": [ - { - "example": "人", - "reading": "ジン", - "meaning": "-ian (e.g. Italian), -ite (e.g. Tokyoite), -er (e.g. performer, etc.), person working with ..., man, person, people" - }, - { - "example": "人為", - "reading": "ジンイ", - "meaning": "human work, human agency, art, artificiality" - }, - { - "example": "米人", - "reading": "ベイジン", - "meaning": "American person" - }, - { - "example": "俳人", - "reading": "ハイジン", - "meaning": "haiku poet" - }, - { - "example": "人", - "reading": "ニン", - "meaning": "counter for people" - }, - { - "example": "人気", - "reading": "ニンキ", - "meaning": "popularity, public favor, condition (e.g. market), tone, character, nature" - }, - { - "example": "同人", - "reading": "ドウジン", - "meaning": "same person, said person, the person in question, coterie, clique, fraternity, kindred spirits, comrade, colleague, dōjin, doujin, Japanese fans or hobbyists who produce their owns magazines, manga, software, etc." - }, - { - "example": "代人", - "reading": "ダイニン", - "meaning": "substitute, deputy, proxy, representative, agent" - } - ], - "kunyomiExamples": [ - { - "example": "人", - "reading": "ひと", - "meaning": "man, person, human being, mankind, people, human (Homo sapiens), humans as a species, character, personality, man of talent, true man, another person, other people, others, adult" - }, - { - "example": "人一倍", - "reading": "ひといちばい", - "meaning": "(much) more than others, exceedingly, extremely, unusually" - }, - { - "example": "貴人", - "reading": "きじん", - "meaning": "aristocrat, nobleman, dignitary, person of high rank" - }, - { - "example": "いい人", - "reading": "いいひと", - "meaning": "good-natured person, good person, (one's) lover, boyfriend, girlfriend" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "人" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20154_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04eba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4eba.gif", - "uri": "http://jisho.org/search/%E4%BA%BA%23kanji" - }, - { - "query": "水", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "223", - "strokeCount": 4, - "meaning": "water", - "kunyomi": [ - "みず", - "みず-" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "水", - "reading": "スイ", - "meaning": "Wednesday, shaved ice (served with flavored syrup), water (fifth of the five elements)" - }, - { - "example": "水位", - "reading": "スイイ", - "meaning": "water level" - }, - { - "example": "用水", - "reading": "ヨウスイ", - "meaning": "irrigation water, water for fire, city water, cistern water" - }, - { - "example": "浄水", - "reading": "ジョウスイ", - "meaning": "clean water" - } - ], - "kunyomiExamples": [ - { - "example": "水", - "reading": "みず", - "meaning": "water (esp. cool, fresh water, e.g. drinking water), fluid (esp. in an animal tissue), liquid, flood, floodwaters, water offered to wrestlers just prior to a bout, break granted to wrestlers engaged in a prolonged bout" - }, - { - "example": "水揚げ", - "reading": "みずあげ", - "meaning": "landing, unloading (e.g. a ship), catch (of fish), takings, sales (of a shop), defloration (e.g. of a geisha), preservation (of cut flowers, in ikebana)" - }, - { - "example": "飲み水", - "reading": "のみみず", - "meaning": "drinking water, potable water" - }, - { - "example": "呼び水", - "reading": "よびみず", - "meaning": "pump-priming, rousing, stimulation" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27700_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c34.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c34.gif", - "uri": "http://jisho.org/search/%E6%B0%B4%23kanji" - }, - { - "query": "正", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "143", - "strokeCount": 5, - "meaning": "correct, justice, righteous, 10**40", - "kunyomi": [ - "ただ.しい", - "ただ.す", - "まさ", - "まさ.に" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "正", - "reading": "セイ", - "meaning": "(logical) true, regular, 10^40, ten thousand undecillion, original, positive, greater than zero, thesis (in dialectics)" - }, - { - "example": "正解", - "reading": "セイカイ", - "meaning": "correct, right, correct interpretation (answer, solution)" - }, - { - "example": "検事正", - "reading": "ケンジセイ", - "meaning": "chief public prosecutor" - }, - { - "example": "適正", - "reading": "テキセイ", - "meaning": "reasonable, suitable" - }, - { - "example": "正", - "reading": "ショウ", - "meaning": "greater (of equal court ranks), upper, senior, director (highest of the four administrative positions of the ritsuryo period), chief, exactly, precisely" - }, - { - "example": "正月", - "reading": "ショウガツ", - "meaning": "New Year (esp. first three days), first month of the year, January" - }, - { - "example": "大正", - "reading": "タイショウ", - "meaning": "Taishō era (1912.7.30-1926.12.25), Taisho era" - }, - { - "example": "賀正", - "reading": "ガショウ", - "meaning": "A Happy New Year!" - } - ], - "kunyomiExamples": [ - { - "example": "正しい", - "reading": "ただしい", - "meaning": "right, correct, proper, righteous, just, honest, truthful, lawful" - }, - { - "example": "正しい行い", - "reading": "ただしいおこない", - "meaning": "conducting oneself properly, right conduct, doing the right thing" - }, - { - "example": "正す", - "reading": "ただす", - "meaning": "to correct, to rectify, to reform, to amend, to redress, to straighten (one's posture, collar, etc.), to adjust" - }, - { - "example": "糺す", - "reading": "ただす", - "meaning": "to ascertain, to confirm, to verify, to make sure of" - }, - { - "example": "正", - "reading": "まさ", - "meaning": "exact, precise" - }, - { - "example": "正に", - "reading": "まさに", - "meaning": "exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally" - }, - { - "example": "正に", - "reading": "まさに", - "meaning": "exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally" - } - ], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "一", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27491_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b63.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b63.gif", - "uri": "http://jisho.org/search/%E6%AD%A3%23kanji" - }, - { - "query": "生", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "29", - "strokeCount": 5, - "meaning": "life, genuine, birth", - "kunyomi": [ - "い.きる", - "い.かす", - "い.ける", - "う.まれる", - "うま.れる", - "う.まれ", - "うまれ", - "う.む", - "お.う", - "は.える", - "は.やす", - "き", - "なま", - "なま-", - "な.る", - "な.す", - "む.す", - "-う" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "生", - "reading": "セイ", - "meaning": "life, living, I, me, myself, student" - }, - { - "example": "生育", - "reading": "セイイク", - "meaning": "birth and growth, giving birth and raising, development, breeding" - }, - { - "example": "回生", - "reading": "カイセイ", - "meaning": "resurrection, resuscitation, regeneration, university student in ... year" - }, - { - "example": "公衆衛生", - "reading": "コウシュウエイセイ", - "meaning": "sanitation, public health" - }, - { - "example": "生", - "reading": "セイ", - "meaning": "life, living, I, me, myself, student" - }, - { - "example": "生家", - "reading": "セイカ", - "meaning": "house where one was born, one's parents' house" - }, - { - "example": "殺生", - "reading": "セッショウ", - "meaning": "killing, destruction of life, cruel, heartless, callous, brutal" - }, - { - "example": "死生", - "reading": "シセイ", - "meaning": "life and death" - } - ], - "kunyomiExamples": [ - { - "example": "生きる", - "reading": "いきる", - "meaning": "to live, to exist, to make a living, to subsist, to be in effect, to be in use, to function, to come to life, to be enlivened, to be safe (in baseball, go, etc.)" - }, - { - "example": "生きる力", - "reading": "いきるちから", - "meaning": "zest for living, energy to live" - }, - { - "example": "生かす", - "reading": "いかす", - "meaning": "to make (the best) use of, to put to good use, to leverage (skills, attributes, experience, etc.), to capitalise on (experience, etc.), to let live, to keep alive, to revive, to resuscitate, to bring back to life, to restore (a deleted passage; in proofreading)" - }, - { - "example": "生ける", - "reading": "いける", - "meaning": "to arrange (flowers), to plant, living, live" - }, - { - "example": "生ける屍", - "reading": "いけるしかばね", - "meaning": "living corpse" - }, - { - "example": "生まれる", - "reading": "うまれる", - "meaning": "to be born" - }, - { - "example": "生まれる", - "reading": "うまれる", - "meaning": "to be born" - }, - { - "example": "生まれ", - "reading": "うまれ", - "meaning": "birth, birthplace, born in (country, month, imperial era, zodiac year, etc.)" - }, - { - "example": "生まれつき", - "reading": "うまれつき", - "meaning": "by nature, by birth, naturally, natural, innate" - }, - { - "example": "生まれ", - "reading": "うまれ", - "meaning": "birth, birthplace, born in (country, month, imperial era, zodiac year, etc.)" - }, - { - "example": "生まれつき", - "reading": "うまれつき", - "meaning": "by nature, by birth, naturally, natural, innate" - }, - { - "example": "生む", - "reading": "うむ", - "meaning": "to give birth, to bear (child), to lay (eggs), to produce, to yield, to give rise to, to deliver" - }, - { - "example": "生う", - "reading": "おう", - "meaning": "to grow, to spring up, to cut (teeth)" - }, - { - "example": "生える", - "reading": "はえる", - "meaning": "to grow, to spring up, to sprout, to cut (teeth)" - }, - { - "example": "生やす", - "reading": "はやす", - "meaning": "to grow, to cultivate, to wear a beard" - }, - { - "example": "生", - "reading": "き", - "meaning": "pure, undiluted, raw, crude" - }, - { - "example": "生地", - "reading": "きじ", - "meaning": "cloth, fabric, material, texture, dough, batter, inherent quality, one's true character, one's true colours, unglazed pottery, skin with no make-up, uncoated metal" - }, - { - "example": "死に生き", - "reading": "しにいき", - "meaning": "death and life, death or life, death" - }, - { - "example": "生", - "reading": "なま", - "meaning": "raw, uncooked, fresh, natural, as it is, unedited, unprocessed, unprotected (sex), live (i.e. not recorded), inexperienced, unpolished, green, crude, impudence, sauciness, unpasteurized beer, draft beer, draught beer, blank (e.g. disk), unused, just a little, somehow, vaguely, partially, somewhat, half-, semi-, insufficient, incomplete, half-baked, half-hearted, perfunctory, cash, tipsiness" - }, - { - "example": "生り", - "reading": "なまり", - "meaning": "boiled and half-dried bonito" - }, - { - "example": "お生", - "reading": "おなま", - "meaning": "impudence, sauciness" - }, - { - "example": "現ナマ", - "reading": "げんナマ", - "meaning": "cold cash, hard cash" - }, - { - "example": "生る", - "reading": "なる", - "meaning": "to bear fruit" - }, - { - "example": "生す", - "reading": "なす", - "meaning": "to have a child" - }, - { - "example": "生す", - "reading": "むす", - "meaning": "to grow (of moss, etc.)" - } - ], - "radical": { - "symbol": "生", - "meaning": "life" - }, - "parts": [ - "生" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29983_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0751f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/751f.gif", - "uri": "http://jisho.org/search/%E7%94%9F%23kanji" - }, - { - "query": "青", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "589", - "strokeCount": 8, - "meaning": "blue, green", - "kunyomi": [ - "あお", - "あお-", - "あお.い" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "青果", - "reading": "セイカ", - "meaning": "fruit(s) and vegetables, produce" - }, - { - "example": "青雲", - "reading": "セイウン", - "meaning": "blue sky, erudition, detachment from the world, high rank" - }, - { - "example": "回青", - "reading": "カイセイ", - "meaning": "Mohammedan blue (pigment used in porcelain painting)" - }, - { - "example": "黛青", - "reading": "タイセイ", - "meaning": "blackish blue" - }, - { - "example": "青面金剛", - "reading": "ショウメンコンゴウ", - "meaning": "Blue-Faced Vajra" - }, - { - "example": "青龍", - "reading": "セイリョウ", - "meaning": "blue dragon (an auspicious creature in Chinese mythology), Azure Dragon (god said to rule over the eastern heavens)" - }, - { - "example": "緑青", - "reading": "ロクショウ", - "meaning": "verdigris, green rust, copper rust" - }, - { - "example": "花緑青", - "reading": "ハナロクショウ", - "meaning": "Paris green, emerald green" - } - ], - "kunyomiExamples": [ - { - "example": "青", - "reading": "あお", - "meaning": "blue, azure, green, green light (traffic), black (horse coat color), blue 5-point card, immature, unripe, young" - }, - { - "example": "青梅", - "reading": "あおうめ", - "meaning": "unripe plum" - }, - { - "example": "プロシア青", - "reading": "プロシアあお", - "meaning": "Prussian blue" - }, - { - "example": "深青", - "reading": "ふかあお", - "meaning": "dark blue, deep blue, navy blue" - }, - { - "example": "青い", - "reading": "あおい", - "meaning": "blue, azure, green, pale, gray, grey, unripe, inexperienced" - }, - { - "example": "青色", - "reading": "あおいろ", - "meaning": "blue" - } - ], - "radical": { - "symbol": "青", - "forms": [ - "靑" - ], - "meaning": "blue" - }, - "parts": [ - "二", - "亠", - "土", - "月", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38738_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09752.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9752.gif", - "uri": "http://jisho.org/search/%E9%9D%92%23kanji" - }, - { - "query": "夕", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "924", - "strokeCount": 3, - "meaning": "evening", - "kunyomi": [ - "ゆう" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "勺", - "reading": "シャク", - "meaning": "shaku, traditional unit of volume, approx. 18 ml, shaku, traditional unit of area, approx. 0.033 meters square" - }, - { - "example": "夕日", - "reading": "ユウヒ", - "meaning": "evening sun, setting sun" - }, - { - "example": "秋夕", - "reading": "シュウセキ", - "meaning": "autumn evening" - }, - { - "example": "一夕", - "reading": "イッセキ", - "meaning": "one evening, some evenings" - } - ], - "kunyomiExamples": [ - { - "example": "夕", - "reading": "ゆう", - "meaning": "evening" - }, - { - "example": "夕刊", - "reading": "ゆうかん", - "meaning": "evening paper" - }, - { - "example": "昨夕", - "reading": "さくゆう", - "meaning": "yesterday evening, last night" - }, - { - "example": "春の夕", - "reading": "はるのゆう", - "meaning": "spring evening" - } - ], - "radical": { - "symbol": "夕", - "meaning": "evening, sunset" - }, - "parts": [ - "夕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22805_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05915.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5915.gif", - "uri": "http://jisho.org/search/%E5%A4%95%23kanji" - }, - { - "query": "石", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N3", - "newspaperFrequencyRank": "342", - "strokeCount": 5, - "meaning": "stone", - "kunyomi": [ - "いし" - ], - "onyomi": [ - "セキ", - "シャク", - "コク" - ], - "onyomiExamples": [ - { - "example": "石", - "reading": "セキ", - "meaning": "counter for jewels in a watch, counter for transistors, diodes, etc. in an electronic product" - }, - { - "example": "石材", - "reading": "セキザイ", - "meaning": "(building) stone" - }, - { - "example": "一石", - "reading": "イッセキ", - "meaning": "one game (of go)" - }, - { - "example": "投石", - "reading": "トウセキ", - "meaning": "stone throwing" - }, - { - "example": "石神", - "reading": "シャクジン", - "meaning": "stone which is worshipped, image of a god in stone" - }, - { - "example": "石南花", - "reading": "シャクナゲ", - "meaning": "rhododendron" - }, - { - "example": "電磁石", - "reading": "デンジシャク", - "meaning": "electromagnet" - }, - { - "example": "界磁石", - "reading": "カイジシャク", - "meaning": "field magnet" - }, - { - "example": "石", - "reading": "コク", - "meaning": "koku, traditional unit of volume, approx. 180.4 litres, measure of a Japanese-style boat's loading capacity (approx. 278.26 liters)" - }, - { - "example": "石高", - "reading": "コクダカ", - "meaning": "(crop) yield, stipend (orig. assessed on the basis of a crop), salary" - }, - { - "example": "一石", - "reading": "イッコク", - "meaning": "one koku (measure)" - } - ], - "kunyomiExamples": [ - { - "example": "石", - "reading": "いし", - "meaning": "stone, gem, jewel" - }, - { - "example": "石垣", - "reading": "いしがき", - "meaning": "stone wall" - }, - { - "example": "墓石", - "reading": "ぼせき", - "meaning": "tombstone, gravestone" - }, - { - "example": "敷石", - "reading": "しきいし", - "meaning": "paving stone, pavement" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "口", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30707_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77f3.gif", - "uri": "http://jisho.org/search/%E7%9F%B3%23kanji" - }, - { - "query": "赤", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "584", - "strokeCount": 7, - "meaning": "red", - "kunyomi": [ - "あか", - "あか-", - "あか.い", - "あか.らむ", - "あか.らめる" - ], - "onyomi": [ - "セキ", - "シャク" - ], - "onyomiExamples": [ - { - "example": "赤軍", - "reading": "セキグン", - "meaning": "Red Army (Soviet Union, 1918-1946), Workers' and Peasants' Red Army" - }, - { - "example": "赤外線", - "reading": "セキガイセン", - "meaning": "infrared rays, infrared radiation" - }, - { - "example": "七赤", - "reading": "シチセキ", - "meaning": "seventh of nine traditional astrological signs (corresponding to Venus and west)" - }, - { - "example": "発赤", - "reading": "ホッセキ", - "meaning": "rubefaction (reddening of the skin)" - }, - { - "example": "赤銅", - "reading": "シャクドウ", - "meaning": "shakudo, gold-copper alloy, often with a blue patina" - }, - { - "example": "赤銅色", - "reading": "シャクドウイロ", - "meaning": "brown, tanned" - } - ], - "kunyomiExamples": [ - { - "example": "赤", - "reading": "あか", - "meaning": "red, crimson, scarlet, red-containing colour (e.g. brown, pink, orange), Red (i.e. communist), red light (traffic), red ink (i.e. in finance or proof-reading), (in) the red, complete, total, perfect, obvious, copper, red 5-point card" - }, - { - "example": "銅", - "reading": "どう", - "meaning": "copper (Cu), bronze (medal)" - }, - { - "example": "紅赤", - "reading": "べにあか", - "meaning": "bright red tinged with yellow, variety of sweet potato with red skin and sweet yellow flesh (product of the Kawagoe region)" - }, - { - "example": "真赤", - "reading": "まあか", - "meaning": "bright red, deep red" - }, - { - "example": "赤い", - "reading": "あかい", - "meaning": "red, crimson, scarlet, vermilion, vermillion, Red, communist, beautiful" - }, - { - "example": "赤色", - "reading": "あかいろ", - "meaning": "red, red color (colour), red-colored, red, communism, the left" - }, - { - "example": "赤らむ", - "reading": "あからむ", - "meaning": "to become red, to redden, to blush" - }, - { - "example": "赤らめる", - "reading": "あからめる", - "meaning": "to blush, to redden" - } - ], - "radical": { - "symbol": "赤", - "meaning": "red, naked" - }, - "parts": [ - "土", - "赤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36196_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d64.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d64.gif", - "uri": "http://jisho.org/search/%E8%B5%A4%23kanji" - }, - { - "query": "千", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "195", - "strokeCount": 3, - "meaning": "thousand", - "kunyomi": [ - "ち" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "千", - "reading": "セン", - "meaning": "1,000, thousand" - }, - { - "example": "千九百年代", - "reading": "センキュウヒャクネンダイ", - "meaning": "the 1900s" - }, - { - "example": "一騎当千", - "reading": "イッキトウセン", - "meaning": "being a match for a thousand, being a mighty warrior (combatant, player)" - }, - { - "example": "一人当千", - "reading": "イチニントウセン", - "meaning": "being a match for a thousand" - } - ], - "kunyomiExamples": [ - { - "example": "千", - "reading": "せん", - "meaning": "1,000, thousand" - }, - { - "example": "千島", - "reading": "ちしま", - "meaning": "Kurile Islands" - }, - { - "example": "百千", - "reading": "ひゃくせん", - "meaning": "a large number, all sorts, hundreds and thousands" - }, - { - "example": "8000", - "reading": "はっせん", - "meaning": "8000, eight thousand, many" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "ノ", - "十" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21315_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05343.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5343.gif", - "uri": "http://jisho.org/search/%E5%8D%83%23kanji" - }, - { - "query": "川", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "181", - "strokeCount": 3, - "meaning": "stream, river, river or three-stroke river radical (no. 47)", - "kunyomi": [ - "かわ" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "川柳", - "reading": "センリュウ", - "meaning": "senryū, comic haiku, humorous seventeen-mora poem" - }, - { - "example": "川きゅう", - "reading": "センキュウ", - "meaning": "cnidium rhizome (Cnidium officinale)" - }, - { - "example": "山川", - "reading": "サンセン", - "meaning": "mountains and rivers" - }, - { - "example": "四川", - "reading": "シセン", - "meaning": "Sichuan (China), Szechuan, Szechwan" - } - ], - "kunyomiExamples": [ - { - "example": "川", - "reading": "かわ", - "meaning": "river, stream, River, the ... river" - }, - { - "example": "川上", - "reading": "かわかみ", - "meaning": "upper reaches of a river, upstream" - }, - { - "example": "堀川", - "reading": "ほりかわ", - "meaning": "canal" - }, - { - "example": "山川", - "reading": "さんせん", - "meaning": "mountains and rivers" - } - ], - "radical": { - "symbol": "巛", - "forms": [ - "川", - "巜" - ], - "meaning": "river" - }, - "parts": [ - "川" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24029_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ddd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ddd.gif", - "uri": "http://jisho.org/search/%E5%B7%9D%23kanji" - }, - { - "query": "先", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "173", - "strokeCount": 6, - "meaning": "before, ahead, previous, future, precedence", - "kunyomi": [ - "さき", - "ま.ず" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "先", - "reading": "セン", - "meaning": "former, previous, old, first move (in go, shogi, etc.), opening move" - }, - { - "example": "先駆", - "reading": "センク", - "meaning": "forerunner, precursor, pioneer, leader, outrider, outriding" - }, - { - "example": "機先", - "reading": "キセン", - "meaning": "forestall" - }, - { - "example": "互先", - "reading": "タガイセン", - "meaning": "even game (esp. in go)" - } - ], - "kunyomiExamples": [ - { - "example": "先", - "reading": "さき", - "meaning": "previous, prior, former, first, earlier, some time ago, preceding, point (e.g. pencil), tip, end, nozzle, head (of a line), front, ahead, the other side, the future, hereafter, destination, the other party" - }, - { - "example": "先行き", - "reading": "さきゆき", - "meaning": "the future, future prospects" - }, - { - "example": "小手先", - "reading": "こてさき", - "meaning": "tip of the hand, (use of) one's hands, cheap trick, superficial wit, superficial cleverness, cheap, makeshift (e.g. measures), shortsighted, perfunctory, halfhearted" - }, - { - "example": "矛先", - "reading": "ほこさき", - "meaning": "point of spear, spearhead, brunt, aim of attack, force of argument" - }, - { - "example": "先ず", - "reading": "まず", - "meaning": "first (of all), firstly, to begin with, before anything else, probably, most likely, almost certainly, virtually, more or less (satisfactory), on the whole, reasonably, anyway, at any rate, for now (at least), for the time being" - }, - { - "example": "まず第一に", - "reading": "まずだいいちに", - "meaning": "first of all, in the first place, to begin with, for starters" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "ノ", - "儿", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20808_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05148.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5148.gif", - "uri": "http://jisho.org/search/%E5%85%88%23kanji" - }, - { - "query": "早", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "402", - "strokeCount": 6, - "meaning": "early, fast", - "kunyomi": [ - "はや.い", - "はや", - "はや-", - "はや.まる", - "はや.める", - "さ-" - ], - "onyomi": [ - "ソウ", - "サッ" - ], - "onyomiExamples": [ - { - "example": "早急", - "reading": "ソウキュウ", - "meaning": "immediate, prompt, quick, rapid, urgent, pressing" - }, - { - "example": "早期", - "reading": "ソウキ", - "meaning": "early stage" - }, - { - "example": "時期早々", - "reading": "ジキソウソウ", - "meaning": "premature" - }, - { - "example": "尚早", - "reading": "ショウソウ", - "meaning": "prematurity" - }, - { - "example": "早急", - "reading": "ソウキュウ", - "meaning": "immediate, prompt, quick, rapid, urgent, pressing" - }, - { - "example": "早速", - "reading": "サッソク", - "meaning": "at once, immediately, without delay, promptly" - } - ], - "kunyomiExamples": [ - { - "example": "早い", - "reading": "はやい", - "meaning": "fast, quick, hasty, brisk, early (in the day, etc.), premature, (too) soon, not yet, (too) early, easy, simple, quick" - }, - { - "example": "早いこと", - "reading": "はやいこと", - "meaning": "quickly" - }, - { - "example": "早", - "reading": "はや", - "meaning": "already, now, by this time, quick, early, fast, rapid" - }, - { - "example": "甲矢", - "reading": "はや", - "meaning": "arrow with feathers that curve to the left (the first of two arrows to be fired)" - }, - { - "example": "早々", - "reading": "はやはや", - "meaning": "quickly" - }, - { - "example": "なる早", - "reading": "なるはや", - "meaning": "as soon as possible, ASAP" - }, - { - "example": "早まる", - "reading": "はやまる", - "meaning": "to be brought forward (e.g. by three hours), to be moved up, to be advanced, to be hasty, to be rash, to quicken, to speed up, to gather speed" - }, - { - "example": "早める", - "reading": "はやめる", - "meaning": "to bring forward (e.g. by 3 hours), to advance, to hasten (e.g. one's death), to expedite, to precipitate, to quicken (e.g. one's step), to speed up, to accelerate" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "十", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26089_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065e9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65e9.gif", - "uri": "http://jisho.org/search/%E6%97%A9%23kanji" - }, - { - "query": "草", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N3", - "newspaperFrequencyRank": "967", - "strokeCount": 9, - "meaning": "grass, weeds, herbs, pasture, write, draft", - "kunyomi": [ - "くさ", - "くさ-", - "-ぐさ" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "草", - "reading": "ソウ", - "meaning": "draft, rough copy, highly cursive style (of writing Chinese characters), grass style" - }, - { - "example": "草案", - "reading": "ソウアン", - "meaning": "draft (for a speech, bill, etc.)" - }, - { - "example": "除草", - "reading": "ジョソウ", - "meaning": "weeding" - }, - { - "example": "起草", - "reading": "キソウ", - "meaning": "drafting (e.g. a bill), drawing up" - } - ], - "kunyomiExamples": [ - { - "example": "草", - "reading": "くさ", - "meaning": "grass, weed, herb, thatch, ninja, not genuine, substandard, LOL, haha" - }, - { - "example": "草刈り", - "reading": "くさかり", - "meaning": "mowing, mower" - }, - { - "example": "水草", - "reading": "みずくさ", - "meaning": "water plant, aquatic plant, waterweed, hydrophyte" - }, - { - "example": "若草", - "reading": "わかくさ", - "meaning": "green grass, young (fresh) grass" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "十", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08349.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8349.gif", - "uri": "http://jisho.org/search/%E8%8D%89%23kanji" - }, - { - "query": "足", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "343", - "strokeCount": 7, - "meaning": "leg, foot, be sufficient, counter for pairs of footwear", - "kunyomi": [ - "あし", - "た.りる", - "た.る", - "た.す" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "足", - "reading": "ソク", - "meaning": "counter for pairs of socks, shoes, etc." - }, - { - "example": "足跡", - "reading": "アシアト", - "meaning": "footprints, record of page visitors (e.g. in social networking sites)" - }, - { - "example": "俊足", - "reading": "シュンソク", - "meaning": "swiftness of foot, fast runner, swift horse, fleet steed, person of great talent, gifted person" - }, - { - "example": "土足", - "reading": "ドソク", - "meaning": "shod feet, wearing shoes, muddy feet, dirty feet" - } - ], - "kunyomiExamples": [ - { - "example": "足", - "reading": "あし", - "meaning": "foot, paw, arm (of an octopus, squid, etc.), leg, gait, pace, bottom structural component (i.e. radical) of a kanji, means of transportation, money, coin" - }, - { - "example": "足跡", - "reading": "あしあと", - "meaning": "footprints, record of page visitors (e.g. in social networking sites)" - }, - { - "example": "出足", - "reading": "であし", - "meaning": "turnout (of people), start (e.g. race, campaign, term of office), constant forward movement, initial charge, dash" - }, - { - "example": "客足", - "reading": "きゃくあし", - "meaning": "customer traffic, customers, custom" - }, - { - "example": "足りる", - "reading": "たりる", - "meaning": "to be sufficient, to be enough, to be worth doing, to be worthy of, to deserve, to do (the job), to serve, to answer" - }, - { - "example": "足る", - "reading": "たる", - "meaning": "to be sufficient, to be enough, to be worth doing, to be worthy of, to deserve, to do (the job), to serve, to answer" - }, - { - "example": "足るを知る", - "reading": "たるをしる", - "meaning": "to know one has enough, to be satisfied with one's lot in life" - }, - { - "example": "足す", - "reading": "たす", - "meaning": "to add (numbers), to add (something), to top up (with something), to take care of (e.g. one's business)" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "口", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36275_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08db3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8db3.gif", - "uri": "http://jisho.org/search/%E8%B6%B3%23kanji" - }, - { - "query": "村", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "253", - "strokeCount": 7, - "meaning": "village, town", - "kunyomi": [ - "むら" - ], - "onyomi": [ - "ソン" - ], - "onyomiExamples": [ - { - "example": "村", - "reading": "ムラ", - "meaning": "village" - }, - { - "example": "村議会", - "reading": "ソンギカイ", - "meaning": "village assembly" - }, - { - "example": "町村", - "reading": "チョウソン", - "meaning": "towns and villages" - }, - { - "example": "農村", - "reading": "ノウソン", - "meaning": "agricultural community, farm village, rural" - } - ], - "kunyomiExamples": [ - { - "example": "村", - "reading": "むら", - "meaning": "village" - }, - { - "example": "村長", - "reading": "そんちょう", - "meaning": "village headman, village mayor" - }, - { - "example": "選手村", - "reading": "せんしゅむら", - "meaning": "Olympic village, athlete's village" - }, - { - "example": "隣村", - "reading": "りんそん", - "meaning": "neighboring village, neighbouring village" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "寸", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26449_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06751.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6751.gif", - "uri": "http://jisho.org/search/%E6%9D%91%23kanji" - }, - { - "query": "大", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "7", - "strokeCount": 3, - "meaning": "large, big", - "kunyomi": [ - "おお-", - "おお.きい", - "-おお.いに" - ], - "onyomi": [ - "ダイ", - "タイ" - ], - "onyomiExamples": [ - { - "example": "大", - "reading": "ダイ", - "meaning": "large, big, great, huge, vast, major, important, serious, severe, great, prominent, eminent, distinguished, -sized, as big as, the size of, university, large (e.g. serving size), large option, long month (i.e. having 31 days)" - }, - { - "example": "大英博物館", - "reading": "ダイエイハクブツカン", - "meaning": "British Museum" - }, - { - "example": "国大", - "reading": "コクダイ", - "meaning": "national university" - }, - { - "example": "電通大", - "reading": "デンツウダイ", - "meaning": "University of Electro-Communications" - }, - { - "example": "大", - "reading": "タイ", - "meaning": "nth year in the Taishō era (1912.7.30-1926.12.25)" - }, - { - "example": "大尉", - "reading": "タイイ", - "meaning": "captain (Army, U.S. Marine Corps, USAF), lieutenant (Navy), flight lieutenant (RAF, RAAF, RNZAF, etc.)" - }, - { - "example": "負荷増大", - "reading": "フカゾウタイ", - "meaning": "load increase" - }, - { - "example": "御大", - "reading": "オンタイ", - "meaning": "boss, governor, headman" - } - ], - "kunyomiExamples": [ - { - "example": "大きい", - "reading": "おおきい", - "meaning": "big, large, great, loud, extensive, spacious, important, decisive, valuable, older, grown up" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22823_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05927.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5927.gif", - "uri": "http://jisho.org/search/%E5%A4%A7%23kanji" - }, - { - "query": "男", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "240", - "strokeCount": 7, - "meaning": "male", - "kunyomi": [ - "おとこ", - "お" - ], - "onyomi": [ - "ダン", - "ナン" - ], - "onyomiExamples": [ - { - "example": "男", - "reading": "ダン", - "meaning": "son, baron, man, male" - }, - { - "example": "男子", - "reading": "ダンシ", - "meaning": "youth, young man" - }, - { - "example": "既男", - "reading": "キダン", - "meaning": "married man" - }, - { - "example": "喪男", - "reading": "モオトコ", - "meaning": "unpopular man, man who isn't well-liked by women" - }, - { - "example": "男", - "reading": "ナン", - "meaning": "son" - }, - { - "example": "男女", - "reading": "ダンジョ", - "meaning": "men and women, man and woman, both sexes, both genders" - }, - { - "example": "一男", - "reading": "イチナン", - "meaning": "boy, eldest son" - }, - { - "example": "次男", - "reading": "ジナン", - "meaning": "second son" - } - ], - "kunyomiExamples": [ - { - "example": "男", - "reading": "おとこ", - "meaning": "man, male, fellow, guy, chap, bloke, male lover, boyfriend, man, manliness, manly honor, manly honour, manly reputation" - }, - { - "example": "男の子", - "reading": "おとこのこ", - "meaning": "boy, son, baby boy, young man" - }, - { - "example": "年男", - "reading": "としおとこ", - "meaning": "Man of the Year, referring to a man born in a year with the same Chinese zodiac sign as the current year" - }, - { - "example": "山男", - "reading": "やまおとこ", - "meaning": "giant, woodsman, alpinist" - }, - { - "example": "雄", - "reading": "お", - "meaning": "male, manly, brave, heroic, larger (of the two), greater, man, husband" - }, - { - "example": "男", - "reading": "おとこ", - "meaning": "man, male, fellow, guy, chap, bloke, male lover, boyfriend, man, manliness, manly honor, manly honour, manly reputation" - }, - { - "example": "愛上男", - "reading": "あいうえお", - "meaning": "skilled male lover" - }, - { - "example": "毒男", - "reading": "どくお", - "meaning": "(2-ch term) lonely heart, male virgin, loser, geek" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "力", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30007_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07537.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7537.gif", - "uri": "http://jisho.org/search/%E7%94%B7%23kanji" - }, - { - "query": "竹", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "593", - "strokeCount": 6, - "meaning": "bamboo", - "kunyomi": [ - "たけ" - ], - "onyomi": [ - "チク" - ], - "onyomiExamples": [ - { - "example": "竹林", - "reading": "チクリン", - "meaning": "bamboo thicket, bamboo grove" - }, - { - "example": "竹馬", - "reading": "タケウマ", - "meaning": "stilts (for walking), hobby horse" - }, - { - "example": "爆竹", - "reading": "バクチク", - "meaning": "firecracker" - }, - { - "example": "破竹", - "reading": "ハチク", - "meaning": "breaking bamboo" - } - ], - "kunyomiExamples": [ - { - "example": "竹", - "reading": "たけ", - "meaning": "bamboo (any grass of subfamily Bambusoideae), middle (of a three-tier ranking system)" - }, - { - "example": "竹馬", - "reading": "たけうま", - "meaning": "stilts (for walking), hobby horse" - }, - { - "example": "笛竹", - "reading": "ふえたけ", - "meaning": "bamboo flute, bamboo for making flutes, wind and string instruments" - }, - { - "example": "苦竹", - "reading": "にがたけ", - "meaning": "Japanese timber bamboo (Phyllostachys bambsoides), giant timber bamboo, madake, Simon bamboo (Pleioblastus simonii)" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31481_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07af9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7af9.gif", - "uri": "http://jisho.org/search/%E7%AB%B9%23kanji" - }, - { - "query": "中", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "11", - "strokeCount": 4, - "meaning": "in, inside, middle, mean, center", - "kunyomi": [ - "なか", - "うち", - "あた.る" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "中", - "reading": "チュウ", - "meaning": "medium, average, middle, moderation, middle school, China, volume two (of three), during (a certain time when one did or is doing something), under (construction, etc.), while, in, out of, of the" - }, - { - "example": "中尉", - "reading": "チュウイ", - "meaning": "first lieutenant, lieutenant junior grade" - }, - { - "example": "宮中", - "reading": "キュウチュウ", - "meaning": "imperial court" - }, - { - "example": "訪中", - "reading": "ホウチュウ", - "meaning": "visit to China" - } - ], - "kunyomiExamples": [ - { - "example": "中", - "reading": "なか", - "meaning": "inside, in, among, within, center (centre), middle, during, while" - }, - { - "example": "中島", - "reading": "なかじま", - "meaning": "island in a pond or river" - }, - { - "example": "野中", - "reading": "のなか", - "meaning": "in the middle of a field" - }, - { - "example": "そんな中", - "reading": "そんななか", - "meaning": "wherein, therein, thereinto" - }, - { - "example": "内", - "reading": "うち", - "meaning": "inside, within, while (e.g. one is young), during, within (e.g. a day), in the course of, among, amongst, (out) of, between, in (secret, chaos, poverty, etc.), amidst, with (e.g. success), within oneself, one's feelings, inner thoughts, we, our company, our organization, one's home, one's family, my spouse, my husband, my wife, signed on behalf of (husband's name) by his wife, I, me, imperial palace grounds, emperor" - }, - { - "example": "碁打ち鳥飼い馬鹿の中", - "reading": "ごうちとりかいばかのうち", - "meaning": "go players and bird keepers are idiots (both activities demand a lot of time)" - }, - { - "example": "此の内", - "reading": "このうち", - "meaning": "meanwhile, the other day, recently" - }, - { - "example": "当たる", - "reading": "あたる", - "meaning": "to be hit, to strike, to touch, to be in contact, to be affixed, to be equivalent to, to be applicable, to apply to, to be right on the money (of a prediction, criticism, etc.), to be selected (in a lottery, etc.), to win, to be successful, to go well, to be a hit, to face, to confront, to lie (in the direction of), to undertake, to be assigned, to be stricken (by food poisoning, heat, etc.), to be afflicted, to be called on (e.g. by a teacher), to treat (esp. harshly), to lash out at, to be unnecessary, to be hitting well, to be on a hitting streak, to feel a bite (in fishing), (of fruit, etc.) to be bruised, to spoil, to feel (something) out, to probe into, to check (i.e. by comparison), to shave, to be a relative of a person, to be a ... in relation to ..., to stand in a relationship" - } - ], - "radical": { - "symbol": "丨", - "meaning": "line" - }, - "parts": [ - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20013_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e2d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e2d.gif", - "uri": "http://jisho.org/search/%E4%B8%AD%23kanji" - }, - { - "query": "虫", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1351", - "strokeCount": 6, - "meaning": "insect, bug, temper", - "kunyomi": [ - "むし" - ], - "onyomi": [ - "チュウ", - "キ" - ], - "onyomiExamples": [ - { - "example": "虫垂炎", - "reading": "チュウスイエン", - "meaning": "appendicitis" - }, - { - "example": "虫えい", - "reading": "チュウエイ", - "meaning": "gall (abnormal plant growth formed by insects)" - }, - { - "example": "幼虫", - "reading": "ヨウチュウ", - "meaning": "larva, grub, maggot" - }, - { - "example": "寄生虫", - "reading": "キセイチュウ", - "meaning": "parasite" - }, - { - "example": "虫部", - "reading": "キブ", - "meaning": "insect radical, worm radical" - }, - { - "example": "蟻巻", - "reading": "アリマキ", - "meaning": "aphid, plant louse, plant lice" - } - ], - "kunyomiExamples": [ - { - "example": "虫", - "reading": "むし", - "meaning": "insect, bug, cricket, moth, worm, roundworm, one's emotions, one's feelings, nervousness, fretfulness, person devoted to one thing, single-minded person, valve core, mushi (type of game played with a stripped deck)" - }, - { - "example": "虫歯", - "reading": "むしば", - "meaning": "cavity, tooth decay, decayed tooth, dental caries" - }, - { - "example": "苦虫", - "reading": "にがむし", - "meaning": "bitter-tasting bug" - }, - { - "example": "馬追虫", - "reading": "うまおいむし", - "meaning": "Hexacentrus japonicus (species of katydid), Hexacentrus unicolor (species of katydid)" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34411_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0866b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/866b.gif", - "uri": "http://jisho.org/search/%E8%99%AB%23kanji" - }, - { - "query": "町", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "292", - "strokeCount": 7, - "meaning": "town, village, block, street", - "kunyomi": [ - "まち" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "町", - "reading": "マチ", - "meaning": "town, block, neighbourhood, neighborhood, downtown, main street, street, road, 109.09 m, 0.99 hectares" - }, - { - "example": "町議会", - "reading": "チョウギカイ", - "meaning": "town council" - }, - { - "example": "同町", - "reading": "ドウチョウ", - "meaning": "the same town, that town" - }, - { - "example": "門前町", - "reading": "モンゼンマチ", - "meaning": "town originally built around a temple or shrine" - } - ], - "kunyomiExamples": [ - { - "example": "町", - "reading": "まち", - "meaning": "town, block, neighbourhood, neighborhood, downtown, main street, street, road, 109.09 m, 0.99 hectares" - }, - { - "example": "街角", - "reading": "まちかど", - "meaning": "street corner" - }, - { - "example": "室町", - "reading": "むろまち", - "meaning": "Muromachi (era 1392-1573, or 1333-1573, or 1336-1573)" - }, - { - "example": "門前町", - "reading": "もんぜんまち", - "meaning": "town originally built around a temple or shrine" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "一", - "亅", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30010_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0753a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/753a.gif", - "uri": "http://jisho.org/search/%E7%94%BA%23kanji" - }, - { - "query": "天", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "512", - "strokeCount": 4, - "meaning": "heavens, sky, imperial", - "kunyomi": [ - "あまつ", - "あめ", - "あま-" - ], - "onyomi": [ - "テン" - ], - "onyomiExamples": [ - { - "example": "天", - "reading": "テン", - "meaning": "sky, heaven, svarga (heaven-like realm visited as a stage of death and rebirth), deva (divine being of Buddhism), sole of a Japanese sandal" - }, - { - "example": "天下", - "reading": "テンカ", - "meaning": "the whole world, the whole country, society, the public, supremacy over a nation, government of a country, the ruling power, having one's own way, doing as one pleases, peerless, incomparable, superlative, world-famous, shogun (Edo period)" - }, - { - "example": "炎天", - "reading": "エンテン", - "meaning": "blazing heat, scorching sun" - }, - { - "example": "楽天", - "reading": "ラクテン", - "meaning": "optimism" - } - ], - "kunyomiExamples": [ - { - "example": "天津", - "reading": "あまつ", - "meaning": "heavenly, imperial" - }, - { - "example": "天津乙女", - "reading": "あまつおとめ", - "meaning": "celestial maiden" - }, - { - "example": "天", - "reading": "てん", - "meaning": "sky, heaven, svarga (heaven-like realm visited as a stage of death and rebirth), deva (divine being of Buddhism), sole of a Japanese sandal" - }, - { - "example": "天地", - "reading": "てんち", - "meaning": "heaven and earth, the universe, nature, top and bottom, realm, sphere, world, top and bottom, gods of heaven and earth" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "一", - "二", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22825_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05929.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5929.gif", - "uri": "http://jisho.org/search/%E5%A4%A9%23kanji" - }, - { - "query": "田", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "90", - "strokeCount": 5, - "meaning": "rice field, rice paddy", - "kunyomi": [ - "た" - ], - "onyomi": [ - "デン" - ], - "onyomiExamples": [ - { - "example": "田畑", - "reading": "タハタ", - "meaning": "fields (of rice and other crops)" - }, - { - "example": "田園", - "reading": "デンエン", - "meaning": "the country, countryside, rural districts, cultivated land, fields" - }, - { - "example": "桑田", - "reading": "ソウデン", - "meaning": "mulberry plantation" - }, - { - "example": "水田", - "reading": "スイデン", - "meaning": "(water-filled) paddy field" - } - ], - "kunyomiExamples": [ - { - "example": "田", - "reading": "た", - "meaning": "rice field" - }, - { - "example": "田植え", - "reading": "たうえ", - "meaning": "rice planting" - }, - { - "example": "新田", - "reading": "しんでん", - "meaning": "new rice field, newly developed rice field, wasteland or marshland newly reclaimed as a rice field (Edo period)" - }, - { - "example": "沼田", - "reading": "ぬまた", - "meaning": "marshy rice field or paddy" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30000_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07530.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7530.gif", - "uri": "http://jisho.org/search/%E7%94%B0%23kanji" - }, - { - "query": "土", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "307", - "strokeCount": 3, - "meaning": "soil, earth, ground, Turkey", - "kunyomi": [ - "つち" - ], - "onyomi": [ - "ド", - "ト" - ], - "onyomiExamples": [ - { - "example": "土", - "reading": "ド", - "meaning": "Saturday, earth, dirt, soil, land, lands, ground, earth (third of the five elements)" - }, - { - "example": "土地", - "reading": "トチ", - "meaning": "plot of land, lot, soil, locality, region, place" - }, - { - "example": "浄土", - "reading": "ジョウド", - "meaning": "pure land (esp. the Western Pure Land paradise of Amitabha), (Buddhist) paradise, Pure Land Buddhism" - }, - { - "example": "郷土", - "reading": "キョウド", - "meaning": "native place, birth-place, one's old home, province, region, locality" - }, - { - "example": "土", - "reading": "ト", - "meaning": "Turkey" - }, - { - "example": "時計", - "reading": "トケイ", - "meaning": "clock, watch, timepiece" - }, - { - "example": "下土", - "reading": "カド", - "meaning": "lower world, this world, the earth" - }, - { - "example": "率土", - "reading": "ソット", - "meaning": "face of the earth" - } - ], - "kunyomiExamples": [ - { - "example": "土", - "reading": "つち", - "meaning": "earth, soil, dirt, clay, mud, the earth (historically, esp. as opposed to the heavens), the ground, the land, low-quality torinoko-gami (containing mud), (period of) refraining from construction in the direction of the god of the earth (in Onmyōdō)" - }, - { - "example": "土方", - "reading": "どかた", - "meaning": "construction worker, laborer (labourer), navvy" - }, - { - "example": "盛り土", - "reading": "もりど", - "meaning": "embankment (for road, railway, etc.), raising the ground level, fill" - }, - { - "example": "赤土", - "reading": "あかつち", - "meaning": "red clay, tuff loam, dark-red paint" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22303_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0571f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/571f.gif", - "uri": "http://jisho.org/search/%E5%9C%9F%23kanji" - }, - { - "query": "二", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "9", - "strokeCount": 2, - "meaning": "two, two radical (no. 7)", - "kunyomi": [ - "ふた", - "ふた.つ", - "ふたたび" - ], - "onyomi": [ - "ニ", - "ジ" - ], - "onyomiExamples": [ - { - "example": "二", - "reading": "ニ", - "meaning": "two" - }, - { - "example": "二院", - "reading": "ニイン", - "meaning": "the two houses of legislature" - }, - { - "example": "一二", - "reading": "イチニ", - "meaning": "the first and second, a few" - }, - { - "example": "十二", - "reading": "ジュウニ", - "meaning": "twelve, 12, queen (playing card)" - }, - { - "example": "次男", - "reading": "ジナン", - "meaning": "second son" - }, - { - "example": "二黒", - "reading": "ジコク", - "meaning": "second of nine traditional astrological signs (corresponding to Saturn and southwest)" - }, - { - "example": "不二", - "reading": "フジ", - "meaning": "being two sides of the same coin, being the same (while appearing different), Very sincerely yours, peerless, unparalleled, unparallelled" - }, - { - "example": "唯一不二", - "reading": "ユイイツフジ", - "meaning": "one and only, unique" - } - ], - "kunyomiExamples": [ - { - "example": "二", - "reading": "に", - "meaning": "two" - }, - { - "example": "二重", - "reading": "にじゅう", - "meaning": "double, two-fold, two layers, duplex, diplo-, dipl-, double-edged eyelid, double eyelid, creased eyelid" - }, - { - "example": "二つ", - "reading": "ふたつ", - "meaning": "two" - }, - { - "example": "二つ目", - "reading": "ふたつめ", - "meaning": "one after next, second" - }, - { - "example": "再び", - "reading": "ふたたび", - "meaning": "again, once more, a second time" - } - ], - "radical": { - "symbol": "二", - "meaning": "two" - }, - "parts": [ - "二" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20108_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e8c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e8c.gif", - "uri": "http://jisho.org/search/%E4%BA%8C%23kanji" - }, - { - "query": "日", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "1", - "strokeCount": 4, - "meaning": "day, sun, Japan, counter for days", - "kunyomi": [ - "ひ", - "-び", - "-か" - ], - "onyomi": [ - "ニチ", - "ジツ" - ], - "onyomiExamples": [ - { - "example": "日", - "reading": "ニチ", - "meaning": "Sunday, day (of the month), counter for days, Japan" - }, - { - "example": "日時", - "reading": "ニチジ", - "meaning": "date and time" - }, - { - "example": "抗日", - "reading": "コウニチ", - "meaning": "resistance against Japanese aggression, anti-Japanese (campaign, movement, etc.)" - }, - { - "example": "在日", - "reading": "ザイニチ", - "meaning": "resident in Japan (of a foreigner), situated in Japan (e.g. of an embassy), Korean living in Japan" - }, - { - "example": "日月", - "reading": "ジツゲツ", - "meaning": "sun and moon, time, days and months, years, Sunday and Monday" - }, - { - "example": "日外", - "reading": "ジツガイ", - "meaning": "at one time, some time ago, once" - }, - { - "example": "両日", - "reading": "リョウジツ", - "meaning": "both days, two days" - }, - { - "example": "三十日", - "reading": "ミソカ", - "meaning": "last day of the month" - } - ], - "kunyomiExamples": [ - { - "example": "日", - "reading": "ひ", - "meaning": "day, days, sun, sunshine, sunlight, case (esp. unfortunate), event" - }, - { - "example": "日陰", - "reading": "ひかげ", - "meaning": "shade, shadow, sunshine" - }, - { - "example": "在りし日", - "reading": "ありしひ", - "meaning": "past days, bygone days, days of yore, the olden days, while still alive, during one's lifetime" - }, - { - "example": "あくる日", - "reading": "あくるひ", - "meaning": "next day, following day" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26085_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065e5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65e5.gif", - "uri": "http://jisho.org/search/%E6%97%A5%23kanji" - }, - { - "query": "入", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "56", - "strokeCount": 2, - "meaning": "enter, insert", - "kunyomi": [ - "い.る", - "-い.る", - "-い.り", - "い.れる", - "-い.れ", - "はい.る" - ], - "onyomi": [ - "ニュウ", - "ジュ" - ], - "onyomiExamples": [ - { - "example": "入園", - "reading": "ニュウエン", - "meaning": "enrollment in kindergarten, enrolment in kindergarten, entering a park, garden, zoo, etc." - }, - { - "example": "入院", - "reading": "ニュウイン", - "meaning": "hospitalization, hospitalisation" - }, - { - "example": "輸出入", - "reading": "ユシュツニュウ", - "meaning": "export and import" - }, - { - "example": "納入", - "reading": "ノウニュウ", - "meaning": "payment (taxes, fees, etc.), supply (of goods), delivery" - }, - { - "example": "入水", - "reading": "ジュスイ", - "meaning": "suicide by drowning, drowning oneself, entering the water, hitting the water" - }, - { - "example": "入御", - "reading": "ニュウギョ", - "meaning": "emperor's return to the imperial palace" - } - ], - "kunyomiExamples": [ - { - "example": "入る", - "reading": "いる", - "meaning": "to get in, to go in, to come in, to flow into, to set, to set in" - }, - { - "example": "入満", - "reading": "イルマン", - "meaning": "brother, lay brother, non-ordained member of a Christian religious order" - }, - { - "example": "入れる", - "reading": "いれる", - "meaning": "to put in, to let in, to take in, to bring in, to insert, to install (e.g. software), to set (a jewel, etc.), to ink in (e.g. tattoo), to admit, to accept, to employ, to hire, to accept, to comply, to grant, to adopt (a policy, etc.), to take (advice, etc.), to listen to, to pay attention to, to include, to pay (one's rent, etc.), to cast (a vote), to make (tea, coffee, etc.), to turn on (a switch, etc.), to send (a fax), to call" - }, - { - "example": "入る", - "reading": "はいる", - "meaning": "to enter, to go into, to break into, to join, to enroll, to contain, to hold, to accommodate, to have (an income of), to get turned on, to start functioning, to start working, to get, to obtain, to receive, to score" - } - ], - "radical": { - "symbol": "入", - "meaning": "enter" - }, - "parts": [ - "入" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20837_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05165.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5165.gif", - "uri": "http://jisho.org/search/%E5%85%A5%23kanji" - }, - { - "query": "年", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "6", - "strokeCount": 6, - "meaning": "year, counter for years", - "kunyomi": [ - "とし" - ], - "onyomi": [ - "ネン" - ], - "onyomiExamples": [ - { - "example": "年", - "reading": "ネン", - "meaning": "year, counter for years (e.g. of an era), grades (e.g. school), period of an apprentice's contract (usu. ten years)" - }, - { - "example": "年会", - "reading": "ネンカイ", - "meaning": "conference, annual convention" - }, - { - "example": "往年", - "reading": "オウネン", - "meaning": "years gone by, earlier years, former years, the past" - }, - { - "example": "平年", - "reading": "ヘイネン", - "meaning": "non-leap year, normal year (esp. as pertains to weather patterns, vegetative growth, harvest yields, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "年", - "reading": "とし", - "meaning": "year, age, years, past one's prime, old age" - }, - { - "example": "年明け", - "reading": "としあけ", - "meaning": "beginning of the year, early in the New Year" - }, - { - "example": "いい年", - "reading": "いいとし", - "meaning": "mature age, advanced age, maturity, age when one is old enough to know better" - }, - { - "example": "大年", - "reading": "おおとし", - "meaning": "New Year's Eve, December 31, Jupiter (planet)" - } - ], - "radical": { - "symbol": "干", - "meaning": "pestle" - }, - "parts": [ - "ノ", - "一", - "乞", - "干" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24180_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e74.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e74.gif", - "uri": "http://jisho.org/search/%E5%B9%B4%23kanji" - }, - { - "query": "白", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "483", - "strokeCount": 5, - "meaning": "white", - "kunyomi": [ - "しろ", - "しら-", - "しろ.い" - ], - "onyomi": [ - "ハク", - "ビャク" - ], - "onyomiExamples": [ - { - "example": "白", - "reading": "ハク", - "meaning": "white, striped mullet fry (Mugil cephalus), speech, one's lines, white dragon tile, winning hand with a pung (or kong) of white dragon tiles, white person, Caucasian, Belgium" - }, - { - "example": "白衣", - "reading": "ハクイ", - "meaning": "white clothes, white robe, white gown (worn by doctors, chemists, etc.), commoner without rank (in ancient China), layperson" - }, - { - "example": "漂白", - "reading": "ヒョウハク", - "meaning": "blanching, bleaching" - }, - { - "example": "太白", - "reading": "タイハク", - "meaning": "Venus (planet), thick silk thread, refined sugar, white rice jelly, variety of sweet potato" - }, - { - "example": "白衣", - "reading": "ハクイ", - "meaning": "white clothes, white robe, white gown (worn by doctors, chemists, etc.), commoner without rank (in ancient China), layperson" - }, - { - "example": "白夜", - "reading": "ビャクヤ", - "meaning": "night under the midnight sun, white night (at extreme latitudes), night during which the sun doesn't set" - }, - { - "example": "敬白", - "reading": "ケイハク", - "meaning": "Yours Sincerely" - } - ], - "kunyomiExamples": [ - { - "example": "白", - "reading": "しろ", - "meaning": "white, innocence, innocent person, blank space, white go stone, white dragon tile, skewered grilled pig intestine" - }, - { - "example": "白い", - "reading": "しろい", - "meaning": "white" - }, - { - "example": "面白", - "reading": "おもしろ", - "meaning": "amusing, funny, interesting" - }, - { - "example": "蘿蔔", - "reading": "すずしろ", - "meaning": "daikon (variety of large white Oriental radish, Raphanus sativus var. longipinnatus) (primarily used in context of the seven spring herbs)" - }, - { - "example": "白い", - "reading": "しろい", - "meaning": "white" - }, - { - "example": "白石", - "reading": "しろいし", - "meaning": "white stone, white (go pieces)" - } - ], - "radical": { - "symbol": "白", - "meaning": "white" - }, - "parts": [ - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30333_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0767d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/767d.gif", - "uri": "http://jisho.org/search/%E7%99%BD%23kanji" - }, - { - "query": "八", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "92", - "strokeCount": 2, - "meaning": "eight, eight radical (no. 12)", - "kunyomi": [ - "や", - "や.つ", - "やっ.つ", - "よう" - ], - "onyomi": [ - "ハチ" - ], - "onyomiExamples": [ - { - "example": "八", - "reading": "ハチ", - "meaning": "eight" - }, - { - "example": "8月", - "reading": "ハチガツ", - "meaning": "August, eighth month of the lunar calendar" - }, - { - "example": "十八", - "reading": "ジュウハチ", - "meaning": "18, eighteen" - }, - { - "example": "尺八", - "reading": "シャクハチ", - "meaning": "shakuhachi, end-blown fippleless bamboo flute, blow job, fellatio" - } - ], - "kunyomiExamples": [ - { - "example": "八", - "reading": "はち", - "meaning": "eight" - }, - { - "example": "八重", - "reading": "やえ", - "meaning": "multilayered, doubled" - }, - { - "example": "八つ", - "reading": "やっつ", - "meaning": "eight, eight years of age, two o'clock (old time system)" - }, - { - "example": "八つ当たり", - "reading": "やつあたり", - "meaning": "venting one's anger (on someone or something), taking out one's anger on" - }, - { - "example": "八つ", - "reading": "やっつ", - "meaning": "eight, eight years of age, two o'clock (old time system)" - }, - { - "example": "八日", - "reading": "ようか", - "meaning": "eighth day of the month, eight days" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20843_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0516b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/516b.gif", - "uri": "http://jisho.org/search/%E5%85%AB%23kanji" - }, - { - "query": "百", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "163", - "strokeCount": 6, - "meaning": "hundred", - "kunyomi": [ - "もも" - ], - "onyomi": [ - "ヒャク", - "ビャク" - ], - "onyomiExamples": [ - { - "example": "100", - "reading": "ヒャク", - "meaning": "100, hundred" - }, - { - "example": "100億", - "reading": "ヒャクオク", - "meaning": "10,000,000,000, ten billion" - }, - { - "example": "900", - "reading": "キュウヒャク", - "meaning": "900, nine hundred, fool, idiot" - }, - { - "example": "500", - "reading": "ゴヒャク", - "meaning": "500, five hundred, many" - } - ], - "kunyomiExamples": [ - { - "example": "100", - "reading": "ひゃく", - "meaning": "100, hundred" - }, - { - "example": "百重", - "reading": "ももえ", - "meaning": "piling up highly, becoming a large pile" - } - ], - "radical": { - "symbol": "白", - "meaning": "white" - }, - "parts": [ - "一", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30334_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0767e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/767e.gif", - "uri": "http://jisho.org/search/%E7%99%BE%23kanji" - }, - { - "query": "文", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "190", - "strokeCount": 4, - "meaning": "sentence, literature, style, art, decoration, figures, plan, literary radical (no. 67)", - "kunyomi": [ - "ふみ", - "あや" - ], - "onyomi": [ - "ブン", - "モン" - ], - "onyomiExamples": [ - { - "example": "文", - "reading": "ブン", - "meaning": "sentence, composition, text, writings, the literary arts (as opposed to the military arts), academia, literature, statement" - }, - { - "example": "文化", - "reading": "ブンカ", - "meaning": "culture, civilization, civilisation, Bunka era (1804.2.11-1818.4.22)" - }, - { - "example": "公文", - "reading": "コウブン", - "meaning": "official document, archives" - }, - { - "example": "異文", - "reading": "イブン", - "meaning": "variant (in a manuscript or book), part of a text that differs from other versions" - }, - { - "example": "紋", - "reading": "モン", - "meaning": "(family) crest, coat of arms, pattern, figure" - }, - { - "example": "文", - "reading": "モン", - "meaning": "mon, one-thousandth of a kan (unit of currency 1336-1870), 2.4 cm (traditional unit used to measure shoe sizes), letter, character, sentence, scripture, incantation" - }, - { - "example": "人文", - "reading": "ジンブン", - "meaning": "humanity, civilization, civilisation, culture" - }, - { - "example": "縄文", - "reading": "ジョウモン", - "meaning": "straw-rope pattern pressed into earthenware, Jōmon period (ca. 14000-1000 BCE)" - } - ], - "kunyomiExamples": [ - { - "example": "文", - "reading": "ふみ", - "meaning": "letter, writings" - }, - { - "example": "文香", - "reading": "ふみこう", - "meaning": "scented insert (to enclose with a letter), perfumed insert" - }, - { - "example": "雁の文", - "reading": "かりのふみ", - "meaning": "(a) letter" - }, - { - "example": "日文", - "reading": "ひふみ", - "meaning": "Hifumi (script)" - }, - { - "example": "綾", - "reading": "あや", - "meaning": "figure, design, twill weave, pattern of diagonal stripes, style (of writing), figure (of speech), design, plot, plan, minor market fluctuation, technical correction, cat's cradle, lease rod (in a loom)" - }, - { - "example": "文無鳥", - "reading": "あやなしどり", - "meaning": "lesser cuckoo (Cuculus poliocephalus)" - }, - { - "example": "言葉は身の文", - "reading": "ことばはみのあや", - "meaning": "words betray one's character" - } - ], - "radical": { - "symbol": "文", - "meaning": "script, literature" - }, - "parts": [ - "文" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25991_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06587.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6587.gif", - "uri": "http://jisho.org/search/%E6%96%87%23kanji" - }, - { - "query": "木", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "317", - "strokeCount": 4, - "meaning": "tree, wood", - "kunyomi": [ - "き", - "こ-" - ], - "onyomi": [ - "ボク", - "モク" - ], - "onyomiExamples": [ - { - "example": "木刀", - "reading": "ボクトウ", - "meaning": "wooden sword" - }, - { - "example": "木剣", - "reading": "ボッケン", - "meaning": "bokken, wooden sword" - }, - { - "example": "土木", - "reading": "ドボク", - "meaning": "engineering works, civil engineering, public works" - }, - { - "example": "名木", - "reading": "メイボク", - "meaning": "old tree of historical interest, excellent wood, precious woods, choice wood" - }, - { - "example": "木", - "reading": "モク", - "meaning": "Thursday, wood (first of the five elements)" - }, - { - "example": "木材", - "reading": "モクザイ", - "meaning": "lumber, timber, wood" - }, - { - "example": "水木", - "reading": "スイモク", - "meaning": "Wednesday and Thursday" - }, - { - "example": "火水木", - "reading": "カスイモク", - "meaning": "Tuesday, Wednesday and Thursday" - } - ], - "kunyomiExamples": [ - { - "example": "木", - "reading": "き", - "meaning": "tree, shrub, bush, wood, timber" - }, - { - "example": "木々", - "reading": "きぎ", - "meaning": "(many) trees, every tree, all kinds of trees" - }, - { - "example": "本木", - "reading": "もとき", - "meaning": "original stock" - }, - { - "example": "青木", - "reading": "あおき", - "meaning": "Japanese laurel, spotted laurel, Aucuba japonica, live tree" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26408_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06728.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6728.gif", - "uri": "http://jisho.org/search/%E6%9C%A8%23kanji" - }, - { - "query": "本", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "10", - "strokeCount": 5, - "meaning": "book, present, main, origin, true, real, counter for long cylindrical things", - "kunyomi": [ - "もと" - ], - "onyomi": [ - "ホン" - ], - "onyomiExamples": [ - { - "example": "本", - "reading": "ホン", - "meaning": "book, volume, script, this, present, main, head, real, regular, counter for long cylindrical things, counter for films, TV shows, etc., counter for goals, home runs, etc., counter for telephone calls" - }, - { - "example": "本位", - "reading": "ホンイ", - "meaning": "standard, basis, principle" - }, - { - "example": "社会資本", - "reading": "シャカイシホン", - "meaning": "social capital, SOC" - }, - { - "example": "配本", - "reading": "ハイホン", - "meaning": "distribution of books" - } - ], - "kunyomiExamples": [ - { - "example": "元", - "reading": "もと", - "meaning": "origin, source, base, basis, foundation, root, cause, ingredient, material, (somebody's) side, (somebody's) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip" - }, - { - "example": "本木", - "reading": "もとき", - "meaning": "original stock" - }, - { - "example": "大本", - "reading": "おおもと", - "meaning": "root, origin, source, cause, basis, foundation" - }, - { - "example": "旗本", - "reading": "はたもと", - "meaning": "shogunal vassal, direct retainer of a shogun" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26412_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0672c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/672c.gif", - "uri": "http://jisho.org/search/%E6%9C%AC%23kanji" - }, - { - "query": "名", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "177", - "strokeCount": 6, - "meaning": "name, noted, distinguished, reputation", - "kunyomi": [ - "な", - "-な" - ], - "onyomi": [ - "メイ", - "ミョウ" - ], - "onyomiExamples": [ - { - "example": "名", - "reading": "メイ", - "meaning": "counter for people (usu. seating, reservations and such), first name, famous, great, name, noun" - }, - { - "example": "名画", - "reading": "メイガ", - "meaning": "famous picture, masterpiece (painting), film classic" - }, - { - "example": "同名", - "reading": "ドウメイ", - "meaning": "same name, homonym" - }, - { - "example": "芸名", - "reading": "ゲイメイ", - "meaning": "stage name" - }, - { - "example": "名目", - "reading": "メイモク", - "meaning": "name, title, appellation, (something) nominal, (under the) pretext (of), pretense" - }, - { - "example": "苗字", - "reading": "ミョウジ", - "meaning": "surname, family name" - }, - { - "example": "仮名", - "reading": "カメイ", - "meaning": "alias, pseudonym, pen name, nom de plume" - }, - { - "example": "同名", - "reading": "ドウメイ", - "meaning": "same name, homonym" - } - ], - "kunyomiExamples": [ - { - "example": "名", - "reading": "な", - "meaning": "name, given name, title, fame, renown, reputation, pretext, pretense, justification, appearance" - }, - { - "example": "名残", - "reading": "なごり", - "meaning": "remains, traces, vestiges, relics, (the sorrow of) parting, end" - }, - { - "example": "仮名", - "reading": "かめい", - "meaning": "alias, pseudonym, pen name, nom de plume" - }, - { - "example": "片仮名", - "reading": "かたかな", - "meaning": "katakana, angular Japanese syllabary used primarily for loanwords" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "夕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21517_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0540d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/540d.gif", - "uri": "http://jisho.org/search/%E5%90%8D%23kanji" - }, - { - "query": "目", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "76", - "strokeCount": 5, - "meaning": "eye, class, look, insight, experience, care, favor", - "kunyomi": [ - "め", - "-め", - "ま-" - ], - "onyomi": [ - "モク", - "ボク" - ], - "onyomiExamples": [ - { - "example": "目", - "reading": "モク", - "meaning": "order, item (of a budget revision, etc.), counter for go pieces, counter for surrounded positions (in go)" - }, - { - "example": "目撃", - "reading": "モクゲキ", - "meaning": "witnessing, observing, sighting" - }, - { - "example": "盲目", - "reading": "モウモク", - "meaning": "blindness" - }, - { - "example": "細目", - "reading": "サイモク", - "meaning": "particulars, details, specified items" - }, - { - "example": "耳目", - "reading": "ジモク", - "meaning": "eyes and ears, seeing and hearing, one's attention, one's interest" - }, - { - "example": "本来の面目", - "reading": "ホンライノメンボク", - "meaning": "one's true nature, one's original face" - } - ], - "kunyomiExamples": [ - { - "example": "目", - "reading": "め", - "meaning": "eye, eyeball, eyesight, sight, vision, look, stare, gaze, glance, notice, attention, observation, eyes (of the world, public, etc.), an experience, viewpoint, discrimination, discernment, judgement, eye (e.g. for quality), appearance, chance to succeed, possibility, spacing (between crossed strands of a net, mesh, etc.), opening, stitch, texture, weave, grain (of wood), eye (of a storm, needle, etc.), intersection (on a go board), square (on a chess board), dot (on a dice), pip, rolled number, graduation, division (of a scale), tooth (of a saw, comb, etc.), ordinal number suffix, somewhat, -ish, point (e.g. of change)" - }, - { - "example": "目当て", - "reading": "めあて", - "meaning": "mark, guide, landmark, purpose, aim, goal, intention, end, sight (on a firearm)" - }, - { - "example": "蛇の目", - "reading": "じゃのめ", - "meaning": "bull's-eye (pattern), double ring (pattern), umbrella with bull's-eye pattern" - }, - { - "example": "負い目", - "reading": "おいめ", - "meaning": "(feeling of) indebtedness, feeling obliged" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30446_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076ee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76ee.gif", - "uri": "http://jisho.org/search/%E7%9B%AE%23kanji" - }, - { - "query": "立", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "58", - "strokeCount": 5, - "meaning": "stand up, rise, set up, erect", - "kunyomi": [ - "た.つ", - "-た.つ", - "た.ち-", - "た.てる", - "-た.てる", - "た.て-", - "たて-", - "-た.て", - "-だ.て", - "-だ.てる" - ], - "onyomi": [ - "リツ", - "リュウ", - "リットル" - ], - "onyomiExamples": [ - { - "example": "立案", - "reading": "リツアン", - "meaning": "planning, devising (a plan), drafting, drawing up" - }, - { - "example": "立像", - "reading": "リツゾウ", - "meaning": "standing statue, standing image" - }, - { - "example": "並立", - "reading": "ヘイリツ", - "meaning": "standing abreast" - }, - { - "example": "不成立", - "reading": "フセイリツ", - "meaning": "failure, rejection, rupture" - }, - { - "example": "立ち木", - "reading": "タチキ", - "meaning": "standing tree, standing timber" - }, - { - "example": "立纓", - "reading": "リュウエイ", - "meaning": "erect tail (of a traditional Japanese hat)" - }, - { - "example": "開立", - "reading": "カイリュウ", - "meaning": "extraction of cubic root" - }, - { - "example": "造立", - "reading": "ゾウリュウ", - "meaning": "erecting (temple, Buddhist statue, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "立つ", - "reading": "たつ", - "meaning": "to stand, to rise, to stand up, to find oneself (e.g. in a difficult position), to depart (on a plane, train, etc.)" - }, - { - "example": "立つ瀬", - "reading": "たつせ", - "meaning": "predicament, one's ground, one's position" - }, - { - "example": "突立", - "reading": "とったつ", - "meaning": "stand straight up" - }, - { - "example": "立てる", - "reading": "たてる", - "meaning": "to stand up, to put up, to set up, to erect, to raise, to thrust into, to bury into, to dig into, to make (a noise), to start (a rumour), to raise (a cloud of dust, etc.), to cause, to make, to establish, to set up, to develop, to formulate, to put up (a political candidate), to make (one's leader), to treat with respect, to give (someone) their due, to make (someone) look good, to avoid embarrassing (someone), to sharpen, to make clear, to shut, to close, to make tea (matcha), to perform the tea ceremony, to divide by, to do ... vigorously" - } - ], - "radical": { - "symbol": "立", - "meaning": "stand, erect" - }, - "parts": [ - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31435_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07acb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7acb.gif", - "uri": "http://jisho.org/search/%E7%AB%8B%23kanji" - }, - { - "query": "力", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N4", - "newspaperFrequencyRank": "62", - "strokeCount": 2, - "meaning": "power, strength, strong, strain, bear up, exert", - "kunyomi": [ - "ちから" - ], - "onyomi": [ - "リョク", - "リキ", - "リイ" - ], - "onyomiExamples": [ - { - "example": "力", - "reading": "リョク", - "meaning": "strength, power, proficiency, ability" - }, - { - "example": "力作", - "reading": "リキサク", - "meaning": "painstaking piece of work, work of great effort, tour de force, outstanding work, toil, labor, labour" - }, - { - "example": "水力", - "reading": "スイリョク", - "meaning": "hydraulic power, water power" - }, - { - "example": "威力", - "reading": "イリョク", - "meaning": "power, might, authority, influence" - }, - { - "example": "力", - "reading": "リキ", - "meaning": "strength, power, proficiency, ability, the strength of ... people, the strength of ... men" - }, - { - "example": "力学", - "reading": "リキガク", - "meaning": "mechanics, dynamics" - }, - { - "example": "地力", - "reading": "ジリキ", - "meaning": "one's own potential, real ability, one's own strength" - }, - { - "example": "合力", - "reading": "ゴウリョク", - "meaning": "resultant force, assistance, help, donation, alms, almsgiving" - } - ], - "kunyomiExamples": [ - { - "example": "力", - "reading": "ちから", - "meaning": "force, strength, might, vigour, vigor, energy, capability, ability, proficiency, capacity, faculty, efficacy, effect, effort, endeavours, endeavors, exertions, power, authority, influence, good offices, agency, support, help, aid, assistance, stress, emphasis, means, resources" - }, - { - "example": "力強い", - "reading": "ちからづよい", - "meaning": "powerful, strong, forceful, vigorous, reassuring, encouraging" - }, - { - "example": "強い力", - "reading": "つよいちから", - "meaning": "strong interaction, strong force" - }, - { - "example": "弱い力", - "reading": "よわいちから", - "meaning": "weak force, weak interaction" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21147_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0529b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/529b.gif", - "uri": "http://jisho.org/search/%E5%8A%9B%23kanji" - }, - { - "query": "林", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N2", - "newspaperFrequencyRank": "656", - "strokeCount": 8, - "meaning": "grove, forest", - "kunyomi": [ - "はやし" - ], - "onyomi": [ - "リン" - ], - "onyomiExamples": [ - { - "example": "林道", - "reading": "リンドウ", - "meaning": "path through forest, woodland path, logging road" - }, - { - "example": "林業", - "reading": "リンギョウ", - "meaning": "forestry" - }, - { - "example": "雑木林", - "reading": "ゾウキバヤシ", - "meaning": "grove of miscellaneous trees, copse, coppice, thicket" - }, - { - "example": "農林", - "reading": "ノウリン", - "meaning": "agriculture and forestry" - } - ], - "kunyomiExamples": [ - { - "example": "林", - "reading": "はやし", - "meaning": "woods, forest, copse, thicket, bunch, line (of something), collection" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26519_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06797.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6797.gif", - "uri": "http://jisho.org/search/%E6%9E%97%23kanji" - }, - { - "query": "六", - "found": true, - "taughtIn": "grade 1", - "jlptLevel": "N5", - "newspaperFrequencyRank": "93", - "strokeCount": 4, - "meaning": "six", - "kunyomi": [ - "む", - "む.つ", - "むっ.つ", - "むい" - ], - "onyomi": [ - "ロク", - "リク" - ], - "onyomiExamples": [ - { - "example": "六", - "reading": "ロク", - "meaning": "six" - }, - { - "example": "6月", - "reading": "ロクガツ", - "meaning": "June, sixth month of the lunar calendar" - }, - { - "example": "十六", - "reading": "ジュウロク", - "meaning": "16, sixteen" - }, - { - "example": "才六", - "reading": "サイロク", - "meaning": "kid, brat, person from Kansai" - }, - { - "example": "六官", - "reading": "リクカン", - "meaning": "six ministries (of Zhou-dynasty China)" - }, - { - "example": "六気", - "reading": "ロッキ", - "meaning": "yin, yang, wind, rain, darkness, light, cold, heat, dryness, dampness, wind, fire, six emotions (joy, anger, sorrow, pleasure, love, hate)" - } - ], - "kunyomiExamples": [ - { - "example": "六", - "reading": "ろく", - "meaning": "six" - }, - { - "example": "難しい", - "reading": "むずかしい", - "meaning": "difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky" - }, - { - "example": "六つ", - "reading": "むっつ", - "meaning": "six, six years of age, six o'clock (old time system)" - }, - { - "example": "難しい", - "reading": "むずかしい", - "meaning": "difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky" - }, - { - "example": "六つ", - "reading": "むっつ", - "meaning": "six, six years of age, six o'clock (old time system)" - }, - { - "example": "六日", - "reading": "むいか", - "meaning": "sixth day of the month, six days" - }, - { - "example": "六日間戦争", - "reading": "むいかかんせんそう", - "meaning": "Six-Day War, Third Arab-Israeli War (June 5-10, 1967)" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "亠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20845_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0516d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/516d.gif", - "uri": "http://jisho.org/search/%E5%85%AD%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/data/jisho/grade2.json b/lib/migrations/data/jisho/grade2.json deleted file mode 100644 index 4e1511d..0000000 --- a/lib/migrations/data/jisho/grade2.json +++ /dev/null @@ -1,13236 +0,0 @@ -[ - { - "query": "引", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "218", - "strokeCount": 4, - "meaning": "pull, tug, jerk, admit, install, quote, refer to", - "kunyomi": [ - "ひ.く", - "ひ.ける" - ], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "引退", - "reading": "インタイ", - "meaning": "retirement" - }, - { - "example": "引責", - "reading": "インセキ", - "meaning": "taking responsibility" - }, - { - "example": "誘引", - "reading": "ユウイン", - "meaning": "enticement, inducement, attraction" - }, - { - "example": "吸引", - "reading": "キュウイン", - "meaning": "absorption, suction, aspiration, attraction, draw" - } - ], - "kunyomiExamples": [ - { - "example": "引く", - "reading": "ひく", - "meaning": "to pull, to tug, to lead (e.g. a horse), to draw (attention, sympathy, etc.), to attract (e.g. interest), to draw back (e.g. one's hand), to draw in (one's chin, stomach, etc.), to pull in, to draw (a card, mahjong tile, etc.), to draw (a line, plan, etc.), to catch (a cold), to play (a stringed or keyboard instrument), to look up (in a dictionary, phone book, etc.), to consult, to check, to haul, to pull (vehicles), to subtract, to deduct, to recede, to ebb, to fade, to be descend from, to inherit (a characteristic), to quote, to cite, to raise (as evidence), to lay on (electricity, gas, etc.), to install (e.g. a telephone), to supply (e.g. water), to hold (e.g. a note), to apply (e.g. lipstick), to oil (e.g. a pan), to wax (e.g. a floor), to move back, to draw back, to recede, to lessen, to subside, to ebb, to go down (e.g. of swelling), to resign, to retire, to quit" - }, - { - "example": "引く手", - "reading": "ひくて", - "meaning": "admirer, inducer" - }, - { - "example": "引ける", - "reading": "ひける", - "meaning": "to close, to be over, to break up (e.g. school), to lose one's nerve, to feel daunted" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "弓", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24341_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f15.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f15.gif", - "uri": "http://jisho.org/search/%E5%BC%95%23kanji" - }, - { - "query": "羽", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "748", - "strokeCount": 6, - "meaning": "feathers, counter for birds, rabbits", - "kunyomi": [ - "は", - "わ", - "はね" - ], - "onyomi": [ - "ウ" - ], - "onyomiExamples": [ - { - "example": "羽", - "reading": "ウ", - "meaning": "fifth degree (of the Japanese and Chinese pentatonic scale)" - }, - { - "example": "羽毛", - "reading": "ウモウ", - "meaning": "feathers, plumage, down" - }, - { - "example": "奥羽", - "reading": "オウウ", - "meaning": "Ōu (the two former provinces of Mutsu and Dewa), Tōhoku" - }, - { - "example": "小翼羽", - "reading": "ショウヨクウ", - "meaning": "alula, bastard wing" - } - ], - "kunyomiExamples": [ - { - "example": "羽", - "reading": "はね", - "meaning": "feather, plume, down, wing, blade (of a fan, propeller, etc.), shuttlecock (in badminton), shuttlecock (in hanetsuki), arrow feathers" - }, - { - "example": "羽目", - "reading": "はめ", - "meaning": "panel, wainscoting, wainscotting, plight, fix, bind, awkward situation, difficult situation, mess" - }, - { - "example": "白羽", - "reading": "しらは", - "meaning": "white feather" - }, - { - "example": "切り羽", - "reading": "きりは", - "meaning": "face (of a wall of coal or ore, etc.), working face (of a mine)" - }, - { - "example": "羽", - "reading": "わ", - "meaning": "counter for birds, rabbits, etc." - }, - { - "example": "出羽", - "reading": "でわ", - "meaning": "Dewa (former province located in present-day Yamagata and Akita prefectures)" - }, - { - "example": "羽", - "reading": "はね", - "meaning": "feather, plume, down, wing, blade (of a fan, propeller, etc.), shuttlecock (in badminton), shuttlecock (in hanetsuki), arrow feathers" - }, - { - "example": "羽蟻", - "reading": "はあり", - "meaning": "winged ant, flying ant" - } - ], - "radical": { - "symbol": "羽", - "meaning": "feather" - }, - "parts": [ - "冫", - "羽" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32701_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fbd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fbd.gif", - "uri": "http://jisho.org/search/%E7%BE%BD%23kanji" - }, - { - "query": "雲", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1256", - "strokeCount": 12, - "meaning": "cloud", - "kunyomi": [ - "くも", - "-ぐも" - ], - "onyomi": [ - "ウン" - ], - "onyomiExamples": [ - { - "example": "雲散霧消", - "reading": "ウンサンムショウ", - "meaning": "vanishing like mist" - }, - { - "example": "雲海", - "reading": "ウンカイ", - "meaning": "sea of clouds" - }, - { - "example": "青雲", - "reading": "セイウン", - "meaning": "blue sky, erudition, detachment from the world, high rank" - }, - { - "example": "星雲", - "reading": "セイウン", - "meaning": "nebula, galaxy" - } - ], - "kunyomiExamples": [ - { - "example": "雲", - "reading": "くも", - "meaning": "cloud" - }, - { - "example": "雲行き", - "reading": "くもゆき", - "meaning": "weather, look of the sky, situation, turn of affairs, signs, way the wind is blowing" - }, - { - "example": "白雲", - "reading": "しらくも", - "meaning": "white clouds" - }, - { - "example": "八重雲", - "reading": "やえぐも", - "meaning": "layers of clouds" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "一", - "二", - "厶", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38642_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96f2.gif", - "uri": "http://jisho.org/search/%E9%9B%B2%23kanji" - }, - { - "query": "園", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "628", - "strokeCount": 13, - "meaning": "park, garden, yard, farm", - "kunyomi": [ - "その" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "園", - "reading": "ソノ", - "meaning": "garden (esp. man-made), orchard, park, plantation, place, location" - }, - { - "example": "園芸", - "reading": "エンゲイ", - "meaning": "horticulture, gardening" - }, - { - "example": "花園", - "reading": "ハナゾノ", - "meaning": "flower garden" - }, - { - "example": "霊園", - "reading": "レイエン", - "meaning": "cemetery" - } - ], - "kunyomiExamples": [ - { - "example": "園", - "reading": "その", - "meaning": "garden (esp. man-made), orchard, park, plantation, place, location" - }, - { - "example": "園生", - "reading": "えんせい", - "meaning": "garden (esp. with trees), park" - }, - { - "example": "竹の園", - "reading": "たけのその", - "meaning": "bamboo garden, Imperial family" - }, - { - "example": "学びの園", - "reading": "まなびのその", - "meaning": "educational institution" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "口", - "囗", - "土", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22290_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05712.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5712.gif", - "uri": "http://jisho.org/search/%E5%9C%92%23kanji" - }, - { - "query": "遠", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "887", - "strokeCount": 13, - "meaning": "distant, far", - "kunyomi": [ - "とお.い" - ], - "onyomi": [ - "エン", - "オン" - ], - "onyomiExamples": [ - { - "example": "遠山", - "reading": "エンザン", - "meaning": "distant mountain" - }, - { - "example": "遠隔", - "reading": "エンカク", - "meaning": "distant, remote, isolated" - }, - { - "example": "望遠", - "reading": "ボウエン", - "meaning": "seeing at a distance" - }, - { - "example": "以遠", - "reading": "イエン", - "meaning": "beyond, further than" - }, - { - "example": "遠忌", - "reading": "オンキ", - "meaning": "13th or later anniversary of a death" - }, - { - "example": "遠諱", - "reading": "オンキ", - "meaning": "semicentennial memorial service" - }, - { - "example": "久遠", - "reading": "クオン", - "meaning": "eternity" - } - ], - "kunyomiExamples": [ - { - "example": "遠い", - "reading": "とおい", - "meaning": "far, distant, far away, a long way off, in the distance, distant (past), remote (in time), remote, far-removed (in time), distant (relationship or kinship), having little to do (with someone), far (from something else in quality, degree, etc.), not similar, way off, hard (of hearing), nearsighted" - }, - { - "example": "遠い昔", - "reading": "とおいむかし", - "meaning": "remote past, far ago, time immemorial" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "口", - "土", - "衣", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36960_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09060.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9060.gif", - "uri": "http://jisho.org/search/%E9%81%A0%23kanji" - }, - { - "query": "何", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "340", - "strokeCount": 7, - "meaning": "what", - "kunyomi": [ - "なに", - "なん", - "なに-", - "なん-" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "非可換幾何", - "reading": "ヒカカンキカ", - "meaning": "noncommutative geometry, NCG" - } - ], - "kunyomiExamples": [ - { - "example": "何", - "reading": "なに", - "meaning": "what, you-know-what, that thing, whatsit, whachamacallit, what's-his-name, what's-her-name, (not) at all, (not) in the slightest, what?, huh?, hey!, oh, no (it's fine), why (it's nothing), oh (certainly not)" - }, - { - "example": "何か", - "reading": "なにか", - "meaning": "something, some, any, somehow, for some reason, (is there) something (you want, etc.)" - }, - { - "example": "何々", - "reading": "なになに", - "meaning": "what, so-and-so, such and such, something (or other), what?, wait, hang on, well, well, let's see, no, oh (not at all), please, there, there" - }, - { - "example": "何", - "reading": "なん", - "meaning": "what, how many, many, a lot of, several, a few, some" - }, - { - "example": "何か", - "reading": "なにか", - "meaning": "something, some, any, somehow, for some reason, (is there) something (you want, etc.)" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "亅", - "化", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20309_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f55.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f55.gif", - "uri": "http://jisho.org/search/%E4%BD%95%23kanji" - }, - { - "query": "科", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "531", - "strokeCount": 9, - "meaning": "department, course, section", - "kunyomi": [], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "科", - "reading": "カ", - "meaning": "department, section, faculty, school, arm, course (of study), branch of study, specialization, (taxonomical) family" - }, - { - "example": "科学", - "reading": "カガク", - "meaning": "science" - }, - { - "example": "工科", - "reading": "コウカ", - "meaning": "engineering course" - }, - { - "example": "医科", - "reading": "イカ", - "meaning": "medical science, medical department" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "斗", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31185_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079d1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79d1.gif", - "uri": "http://jisho.org/search/%E7%A7%91%23kanji" - }, - { - "query": "夏", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "659", - "strokeCount": 10, - "meaning": "summer", - "kunyomi": [ - "なつ" - ], - "onyomi": [ - "カ", - "ガ", - "ゲ" - ], - "onyomiExamples": [ - { - "example": "夏", - "reading": "カ", - "meaning": "Xia dynasty (China, perhaps c. 2070-1600 BCE, perhaps mythological), Hsia dynasty" - }, - { - "example": "夏季", - "reading": "カキ", - "meaning": "summer season" - }, - { - "example": "初夏", - "reading": "ショカ", - "meaning": "early summer, fourth month of the lunar calendar" - }, - { - "example": "盛夏", - "reading": "セイカ", - "meaning": "midsummer, height of summer" - }, - { - "example": "夏", - "reading": "ゲ", - "meaning": "summer (on the lunisolar calendar: 16th day of the 4th month to the 15th day of the 7th month)" - }, - { - "example": "夏至", - "reading": "ゲシ", - "meaning": "summer solstice" - }, - { - "example": "一夏", - "reading": "イチゲ", - "meaning": "one summer (during which a monk attends a summer retreat)" - }, - { - "example": "半夏", - "reading": "ハンゲ", - "meaning": "crow dipper (Pinellia tuber), 11th day after the summer solstice, last seed-sowing and rice-planting day" - } - ], - "kunyomiExamples": [ - { - "example": "夏", - "reading": "なつ", - "meaning": "summer" - }, - { - "example": "夏季", - "reading": "かき", - "meaning": "summer season" - }, - { - "example": "初夏", - "reading": "しょか", - "meaning": "early summer, fourth month of the lunar calendar" - }, - { - "example": "常夏", - "reading": "とこなつ", - "meaning": "everlasting summer" - } - ], - "radical": { - "symbol": "夊", - "meaning": "go slowly" - }, - "parts": [ - "一", - "夂", - "目", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22799_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0590f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/590f.gif", - "uri": "http://jisho.org/search/%E5%A4%8F%23kanji" - }, - { - "query": "家", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "133", - "strokeCount": 10, - "meaning": "house, home, family, professional, expert, performer", - "kunyomi": [ - "いえ", - "や", - "うち" - ], - "onyomi": [ - "カ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "家", - "reading": "カ", - "meaning": "-ist, -er" - }, - { - "example": "家屋", - "reading": "カオク", - "meaning": "house, building" - }, - { - "example": "研究家", - "reading": "ケンキュウカ", - "meaning": "researcher, student (of)" - }, - { - "example": "活動家", - "reading": "カツドウカ", - "meaning": "activist" - }, - { - "example": "家", - "reading": "ケ", - "meaning": "house (e.g. of Tokugawa), family" - }, - { - "example": "家来", - "reading": "ケライ", - "meaning": "retainer, retinue, servant" - }, - { - "example": "本家", - "reading": "ホンケ", - "meaning": "head house (family), birthplace, originator" - }, - { - "example": "公家", - "reading": "クゲ", - "meaning": "court noble, nobility, Imperial Court" - } - ], - "kunyomiExamples": [ - { - "example": "家", - "reading": "いえ", - "meaning": "house, residence, dwelling, family, household, lineage, family name" - }, - { - "example": "家主", - "reading": "やぬし", - "meaning": "landlord, landlady, house owner, home owner, head of the household" - }, - { - "example": "本家", - "reading": "ほんけ", - "meaning": "head house (family), birthplace, originator" - }, - { - "example": "小家", - "reading": "こいえ", - "meaning": "small and simple home" - }, - { - "example": "屋", - "reading": "や", - "meaning": "(something) shop, somebody who sells (something) or works as (something), somebody with a (certain) personality trait, house, roof" - }, - { - "example": "家内", - "reading": "かない", - "meaning": "(my) wife, inside the home, one's family" - }, - { - "example": "長屋", - "reading": "ながや", - "meaning": "tenement house, row house" - }, - { - "example": "本家", - "reading": "ほんけ", - "meaning": "head house (family), birthplace, originator" - }, - { - "example": "家", - "reading": "うち", - "meaning": "house, one's house, one's home, one's family, one's household" - }, - { - "example": "家中", - "reading": "うちじゅう", - "meaning": "whole family, all (members of) the family, all over the house, retainer of a daimyo, feudal domain, clan" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23478_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bb6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bb6.gif", - "uri": "http://jisho.org/search/%E5%AE%B6%23kanji" - }, - { - "query": "歌", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "519", - "strokeCount": 14, - "meaning": "song, sing", - "kunyomi": [ - "うた", - "うた.う" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "歌劇", - "reading": "カゲキ", - "meaning": "opera" - }, - { - "example": "歌曲", - "reading": "カキョク", - "meaning": "melody, tune, song" - }, - { - "example": "演歌", - "reading": "エンカ", - "meaning": "enka, traditional-style Japanese popular ballad, troubadour" - }, - { - "example": "和歌", - "reading": "ワカ", - "meaning": "waka, classic Japanese poem, esp. a tanka, often 31 morae" - } - ], - "kunyomiExamples": [ - { - "example": "歌", - "reading": "うた", - "meaning": "song, classical Japanese poetry (esp. tanka), modern poetry" - }, - { - "example": "歌合", - "reading": "うたあわせ", - "meaning": "poetry contest" - }, - { - "example": "短歌", - "reading": "たんか", - "meaning": "tanka, 31-mora Japanese poem" - }, - { - "example": "替え歌", - "reading": "かえうた", - "meaning": "parody (of a song), new lyrics to an old melody, song parody" - }, - { - "example": "歌う", - "reading": "うたう", - "meaning": "to sing, to sing (one's praises in a poem, etc.), to compose a poem, to recite a poem" - }, - { - "example": "歌うたい", - "reading": "うたうたい", - "meaning": "singer, vocalist, nagauta singer (in kabuki), singer of noh chants" - } - ], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "一", - "亅", - "口", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27468_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b4c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b4c.gif", - "uri": "http://jisho.org/search/%E6%AD%8C%23kanji" - }, - { - "query": "画", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "199", - "strokeCount": 8, - "meaning": "brush-stroke, picture", - "kunyomi": [ - "えが.く", - "かく.する", - "かぎ.る", - "はかりごと", - "はか.る" - ], - "onyomi": [ - "ガ", - "カク", - "エ", - "カイ" - ], - "onyomiExamples": [ - { - "example": "画", - "reading": "ガ", - "meaning": "picture, drawing, painting, sketch" - }, - { - "example": "絵", - "reading": "エ", - "meaning": "picture, drawing, painting, sketch, image (TV, film, etc.), picture, footage" - }, - { - "example": "洋画", - "reading": "ヨウガ", - "meaning": "Western painting, Western film, Western movie" - }, - { - "example": "邦画", - "reading": "ホウガ", - "meaning": "Japanese film, Japanese painting" - }, - { - "example": "画", - "reading": "カク", - "meaning": "stroke (of a kanji, etc.)" - }, - { - "example": "描く", - "reading": "エガク", - "meaning": "to draw, to paint, to sketch, to depict, to describe, to picture in one's mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)" - }, - { - "example": "参画", - "reading": "サンカク", - "meaning": "taking part (in planning), participation" - }, - { - "example": "家族計画", - "reading": "カゾクケイカク", - "meaning": "family planning" - }, - { - "example": "絵", - "reading": "エ", - "meaning": "picture, drawing, painting, sketch, image (TV, film, etc.), picture, footage" - }, - { - "example": "画", - "reading": "ガ", - "meaning": "picture, drawing, painting, sketch" - }, - { - "example": "似顔絵", - "reading": "ニガオエ", - "meaning": "portrait, likeness, sketch (of a face)" - }, - { - "example": "影絵", - "reading": "カゲエ", - "meaning": "shadow picture, silhouette, shadowgraph" - } - ], - "kunyomiExamples": [ - { - "example": "描く", - "reading": "えがく", - "meaning": "to draw, to paint, to sketch, to depict, to describe, to picture in one's mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)" - }, - { - "example": "画する", - "reading": "かくする", - "meaning": "to draw (a line), to demarcate, to mark, to divide, to map out, to plan" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "一", - "凵", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30011_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0753b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/753b.gif", - "uri": "http://jisho.org/search/%E7%94%BB%23kanji" - }, - { - "query": "回", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "50", - "strokeCount": 6, - "meaning": "-times, round, game, revolve, counter for occurrences", - "kunyomi": [ - "まわ.る", - "-まわ.る", - "-まわ.り", - "まわ.す", - "-まわ.す", - "まわ.し-", - "-まわ.し", - "もとお.る", - "か.える" - ], - "onyomi": [ - "カイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "回", - "reading": "カイ", - "meaning": "counter for occurrences, a time, an instance, inning (baseball), round, game, episode, chapter, instalment, Hui (people), Islam" - }, - { - "example": "回忌", - "reading": "カイキ", - "meaning": "death anniversary" - }, - { - "example": "初回", - "reading": "ショカイ", - "meaning": "first time, first innings, initial attempt, first, initial" - }, - { - "example": "奪回", - "reading": "ダッカイ", - "meaning": "recovery, rescue, recapture" - }, - { - "example": "回向", - "reading": "エコウ", - "meaning": "memorial service, prayers for the repose of the soul, transfer of merit" - }, - { - "example": "回向偈", - "reading": "エコウゲ", - "meaning": "closing recital that transfers the merit of the service to a buddha, a bodhisattva, or the dead" - } - ], - "kunyomiExamples": [ - { - "example": "回る", - "reading": "まわる", - "meaning": "to turn, to revolve, to visit several places, to function well, to pass a certain time" - }, - { - "example": "回す", - "reading": "まわす", - "meaning": "to turn, to rotate, to spin, to twist, to gyrate, to pass around, to send around, to hand around, to circulate, to move (someone or something to where its needed), to send, to bring, to transfer, to forward, to direct, to submit, to turn (to a new use), to use (for something else), to turn on (something that turns or has a rotating part, e.g. a washing machine), to start up (e.g. an engine), to give (something) a spin, to put (someone in a position), to make (e.g. an enemy of), to ... around (e.g. chase, fool, play), to do all over, to do everywhere, to do completely, to surround (something) with, to enclose with, to put (an arm) around (e.g. someone's waist), to reach around, to invest (money), to lend, to dial (a telephone number), to gang-rape" - }, - { - "example": "回る", - "reading": "もとおる", - "meaning": "to wander around" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "口", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22238_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056de.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56de.gif", - "uri": "http://jisho.org/search/%E5%9B%9E%23kanji" - }, - { - "query": "会", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "4", - "strokeCount": 6, - "meaning": "meeting, meet, party, association, interview, join", - "kunyomi": [ - "あ.う", - "あ.わせる", - "あつ.まる" - ], - "onyomi": [ - "カイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "会", - "reading": "カイ", - "meaning": "meeting, assembly, party, gathering, conference, athletic meet, society, association, club" - }, - { - "example": "会員", - "reading": "カイイン", - "meaning": "member, the membership" - }, - { - "example": "例会", - "reading": "レイカイ", - "meaning": "regular meeting" - }, - { - "example": "際会", - "reading": "サイカイ", - "meaning": "meeting, facing, confronting" - }, - { - "example": "会", - "reading": "エ", - "meaning": "gathering (esp. Buddhist, festive, etc.)" - }, - { - "example": "会釈", - "reading": "エシャク", - "meaning": "slight bow (as a greeting or sign of gratitude), nod, salutation, consideration, thoughtfulness" - }, - { - "example": "法会", - "reading": "ホウエ", - "meaning": "Buddhist service (e.g. memorial service)" - }, - { - "example": "御斎会", - "reading": "ゴサイエ", - "meaning": "imperial event at which high monks recited the Golden Light Sutra to pray for national security and good harvests (held annually at the palace from the 8th to the 14th of the first lunar month, between the Nara and Muromachi periods)" - } - ], - "kunyomiExamples": [ - { - "example": "会う", - "reading": "あう", - "meaning": "to meet, to encounter, to see, to have an accident, to have a bad experience" - }, - { - "example": "逢うは別れの始め", - "reading": "あうはわかれのはじめ", - "meaning": "we meet only to part, meeting is the first step to parting" - }, - { - "example": "会わせる", - "reading": "あわせる", - "meaning": "to make (someone) to meet, to let (someone) meet, to expose to, to subject to" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "个", - "二", - "厶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20250_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f1a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f1a.gif", - "uri": "http://jisho.org/search/%E4%BC%9A%23kanji" - }, - { - "query": "海", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "200", - "strokeCount": 9, - "meaning": "sea, ocean", - "kunyomi": [ - "うみ" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "海運", - "reading": "カイウン", - "meaning": "maritime, marine transportation" - }, - { - "example": "海域", - "reading": "カイイキ", - "meaning": "area of ocean" - }, - { - "example": "公海", - "reading": "コウカイ", - "meaning": "high seas, international waters" - }, - { - "example": "内海", - "reading": "ウチウミ", - "meaning": "inlet, bay, inland sea" - } - ], - "kunyomiExamples": [ - { - "example": "海", - "reading": "うみ", - "meaning": "sea, ocean, waters" - }, - { - "example": "海辺", - "reading": "うみべ", - "meaning": "beach, seashore, seaside, coast" - }, - { - "example": "内海", - "reading": "うちうみ", - "meaning": "inlet, bay, inland sea" - }, - { - "example": "血の海", - "reading": "ちのうみ", - "meaning": "sea of blood, pool of blood" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "乞", - "毋", - "母", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28023_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d77.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d77.gif", - "uri": "http://jisho.org/search/%E6%B5%B7%23kanji" - }, - { - "query": "絵", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "895", - "strokeCount": 12, - "meaning": "picture, drawing, painting, sketch", - "kunyomi": [], - "onyomi": [ - "カイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "絵画", - "reading": "カイガ", - "meaning": "painting, picture" - }, - { - "example": "絵画館", - "reading": "カイガカン", - "meaning": "art or picture gallery" - }, - { - "example": "絵", - "reading": "エ", - "meaning": "picture, drawing, painting, sketch, image (TV, film, etc.), picture, footage" - }, - { - "example": "絵の具", - "reading": "エノグ", - "meaning": "paint, coloring materials, colors, colours" - }, - { - "example": "巴", - "reading": "トモエ", - "meaning": "tomoe, heraldic design composed of two or more interlocked comma-shaped figures" - }, - { - "example": "踏み絵", - "reading": "フミエ", - "meaning": "fumi-e, fumie, tablet bearing Christian images, on which Edo-period authorities forced suspected Christians to trample, allegiance test, loyalty test" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "个", - "二", - "厶", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32117_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d75.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d75.gif", - "uri": "http://jisho.org/search/%E7%B5%B5%23kanji" - }, - { - "query": "外", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "81", - "strokeCount": 5, - "meaning": "outside", - "kunyomi": [ - "そと", - "ほか", - "はず.す", - "はず.れる", - "と-" - ], - "onyomi": [ - "ガイ", - "ゲ" - ], - "onyomiExamples": [ - { - "example": "外", - "reading": "ガイ", - "meaning": "outside of, not covered by" - }, - { - "example": "外圧", - "reading": "ガイアツ", - "meaning": "external pressure, outside pressure, foreign pressure" - }, - { - "example": "渉外", - "reading": "ショウガイ", - "meaning": "public relations, client liaison, client relations" - }, - { - "example": "在外", - "reading": "ザイガイ", - "meaning": "overseas, abroad" - }, - { - "example": "外科", - "reading": "ゲカ", - "meaning": "surgery, department of surgery (hospital, etc.)" - }, - { - "example": "外科医", - "reading": "ゲカイ", - "meaning": "surgeon" - } - ], - "kunyomiExamples": [ - { - "example": "外", - "reading": "そと", - "meaning": "outside, exterior, the open (air), other place, somewhere else, outside one's group (family, company, etc.)" - }, - { - "example": "外壁", - "reading": "がいへき", - "meaning": "outer wall" - }, - { - "example": "大外", - "reading": "おおそと", - "meaning": "far out wide (horse racing), far outside" - }, - { - "example": "家の外", - "reading": "いえのそと", - "meaning": "outside the house" - }, - { - "example": "他", - "reading": "ほか", - "meaning": "other (place, thing, person), the rest, outside, beyond, nothing except, nothing but, nothing apart from, nothing aside from, no choice (but to), besides..., in addition to..." - }, - { - "example": "外人", - "reading": "がいじん", - "meaning": "foreigner (esp. one of European ancestry), gaijin, outsider" - }, - { - "example": "この外", - "reading": "このほか", - "meaning": "besides, moreover, in addition" - }, - { - "example": "思いのほか", - "reading": "おもいのほか", - "meaning": "unexpectedly, surprisingly, unexpected" - }, - { - "example": "外す", - "reading": "はずす", - "meaning": "to remove, to take off, to detach, to unfasten, to undo, to drop (e.g. from a team), to remove (from a position), to exclude, to expel, to leave (e.g. one's seat), to go away from, to step out, to slip away, to dodge (a question, blow, etc.), to evade, to sidestep, to avoid (e.g. peak season), to miss (a target, chance, punch, etc.)" - }, - { - "example": "外れる", - "reading": "はずれる", - "meaning": "to be disconnected, to get out of place, to be off, to be out (e.g. of gear), to miss the mark, to get it wrong (e.g. guess, expectation), to draw a blank (e.g. lottery), to be removed, to be excluded, to be contrary to, to go against" - } - ], - "radical": { - "symbol": "夕", - "meaning": "evening, sunset" - }, - "parts": [ - "卜", - "夕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22806_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05916.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5916.gif", - "uri": "http://jisho.org/search/%E5%A4%96%23kanji" - }, - { - "query": "角", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "805", - "strokeCount": 7, - "meaning": "angle, corner, square, horn, antlers", - "kunyomi": [ - "かど", - "つの" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "角", - "reading": "カク", - "meaning": "angle, square, cube, bishop, third degree (of the Japanese and Chinese pentatonic scale), Chinese \"horn\" constellation (one of the 28 mansions), jiao (monetary unit of China; one-tenth of a yuan)" - }, - { - "example": "角界", - "reading": "カクカイ", - "meaning": "the world of sumo" - }, - { - "example": "内角", - "reading": "ナイカク", - "meaning": "interior angle, internal angle, inside corner" - }, - { - "example": "外角", - "reading": "ガイカク", - "meaning": "external angle, exterior angle, outside corner" - } - ], - "kunyomiExamples": [ - { - "example": "角", - "reading": "かど", - "meaning": "corner, edge, (street) corner, turning, rough edges (of one's character, words, etc.), abrasiveness, harshness, sharpness" - }, - { - "example": "角地", - "reading": "かどち", - "meaning": "corner lot" - }, - { - "example": "四つ角", - "reading": "よつかど", - "meaning": "four corners, crossroads, intersecting street, street corner" - }, - { - "example": "塩角", - "reading": "しおかど", - "meaning": "sharp taste of (refined) salt" - }, - { - "example": "角", - "reading": "つの", - "meaning": "horn, antler, antenna, feeler, tentacle (e.g. of a snail), horn-like projection (e.g. peaks of whipped cream)" - }, - { - "example": "角隠し", - "reading": "つのかくし", - "meaning": "bride's head-dress" - }, - { - "example": "枝角", - "reading": "えだづの", - "meaning": "antler (deer, etc.)" - }, - { - "example": "豊穣の角", - "reading": "ほうじょうのつの", - "meaning": "cornucopia, horn of plenty" - } - ], - "radical": { - "symbol": "角", - "meaning": "horn" - }, - "parts": [ - "勹", - "月", - "角", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35282_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/089d2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/89d2.gif", - "uri": "http://jisho.org/search/%E8%A7%92%23kanji" - }, - { - "query": "楽", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "373", - "strokeCount": 13, - "meaning": "music, comfort, ease", - "kunyomi": [ - "たの.しい", - "たの.しむ", - "この.む" - ], - "onyomi": [ - "ガク", - "ラク", - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "楽", - "reading": "ガク", - "meaning": "music, old Japanese court music, gagaku" - }, - { - "example": "楽章", - "reading": "ガクショウ", - "meaning": "(musical) movement" - }, - { - "example": "邦楽", - "reading": "ホウガク", - "meaning": "Japanese music (esp. traditional Japanese music)" - }, - { - "example": "室内楽", - "reading": "シツナイガク", - "meaning": "chamber music" - }, - { - "example": "楽", - "reading": "ラク", - "meaning": "comfort, ease, relief, (at) peace, relaxation, easy, simple, without trouble, without hardships, (economically) comfortable, raku pottery" - }, - { - "example": "楽園", - "reading": "ラクエン", - "meaning": "paradise, Eden, Elysium" - }, - { - "example": "千秋楽", - "reading": "センシュウラク", - "meaning": "concluding festivities, concluding program, concluding programme, final day of a tournament" - }, - { - "example": "行楽", - "reading": "コウラク", - "meaning": "outing, excursion, pleasure trip, going on a picnic" - }, - { - "example": "猿楽", - "reading": "サルガク", - "meaning": "sarugaku (form of theatre popular in Japan during the 11th to 14th centuries), noh, fooling around" - } - ], - "kunyomiExamples": [ - { - "example": "楽しい", - "reading": "たのしい", - "meaning": "enjoyable, fun, pleasant, happy, delightful" - }, - { - "example": "楽しい思い出", - "reading": "たのしいおもいで", - "meaning": "happy memory, sweet memory" - }, - { - "example": "楽しむ", - "reading": "たのしむ", - "meaning": "to enjoy (oneself)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "冫", - "木", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27005_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0697d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/697d.gif", - "uri": "http://jisho.org/search/%E6%A5%BD%23kanji" - }, - { - "query": "活", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "171", - "strokeCount": 9, - "meaning": "lively, resuscitation, being helped, living", - "kunyomi": [ - "い.きる", - "い.かす", - "い.ける" - ], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "活", - "reading": "カツ", - "meaning": "living, life, judo art of resuscitation, action, activity" - }, - { - "example": "活字", - "reading": "カツジ", - "meaning": "printing type, movable type, printed text, print" - }, - { - "example": "死活", - "reading": "シカツ", - "meaning": "life and death, life or death" - }, - { - "example": "就活", - "reading": "シュウカツ", - "meaning": "job hunting, job searching" - } - ], - "kunyomiExamples": [ - { - "example": "生きる", - "reading": "いきる", - "meaning": "to live, to exist, to make a living, to subsist, to be in effect, to be in use, to function, to come to life, to be enlivened, to be safe (in baseball, go, etc.)" - }, - { - "example": "生かす", - "reading": "いかす", - "meaning": "to make (the best) use of, to put to good use, to leverage (skills, attributes, experience, etc.), to capitalise on (experience, etc.), to let live, to keep alive, to revive, to resuscitate, to bring back to life, to restore (a deleted passage; in proofreading)" - }, - { - "example": "生ける", - "reading": "いける", - "meaning": "to arrange (flowers), to plant, living, live" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "十", - "口", - "汁", - "舌" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27963_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d3b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d3b.gif", - "uri": "http://jisho.org/search/%E6%B4%BB%23kanji" - }, - { - "query": "間", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "33", - "strokeCount": 12, - "meaning": "interval, space", - "kunyomi": [ - "あいだ", - "ま", - "あい" - ], - "onyomi": [ - "カン", - "ケン" - ], - "onyomiExamples": [ - { - "example": "間", - "reading": "カン", - "meaning": "interval, period of time, among, between, inter-, good opportunity, chance, estrangement, discord, alienation, spy, secret agent" - }, - { - "example": "間隔", - "reading": "カンカク", - "meaning": "space, interval, space character, whitespace" - }, - { - "example": "短期間", - "reading": "タンキカン", - "meaning": "short term, short time" - }, - { - "example": "右中間", - "reading": "ウチュウカン", - "meaning": "between right and center fielders (centre)" - }, - { - "example": "間", - "reading": "ケン", - "meaning": "ken (6 shaku, approx. 1.818 m), counter used to number the gaps between pillars" - }, - { - "example": "間数", - "reading": "ケンスウ", - "meaning": "number of ken (in length or breadth)" - }, - { - "example": "世間", - "reading": "セケン", - "meaning": "world, society, people, the public" - }, - { - "example": "六百間", - "reading": "ロッピャッケン", - "meaning": "roppyakken (type of hanafuda game)" - } - ], - "kunyomiExamples": [ - { - "example": "間", - "reading": "あいだ", - "meaning": "space (between), gap, interval, distance, time (between), pause, break, span (temporal or spatial), stretch, period (while), relationship (between, among), members (within, among), due to, because of" - }, - { - "example": "間中", - "reading": "あいだじゅう", - "meaning": "during" - }, - { - "example": "候間", - "reading": "そうろうあいだ", - "meaning": "as ..." - }, - { - "example": "ついこの間", - "reading": "ついこのあいだ", - "meaning": "just the other day, quite recently" - }, - { - "example": "間", - "reading": "ま", - "meaning": "time, pause, space, room" - }, - { - "example": "間際", - "reading": "まぎわ", - "meaning": "the point just before, the point of doing, the verge of happening" - }, - { - "example": "茶の間", - "reading": "ちゃのま", - "meaning": "living room (Japanese-style)" - }, - { - "example": "床の間", - "reading": "とこのま", - "meaning": "tokonoma (alcove where art or flowers are displayed)" - }, - { - "example": "間", - "reading": "あいだ", - "meaning": "space (between), gap, interval, distance, time (between), pause, break, span (temporal or spatial), stretch, period (while), relationship (between, among), members (within, among), due to, because of" - }, - { - "example": "間中", - "reading": "あいだじゅう", - "meaning": "during" - }, - { - "example": "波間", - "reading": "なみま", - "meaning": "interval between the waves, gap between waves" - }, - { - "example": "幕間", - "reading": "まくあい", - "meaning": "intermission (between acts), interlude" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "日", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38291_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09593.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9593.gif", - "uri": "http://jisho.org/search/%E9%96%93%23kanji" - }, - { - "query": "丸", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "542", - "strokeCount": 3, - "meaning": "round, full (month), perfection, -ship, pills, make round, roll up, curl up, seduce, explain away", - "kunyomi": [ - "まる", - "まる.める", - "まる.い" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "丸", - "reading": "ガン", - "meaning": "fishball, meatball, pill" - }, - { - "example": "丸剤", - "reading": "ガンザイ", - "meaning": "pill" - }, - { - "example": "一丸", - "reading": "イチガン", - "meaning": "one lump, one body, one group" - }, - { - "example": "雷丸", - "reading": "ライガン", - "meaning": "raigan (Omphalia lapidescens), parasitic fungus which grows on bamboo, used in Chinese medicine" - } - ], - "kunyomiExamples": [ - { - "example": "丸", - "reading": "まる", - "meaning": "circle, entirety, whole, full, complete, money, dough, moola, enclosure inside a castle's walls, soft-shelled turtle, suffix for ship names, suffix for names of people (esp. infants), suffix for names of swords, armour, musical instruments, etc., suffix for names of dogs, horses, etc." - }, - { - "example": "丸い", - "reading": "まるい", - "meaning": "round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable" - }, - { - "example": "本丸", - "reading": "ほんまる", - "meaning": "inner citadel, core, center, centre, focus, crux" - }, - { - "example": "鳳凰丸", - "reading": "ほうおうまる", - "meaning": "Hōō Maru (Western-style Japanese frigate, launched in 1853)" - }, - { - "example": "丸める", - "reading": "まるめる", - "meaning": "to make round, to roll up, to curl up, to seduce, to cajole, to explain away, to round off (a fraction), to lump together" - }, - { - "example": "丸い", - "reading": "まるい", - "meaning": "round, circular, spherical, curved, smooth, harmonious, calm, peaceful, amiable, amicable" - }, - { - "example": "丸石", - "reading": "まるいし", - "meaning": "boulder, cobble" - } - ], - "radical": { - "symbol": "丶", - "meaning": "dot" - }, - "parts": [ - "丶", - "九" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20024_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e38.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e38.gif", - "uri": "http://jisho.org/search/%E4%B8%B8%23kanji" - }, - { - "query": "岩", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "787", - "strokeCount": 8, - "meaning": "boulder, rock, cliff", - "kunyomi": [ - "いわ" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "岩盤", - "reading": "ガンバン", - "meaning": "bedrock" - }, - { - "example": "岩石", - "reading": "ガンセキ", - "meaning": "rock" - }, - { - "example": "砂岩", - "reading": "サガン", - "meaning": "sandstone" - }, - { - "example": "石灰岩", - "reading": "セッカイガン", - "meaning": "limestone" - } - ], - "kunyomiExamples": [ - { - "example": "岩", - "reading": "いわ", - "meaning": "rock, boulder, crag, cliff, anchor" - }, - { - "example": "岩間", - "reading": "いわま", - "meaning": "among rocks" - }, - { - "example": "一枚岩", - "reading": "いちまいいわ", - "meaning": "monolith, large slab of rock" - }, - { - "example": "浮岩", - "reading": "うきいわ", - "meaning": "rock partially submerged in water, rock partially emerging from the water, pumice stone" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "口", - "山", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23721_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ca9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ca9.gif", - "uri": "http://jisho.org/search/%E5%B2%A9%23kanji" - }, - { - "query": "顔", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "676", - "strokeCount": 18, - "meaning": "face, expression", - "kunyomi": [ - "かお" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "顔", - "reading": "カオ", - "meaning": "face, visage, look, expression, countenance, honor, honour, face, influence, notoriety" - }, - { - "example": "顔色", - "reading": "カオイロ", - "meaning": "complexion, one's colour, one's color, countenance, expression, one's face" - }, - { - "example": "美顔", - "reading": "ビガン", - "meaning": "beautiful face" - }, - { - "example": "童顔", - "reading": "ドウガン", - "meaning": "childlike face, baby face" - } - ], - "kunyomiExamples": [ - { - "example": "顔", - "reading": "かお", - "meaning": "face, visage, look, expression, countenance, honor, honour, face, influence, notoriety" - }, - { - "example": "顔合わせ", - "reading": "かおあわせ", - "meaning": "meeting together, introduction, costarring, appearing together, being matched, facing off" - }, - { - "example": "いい顔", - "reading": "いいかお", - "meaning": "big-shot, influential person, happy face, smiling face, sympathetic attitude, getting along with, being all smiles" - }, - { - "example": "涼しい顔", - "reading": "すずしいかお", - "meaning": "nonchalant air, unruffled air" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "亠", - "厂", - "彡", - "目", - "立", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38996_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09854.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9854.gif", - "uri": "http://jisho.org/search/%E9%A1%94%23kanji" - }, - { - "query": "汽", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2020", - "strokeCount": 7, - "meaning": "vapor, steam", - "kunyomi": [], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "汽車", - "reading": "キシャ", - "meaning": "train (esp. long distance train), steam train" - }, - { - "example": "汽船", - "reading": "キセン", - "meaning": "steamship, steamboat, steamer" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "乞", - "气", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27773_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c7d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c7d.gif", - "uri": "http://jisho.org/search/%E6%B1%BD%23kanji" - }, - { - "query": "記", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "149", - "strokeCount": 10, - "meaning": "scribe, account, narrative", - "kunyomi": [ - "しる.す" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "記", - "reading": "キ", - "meaning": "account, history, chronicle, annals, record, Records of Ancient Matters" - }, - { - "example": "記憶", - "reading": "キオク", - "meaning": "memory, recollection, remembrance, storage" - }, - { - "example": "手記", - "reading": "シュキ", - "meaning": "note, memorandum" - }, - { - "example": "左記", - "reading": "サキ", - "meaning": "undermentioned (statement), the following, at left" - } - ], - "kunyomiExamples": [ - { - "example": "記す", - "reading": "しるす", - "meaning": "to write down, to note, to jot down, to remember" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "已", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35352_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a18.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a18.gif", - "uri": "http://jisho.org/search/%E8%A8%98%23kanji" - }, - { - "query": "帰", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "504", - "strokeCount": 10, - "meaning": "homecoming, arrive at, lead to, result in", - "kunyomi": [ - "かえ.る", - "かえ.す", - "おく.る", - "とつ.ぐ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "帰還", - "reading": "キカン", - "meaning": "repatriation, return, (electrical) feedback" - }, - { - "example": "帰化", - "reading": "キカ", - "meaning": "naturalization, naturalisation" - }, - { - "example": "社会復帰", - "reading": "シャカイフッキ", - "meaning": "rehabilitation (in society)" - }, - { - "example": "回帰", - "reading": "カイキ", - "meaning": "return (to), revolution, recurrence, regression" - } - ], - "kunyomiExamples": [ - { - "example": "帰る", - "reading": "かえる", - "meaning": "to return, to come home, to go home, to go back, to leave, to get home, to get to home plate" - }, - { - "example": "帰す", - "reading": "かえす", - "meaning": "to send (someone) back, to send (someone) home" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "ヨ", - "冖", - "刈", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24112_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e30.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e30.gif", - "uri": "http://jisho.org/search/%E5%B8%B0%23kanji" - }, - { - "query": "弓", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1802", - "strokeCount": 3, - "meaning": "bow, bow (archery, violin)", - "kunyomi": [ - "ゆみ" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "弓", - "reading": "キュウ", - "meaning": "bow (and arrow), unit of distance to an archery target (approx. six feet), unit of distance for land surveying (approx. eight feet)" - }, - { - "example": "弓", - "reading": "ユミ", - "meaning": "bow (weapon), archery, bow (for a violin, etc.)" - }, - { - "example": "洋弓", - "reading": "ヨウキュウ", - "meaning": "(Western) archery, Western-style bow" - }, - { - "example": "鰓弓", - "reading": "サイキュウ", - "meaning": "branchial arch, gill arch" - } - ], - "kunyomiExamples": [ - { - "example": "弓", - "reading": "ゆみ", - "meaning": "bow (weapon), archery, bow (for a violin, etc.)" - }, - { - "example": "弓矢", - "reading": "ゆみや", - "meaning": "bow and arrow, weapon, arms" - }, - { - "example": "大弓", - "reading": "だいきゅう", - "meaning": "bow, longbow" - }, - { - "example": "上げ弓", - "reading": "あげゆみ", - "meaning": "up-bow (technique used when playing a string instrument)" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "弓" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24339_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f13.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f13.gif", - "uri": "http://jisho.org/search/%E5%BC%93%23kanji" - }, - { - "query": "牛", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1202", - "strokeCount": 4, - "meaning": "cow", - "kunyomi": [ - "うし" - ], - "onyomi": [ - "ギュウ" - ], - "onyomiExamples": [ - { - "example": "牛", - "reading": "ウシ", - "meaning": "cattle (Bos taurus), cow, bull, ox, calf, beef, Chinese \"Ox\" constellation (one of the 28 mansions)" - }, - { - "example": "牛肉", - "reading": "ギュウニク", - "meaning": "beef" - }, - { - "example": "肉牛", - "reading": "ニクギュウ", - "meaning": "beef cattle" - }, - { - "example": "海牛", - "reading": "カイギュウ", - "meaning": "sirenian (any aquatic mammal of order Sirenia, incl. manatees, and dugongs), sea cow" - } - ], - "kunyomiExamples": [ - { - "example": "牛", - "reading": "うし", - "meaning": "cattle (Bos taurus), cow, bull, ox, calf, beef, Chinese \"Ox\" constellation (one of the 28 mansions)" - }, - { - "example": "牛車", - "reading": "ぎゅうしゃ", - "meaning": "ox carriage (for Heian era nobles), oxcart" - }, - { - "example": "去勢牛", - "reading": "きょせいうし", - "meaning": "ox, bullock" - }, - { - "example": "特牛", - "reading": "こというし", - "meaning": "strong bull" - } - ], - "radical": { - "symbol": "牛", - "forms": [ - "牜" - ], - "meaning": "cow" - }, - "parts": [ - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29275_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0725b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/725b.gif", - "uri": "http://jisho.org/search/%E7%89%9B%23kanji" - }, - { - "query": "魚", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1208", - "strokeCount": 11, - "meaning": "fish", - "kunyomi": [ - "うお", - "さかな", - "-ざかな" - ], - "onyomi": [ - "ギョ" - ], - "onyomiExamples": [ - { - "example": "魚類", - "reading": "ギョルイ", - "meaning": "fish, fishes" - }, - { - "example": "魚介類", - "reading": "ギョカイルイ", - "meaning": "marine products, seafood, fish and shellfish" - }, - { - "example": "鮮魚", - "reading": "センギョ", - "meaning": "fresh fish" - }, - { - "example": "稚魚", - "reading": "チギョ", - "meaning": "fry, juvenile fish, fingerling" - } - ], - "kunyomiExamples": [ - { - "example": "魚", - "reading": "さかな", - "meaning": "fish" - }, - { - "example": "魚市場", - "reading": "うおいちば", - "meaning": "fish market" - }, - { - "example": "川魚", - "reading": "かわうお", - "meaning": "river fish, freshwater fish" - }, - { - "example": "活魚", - "reading": "かつぎょ", - "meaning": "live fish and shellfish (kept in a tank in a restaurant)" - }, - { - "example": "魚", - "reading": "さかな", - "meaning": "fish" - }, - { - "example": "魚釣り", - "reading": "さかなつり", - "meaning": "fishing" - }, - { - "example": "旬の魚", - "reading": "しゅんのさかな", - "meaning": "fish in season" - } - ], - "radical": { - "symbol": "魚", - "meaning": "fish" - }, - "parts": [ - "杰", - "田", - "魚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39770_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09b5a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9b5a.gif", - "uri": "http://jisho.org/search/%E9%AD%9A%23kanji" - }, - { - "query": "京", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "74", - "strokeCount": 8, - "meaning": "capital, 10**16", - "kunyomi": [ - "みやこ" - ], - "onyomi": [ - "キョウ", - "ケイ", - "キン" - ], - "onyomiExamples": [ - { - "example": "京", - "reading": "キョウ", - "meaning": "imperial capital (esp. Kyoto), final word of an iroha-uta, 10^16, 10,000,000,000,000,000, ten quadrillion" - }, - { - "example": "京都", - "reading": "キョウト", - "meaning": "Kyoto (city, prefecture)" - }, - { - "example": "帝京", - "reading": "テイキョウ", - "meaning": "the capital" - }, - { - "example": "在京", - "reading": "ザイキョウ", - "meaning": "being in the capital (i.e. Tokyo, or formerly Kyoto)" - }, - { - "example": "京", - "reading": "キョウ", - "meaning": "imperial capital (esp. Kyoto), final word of an iroha-uta, 10^16, 10,000,000,000,000,000, ten quadrillion" - }, - { - "example": "京阪", - "reading": "ケイハン", - "meaning": "Kyoto-Osaka, Kyoto and Osaka" - }, - { - "example": "英京", - "reading": "エイキョウ", - "meaning": "British capital, London" - }, - { - "example": "キン族", - "reading": "キンゾク", - "meaning": "Kinh (people), Vietnamese (people)" - }, - { - "example": "南京", - "reading": "ナンキン", - "meaning": "Nanjing, Nanking, pumpkin, squash, Chinese, Southeast Asian, foreign, rare, precious, cute" - } - ], - "kunyomiExamples": [ - { - "example": "都", - "reading": "みやこ", - "meaning": "capital (esp. Kyoto, Japan's former capital), seat of government, capital (of music, fashion, etc.), city (e.g. of light), location of the Imperial Palace" - }, - { - "example": "長岡京", - "reading": "ながおかきょう", - "meaning": "Nagaoka-kyō (capital of Japan 784-794)" - } - ], - "radical": { - "symbol": "亠", - "meaning": "lid" - }, - "parts": [ - "亠", - "口", - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20140_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04eac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4eac.gif", - "uri": "http://jisho.org/search/%E4%BA%AC%23kanji" - }, - { - "query": "強", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "112", - "strokeCount": 11, - "meaning": "strong", - "kunyomi": [ - "つよ.い", - "つよ.まる", - "つよ.める", - "し.いる", - "こわ.い" - ], - "onyomi": [ - "キョウ", - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "強", - "reading": "キョウ", - "meaning": "a little over, a little more than, powerhouse, one of the biggest, one of the most powerful" - }, - { - "example": "強化", - "reading": "キョウカ", - "meaning": "strengthening, intensifying, reinforcement, enhancement, solidification" - }, - { - "example": "列強", - "reading": "レッキョウ", - "meaning": "major powers of the world, great powers" - }, - { - "example": "屈強", - "reading": "クッキョウ", - "meaning": "robust, brawny, muscular, strong, sturdy" - }, - { - "example": "強盗", - "reading": "ゴウトウ", - "meaning": "robber, mugger, robbery, burglary" - }, - { - "example": "強引", - "reading": "ゴウイン", - "meaning": "overbearing, coercive, pushy, forcible, high-handed" - } - ], - "kunyomiExamples": [ - { - "example": "強い", - "reading": "つよい", - "meaning": "strong, potent, competent, domineering, tough, strong, brawny, powerful, healthy, rugged, good (at), skilled, knowledgeable, being able to handle, know how to deal (with), durable (against), resistant (to), resilient, firm, rigid, solid, intense, strong, fierce, high, dependable, trustworthy" - }, - { - "example": "強い心", - "reading": "つよいこころ", - "meaning": "stout heart, strong mind" - }, - { - "example": "強まる", - "reading": "つよまる", - "meaning": "to get strong, to gain strength" - }, - { - "example": "強める", - "reading": "つよめる", - "meaning": "to strengthen, to emphasize, to emphasise" - }, - { - "example": "強いる", - "reading": "しいる", - "meaning": "to force, to compel, to coerce, to press, to impose" - }, - { - "example": "強い", - "reading": "こわい", - "meaning": "tough, stiff, hard, inflexible, obstinate, stubborn, tired, worn out" - }, - { - "example": "強飯", - "reading": "こわめし", - "meaning": "glutinous rice with red beans (eaten on celebratory occasions), mochi rice with red beans" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "厶", - "弓", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24375_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f37.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f37.gif", - "uri": "http://jisho.org/search/%E5%BC%B7%23kanji" - }, - { - "query": "教", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "166", - "strokeCount": 11, - "meaning": "teach, faith, doctrine", - "kunyomi": [ - "おし.える", - "おそ.わる" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "教育委員会", - "reading": "キョウイクイインカイ", - "meaning": "Board of Education" - }, - { - "example": "教育", - "reading": "キョウイク", - "meaning": "education, schooling, training, instruction, teaching, upbringing, culture, cultivation, education" - }, - { - "example": "政教", - "reading": "セイキョウ", - "meaning": "religion and politics, church and state" - }, - { - "example": "正教", - "reading": "セイキョウ", - "meaning": "orthodoxy, (Greek) orthodox church" - } - ], - "kunyomiExamples": [ - { - "example": "教える", - "reading": "おしえる", - "meaning": "to teach, to instruct, to tell, to inform, to preach" - }, - { - "example": "教わる", - "reading": "おそわる", - "meaning": "to be taught, to learn, to take lessons in" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "子", - "攵", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25945_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06559.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6559.gif", - "uri": "http://jisho.org/search/%E6%95%99%23kanji" - }, - { - "query": "近", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "194", - "strokeCount": 7, - "meaning": "near, early, akin, tantamount", - "kunyomi": [ - "ちか.い" - ], - "onyomi": [ - "キン", - "コン" - ], - "onyomiExamples": [ - { - "example": "近畿", - "reading": "キンキ", - "meaning": "Kinki (region around Osaka, Kyoto, Nara)" - }, - { - "example": "近海", - "reading": "キンカイ", - "meaning": "coastal waters, adjacent seas" - }, - { - "example": "ごく最近", - "reading": "ゴクサイキン", - "meaning": "very recently, in the very recent past" - }, - { - "example": "至近", - "reading": "シキン", - "meaning": "very near" - }, - { - "example": "近流", - "reading": "コンル", - "meaning": "banishment (to a nearby province), the least severe of the three banishment punishments under the ritsuryo system" - } - ], - "kunyomiExamples": [ - { - "example": "近い", - "reading": "ちかい", - "meaning": "near, close, short (distance), close (in time), soon, close (relationship), friendly, intimate, closely related, similar, almost the same, close to, nearly" - }, - { - "example": "近いうちに", - "reading": "ちかいうちに", - "meaning": "before long" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "斤", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36817_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fd1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fd1.gif", - "uri": "http://jisho.org/search/%E8%BF%91%23kanji" - }, - { - "query": "兄", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1219", - "strokeCount": 5, - "meaning": "elder brother, big brother", - "kunyomi": [ - "あに" - ], - "onyomi": [ - "ケイ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "兄", - "reading": "ケイ", - "meaning": "you, Mr, Mister, older brother, elder brother" - }, - { - "example": "兄弟", - "reading": "キョウダイ", - "meaning": "siblings, brothers and sisters, brothers, siblings-in-law, brothers-in-law, sisters-in-law, mate, friend" - }, - { - "example": "実兄", - "reading": "ジッケイ", - "meaning": "biological older brother" - }, - { - "example": "父兄", - "reading": "フケイ", - "meaning": "guardians, parents, father and older brother" - }, - { - "example": "兄弟", - "reading": "キョウダイ", - "meaning": "siblings, brothers and sisters, brothers, siblings-in-law, brothers-in-law, sisters-in-law, mate, friend" - }, - { - "example": "兄姉", - "reading": "ケイシ", - "meaning": "brother and sister" - } - ], - "kunyomiExamples": [ - { - "example": "兄", - "reading": "あに", - "meaning": "older brother, elder brother" - }, - { - "example": "兄貴", - "reading": "あにき", - "meaning": "elder brother, one's senior, older man, man older than oneself" - }, - { - "example": "中の兄", - "reading": "なかのあに", - "meaning": "middle brother" - }, - { - "example": "義理の兄", - "reading": "ぎりのあに", - "meaning": "one's brother-in-law, stepbrother (elder)" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "儿", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20804_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05144.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5144.gif", - "uri": "http://jisho.org/search/%E5%85%84%23kanji" - }, - { - "query": "形", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "418", - "strokeCount": 7, - "meaning": "shape, form, style", - "kunyomi": [ - "かた", - "-がた", - "かたち", - "なり" - ], - "onyomi": [ - "ケイ", - "ギョウ" - ], - "onyomiExamples": [ - { - "example": "形", - "reading": "ケイ", - "meaning": "form, tense, adjective, i-adjective (in Japanese)" - }, - { - "example": "形式", - "reading": "ケイシキ", - "meaning": "form (as opposed to substance), formality, method, system, style, format, mode, appearance, form (something takes), math expression" - }, - { - "example": "造形", - "reading": "ゾウケイ", - "meaning": "molding, moulding, shaping, modelling (i.e. plastic arts), modeling" - }, - { - "example": "体型", - "reading": "タイケイ", - "meaning": "figure, body shape, build, physique, form, somatotype, biotype, habitus, (type of) physique" - }, - { - "example": "形相", - "reading": "ギョウソウ", - "meaning": "look (esp. an angry or upset look), expression" - }, - { - "example": "奇形", - "reading": "キケイ", - "meaning": "deformity, malformation, strange shape, unusual shape" - }, - { - "example": "大仰", - "reading": "オオギョウ", - "meaning": "exaggeration" - } - ], - "kunyomiExamples": [ - { - "example": "形", - "reading": "かた", - "meaning": "shape, appearance, collateral, obverse of an old \"zeni\" coin" - }, - { - "example": "形", - "reading": "かたち", - "meaning": "form, shape, figure, visage" - }, - { - "example": "借金のカタ", - "reading": "しゃっきんのカタ", - "meaning": "security for a loan, collateral" - }, - { - "example": "館", - "reading": "やかた", - "meaning": "mansion, palace, manor house, castle, nobleman, noblewoman, dignitary, cabin (on a boat, carriage, etc.)" - }, - { - "example": "形", - "reading": "かたち", - "meaning": "form, shape, figure, visage" - }, - { - "example": "形作る", - "reading": "かたちづくる", - "meaning": "to form, to shape, to make, to mold, to mould, to build up" - }, - { - "example": "顔かたち", - "reading": "かおかたち", - "meaning": "features, looks" - }, - { - "example": "姿形", - "reading": "すがたかたち", - "meaning": "appearance, figure, shape, form" - }, - { - "example": "形", - "reading": "なり", - "meaning": "style, way, shape, form, appearance, state" - }, - { - "example": "形体", - "reading": "なりかたち", - "meaning": "one's appearance" - }, - { - "example": "生成り", - "reading": "きなり", - "meaning": "unbleached cloth, unbleached colour (color), unbleached, undyed" - }, - { - "example": "二形", - "reading": "ふたなり", - "meaning": "hermaphrodite, androgyny, hermaphroditism" - } - ], - "radical": { - "symbol": "彡", - "meaning": "bristle, beard" - }, - "parts": [ - "ノ", - "一", - "二", - "廾", - "彡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24418_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f62.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f62.gif", - "uri": "http://jisho.org/search/%E5%BD%A2%23kanji" - }, - { - "query": "計", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "228", - "strokeCount": 9, - "meaning": "plot, plan, scheme, measure", - "kunyomi": [ - "はか.る", - "はか.らう" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "計", - "reading": "ケイ", - "meaning": "plan, meter, measuring device, (in) total, total (of)" - }, - { - "example": "計画", - "reading": "ケイカク", - "meaning": "plan, project, schedule, scheme, program, programme" - }, - { - "example": "生計", - "reading": "セイケイ", - "meaning": "livelihood, living" - }, - { - "example": "推計", - "reading": "スイケイ", - "meaning": "estimate, estimation" - } - ], - "kunyomiExamples": [ - { - "example": "計る", - "reading": "はかる", - "meaning": "to measure, to weigh, to survey, to time (sound, gauge, estimate), to conjecture, to infer, to surmise" - }, - { - "example": "計らう", - "reading": "はからう", - "meaning": "to manage, to arrange, to talk over, to dispose of" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "十", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35336_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a08.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a08.gif", - "uri": "http://jisho.org/search/%E8%A8%88%23kanji" - }, - { - "query": "元", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "192", - "strokeCount": 4, - "meaning": "beginning, former time, origin", - "kunyomi": [ - "もと" - ], - "onyomi": [ - "ゲン", - "ガン" - ], - "onyomiExamples": [ - { - "example": "元", - "reading": "ゲン", - "meaning": "unknown (e.g. in an equation), element (of a set), yuan (monetary unit of China), Yuan dynasty (China, 1271-1368), Yüan dynasty, Mongol dynasty" - }, - { - "example": "原価", - "reading": "ゲンカ", - "meaning": "cost price" - }, - { - "example": "中元", - "reading": "チュウゲン", - "meaning": "15th day of the 7th lunar month, (last day of) Bon lantern festival, mid-year gift, summer gift, Bon Festival gifts" - }, - { - "example": "抗原", - "reading": "コウゲン", - "meaning": "antigen" - }, - { - "example": "元日", - "reading": "ガンジツ", - "meaning": "New Year's Day" - }, - { - "example": "元凶", - "reading": "ゲンキョウ", - "meaning": "ringleader, main culprit, main cause, source" - } - ], - "kunyomiExamples": [ - { - "example": "元", - "reading": "もと", - "meaning": "origin, source, base, basis, foundation, root, cause, ingredient, material, (somebody's) side, (somebody's) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip" - }, - { - "example": "元", - "reading": "もと", - "meaning": "former, ex-, past, one-time, earlier times, the past, previous state, formerly, previously, originally, before" - }, - { - "example": "家元", - "reading": "いえもと", - "meaning": "head of a school (of music, dance), head family of a school" - }, - { - "example": "胸元", - "reading": "むなもと", - "meaning": "breast, chest, pit of the stomach, solar plexus, epigastrium" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "二", - "儿", - "元" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20803_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05143.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5143.gif", - "uri": "http://jisho.org/search/%E5%85%83%23kanji" - }, - { - "query": "言", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "83", - "strokeCount": 7, - "meaning": "say, word", - "kunyomi": [ - "い.う", - "こと" - ], - "onyomi": [ - "ゲン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "言", - "reading": "ゲン", - "meaning": "word, remark, statement" - }, - { - "example": "言及", - "reading": "ゲンキュウ", - "meaning": "reference, allusion" - }, - { - "example": "過言", - "reading": "カゴン", - "meaning": "exaggeration, overstatement, saying too much, misstatement, slip of the tongue, gaffe" - }, - { - "example": "狂言", - "reading": "キョウゲン", - "meaning": "kyogen, farce presented between noh plays or during the interlude of a noh play, kabuki play, kabuki performance, make-believe, ruse, trick" - }, - { - "example": "言語", - "reading": "ゲンゴ", - "meaning": "language" - }, - { - "example": "言下", - "reading": "ゲンカ", - "meaning": "promptly" - }, - { - "example": "過言", - "reading": "カゴン", - "meaning": "exaggeration, overstatement, saying too much, misstatement, slip of the tongue, gaffe" - }, - { - "example": "二言", - "reading": "ニゴン", - "meaning": "double-dealing, double tongue, going back on what one has said, repeating oneself" - } - ], - "kunyomiExamples": [ - { - "example": "言う", - "reading": "いう", - "meaning": "to say, to utter, to declare, to name, to call, to go (e.g. \"the alarm went ping\"), to make a noise" - }, - { - "example": "言うまでもない", - "reading": "いうまでもない", - "meaning": "goes without saying, needless to say, obvious" - }, - { - "example": "言", - "reading": "げん", - "meaning": "word, remark, statement" - }, - { - "example": "言葉", - "reading": "ことば", - "meaning": "language, dialect, word, words, phrase, term, expression, remark, speech, (manner of) speaking, learning to speak, language acquisition" - }, - { - "example": "禍言", - "reading": "まがごと", - "meaning": "ominous word, ill-omened word, misfortune" - }, - { - "example": "二言", - "reading": "ふたこと", - "meaning": "two words, repetition" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35328_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a00.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a00.gif", - "uri": "http://jisho.org/search/%E8%A8%80%23kanji" - }, - { - "query": "原", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "172", - "strokeCount": 10, - "meaning": "meadow, original, primitive, field, plain, prairie, tundra, wilderness", - "kunyomi": [ - "はら" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "原", - "reading": "ゲン", - "meaning": "original, primitive, primary, fundamental, raw" - }, - { - "example": "原案", - "reading": "ゲンアン", - "meaning": "original plan, original bill, original motion, draft" - }, - { - "example": "中原", - "reading": "チュウゲン", - "meaning": "middle of a field, middle of a country, field of contest" - }, - { - "example": "抗原", - "reading": "コウゲン", - "meaning": "antigen" - } - ], - "kunyomiExamples": [ - { - "example": "原", - "reading": "はら", - "meaning": "field, plain, prairie, tundra, moor, wilderness" - }, - { - "example": "原っぱ", - "reading": "はらっぱ", - "meaning": "open field, empty lot, plain" - }, - { - "example": "萩原", - "reading": "はぎはら", - "meaning": "reedy field" - }, - { - "example": "笹原", - "reading": "ささはら", - "meaning": "field of bamboo grass" - } - ], - "radical": { - "symbol": "厂", - "meaning": "cliff" - }, - "parts": [ - "厂", - "小", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21407_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0539f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/539f.gif", - "uri": "http://jisho.org/search/%E5%8E%9F%23kanji" - }, - { - "query": "戸", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "575", - "strokeCount": 4, - "meaning": "door, counter for houses, door radical (no. 63)", - "kunyomi": [ - "と" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "戸", - "reading": "コ", - "meaning": "counter for houses, households, apartments, etc." - }, - { - "example": "戸外", - "reading": "コガイ", - "meaning": "open-air, outdoors" - }, - { - "example": "一戸", - "reading": "イッコ", - "meaning": "one house, household" - }, - { - "example": "下戸", - "reading": "ゲコ", - "meaning": "non-drinker, someone who cannot drink" - } - ], - "kunyomiExamples": [ - { - "example": "戸", - "reading": "と", - "meaning": "door (esp. Japanese-style), shutter, window shutter, entrance (to a home), narrows" - }, - { - "example": "戸惑い", - "reading": "とまどい", - "meaning": "being at sea, losing one's bearings, confusion, wonderment" - }, - { - "example": "鳴門", - "reading": "なると", - "meaning": "strait with a roaring tidal ebb and flow, whirlpool, maelstrom, kamaboko with a spiral whirlpool-like pattern, cooking technique where ingredients are cut in a spiral pattern, Naruto (city in Tokushima), Naruto Strait, Naruto wakame" - }, - { - "example": "引き戸", - "reading": "ひきど", - "meaning": "sliding door" - } - ], - "radical": { - "symbol": "戶", - "forms": [ - "户", - "戸" - ], - "meaning": "door, house" - }, - "parts": [ - "一", - "尸", - "戸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25144_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06238.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6238.gif", - "uri": "http://jisho.org/search/%E6%88%B8%23kanji" - }, - { - "query": "古", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "509", - "strokeCount": 5, - "meaning": "old", - "kunyomi": [ - "ふる.い", - "ふる-", - "-ふる.す" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "古今", - "reading": "ココン", - "meaning": "ancient and modern times, all ages, past and present" - }, - { - "example": "故郷", - "reading": "フルサト", - "meaning": "home town, birthplace, native place, one's old home, ruins, historic remains" - }, - { - "example": "蒙古", - "reading": "モウコ", - "meaning": "Mongolia" - }, - { - "example": "懐古", - "reading": "カイコ", - "meaning": "reminiscence, nostalgia, thinking fondly of the past, recalling the old days" - } - ], - "kunyomiExamples": [ - { - "example": "古い", - "reading": "ふるい", - "meaning": "old, aged, ancient, antiquated, antique, timeworn, long, since long ago, time-honored, of the distant past, long-ago, stale, threadbare, hackneyed, corny, old-fashioned, outmoded, out-of-date" - }, - { - "example": "古家", - "reading": "ふるいえ", - "meaning": "old house, deserted house" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "十", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21476_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053e4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53e4.gif", - "uri": "http://jisho.org/search/%E5%8F%A4%23kanji" - }, - { - "query": "午", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "154", - "strokeCount": 4, - "meaning": "noon, sign of the horse, 11AM-1PM, seventh sign of Chinese zodiac", - "kunyomi": [ - "うま" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "午前", - "reading": "ゴゼン", - "meaning": "morning, a.m." - }, - { - "example": "午後", - "reading": "ゴゴ", - "meaning": "afternoon, p.m." - }, - { - "example": "端午", - "reading": "タンゴ", - "meaning": "Boy's Day celebration (May 5)" - }, - { - "example": "亭午", - "reading": "テイゴ", - "meaning": "noon" - } - ], - "kunyomiExamples": [ - { - "example": "午", - "reading": "うま", - "meaning": "the Horse (seventh sign of the Chinese zodiac), hour of the Horse (around noon, 11am-1pm, or 12 noon-2pm), south, fifth month of the lunar calendar" - }, - { - "example": "午年", - "reading": "うまどし", - "meaning": "year of the Horse" - }, - { - "example": "庚午", - "reading": "かのえうま", - "meaning": "Metal Horse (7th year of the sexagenary cycle, e.g. 1930, 1990, 2050)" - }, - { - "example": "甲午", - "reading": "きのえうま", - "meaning": "Wood Horse (31st year of the sexagenary cycle, e.g. 1954, 2014, 2074)" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "ノ", - "乞", - "十", - "干" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21320_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05348.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5348.gif", - "uri": "http://jisho.org/search/%E5%8D%88%23kanji" - }, - { - "query": "後", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "26", - "strokeCount": 9, - "meaning": "behind, back, later", - "kunyomi": [ - "のち", - "うし.ろ", - "うしろ", - "あと", - "おく.れる" - ], - "onyomi": [ - "ゴ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "後", - "reading": "ゴ", - "meaning": "after" - }, - { - "example": "後日", - "reading": "ゴジツ", - "meaning": "in the future, another day, later" - }, - { - "example": "越後", - "reading": "エチゴ", - "meaning": "Echigo (former province located in present-day Niigata Prefecture)" - }, - { - "example": "終了後", - "reading": "シュウリョウゴ", - "meaning": "after the end (of something), post-" - }, - { - "example": "後援", - "reading": "コウエン", - "meaning": "support, backing" - }, - { - "example": "後遺症", - "reading": "コウイショウ", - "meaning": "prognostic symptoms, after-effect" - }, - { - "example": "向後", - "reading": "コウゴ", - "meaning": "hereafter" - }, - { - "example": "先後", - "reading": "センゴ", - "meaning": "before and after, earlier and later, order, sequence, occurring almost simultaneously, inversion (of order)" - } - ], - "kunyomiExamples": [ - { - "example": "後", - "reading": "のち", - "meaning": "later, afterwards, since, future, after one's death, descendant" - }, - { - "example": "後々", - "reading": "のちのち", - "meaning": "future, distant future" - }, - { - "example": "後々", - "reading": "のちのち", - "meaning": "future, distant future" - }, - { - "example": "この後", - "reading": "このあと", - "meaning": "after this, henceforth, henceforward, from now on" - }, - { - "example": "後ろ", - "reading": "うしろ", - "meaning": "back, behind, rear" - }, - { - "example": "後ろ姿", - "reading": "うしろすがた", - "meaning": "retreating figure, appearance from behind" - }, - { - "example": "後ろ", - "reading": "うしろ", - "meaning": "back, behind, rear" - }, - { - "example": "後ろ姿", - "reading": "うしろすがた", - "meaning": "retreating figure, appearance from behind" - }, - { - "example": "後", - "reading": "あと", - "meaning": "behind, rear, after, later, remainder, the rest, more (e.g. five more minutes), left, also, in addition, descendant, successor, heir, after one's death, past, previous" - }, - { - "example": "後押し", - "reading": "あとおし", - "meaning": "pushing, backing, boosting, supporting, pushing from behind (a cart, etc.), pusher" - }, - { - "example": "亡き後", - "reading": "なきあと", - "meaning": "after one's death" - }, - { - "example": "後々", - "reading": "あとあと", - "meaning": "future, distant future" - }, - { - "example": "遅れる", - "reading": "おくれる", - "meaning": "to be late, to be delayed, to fall behind schedule, to be overdue, to fall behind (in a race, one's studies, etc.), to lag behind, to be behind (the times), to be bereaved of, to be preceded by (someone) in death, to be slow (of a clock or watch)" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "夂", - "幺", - "彳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24460_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f8c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f8c.gif", - "uri": "http://jisho.org/search/%E5%BE%8C%23kanji" - }, - { - "query": "語", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "301", - "strokeCount": 14, - "meaning": "word, speech, language", - "kunyomi": [ - "かた.る", - "かた.らう" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "語", - "reading": "ゴ", - "meaning": "language, word" - }, - { - "example": "語学", - "reading": "ゴガク", - "meaning": "study of foreign languages, linguistics" - }, - { - "example": "標語", - "reading": "ヒョウゴ", - "meaning": "motto, slogan, catchword" - }, - { - "example": "造語", - "reading": "ゾウゴ", - "meaning": "coined word, coinage, neologism" - } - ], - "kunyomiExamples": [ - { - "example": "語る", - "reading": "かたる", - "meaning": "to talk about, to speak of, to tell, to narrate, to recite, to chant, to indicate, to show" - }, - { - "example": "語るに落ちる", - "reading": "かたるにおちる", - "meaning": "to let slip a secret, to let the cat out of the bag" - }, - { - "example": "語らう", - "reading": "かたらう", - "meaning": "to talk, to tell, to recite, to pledge, to conspire with" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "五", - "口", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35486_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a9e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a9e.gif", - "uri": "http://jisho.org/search/%E8%AA%9E%23kanji" - }, - { - "query": "工", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "299", - "strokeCount": 3, - "meaning": "craft, construction, katakana e radical (no. 48)", - "kunyomi": [], - "onyomi": [ - "コウ", - "ク", - "グ" - ], - "onyomiExamples": [ - { - "example": "工", - "reading": "コウ", - "meaning": "(factory) worker" - }, - { - "example": "工員", - "reading": "コウイン", - "meaning": "factory worker" - }, - { - "example": "起工", - "reading": "キコウ", - "meaning": "setting to work" - }, - { - "example": "商工", - "reading": "ショウコウ", - "meaning": "commerce and industry" - }, - { - "example": "工夫", - "reading": "クフウ", - "meaning": "scheme, device, scheming, devising, figuring out, coming up with, solving ingeniously, dedication to spiritual improvement (esp. through Zen meditation)" - }, - { - "example": "工面", - "reading": "クメン", - "meaning": "contrivance, managing (to raise money), one's financial condition" - }, - { - "example": "竹細工", - "reading": "タケザイク", - "meaning": "bamboo work, bamboo ware" - }, - { - "example": "寄せ木細工", - "reading": "ヨセギザイク", - "meaning": "wooden mosaic work, parquetry, wooden mosaic (e.g. on a piece of furniture), marquetry, marqueterie" - }, - { - "example": "具合", - "reading": "グアイ", - "meaning": "condition, state, health, state (of health), way, manner, circumstance, luck, face, dignity, decency, propriety" - }, - { - "example": "工面", - "reading": "クメン", - "meaning": "contrivance, managing (to raise money), one's financial condition" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "工", - "meaning": "work" - }, - "parts": [ - "工" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24037_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05de5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5de5.gif", - "uri": "http://jisho.org/search/%E5%B7%A5%23kanji" - }, - { - "query": "公", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "118", - "strokeCount": 4, - "meaning": "public, prince, official, governmental", - "kunyomi": [ - "おおやけ" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "公", - "reading": "コウ", - "meaning": "public matter, governmental matter, prince, duke, lord, sir, familiar or derogatory suffix" - }, - { - "example": "公安", - "reading": "コウアン", - "meaning": "public safety, public welfare" - }, - { - "example": "王侯", - "reading": "オウコウ", - "meaning": "king and princes, noble rank" - }, - { - "example": "大公", - "reading": "タイコウ", - "meaning": "archduke" - }, - { - "example": "公家", - "reading": "クゲ", - "meaning": "court noble, nobility, Imperial Court" - }, - { - "example": "公廨", - "reading": "クガイ", - "meaning": "government office" - }, - { - "example": "夙", - "reading": "シュク", - "meaning": "outcasts common around the Kyoto region from the Kamakura period to the Edo period" - } - ], - "kunyomiExamples": [ - { - "example": "公", - "reading": "おおやけ", - "meaning": "official, governmental, formal, public (use, matter, forum, etc.), common, being public knowledge, being out in the open, exposure to public view" - }, - { - "example": "公所", - "reading": "おおやけどころ", - "meaning": "imperial court, government office, imperial land, government land" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "厶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20844_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0516c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/516c.gif", - "uri": "http://jisho.org/search/%E5%85%AC%23kanji" - }, - { - "query": "広", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "263", - "strokeCount": 5, - "meaning": "wide, broad, spacious", - "kunyomi": [ - "ひろ.い", - "ひろ.まる", - "ひろ.める", - "ひろ.がる", - "ひろ.げる" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "広告", - "reading": "コウコク", - "meaning": "advertisement, advertising, announcement, notice" - }, - { - "example": "広域", - "reading": "コウイキ", - "meaning": "wide area, wide view (of a digitally displayed map), zoomed-out view" - }, - { - "example": "曠々", - "reading": "コウコウ", - "meaning": "extensive, spacious" - } - ], - "kunyomiExamples": [ - { - "example": "広い", - "reading": "ひろい", - "meaning": "spacious, vast, wide" - }, - { - "example": "広い支持", - "reading": "ひろいしじ", - "meaning": "broad support, wide-ranging support" - }, - { - "example": "広まる", - "reading": "ひろまる", - "meaning": "to spread, to be propagated" - }, - { - "example": "広める", - "reading": "ひろめる", - "meaning": "to spread, to propagate, to popularize, to disseminate, to broaden, to extend, to widen, to enlarge" - }, - { - "example": "広がる", - "reading": "ひろがる", - "meaning": "to spread (out), to extend, to stretch, to reach to, to get around, to fill (e.g. a space)" - }, - { - "example": "広げる", - "reading": "ひろげる", - "meaning": "to spread, to extend, to expand, to enlarge, to widen, to broaden, to unfold, to open, to unroll, to unwrap, to scatter about, to spread around, to make flourish, to cause to prosper" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "厶", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24195_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e83.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e83.gif", - "uri": "http://jisho.org/search/%E5%BA%83%23kanji" - }, - { - "query": "交", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "178", - "strokeCount": 6, - "meaning": "mingle, mixing, association, coming & going", - "kunyomi": [ - "まじ.わる", - "まじ.える", - "ま.じる", - "まじ.る", - "ま.ざる", - "ま.ぜる", - "-か.う", - "か.わす", - "かわ.す", - "こもごも" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "交", - "reading": "コウ", - "meaning": "association, fellowship, change (of season, year, etc.)" - }, - { - "example": "交易", - "reading": "コウエキ", - "meaning": "trade, commerce" - }, - { - "example": "親交", - "reading": "シンコウ", - "meaning": "intimacy, friendship, friendly relations" - }, - { - "example": "国交", - "reading": "コッコウ", - "meaning": "diplomatic relations" - } - ], - "kunyomiExamples": [ - { - "example": "交わる", - "reading": "まじわる", - "meaning": "to cross, to intersect, to join, to meet, to associate with, to mingle with, to consort with, to have a sexual relationship, to copulate" - }, - { - "example": "交える", - "reading": "まじえる", - "meaning": "to mix, to combine, to include, to exchange (words, fire, etc.), to cross (e.g. swords), to join together" - }, - { - "example": "混じる", - "reading": "まじる", - "meaning": "to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join" - }, - { - "example": "混じる", - "reading": "まじる", - "meaning": "to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join" - }, - { - "example": "混ざる", - "reading": "まざる", - "meaning": "to be mixed, to be blended with, to associate with, to mingle with, to join" - }, - { - "example": "混ぜる", - "reading": "まぜる", - "meaning": "to mix, to stir, to blend" - }, - { - "example": "交わす", - "reading": "かわす", - "meaning": "to exchange (messages, greetings, arguments, etc.), to intersect, to cross, to interlace, ... with one another, ... to each other" - }, - { - "example": "交わす", - "reading": "かわす", - "meaning": "to exchange (messages, greetings, arguments, etc.), to intersect, to cross, to interlace, ... with one another, ... to each other" - }, - { - "example": "交々", - "reading": "こもごも", - "meaning": "alternately, in succession" - } - ], - "radical": { - "symbol": "亠", - "meaning": "lid" - }, - "parts": [ - "亠", - "父" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20132_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ea4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ea4.gif", - "uri": "http://jisho.org/search/%E4%BA%A4%23kanji" - }, - { - "query": "光", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "527", - "strokeCount": 6, - "meaning": "ray, light", - "kunyomi": [ - "ひか.る", - "ひかり" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "光学", - "reading": "コウガク", - "meaning": "optics" - }, - { - "example": "光栄", - "reading": "コウエイ", - "meaning": "honour, honor, glory, privilege" - }, - { - "example": "脚光", - "reading": "キャッコウ", - "meaning": "footlight, limelight" - }, - { - "example": "発光", - "reading": "ハッコウ", - "meaning": "emission (of light), radiation (of light), luminescence" - } - ], - "kunyomiExamples": [ - { - "example": "光る", - "reading": "ひかる", - "meaning": "to shine, to glitter, to be bright" - }, - { - "example": "光る棒", - "reading": "ひかるぼう", - "meaning": "glowstick, neon light stick" - }, - { - "example": "光", - "reading": "ひかり", - "meaning": "light, illumination, ray, beam, gleam, glow, happiness, hope, influence, power, vision, eyesight" - }, - { - "example": "光り輝く", - "reading": "ひかりかがやく", - "meaning": "to shine, to glitter" - }, - { - "example": "越光", - "reading": "こしひかり", - "meaning": "Koshihikari (variety of rice)" - }, - { - "example": "柔らかな光", - "reading": "やわらかなひかり", - "meaning": "soft light" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "一", - "儿", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20809_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05149.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5149.gif", - "uri": "http://jisho.org/search/%E5%85%89%23kanji" - }, - { - "query": "考", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "196", - "strokeCount": 6, - "meaning": "consider, think over", - "kunyomi": [ - "かんが.える", - "かんが.え" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "考", - "reading": "コウ", - "meaning": "thought, report on one's investigation into ..., deceased father" - }, - { - "example": "考古学", - "reading": "コウコガク", - "meaning": "archaeology, archeology" - }, - { - "example": "備考", - "reading": "ビコウ", - "meaning": "note (for reference), remarks, N.B." - }, - { - "example": "論考", - "reading": "ロンコウ", - "meaning": "study (of something), discussion, discourse" - } - ], - "kunyomiExamples": [ - { - "example": "考える", - "reading": "かんがえる", - "meaning": "to think (about, of), to think over, to ponder, to contemplate, to reflect (on), to meditate (on), to consider, to bear in mind, to allow for, to take into consideration, to think (that), to believe, to hold (a view), to judge, to conclude, to suspect, to intend (to do), to think of (doing), to plan, to predict, to anticipate, to expect, to imagine, to come up with, to think up, to contrive, to devise, to consider (as), to regard (as), to look on (as), to take, to view" - }, - { - "example": "考え", - "reading": "かんがえ", - "meaning": "thinking, thought, view, opinion, concept, idea, notion, imagination, intention, plan, design, consideration, judgement, deliberation, reflection, wish, hope, expectation" - }, - { - "example": "考え方", - "reading": "かんがえかた", - "meaning": "way of thinking" - } - ], - "radical": { - "symbol": "老", - "forms": [ - "耂" - ], - "meaning": "old" - }, - "parts": [ - "勹", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32771_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08003.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8003.gif", - "uri": "http://jisho.org/search/%E8%80%83%23kanji" - }, - { - "query": "行", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "20", - "strokeCount": 6, - "meaning": "going, journey, carry out, conduct, act, line, row, bank", - "kunyomi": [ - "い.く", - "ゆ.く", - "-ゆ.き", - "-ゆき", - "-い.き", - "-いき", - "おこな.う", - "おこ.なう" - ], - "onyomi": [ - "コウ", - "ギョウ", - "アン" - ], - "onyomiExamples": [ - { - "example": "行", - "reading": "コウ", - "meaning": "going, travelling, traveling, journey, trip, act, action, bank, counter for banks, counter for groups or parties of people, type of classical Chinese verse (usu. an epic from the Tang period onwards), shopping district (of similar merchants; in the Sui and Tang periods), merchants' guild (in the Tang period)" - }, - { - "example": "行為", - "reading": "コウイ", - "meaning": "act, deed, conduct" - }, - { - "example": "並行", - "reading": "ヘイコウ", - "meaning": "going side-by-side, going abreast, running concurrently, occurring at the same time, keeping pace with" - }, - { - "example": "性行", - "reading": "セイコウ", - "meaning": "character and conduct" - }, - { - "example": "行", - "reading": "ギョウ", - "meaning": "line (of text), row, verse, carya (austerities), samskara (formations), semi-cursive style (of writing Chinese characters), running style" - }, - { - "example": "行革", - "reading": "ギョウカク", - "meaning": "administrative reform" - }, - { - "example": "奉行", - "reading": "ブギョウ", - "meaning": "magistrate, shogunate administrator" - }, - { - "example": "修行", - "reading": "シュギョウ", - "meaning": "ascetic practices, training, practice, discipline, study" - }, - { - "example": "行脚", - "reading": "アンギャ", - "meaning": "pilgrimage, walking tour, travelling (on foot)" - }, - { - "example": "行火", - "reading": "アンカ", - "meaning": "bed warmer, foot warmer" - } - ], - "kunyomiExamples": [ - { - "example": "行く", - "reading": "いく", - "meaning": "to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination" - }, - { - "example": "行く先", - "reading": "ゆくさき", - "meaning": "destination, whereabouts, future, prospects" - }, - { - "example": "行く", - "reading": "いく", - "meaning": "to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination" - }, - { - "example": "行方", - "reading": "ゆくえ", - "meaning": "(one's) whereabouts, outcome" - }, - { - "example": "行う", - "reading": "おこなう", - "meaning": "to perform, to do, to conduct oneself, to carry out" - }, - { - "example": "行う", - "reading": "おこなう", - "meaning": "to perform, to do, to conduct oneself, to carry out" - } - ], - "radical": { - "symbol": "行", - "meaning": "go, do" - }, - "parts": [ - "彳", - "行" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34892_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0884c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/884c.gif", - "uri": "http://jisho.org/search/%E8%A1%8C%23kanji" - }, - { - "query": "高", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "65", - "strokeCount": 10, - "meaning": "tall, high, expensive", - "kunyomi": [ - "たか.い", - "たか", - "-だか", - "たか.まる", - "たか.める" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "高", - "reading": "コウ", - "meaning": "high, high school" - }, - { - "example": "高圧", - "reading": "コウアツ", - "meaning": "high voltage, high pressure" - }, - { - "example": "中高", - "reading": "チュウコウ", - "meaning": "middle and high school, medium and high (level)" - }, - { - "example": "激昂", - "reading": "ゲッコウ", - "meaning": "excitement, exasperation, indignation, rage, fury" - } - ], - "kunyomiExamples": [ - { - "example": "高い", - "reading": "たかい", - "meaning": "high, tall, expensive, high-priced, high (level), above average (in degree, quality, etc.), loud, high-pitched, shrill" - }, - { - "example": "高い高い", - "reading": "たかいたかい", - "meaning": "lifting (a child) high up in the air" - }, - { - "example": "高", - "reading": "たか", - "meaning": "quantity, amount, volume, number, amount of money" - }, - { - "example": "高い", - "reading": "たかい", - "meaning": "high, tall, expensive, high-priced, high (level), above average (in degree, quality, etc.), loud, high-pitched, shrill" - }, - { - "example": "威高", - "reading": "いたか", - "meaning": "arrogant" - }, - { - "example": "背高", - "reading": "せいたか", - "meaning": "tallness, tall person" - }, - { - "example": "高まる", - "reading": "たかまる", - "meaning": "to rise, to swell, to be promoted" - }, - { - "example": "高める", - "reading": "たかめる", - "meaning": "to raise, to lift, to boost, to enhance" - } - ], - "radical": { - "symbol": "高", - "forms": [ - "髙" - ], - "meaning": "tall" - }, - "parts": [ - "亠", - "冂", - "口", - "高" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39640_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ad8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ad8.gif", - "uri": "http://jisho.org/search/%E9%AB%98%23kanji" - }, - { - "query": "黄", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1240", - "strokeCount": 11, - "meaning": "yellow", - "kunyomi": [ - "き", - "こ-" - ], - "onyomi": [ - "コウ", - "オウ" - ], - "onyomiExamples": [ - { - "example": "紅葉", - "reading": "コウヨウ", - "meaning": "autumn colours, fall colors, leaves changing color (colour), leaves turning red, red leaves, leaves turning yellow, yellow leaves, (Japanese) maple (Acer japonicum), venison, layered colors in garments, resembling autumn colors" - }, - { - "example": "黄色", - "reading": "キイロ", - "meaning": "yellow, amber" - }, - { - "example": "玄黄", - "reading": "ゲンコウ", - "meaning": "black and yellow silk (offered to gods), heaven and earth" - }, - { - "example": "天地玄黄", - "reading": "テンチゲンコウ", - "meaning": "Heaven is black and earth is yellow, heaven and earth" - }, - { - "example": "黄金時代", - "reading": "オウゴンジダイ", - "meaning": "Golden Age" - }, - { - "example": "黄金", - "reading": "オウゴン", - "meaning": "gold (Au), golden, prosperous, excellent, superb, money (esp. ōban coin), cash" - }, - { - "example": "卵黄", - "reading": "ランオウ", - "meaning": "egg yolk" - }, - { - "example": "六フッ化硫黄", - "reading": "ロクフッカイオウ", - "meaning": "sulfur hexafluoride" - } - ], - "kunyomiExamples": [ - { - "example": "黄", - "reading": "き", - "meaning": "yellow" - }, - { - "example": "黄色", - "reading": "きいろ", - "meaning": "yellow, amber" - }, - { - "example": "海気", - "reading": "かいき", - "meaning": "sea air, sea breeze, ocean and atmosphere, type of yarn-dyed silk goods" - } - ], - "radical": { - "symbol": "黃", - "meaning": "yellow" - }, - "parts": [ - "ハ", - "田", - "黄" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40644_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ec4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ec4.gif", - "uri": "http://jisho.org/search/%E9%BB%84%23kanji" - }, - { - "query": "合", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "41", - "strokeCount": 6, - "meaning": "fit, suit, join, 0.1", - "kunyomi": [ - "あ.う", - "-あ.う", - "あ.い", - "あい-", - "-あ.い", - "-あい", - "あ.わす", - "あ.わせる", - "-あ.わせる" - ], - "onyomi": [ - "ゴウ", - "ガッ", - "カッ" - ], - "onyomiExamples": [ - { - "example": "合", - "reading": "ゴウ", - "meaning": "gō, traditional unit of volume, approx. 0.1804 litres, gō, traditional unit of area, approx 0.33 metres square, one-tenth of the way from the base to the summit of a mountain, conjunction, sum, total, synthesis (in dialectics), minor premise (in hetuvidya), counter for covered containers, counter for matches, battles, etc." - }, - { - "example": "合意", - "reading": "ゴウイ", - "meaning": "(coming to an) agreement, consent, mutual understanding, accord, consensus" - }, - { - "example": "複合", - "reading": "フクゴウ", - "meaning": "composite, combined, complex" - }, - { - "example": "整合", - "reading": "セイゴウ", - "meaning": "adjustment, coordination, integration, conformity" - }, - { - "example": "合宿", - "reading": "ガッシュク", - "meaning": "lodging together, training camp, boarding house" - }, - { - "example": "合作", - "reading": "ガッサク", - "meaning": "collaboration, joint work" - }, - { - "example": "合戦", - "reading": "カッセン", - "meaning": "battle, fight, fighting, engagement, contest" - }, - { - "example": "合羽", - "reading": "カッパ", - "meaning": "raincoat" - } - ], - "kunyomiExamples": [ - { - "example": "合う", - "reading": "あう", - "meaning": "to come together, to merge, to unite, to meet, to fit, to match, to suit, to agree with, to be correct, to be profitable, to be equitable, to do ... to each other, to do ... together" - }, - { - "example": "合うも不思議、合わぬも不思議", - "reading": "あうもふしぎあわぬもふしぎ", - "meaning": "dreams and fortune-telling are hit-and-miss" - }, - { - "example": "合い", - "reading": "あい", - "meaning": "between-season wear, spring and autumn clothing, spring and fall clothing, together, condition, situation, state, -ish" - }, - { - "example": "合言葉", - "reading": "あいことば", - "meaning": "password, watchword, motto, slogan" - }, - { - "example": "待合", - "reading": "まちあい", - "meaning": "rendezvous, meeting, assignation, area where guests gather before the start of a tea ceremony, waiting room, meeting place for assignations, drinking, etc." - }, - { - "example": "地合い", - "reading": "じあい", - "meaning": "texture (cloth, fabric, paper), market tone, undertone, balance between the position of white and black stones (in go)" - }, - { - "example": "合わす", - "reading": "あわす", - "meaning": "to match (rhythm, speed, etc.), to join together, to unite, to combine, to add up, to face, to be opposite (someone), to compare, to check with, to cause to meet (e.g. an unpleasant fate), to place together, to connect, to overlap, to mix, to combine, to put blade to blade, to fight" - }, - { - "example": "合わせる", - "reading": "あわせる", - "meaning": "to match (rhythm, speed, etc.), to join together, to unite, to combine, to add up, to face, to be opposite (someone), to compare, to check with, to cause to meet (e.g. an unpleasant fate), to place together, to connect, to overlap, to mix, to combine, to put blade to blade, to fight" - }, - { - "example": "合わせる顔がない", - "reading": "あわせるかおがない", - "meaning": "too ashamed to meet" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "个", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21512_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05408.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5408.gif", - "uri": "http://jisho.org/search/%E5%90%88%23kanji" - }, - { - "query": "谷", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "508", - "strokeCount": 7, - "meaning": "valley", - "kunyomi": [ - "たに", - "きわ.まる" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "谷底平野", - "reading": "コクテイヘイヤ", - "meaning": "valley plain" - }, - { - "example": "渓谷", - "reading": "ケイコク", - "meaning": "valley (with a river running through it), gorge, ravine, canyon" - }, - { - "example": "盤谷", - "reading": "バンコク", - "meaning": "Bangkok (Thailand)" - } - ], - "kunyomiExamples": [ - { - "example": "谷", - "reading": "たに", - "meaning": "valley" - }, - { - "example": "谷間", - "reading": "たにま", - "meaning": "valley, ravine, chasm, dell, cleavage (breasts), slum" - }, - { - "example": "不気味の谷", - "reading": "ぶきみのたに", - "meaning": "uncanny valley (hypothesis about humanoid robots)" - }, - { - "example": "千尋の谷", - "reading": "せんじんのたに", - "meaning": "bottomless ravine, abyss" - }, - { - "example": "極まる", - "reading": "きわまる", - "meaning": "to reach an extreme, to reach a limit, to terminate, to come to an end, extremely, to be stuck, to be in a dilemma, to be at a loss, to be decided, to be settled" - } - ], - "radical": { - "symbol": "谷", - "meaning": "valley" - }, - "parts": [ - "ハ", - "个", - "口", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35895_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c37.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c37.gif", - "uri": "http://jisho.org/search/%E8%B0%B7%23kanji" - }, - { - "query": "国", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "3", - "strokeCount": 8, - "meaning": "country", - "kunyomi": [ - "くに" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "国益", - "reading": "コクエキ", - "meaning": "national interest" - }, - { - "example": "国営", - "reading": "コクエイ", - "meaning": "government management, state management" - }, - { - "example": "最恵国", - "reading": "サイケイコク", - "meaning": "most favored nation, most favoured nation, MFN" - }, - { - "example": "異国", - "reading": "イコク", - "meaning": "foreign country" - } - ], - "kunyomiExamples": [ - { - "example": "国", - "reading": "くに", - "meaning": "country, state, region, national government, central government, home (i.e. hometown, home country), province (of Japan), land, earth" - }, - { - "example": "国人", - "reading": "こくじん", - "meaning": "indigenous person, inhabitant of a country, local, native, local lords and samurai, daimyo who did not leave his domains to meet the shogun in Kyoto (during the Muromachi period)" - }, - { - "example": "お国", - "reading": "おくに", - "meaning": "your native country, your hometown, my home country (i.e. Japan), countryside, country, daimyo's territory (Edo period)" - }, - { - "example": "根の堅州国", - "reading": "ねのかたすくに", - "meaning": "underworld, netherworld" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "丶", - "囗", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22269_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56fd.gif", - "uri": "http://jisho.org/search/%E5%9B%BD%23kanji" - }, - { - "query": "黒", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "573", - "strokeCount": 11, - "meaning": "black", - "kunyomi": [ - "くろ", - "くろ.ずむ", - "くろ.い" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "黒煙", - "reading": "コクエン", - "meaning": "black smoke" - }, - { - "example": "黒衣", - "reading": "コクイ", - "meaning": "black clothes" - }, - { - "example": "大黒", - "reading": "ダイコク", - "meaning": "god of wealth, monk's wife" - }, - { - "example": "二黒", - "reading": "ジコク", - "meaning": "second of nine traditional astrological signs (corresponding to Saturn and southwest)" - } - ], - "kunyomiExamples": [ - { - "example": "黒", - "reading": "くろ", - "meaning": "black, black go stone, guilt, guilty person" - }, - { - "example": "黒い", - "reading": "くろい", - "meaning": "black, dark, blackish, sun-tanned (skin), suspicious, criminal, illicit, darkened and dirty, sooty, covered in dirt, evil, wicked, black-hearted, inauspicious, ill-boding, unlucky" - }, - { - "example": "黒ずむ", - "reading": "くろずむ", - "meaning": "to blacken, to darken" - }, - { - "example": "黒い", - "reading": "くろい", - "meaning": "black, dark, blackish, sun-tanned (skin), suspicious, criminal, illicit, darkened and dirty, sooty, covered in dirt, evil, wicked, black-hearted, inauspicious, ill-boding, unlucky" - }, - { - "example": "黒い霧", - "reading": "くろいきり", - "meaning": "thick fog (of suspicion), black veil of secrecy, covered-up crime, unethical act, etc." - } - ], - "radical": { - "symbol": "黑", - "meaning": "black" - }, - "parts": [ - "杰", - "里", - "黒" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40658_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ed2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ed2.gif", - "uri": "http://jisho.org/search/%E9%BB%92%23kanji" - }, - { - "query": "今", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "49", - "strokeCount": 4, - "meaning": "now", - "kunyomi": [ - "いま" - ], - "onyomi": [ - "コン", - "キン" - ], - "onyomiExamples": [ - { - "example": "今", - "reading": "コン", - "meaning": "the current ..., this, today's ..." - }, - { - "example": "今夏", - "reading": "コンカ", - "meaning": "this summer, next summer, last summer" - }, - { - "example": "当今", - "reading": "トウコン", - "meaning": "nowadays, these days, at present" - }, - { - "example": "方今", - "reading": "ホウコン", - "meaning": "present time, now, nowadays" - }, - { - "example": "今古", - "reading": "キンコ", - "meaning": "now and anciently" - }, - { - "example": "今上", - "reading": "キンジョウ", - "meaning": "His Majesty the Emperor, the present emperor, the reigning emperor" - } - ], - "kunyomiExamples": [ - { - "example": "今", - "reading": "いま", - "meaning": "now, the present time, just now, soon, immediately, another, more" - }, - { - "example": "今に", - "reading": "いまに", - "meaning": "before long, even now" - }, - { - "example": "中今", - "reading": "なかいま", - "meaning": "the present (esp. as a privileged moment in eternity)" - }, - { - "example": "今が今", - "reading": "いまがいま", - "meaning": "just now" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "个" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20170_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04eca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4eca.gif", - "uri": "http://jisho.org/search/%E4%BB%8A%23kanji" - }, - { - "query": "才", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1497", - "strokeCount": 3, - "meaning": "genius, years old, cubic shaku", - "kunyomi": [], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "才", - "reading": "サイ", - "meaning": "ability, gift, talent, aptitude, genius, sai, traditional unit of volume, approx. 1.8 ml" - }, - { - "example": "歳", - "reading": "サイ", - "meaning": "-years-old" - }, - { - "example": "鬼才", - "reading": "キサイ", - "meaning": "wizard, genius, remarkable talent, exceptional ability" - }, - { - "example": "英才", - "reading": "エイサイ", - "meaning": "genius, brilliance, unusual talent, gifted person, person of unusual talent" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "一", - "亅" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25165_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0624d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/624d.gif", - "uri": "http://jisho.org/search/%E6%89%8D%23kanji" - }, - { - "query": "細", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "537", - "strokeCount": 11, - "meaning": "dainty, get thin, taper, slender, narrow, detailed, precise", - "kunyomi": [ - "ほそ.い", - "ほそ.る", - "こま.か", - "こま.かい" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "細", - "reading": "サイ", - "meaning": "detail, details" - }, - { - "example": "細菌", - "reading": "サイキン", - "meaning": "bacterium, bacteria, germ" - }, - { - "example": "子細", - "reading": "シサイ", - "meaning": "reasons, circumstances, significance, particulars, hindrance, obstruction, interference" - }, - { - "example": "精細", - "reading": "セイサイ", - "meaning": "detail" - } - ], - "kunyomiExamples": [ - { - "example": "細い", - "reading": "ほそい", - "meaning": "thin, slender, fine, unlucky" - }, - { - "example": "細い糸", - "reading": "ほそいいと", - "meaning": "fine thread" - }, - { - "example": "細る", - "reading": "ほそる", - "meaning": "to get thin, to taper off" - }, - { - "example": "細か", - "reading": "こまか", - "meaning": "small, fine, detailed, stingy" - }, - { - "example": "細かい", - "reading": "こまかい", - "meaning": "small, fine, minute, minor, trivial, sensitive, attentive, careful, frugal, stingy" - }, - { - "example": "細かい", - "reading": "こまかい", - "meaning": "small, fine, minute, minor, trivial, sensitive, attentive, careful, frugal, stingy" - }, - { - "example": "細かいこと", - "reading": "こまかいこと", - "meaning": "trifles, minor details" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "田", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32048_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d30.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d30.gif", - "uri": "http://jisho.org/search/%E7%B4%B0%23kanji" - }, - { - "query": "作", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "103", - "strokeCount": 7, - "meaning": "make, production, prepare, build", - "kunyomi": [ - "つく.る", - "つく.り", - "-づく.り" - ], - "onyomi": [ - "サク", - "サ" - ], - "onyomiExamples": [ - { - "example": "作", - "reading": "サク", - "meaning": "work (e.g. of art), production, harvest, cultivation, farming, crop, yield, technique" - }, - { - "example": "作柄", - "reading": "サクガラ", - "meaning": "crop conditions, quality (of art)" - }, - { - "example": "大作", - "reading": "タイサク", - "meaning": "large-scale work, voluminous work, monumental work, great work, masterpiece" - }, - { - "example": "遺作", - "reading": "イサク", - "meaning": "posthumous works" - }, - { - "example": "作", - "reading": "サク", - "meaning": "work (e.g. of art), production, harvest, cultivation, farming, crop, yield, technique" - }, - { - "example": "作業", - "reading": "サギョウ", - "meaning": "work, operation, manufacturing, fatigue duty" - }, - { - "example": "所作", - "reading": "ショサ", - "meaning": "conduct, behaviour, movements, gesture, one's carriage, performance (on stage, etc.), dance, acting, dance (in kabuki), dance play" - }, - { - "example": "安定操作", - "reading": "アンテイソウサ", - "meaning": "stabilizing (stock) transaction" - } - ], - "kunyomiExamples": [ - { - "example": "作る", - "reading": "つくる", - "meaning": "to make, to produce, to manufacture, to build, to construct, to prepare (food), to brew (alcohol), to raise, to grow, to cultivate, to train, to till, to draw up (a document), to make out, to prepare, to write, to create (an artistic work, etc.), to compose, to coin (a phrase), to organize, to organise, to establish, to found, to have (a child), to make up (one's face, etc.), to fabricate (an excuse, etc.), to give a (false) appearance, to feign (a smile, etc.), to put on a show of emotion, to form (a line, etc.), to set (a record), to commit (a sin, etc.)" - }, - { - "example": "作り", - "reading": "つくり", - "meaning": "making, producing, manufacturing, building, construction, make, structure, appearance (attire, make-up, etc.), build, physique, sashimi, forced (smile, etc.)" - }, - { - "example": "作り上げる", - "reading": "つくりあげる", - "meaning": "to build up, to complete, to construct, to create, to put together, to make up, to fabricate, to invent, to cook up" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "乞", - "化", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20316_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f5c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f5c.gif", - "uri": "http://jisho.org/search/%E4%BD%9C%23kanji" - }, - { - "query": "算", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "361", - "strokeCount": 14, - "meaning": "calculate, divining, number, abacus, probability", - "kunyomi": [ - "そろ" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "算", - "reading": "サン", - "meaning": "divining sticks, counting, calculation" - }, - { - "example": "算出", - "reading": "サンシュツ", - "meaning": "calculation, computation" - }, - { - "example": "通算", - "reading": "ツウサン", - "meaning": "total, sum, aggregate" - }, - { - "example": "公算", - "reading": "コウサン", - "meaning": "probability, likelihood" - } - ], - "kunyomiExamples": [ - { - "example": "算盤", - "reading": "そろばん", - "meaning": "abacus" - }, - { - "example": "算盤勘定", - "reading": "そろばんかんじょう", - "meaning": "counting on the abacus, cost-benefit calculation, profit calculation" - }, - { - "example": "電算", - "reading": "でんそろ", - "meaning": "electronic calculator combined with a soroban" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "廾", - "目", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31639_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b97.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b97.gif", - "uri": "http://jisho.org/search/%E7%AE%97%23kanji" - }, - { - "query": "止", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "310", - "strokeCount": 4, - "meaning": "stop, halt", - "kunyomi": [ - "と.まる", - "-ど.まり", - "と.める", - "-と.める", - "-ど.め", - "とど.める", - "とど.め", - "とど.まる", - "や.める", - "や.む", - "-や.む", - "よ.す", - "-さ.す", - "-さ.し" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "止血", - "reading": "シケツ", - "meaning": "stopping of bleeding, stanching, hemostasis, haemostasis" - }, - { - "example": "止音器", - "reading": "シオンキ", - "meaning": "(piano) damper" - }, - { - "example": "抑止", - "reading": "ヨクシ", - "meaning": "check, checkmate, stave off, control, restraint, inhibit, deterrent, deterrence" - }, - { - "example": "解止", - "reading": "カイシ", - "meaning": "termination" - } - ], - "kunyomiExamples": [ - { - "example": "止まる", - "reading": "とまる", - "meaning": "to stop (moving), to come to a stop, to stop (doing, working, being supplied), to come to a halt, to cease, to be stopped, to be suspended, to alight, to perch on" - }, - { - "example": "止める", - "reading": "とめる", - "meaning": "to stop, to turn off, to park, to prevent, to suppress (a cough), to hold back (tears), to hold (one's breath), to relieve (pain), to stop (someone from doing something), to dissuade, to forbid, to prohibit, to notice, to be aware of, to concentrate on, to pay attention to, to remember, to bear in mind, to fix (in place), to fasten, to tack, to pin, to nail, to button, to staple, to detain, to keep in custody" - }, - { - "example": "留める", - "reading": "とどめる", - "meaning": "to stop, to stay (e.g. the night), to cease, to put an end to, to contain, to keep (in position, in place), to limit, to record (e.g. a fact), to retain" - }, - { - "example": "止め", - "reading": "とどめ", - "meaning": "finishing blow, coup de grâce" - }, - { - "example": "留める", - "reading": "とどめる", - "meaning": "to stop, to stay (e.g. the night), to cease, to put an end to, to contain, to keep (in position, in place), to limit, to record (e.g. a fact), to retain" - }, - { - "example": "止まる", - "reading": "とどまる", - "meaning": "to remain, to abide, to stay (in the one place), to be limited to, to be confined to, to only account for" - }, - { - "example": "とどまるところを知らない", - "reading": "とどまるところをしらない", - "meaning": "knowing no bounds, showing no signs of stopping or slowing down" - }, - { - "example": "止める", - "reading": "やめる", - "meaning": "to stop (an activity), to cease, to discontinue, to end, to quit, to cancel, to abandon, to give up, to abolish, to abstain, to refrain" - }, - { - "example": "止む", - "reading": "やむ", - "meaning": "to cease, to stop, to be over" - }, - { - "example": "やむを得ない", - "reading": "やむをえない", - "meaning": "cannot be helped, unavoidable" - }, - { - "example": "止す", - "reading": "よす", - "meaning": "to cease, to desist, to cut it out, to lay off (an activity), to drop (a subject) to abolish, to resign, to give up" - } - ], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27490_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b62.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b62.gif", - "uri": "http://jisho.org/search/%E6%AD%A2%23kanji" - }, - { - "query": "市", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "42", - "strokeCount": 5, - "meaning": "market, city, town", - "kunyomi": [ - "いち" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "市", - "reading": "シ", - "meaning": "city" - }, - { - "example": "市営", - "reading": "シエイ", - "meaning": "(under) municipal management (transport, housing, etc.), city facility management" - }, - { - "example": "同市", - "reading": "ドウシ", - "meaning": "same city" - }, - { - "example": "田園都市", - "reading": "デンエントシ", - "meaning": "rural or garden city" - } - ], - "kunyomiExamples": [ - { - "example": "市", - "reading": "いち", - "meaning": "market, fair" - }, - { - "example": "市中", - "reading": "しちゅう", - "meaning": "in the city" - }, - { - "example": "骨董市", - "reading": "こっとういち", - "meaning": "antique market, flea market" - }, - { - "example": "草市", - "reading": "くさいち", - "meaning": "flower market during Obon, fair of plants and flowers (as offerings)" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "亠", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e02.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e02.gif", - "uri": "http://jisho.org/search/%E5%B8%82%23kanji" - }, - { - "query": "矢", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1294", - "strokeCount": 5, - "meaning": "dart, arrow", - "kunyomi": [ - "や" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "矢状", - "reading": "シジョウ", - "meaning": "sagittal" - }, - { - "example": "矢状縫合", - "reading": "シジョウホウゴウ", - "meaning": "sagittal suture" - }, - { - "example": "弓矢", - "reading": "ユミヤ", - "meaning": "bow and arrow, weapon, arms" - }, - { - "example": "嚆矢", - "reading": "コウシ", - "meaning": "whistling arrow used to signal the start of battle, start (e.g. of a movement), beginning, dawn" - } - ], - "kunyomiExamples": [ - { - "example": "矢", - "reading": "や", - "meaning": "arrow, wedge, chock" - }, - { - "example": "矢先", - "reading": "やさき", - "meaning": "arrowhead, target of a flying arrow, brunt (of an attack), the very moment (when), the point (of doing)" - }, - { - "example": "弓矢", - "reading": "ゆみや", - "meaning": "bow and arrow, weapon, arms" - }, - { - "example": "洗い矢", - "reading": "あらいや", - "meaning": "ramrod, cleaning rod" - } - ], - "radical": { - "symbol": "矢", - "meaning": "arrow" - }, - "parts": [ - "ノ", - "一", - "乞", - "大", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30690_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077e2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77e2.gif", - "uri": "http://jisho.org/search/%E7%9F%A2%23kanji" - }, - { - "query": "姉", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1473", - "strokeCount": 8, - "meaning": "elder sister", - "kunyomi": [ - "あね", - "はは" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "姉", - "reading": "シ", - "meaning": "honorific suffix used after the name of a woman of equal or higher status" - }, - { - "example": "姉妹", - "reading": "シマイ", - "meaning": "sisters" - }, - { - "example": "実姉", - "reading": "ジッシ", - "meaning": "biological older sister, real elder sister" - }, - { - "example": "兄姉", - "reading": "ケイシ", - "meaning": "brother and sister" - } - ], - "kunyomiExamples": [ - { - "example": "姉", - "reading": "あね", - "meaning": "older sister, elder sister" - }, - { - "example": "姉さん", - "reading": "ねえさん", - "meaning": "older sister, elder sister, young lady, miss, ma'am" - }, - { - "example": "大姉", - "reading": "おおあね", - "meaning": "eldest sister" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "亠", - "女", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22985_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059c9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59c9.gif", - "uri": "http://jisho.org/search/%E5%A7%89%23kanji" - }, - { - "query": "思", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "132", - "strokeCount": 9, - "meaning": "think", - "kunyomi": [ - "おも.う", - "おもえら.く", - "おぼ.す" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "思春期", - "reading": "シシュンキ", - "meaning": "puberty, adolescence" - }, - { - "example": "思考", - "reading": "シコウ", - "meaning": "thought, consideration, thinking" - }, - { - "example": "相思", - "reading": "ソウシ", - "meaning": "mutual affection, mutual love" - }, - { - "example": "哀思", - "reading": "アイシ", - "meaning": "sad feeling" - } - ], - "kunyomiExamples": [ - { - "example": "思う", - "reading": "おもう", - "meaning": "to think, to consider, to believe, to reckon, to think (of doing), to plan (to do), to judge, to assess, to regard, to imagine, to suppose, to dream, to expect, to look forward to, to feel, to be (in a state of mind), to desire, to want, to recall, to remember" - }, - { - "example": "思う存分", - "reading": "おもうぞんぶん", - "meaning": "to one's heart's content, to one's complete satisfaction, as much as one likes, heartily, thoroughly, without restraint" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24605_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0601d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/601d.gif", - "uri": "http://jisho.org/search/%E6%80%9D%23kanji" - }, - { - "query": "紙", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "559", - "strokeCount": 10, - "meaning": "paper", - "kunyomi": [ - "かみ" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "紙", - "reading": "シ", - "meaning": "newspaper" - }, - { - "example": "紙上", - "reading": "シジョウ", - "meaning": "on paper, in the newspapers, in a letter" - }, - { - "example": "原稿用紙", - "reading": "ゲンコウヨウシ", - "meaning": "Japanese writing paper (lined with a square grid, one square per character), manuscript paper" - }, - { - "example": "製紙", - "reading": "セイシ", - "meaning": "papermaking, paper-making, paper making, paper manufacture" - } - ], - "kunyomiExamples": [ - { - "example": "紙", - "reading": "かみ", - "meaning": "paper" - }, - { - "example": "紙芝居", - "reading": "かみしばい", - "meaning": "kamishibai, storytelling with pictures, form of Japanese street theater and storytelling (popular from the 1930s to the 1950s)" - }, - { - "example": "インディア紙", - "reading": "インディアかみ", - "meaning": "India paper" - }, - { - "example": "蝋紙", - "reading": "ろうかみ", - "meaning": "wax paper" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "氏", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32025_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d19.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d19.gif", - "uri": "http://jisho.org/search/%E7%B4%99%23kanji" - }, - { - "query": "寺", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "879", - "strokeCount": 6, - "meaning": "Buddhist temple", - "kunyomi": [ - "てら" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "寺", - "reading": "ジ", - "meaning": "counter for temples" - }, - { - "example": "寺院", - "reading": "ジイン", - "meaning": "Buddhist temple, religious building, church, cathedral, mosque" - }, - { - "example": "国分寺", - "reading": "コクブンジ", - "meaning": "state-supported provincial temple (Nara period)" - }, - { - "example": "古寺", - "reading": "コジ", - "meaning": "old temple" - } - ], - "kunyomiExamples": [ - { - "example": "寺", - "reading": "てら", - "meaning": "temple (Buddhist)" - }, - { - "example": "寺子屋", - "reading": "てらこや", - "meaning": "temple elementary school (during the Edo period)" - }, - { - "example": "お寺", - "reading": "おてら", - "meaning": "temple, monk" - }, - { - "example": "宮寺", - "reading": "ぐうじ", - "meaning": "Buddhist temple within a Shinto shrine" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "土", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23546_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bfa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bfa.gif", - "uri": "http://jisho.org/search/%E5%AF%BA%23kanji" - }, - { - "query": "自", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "19", - "strokeCount": 6, - "meaning": "oneself", - "kunyomi": [ - "みずか.ら", - "おの.ずから", - "おの.ずと" - ], - "onyomi": [ - "ジ", - "シ" - ], - "onyomiExamples": [ - { - "example": "自", - "reading": "ジ", - "meaning": "self-, from ..., this ... (in contrast to some other ...), aforementioned" - }, - { - "example": "自営", - "reading": "ジエイ", - "meaning": "running one's own business, doing business on one's own, self-employment" - }, - { - "example": "出自", - "reading": "シュツジ", - "meaning": "origin, birthplace, descent, lineage, ancestry, stock" - }, - { - "example": "海自", - "reading": "カイジ", - "meaning": "Maritime Self-Defense Force" - }, - { - "example": "自然界", - "reading": "シゼンカイ", - "meaning": "nature, the natural world, realm of nature" - }, - { - "example": "自然", - "reading": "シゼン", - "meaning": "nature, natural, spontaneous, automatic, naturally, spontaneously, automatically" - }, - { - "example": "己がじし", - "reading": "オノガジシ", - "meaning": "each and every one, individually" - } - ], - "kunyomiExamples": [ - { - "example": "自ら", - "reading": "みずから", - "meaning": "oneself, for one's self, personally" - }, - { - "example": "自ら進んで", - "reading": "みずからすすんで", - "meaning": "by choice, of one's own free will, on one's own initiative, off one's own bat" - }, - { - "example": "自ずから", - "reading": "おのずから", - "meaning": "naturally, as a matter of course" - }, - { - "example": "自ずから明らか", - "reading": "おのずからあきらか", - "meaning": "self-evident" - }, - { - "example": "自ずと", - "reading": "おのずと", - "meaning": "naturally, in due course, by itself" - } - ], - "radical": { - "symbol": "自", - "meaning": "self" - }, - "parts": [ - "目", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33258_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081ea.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81ea.gif", - "uri": "http://jisho.org/search/%E8%87%AA%23kanji" - }, - { - "query": "時", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "16", - "strokeCount": 10, - "meaning": "time, hour", - "kunyomi": [ - "とき", - "-どき" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "時", - "reading": "ジ", - "meaning": "hour, o'clock, (specified) time, when ..., during ..." - }, - { - "example": "時価", - "reading": "ジカ", - "meaning": "current value, price, market value" - }, - { - "example": "零時", - "reading": "レイジ", - "meaning": "twelve o'clock, midnight, noon" - }, - { - "example": "平時", - "reading": "ヘイジ", - "meaning": "peacetime, time of peace, ordinary times, normal times" - } - ], - "kunyomiExamples": [ - { - "example": "時", - "reading": "とき", - "meaning": "time, hour, moment, occasion, case, chance, opportunity, season, the times, the age, the day, tense" - }, - { - "example": "時折", - "reading": "ときおり", - "meaning": "sometimes" - }, - { - "example": "切り替え時", - "reading": "きりかえとき", - "meaning": "time to switch over, response time" - }, - { - "example": "逢魔が時", - "reading": "おうまがとき", - "meaning": "twilight, time for disasters (similar to 'the witching hour' but not midnight)" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "土", - "寸", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06642.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6642.gif", - "uri": "http://jisho.org/search/%E6%99%82%23kanji" - }, - { - "query": "室", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "550", - "strokeCount": 9, - "meaning": "room, apartment, chamber, greenhouse, cellar", - "kunyomi": [ - "むろ" - ], - "onyomi": [ - "シツ" - ], - "onyomiExamples": [ - { - "example": "室", - "reading": "シツ", - "meaning": "room, wife (of someone of high rank), scabbard, Chinese \"Encampment\" constellation (one of the 28 mansions)" - }, - { - "example": "室長", - "reading": "シツチョウ", - "meaning": "section chief, laboratory manager, office head, room monitor" - }, - { - "example": "同室", - "reading": "ドウシツ", - "meaning": "same room, sharing a room, occupying the same room" - }, - { - "example": "皇室", - "reading": "コウシツ", - "meaning": "Imperial household" - } - ], - "kunyomiExamples": [ - { - "example": "室", - "reading": "むろ", - "meaning": "greenhouse, icehouse, cellar" - }, - { - "example": "室町", - "reading": "むろまち", - "meaning": "Muromachi (era 1392-1573, or 1333-1573, or 1336-1573)" - }, - { - "example": "石室", - "reading": "せきしつ", - "meaning": "stone hut, rock chamber, tomb, stone burial chamber" - }, - { - "example": "氷室", - "reading": "こおりむろ", - "meaning": "ice house, ice room, cold room" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "厶", - "土", - "宀", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23460_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ba4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ba4.gif", - "uri": "http://jisho.org/search/%E5%AE%A4%23kanji" - }, - { - "query": "社", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "21", - "strokeCount": 7, - "meaning": "company, firm, office, association, shrine", - "kunyomi": [ - "やしろ" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "社", - "reading": "シャ", - "meaning": "company, association, society, regional Chinese god of the earth (or a village built in its honour), counter for companies, shrines, etc." - }, - { - "example": "社員", - "reading": "シャイン", - "meaning": "company employee, member of a corporation, company stockholder (esp. in legal contexts)" - }, - { - "example": "大社", - "reading": "タイシャ", - "meaning": "grand shrine, famous shrine, Izumo Grand Shrine" - }, - { - "example": "親会社", - "reading": "オヤガイシャ", - "meaning": "parent company" - } - ], - "kunyomiExamples": [ - { - "example": "社", - "reading": "やしろ", - "meaning": "(Shinto) shrine" - }, - { - "example": "大社", - "reading": "たいしゃ", - "meaning": "grand shrine, famous shrine, Izumo Grand Shrine" - }, - { - "example": "村のお社", - "reading": "むらのおやしろ", - "meaning": "village shrine" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "土", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31038_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0793e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/793e.gif", - "uri": "http://jisho.org/search/%E7%A4%BE%23kanji" - }, - { - "query": "弱", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "958", - "strokeCount": 10, - "meaning": "weak, frail", - "kunyomi": [ - "よわ.い", - "よわ.る", - "よわ.まる", - "よわ.める" - ], - "onyomi": [ - "ジャク" - ], - "onyomiExamples": [ - { - "example": "弱", - "reading": "ジャク", - "meaning": "little less than, slightly fewer than, just under, weakness, the weak" - }, - { - "example": "弱者", - "reading": "ジャクシャ", - "meaning": "weak person, the weak, vulnerable person, disadvantaged person" - }, - { - "example": "精神薄弱", - "reading": "セイシンハクジャク", - "meaning": "mental retardation, mentally retarded" - }, - { - "example": "薄弱", - "reading": "ハクジャク", - "meaning": "feebleness, weakness, weak" - } - ], - "kunyomiExamples": [ - { - "example": "弱い", - "reading": "よわい", - "meaning": "weak, frail, delicate, tender, unskilled, weak (wine)" - }, - { - "example": "弱い経済", - "reading": "よわいけいざい", - "meaning": "weak economy" - }, - { - "example": "弱る", - "reading": "よわる", - "meaning": "to weaken, to grow weak, to wane, to decline (of one's health), to be downcast, to be dejected, to be dispirited, to be troubled, to be at a loss, to be perplexed, to be annoyed" - }, - { - "example": "弱まる", - "reading": "よわまる", - "meaning": "to abate, to weaken, to be emaciated, to be dejected, to be perplexed" - }, - { - "example": "弱める", - "reading": "よわめる", - "meaning": "to weaken" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "冫", - "弓" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24369_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f31.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f31.gif", - "uri": "http://jisho.org/search/%E5%BC%B1%23kanji" - }, - { - "query": "首", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "98", - "strokeCount": 9, - "meaning": "neck, counter for songs and poems", - "kunyomi": [ - "くび" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "首", - "reading": "シュ", - "meaning": "counter for songs and poems" - }, - { - "example": "首級", - "reading": "シュキュウ", - "meaning": "decapitated head of an enemy" - }, - { - "example": "元首", - "reading": "ゲンシュ", - "meaning": "sovereign, ruler, head of state" - }, - { - "example": "百人一首", - "reading": "ヒャクニンイッシュ", - "meaning": "(Ogura) Hyakunin Isshu, classical Japanese anthology of one hundred Japanese waka by one hundred poets, hyakunin isshu karuta, hyakunin isshu poetry cards" - } - ], - "kunyomiExamples": [ - { - "example": "首", - "reading": "くび", - "meaning": "neck, head, dismissal, discharge, firing (from a job)" - }, - { - "example": "首飾り", - "reading": "くびかざり", - "meaning": "necklace, choker" - }, - { - "example": "縛り首", - "reading": "しばりくび", - "meaning": "(death by) hanging" - }, - { - "example": "猪首", - "reading": "いくび", - "meaning": "bull neck" - } - ], - "radical": { - "symbol": "首", - "meaning": "head" - }, - "parts": [ - "并", - "目", - "自", - "首" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39318_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09996.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9996.gif", - "uri": "http://jisho.org/search/%E9%A6%96%23kanji" - }, - { - "query": "秋", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "635", - "strokeCount": 9, - "meaning": "autumn", - "kunyomi": [ - "あき", - "とき" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "秋季", - "reading": "シュウキ", - "meaning": "fall season, autumn season" - }, - { - "example": "秋風", - "reading": "アキカゼ", - "meaning": "autumn breeze, fall breeze" - }, - { - "example": "今秋", - "reading": "コンシュウ", - "meaning": "this autumn, this fall, autumn of this year" - }, - { - "example": "中秋", - "reading": "チュウシュウ", - "meaning": "15th day of the 8th lunar month, eighth month of the lunar calendar" - } - ], - "kunyomiExamples": [ - { - "example": "秋", - "reading": "あき", - "meaning": "autumn, fall" - }, - { - "example": "秋口", - "reading": "あきぐち", - "meaning": "beginning of autumn, beginning of fall" - }, - { - "example": "春秋", - "reading": "しゅんじゅう", - "meaning": "spring and autumn, spring and fall, years, age, The Spring and Autumn Annals, The Chronicles of Lu, Chunqiu, Ch'un Ch'iu" - }, - { - "example": "中秋", - "reading": "ちゅうしゅう", - "meaning": "15th day of the 8th lunar month, eighth month of the lunar calendar" - }, - { - "example": "時", - "reading": "とき", - "meaning": "time, hour, moment, occasion, case, chance, opportunity, season, the times, the age, the day, tense" - }, - { - "example": "危急存亡の秋", - "reading": "ききゅうそんぼうのとき", - "meaning": "crisis, critical moment, critical time" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "火", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31179_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79cb.gif", - "uri": "http://jisho.org/search/%E7%A7%8B%23kanji" - }, - { - "query": "週", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "540", - "strokeCount": 11, - "meaning": "week", - "kunyomi": [], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "週", - "reading": "シュウ", - "meaning": "week" - }, - { - "example": "週明け", - "reading": "シュウアケ", - "meaning": "beginning of next week (usu. Monday), early next week" - }, - { - "example": "前週", - "reading": "ゼンシュウ", - "meaning": "last week, the week before" - }, - { - "example": "隔週", - "reading": "カクシュウ", - "meaning": "every other week, every two weeks" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "冂", - "口", - "土", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36913_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09031.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9031.gif", - "uri": "http://jisho.org/search/%E9%80%B1%23kanji" - }, - { - "query": "春", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "579", - "strokeCount": 9, - "meaning": "springtime, spring (season)", - "kunyomi": [ - "はる" - ], - "onyomi": [ - "シュン" - ], - "onyomiExamples": [ - { - "example": "春秋", - "reading": "シュンジュウ", - "meaning": "spring and autumn, spring and fall, years, age, The Spring and Autumn Annals, The Chronicles of Lu, Chunqiu, Ch'un Ch'iu" - }, - { - "example": "春季", - "reading": "シュンキ", - "meaning": "spring season" - }, - { - "example": "昨春", - "reading": "サクシュン", - "meaning": "last spring, the spring of last year" - }, - { - "example": "売春", - "reading": "バイシュン", - "meaning": "prostitution" - } - ], - "kunyomiExamples": [ - { - "example": "春", - "reading": "はる", - "meaning": "spring, springtime, New Year, prime (of one's life, etc.), adolescence, puberty, sexuality" - }, - { - "example": "春秋", - "reading": "しゅんじゅう", - "meaning": "spring and autumn, spring and fall, years, age, The Spring and Autumn Annals, The Chronicles of Lu, Chunqiu, Ch'un Ch'iu" - }, - { - "example": "初春", - "reading": "しょしゅん", - "meaning": "beginning of spring, first month of the lunar calendar, New Year" - }, - { - "example": "小春", - "reading": "こはる", - "meaning": "10th month of the lunisolar calendar (traditional first month of winter, approx. November), late autumn, late fall" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "一", - "二", - "人", - "大", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26149_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06625.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6625.gif", - "uri": "http://jisho.org/search/%E6%98%A5%23kanji" - }, - { - "query": "書", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "169", - "strokeCount": 10, - "meaning": "write", - "kunyomi": [ - "か.く", - "-が.き", - "-がき" - ], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "書", - "reading": "ショ", - "meaning": "book, document, calligraphy (esp. Chinese), penmanship, handwriting, letter, note" - }, - { - "example": "書院", - "reading": "ショイン", - "meaning": "drawing room, study, publishing house, writing alcove" - }, - { - "example": "投書", - "reading": "トウショ", - "meaning": "letter (e.g. of complaint), letter to the editor, letter from a reader, contribution (to a newspaper, magazine, etc.)" - }, - { - "example": "議定書", - "reading": "ギテイショ", - "meaning": "protocol" - } - ], - "kunyomiExamples": [ - { - "example": "書く", - "reading": "かく", - "meaning": "to write, to compose, to pen, to draw, to paint" - } - ], - "radical": { - "symbol": "曰", - "meaning": "say" - }, - "parts": [ - "日", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26360_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66f8.gif", - "uri": "http://jisho.org/search/%E6%9B%B8%23kanji" - }, - { - "query": "少", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "287", - "strokeCount": 4, - "meaning": "few, little", - "kunyomi": [ - "すく.ない", - "すこ.し" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "少", - "reading": "ショウ", - "meaning": "small, little, few" - }, - { - "example": "少輔", - "reading": "ショウ", - "meaning": "assistant vice-minister (ritsuryo system, early Meiji period)" - }, - { - "example": "最少", - "reading": "サイショウ", - "meaning": "fewest, least, smallest (number), lowest, minimum, youngest" - }, - { - "example": "過少", - "reading": "カショウ", - "meaning": "too few, too little, insufficient" - } - ], - "kunyomiExamples": [ - { - "example": "少ない", - "reading": "すくない", - "meaning": "few, a little, scarce, insufficient, seldom" - }, - { - "example": "少ない時間", - "reading": "すくないじかん", - "meaning": "limited time" - }, - { - "example": "少し", - "reading": "すこし", - "meaning": "small quantity, little, few, something, little while, short distance" - }, - { - "example": "少しも", - "reading": "すこしも", - "meaning": "(not) at all, (not) a bit, (not) in the least, (not) in the slightest" - } - ], - "radical": { - "symbol": "小", - "meaning": "small, insignificant" - }, - "parts": [ - "ノ", - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23569_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c11.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c11.gif", - "uri": "http://jisho.org/search/%E5%B0%91%23kanji" - }, - { - "query": "場", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "52", - "strokeCount": 12, - "meaning": "location, place", - "kunyomi": [ - "ば" - ], - "onyomi": [ - "ジョウ", - "チョウ" - ], - "onyomiExamples": [ - { - "example": "場", - "reading": "ジョウ", - "meaning": "place, spot, grounds, arena, stadium, range, course" - }, - { - "example": "場外", - "reading": "ジョウガイ", - "meaning": "outside the hall (or stadium, market, etc.), off the grounds, off the premises, off-track" - }, - { - "example": "斎場", - "reading": "サイジョウ", - "meaning": "funeral hall, ceremony site" - }, - { - "example": "開場", - "reading": "カイジョウ", - "meaning": "opening (the doors to an event, etc.), inauguration" - } - ], - "kunyomiExamples": [ - { - "example": "場", - "reading": "ば", - "meaning": "place, spot, space, field, discipline, sphere, realm, occasion, situation, scene (of a play, movie, etc.), session (of the stock market), field, table, area in which cards are laid out (in a card game), round (east, south, etc.), field, field (gestalt psychology)" - }, - { - "example": "場合", - "reading": "ばあい", - "meaning": "case, situation" - }, - { - "example": "木場", - "reading": "きば", - "meaning": "lumberyard" - }, - { - "example": "漁場", - "reading": "ぎょじょう", - "meaning": "fishing grounds, permitted fishing zone" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "一", - "勿", - "土", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22580_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05834.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5834.gif", - "uri": "http://jisho.org/search/%E5%A0%B4%23kanji" - }, - { - "query": "色", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "621", - "strokeCount": 6, - "meaning": "color", - "kunyomi": [ - "いろ" - ], - "onyomi": [ - "ショク", - "シキ" - ], - "onyomiExamples": [ - { - "example": "色", - "reading": "ショク", - "meaning": "counter for colours" - }, - { - "example": "紫色", - "reading": "ムラサキイロ", - "meaning": "purple, violet" - }, - { - "example": "彩色", - "reading": "サイシキ", - "meaning": "colouring, coloring, colouration, coloration, painting" - }, - { - "example": "色", - "reading": "シキ", - "meaning": "rupa (form), visible objects (i.e. color and form)" - }, - { - "example": "色彩", - "reading": "シキサイ", - "meaning": "colour, color, hue, tints" - }, - { - "example": "彩色", - "reading": "サイシキ", - "meaning": "colouring, coloring, colouration, coloration, painting" - }, - { - "example": "極彩色", - "reading": "ゴクサイシキ", - "meaning": "richly colored, richly coloured" - } - ], - "kunyomiExamples": [ - { - "example": "色", - "reading": "いろ", - "meaning": "colour, color, hue, tint, tinge, shade, complexion, skin colour, skin color, look (on one's face), expression, appearance, air, feeling, personality, character, tone (of one's voice, etc.), tune, sound, ring, love, lust, sensuality, love affair, lover, paramour, beauty, sexiness, physical appeal, kind, type, variety" - }, - { - "example": "色合い", - "reading": "いろあい", - "meaning": "colouring, coloring, shade (of colour), hue, tone, tinge, tint, flavour, nuance, feel, sense, look" - }, - { - "example": "紫色", - "reading": "むらさきいろ", - "meaning": "purple, violet" - }, - { - "example": "橙色", - "reading": "だいだいいろ", - "meaning": "orange (color, colour)" - } - ], - "radical": { - "symbol": "色", - "meaning": "colour, prettiness" - }, - "parts": [ - "勹", - "巴", - "色" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33394_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08272.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8272.gif", - "uri": "http://jisho.org/search/%E8%89%B2%23kanji" - }, - { - "query": "食", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "328", - "strokeCount": 9, - "meaning": "eat, food", - "kunyomi": [ - "く.う", - "く.らう", - "た.べる", - "は.む" - ], - "onyomi": [ - "ショク", - "ジキ" - ], - "onyomiExamples": [ - { - "example": "食", - "reading": "ショク", - "meaning": "food, foodstuff, eating, appetite, meal" - }, - { - "example": "食", - "reading": "ショク", - "meaning": "eclipse (solar, lunar, etc.)" - }, - { - "example": "飽食", - "reading": "ホウショク", - "meaning": "gluttony, satiation, engorgement" - }, - { - "example": "会食", - "reading": "カイショク", - "meaning": "dining together, mess" - }, - { - "example": "食", - "reading": "ショク", - "meaning": "food, foodstuff, eating, appetite, meal" - }, - { - "example": "食堂", - "reading": "ジキドウ", - "meaning": "dining hall (at a temple)" - }, - { - "example": "断食", - "reading": "ダンジキ", - "meaning": "fasting, fast" - }, - { - "example": "斎食", - "reading": "サイジキ", - "meaning": "morning meal (for priests, monks, etc.), food offering at a Buddhist ceremony" - } - ], - "kunyomiExamples": [ - { - "example": "食う", - "reading": "くう", - "meaning": "to eat, to live, to make a living, to survive, to bite, to sting (as insects do), to tease, to torment, to taunt, to make light of, to make fun of, to encroach on, to eat into, to consume, to defeat a superior, to threaten a position, to consume time and-or resources, to receive something (usu. an unfavourable event), to have sexual relations with a woman, esp. for the first time" - }, - { - "example": "食うや食わず", - "reading": "くうやくわず", - "meaning": "(living) from hand to mouth, living on the fringe of subsistence" - }, - { - "example": "食らう", - "reading": "くらう", - "meaning": "to eat, to drink, to wolf, to knock back, to receive (e.g. a blow), to be on the receiving end (of something undesirable), to undergo (trouble)" - }, - { - "example": "食べる", - "reading": "たべる", - "meaning": "to eat, to live on (e.g. a salary), to live off, to subsist on" - }, - { - "example": "食べるラー油", - "reading": "たべるラーゆ", - "meaning": "chili oil mixed with chopped garlic, onions, etc." - }, - { - "example": "食む", - "reading": "はむ", - "meaning": "to eat (fodder, grass, etc.), to receive (a salary), to receive a stipend from one's lord" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39135_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098df.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98df.gif", - "uri": "http://jisho.org/search/%E9%A3%9F%23kanji" - }, - { - "query": "心", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "157", - "strokeCount": 4, - "meaning": "heart, mind, spirit, heart radical (no. 61)", - "kunyomi": [ - "こころ", - "-ごころ" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "心", - "reading": "シン", - "meaning": "heart, mind, spirit, vitality, inner strength, bottom of one's heart, core (of one's character), nature, centre, center, core, heart, heart (organ), Chinese \"Heart\" constellation (one of the 28 mansions), friend" - }, - { - "example": "心から", - "reading": "ココロカラ", - "meaning": "from the bottom of one's heart, heartily, sincerely" - }, - { - "example": "重心", - "reading": "ジュウシン", - "meaning": "centre of gravity (center), centroid, barycenter, (one's) balance" - }, - { - "example": "会心", - "reading": "カイシン", - "meaning": "congeniality, satisfaction, gratification" - } - ], - "kunyomiExamples": [ - { - "example": "心", - "reading": "こころ", - "meaning": "mind, heart, spirit, the meaning of a phrase (riddle, etc.)" - }, - { - "example": "心意気", - "reading": "こころいき", - "meaning": "spirit, disposition" - }, - { - "example": "我が心", - "reading": "わがこころ", - "meaning": "my heart" - }, - { - "example": "静心", - "reading": "しずごころ", - "meaning": "calm mind, placid temperament" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24515_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fc3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fc3.gif", - "uri": "http://jisho.org/search/%E5%BF%83%23kanji" - }, - { - "query": "新", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "51", - "strokeCount": 13, - "meaning": "new", - "kunyomi": [ - "あたら.しい", - "あら.た", - "あら-", - "にい-" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "新", - "reading": "シン", - "meaning": "new, neo-, newness, novelty, Gregorian calendar, Xin dynasty (China, 9-23 CE), Hsin dynasty" - }, - { - "example": "新鋭", - "reading": "シンエイ", - "meaning": "young and energetic, up-and-coming, new and excellent, newly produced, up-and-comer" - }, - { - "example": "維新", - "reading": "イシン", - "meaning": "reformation, revolution, renewal, Meiji Restoration" - }, - { - "example": "改新", - "reading": "カイシン", - "meaning": "reformation" - } - ], - "kunyomiExamples": [ - { - "example": "新しい", - "reading": "あたらしい", - "meaning": "new, novel, fresh, recent, latest, up-to-date, modern" - }, - { - "example": "新しい女", - "reading": "あたらしいおんな", - "meaning": "liberated woman" - }, - { - "example": "新た", - "reading": "あらた", - "meaning": "new, fresh, novel" - }, - { - "example": "新田", - "reading": "しんでん", - "meaning": "new rice field, newly developed rice field, wasteland or marshland newly reclaimed as a rice field (Edo period)" - } - ], - "radical": { - "symbol": "斤", - "meaning": "axe" - }, - "parts": [ - "亠", - "并", - "斤", - "木", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26032_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065b0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65b0.gif", - "uri": "http://jisho.org/search/%E6%96%B0%23kanji" - }, - { - "query": "親", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "406", - "strokeCount": 16, - "meaning": "parent, intimacy, relative, familiarity, dealer (cards)", - "kunyomi": [ - "おや", - "おや-", - "した.しい", - "した.しむ" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "親", - "reading": "シン", - "meaning": "intimacy, closeness, friendliness, close relative, pro- (e.g. pro-American)" - }, - { - "example": "親衛", - "reading": "シンエイ", - "meaning": "monarch's guards" - }, - { - "example": "懇親", - "reading": "コンシン", - "meaning": "friendship, intimacy" - }, - { - "example": "近親", - "reading": "キンシン", - "meaning": "near relative" - } - ], - "kunyomiExamples": [ - { - "example": "親", - "reading": "おや", - "meaning": "parent, parents, mother and father, dealer (in cards, mahjong, etc.), banker, founder, inventor, (pet) owner, key, parent (organization), main, ancestor, forefather" - }, - { - "example": "親方", - "reading": "おやかた", - "meaning": "master, boss, chief, foreman, supervisor, stable master, craftsman, artisan, foster parent" - }, - { - "example": "生みの親", - "reading": "うみのおや", - "meaning": "biological parent, founder, creator" - }, - { - "example": "里親", - "reading": "さとおや", - "meaning": "foster parent, foster parents, (pet) caretaker" - }, - { - "example": "親しい", - "reading": "したしい", - "meaning": "close (e.g. friend), familiar, friendly, intimate, familiar (e.g. story), well-known (to one), close (relatives), closely related" - }, - { - "example": "親しむ", - "reading": "したしむ", - "meaning": "to be intimate with, to befriend" - } - ], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "亠", - "并", - "木", - "立", - "見", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35242_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/089aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/89aa.gif", - "uri": "http://jisho.org/search/%E8%A6%AA%23kanji" - }, - { - "query": "図", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "539", - "strokeCount": 7, - "meaning": "map, drawing, plan, extraordinary, audacious", - "kunyomi": [ - "え", - "はか.る" - ], - "onyomi": [ - "ズ", - "ト" - ], - "onyomiExamples": [ - { - "example": "図", - "reading": "ズ", - "meaning": "drawing, picture, diagram, figure, illustration, chart, graph, sight, scene" - }, - { - "example": "図鑑", - "reading": "ズカン", - "meaning": "pictorial book, picture book, illustrated reference book, identification manual, field guide" - }, - { - "example": "一途", - "reading": "イチズ", - "meaning": "wholehearted, earnest, determined, intent, single-minded, straightforward, devoted to, doing nothing but" - }, - { - "example": "構図", - "reading": "コウズ", - "meaning": "composition" - }, - { - "example": "図書館", - "reading": "トショカン", - "meaning": "library" - }, - { - "example": "図書", - "reading": "トショ", - "meaning": "books" - }, - { - "example": "異図", - "reading": "イト", - "meaning": "treasonable intent" - }, - { - "example": "隠された意図", - "reading": "カクサレタイト", - "meaning": "hidden agenda" - } - ], - "kunyomiExamples": [ - { - "example": "図る", - "reading": "はかる", - "meaning": "to plan, to attempt, to devise, to plot, to conspire, to scheme, to aim for, to strive for, to work towards, to seek, to deceive, to trick, to take in" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "囗", - "斗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22259_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56f3.gif", - "uri": "http://jisho.org/search/%E5%9B%B3%23kanji" - }, - { - "query": "数", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "148", - "strokeCount": 13, - "meaning": "number, strength, fate, law, figures", - "kunyomi": [ - "かず", - "かぞ.える", - "しばしば", - "せ.める", - "わずらわ.しい" - ], - "onyomi": [ - "スウ", - "ス", - "サク", - "ソク", - "シュ" - ], - "onyomiExamples": [ - { - "example": "数", - "reading": "スウ", - "meaning": "several, a number of, quantity, amount, counting, figures, numbers, number, numeral, figure, grammatical number, destiny, fate, course of events, trend" - }, - { - "example": "数億年", - "reading": "スウオクネン", - "meaning": "several hundred million years" - }, - { - "example": "戸数", - "reading": "コスウ", - "meaning": "number of households (houses)" - }, - { - "example": "枚数", - "reading": "マイスウ", - "meaning": "the number of flat things, win-loss difference which influences the ranking of wrestlers" - }, - { - "example": "数", - "reading": "スウ", - "meaning": "several, a number of, quantity, amount, counting, figures, numbers, number, numeral, figure, grammatical number, destiny, fate, course of events, trend" - }, - { - "example": "数億年", - "reading": "スウオクネン", - "meaning": "several hundred million years" - }, - { - "example": "数牌", - "reading": "シューパイ", - "meaning": "suited tiles" - } - ], - "kunyomiExamples": [ - { - "example": "数", - "reading": "かず", - "meaning": "number, amount" - }, - { - "example": "数多く", - "reading": "かずおおく", - "meaning": "in great numbers" - }, - { - "example": "手数", - "reading": "てすう", - "meaning": "trouble, bother, number of moves (in go, shogi, etc.), number of punches (in boxing)" - }, - { - "example": "口数", - "reading": "くちかず", - "meaning": "number of words a person speaks, number of dependents, number of mouths to feed, number of shares, items, applications, etc." - }, - { - "example": "数える", - "reading": "かぞえる", - "meaning": "to count, to enumerate" - }, - { - "example": "屡々", - "reading": "しばしば", - "meaning": "often, again and again, frequently, repeatedly" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "夂", - "女", - "攵", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25968_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06570.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6570.gif", - "uri": "http://jisho.org/search/%E6%95%B0%23kanji" - }, - { - "query": "西", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "259", - "strokeCount": 6, - "meaning": "west, Spain", - "kunyomi": [ - "にし" - ], - "onyomi": [ - "セイ", - "サイ", - "ス" - ], - "onyomiExamples": [ - { - "example": "西", - "reading": "セイ", - "meaning": "Spain, Spanish (language)" - }, - { - "example": "西遊記", - "reading": "サイユウキ", - "meaning": "Monkey (Monkey King, Magic Monkey), Journey to the West (classic of Chinese literature)" - }, - { - "example": "南西", - "reading": "ナンセイ", - "meaning": "southwest" - }, - { - "example": "北北西", - "reading": "ホクホクセイ", - "meaning": "north-northwest" - }, - { - "example": "西遊記", - "reading": "サイユウキ", - "meaning": "Monkey (Monkey King, Magic Monkey), Journey to the West (classic of Chinese literature)" - }, - { - "example": "西方", - "reading": "セイホウ", - "meaning": "western direction, Western Pure Land (Amitabha's Buddhist paradise), western fighter in a match (e.g. sumo)" - }, - { - "example": "西瓜", - "reading": "スイカ", - "meaning": "watermelon (Citrullus lanatus)" - }, - { - "example": "西班牙", - "reading": "スペイン", - "meaning": "Spain" - } - ], - "kunyomiExamples": [ - { - "example": "西", - "reading": "にし", - "meaning": "west" - }, - { - "example": "西方", - "reading": "せいほう", - "meaning": "western direction, Western Pure Land (Amitabha's Buddhist paradise), western fighter in a match (e.g. sumo)" - }, - { - "example": "南西", - "reading": "なんせい", - "meaning": "southwest" - }, - { - "example": "東は東西は西", - "reading": "ひがしはひがしにしはにし", - "meaning": "East is East, and West is West" - } - ], - "radical": { - "symbol": "西", - "forms": [ - "襾", - "覀" - ], - "meaning": "west" - }, - "parts": [ - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35199_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0897f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/897f.gif", - "uri": "http://jisho.org/search/%E8%A5%BF%23kanji" - }, - { - "query": "声", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "388", - "strokeCount": 7, - "meaning": "voice", - "kunyomi": [ - "こえ", - "こわ-" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "声楽", - "reading": "セイガク", - "meaning": "vocal music" - }, - { - "example": "声援", - "reading": "セイエン", - "meaning": "(shout of) encouragement, cheering, rooting, support" - }, - { - "example": "肉声", - "reading": "ニクセイ", - "meaning": "natural voice (without a microphone)" - }, - { - "example": "和声", - "reading": "ワセイ", - "meaning": "harmony, concord, consonance" - }, - { - "example": "声", - "reading": "ショウ", - "meaning": "voice, sound, tone (of Chinese character), tone mark, stress (in pronunciation), intonation, accent" - }, - { - "example": "声点", - "reading": "ショウテン", - "meaning": "tone mark, mark placed in one of the four corners of a Chinese character to indicate the tone" - }, - { - "example": "高声", - "reading": "コウセイ", - "meaning": "loud voice, high-pitched voice" - }, - { - "example": "上声", - "reading": "ジョウショウ", - "meaning": "rising tone (in Chinese), (of a Japanese accent) having a high, flat tone" - } - ], - "kunyomiExamples": [ - { - "example": "声", - "reading": "こえ", - "meaning": "voice, singing (of a bird), chirping (of an insect), hoot, voice, opinion (as expressed in words), view, wish, attitude, will, sound, sense (of something's arrival), feeling, voice, voiced sound" - }, - { - "example": "声かけ", - "reading": "こえかけ", - "meaning": "saying something (to someone), greeting, approaching (someone)" - }, - { - "example": "一声", - "reading": "いっせい", - "meaning": "voice, cry, shout" - }, - { - "example": "険しい声", - "reading": "けわしいこえ", - "meaning": "sharp voice" - } - ], - "radical": { - "symbol": "士", - "meaning": "scholar, bachelor" - }, - "parts": [ - "士", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22768_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058f0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58f0.gif", - "uri": "http://jisho.org/search/%E5%A3%B0%23kanji" - }, - { - "query": "星", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "844", - "strokeCount": 9, - "meaning": "star, spot, dot, mark", - "kunyomi": [ - "ほし", - "-ぼし" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "星", - "reading": "セイ", - "meaning": "Chinese \"star\" constellation (one of the 28 mansions), Singapore" - }, - { - "example": "星座", - "reading": "セイザ", - "meaning": "constellation, astrological sign, star sign, zodiac sign" - }, - { - "example": "新星", - "reading": "シンセイ", - "meaning": "nova, new face, new star" - }, - { - "example": "小惑星", - "reading": "ショウワクセイ", - "meaning": "asteroid" - }, - { - "example": "客星", - "reading": "カクセイ", - "meaning": "celestial body seen only for a short time (e.g. comet)" - }, - { - "example": "七星", - "reading": "シチセイ", - "meaning": "the Big Dipper (asterism), the Plough, the Plow" - } - ], - "kunyomiExamples": [ - { - "example": "星", - "reading": "ほし", - "meaning": "star (usu. not including the Sun), planet (usu. not including Earth), heavenly body, star (glyph, symbol, shape), star (actor, player, etc.), small dot, spot, fleck, star point (in go), hoshi, intersection marked with a dot, perp, perpetrator, mark, offender, suspect, bullseye, one's star (that determines one's fate), one's fortune, point, score" - }, - { - "example": "星空", - "reading": "ほしぞら", - "meaning": "starry sky" - }, - { - "example": "四三の星", - "reading": "しそうのほし", - "meaning": "the Big Dipper (asterism), the Plough, the Plow" - }, - { - "example": "希望の星", - "reading": "きぼうのほし", - "meaning": "ray of light, ray of hope, promising talent" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "生" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26143_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0661f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/661f.gif", - "uri": "http://jisho.org/search/%E6%98%9F%23kanji" - }, - { - "query": "晴", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1022", - "strokeCount": 12, - "meaning": "clear up", - "kunyomi": [ - "は.れる", - "は.れ", - "は.れ-", - "-ば.れ", - "は.らす" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "晴天", - "reading": "セイテン", - "meaning": "fine weather (i.e. little or no clouds), fair weather, clear weather, clear sky, fair skies" - }, - { - "example": "晴雨", - "reading": "セイウ", - "meaning": "(clear or rainy) weather" - }, - { - "example": "好晴", - "reading": "コウセイ", - "meaning": "clear weather, good weather" - }, - { - "example": "陰晴", - "reading": "インセイ", - "meaning": "unsettled (fine and cloudy) weather" - } - ], - "kunyomiExamples": [ - { - "example": "晴れる", - "reading": "はれる", - "meaning": "to clear up, to clear away, to be sunny, to stop raining, to refresh (e.g. spirits), to be cleared (e.g. of a suspicion), to be dispelled, to be banished" - }, - { - "example": "晴れ", - "reading": "はれ", - "meaning": "clear weather, fine weather, formal, ceremonial, public, cleared of suspicion" - }, - { - "example": "晴れる", - "reading": "はれる", - "meaning": "to clear up, to clear away, to be sunny, to stop raining, to refresh (e.g. spirits), to be cleared (e.g. of a suspicion), to be dispelled, to be banished" - }, - { - "example": "晴らす", - "reading": "はらす", - "meaning": "to dispel, to clear away, to refresh (oneself), to accomplish a goal, to make it sunny, to make clouds disappear" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "二", - "亠", - "土", - "日", - "月", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26228_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06674.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6674.gif", - "uri": "http://jisho.org/search/%E6%99%B4%23kanji" - }, - { - "query": "切", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "324", - "strokeCount": 4, - "meaning": "cut, cutoff, be sharp", - "kunyomi": [ - "き.る", - "-き.る", - "き.り", - "-き.り", - "-ぎ.り", - "き.れる", - "-き.れる", - "き.れ", - "-き.れ", - "-ぎ.れ" - ], - "onyomi": [ - "セツ", - "サイ" - ], - "onyomiExamples": [ - { - "example": "切", - "reading": "セツ", - "meaning": "eager, earnest, ardent, kind, keen, acute, OFF (on switch)" - }, - { - "example": "切実", - "reading": "セツジツ", - "meaning": "earnest, sincere, acute, keen, fervent, pressing, urgent, serious, severe, pertinent, appropriate" - }, - { - "example": "懇切", - "reading": "コンセツ", - "meaning": "kind, considerate, helpful, caring, thoughtful, attentive, careful" - }, - { - "example": "哀切", - "reading": "アイセツ", - "meaning": "pathetic, plaintive" - }, - { - "example": "切断", - "reading": "セツダン", - "meaning": "cutting, severance, section, amputation, disconnection" - }, - { - "example": "家財一切", - "reading": "カザイイッサイ", - "meaning": "complete set of household goods" - }, - { - "example": "費用一切", - "reading": "ヒヨウイッサイ", - "meaning": "all expenses" - } - ], - "kunyomiExamples": [ - { - "example": "切る", - "reading": "きる", - "meaning": "to cut, to cut through, to perform (surgery), to sever (connections, ties), to turn off (e.g. the light), to terminate (e.g. a conversation), to hang up (the phone), to disconnect, to punch (a ticket), to tear off (a stub), to open (something sealed), to start, to set (a limit), to do (something) in less or within a certain time, to issue (cheques, vouchers, etc.), to reduce, to decrease, to discount, to shake off (water, etc.), to let drip-dry, to let drain, to cross, to traverse, to criticize sharply, to act decisively, to do (something noticeable), to go first, to make (certain facial expressions, in kabuki), to turn (vehicle, steering wheel, etc.), to curl (a ball), to bend, to cut, to shuffle (cards), to discard a tile, to dismiss, to sack, to let go, to expulse, to excommunicate, to dig (a groove), to cut (a stencil, on a mimeograph), to trump, to cut (the connection between two groups) (in go), to start a fire (with wood-wood friction or by striking a metal against stone), to draw (a shape) in the air (with a sword, etc.), to finish, to complete" - }, - { - "example": "切り", - "reading": "きり", - "meaning": "end, finish, stop, bounds, limits, delivery date (of a futures contract), finale (of a noh song), end of an act (in jōruri or kabuki), final performance of the day (in vaudeville), counter for slices (esp. thick slices), counter for cuts (e.g. fish, meat), only, just, since, after, remaining (in a particular state)" - }, - { - "example": "切り替え", - "reading": "きりかえ", - "meaning": "exchange, conversion, replacement, switching (to), switchover" - }, - { - "example": "爪切り", - "reading": "つめきり", - "meaning": "nail clippers" - }, - { - "example": "押し切り", - "reading": "おしきり", - "meaning": "straw cutter, short mane, pressing and cutting" - }, - { - "example": "切れる", - "reading": "きれる", - "meaning": "to break, to snap, to be cut, to split, to crack, to be injured, to wear out, to be worn out, to break, to burst, to collapse, to wear off, to stop working, to go dead, to expire (time limit, etc.), to run out, to become due, to run out (of stock, etc.), to be exhausted, to be used up, to be sold out, to be out of, to be broken off (e.g. of a relationship), to break up, to have severed ties, to be cut off, to be disconnected, to cut well, to be sharp, to be sharp-minded, to be keen, to be shrewd, to be quick-witted, to be able, to be short of, to drop under (a certain figure), to beat (e.g. a record time), to dry off, to curve, to veer, to shuffle (cards), to get angry, to snap, to blow one's top, to lose one's temper, to flip, to be able to do completely" - }, - { - "example": "切れ", - "reading": "きれ", - "meaning": "piece, slice, strip, scrap, cloth, sharpness, agility, counter for scraps, pieces, etc." - }, - { - "example": "切れ味", - "reading": "きれあじ", - "meaning": "sharpness, cutting ability, quickness (of wit), incisiveness, technical proficiency, skill, peppiness (of a ball)" - }, - { - "example": "布切れ", - "reading": "ぬのぎれ", - "meaning": "piece of cloth" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刀", - "匕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20999_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05207.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5207.gif", - "uri": "http://jisho.org/search/%E5%88%87%23kanji" - }, - { - "query": "雪", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1131", - "strokeCount": 11, - "meaning": "snow", - "kunyomi": [ - "ゆき" - ], - "onyomi": [ - "セツ" - ], - "onyomiExamples": [ - { - "example": "雪辱", - "reading": "セツジョク", - "meaning": "vindication of honour, vindication of honor, making up for loss, revenge" - }, - { - "example": "雪山", - "reading": "ユキヤマ", - "meaning": "snowy mountain, permanently snow-covered mountain, pile of snow, Himalayas" - }, - { - "example": "積雪", - "reading": "セキセツ", - "meaning": "fallen snow, snow cover" - }, - { - "example": "融雪", - "reading": "ユウセツ", - "meaning": "melted snow, melting of snow" - } - ], - "kunyomiExamples": [ - { - "example": "雪", - "reading": "ゆき", - "meaning": "snow" - }, - { - "example": "雪国", - "reading": "ゆきぐに", - "meaning": "snow country" - }, - { - "example": "細雪", - "reading": "ささめゆき", - "meaning": "light snow fall, small snow flakes" - }, - { - "example": "粉雪", - "reading": "こなゆき", - "meaning": "powder snow, powdery snow" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "ヨ", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38634_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096ea.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96ea.gif", - "uri": "http://jisho.org/search/%E9%9B%AA%23kanji" - }, - { - "query": "船", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "713", - "strokeCount": 11, - "meaning": "ship, boat", - "kunyomi": [ - "ふね", - "ふな-" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "船橋", - "reading": "フナバシ", - "meaning": "pontoon bridge, temporary bridge made using ships, bridge (of a ship)" - }, - { - "example": "船員", - "reading": "センイン", - "meaning": "sailor" - }, - { - "example": "造船", - "reading": "ゾウセン", - "meaning": "shipbuilding" - }, - { - "example": "大船", - "reading": "オオブネ", - "meaning": "large boat" - } - ], - "kunyomiExamples": [ - { - "example": "船", - "reading": "ふね", - "meaning": "ship, boat, watercraft, vessel, seaplane, tank, tub, vat, trough, counter for boat-shaped containers (e.g. of sashimi)" - }, - { - "example": "船貝", - "reading": "ふねがい", - "meaning": "Arca avellana (species of ark shell)" - }, - { - "example": "大船", - "reading": "おおぶね", - "meaning": "large boat" - }, - { - "example": "釣り船", - "reading": "つりぶね", - "meaning": "fishing boat, boat-shaped hanging flower vase" - } - ], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "ハ", - "口", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33337_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08239.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8239.gif", - "uri": "http://jisho.org/search/%E8%88%B9%23kanji" - }, - { - "query": "線", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "382", - "strokeCount": 15, - "meaning": "line, track", - "kunyomi": [ - "すじ" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "線", - "reading": "セン", - "meaning": "line, stripe, stria, line (e.g. telephone line), wire, ray (e.g. X-ray), beam, line (e.g. of a railroad), track, route, lane, outline, contours, form, level, division, line (of action), position, approach, policy, principle, impression one leaves, air one gives off" - }, - { - "example": "繊維", - "reading": "センイ", - "meaning": "fibre, fiber, textile" - }, - { - "example": "横線", - "reading": "オウセン", - "meaning": "horizontal line" - }, - { - "example": "赤外線", - "reading": "セキガイセン", - "meaning": "infrared rays, infrared radiation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "水", - "白", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32218_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dda.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dda.gif", - "uri": "http://jisho.org/search/%E7%B7%9A%23kanji" - }, - { - "query": "前", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "27", - "strokeCount": 9, - "meaning": "in front, before", - "kunyomi": [ - "まえ", - "-まえ" - ], - "onyomi": [ - "ゼン" - ], - "onyomiExamples": [ - { - "example": "前", - "reading": "ゼン", - "meaning": "the last (i.e. immediately preceding) (e.g. \"the last mayor\"), previous, one-time, former, pre- (e.g. \"premodern\"), before, earlier" - }, - { - "example": "前衛", - "reading": "ゼンエイ", - "meaning": "advance guard, vanguard, avant-garde (e.g. music)" - }, - { - "example": "中前", - "reading": "チュウゼン", - "meaning": "front of center field, front of centre field" - }, - { - "example": "風前", - "reading": "フウゼン", - "meaning": "where the wind blows" - } - ], - "kunyomiExamples": [ - { - "example": "前", - "reading": "まえ", - "meaning": "in front (of), before (e.g. the house), ago, before, previously, prior, (minutes) to (the hour), front (of something), head (e.g. of a line), fore part, front (e.g. seat), previous (e.g. entry in a list), prior, former, (in the) presence (of), in front (of someone), forward, ahead, helping, portion, front of the body, privates, private parts" - }, - { - "example": "前売り", - "reading": "まえうり", - "meaning": "advance sale, booking" - }, - { - "example": "左前", - "reading": "ひだりまえ", - "meaning": "wearing a kimono with the right side over the left (normally used only for the dead), going badly (one's business, one's fortune, the economy), being in a bad financial situation, front left, front and left, before and left" - }, - { - "example": "出前", - "reading": "でまえ", - "meaning": "home delivery (of food), outside catering" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "一", - "刈", - "并", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21069_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0524d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/524d.gif", - "uri": "http://jisho.org/search/%E5%89%8D%23kanji" - }, - { - "query": "組", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "204", - "strokeCount": 11, - "meaning": "association, braid, plait, construct, assemble, unite, cooperate, grapple", - "kunyomi": [ - "く.む", - "くみ", - "-ぐみ" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "組閣", - "reading": "ソカク", - "meaning": "formation of a cabinet" - }, - { - "example": "組織", - "reading": "ソシキ", - "meaning": "organization, organisation, formation, structure, construction, setup, constitution, system (e.g. railroad, transport, party, etc.), tissue, texture (of a rock), weave (of a fabric)" - }, - { - "example": "労組", - "reading": "ロウソ", - "meaning": "labor union, labour union, trade union" - }, - { - "example": "改組", - "reading": "カイソ", - "meaning": "reorganization, reorganisation, reshuffle" - } - ], - "kunyomiExamples": [ - { - "example": "組む", - "reading": "くむ", - "meaning": "to cross (legs or arms), to link (arms), to put together, to construct, to assemble, to produce (e.g. TV program), to braid, to plait, to grapple, to wrestle, to unite, to join, to link up, to form an alliance, to set (e.g. type), to issue (e.g. money order)" - }, - { - "example": "組", - "reading": "くみ", - "meaning": "set (of items), group (of people), class (of students), company (esp. construction), family (i.e. mafia), team, typesetting, composition" - }, - { - "example": "組合", - "reading": "くみあい", - "meaning": "association, union, guild" - }, - { - "example": "労組", - "reading": "ろうそ", - "meaning": "labor union, labour union, trade union" - }, - { - "example": "死の組", - "reading": "しのくみ", - "meaning": "group of death, tournament group containing many strong teams" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "一", - "小", - "幺", - "目", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32068_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d44.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d44.gif", - "uri": "http://jisho.org/search/%E7%B5%84%23kanji" - }, - { - "query": "走", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "626", - "strokeCount": 7, - "meaning": "run", - "kunyomi": [ - "はし.る" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "走", - "reading": "ソウ", - "meaning": "run, race" - }, - { - "example": "走行", - "reading": "ソウコウ", - "meaning": "running a wheeled vehicle (e.g. car), running to program, job, etc., traveling, travelling" - }, - { - "example": "代走", - "reading": "ダイソウ", - "meaning": "substitute runner" - }, - { - "example": "快走", - "reading": "カイソウ", - "meaning": "fast moving, fast running, fast sailing" - } - ], - "kunyomiExamples": [ - { - "example": "走る", - "reading": "はしる", - "meaning": "to run, to travel (movement of vehicles), to drive, to flow (e.g. energy), to hurry to, to retreat (from battle), to take flight, to run away from home, to elope, to tend heavily toward, to flash, to streak, to shoot through (e.g. pain), to get involved, to take (to something), to get wrapped up in, to run (through) (of a road, street, etc.), to extend (e.g. of a mountain range), to stretch, to lie" - } - ], - "radical": { - "symbol": "走", - "forms": [ - "赱" - ], - "meaning": "run" - }, - "parts": [ - "土", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36208_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d70.gif", - "uri": "http://jisho.org/search/%E8%B5%B0%23kanji" - }, - { - "query": "多", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "139", - "strokeCount": 6, - "meaning": "many, frequent, much", - "kunyomi": [ - "おお.い", - "まさ.に", - "まさ.る" - ], - "onyomi": [ - "タ" - ], - "onyomiExamples": [ - { - "example": "多", - "reading": "タ", - "meaning": "multi-" - }, - { - "example": "多角", - "reading": "タカク", - "meaning": "many-sided, versatile, polygonal, diversified" - }, - { - "example": "過多", - "reading": "カタ", - "meaning": "excess, surplus, superabundance" - }, - { - "example": "最多", - "reading": "サイタ", - "meaning": "most (numerous), largest (number of)" - } - ], - "kunyomiExamples": [ - { - "example": "多い", - "reading": "おおい", - "meaning": "many, numerous, a lot, large amount of, large quantity of, a lot, much, frequent, common" - } - ], - "radical": { - "symbol": "夕", - "meaning": "evening, sunset" - }, - "parts": [ - "夕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22810_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0591a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/591a.gif", - "uri": "http://jisho.org/search/%E5%A4%9A%23kanji" - }, - { - "query": "太", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "552", - "strokeCount": 4, - "meaning": "plump, thick, big around", - "kunyomi": [ - "ふと.い", - "ふと.る" - ], - "onyomi": [ - "タイ", - "タ" - ], - "onyomiExamples": [ - { - "example": "大山", - "reading": "タイザン", - "meaning": "great mountain" - }, - { - "example": "太鼓", - "reading": "タイコ", - "meaning": "drum" - }, - { - "example": "太太", - "reading": "タイタイ", - "meaning": "wife" - }, - { - "example": "馬太", - "reading": "マタイ", - "meaning": "Matthew (the Apostle)" - }, - { - "example": "大山", - "reading": "タイザン", - "meaning": "great mountain" - }, - { - "example": "太鼓", - "reading": "タイコ", - "meaning": "drum" - }, - { - "example": "羽太", - "reading": "ハタ", - "meaning": "sea basses, groupers" - }, - { - "example": "赤羽太", - "reading": "アカハタ", - "meaning": "blacktip grouper (species of fish, Epinephelus fasciatus)" - } - ], - "kunyomiExamples": [ - { - "example": "太い", - "reading": "ふとい", - "meaning": "fat, thick, deep (of a voice), thick, sonorous, daring, shameless, brazen, audacious" - }, - { - "example": "太藺", - "reading": "ふとい", - "meaning": "softstem bulrush (Scirpus tabernaemontani)" - }, - { - "example": "太る", - "reading": "ふとる", - "meaning": "to put on weight, to gain weight, to grow fat, to get stout" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "丶", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22826_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0592a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/592a.gif", - "uri": "http://jisho.org/search/%E5%A4%AA%23kanji" - }, - { - "query": "体", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "88", - "strokeCount": 7, - "meaning": "body, substance, object, reality, counter for images", - "kunyomi": [ - "からだ", - "かたち" - ], - "onyomi": [ - "タイ", - "テイ" - ], - "onyomiExamples": [ - { - "example": "体", - "reading": "タイ", - "meaning": "body, physique, posture, shape, form, style, substance, identity, reality, field, counter for humanoid forms (e.g. dolls, statues, corpses, etc.), typeface, type" - }, - { - "example": "体育", - "reading": "タイイク", - "meaning": "physical education, PE, gym (class)" - }, - { - "example": "生体", - "reading": "セイタイ", - "meaning": "organism, living body" - }, - { - "example": "解体", - "reading": "カイタイ", - "meaning": "demolition, taking down, dismantling, disassembly, taking apart, dissolution (of an organization, company, etc.), breaking up, dissection (of a body), dismemberment" - }, - { - "example": "体", - "reading": "テイ", - "meaning": "appearance, air, condition, state, form" - }, - { - "example": "体裁", - "reading": "テイサイ", - "meaning": "(outward) appearance, (proper) format (e.g. of an essay), form, style, appearances, decency, show, display, lip-service, insincere words, glib talk" - }, - { - "example": "身体", - "reading": "シンタイ", - "meaning": "body, physical system, person" - }, - { - "example": "風体", - "reading": "フウテイ", - "meaning": "appearance, look, dress" - } - ], - "kunyomiExamples": [ - { - "example": "体", - "reading": "からだ", - "meaning": "body, torso, trunk, build, physique, constitution, health, corpse, dead body" - }, - { - "example": "体つき", - "reading": "からだつき", - "meaning": "body build, figure" - }, - { - "example": "御体", - "reading": "おんからだ", - "meaning": "body of Christ (Eucharist)" - }, - { - "example": "形体", - "reading": "なりかたち", - "meaning": "one's appearance" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "化", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20307_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f53.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f53.gif", - "uri": "http://jisho.org/search/%E4%BD%93%23kanji" - }, - { - "query": "台", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "262", - "strokeCount": 5, - "meaning": "pedestal, a stand, counter for machines and vehicles", - "kunyomi": [ - "うてな", - "われ", - "つかさ" - ], - "onyomi": [ - "ダイ", - "タイ" - ], - "onyomiExamples": [ - { - "example": "台", - "reading": "ダイ", - "meaning": "stand, rack, table, bench, podium, pedestal, platform, stage, support, holder, rack, counter for machines, incl. vehicles, setting (e.g. in jewellery), level (e.g. price level), range (e.g. after physical units), period (of time, e.g. a decade of one's life), elevated area, viewing platform, dish tray, meal, tall building, tower" - }, - { - "example": "台車", - "reading": "ダイシャ", - "meaning": "platform truck, hand truck, trolley, dolly, cart, (railway) truck, bogie, flatcar, wagon, waggon" - }, - { - "example": "管区気象台", - "reading": "カンクキショウダイ", - "meaning": "district meteorological observatory" - }, - { - "example": "気象台", - "reading": "キショウダイ", - "meaning": "meteorological observatory" - }, - { - "example": "台", - "reading": "タイ", - "meaning": "Taiwan" - }, - { - "example": "台頭", - "reading": "タイトウ", - "meaning": "rise (e.g. of a movement), emergence, rearing one's head, gaining prominence, coming to the fore, gaining power, gathering strength" - }, - { - "example": "屋台", - "reading": "ヤタイ", - "meaning": "cart (esp. a food cart), stall, stand, festival float, portable shrine dedicated to a god and shaped like a house, dancing platform, stage prop fashioned after a large building, framework (of a house, etc.), house (esp. a small and miserable house)" - }, - { - "example": "最後の舞台", - "reading": "サイゴノブタイ", - "meaning": "final performance, swan song, last act" - } - ], - "kunyomiExamples": [ - { - "example": "台", - "reading": "うてな", - "meaning": "tower, stand, pedestal, calyx" - }, - { - "example": "弾正台", - "reading": "だんじょうだい", - "meaning": "Imperial Prosecuting and Investigating Office (1869-1871 CE), Imperial Prosecuting and Investigating Office (under the ritsuryo system)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "厶", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21488_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053f0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53f0.gif", - "uri": "http://jisho.org/search/%E5%8F%B0%23kanji" - }, - { - "query": "地", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "40", - "strokeCount": 6, - "meaning": "ground, earth", - "kunyomi": [], - "onyomi": [ - "チ", - "ジ" - ], - "onyomiExamples": [ - { - "example": "地", - "reading": "チ", - "meaning": "earth, ground, land, soil, place, territory, bottom (of a package, book, etc.), earth (one of the five elements)" - }, - { - "example": "地位", - "reading": "チイ", - "meaning": "(social) position, status" - }, - { - "example": "奥地", - "reading": "オクチ", - "meaning": "interior, backwoods, hinterland, back regions" - }, - { - "example": "対地", - "reading": "タイチ", - "meaning": "ground to ground" - }, - { - "example": "地", - "reading": "ジ", - "meaning": "ground, land, earth, soil, the region in question, the local area, skin, texture, fabric, material, weave, base, background, one's true nature, narrative (i.e. descriptive part of a story), real life, actuality, captured territory (in the game of go), noh chorus, accompaniment music (in Japanese dance), basic phrase (in Japanese music; usu. repetitive), base part (of multiple shamisens)" - }, - { - "example": "地合い", - "reading": "ジアイ", - "meaning": "texture (cloth, fabric, paper), market tone, undertone, balance between the position of white and black stones (in go)" - }, - { - "example": "下地", - "reading": "シタジ", - "meaning": "groundwork, foundation, inclination, aptitude, elementary knowledge (of), grounding (in), undercoat, first coat, soy sauce" - }, - { - "example": "築地", - "reading": "ツイジ", - "meaning": "mud wall with a roof, roofed mud wall" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "也", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22320_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05730.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5730.gif", - "uri": "http://jisho.org/search/%E5%9C%B0%23kanji" - }, - { - "query": "池", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "827", - "strokeCount": 6, - "meaning": "pond, cistern, pool, reservoir", - "kunyomi": [ - "いけ" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "池魚の殃", - "reading": "チギョノワザワイ", - "meaning": "collateral damage, getting embroiled in somebody else's dispute, having a fire spread to one's own house" - }, - { - "example": "池沼", - "reading": "チショウ", - "meaning": "ponds and swamps, mentally-handicapped person" - }, - { - "example": "蓄電池", - "reading": "チクデンチ", - "meaning": "storage battery" - }, - { - "example": "給水池", - "reading": "キュウスイチ", - "meaning": "reservoir" - } - ], - "kunyomiExamples": [ - { - "example": "池", - "reading": "いけ", - "meaning": "pond" - }, - { - "example": "池蝶貝", - "reading": "いけちょうがい", - "meaning": "Hyriopsis schlegelii (species of freshwater mussel)" - }, - { - "example": "用水池", - "reading": "ようすいいけ", - "meaning": "reservoir" - }, - { - "example": "人工池", - "reading": "じんこういけ", - "meaning": "artificial pool" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "也", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27744_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c60.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c60.gif", - "uri": "http://jisho.org/search/%E6%B1%A0%23kanji" - }, - { - "query": "知", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "205", - "strokeCount": 8, - "meaning": "know, wisdom", - "kunyomi": [ - "し.る", - "し.らせる" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "知", - "reading": "チ", - "meaning": "wisdom, jnana (higher knowledge)" - }, - { - "example": "知恵", - "reading": "チエ", - "meaning": "wisdom, wit, sagacity, sense, intelligence, prajna (insight leading to enlightenment)" - }, - { - "example": "認知", - "reading": "ニンチ", - "meaning": "acknowledgement, acknowledgment, recognition, cognition" - }, - { - "example": "熟知", - "reading": "ジュクチ", - "meaning": "being familiar with, having a thorough knowledge of, being well-informed about" - } - ], - "kunyomiExamples": [ - { - "example": "知る", - "reading": "しる", - "meaning": "to be aware of, to know, to be conscious of, to cognize, to cognise, to notice, to feel, to understand, to comprehend, to grasp, to remember, to be acquainted with (a procedure), to experience, to go through, to learn, to be acquainted with (a person), to get to know, to concern" - }, - { - "example": "知る限り", - "reading": "しるかぎり", - "meaning": "as far as I know" - }, - { - "example": "吾唯足知", - "reading": "われただたるをしる", - "meaning": "I am content with what I am (have), Rich is the person who is content with what he is" - }, - { - "example": "知らせる", - "reading": "しらせる", - "meaning": "to notify, to advise, to inform" - } - ], - "radical": { - "symbol": "矢", - "meaning": "arrow" - }, - "parts": [ - "乞", - "口", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30693_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077e5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77e5.gif", - "uri": "http://jisho.org/search/%E7%9F%A5%23kanji" - }, - { - "query": "茶", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1116", - "strokeCount": 9, - "meaning": "tea", - "kunyomi": [], - "onyomi": [ - "チャ", - "サ" - ], - "onyomiExamples": [ - { - "example": "茶", - "reading": "チャ", - "meaning": "tea, tea plant (Camellia sinensis), tea preparation, making tea, brown, mockery" - }, - { - "example": "茶色", - "reading": "チャイロ", - "meaning": "light brown, tawny" - }, - { - "example": "煎茶", - "reading": "センチャ", - "meaning": "green tea, green leaf tea, non-powdered tea (as opposed to matcha), medium-grade green tea" - }, - { - "example": "抹茶", - "reading": "マッチャ", - "meaning": "matcha, powdered green tea" - }, - { - "example": "茶道", - "reading": "サドウ", - "meaning": "tea ceremony, Way of Tea" - }, - { - "example": "茶店", - "reading": "サテン", - "meaning": "tea house" - }, - { - "example": "喫茶", - "reading": "キッサ", - "meaning": "tea drinking, teahouse, tearoom, coffee lounge, coffee shop, (rather formal) cafe" - }, - { - "example": "まんが喫茶", - "reading": "マンガキッサ", - "meaning": "manga cafe, coffee shop with a manga library (usu. has Internet facilities and charges by the hour)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "个", - "木", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33590_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08336.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8336.gif", - "uri": "http://jisho.org/search/%E8%8C%B6%23kanji" - }, - { - "query": "昼", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1115", - "strokeCount": 9, - "meaning": "daytime, noon", - "kunyomi": [ - "ひる" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "昼食", - "reading": "チュウショク", - "meaning": "lunch, midday meal, food served at a tea party (tea ceremony)" - }, - { - "example": "昼間", - "reading": "ヒルマ", - "meaning": "daytime, during the day, time from sunrise until sunset, diurnal period" - }, - { - "example": "炎昼", - "reading": "エンチュウ", - "meaning": "hot summer early afternoon" - }, - { - "example": "春昼", - "reading": "シュンチュウ", - "meaning": "spring day (which seems long and quiet)" - } - ], - "kunyomiExamples": [ - { - "example": "昼", - "reading": "ひる", - "meaning": "noon, midday, daytime, lunch" - }, - { - "example": "昼食", - "reading": "ちゅうしょく", - "meaning": "lunch, midday meal, food served at a tea party (tea ceremony)" - }, - { - "example": "小昼", - "reading": "こひる", - "meaning": "just before noon, late-morning snack" - }, - { - "example": "夜昼", - "reading": "よるひる", - "meaning": "day and night" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "一", - "丶", - "尸", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26172_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0663c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/663c.gif", - "uri": "http://jisho.org/search/%E6%98%BC%23kanji" - }, - { - "query": "長", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "12", - "strokeCount": 8, - "meaning": "long, leader, superior, senior", - "kunyomi": [ - "なが.い", - "おさ" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "長", - "reading": "チョウ", - "meaning": "head, chief, leader, elder, merit, strong point, superiority, major" - }, - { - "example": "長官", - "reading": "チョウカン", - "meaning": "secretary (government), director, chief" - }, - { - "example": "体長", - "reading": "タイチョウ", - "meaning": "length (of an animal), body length" - }, - { - "example": "医長", - "reading": "イチョウ", - "meaning": "medical director, chief physician" - } - ], - "kunyomiExamples": [ - { - "example": "長い", - "reading": "ながい", - "meaning": "long (distance, length), long (time), protracted, prolonged" - }, - { - "example": "長居", - "reading": "ながい", - "meaning": "long visit, overstaying" - }, - { - "example": "長", - "reading": "おさ", - "meaning": "head, chief, leader, elder, the greatest of all, the most excellent" - }, - { - "example": "長亀", - "reading": "おさがめ", - "meaning": "leatherback turtle (Dermochelys coriacea)" - }, - { - "example": "田長", - "reading": "たおさ", - "meaning": "master of the rice field, chief farmer, lesser cuckoo (Cuculus poliocephalus)" - }, - { - "example": "死出田長", - "reading": "しでたおさ", - "meaning": "lesser cuckoo (Cuculus poliocephalus)" - } - ], - "radical": { - "symbol": "長", - "forms": [ - "镸" - ], - "meaning": "long, grow" - }, - "parts": [ - "長" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38263_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09577.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9577.gif", - "uri": "http://jisho.org/search/%E9%95%B7%23kanji" - }, - { - "query": "鳥", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1043", - "strokeCount": 11, - "meaning": "bird, chicken", - "kunyomi": [ - "とり" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "鶏肉", - "reading": "トリニク", - "meaning": "chicken meat, fowl, poultry, bird meat" - }, - { - "example": "鳥獣", - "reading": "チョウジュウ", - "meaning": "birds and wild animals, wildlife" - }, - { - "example": "愛鳥", - "reading": "アイチョウ", - "meaning": "pet bird" - }, - { - "example": "海鳥", - "reading": "ウミドリ", - "meaning": "sea bird" - } - ], - "kunyomiExamples": [ - { - "example": "鳥", - "reading": "とり", - "meaning": "bird, bird meat (esp. chicken meat), fowl, poultry" - }, - { - "example": "鳥居", - "reading": "とりい", - "meaning": "torii, Shinto shrine archway" - }, - { - "example": "焼き鳥", - "reading": "やきとり", - "meaning": "yakitori, chicken pieces (or sometimes beef or pork offal) grilled on a skewer, grilled and skewered bird (esp. sparrow), failing to win a single hand during a half-game" - }, - { - "example": "花鶏", - "reading": "あとり", - "meaning": "brambling (bird) (Fringilla montifringilla)" - } - ], - "radical": { - "symbol": "鳥", - "meaning": "bird" - }, - "parts": [ - "杰", - "鳥" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40165_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ce5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ce5.gif", - "uri": "http://jisho.org/search/%E9%B3%A5%23kanji" - }, - { - "query": "朝", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "248", - "strokeCount": 12, - "meaning": "morning, dynasty, regime, epoch, period, (North) Korea", - "kunyomi": [ - "あさ" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "朝", - "reading": "チョウ", - "meaning": "dynasty, reign, period, epoch, age, court, North Korea" - }, - { - "example": "朝刊", - "reading": "チョウカン", - "meaning": "morning newspaper" - }, - { - "example": "本朝", - "reading": "ホンチョウ", - "meaning": "this land, our country, Imperial Court" - }, - { - "example": "王朝", - "reading": "オウチョウ", - "meaning": "dynasty" - } - ], - "kunyomiExamples": [ - { - "example": "朝", - "reading": "あさ", - "meaning": "morning, breakfast, next morning" - }, - { - "example": "朝方", - "reading": "あさがた", - "meaning": "early morning, early hours, early in the morning" - }, - { - "example": "後の朝", - "reading": "のちのあした", - "meaning": "the morning after (having slept together)" - }, - { - "example": "霜朝", - "reading": "しもあさ", - "meaning": "frosty morning" - } - ], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "十", - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26397_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0671d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/671d.gif", - "uri": "http://jisho.org/search/%E6%9C%9D%23kanji" - }, - { - "query": "直", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "246", - "strokeCount": 8, - "meaning": "straightaway, honesty, frankness, fix, repair", - "kunyomi": [ - "ただ.ちに", - "なお.す", - "-なお.す", - "なお.る", - "なお.き", - "す.ぐ" - ], - "onyomi": [ - "チョク", - "ジキ", - "ジカ" - ], - "onyomiExamples": [ - { - "example": "直", - "reading": "チョク", - "meaning": "direct, in person, frankness, honesty, simplicity, cheerfulness, correctness, being straight, night duty, shift (e.g. in a factory)" - }, - { - "example": "直営", - "reading": "チョクエイ", - "meaning": "direct management" - }, - { - "example": "司直", - "reading": "シチョク", - "meaning": "judge, judiciary, administration of justice, judicial authorities" - }, - { - "example": "愚直", - "reading": "グチョク", - "meaning": "simple honesty, tactless frankness" - }, - { - "example": "直", - "reading": "ジキ", - "meaning": "soon, in a moment, before long, shortly, nearby, close, direct, spot transaction, cash transaction" - }, - { - "example": "直に", - "reading": "ジキニ", - "meaning": "immediately, right away, at once, soon, shortly, in a moment, before long, easily, readily" - }, - { - "example": "高直", - "reading": "コウジキ", - "meaning": "expensive, valuable" - }, - { - "example": "バカ正直", - "reading": "バカショウジキ", - "meaning": "honest to a fault, foolishly honest, naively honest" - }, - { - "example": "直", - "reading": "ジカ", - "meaning": "direct" - }, - { - "example": "直に", - "reading": "ジカニ", - "meaning": "directly, in person, firsthand" - } - ], - "kunyomiExamples": [ - { - "example": "直ちに", - "reading": "ただちに", - "meaning": "at once, immediately, right away, without delay, directly (face, lead to, etc.), automatically (mean, result in, etc.)" - }, - { - "example": "治す", - "reading": "なおす", - "meaning": "to cure, to heal, to fix, to correct, to repair, to do over again, to replace, to put back as it was, to convert (into a different state), to transform" - }, - { - "example": "直る", - "reading": "なおる", - "meaning": "to get mended, to be repaired, to be fixed, to return to normal, to recover (e.g. one's temper), to be restored, to improve, to rally, to come right, to be corrected, to get put right, to be rectified, to come right, to cure (itself), to get cured" - }, - { - "example": "直き", - "reading": "なおき", - "meaning": "straight, upright" - }, - { - "example": "直ぐ", - "reading": "すぐ", - "meaning": "immediately, at once, right away, directly, soon, before long, shortly, easily, readily, without difficulty, right (near), nearby, just (handy), honest, upright, frank, straightforward" - }, - { - "example": "直ぐさま", - "reading": "すぐさま", - "meaning": "immediately, promptly" - }, - { - "example": "真直ぐ", - "reading": "ますぐ", - "meaning": "straight (ahead), direct, upright, erect, straightforward, honest, frank" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "一", - "十", - "目", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30452_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076f4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76f4.gif", - "uri": "http://jisho.org/search/%E7%9B%B4%23kanji" - }, - { - "query": "通", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "80", - "strokeCount": 10, - "meaning": "traffic, pass through, avenue, commute, counter for letters, notes, documents, etc.", - "kunyomi": [ - "とお.る", - "とお.り", - "-とお.り", - "-どお.り", - "とお.す", - "とお.し", - "-どお.し", - "かよ.う" - ], - "onyomi": [ - "ツウ", - "ツ" - ], - "onyomiExamples": [ - { - "example": "通", - "reading": "ツウ", - "meaning": "authority, expert, connoisseur, well-informed person, counter for messages, letters, notes, documents, etc., understanding (esp. of male-female relations), tact, insight, supernatural powers, magical powers" - }, - { - "example": "通院", - "reading": "ツウイン", - "meaning": "going to the hospital for regular treatment" - }, - { - "example": "富士通", - "reading": "フジツウ", - "meaning": "Fujitsu" - }, - { - "example": "食通", - "reading": "ショクツウ", - "meaning": "gourmandism, gourmet, gourmand, foodie" - }, - { - "example": "通", - "reading": "ツウ", - "meaning": "authority, expert, connoisseur, well-informed person, counter for messages, letters, notes, documents, etc., understanding (esp. of male-female relations), tact, insight, supernatural powers, magical powers" - }, - { - "example": "通院", - "reading": "ツウイン", - "meaning": "going to the hospital for regular treatment" - } - ], - "kunyomiExamples": [ - { - "example": "通る", - "reading": "とおる", - "meaning": "to go by, to go past, to go along, to travel along, to pass through, to use (a road), to take (a route), to go via, to go by way of, to run (between; of a rail service, bus route, etc.), to operate (between), to connect, to go indoors, to go into a room, to be admitted, to be shown in, to be ushered in, to come in, to penetrate, to pierce, to skewer, to go through, to come through, to permeate, to soak into, to spread throughout, to carry (e.g. of a voice), to reach far, to be passed on (e.g. of a customer's order to the kitchen), to be relayed, to be conveyed, to pass (a test, a bill in the House, etc.), to be approved, to be accepted, to go by (a name), to be known as, to be accepted as, to have a reputation for, to be coherent, to be logical, to be reasonable, to be comprehensible, to be understandable, to make sense, to get across (e.g. of one's point), to be understood, to pass for, to come across as, to seem like, to be straight (e.g. wood grain), to be well-informed, to be wise, to do ... completely, to do ... thoroughly" - }, - { - "example": "通り", - "reading": "とおり", - "meaning": "avenue, street, way, road, coming and going, street traffic, flow (of water, air, etc.), transmission (of sound), reach (e.g. of voice), fame, reputation, popularity, the same status or way, as (e.g. as expected, as I said), understanding, comprehension, counter for sets of things, counter for methods, ways, types" - }, - { - "example": "通り過ぎる", - "reading": "とおりすぎる", - "meaning": "to go past, to pass, to pass by" - }, - { - "example": "通す", - "reading": "とおす", - "meaning": "to stick through, to force through, to spread throughout, to thoroughly diffuse, to make a path between two points, to proceed in a logical manner, to let pass, to allow through, to lead (someone) into (a house, room, etc.), to show in, to go through (a middleman), to (look, listen) through (a window, wall, etc.), to pass (a law, applicant, etc.), to force to accept, to force agreement, to continue (in a state), to persist in, to do to the entirety of, to cover all of, to span the whole ..., to do from beginning to end without a break, to convey (one's ideas, etc.) to the other party, to do to the end, to carry through, to complete" - }, - { - "example": "通し", - "reading": "とおし", - "meaning": "continuing from beginning to end, continuous run, consecutive run, appetizer, starter, hors d'oeuvre, performance of an entire play" - }, - { - "example": "通し切符", - "reading": "とおしきっぷ", - "meaning": "through ticket (e.g. rail, air), ticket good for multiple performances (e.g. both matinee and evening shows), all-day ticket, season ticket" - }, - { - "example": "切通し", - "reading": "きりどおし", - "meaning": "road (or railway) cut through hilly terrain, cutting" - }, - { - "example": "通う", - "reading": "かよう", - "meaning": "to go to and from (a place), to go back and forth between, to run between (e.g. bus, train, etc.), to ply between, to go to (school, work, etc.), to attend, to commute, to frequent, to circulate (e.g. blood, electricity), to be communicated (e.g. thought), to resemble" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "マ", - "用", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36890_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0901a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/901a.gif", - "uri": "http://jisho.org/search/%E9%80%9A%23kanji" - }, - { - "query": "弟", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1161", - "strokeCount": 7, - "meaning": "younger brother, faithful service to elders", - "kunyomi": [ - "おとうと" - ], - "onyomi": [ - "テイ", - "ダイ", - "デ" - ], - "onyomiExamples": [ - { - "example": "弟", - "reading": "オトウト", - "meaning": "younger brother, little brother, kid brother, brother-in-law (spouse's younger brother or younger sister's husband), pupil, apprentice" - }, - { - "example": "弟子", - "reading": "デシ", - "meaning": "pupil, disciple, adherent, follower, apprentice, young person, teacher's student-helper" - }, - { - "example": "実弟", - "reading": "ジッテイ", - "meaning": "biological younger brother" - }, - { - "example": "子弟", - "reading": "シテイ", - "meaning": "children, sons, children and younger brothers, young people" - }, - { - "example": "親兄弟", - "reading": "オヤキョウダイ", - "meaning": "parents and siblings, one's relatives" - }, - { - "example": "姉弟", - "reading": "シテイ", - "meaning": "older sister and younger brother" - }, - { - "example": "弟子", - "reading": "デシ", - "meaning": "pupil, disciple, adherent, follower, apprentice, young person, teacher's student-helper" - }, - { - "example": "弟子入り", - "reading": "デシイリ", - "meaning": "becoming a pupil (of), becoming an apprentice" - } - ], - "kunyomiExamples": [ - { - "example": "弟", - "reading": "おとうと", - "meaning": "younger brother, little brother, kid brother, brother-in-law (spouse's younger brother or younger sister's husband), pupil, apprentice" - }, - { - "example": "弟君", - "reading": "おとうとぎみ", - "meaning": "younger brother" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "ノ", - "并", - "弓", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24351_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f1f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f1f.gif", - "uri": "http://jisho.org/search/%E5%BC%9F%23kanji" - }, - { - "query": "店", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "378", - "strokeCount": 8, - "meaning": "store, shop", - "kunyomi": [ - "みせ", - "たな" - ], - "onyomi": [ - "テン" - ], - "onyomiExamples": [ - { - "example": "店", - "reading": "テン", - "meaning": "-store, -shop" - }, - { - "example": "店員", - "reading": "テンイン", - "meaning": "employee (of a store), shop assistant, clerk, salesperson" - }, - { - "example": "酒店", - "reading": "サカダナ", - "meaning": "alcohol-selling shop" - }, - { - "example": "同店", - "reading": "ドウテン", - "meaning": "the same store, the same shop" - } - ], - "kunyomiExamples": [ - { - "example": "店", - "reading": "みせ", - "meaning": "store, shop, establishment, restaurant" - }, - { - "example": "店先", - "reading": "みせさき", - "meaning": "storefront, shopfront" - }, - { - "example": "酒店", - "reading": "さかだな", - "meaning": "alcohol-selling shop" - }, - { - "example": "お店", - "reading": "おみせ", - "meaning": "store, shop" - }, - { - "example": "店", - "reading": "たな", - "meaning": "merchant's home, rented home, store, shop" - }, - { - "example": "店子", - "reading": "たなこ", - "meaning": "tenant (esp. in contrast to a landlord), renter" - }, - { - "example": "お店", - "reading": "おたな", - "meaning": "merchant's home (esp. used by apprentices, etc.), (your) rental home" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "卜", - "口", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24215_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e97.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e97.gif", - "uri": "http://jisho.org/search/%E5%BA%97%23kanji" - }, - { - "query": "点", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "165", - "strokeCount": 9, - "meaning": "spot, point, mark, speck, decimal point", - "kunyomi": [ - "つ.ける", - "つ.く", - "た.てる", - "さ.す", - "とぼ.す", - "とも.す", - "ぼち" - ], - "onyomi": [ - "テン" - ], - "onyomiExamples": [ - { - "example": "点", - "reading": "テン", - "meaning": "dot, spot, point, speck, mark, mark (in an exam, etc.), grade, score, points, point (in a game), score, goal, run, point (in geometry), point, aspect, matter, detail, part, respect, way, viewpoint, (punctuation) mark (e.g. comma, period, decimal point), dot, \"dot\" stroke (in a Chinese character), counter for points, marks, goals, etc., counter for goods, items, articles of clothing, works of art, etc." - }, - { - "example": "点検", - "reading": "テンケン", - "meaning": "inspection, examination, checking" - }, - { - "example": "最重点", - "reading": "サイジュウテン", - "meaning": "very important point" - }, - { - "example": "同点", - "reading": "ドウテン", - "meaning": "same score, deadlock, tie, draw" - } - ], - "kunyomiExamples": [ - { - "example": "点ける", - "reading": "つける", - "meaning": "to turn on, to switch on, to light up" - }, - { - "example": "点く", - "reading": "つく", - "meaning": "to be lit (e.g. electricity comes on), to be lighted, to catch fire" - }, - { - "example": "点てる", - "reading": "たてる", - "meaning": "to make tea (matcha), to perform the tea ceremony" - }, - { - "example": "注す", - "reading": "さす", - "meaning": "to pour, to add (liquid), to serve (drinks), to put on (lipstick, etc.), to apply, to colour, to dye, to light (a fire), to burn" - }, - { - "example": "灯す", - "reading": "ともす", - "meaning": "to light (a candle, lamp, etc.), to turn on (a light)" - }, - { - "example": "灯す", - "reading": "ともす", - "meaning": "to light (a candle, lamp, etc.), to turn on (a light)" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "卜", - "口", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28857_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/070b9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/70b9.gif", - "uri": "http://jisho.org/search/%E7%82%B9%23kanji" - }, - { - "query": "電", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "268", - "strokeCount": 13, - "meaning": "electricity", - "kunyomi": [], - "onyomi": [ - "デン" - ], - "onyomiExamples": [ - { - "example": "電化", - "reading": "デンカ", - "meaning": "electrification" - }, - { - "example": "電圧", - "reading": "デンアツ", - "meaning": "voltage" - }, - { - "example": "送電", - "reading": "ソウデン", - "meaning": "transmission of electricity, electricity supply, power supply" - }, - { - "example": "配電", - "reading": "ハイデン", - "meaning": "distribution of electricity" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "乙", - "田", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38651_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096fb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96fb.gif", - "uri": "http://jisho.org/search/%E9%9B%BB%23kanji" - }, - { - "query": "刀", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1794", - "strokeCount": 2, - "meaning": "sword, saber, knife", - "kunyomi": [ - "かたな", - "そり" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "刀", - "reading": "カタナ", - "meaning": "sword (esp. Japanese single-edged), katana, scalpel, chisel, burin, graver, knife money (knife-shaped commodity money used in ancient China)" - }, - { - "example": "刀剣", - "reading": "トウケン", - "meaning": "sword, dagger, knife, bayonet" - }, - { - "example": "小刀", - "reading": "コガタナ", - "meaning": "(small) knife, short sword, small sword" - }, - { - "example": "太刀", - "reading": "タチ", - "meaning": "long sword (esp. the tachi, worn on the hip edge down by samurai), large sword, straight single-edged Japanese sword (from the mid-Heian period or earlier), guandao, Chinese glaive" - } - ], - "kunyomiExamples": [ - { - "example": "刀", - "reading": "かたな", - "meaning": "sword (esp. Japanese single-edged), katana, scalpel, chisel, burin, graver, knife money (knife-shaped commodity money used in ancient China)" - }, - { - "example": "刀折れ矢尽きて", - "reading": "かたなおれやつきて", - "meaning": "having exhausted every available means, having broken one's sword and exhausted one's arrows" - }, - { - "example": "一刀", - "reading": "いっとう", - "meaning": "sword, blade, single stroke" - }, - { - "example": "返す刀", - "reading": "かえすかたな", - "meaning": "attacking one opponent then immediately attacking another" - }, - { - "example": "剃刀", - "reading": "かみそり", - "meaning": "razor" - }, - { - "example": "オッカムの剃刀", - "reading": "オッカムのかみそり", - "meaning": "Occam's razor, Ockham's razor" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20992_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05200.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5200.gif", - "uri": "http://jisho.org/search/%E5%88%80%23kanji" - }, - { - "query": "冬", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1090", - "strokeCount": 5, - "meaning": "winter", - "kunyomi": [ - "ふゆ" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "冬季", - "reading": "トウキ", - "meaning": "(season of) winter" - }, - { - "example": "冬期", - "reading": "トウキ", - "meaning": "winter, wintertime, winter term" - }, - { - "example": "越冬", - "reading": "エットウ", - "meaning": "passing the winter, hibernation" - }, - { - "example": "春夏秋冬", - "reading": "シュンカシュウトウ", - "meaning": "spring, summer, autumn (fall) and winter, the four seasons" - } - ], - "kunyomiExamples": [ - { - "example": "冬", - "reading": "ふゆ", - "meaning": "winter" - }, - { - "example": "冬場", - "reading": "ふゆば", - "meaning": "the winter season" - }, - { - "example": "初冬", - "reading": "しょとう", - "meaning": "early winter, tenth month of the lunar calendar" - }, - { - "example": "毎冬", - "reading": "まいふゆ", - "meaning": "every winter" - } - ], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "丶", - "夂", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20908_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51ac.gif", - "uri": "http://jisho.org/search/%E5%86%AC%23kanji" - }, - { - "query": "当", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "91", - "strokeCount": 6, - "meaning": "hit, right, appropriate, himself", - "kunyomi": [ - "あ.たる", - "あ.たり", - "あ.てる", - "あ.て", - "まさ.に", - "まさ.にべし" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "当", - "reading": "トウ", - "meaning": "this, our, the ... in question, the said ..., right, justice, fairness" - }, - { - "example": "当確", - "reading": "トウカク", - "meaning": "projected to win, sure to be elected, home free" - }, - { - "example": "順当", - "reading": "ジュントウ", - "meaning": "proper, right, reasonable" - }, - { - "example": "過当", - "reading": "カトウ", - "meaning": "excessive, exorbitant" - } - ], - "kunyomiExamples": [ - { - "example": "当たる", - "reading": "あたる", - "meaning": "to be hit, to strike, to touch, to be in contact, to be affixed, to be equivalent to, to be applicable, to apply to, to be right on the money (of a prediction, criticism, etc.), to be selected (in a lottery, etc.), to win, to be successful, to go well, to be a hit, to face, to confront, to lie (in the direction of), to undertake, to be assigned, to be stricken (by food poisoning, heat, etc.), to be afflicted, to be called on (e.g. by a teacher), to treat (esp. harshly), to lash out at, to be unnecessary, to be hitting well, to be on a hitting streak, to feel a bite (in fishing), (of fruit, etc.) to be bruised, to spoil, to feel (something) out, to probe into, to check (i.e. by comparison), to shave, to be a relative of a person, to be a ... in relation to ..., to stand in a relationship" - }, - { - "example": "当たるも八卦当たらぬも八卦", - "reading": "あたるもはっけあたらぬもはっけ", - "meaning": "a prediction may or may not come true, only god knows what will happen" - }, - { - "example": "当たり", - "reading": "あたり", - "meaning": "hit, success, guess, prediction, affability, friendliness, sensation, touch, bruise (on fruit), situation in which a stone or chain of stones may be captured on the next move (in the game of go), bite (of a fish on a hook), strike, per, each" - }, - { - "example": "当たり前", - "reading": "あたりまえ", - "meaning": "natural, reasonable, obvious, usual, common, ordinary, commonplace, the norm" - }, - { - "example": "当てる", - "reading": "あてる", - "meaning": "to hit, to expose, to apply (e.g. patch), to put on, to put against, to hold on, to hold against, to allot, to call on someone (e.g. in class), to guess (an answer), to make a hit (e.g. in a lottery)" - }, - { - "example": "当て", - "reading": "あて", - "meaning": "aim, object, purpose, end, expectations, prospects, hopes, something that can be relied upon, snack served with alcoholic drink, pad, guard, blow, strike, addressed to, per" - }, - { - "example": "当てる", - "reading": "あてる", - "meaning": "to hit, to expose, to apply (e.g. patch), to put on, to put against, to hold on, to hold against, to allot, to call on someone (e.g. in class), to guess (an answer), to make a hit (e.g. in a lottery)" - }, - { - "example": "引き当て", - "reading": "ひきあて", - "meaning": "mortgage, security" - }, - { - "example": "額当て", - "reading": "ひたいあて", - "meaning": "(military) headband with reinforced metal plate, red headband" - }, - { - "example": "正に", - "reading": "まさに", - "meaning": "exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally" - } - ], - "radical": { - "symbol": "彐", - "forms": [ - "彑" - ], - "meaning": "pig snout" - }, - "parts": [ - "ヨ", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24403_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f53.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f53.gif", - "uri": "http://jisho.org/search/%E5%BD%93%23kanji" - }, - { - "query": "東", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "37", - "strokeCount": 8, - "meaning": "east", - "kunyomi": [ - "ひがし" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "東海道線", - "reading": "トウカイドウセン", - "meaning": "Tokaido Line" - }, - { - "example": "東欧", - "reading": "トウオウ", - "meaning": "Eastern Europe" - }, - { - "example": "北北東", - "reading": "ホクホクトウ", - "meaning": "north-northeast, north-north-east" - }, - { - "example": "東北東", - "reading": "トウホクトウ", - "meaning": "east-northeast, ENE" - } - ], - "kunyomiExamples": [ - { - "example": "東", - "reading": "ひがし", - "meaning": "east" - }, - { - "example": "東方", - "reading": "とうほう", - "meaning": "eastern direction, the Orient, eastern fighter in a match (e.g. sumo wrestling)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "日", - "木", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26481_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06771.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6771.gif", - "uri": "http://jisho.org/search/%E6%9D%B1%23kanji" - }, - { - "query": "答", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "486", - "strokeCount": 12, - "meaning": "solution, answer", - "kunyomi": [ - "こた.える", - "こた.え" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "答申", - "reading": "トウシン", - "meaning": "report, reply, findings" - }, - { - "example": "答案", - "reading": "トウアン", - "meaning": "examination paper, examination script, answer sheet, answer (to an exam question)" - }, - { - "example": "贈答", - "reading": "ゾウトウ", - "meaning": "exchange of presents" - }, - { - "example": "正答", - "reading": "セイトウ", - "meaning": "correct answer" - } - ], - "kunyomiExamples": [ - { - "example": "答える", - "reading": "こたえる", - "meaning": "to answer, to reply" - }, - { - "example": "答え", - "reading": "こたえ", - "meaning": "answer, reply, response, solution" - }, - { - "example": "答える", - "reading": "こたえる", - "meaning": "to answer, to reply" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "一", - "个", - "乞", - "口", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31572_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b54.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b54.gif", - "uri": "http://jisho.org/search/%E7%AD%94%23kanji" - }, - { - "query": "頭", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "433", - "strokeCount": 16, - "meaning": "head, counter for large animals", - "kunyomi": [ - "あたま", - "かしら", - "-がしら", - "かぶり" - ], - "onyomi": [ - "トウ", - "ズ", - "ト" - ], - "onyomiExamples": [ - { - "example": "頭", - "reading": "トウ", - "meaning": "counter for large animals (e.g. head of cattle), counter for insects in a collection, counter for helmets, masks, etc." - }, - { - "example": "頭角", - "reading": "トウカク", - "meaning": "top of the head" - }, - { - "example": "教頭", - "reading": "キョウトウ", - "meaning": "deputy head teacher, vice principal" - }, - { - "example": "会頭", - "reading": "カイトウ", - "meaning": "society president" - }, - { - "example": "頭", - "reading": "ズ", - "meaning": "head" - }, - { - "example": "頭", - "reading": "コウベ", - "meaning": "head" - }, - { - "example": "竜頭", - "reading": "リュウズ", - "meaning": "crown (of a watch), stem, cannon (of a bell)" - }, - { - "example": "飛竜頭", - "reading": "ヒリョウズ", - "meaning": "filhos (traditional Portuguese dessert), deep-fried tofu mixed with thinly sliced vegetables" - }, - { - "example": "頭", - "reading": "トウ", - "meaning": "counter for large animals (e.g. head of cattle), counter for insects in a collection, counter for helmets, masks, etc." - }, - { - "example": "頭角", - "reading": "トウカク", - "meaning": "top of the head" - }, - { - "example": "鳥兜", - "reading": "トリカブト", - "meaning": "aconite (esp. species Aconitum japonicum), wolfsbane, monkshood, traditional bugaku hat" - } - ], - "kunyomiExamples": [ - { - "example": "頭", - "reading": "あたま", - "meaning": "head, hair (on one's head), mind, brains, intellect, leader, chief, boss, captain, top, tip, beginning, start, head, person, down payment, deposit, top structural component of a kanji, pair" - }, - { - "example": "頭打ち", - "reading": "あたまうち", - "meaning": "reaching a peak, reaching the limit, plateauing, maxing out" - }, - { - "example": "石頭", - "reading": "いしあたま", - "meaning": "obstinate person, stubbornness, pigheadedness, hard head (like a rock)" - }, - { - "example": "ごま塩頭", - "reading": "ごましおあたま", - "meaning": "salt and pepper hair, dark hair streaked with gray" - }, - { - "example": "頭", - "reading": "あたま", - "meaning": "head, hair (on one's head), mind, brains, intellect, leader, chief, boss, captain, top, tip, beginning, start, head, person, down payment, deposit, top structural component of a kanji, pair" - }, - { - "example": "頭文字", - "reading": "かしらもじ", - "meaning": "first letter of a word, capital letter (at the start of a word or sentence), initials (of one's name)" - }, - { - "example": "鯛の尾より鰯の頭", - "reading": "たいのおよりいわしのかしら", - "meaning": "better be the head of a dog than the tail of a lion" - }, - { - "example": "め組の頭", - "reading": "めぐみのかしら", - "meaning": "fire brigade chief (in Edo), chief fireman" - }, - { - "example": "頭", - "reading": "こうべ", - "meaning": "head" - }, - { - "example": "頭を振る", - "reading": "かぶりをふる", - "meaning": "to shake one's head (in denial)" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "口", - "并", - "目", - "豆", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38957_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0982d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/982d.gif", - "uri": "http://jisho.org/search/%E9%A0%AD%23kanji" - }, - { - "query": "同", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "15", - "strokeCount": 6, - "meaning": "same, agree, equal", - "kunyomi": [ - "おな.じ" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "同", - "reading": "ドウ", - "meaning": "the same, the said, ibid." - }, - { - "example": "同意", - "reading": "ドウイ", - "meaning": "agreement, consent, approval, assent, same opinion, same view, same meaning" - }, - { - "example": "合同", - "reading": "ゴウドウ", - "meaning": "combination, union, incorporation, amalgamation, fusion, congruence" - }, - { - "example": "大同", - "reading": "ダイドウ", - "meaning": "largely the same, Daidō era (806.5.18-810.9.19)" - } - ], - "kunyomiExamples": [ - { - "example": "同じ", - "reading": "おなじ", - "meaning": "same, identical, equal, uniform, equivalent, similar, common (origin), changeless, alike, anyway, anyhow, in either case" - }, - { - "example": "同じく", - "reading": "おなじく", - "meaning": "similarly, same (idea), same (name)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "冂", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21516_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0540c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/540c.gif", - "uri": "http://jisho.org/search/%E5%90%8C%23kanji" - }, - { - "query": "道", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "207", - "strokeCount": 12, - "meaning": "road-way, street, district, journey, course, moral, teachings", - "kunyomi": [ - "みち", - "いう" - ], - "onyomi": [ - "ドウ", - "トウ" - ], - "onyomiExamples": [ - { - "example": "道", - "reading": "ドウ", - "meaning": "road, path, street, route, way, set of practices, rules for conducting oneself, Buddhist teachings, Taoism, modern administrative region of Japan (Hokkaido), historical administrative region of Japan (Tokaido, Tosando, etc.), province (Tang-era administrative region of China), province (modern administrative region of Korea)" - }, - { - "example": "道義", - "reading": "ドウギ", - "meaning": "morality, moral principles" - }, - { - "example": "正道", - "reading": "セイドウ", - "meaning": "path of righteousness, path of duty, right track, correct path" - }, - { - "example": "海道", - "reading": "カイドウ", - "meaning": "sea route" - }, - { - "example": "有道", - "reading": "ユウドウ", - "meaning": "being good, being virtuous, virtuous person" - }, - { - "example": "不道", - "reading": "フドウ", - "meaning": "inhuman, immoral, unreasonable, outrageous, wicked, barbarity (one of the eight unpardonable crimes, incl. killing three people in one family, or dismembering a corpse)" - } - ], - "kunyomiExamples": [ - { - "example": "道", - "reading": "みち", - "meaning": "road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method" - }, - { - "example": "道筋", - "reading": "みちすじ", - "meaning": "path, route, itinerary" - }, - { - "example": "花道", - "reading": "はなみち", - "meaning": "elevated walkway through the audience to the stage (kabuki), honourable end to a career" - }, - { - "example": "横道", - "reading": "よこみち", - "meaning": "byway, side street, cross street, wrong way, digression" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "并", - "自", - "込", - "首" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36947_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09053.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9053.gif", - "uri": "http://jisho.org/search/%E9%81%93%23kanji" - }, - { - "query": "読", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "618", - "strokeCount": 14, - "meaning": "read", - "kunyomi": [ - "よ.む", - "-よ.み" - ], - "onyomi": [ - "ドク", - "トク", - "トウ" - ], - "onyomiExamples": [ - { - "example": "読書", - "reading": "ドクショ", - "meaning": "reading (books)" - }, - { - "example": "読者", - "reading": "ドクシャ", - "meaning": "reader" - }, - { - "example": "積ん読", - "reading": "ツンドク", - "meaning": "buying books and not reading them, stockpiling books, tsundoku, books bought but not read" - }, - { - "example": "必読", - "reading": "ヒツドク", - "meaning": "must-read, required reading" - }, - { - "example": "読書", - "reading": "ドクショ", - "meaning": "reading (books)" - }, - { - "example": "読本", - "reading": "トクホン", - "meaning": "reading-book, reader, guidebook, manual, textbook (esp. a pre-war elementary school Japanese language textbook)" - }, - { - "example": "読点", - "reading": "トウテン", - "meaning": "comma" - }, - { - "example": "句読", - "reading": "クトウ", - "meaning": "breaks and pauses (in a sentence), punctuation, way of reading (esp. kanbun)" - } - ], - "kunyomiExamples": [ - { - "example": "読む", - "reading": "よむ", - "meaning": "to read, to count, to guess, to predict, to read (someone's thoughts), to see (e.g. into someone's heart), to divine" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "儿", - "冖", - "士", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35501_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08aad.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8aad.gif", - "uri": "http://jisho.org/search/%E8%AA%AD%23kanji" - }, - { - "query": "内", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "44", - "strokeCount": 4, - "meaning": "inside, within, between, among, house, home", - "kunyomi": [ - "うち" - ], - "onyomi": [ - "ナイ", - "ダイ" - ], - "onyomiExamples": [ - { - "example": "内", - "reading": "ナイ", - "meaning": "inside, within" - }, - { - "example": "内科", - "reading": "ナイカ", - "meaning": "internal medicine, i.e. treatment by medical procedures rather than surgical procedures, department of internal medicine (hospital, etc.)" - }, - { - "example": "島内", - "reading": "トウナイ", - "meaning": "on an island, on-island" - }, - { - "example": "校内", - "reading": "コウナイ", - "meaning": "within a school" - }, - { - "example": "内裏", - "reading": "ダイリ", - "meaning": "imperial palace, festival dolls representing the emperor and the empress" - }, - { - "example": "内府", - "reading": "ナイフ", - "meaning": "Minister of the Interior (669-1868 CE), Lord Keeper of the Privy Seal (1885-1945 CE)" - }, - { - "example": "境内", - "reading": "ケイダイ", - "meaning": "grounds (esp. of shrines and temples), compound, churchyard, precincts" - }, - { - "example": "海内", - "reading": "カイダイ", - "meaning": "the whole country" - } - ], - "kunyomiExamples": [ - { - "example": "内", - "reading": "うち", - "meaning": "inside, within, while (e.g. one is young), during, within (e.g. a day), in the course of, among, amongst, (out) of, between, in (secret, chaos, poverty, etc.), amidst, with (e.g. success), within oneself, one's feelings, inner thoughts, we, our company, our organization, one's home, one's family, my spouse, my husband, my wife, signed on behalf of (husband's name) by his wife, I, me, imperial palace grounds, emperor" - }, - { - "example": "内々", - "reading": "うちうち", - "meaning": "private, confidential, informal, secret, (within the) family circle, (on the) inside" - }, - { - "example": "幕内", - "reading": "まくうち", - "meaning": "highest-ranking division" - }, - { - "example": "幕の内", - "reading": "まくのうち", - "meaning": "box lunch (containing rice and 10-15 small portions of fish, meat, and vegetables), highest-ranking division, intermission (between acts), interlude" - } - ], - "radical": { - "symbol": "冂", - "meaning": "open country" - }, - "parts": [ - "人", - "冂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20869_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05185.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5185.gif", - "uri": "http://jisho.org/search/%E5%86%85%23kanji" - }, - { - "query": "南", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "341", - "strokeCount": 9, - "meaning": "south", - "kunyomi": [ - "みなみ" - ], - "onyomi": [ - "ナン", - "ナ" - ], - "onyomiExamples": [ - { - "example": "南", - "reading": "ナン", - "meaning": "south wind tile, winning hand with a pung (or kong) of south wind tiles" - }, - { - "example": "南海", - "reading": "ナンカイ", - "meaning": "southern sea" - }, - { - "example": "東南", - "reading": "トウナン", - "meaning": "south-east" - }, - { - "example": "西南", - "reading": "セイナン", - "meaning": "south-west" - }, - { - "example": "南", - "reading": "ナン", - "meaning": "south wind tile, winning hand with a pung (or kong) of south wind tiles" - }, - { - "example": "南海", - "reading": "ナンカイ", - "meaning": "southern sea" - } - ], - "kunyomiExamples": [ - { - "example": "南", - "reading": "みなみ", - "meaning": "south" - }, - { - "example": "南アフリカ", - "reading": "みなみアフリカ", - "meaning": "South Africa" - }, - { - "example": "東南", - "reading": "とうなん", - "meaning": "south-east" - }, - { - "example": "西南", - "reading": "せいなん", - "meaning": "south-west" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "冂", - "十", - "干", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21335_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05357.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5357.gif", - "uri": "http://jisho.org/search/%E5%8D%97%23kanji" - }, - { - "query": "肉", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "986", - "strokeCount": 6, - "meaning": "meat", - "kunyomi": [ - "しし" - ], - "onyomi": [ - "ニク" - ], - "onyomiExamples": [ - { - "example": "肉", - "reading": "ニク", - "meaning": "flesh, meat, the physical body (as opposed to the spirit), thickness, ink pad" - }, - { - "example": "肉親", - "reading": "ニクシン", - "meaning": "blood relationship, blood relative" - }, - { - "example": "食肉", - "reading": "ショクニク", - "meaning": "meat (for consumption)" - }, - { - "example": "中肉", - "reading": "チュウニク", - "meaning": "medium build, meat of medium quality" - } - ], - "kunyomiExamples": [ - { - "example": "肉", - "reading": "にく", - "meaning": "flesh, meat, the physical body (as opposed to the spirit), thickness, ink pad" - }, - { - "example": "肉合い", - "reading": "ししあい", - "meaning": "fleshiness, plumpness" - }, - { - "example": "鹿", - "reading": "かのしし", - "meaning": "deer meat, deer" - }, - { - "example": "脯", - "reading": "ほしし", - "meaning": "dried meat, jerky" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "人", - "冂", - "肉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32905_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08089.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8089.gif", - "uri": "http://jisho.org/search/%E8%82%89%23kanji" - }, - { - "query": "馬", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "639", - "strokeCount": 10, - "meaning": "horse", - "kunyomi": [ - "うま", - "うま-", - "ま" - ], - "onyomi": [ - "バ" - ], - "onyomiExamples": [ - { - "example": "馬車", - "reading": "バシャ", - "meaning": "coach (horse-drawn), carriage, wagon, cart" - }, - { - "example": "馬券", - "reading": "バケン", - "meaning": "(horse racing) betting ticket" - }, - { - "example": "白馬", - "reading": "ハクバ", - "meaning": "white horse, unrefined sake" - }, - { - "example": "騎馬", - "reading": "キバ", - "meaning": "horse riding, horseback riding, horseback rider" - } - ], - "kunyomiExamples": [ - { - "example": "馬", - "reading": "うま", - "meaning": "horse, horse racing, promoted bishop" - }, - { - "example": "馬車", - "reading": "ばしゃ", - "meaning": "coach (horse-drawn), carriage, wagon, cart" - }, - { - "example": "白馬", - "reading": "はくば", - "meaning": "white horse, unrefined sake" - }, - { - "example": "竹馬", - "reading": "たけうま", - "meaning": "stilts (for walking), hobby horse" - }, - { - "example": "馬克", - "reading": "マルク", - "meaning": "mark (currency)" - }, - { - "example": "馬尼剌", - "reading": "マニラ", - "meaning": "Manila (Philippines)" - }, - { - "example": "白馬", - "reading": "はくば", - "meaning": "white horse, unrefined sake" - }, - { - "example": "竹馬", - "reading": "たけうま", - "meaning": "stilts (for walking), hobby horse" - } - ], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39340_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/099ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/99ac.gif", - "uri": "http://jisho.org/search/%E9%A6%AC%23kanji" - }, - { - "query": "売", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "202", - "strokeCount": 7, - "meaning": "sell", - "kunyomi": [ - "う.る", - "う.れる" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "売春", - "reading": "バイシュン", - "meaning": "prostitution" - }, - { - "example": "売却", - "reading": "バイキャク", - "meaning": "selling off, disposal by sale, sale" - }, - { - "example": "乱売", - "reading": "ランバイ", - "meaning": "underselling, panic selling" - }, - { - "example": "転売", - "reading": "テンバイ", - "meaning": "resale" - } - ], - "kunyomiExamples": [ - { - "example": "売る", - "reading": "うる", - "meaning": "to sell" - }, - { - "example": "売れる", - "reading": "うれる", - "meaning": "to sell (well), to be well known, to be popular, to be famous" - } - ], - "radical": { - "symbol": "士", - "meaning": "scholar, bachelor" - }, - "parts": [ - "儿", - "冖", - "士" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22770_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58f2.gif", - "uri": "http://jisho.org/search/%E5%A3%B2%23kanji" - }, - { - "query": "買", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "520", - "strokeCount": 12, - "meaning": "buy", - "kunyomi": [ - "か.う" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "買収", - "reading": "バイシュウ", - "meaning": "acquisition (esp. corporate), buy-out, takeover, purchase, bribery, buying off, corruption" - }, - { - "example": "買収計画", - "reading": "バイシュウケイカク", - "meaning": "purchasing plan, acquisition plan" - }, - { - "example": "不買", - "reading": "フバイ", - "meaning": "not buying" - }, - { - "example": "人身売買", - "reading": "ジンシンバイバイ", - "meaning": "slave trade, white-slave trade, human trafficking" - } - ], - "kunyomiExamples": [ - { - "example": "買う", - "reading": "かう", - "meaning": "to buy, to purchase, to value, to have a high opinion, to stir, to provoke, to draw upon oneself" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "目", - "貝", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36023_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cb7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cb7.gif", - "uri": "http://jisho.org/search/%E8%B2%B7%23kanji" - }, - { - "query": "麦", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1615", - "strokeCount": 7, - "meaning": "barley, wheat", - "kunyomi": [ - "むぎ" - ], - "onyomi": [ - "バク" - ], - "onyomiExamples": [ - { - "example": "麦芽", - "reading": "バクガ", - "meaning": "malt" - }, - { - "example": "麦価", - "reading": "バクカ", - "meaning": "price of wheat" - }, - { - "example": "精麦", - "reading": "セイバク", - "meaning": "polished barley or wheat" - }, - { - "example": "米麦", - "reading": "ベイバク", - "meaning": "rice and barley, corn" - } - ], - "kunyomiExamples": [ - { - "example": "麦", - "reading": "むぎ", - "meaning": "wheat, barley, oat (oats)" - }, - { - "example": "麦茶", - "reading": "むぎちゃ", - "meaning": "barley tea" - }, - { - "example": "はだか麦", - "reading": "はだかむぎ", - "meaning": "naked barley (Hordeum vulgare var. nudum)" - }, - { - "example": "毒麦", - "reading": "どくむぎ", - "meaning": "darnel (Lolium temulentum)" - } - ], - "radical": { - "symbol": "麥", - "meaning": "wheat" - }, - "parts": [ - "二", - "亠", - "土", - "夂", - "麦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40614_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ea6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ea6.gif", - "uri": "http://jisho.org/search/%E9%BA%A6%23kanji" - }, - { - "query": "半", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "224", - "strokeCount": 5, - "meaning": "half, middle, odd number, semi-, part-", - "kunyomi": [ - "なか.ば" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "半", - "reading": "ハン", - "meaning": "half, semi-, half-past, odd number, unit of land area (595.8 m^2)" - }, - { - "example": "半額", - "reading": "ハンガク", - "meaning": "half the amount (of money), half price, half fare" - }, - { - "example": "四畳半", - "reading": "ヨジョウハン", - "meaning": "four and a half tatami mats, four-and-a-half-mat room, small room esp. for assignations" - }, - { - "example": "過半", - "reading": "カハン", - "meaning": "the greater part" - } - ], - "kunyomiExamples": [ - { - "example": "半ば", - "reading": "なかば", - "meaning": "middle, halfway, midway, half (of), one half, half (e.g. done, jokingly), party, in part, partially, mostly, almost, nearly" - }, - { - "example": "半ば過ぎ", - "reading": "なかばすぎ", - "meaning": "beyond the middle" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "二", - "十", - "并", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21322_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0534a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/534a.gif", - "uri": "http://jisho.org/search/%E5%8D%8A%23kanji" - }, - { - "query": "番", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "348", - "strokeCount": 12, - "meaning": "turn, number in a series", - "kunyomi": [ - "つが.い" - ], - "onyomi": [ - "バン" - ], - "onyomiExamples": [ - { - "example": "番", - "reading": "バン", - "meaning": "number (in a series), (one's) turn, watch, guard, lookout, rank, standing, position, bout, match, pieces (in a collection)" - }, - { - "example": "番組", - "reading": "バングミ", - "meaning": "program (e.g. TV), programme" - }, - { - "example": "出番", - "reading": "デバン", - "meaning": "one's turn, one's shift, one's turn on stage, screen time, screentime" - }, - { - "example": "春一番", - "reading": "ハルイチバン", - "meaning": "first storm of spring, strong winds during the change from winter to spring" - } - ], - "kunyomiExamples": [ - { - "example": "番い", - "reading": "つがい", - "meaning": "pair (esp. of mated animals), brace, couple, (anatomical) joint" - }, - { - "example": "つがい目", - "reading": "つがいめ", - "meaning": "joint, hinge" - }, - { - "example": "手番", - "reading": "てつがい", - "meaning": "plan, arrangements" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "田", - "米", - "釆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30058_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0756a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/756a.gif", - "uri": "http://jisho.org/search/%E7%95%AA%23kanji" - }, - { - "query": "父", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "646", - "strokeCount": 4, - "meaning": "father", - "kunyomi": [ - "ちち" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "父母", - "reading": "フボ", - "meaning": "father and mother, parents" - }, - { - "example": "父子", - "reading": "フシ", - "meaning": "father and child, father and son, father and daughter" - }, - { - "example": "義父", - "reading": "ギフ", - "meaning": "father-in-law, foster father, stepfather" - }, - { - "example": "養父", - "reading": "ヨウフ", - "meaning": "foster father, adoptive father" - } - ], - "kunyomiExamples": [ - { - "example": "父", - "reading": "ちち", - "meaning": "father" - }, - { - "example": "父親", - "reading": "ちちおや", - "meaning": "father" - }, - { - "example": "亡き父", - "reading": "なきちち", - "meaning": "(one's) late father" - }, - { - "example": "建国の父", - "reading": "けんこくのちち", - "meaning": "founding father" - } - ], - "radical": { - "symbol": "父", - "meaning": "father" - }, - "parts": [ - "父" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29238_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07236.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7236.gif", - "uri": "http://jisho.org/search/%E7%88%B6%23kanji" - }, - { - "query": "風", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "558", - "strokeCount": 9, - "meaning": "wind, air, style, manner", - "kunyomi": [ - "かぜ", - "かざ-" - ], - "onyomi": [ - "フウ", - "フ" - ], - "onyomiExamples": [ - { - "example": "風", - "reading": "フウ", - "meaning": "method, manner, way, style, appearance, air, tendency, folk song (genre of the Shi Jing), wind (one of the five elements)" - }, - { - "example": "風格", - "reading": "フウカク", - "meaning": "personality, style, appearance" - }, - { - "example": "逆風", - "reading": "ギャクフウ", - "meaning": "headwind, adverse wind" - }, - { - "example": "作風", - "reading": "サクフウ", - "meaning": "style (of a work, author, artist, etc.), characteristics" - }, - { - "example": "風", - "reading": "フウ", - "meaning": "method, manner, way, style, appearance, air, tendency, folk song (genre of the Shi Jing), wind (one of the five elements)" - }, - { - "example": "振り", - "reading": "フリ", - "meaning": "swing, shake, wave, swinging, appearance, behaviour, pretence (pretense), show, pretending (to), going to restaurant, hotel etc. without a reservation or introduction, move (dance), postures, lead in (e.g. to a running joke, asking a question), lead up, unsewn part of a hanging sleeve on a traditional Japanese woman's garment, counter for swords, blades, etc., not wearing underwear or pants" - }, - { - "example": "中風", - "reading": "チュウフウ", - "meaning": "palsy, paralysis" - }, - { - "example": "破風", - "reading": "ハフ", - "meaning": "gable" - } - ], - "kunyomiExamples": [ - { - "example": "風", - "reading": "かぜ", - "meaning": "wind, breeze, draught, draft, manner, behaviour, behavior, cold, influenza" - }, - { - "example": "風邪", - "reading": "かぜ", - "meaning": "(common) cold, influenza, flu, ague, inflammatory respiratory system illness (in general)" - }, - { - "example": "涼風", - "reading": "りょうふう", - "meaning": "cool breeze, refreshing breeze" - }, - { - "example": "西風", - "reading": "にしかぜ", - "meaning": "west wind" - } - ], - "radical": { - "symbol": "風", - "meaning": "wind" - }, - "parts": [ - "ノ", - "几", - "虫", - "風" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39080_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098a8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98a8.gif", - "uri": "http://jisho.org/search/%E9%A2%A8%23kanji" - }, - { - "query": "分", - "found": true, - "taughtIn": "grade 2", - "newspaperFrequencyRank": "24", - "strokeCount": 4, - "meaning": "part, minute of time, segment, share, degree, one's lot, duty, understand, know, rate, 1%, chances, shaku/100", - "kunyomi": [ - "わ.ける", - "わ.け", - "わ.かれる", - "わ.かる", - "わ.かつ" - ], - "onyomi": [ - "ブン", - "フン", - "ブ" - ], - "onyomiExamples": [ - { - "example": "分", - "reading": "ブン", - "meaning": "part, segment, share, ration, rate, degree, one's lot, one's status, relation, duty, kind, lot, relationship, connection, correspondence, in proportion to, just as much as" - }, - { - "example": "分化", - "reading": "ブンカ", - "meaning": "specialization, specialisation, differentiation" - }, - { - "example": "応分", - "reading": "オウブン", - "meaning": "according to one's abilities, appropriate, reasonable" - }, - { - "example": "細分", - "reading": "サイブン", - "meaning": "subdivision (into small parts)" - }, - { - "example": "分", - "reading": "フン", - "meaning": "minute (unit of time), fun (one tenth of a monme, 5.787 grains)" - }, - { - "example": "分別", - "reading": "フンベツ", - "meaning": "discretion, prudence, good sense, judgement, judgment, wisdom, discernment" - }, - { - "example": "毎分", - "reading": "マイフン", - "meaning": "every minute, per minute" - }, - { - "example": "壊変毎分", - "reading": "カイヘンマイフン", - "meaning": "disintegration per minute, dpm" - }, - { - "example": "分", - "reading": "ブ", - "meaning": "one-tenth, one percent (one-tenth of a wari), 3 mm (one-tenth of a sun), 2.4 mm (one-tenth of a mon, a traditional unit used to measure shoe sizes), 0.1 degree (one-tenth of a do, used to measure body temperature on any temperature scale), one-quarter of a ryō (obsolete unit of currency), thickness, advantageous circumstances, one-tenth of a monme of silver" - }, - { - "example": "分", - "reading": "ブン", - "meaning": "part, segment, share, ration, rate, degree, one's lot, one's status, relation, duty, kind, lot, relationship, connection, correspondence, in proportion to, just as much as" - }, - { - "example": "一分", - "reading": "イチブ", - "meaning": "one tenth, one hundredth, one percent, one tenth of a sun, one quarter ryō (an old coin)" - }, - { - "example": "節分", - "reading": "セツブン", - "meaning": "last day of winter in the traditional Japanese calendar (usually February 3 or 4), holiday for end of winter (accompanied by a bean scattering ceremony), last day of any season (according to the traditional Japanese calendar)" - } - ], - "kunyomiExamples": [ - { - "example": "分ける", - "reading": "わける", - "meaning": "to divide (into), to split (into), to part, to separate, to divide up, to classify, to sort out, to divide out, to share, to distribute, to deal out, to dish out, to distinguish, to discriminate, to differentiate (between), to break up (a fight), to mediate, to call a draw, to tie, to push one's way through (a crowd), to sell" - }, - { - "example": "分け", - "reading": "わけ", - "meaning": "sharing, division, draw, tie" - }, - { - "example": "分ける", - "reading": "わける", - "meaning": "to divide (into), to split (into), to part, to separate, to divide up, to classify, to sort out, to divide out, to share, to distribute, to deal out, to dish out, to distinguish, to discriminate, to differentiate (between), to break up (a fight), to mediate, to call a draw, to tie, to push one's way through (a crowd), to sell" - }, - { - "example": "申し訳", - "reading": "もうしわけ", - "meaning": "apology, excuse" - }, - { - "example": "追分", - "reading": "おいわけ", - "meaning": "forked road" - }, - { - "example": "分かれる", - "reading": "わかれる", - "meaning": "to branch, to fork, to diverge, to separate, to split, to divide, to disperse, to scatter" - }, - { - "example": "分かる", - "reading": "わかる", - "meaning": "to understand, to comprehend, to grasp, to see, to get, to follow, to become clear, to be known, to be discovered, to be realized, to be realised, to be found out, I know!, I think so too!" - }, - { - "example": "分かつ", - "reading": "わかつ", - "meaning": "to divide, to separate, to share, to distribute, to distinguish" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ハ", - "刀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20998_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05206.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5206.gif", - "uri": "http://jisho.org/search/%E5%88%86%23kanji" - }, - { - "query": "聞", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "319", - "strokeCount": 14, - "meaning": "hear, ask, listen", - "kunyomi": [ - "き.く", - "き.こえる" - ], - "onyomi": [ - "ブン", - "モン" - ], - "onyomiExamples": [ - { - "example": "聞見", - "reading": "ブンケン", - "meaning": "information, experience, knowledge, observation" - }, - { - "example": "聞香", - "reading": "ブンコウ", - "meaning": "smelling incense, savoring incense, distinguishing incense by smell, incense-smelling party" - }, - { - "example": "スポーツ新聞", - "reading": "スポーツシンブン", - "meaning": "sports newspaper" - }, - { - "example": "壁新聞", - "reading": "カベシンブン", - "meaning": "wall newspaper, wall poster" - }, - { - "example": "聞見", - "reading": "ブンケン", - "meaning": "information, experience, knowledge, observation" - }, - { - "example": "聞香", - "reading": "ブンコウ", - "meaning": "smelling incense, savoring incense, distinguishing incense by smell, incense-smelling party" - }, - { - "example": "奏聞", - "reading": "ソウモン", - "meaning": "reporting to the Emperor" - }, - { - "example": "声聞", - "reading": "ショウモン", - "meaning": "sravaka (disciple of Buddha), adherent of Hinayana Buddhism" - } - ], - "kunyomiExamples": [ - { - "example": "聞く", - "reading": "きく", - "meaning": "to hear, to listen (e.g. to music), to ask, to enquire, to query, to hear about, to hear of, to learn of, to follow (advice, order, etc.), to obey, to listen to, to comply with, to hear (e.g. a plea), to grant (a request), to accept (e.g. an argument), to give consideration to, to smell (esp. incense), to sample (a fragrance), to taste (alcohol), to try" - }, - { - "example": "聞くだけ野暮", - "reading": "きくだけやぼ", - "meaning": "asking would be rude, tasteless question" - }, - { - "example": "聞こえる", - "reading": "きこえる", - "meaning": "to be heard, to be audible, to be said to be, to be reputed" - } - ], - "radical": { - "symbol": "耳", - "meaning": "ear" - }, - "parts": [ - "耳", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32862_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0805e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/805e.gif", - "uri": "http://jisho.org/search/%E8%81%9E%23kanji" - }, - { - "query": "米", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "61", - "strokeCount": 6, - "meaning": "rice, USA, metre", - "kunyomi": [ - "こめ", - "よね" - ], - "onyomi": [ - "ベイ", - "マイ", - "メエトル" - ], - "onyomiExamples": [ - { - "example": "米", - "reading": "ベイ", - "meaning": "(United States of) America, USA" - }, - { - "example": "米価", - "reading": "ベイカ", - "meaning": "rice price" - }, - { - "example": "在米", - "reading": "ザイベイ", - "meaning": "being in the United States, staying in the United States, residing in the United States" - }, - { - "example": "対米", - "reading": "タイベイ", - "meaning": "relating to the USA, toward America, with America" - }, - { - "example": "精米", - "reading": "セイマイ", - "meaning": "rice polishing, polished rice" - }, - { - "example": "白米", - "reading": "ハクマイ", - "meaning": "polished rice, (uncooked) white rice" - } - ], - "kunyomiExamples": [ - { - "example": "米", - "reading": "こめ", - "meaning": "(husked grains of) rice, 88 years old" - }, - { - "example": "米倉", - "reading": "こめぐら", - "meaning": "rice granary" - }, - { - "example": "お米", - "reading": "おこめ", - "meaning": "(husked grains of) rice" - }, - { - "example": "アルボリオ米", - "reading": "アルボリオこめ", - "meaning": "arborio rice (Italian variety)" - }, - { - "example": "米", - "reading": "こめ", - "meaning": "(husked grains of) rice, 88 years old" - }, - { - "example": "米沢牛", - "reading": "よねざわぎゅう", - "meaning": "Yonezawa beef" - }, - { - "example": "白米", - "reading": "はくまい", - "meaning": "polished rice, (uncooked) white rice" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31859_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c73.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c73.gif", - "uri": "http://jisho.org/search/%E7%B1%B3%23kanji" - }, - { - "query": "歩", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "554", - "strokeCount": 8, - "meaning": "walk, counter for steps", - "kunyomi": [ - "ある.く", - "あゆ.む" - ], - "onyomi": [ - "ホ", - "ブ", - "フ" - ], - "onyomiExamples": [ - { - "example": "歩", - "reading": "ホ", - "meaning": "step, stride, counter for steps" - }, - { - "example": "歩行", - "reading": "ホコウ", - "meaning": "walk" - }, - { - "example": "遊歩", - "reading": "ユウホ", - "meaning": "walk, promenade" - }, - { - "example": "牛歩", - "reading": "ギュウホ", - "meaning": "snail's pace, slow progress" - }, - { - "example": "歩", - "reading": "ブ", - "meaning": "bu, traditional unit of area, approx. 3.31 square metres, commission, percentage, exactly, precisely" - }, - { - "example": "歩合", - "reading": "ブアイ", - "meaning": "rate, ratio, percentage, commission, poundage, percentage" - }, - { - "example": "町歩", - "reading": "チョウブ", - "meaning": "hectare (2.471 acres)" - }, - { - "example": "町段畝歩", - "reading": "チョウタンセブ", - "meaning": "units of square measure (for rice fields, forests, etc.)" - }, - { - "example": "歩", - "reading": "フ", - "meaning": "pawn" - }, - { - "example": "歩兵", - "reading": "フヒョウ", - "meaning": "pawn" - }, - { - "example": "敵歩", - "reading": "テキフ", - "meaning": "opponents pawn" - } - ], - "kunyomiExamples": [ - { - "example": "歩く", - "reading": "あるく", - "meaning": "to walk" - }, - { - "example": "歩む", - "reading": "あゆむ", - "meaning": "to walk, to go on foot, to tread (a figurative path), to follow, to lead (a life), to experience, to advance towards (e.g. a solution), to set out (e.g. on the path to destruction, ruin, etc.), to embark (on the road to ...)" - } - ], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "ノ", - "小", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27497_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b69.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b69.gif", - "uri": "http://jisho.org/search/%E6%AD%A9%23kanji" - }, - { - "query": "母", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "570", - "strokeCount": 5, - "meaning": "mother", - "kunyomi": [ - "はは", - "も" - ], - "onyomi": [ - "ボ" - ], - "onyomiExamples": [ - { - "example": "母国", - "reading": "ボコク", - "meaning": "one's home country, one's homeland" - }, - { - "example": "母校", - "reading": "ボコウ", - "meaning": "alma mater" - }, - { - "example": "養父母", - "reading": "ヨウフボ", - "meaning": "adoptive parents" - }, - { - "example": "空母", - "reading": "クウボ", - "meaning": "aircraft carrier" - } - ], - "kunyomiExamples": [ - { - "example": "母", - "reading": "はは", - "meaning": "mother" - }, - { - "example": "母親", - "reading": "ははおや", - "meaning": "mother" - }, - { - "example": "必要は発明の母", - "reading": "ひつようははつめいのはは", - "meaning": "necessity is the mother of invention" - }, - { - "example": "失敗は成功の母", - "reading": "しっぱいはせいこうのはは", - "meaning": "failure is the mother of success" - }, - { - "example": "母屋", - "reading": "もや", - "meaning": "purlin (structural beam in a roof), purline, main building (of a manor), central room (in traditional palatial-style architecture)" - }, - { - "example": "母屋桁", - "reading": "もやげた", - "meaning": "purlin (structural beam in a roof), purline" - }, - { - "example": "雲母", - "reading": "うんも", - "meaning": "mica, isinglass" - }, - { - "example": "乳母", - "reading": "うば", - "meaning": "wet nurse, nursing mother" - } - ], - "radical": { - "symbol": "毋", - "forms": [ - "母", - "⺟" - ], - "meaning": "mother, do not" - }, - "parts": [ - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27597_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bcd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bcd.gif", - "uri": "http://jisho.org/search/%E6%AF%8D%23kanji" - }, - { - "query": "方", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "46", - "strokeCount": 4, - "meaning": "direction, person, alternative", - "kunyomi": [ - "かた", - "-かた", - "-がた" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "方", - "reading": "ホウ", - "meaning": "direction, way, side, area (in a particular direction), side (of an argument, etc.), one's part, type, category, field (of study, etc.), indicates one side of a comparison, way, method, manner, means, length (of each side of a square)" - }, - { - "example": "方言", - "reading": "ホウゲン", - "meaning": "dialect, provincialism" - }, - { - "example": "途方", - "reading": "トホウ", - "meaning": "way, destination, reason" - }, - { - "example": "右方", - "reading": "ウホウ", - "meaning": "right side, style of Japanese court music" - } - ], - "kunyomiExamples": [ - { - "example": "方", - "reading": "かた", - "meaning": "direction, way, person, lady, gentleman, method of, manner of, way of, care of ..., person in charge of ..., side (e.g. \"on my mother's side\")" - }, - { - "example": "方々", - "reading": "かたがた", - "meaning": "people, (all) persons, everyone, ladies and gentlemen, you (usu. plural), various" - }, - { - "example": "親方", - "reading": "おやかた", - "meaning": "master, boss, chief, foreman, supervisor, stable master, craftsman, artisan, foster parent" - }, - { - "example": "出方", - "reading": "でかた", - "meaning": "attitude, approach, move, theater usher, theatre usher" - } - ], - "radical": { - "symbol": "方", - "meaning": "square" - }, - "parts": [ - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26041_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065b9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65b9.gif", - "uri": "http://jisho.org/search/%E6%96%B9%23kanji" - }, - { - "query": "北", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "153", - "strokeCount": 5, - "meaning": "north", - "kunyomi": [ - "きた" - ], - "onyomi": [ - "ホク" - ], - "onyomiExamples": [ - { - "example": "北緯", - "reading": "ホクイ", - "meaning": "north latitude" - }, - { - "example": "北欧", - "reading": "ホクオウ", - "meaning": "Northern Europe, Nordic countries, Scandinavia" - }, - { - "example": "極北", - "reading": "キョクホク", - "meaning": "extreme north, North Pole" - }, - { - "example": "西北", - "reading": "セイホク", - "meaning": "north-west" - } - ], - "kunyomiExamples": [ - { - "example": "北", - "reading": "きた", - "meaning": "north, the North, northern territories, North Korea, north wind" - }, - { - "example": "北アイルランド", - "reading": "きたアイルランド", - "meaning": "Northern Ireland" - }, - { - "example": "西北", - "reading": "せいほく", - "meaning": "north-west" - } - ], - "radical": { - "symbol": "匕", - "meaning": "spoon" - }, - "parts": [ - "匕", - "爿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21271_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05317.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5317.gif", - "uri": "http://jisho.org/search/%E5%8C%97%23kanji" - }, - { - "query": "毎", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "436", - "strokeCount": 6, - "meaning": "every", - "kunyomi": [ - "ごと", - "-ごと.に" - ], - "onyomi": [ - "マイ" - ], - "onyomiExamples": [ - { - "example": "毎", - "reading": "マイ", - "meaning": "every (usu. with events, e.g. every weekend), each" - }, - { - "example": "毎朝", - "reading": "マイアサ", - "meaning": "every morning" - }, - { - "example": "毎々", - "reading": "マイマイ", - "meaning": "each time, frequently, always" - } - ], - "kunyomiExamples": [ - { - "example": "毎", - "reading": "ごと", - "meaning": "each, every" - }, - { - "example": "毎に", - "reading": "ごとに", - "meaning": "one by one, each, every, at intervals of" - }, - { - "example": "月ごと", - "reading": "つきごと", - "meaning": "monthly" - }, - { - "example": "戸ごと", - "reading": "こごと", - "meaning": "from door to door" - } - ], - "radical": { - "symbol": "毋", - "forms": [ - "母", - "⺟" - ], - "meaning": "mother, do not" - }, - "parts": [ - "乞", - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27598_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bce.gif", - "uri": "http://jisho.org/search/%E6%AF%8E%23kanji" - }, - { - "query": "妹", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1446", - "strokeCount": 8, - "meaning": "younger sister", - "kunyomi": [ - "いもうと" - ], - "onyomi": [ - "マイ" - ], - "onyomiExamples": [ - { - "example": "妹君", - "reading": "イモウトギミ", - "meaning": "(younger) sister" - }, - { - "example": "義妹", - "reading": "ギマイ", - "meaning": "sister-in-law (spouse's younger sister or younger brother's wife), younger stepsister, younger adopted sister, non-blood-related younger sister" - }, - { - "example": "弟妹", - "reading": "テイマイ", - "meaning": "younger brother and sister" - } - ], - "kunyomiExamples": [ - { - "example": "妹", - "reading": "いもうと", - "meaning": "younger sister" - }, - { - "example": "妹君", - "reading": "いもうとぎみ", - "meaning": "(younger) sister" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ハ", - "二", - "亠", - "女", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22969_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059b9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59b9.gif", - "uri": "http://jisho.org/search/%E5%A6%B9%23kanji" - }, - { - "query": "万", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "375", - "strokeCount": 3, - "meaning": "ten thousand, 10,000", - "kunyomi": [ - "よろず" - ], - "onyomi": [ - "マン", - "バン" - ], - "onyomiExamples": [ - { - "example": "万", - "reading": "マン", - "meaning": "10,000, ten thousand, myriad, everything, all, various" - }, - { - "example": "万一", - "reading": "マンイチ", - "meaning": "emergency, unlikely event, by some chance, by some possibility" - }, - { - "example": "億万", - "reading": "オクマン", - "meaning": "millions and millions" - }, - { - "example": "永万", - "reading": "エイマン", - "meaning": "Eiman era (1165.6.5-1166.8.27)" - }, - { - "example": "万", - "reading": "バン", - "meaning": "completely, absolutely, totally" - }, - { - "example": "万一", - "reading": "マンイチ", - "meaning": "emergency, unlikely event, by some chance, by some possibility" - }, - { - "example": "千万", - "reading": "センバン", - "meaning": "exceedingly, extremely, very many, indeed" - }, - { - "example": "奇怪千万", - "reading": "キカイセンバン", - "meaning": "very strange (mysterious, weird), bizarre, monstrous, outrageous" - } - ], - "kunyomiExamples": [ - { - "example": "万", - "reading": "まん", - "meaning": "10,000, ten thousand, myriad, everything, all, various" - }, - { - "example": "万年", - "reading": "まんねん", - "meaning": "ten thousand years, eternity, perennial, perpetual" - }, - { - "example": "八百万", - "reading": "やおよろず", - "meaning": "myriad, countless things" - }, - { - "example": "500万", - "reading": "ごひゃくまん", - "meaning": "5,000,000, five million, many" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "ノ", - "一", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19975_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e07.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e07.gif", - "uri": "http://jisho.org/search/%E4%B8%87%23kanji" - }, - { - "query": "明", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "67", - "strokeCount": 8, - "meaning": "bright, light", - "kunyomi": [ - "あ.かり", - "あか.るい", - "あか.るむ", - "あか.らむ", - "あき.らか", - "あ.ける", - "-あ.け", - "あ.く", - "あ.くる", - "あ.かす" - ], - "onyomi": [ - "メイ", - "ミョウ", - "ミン" - ], - "onyomiExamples": [ - { - "example": "明", - "reading": "メイ", - "meaning": "brightness, discernment, insight, an eye (for), eyesight, vision, nth year in the Meiji era (1868.9.8-1912.7.30)" - }, - { - "example": "明暗", - "reading": "メイアン", - "meaning": "light and darkness, light and shade" - }, - { - "example": "光明", - "reading": "コウミョウ", - "meaning": "bright light, hope, bright future, light emanating from a buddha or bodhisattva, symbolizing their wisdom and compassion" - }, - { - "example": "英明", - "reading": "エイメイ", - "meaning": "intelligent, wise, bright, brilliant, clear-sighted" - }, - { - "example": "明", - "reading": "ミョウ", - "meaning": "vidya (wisdom), mantra, the coming (July 4, etc.)" - }, - { - "example": "明日", - "reading": "アシタ", - "meaning": "tomorrow, near future" - }, - { - "example": "光明", - "reading": "コウミョウ", - "meaning": "bright light, hope, bright future, light emanating from a buddha or bodhisattva, symbolizing their wisdom and compassion" - }, - { - "example": "内明", - "reading": "ナイミョウ", - "meaning": "adhyatmavidya (inner studies, ancient Indian philosophy)" - }, - { - "example": "明", - "reading": "ミン", - "meaning": "Ming dynasty (China, 1368-1644)" - }, - { - "example": "明楽", - "reading": "ミンガク", - "meaning": "Ming-era Chinese music (popularized in Japan during the early 17th century)" - } - ], - "kunyomiExamples": [ - { - "example": "明かり", - "reading": "あかり", - "meaning": "light, illumination, glow, gleam, lamp, light" - }, - { - "example": "明り先", - "reading": "あかりさき", - "meaning": "source of light" - }, - { - "example": "明るい", - "reading": "あかるい", - "meaning": "light, well-lit, well-lighted, bright (of a colour), brightly-coloured, brightly-colored, cheerful, bright, spirited, sunny (e.g. disposition), encouraging (for the future of a project, etc.), promising, of fair prospects, familiar (with), knowledgeable (about), well versed (in), fair (e.g. politics), clean, impartial" - }, - { - "example": "明るむ", - "reading": "あかるむ", - "meaning": "to brighten, to grow light" - }, - { - "example": "明らむ", - "reading": "あからむ", - "meaning": "to become luminous at dawn (esp. the sky)" - }, - { - "example": "明らか", - "reading": "あきらか", - "meaning": "clear, obvious, evident, plain, definite, bright, light" - }, - { - "example": "明らかにする", - "reading": "あきらかにする", - "meaning": "to make clear, to clarify, to disclose, to make public" - }, - { - "example": "開ける", - "reading": "あける", - "meaning": "to open (a door, etc.), to unwrap (e.g. parcel, package), to unlock, to open (for business, etc.), to empty, to remove, to make space, to make room, to move out, to clear out, to be away from (e.g. one's house), to leave (temporarily), to dawn, to grow light, to end (of a period, season), to begin (of the New Year), to leave (one's schedule) open, to make time (for), to make (a hole), to open up (a hole)" - }, - { - "example": "開く", - "reading": "あく", - "meaning": "to open (e.g. doors), to open (e.g. business, etc.), to be empty, to be vacant, to be available, to be free, to be open (e.g. neckline, etc.), to have been opened (of one's eyes, mouth, etc.), to come to an end, to open (one's eyes, mouth, etc.), to have a hole, to form a gap, to have an interval (between events)" - }, - { - "example": "明くる", - "reading": "あくる", - "meaning": "next (day, morning, etc.), following" - }, - { - "example": "明くる", - "reading": "あくる", - "meaning": "next (day, morning, etc.), following" - }, - { - "example": "あくる日", - "reading": "あくるひ", - "meaning": "next day, following day" - }, - { - "example": "明かす", - "reading": "あかす", - "meaning": "to pass (the night), to spend, to reveal, to divulge, to disclose, to expose, to prove, to verify" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26126_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0660e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/660e.gif", - "uri": "http://jisho.org/search/%E6%98%8E%23kanji" - }, - { - "query": "鳴", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1279", - "strokeCount": 14, - "meaning": "chirp, cry, bark, sound, ring, echo, honk", - "kunyomi": [ - "な.く", - "な.る", - "な.らす" - ], - "onyomi": [ - "メイ" - ], - "onyomiExamples": [ - { - "example": "鳴管", - "reading": "メイカン", - "meaning": "syrinx (part of a bird), lower larynx" - }, - { - "example": "鳴禽", - "reading": "メイキン", - "meaning": "songbird, oscine" - }, - { - "example": "百家争鳴", - "reading": "ヒャッカソウメイ", - "meaning": "let a hundred schools of thought contend" - }, - { - "example": "蛙鳴", - "reading": "アメイ", - "meaning": "frog calling" - } - ], - "kunyomiExamples": [ - { - "example": "鳴く", - "reading": "なく", - "meaning": "to make sound (of an animal), to call, to cry, to whine, to sing, to chirp, to make a meld call (e.g. pung, kong)" - }, - { - "example": "鳴く蝉よりも鳴かぬ蛍が身を焦がす", - "reading": "なくせみよりもなかぬほたるがみをこがす", - "meaning": "empty vessels make the most noise, the silent firefly burns with more passion than the crying cicada" - }, - { - "example": "鳴る", - "reading": "なる", - "meaning": "to sound, to ring, to resound, to echo, to roar, to rumble" - }, - { - "example": "鳴門", - "reading": "なると", - "meaning": "strait with a roaring tidal ebb and flow, whirlpool, maelstrom, kamaboko with a spiral whirlpool-like pattern, cooking technique where ingredients are cut in a spiral pattern, Naruto (city in Tokushima), Naruto Strait, Naruto wakame" - }, - { - "example": "鳴らす", - "reading": "ならす", - "meaning": "to ring, to sound, to chime, to beat, to snort (nose), to snap (fingers), to crack (joints), to be popular, to be esteemed, to be reputed, to state, to insist, to complain, to fart (loudly)" - } - ], - "radical": { - "symbol": "鳥", - "meaning": "bird" - }, - "parts": [ - "口", - "杰", - "鳥" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40180_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09cf4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9cf4.gif", - "uri": "http://jisho.org/search/%E9%B3%B4%23kanji" - }, - { - "query": "毛", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1179", - "strokeCount": 4, - "meaning": "fur, hair, feather, down", - "kunyomi": [ - "け" - ], - "onyomi": [ - "モウ" - ], - "onyomiExamples": [ - { - "example": "毛", - "reading": "モウ", - "meaning": "one-thousandth, 0.03 mm (one-thousandth of a sun), 0.01 percent (one-thousandth of a wari), 3.75 milligrams (one-thousandth of a monme), old monetary unit (0.0001 yen)" - }, - { - "example": "毛皮", - "reading": "ケガワ", - "meaning": "fur, skin, pelt, kanji \"fur\" radical" - }, - { - "example": "不毛", - "reading": "フモウ", - "meaning": "barren, sterile, infertile, unproductive (e.g. discussion), fruitless" - }, - { - "example": "再生毛", - "reading": "サイセイモウ", - "meaning": "recycled wool, reclaimed wool" - } - ], - "kunyomiExamples": [ - { - "example": "毛", - "reading": "け", - "meaning": "hair, fur, wool, down, plumage, feathers" - }, - { - "example": "毛皮", - "reading": "けがわ", - "meaning": "fur, skin, pelt, kanji \"fur\" radical" - }, - { - "example": "お毛々", - "reading": "おけけ", - "meaning": "pubic hair" - }, - { - "example": "猫っ毛", - "reading": "ねこっけ", - "meaning": "fine, soft hair" - } - ], - "radical": { - "symbol": "毛", - "meaning": "fur, hair" - }, - "parts": [ - "毛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27611_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bdb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bdb.gif", - "uri": "http://jisho.org/search/%E6%AF%9B%23kanji" - }, - { - "query": "門", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N2", - "newspaperFrequencyRank": "452", - "strokeCount": 8, - "meaning": "gate, counter for cannons", - "kunyomi": [ - "かど", - "と" - ], - "onyomi": [ - "モン" - ], - "onyomiExamples": [ - { - "example": "門", - "reading": "モン", - "meaning": "gate, branch of learning based on the teachings of a single master, division, phylum, counter for cannons" - }, - { - "example": "門下", - "reading": "モンカ", - "meaning": "one's pupil, one's student, one's follower" - }, - { - "example": "入門", - "reading": "ニュウモン", - "meaning": "entering an institution, beginning training, primer, manual, introduction (to)" - }, - { - "example": "宗門", - "reading": "シュウモン", - "meaning": "(religious) denomination, sect" - } - ], - "kunyomiExamples": [ - { - "example": "門", - "reading": "もん", - "meaning": "gate, branch of learning based on the teachings of a single master, division, phylum, counter for cannons" - }, - { - "example": "門出", - "reading": "かどで", - "meaning": "leaving one's own house (e.g. when going to war), departure, setting out, starting a new life, starting life anew" - }, - { - "example": "帝", - "reading": "みかど", - "meaning": "emperor (of Japan), mikado, (the gates of an) imperial residence" - }, - { - "example": "口は災いの門", - "reading": "くちはわざわいのかど", - "meaning": "words can lead to disaster, the tongue is the root of calamities, the more you open your mouth the more likely you are to put your foot in it" - }, - { - "example": "戸", - "reading": "と", - "meaning": "door (esp. Japanese-style), shutter, window shutter, entrance (to a home), narrows" - }, - { - "example": "門浪", - "reading": "となみ", - "meaning": "waves in narrow straits" - }, - { - "example": "鳴門", - "reading": "なると", - "meaning": "strait with a roaring tidal ebb and flow, whirlpool, maelstrom, kamaboko with a spiral whirlpool-like pattern, cooking technique where ingredients are cut in a spiral pattern, Naruto (city in Tokushima), Naruto Strait, Naruto wakame" - }, - { - "example": "長門", - "reading": "ながと", - "meaning": "Nagato (former province located in the west of present-day Yamaguchi Prefecture)" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38272_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09580.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9580.gif", - "uri": "http://jisho.org/search/%E9%96%80%23kanji" - }, - { - "query": "夜", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "487", - "strokeCount": 8, - "meaning": "night, evening", - "kunyomi": [ - "よ", - "よる" - ], - "onyomi": [ - "ヤ" - ], - "onyomiExamples": [ - { - "example": "夜", - "reading": "ヤ", - "meaning": "counter for nights" - }, - { - "example": "夜間", - "reading": "ヤカン", - "meaning": "night, nighttime" - }, - { - "example": "同夜", - "reading": "ドウヤ", - "meaning": "the same night, that night" - }, - { - "example": "通夜", - "reading": "ツヤ", - "meaning": "all-night vigil over a body, wake" - } - ], - "kunyomiExamples": [ - { - "example": "夜", - "reading": "よる", - "meaning": "evening, night, dinner" - }, - { - "example": "夜明け", - "reading": "よあけ", - "meaning": "dawn, daybreak" - }, - { - "example": "毎夜", - "reading": "まいよ", - "meaning": "every evening, every night" - }, - { - "example": "短夜", - "reading": "みじかよ", - "meaning": "short summer night" - }, - { - "example": "夜", - "reading": "よる", - "meaning": "evening, night, dinner" - }, - { - "example": "夜遅く", - "reading": "よるおそく", - "meaning": "late at night, at a late hour" - }, - { - "example": "御寝", - "reading": "およる", - "meaning": "sleep, rest" - }, - { - "example": "水晶の夜", - "reading": "すいしょうのよる", - "meaning": "Kristallnacht (night of concerted violence against Jews in Germany and Austria from November 9-10, 1938)" - } - ], - "radical": { - "symbol": "夕", - "meaning": "evening, sunset" - }, - "parts": [ - "亠", - "化", - "夕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22812_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0591c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/591c.gif", - "uri": "http://jisho.org/search/%E5%A4%9C%23kanji" - }, - { - "query": "野", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "120", - "strokeCount": 11, - "meaning": "plains, field, rustic, civilian life", - "kunyomi": [ - "の", - "の-" - ], - "onyomi": [ - "ヤ", - "ショ" - ], - "onyomiExamples": [ - { - "example": "野", - "reading": "ノ", - "meaning": "plain, field, hidden (structural) member, wild, lacking a political post" - }, - { - "example": "野外", - "reading": "ヤガイ", - "meaning": "outdoors, outside, open air, fields, outskirts, suburbs" - }, - { - "example": "内野", - "reading": "ナイヤ", - "meaning": "infield, diamond" - }, - { - "example": "在野", - "reading": "ザイヤ", - "meaning": "out of office, out of power, in opposition, unaffiliated (e.g. researcher, scientist), in private practice" - } - ], - "kunyomiExamples": [ - { - "example": "野", - "reading": "の", - "meaning": "plain, field, hidden (structural) member, wild, lacking a political post" - }, - { - "example": "野末", - "reading": "のずえ", - "meaning": "corners of a field" - }, - { - "example": "裾野", - "reading": "すその", - "meaning": "foot of a mountain, plain at the foot of a mountain, range, spread, extent, encompassing circle" - }, - { - "example": "郊野", - "reading": "こうの", - "meaning": "suburban fields" - } - ], - "radical": { - "symbol": "里", - "meaning": "village, mile" - }, - "parts": [ - "亅", - "矛", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37326_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091ce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91ce.gif", - "uri": "http://jisho.org/search/%E9%87%8E%23kanji" - }, - { - "query": "友", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "622", - "strokeCount": 4, - "meaning": "friend", - "kunyomi": [ - "とも" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "友", - "reading": "ユウ", - "meaning": "friend, affection (for siblings)" - }, - { - "example": "友愛", - "reading": "ユウアイ", - "meaning": "fraternity, friendship" - }, - { - "example": "戦友", - "reading": "センユウ", - "meaning": "comrade in arms, war buddy, fellow soldier" - }, - { - "example": "盟友", - "reading": "メイユウ", - "meaning": "sworn friend" - } - ], - "kunyomiExamples": [ - { - "example": "友", - "reading": "とも", - "meaning": "friend, companion, comrade, pal, accompaniment, companion (e.g. book), complement, accessory" - }, - { - "example": "友達", - "reading": "ともだち", - "meaning": "friend, companion" - }, - { - "example": "リア友", - "reading": "リアとも", - "meaning": "real-life friend (as opposed to online friend)" - }, - { - "example": "酒のお供", - "reading": "さけのおとも", - "meaning": "appetizer or snack served with drinks, accompaniment to an (alcoholic) drink" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "ノ", - "一", - "又" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21451_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53cb.gif", - "uri": "http://jisho.org/search/%E5%8F%8B%23kanji" - }, - { - "query": "用", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "107", - "strokeCount": 5, - "meaning": "utilize, business, service, use, employ", - "kunyomi": [ - "もち.いる" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "用", - "reading": "ヨウ", - "meaning": "business, task, errand, engagement, use, purpose, for the use of ..., used for ..., made for ..., call of nature, excretion" - }, - { - "example": "用意", - "reading": "ヨウイ", - "meaning": "preparation, arrangements, provision, getting ready, laying out (e.g. a meal)" - }, - { - "example": "登用", - "reading": "トウヨウ", - "meaning": "appointment, assignment, promotion" - }, - { - "example": "効用", - "reading": "コウヨウ", - "meaning": "use, utility, effect, benefit" - } - ], - "kunyomiExamples": [ - { - "example": "用いる", - "reading": "もちいる", - "meaning": "to use, to make use of, to utilize, to utilise" - } - ], - "radical": { - "symbol": "用", - "forms": [ - "甩" - ], - "meaning": "use" - }, - "parts": [ - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29992_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07528.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7528.gif", - "uri": "http://jisho.org/search/%E7%94%A8%23kanji" - }, - { - "query": "曜", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "940", - "strokeCount": 18, - "meaning": "weekday", - "kunyomi": [], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "曜日", - "reading": "ヨウビ", - "meaning": "day of the week" - }, - { - "example": "曜霊", - "reading": "ヨウレイ", - "meaning": "the sun" - }, - { - "example": "晃曜", - "reading": "コウヨウ", - "meaning": "dazzling brightness" - }, - { - "example": "宿曜", - "reading": "スクヨウ", - "meaning": "form of astrology based on the Xiuyaojing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ヨ", - "日", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26332_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066dc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66dc.gif", - "uri": "http://jisho.org/search/%E6%9B%9C%23kanji" - }, - { - "query": "来", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "102", - "strokeCount": 7, - "meaning": "come, due, next, cause, become", - "kunyomi": [ - "く.る", - "きた.る", - "きた.す", - "き.たす", - "き.たる", - "き", - "こ" - ], - "onyomi": [ - "ライ", - "タイ" - ], - "onyomiExamples": [ - { - "example": "来", - "reading": "ライ", - "meaning": "next (year, spring, etc.), coming, since (last month, etc.), for (20 years, etc.)" - }, - { - "example": "来客", - "reading": "ライキャク", - "meaning": "visitor, caller" - }, - { - "example": "在来", - "reading": "ザイライ", - "meaning": "pre-existing, already there, conventional" - }, - { - "example": "再来", - "reading": "サイライ", - "meaning": "return, coming back, second coming (e.g. of Christ), second advent, reincarnation" - } - ], - "kunyomiExamples": [ - { - "example": "来る", - "reading": "くる", - "meaning": "to come (spatially or temporally), to approach, to arrive, to come back, to do ... and come back, to come to be, to become, to get, to grow, to continue, to come from, to be caused by, to derive from, to come to (i.e. \"when it comes to spinach ...\")" - }, - { - "example": "来る年", - "reading": "くるとし", - "meaning": "the coming year" - }, - { - "example": "来る", - "reading": "きたる", - "meaning": "next (e.g. \"next April\"), forthcoming, coming, to come, to arrive, to be due to" - }, - { - "example": "来るべき", - "reading": "きたるべき", - "meaning": "expected to arrive (occur) in the near future" - }, - { - "example": "来す", - "reading": "きたす", - "meaning": "to cause, to induce, to bring about a result or state, to produce" - }, - { - "example": "来す", - "reading": "きたす", - "meaning": "to cause, to induce, to bring about a result or state, to produce" - }, - { - "example": "来る", - "reading": "きたる", - "meaning": "next (e.g. \"next April\"), forthcoming, coming, to come, to arrive, to be due to" - }, - { - "example": "来るべき", - "reading": "きたるべき", - "meaning": "expected to arrive (occur) in the near future" - }, - { - "example": "来合わせる", - "reading": "きあわせる", - "meaning": "to happen to come along" - }, - { - "example": "来掛かる", - "reading": "きかかる", - "meaning": "to happen to come" - }, - { - "example": "不出来", - "reading": "ふでき", - "meaning": "bad job, poor workmanship, bungle" - }, - { - "example": "行ってき", - "reading": "いってき", - "meaning": "bye, see ya (afterwards), have fun, get going, now" - }, - { - "example": "来い", - "reading": "こい", - "meaning": "come!, come on!" - }, - { - "example": "来し方", - "reading": "きしかた", - "meaning": "the past" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "二", - "亠", - "木", - "米", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26469_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06765.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6765.gif", - "uri": "http://jisho.org/search/%E6%9D%A5%23kanji" - }, - { - "query": "里", - "found": true, - "taughtIn": "grade 2", - "newspaperFrequencyRank": "1096", - "strokeCount": 7, - "meaning": "ri, village, parent's home, league", - "kunyomi": [ - "さと" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "里", - "reading": "リ", - "meaning": "Japanese league, ri, old Japanese unit of distance, approx. 3.927km or 2.44 miles, neighbourhood (under the ritsuryo system; orig. of 50 homes), unit of area (approx. 654m by 654m)" - }, - { - "example": "俚言", - "reading": "リゲン", - "meaning": "dialect, language of the common people, colloquial language, slang" - }, - { - "example": "万里", - "reading": "バンリ", - "meaning": "thousands of miles" - }, - { - "example": "亜爾加里", - "reading": "アルカリ", - "meaning": "alkali" - } - ], - "kunyomiExamples": [ - { - "example": "里", - "reading": "さと", - "meaning": "village, hamlet, countryside, country, home (of one's parents, etc.), hometown, one's origins, one's upbringing, one's past" - }, - { - "example": "里親", - "reading": "さとおや", - "meaning": "foster parent, foster parents, (pet) caretaker" - }, - { - "example": "お里", - "reading": "おさと", - "meaning": "one's parents' home, one's origins, one's upbringing, one's past" - }, - { - "example": "夏山冬里", - "reading": "なつやまふゆさと", - "meaning": "pasturing cattle in summer and feeding them indoors during winter, rotated grazing" - } - ], - "radical": { - "symbol": "里", - "meaning": "village, mile" - }, - "parts": [ - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37324_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091cc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91cc.gif", - "uri": "http://jisho.org/search/%E9%87%8C%23kanji" - }, - { - "query": "理", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N4", - "newspaperFrequencyRank": "86", - "strokeCount": 11, - "meaning": "logic, arrangement, reason, justice, truth", - "kunyomi": [ - "ことわり" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "理", - "reading": "リ", - "meaning": "reason, principle, logic, general principle (as opposed to individual concrete phenomenon), (in neo-Confucianism) the underlying principles of the cosmos" - }, - { - "example": "理科", - "reading": "リカ", - "meaning": "science (inc. mathematics, medicine, etc.), natural science, science department (university), science course, science (as a school subject)" - }, - { - "example": "合理", - "reading": "ゴウリ", - "meaning": "rationality" - }, - { - "example": "経理", - "reading": "ケイリ", - "meaning": "accounting, administration (of money)" - } - ], - "kunyomiExamples": [ - { - "example": "理", - "reading": "ことわり", - "meaning": "reason, logic, sense, natural way of things" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "王", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29702_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07406.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7406.gif", - "uri": "http://jisho.org/search/%E7%90%86%23kanji" - }, - { - "query": "話", - "found": true, - "taughtIn": "grade 2", - "jlptLevel": "N5", - "newspaperFrequencyRank": "134", - "strokeCount": 13, - "meaning": "tale, talk", - "kunyomi": [ - "はな.す", - "はなし" - ], - "onyomi": [ - "ワ" - ], - "onyomiExamples": [ - { - "example": "話", - "reading": "ワ", - "meaning": "counter for stories, episodes of TV series, etc." - }, - { - "example": "話題", - "reading": "ワダイ", - "meaning": "topic, subject" - }, - { - "example": "懇話", - "reading": "コンワ", - "meaning": "friendly talk, chat" - }, - { - "example": "秘話", - "reading": "ヒワ", - "meaning": "secret story, unknown episode" - } - ], - "kunyomiExamples": [ - { - "example": "話す", - "reading": "はなす", - "meaning": "to talk, to speak, to converse, to chat, to tell, to explain, to narrate, to mention, to describe, to discuss, to speak (a language)" - }, - { - "example": "話", - "reading": "はなし", - "meaning": "talk, speech, chat, conversation, topic, subject, discussions, negotiation, argument, rumor, talk, hearsay, tale, story, fable, circumstances, particulars" - }, - { - "example": "話し合い", - "reading": "はなしあい", - "meaning": "discussion, talk, tête-à-tête, conference" - }, - { - "example": "お話", - "reading": "おはなし", - "meaning": "story, tale" - }, - { - "example": "いい話", - "reading": "いいはなし", - "meaning": "good story (e.g. heartwarming), good prospect (e.g. marriage, business)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "口", - "舌", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35441_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a71.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a71.gif", - "uri": "http://jisho.org/search/%E8%A9%B1%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/data/jisho/grade3.json b/lib/migrations/data/jisho/grade3.json deleted file mode 100644 index b502982..0000000 --- a/lib/migrations/data/jisho/grade3.json +++ /dev/null @@ -1,15311 +0,0 @@ -[ - { - "query": "悪", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "530", - "strokeCount": 11, - "meaning": "bad, vice, rascal, false, evil, wrong", - "kunyomi": [ - "わる.い", - "わる-", - "あ.し", - "にく.い", - "-にく.い", - "ああ", - "いずくに", - "いずくんぞ", - "にく.む" - ], - "onyomi": [ - "アク", - "オ" - ], - "onyomiExamples": [ - { - "example": "悪", - "reading": "アク", - "meaning": "evil, wickedness, (role of) the villain (in theatre, etc.), the bad guy" - }, - { - "example": "悪質", - "reading": "アクシツ", - "meaning": "malicious, vicious, malignant, underhanded, shoddy, inferior, poor-quality, second-rate" - }, - { - "example": "害悪", - "reading": "ガイアク", - "meaning": "harm, injury, evil (influence)" - }, - { - "example": "改悪", - "reading": "カイアク", - "meaning": "deterioration, changing for the worse" - }, - { - "example": "悪寒", - "reading": "オカン", - "meaning": "chill, shakes, ague" - }, - { - "example": "悪血", - "reading": "アクチ", - "meaning": "impure blood" - }, - { - "example": "自己嫌悪", - "reading": "ジコケンオ", - "meaning": "self-hatred, self-abhorrence, self-loathing" - }, - { - "example": "好悪", - "reading": "コウオ", - "meaning": "likes and dislikes" - } - ], - "kunyomiExamples": [ - { - "example": "悪い", - "reading": "わるい", - "meaning": "bad, poor, undesirable, poor (quality), inferior, insufficient, evil, sinful, ugly, not beautiful, at fault, to blame, in the wrong, bad (at doing something), unprofitable, unbeneficial, sorry, (my) bad, unforgivable" - }, - { - "example": "悪い行い", - "reading": "わるいおこない", - "meaning": "bad deed, evil deed" - }, - { - "example": "悪し", - "reading": "あし", - "meaning": "bad, evil" - }, - { - "example": "悪しからず", - "reading": "あしからず", - "meaning": "don't get me wrong, but ..., I'm sorry" - }, - { - "example": "難い", - "reading": "にくい", - "meaning": "difficult to ..., hard to ..." - }, - { - "example": "憎い", - "reading": "にくい", - "meaning": "hateful, abominable, poor-looking, detestable, amazing, fantastic, admirable, lovely, wonderful" - }, - { - "example": "憎む", - "reading": "にくむ", - "meaning": "to hate, to detest" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "口", - "心", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24746_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60aa.gif", - "uri": "http://jisho.org/search/%E6%82%AA%23kanji" - }, - { - "query": "安", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "144", - "strokeCount": 6, - "meaning": "relax, cheap, low, quiet, rested, contented, peaceful", - "kunyomi": [ - "やす.い", - "やす.まる", - "やす", - "やす.らか" - ], - "onyomi": [ - "アン" - ], - "onyomiExamples": [ - { - "example": "安価", - "reading": "アンカ", - "meaning": "low-priced, cheap, inexpensive, shallow (e.g. sympathy), superficial, cheap (e.g. government)" - }, - { - "example": "安易", - "reading": "アンイ", - "meaning": "easy, simple, easygoing, lighthearted, simplistic, irresponsible, careless, quick (to do)" - }, - { - "example": "平安", - "reading": "ヘイアン", - "meaning": "peace, tranquility, tranquillity, Heian period (794-1185)" - }, - { - "example": "慰安", - "reading": "イアン", - "meaning": "solace, relaxation" - } - ], - "kunyomiExamples": [ - { - "example": "安い", - "reading": "やすい", - "meaning": "cheap, inexpensive, calm, peaceful, quiet" - }, - { - "example": "休まる", - "reading": "やすまる", - "meaning": "to be rested, to feel at ease, to repose, to be relieved" - }, - { - "example": "安", - "reading": "やす", - "meaning": "cheap, rash, thoughtless, careless, indiscreet, frivolous" - }, - { - "example": "安上がり", - "reading": "やすあがり", - "meaning": "cheap, economical" - }, - { - "example": "目安", - "reading": "めやす", - "meaning": "criterion, standard, yardstick, reference, aim, rough estimate, approximation" - }, - { - "example": "最安", - "reading": "さいやす", - "meaning": "cheapest, lowest price" - }, - { - "example": "安らか", - "reading": "やすらか", - "meaning": "peaceful, tranquil, calm, restful" - }, - { - "example": "安らかにお眠りください", - "reading": "やすらかにおねむりください", - "meaning": "rest in peace, requiescat in pace, RIP" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "女", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23433_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b89.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b89.gif", - "uri": "http://jisho.org/search/%E5%AE%89%23kanji" - }, - { - "query": "暗", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1040", - "strokeCount": 13, - "meaning": "darkness, disappear, shade, informal, grow dark, be blinded", - "kunyomi": [ - "くら.い", - "くら.む", - "くれ.る" - ], - "onyomi": [ - "アン" - ], - "onyomiExamples": [ - { - "example": "暗", - "reading": "アン", - "meaning": "darkness" - }, - { - "example": "暗雲", - "reading": "アンウン", - "meaning": "dark clouds" - }, - { - "example": "明暗", - "reading": "メイアン", - "meaning": "light and darkness, light and shade" - }, - { - "example": "冥暗", - "reading": "メイアン", - "meaning": "gloom, shade" - } - ], - "kunyomiExamples": [ - { - "example": "暗い", - "reading": "くらい", - "meaning": "dark, gloomy, murky, depressed, dispirited, down in the dumps, dark (mood), dark (in colour), dull, ill-boding, dark (e.g. past), suspicious, unlikely (to succeed), hopeless, unpromising, unfamiliar (with), ignorant (of)" - }, - { - "example": "暗い過去", - "reading": "くらいかこ", - "meaning": "shadowy past, murky past" - }, - { - "example": "眩む", - "reading": "くらむ", - "meaning": "to be dazzled by, to be dizzied by, to be disoriented by, to be lost in (greed, lust, etc.), to become dark" - }, - { - "example": "暮れる", - "reading": "くれる", - "meaning": "to get dark, to grow dark, to end (of a day, year, season, etc.), to come to an end, to close, to be sunk in (e.g. despair), to be lost in (e.g. thought), to be overcome with" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26263_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06697.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6697.gif", - "uri": "http://jisho.org/search/%E6%9A%97%23kanji" - }, - { - "query": "医", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "437", - "strokeCount": 7, - "meaning": "doctor, medicine", - "kunyomi": [ - "い.やす", - "い.する", - "くすし" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "医", - "reading": "イ", - "meaning": "medicine, the healing art, healing, curing, doctor" - }, - { - "example": "医院", - "reading": "イイン", - "meaning": "doctor's office (surgery), clinic, dispensary" - }, - { - "example": "軍医", - "reading": "グンイ", - "meaning": "military physician or surgeon" - }, - { - "example": "校医", - "reading": "コウイ", - "meaning": "school doctor" - } - ], - "kunyomiExamples": [ - { - "example": "医する", - "reading": "いする", - "meaning": "to cure, to heal" - }, - { - "example": "薬師", - "reading": "くすし", - "meaning": "doctor" - } - ], - "radical": { - "symbol": "匸", - "meaning": "hiding enclosure" - }, - "parts": [ - "乞", - "匚", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21307_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0533b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/533b.gif", - "uri": "http://jisho.org/search/%E5%8C%BB%23kanji" - }, - { - "query": "委", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "187", - "strokeCount": 8, - "meaning": "committee, entrust to, leave to, devote, discard", - "kunyomi": [ - "ゆだ.ねる" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "委員会", - "reading": "イインカイ", - "meaning": "committee, commission, board, panel, committee meeting" - }, - { - "example": "委員", - "reading": "イイン", - "meaning": "committee member" - }, - { - "example": "公取委", - "reading": "コウトリイ", - "meaning": "Japan Fair Trade Commission" - }, - { - "example": "実行委", - "reading": "ジッコウイ", - "meaning": "action committee, executive committee" - } - ], - "kunyomiExamples": [ - { - "example": "委ねる", - "reading": "ゆだねる", - "meaning": "to entrust (a matter) to, to leave to, to abandon oneself to (e.g. pleasure), to yield to (e.g. anger), to devote oneself to" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22996_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059d4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59d4.gif", - "uri": "http://jisho.org/search/%E5%A7%94%23kanji" - }, - { - "query": "意", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "99", - "strokeCount": 13, - "meaning": "idea, mind, heart, taste, thought, desire, care, liking", - "kunyomi": [], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "意", - "reading": "イ", - "meaning": "feelings, thoughts, meaning" - }, - { - "example": "意外", - "reading": "イガイ", - "meaning": "unexpected, surprising" - }, - { - "example": "賛意", - "reading": "サンイ", - "meaning": "approval, assent" - }, - { - "example": "総意", - "reading": "ソウイ", - "meaning": "consensus, collective will, collective opinion" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24847_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0610f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/610f.gif", - "uri": "http://jisho.org/search/%E6%84%8F%23kanji" - }, - { - "query": "育", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "369", - "strokeCount": 8, - "meaning": "bring up, grow up, raise, rear", - "kunyomi": [ - "そだ.つ", - "そだ.ち", - "そだ.てる", - "はぐく.む" - ], - "onyomi": [ - "イク" - ], - "onyomiExamples": [ - { - "example": "育児", - "reading": "イクジ", - "meaning": "childcare, child-rearing, nursing, upbringing" - }, - { - "example": "育英", - "reading": "イクエイ", - "meaning": "education of gifted young people, providing financial support to gifted students, education" - }, - { - "example": "性教育", - "reading": "セイキョウイク", - "meaning": "sex education" - }, - { - "example": "社会教育", - "reading": "シャカイキョウイク", - "meaning": "social education" - } - ], - "kunyomiExamples": [ - { - "example": "育つ", - "reading": "そだつ", - "meaning": "to be raised (e.g. child), to be brought up, to grow (up)" - }, - { - "example": "育ち", - "reading": "そだち", - "meaning": "growth, breeding, growing up (in, as), upbringing" - }, - { - "example": "育ち盛り", - "reading": "そだちざかり", - "meaning": "growth period (in children)" - }, - { - "example": "育てる", - "reading": "そだてる", - "meaning": "to raise, to rear, to bring up, to train, to teach, to educate, to promote the growth of, to nurture, to foster, to develop" - }, - { - "example": "育む", - "reading": "はぐくむ", - "meaning": "to raise, to bring up, to rear, to cultivate, to foster, to nurture" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "亠", - "厶", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32946_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80b2.gif", - "uri": "http://jisho.org/search/%E8%82%B2%23kanji" - }, - { - "query": "員", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "54", - "strokeCount": 10, - "meaning": "employee, member, number, the one in charge", - "kunyomi": [], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "員", - "reading": "イン", - "meaning": "member" - }, - { - "example": "員数", - "reading": "インズウ", - "meaning": "(total) number (of people or things), count, quota" - }, - { - "example": "随員", - "reading": "ズイイン", - "meaning": "member of an entourage or retinue or party, attendant" - }, - { - "example": "執行委員", - "reading": "シッコウイイン", - "meaning": "executive committee" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ハ", - "口", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21729_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054e1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54e1.gif", - "uri": "http://jisho.org/search/%E5%93%A1%23kanji" - }, - { - "query": "院", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "150", - "strokeCount": 10, - "meaning": "Inst., institution, temple, mansion, school", - "kunyomi": [], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "院", - "reading": "イン", - "meaning": "house of parliament (congress, diet, etc.), graduate school, postgraduate school, institution (often medical), institutional building, government office, sub-temple, minor temple building, temple, cloister, imperial palace, title bestowed on empresses, princesses, etc., former (esp. of emperors, daimyos, etc.), late" - }, - { - "example": "院長", - "reading": "インチョウ", - "meaning": "director" - }, - { - "example": "議院", - "reading": "ギイン", - "meaning": "parliament, congress, diet, house (of parliament, etc.), chamber" - }, - { - "example": "棋院", - "reading": "キイン", - "meaning": "go institution, go club, go hall" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "二", - "儿", - "元", - "宀", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38498_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09662.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9662.gif", - "uri": "http://jisho.org/search/%E9%99%A2%23kanji" - }, - { - "query": "飲", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "969", - "strokeCount": 12, - "meaning": "drink, smoke, take", - "kunyomi": [ - "の.む", - "-の.み" - ], - "onyomi": [ - "イン", - "オン" - ], - "onyomiExamples": [ - { - "example": "飲", - "reading": "イン", - "meaning": "drinking (sometimes esp. alcohol), drink, drinking party" - }, - { - "example": "飲酒", - "reading": "インシュ", - "meaning": "drinking alcohol (sake)" - }, - { - "example": "留飲", - "reading": "リュウイン", - "meaning": "gloating, satisfaction" - }, - { - "example": "暴飲", - "reading": "ボウイン", - "meaning": "heavy drinking" - }, - { - "example": "飲食", - "reading": "インショク", - "meaning": "food and drink, eating and drinking" - }, - { - "example": "飲酒", - "reading": "オンジュ", - "meaning": "consumption of alcohol (as prohibited by one of the Buddhist precepts), Buddhist precept prohibiting the consumption of alcohol" - } - ], - "kunyomiExamples": [ - { - "example": "飲む", - "reading": "のむ", - "meaning": "to drink, to gulp, to swallow, to take (medicine), to smoke (tobacco), to engulf, to overwhelm, to keep down, to suppress, to accept (e.g. demand, condition), to make light of, to conceal" - }, - { - "example": "飲む打つ買う", - "reading": "のむうつかう", - "meaning": "drinking, gambling, and buying women in prostitution" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "欠", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39154_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98f2.gif", - "uri": "http://jisho.org/search/%E9%A3%B2%23kanji" - }, - { - "query": "運", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "255", - "strokeCount": 12, - "meaning": "carry, luck, destiny, fate, lot, transport, progress, advance", - "kunyomi": [ - "はこ.ぶ" - ], - "onyomi": [ - "ウン" - ], - "onyomiExamples": [ - { - "example": "運", - "reading": "ウン", - "meaning": "fortune, luck" - }, - { - "example": "運営", - "reading": "ウンエイ", - "meaning": "management, administration, operation" - }, - { - "example": "機運", - "reading": "キウン", - "meaning": "opportunity, chance, good time (to do), trend, tendency, momentum" - }, - { - "example": "命運", - "reading": "メイウン", - "meaning": "fate, destiny" - } - ], - "kunyomiExamples": [ - { - "example": "運ぶ", - "reading": "はこぶ", - "meaning": "to carry, to transport, to move, to convey, to come, to go, to wield (a tool, etc.), to use, to go (well, etc.), to proceed, to progress" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "冖", - "車", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36939_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0904b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/904b.gif", - "uri": "http://jisho.org/search/%E9%81%8B%23kanji" - }, - { - "query": "泳", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1223", - "strokeCount": 8, - "meaning": "swim", - "kunyomi": [ - "およ.ぐ" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "泳者", - "reading": "エイシャ", - "meaning": "a swimmer" - }, - { - "example": "泳動", - "reading": "エイドウ", - "meaning": "migration, movement, phoresis" - }, - { - "example": "遠泳", - "reading": "エンエイ", - "meaning": "long-distance swimming" - }, - { - "example": "着衣泳", - "reading": "チャクイエイ", - "meaning": "swimming fully-clothed" - } - ], - "kunyomiExamples": [ - { - "example": "泳ぐ", - "reading": "およぐ", - "meaning": "to swim" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "水", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27891_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cf3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cf3.gif", - "uri": "http://jisho.org/search/%E6%B3%B3%23kanji" - }, - { - "query": "駅", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "724", - "strokeCount": 14, - "meaning": "station", - "kunyomi": [], - "onyomi": [ - "エキ" - ], - "onyomiExamples": [ - { - "example": "駅", - "reading": "エキ", - "meaning": "railway station, train station, staging post on a highway (in pre-modern Japan), counter for railway stations and bus stations" - }, - { - "example": "駅員", - "reading": "エキイン", - "meaning": "(train) station attendant, station employee, station staff" - }, - { - "example": "宿駅", - "reading": "シュクエキ", - "meaning": "relay station, post station, stage" - }, - { - "example": "終着駅", - "reading": "シュウチャクエキ", - "meaning": "terminal station" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "丶", - "尸", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39365_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/099c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/99c5.gif", - "uri": "http://jisho.org/search/%E9%A7%85%23kanji" - }, - { - "query": "央", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "582", - "strokeCount": 5, - "meaning": "center, middle", - "kunyomi": [], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "央", - "reading": "オウ", - "meaning": "middle, centre, center" - }, - { - "example": "道央", - "reading": "ドウオウ", - "meaning": "central Hokkaido" - }, - { - "example": "月央", - "reading": "ゲツオウ", - "meaning": "middle of the month" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "ノ", - "一", - "冖", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22830_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0592e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/592e.gif", - "uri": "http://jisho.org/search/%E5%A4%AE%23kanji" - }, - { - "query": "横", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "480", - "strokeCount": 15, - "meaning": "sideways, side, horizontal, width, woof, unreasonable, perverse", - "kunyomi": [ - "よこ" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "横線", - "reading": "オウセン", - "meaning": "horizontal line" - }, - { - "example": "横行", - "reading": "オウコウ", - "meaning": "walking sideways, staggering, striding, being rampant, being widespread, being prevalent" - }, - { - "example": "専横", - "reading": "センオウ", - "meaning": "arbitrariness, despotism, high-handedness, tyranny" - }, - { - "example": "正横", - "reading": "セイオウ", - "meaning": "abeam" - } - ], - "kunyomiExamples": [ - { - "example": "横", - "reading": "よこ", - "meaning": "horizontal (as opposed to vertical), lying down, side-to-side (as opposed to front-to-back), width, breadth, side (of a box, etc.), beside, aside, next to, unconnected" - }, - { - "example": "邪", - "reading": "よこしま", - "meaning": "wicked, evil" - }, - { - "example": "真横", - "reading": "まよこ", - "meaning": "directly horizontal, right beside" - }, - { - "example": "縦中横", - "reading": "たてちゅうよこ", - "meaning": "using horizontal characters in vertical writing" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ハ", - "二", - "廾", - "日", - "木", - "田", - "黄", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a2a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a2a.gif", - "uri": "http://jisho.org/search/%E6%A8%AA%23kanji" - }, - { - "query": "屋", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "616", - "strokeCount": 9, - "meaning": "roof, house, shop, dealer, seller", - "kunyomi": [ - "や" - ], - "onyomi": [ - "オク" - ], - "onyomiExamples": [ - { - "example": "屋", - "reading": "オク", - "meaning": "house, building, roof" - }, - { - "example": "屋外", - "reading": "オクガイ", - "meaning": "outdoors, outside" - }, - { - "example": "草屋", - "reading": "ソウオク", - "meaning": "thatched hut" - }, - { - "example": "塔屋", - "reading": "トウヤ", - "meaning": "rooftop structure, e.g. tower, elevator machine room, etc." - } - ], - "kunyomiExamples": [ - { - "example": "屋", - "reading": "や", - "meaning": "(something) shop, somebody who sells (something) or works as (something), somebody with a (certain) personality trait, house, roof" - }, - { - "example": "屋敷", - "reading": "やしき", - "meaning": "residence, estate, grounds, premises, mansion" - }, - { - "example": "長屋", - "reading": "ながや", - "meaning": "tenement house, row house" - }, - { - "example": "総会屋", - "reading": "そうかいや", - "meaning": "extortionist that threatens to disrupt stock-holder meetings" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "厶", - "土", - "尸", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23627_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c4b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c4b.gif", - "uri": "http://jisho.org/search/%E5%B1%8B%23kanji" - }, - { - "query": "温", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "838", - "strokeCount": 12, - "meaning": "warm", - "kunyomi": [ - "あたた.か", - "あたた.かい", - "あたた.まる", - "あたた.める", - "ぬく" - ], - "onyomi": [ - "オン" - ], - "onyomiExamples": [ - { - "example": "温室", - "reading": "オンシツ", - "meaning": "greenhouse, hothouse, conservatory, glasshouse" - }, - { - "example": "温厚", - "reading": "オンコウ", - "meaning": "gentle, mild-mannered" - }, - { - "example": "保温", - "reading": "ホオン", - "meaning": "retaining warmth, keeping heat in, heat insulation" - }, - { - "example": "室温", - "reading": "シツオン", - "meaning": "room temperature" - } - ], - "kunyomiExamples": [ - { - "example": "暖か", - "reading": "あたたか", - "meaning": "warm, mild, genial" - }, - { - "example": "暖かい", - "reading": "あたたかい", - "meaning": "warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money" - }, - { - "example": "暖かい", - "reading": "あたたかい", - "meaning": "warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money" - }, - { - "example": "温かい歓迎", - "reading": "あたたかいかんげい", - "meaning": "warm reception, cordial welcome, warm greeting" - }, - { - "example": "温まる", - "reading": "あたたまる", - "meaning": "to warm oneself, to sun oneself, to warm up, to get warm" - }, - { - "example": "温める", - "reading": "あたためる", - "meaning": "to warm, to heat" - }, - { - "example": "温", - "reading": "ぬく", - "meaning": "idiot, dummy, slow person" - }, - { - "example": "温まる", - "reading": "あたたまる", - "meaning": "to warm oneself, to sun oneself, to warm up, to get warm" - }, - { - "example": "温々", - "reading": "ぬくぬく", - "meaning": "snugly, cosily, warmly, comfortably, carefree, easily, safely, without hardship, freshly made and still warm, imprudently, shamelessly" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "日", - "汁", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28201_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e29.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e29.gif", - "uri": "http://jisho.org/search/%E6%B8%A9%23kanji" - }, - { - "query": "化", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "89", - "strokeCount": 4, - "meaning": "change, take the form of, influence, enchant, delude, -ization", - "kunyomi": [ - "ば.ける", - "ば.かす", - "ふ.ける", - "け.する" - ], - "onyomi": [ - "カ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "化", - "reading": "カ", - "meaning": "action of making something, -ification" - }, - { - "example": "化学", - "reading": "カガク", - "meaning": "chemistry" - }, - { - "example": "機械化", - "reading": "キカイカ", - "meaning": "mechanization, mechanisation, computerization" - }, - { - "example": "民営化", - "reading": "ミンエイカ", - "meaning": "privatization, privatisation" - }, - { - "example": "化粧", - "reading": "ケショウ", - "meaning": "make-up, makeup, cosmetics" - }, - { - "example": "化粧水", - "reading": "ケショウスイ", - "meaning": "skin lotion, face lotion" - }, - { - "example": "応化", - "reading": "オウゲ", - "meaning": "assumption of a suitable form (by a buddha or bodhisattva)" - }, - { - "example": "教化", - "reading": "キョウケ", - "meaning": "guidance, teaching people and leading them to Buddhism" - } - ], - "kunyomiExamples": [ - { - "example": "化ける", - "reading": "ばける", - "meaning": "to take the form of (esp. in ref. to a spirit, fox, raccoon dog, etc.), to assume the shape of, to turn oneself into, to transform oneself into, to disguise oneself as, to change radically, to metamorphose, to improve unexpectedly and dramatically (esp. of an actor, artist, rikishi, etc.)" - }, - { - "example": "化かす", - "reading": "ばかす", - "meaning": "to bewitch, to confuse, to enchant, to delude" - }, - { - "example": "老ける", - "reading": "ふける", - "meaning": "to age, to grow old (esp. in appearance), to show marks of age" - } - ], - "radical": { - "symbol": "匕", - "meaning": "spoon" - }, - "parts": [ - "匕", - "化" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21270_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05316.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5316.gif", - "uri": "http://jisho.org/search/%E5%8C%96%23kanji" - }, - { - "query": "荷", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1230", - "strokeCount": 10, - "meaning": "baggage, shoulder-pole load, bear (a burden), shoulder (a gun), load, cargo, freight", - "kunyomi": [ - "に" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "荷", - "reading": "カ", - "meaning": "counter for loads (that can be carried on one's shoulders)" - }, - { - "example": "加担", - "reading": "カタン", - "meaning": "support, participation, assistance, complicity, conspiracy" - }, - { - "example": "集荷", - "reading": "シュウカ", - "meaning": "collection of cargo (esp. produce, etc.), cargo booking" - }, - { - "example": "電荷", - "reading": "デンカ", - "meaning": "electric charge, charge" - } - ], - "kunyomiExamples": [ - { - "example": "荷", - "reading": "に", - "meaning": "load, baggage, cargo, freight, goods, burden, responsibility" - }, - { - "example": "荷台", - "reading": "にだい", - "meaning": "(truck) load-carrying tray, (bicycle) luggage carrier, roof rack" - }, - { - "example": "浮き荷", - "reading": "うきに", - "meaning": "flotsam" - }, - { - "example": "抜き荷", - "reading": "ぬきに", - "meaning": "pilfered goods" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "一", - "亅", - "化", - "口", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33655_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08377.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8377.gif", - "uri": "http://jisho.org/search/%E8%8D%B7%23kanji" - }, - { - "query": "界", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "158", - "strokeCount": 9, - "meaning": "world, boundary", - "kunyomi": [], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "界", - "reading": "カイ", - "meaning": "community, circles, world, kingdom, erathem, field (electrical), border, boundary, division" - }, - { - "example": "界隈", - "reading": "カイワイ", - "meaning": "neighborhood, neighbourhood, vicinity" - }, - { - "example": "球界", - "reading": "キュウカイ", - "meaning": "the baseball world" - }, - { - "example": "経済界", - "reading": "ケイザイカイ", - "meaning": "economic world, financial circles, business community" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "个", - "儿", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30028_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0754c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/754c.gif", - "uri": "http://jisho.org/search/%E7%95%8C%23kanji" - }, - { - "query": "開", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "59", - "strokeCount": 12, - "meaning": "open, unfold, unseal", - "kunyomi": [ - "ひら.く", - "ひら.き", - "-びら.き", - "ひら.ける", - "あ.く", - "あ.ける" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "開花", - "reading": "カイカ", - "meaning": "flowers budding, blooming, flowering, showing results, becoming popular, blooming" - }, - { - "example": "開演", - "reading": "カイエン", - "meaning": "curtain raising, starting (e.g. play, concert)" - }, - { - "example": "疎開", - "reading": "ソカイ", - "meaning": "dispersal, evacuation, removal, spreading out (troops), deployment" - }, - { - "example": "非公開", - "reading": "ヒコウカイ", - "meaning": "private, exclusive, secret" - } - ], - "kunyomiExamples": [ - { - "example": "開く", - "reading": "ひらく", - "meaning": "to open, to undo, to unseal, to unpack, to bloom, to unfold, to spread out, to open (for business, e.g. in the morning), to be wide (gap, etc.), to widen, to hold (meeting, party, etc.), to give, to open, to found (nation, dynasty, sect, etc.), to open (a new business), to set up, to establish, to start, to open (ports, borders, etc.), to open (an account), to open up (new land, path, etc.), to clear, to develop, to open (a file, etc.), to extract (root), to reduce (equation), to cut open (fish), to change (kanji into hiragana), to flare (e.g. skirt), to slacken (into a poor posture)" - }, - { - "example": "開き", - "reading": "ひらき", - "meaning": "opening, gap, dried and opened fish" - }, - { - "example": "開き直る", - "reading": "ひらきなおる", - "meaning": "to become defiant, to fight back, to turn upon, to take the offensive" - }, - { - "example": "開ける", - "reading": "ひらける", - "meaning": "to open out (of a view, scenery, etc.), to spread out, to become clear (of a road, visibility, etc.), to open up, to improve (of luck, prospects, etc.), to get better, to develop (of a town, civilization, etc.), to become civilized, to modernize, to grow, to advance (of knowledge, ideas, etc.), to be sensible, to be understanding, to be enlightened, to open (of a new road, railway, etc.), to be opened to traffic, to become populous, to become densely built, to become bustling" - }, - { - "example": "開く", - "reading": "あく", - "meaning": "to open (e.g. doors), to open (e.g. business, etc.), to be empty, to be vacant, to be available, to be free, to be open (e.g. neckline, etc.), to have been opened (of one's eyes, mouth, etc.), to come to an end, to open (one's eyes, mouth, etc.), to have a hole, to form a gap, to have an interval (between events)" - }, - { - "example": "開ける", - "reading": "あける", - "meaning": "to open (a door, etc.), to unwrap (e.g. parcel, package), to unlock, to open (for business, etc.), to empty, to remove, to make space, to make room, to move out, to clear out, to be away from (e.g. one's house), to leave (temporarily), to dawn, to grow light, to end (of a period, season), to begin (of the New Year), to leave (one's schedule) open, to make time (for), to make (a hole), to open up (a hole)" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "ノ", - "一", - "二", - "廾", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38283_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0958b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/958b.gif", - "uri": "http://jisho.org/search/%E9%96%8B%23kanji" - }, - { - "query": "階", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "513", - "strokeCount": 12, - "meaning": "storey, stair, counter for storeys of a building", - "kunyomi": [ - "きざはし" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "階", - "reading": "カイ", - "meaning": "storey, story, floor, stairs, stage (in chronostratigraphy), counter for storeys and floors of a building" - }, - { - "example": "階級", - "reading": "カイキュウ", - "meaning": "(social) class, rank, grade" - }, - { - "example": "中二階", - "reading": "チュウニカイ", - "meaning": "mezzanine floor" - }, - { - "example": "位階", - "reading": "イカイ", - "meaning": "court rank" - } - ], - "kunyomiExamples": [ - { - "example": "階", - "reading": "きざはし", - "meaning": "stairs, stairs at the front of a noh stage" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "比", - "白", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38542_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0968e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/968e.gif", - "uri": "http://jisho.org/search/%E9%9A%8E%23kanji" - }, - { - "query": "寒", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1456", - "strokeCount": 12, - "meaning": "cold", - "kunyomi": [ - "さむ.い" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "寒", - "reading": "カン", - "meaning": "midwinter, cold season, coldest days of the year" - }, - { - "example": "寒気", - "reading": "サムケ", - "meaning": "chill, the shivers, shivering fit, cold, coldness, cold air" - }, - { - "example": "悪寒", - "reading": "オカン", - "meaning": "chill, shakes, ague" - }, - { - "example": "防寒", - "reading": "ボウカン", - "meaning": "protection against cold" - } - ], - "kunyomiExamples": [ - { - "example": "寒い", - "reading": "さむい", - "meaning": "cold (e.g. weather), uninteresting (esp. joke), lame, dull, weak, corny" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ハ", - "一", - "丶", - "井", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23506_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bd2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bd2.gif", - "uri": "http://jisho.org/search/%E5%AF%92%23kanji" - }, - { - "query": "感", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "233", - "strokeCount": 13, - "meaning": "emotion, feeling, sensation", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "感", - "reading": "カン", - "meaning": "feeling, sensation, emotion, admiration, impression, interjection" - }, - { - "example": "感覚", - "reading": "カンカク", - "meaning": "sense, sensation, feeling, intuition" - }, - { - "example": "期待感", - "reading": "キタイカン", - "meaning": "feeling of expectation" - }, - { - "example": "体感", - "reading": "タイカン", - "meaning": "bodily sensation, sense, experience" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "口", - "心", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24863_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0611f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/611f.gif", - "uri": "http://jisho.org/search/%E6%84%9F%23kanji" - }, - { - "query": "漢", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1487", - "strokeCount": 13, - "meaning": "Sino-, China", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "漢", - "reading": "カン", - "meaning": "China, Han dynasty (China, 202 BCE-220 CE), Han (majority Chinese ethnic group), man" - }, - { - "example": "漢字", - "reading": "カンジ", - "meaning": "kanji, Chinese characters" - }, - { - "example": "分からず屋", - "reading": "ワカラズヤ", - "meaning": "obstinate person, blockhead" - }, - { - "example": "門外漢", - "reading": "モンガイカン", - "meaning": "outsider, layman, amateur" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "二", - "口", - "大", - "汁", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28450_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f22.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f22.gif", - "uri": "http://jisho.org/search/%E6%BC%A2%23kanji" - }, - { - "query": "館", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "613", - "strokeCount": 16, - "meaning": "building, mansion, large building, palace", - "kunyomi": [ - "やかた", - "たて" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "館", - "reading": "カン", - "meaning": "house, hall, building" - }, - { - "example": "館長", - "reading": "カンチョウ", - "meaning": "superintendent, director, curator, chief librarian" - }, - { - "example": "在外公館", - "reading": "ザイガイコウカン", - "meaning": "diplomatic mission, overseas diplomatic establishment" - }, - { - "example": "公館", - "reading": "コウカン", - "meaning": "official residence" - } - ], - "kunyomiExamples": [ - { - "example": "館", - "reading": "やかた", - "meaning": "mansion, palace, manor house, castle, nobleman, noblewoman, dignitary, cabin (on a boat, carriage, etc.)" - }, - { - "example": "夏館", - "reading": "なつやかた", - "meaning": "villa arranged appropriately for summer, mansion arranged appropriately for summer" - }, - { - "example": "館", - "reading": "やかた", - "meaning": "mansion, palace, manor house, castle, nobleman, noblewoman, dignitary, cabin (on a boat, carriage, etc.)" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "口", - "宀", - "食", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39208_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09928.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9928.gif", - "uri": "http://jisho.org/search/%E9%A4%A8%23kanji" - }, - { - "query": "岸", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "556", - "strokeCount": 8, - "meaning": "beach", - "kunyomi": [ - "きし" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "岸壁", - "reading": "ガンペキ", - "meaning": "quay, wharf, jetty, steep cliff, cliff wall" - }, - { - "example": "岸頭", - "reading": "ガントウ", - "meaning": "shore, wharf" - }, - { - "example": "護岸", - "reading": "ゴガン", - "meaning": "river dike" - }, - { - "example": "対岸", - "reading": "タイガン", - "meaning": "opposite shore" - } - ], - "kunyomiExamples": [ - { - "example": "岸", - "reading": "きし", - "meaning": "bank, coast, shore" - }, - { - "example": "岸辺", - "reading": "きしべ", - "meaning": "shore, bank (of a body of water)" - }, - { - "example": "片岸", - "reading": "かたぎし", - "meaning": "one bank (of a river)" - }, - { - "example": "彼の岸", - "reading": "かのきし", - "meaning": "nirvana" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "厂", - "山", - "干" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23736_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05cb8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5cb8.gif", - "uri": "http://jisho.org/search/%E5%B2%B8%23kanji" - }, - { - "query": "起", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "374", - "strokeCount": 10, - "meaning": "rouse, wake up, get up", - "kunyomi": [ - "お.きる", - "お.こる", - "お.こす", - "おこ.す", - "た.つ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "起源", - "reading": "キゲン", - "meaning": "origin, beginning, source, rise" - }, - { - "example": "起因", - "reading": "キイン", - "meaning": "cause, origin" - }, - { - "example": "突起", - "reading": "トッキ", - "meaning": "protuberance, projection, prominence, bump, boss, process, apophysis" - }, - { - "example": "決起", - "reading": "ケッキ", - "meaning": "rising to action, standing up against, jumping to one's feet" - } - ], - "kunyomiExamples": [ - { - "example": "起きる", - "reading": "おきる", - "meaning": "to get up, to rise, to blaze up (fire), to wake up, to be awake, to stay awake, to occur (usu. of unfavourable incidents), to happen, to take place" - }, - { - "example": "起こる", - "reading": "おこる", - "meaning": "to occur, to happen" - }, - { - "example": "起こす", - "reading": "おこす", - "meaning": "to raise, to raise up, to set up, to pick up, to wake, to wake up, to waken, to awaken, to cause, to bring about, to lead to, to trigger, to give rise to, to create, to generate (e.g. heat, electricity), to produce, to start, to begin, to launch, to establish, to found, to set up, to open, to plough, to plow, to till, to fall ill with, to transcribe, to write down (what is spoken), to turn over (a card)" - }, - { - "example": "起こす", - "reading": "おこす", - "meaning": "to raise, to raise up, to set up, to pick up, to wake, to wake up, to waken, to awaken, to cause, to bring about, to lead to, to trigger, to give rise to, to create, to generate (e.g. heat, electricity), to produce, to start, to begin, to launch, to establish, to found, to set up, to open, to plough, to plow, to till, to fall ill with, to transcribe, to write down (what is spoken), to turn over (a card)" - }, - { - "example": "起つ", - "reading": "たつ", - "meaning": "to rise up, to initiate (political) action" - } - ], - "radical": { - "symbol": "走", - "forms": [ - "赱" - ], - "meaning": "run" - }, - "parts": [ - "土", - "已", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36215_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d77.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d77.gif", - "uri": "http://jisho.org/search/%E8%B5%B7%23kanji" - }, - { - "query": "期", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "117", - "strokeCount": 12, - "meaning": "period, time, date, term", - "kunyomi": [], - "onyomi": [ - "キ", - "ゴ" - ], - "onyomiExamples": [ - { - "example": "期", - "reading": "キ", - "meaning": "period, time, opportunity, chance, occasion, age, term (e.g. in office), session (e.g. of parliament), stage (e.g. of a disease), season (e.g. of a TV series)" - }, - { - "example": "期間", - "reading": "キカン", - "meaning": "period, term, interval" - }, - { - "example": "周期", - "reading": "シュウキ", - "meaning": "cycle, period" - }, - { - "example": "当期", - "reading": "トウキ", - "meaning": "current term (period)" - }, - { - "example": "期", - "reading": "ゴ", - "meaning": "time, moment, limit, time of death, last moment, midnight in red-light districts during the Edo period" - }, - { - "example": "期日", - "reading": "キジツ", - "meaning": "fixed date, settlement date" - }, - { - "example": "一期", - "reading": "イチゴ", - "meaning": "one's whole life, one's lifetime" - }, - { - "example": "非業の最期", - "reading": "ヒゴウノサイゴ", - "meaning": "unnatural death, violent death" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "ハ", - "月", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26399_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0671f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/671f.gif", - "uri": "http://jisho.org/search/%E6%9C%9F%23kanji" - }, - { - "query": "客", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "557", - "strokeCount": 9, - "meaning": "guest, visitor, customer, client", - "kunyomi": [], - "onyomi": [ - "キャク", - "カク" - ], - "onyomiExamples": [ - { - "example": "客", - "reading": "キャク", - "meaning": "guest, visitor, customer, client, shopper, spectator, audience, tourist, sightseer, passenger, counter for containers used to entertain guests" - }, - { - "example": "客足", - "reading": "キャクアシ", - "meaning": "customer traffic, customers, custom" - }, - { - "example": "論客", - "reading": "ロンキャク", - "meaning": "controversialist" - }, - { - "example": "賓客", - "reading": "ヒンキャク", - "meaning": "guest of honour, guest of honor, privileged guest, visitor" - }, - { - "example": "客", - "reading": "キャク", - "meaning": "guest, visitor, customer, client, shopper, spectator, audience, tourist, sightseer, passenger, counter for containers used to entertain guests" - }, - { - "example": "客員", - "reading": "キャクイン", - "meaning": "guest member, associate member, honorary member" - }, - { - "example": "論客", - "reading": "ロンキャク", - "meaning": "controversialist" - }, - { - "example": "賓客", - "reading": "ヒンキャク", - "meaning": "guest of honour, guest of honor, privileged guest, visitor" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "口", - "夂", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23458_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ba2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ba2.gif", - "uri": "http://jisho.org/search/%E5%AE%A2%23kanji" - }, - { - "query": "究", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "368", - "strokeCount": 7, - "meaning": "research, study", - "kunyomi": [ - "きわ.める" - ], - "onyomi": [ - "キュウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "究明", - "reading": "キュウメイ", - "meaning": "investigation (esp. in academic and scientific contexts)" - }, - { - "example": "究極", - "reading": "キュウキョク", - "meaning": "ultimate, final, last, eventual" - }, - { - "example": "探究", - "reading": "タンキュウ", - "meaning": "research, investigation, enquiry, inquiry, study" - }, - { - "example": "最新研究", - "reading": "サイシンケンキュウ", - "meaning": "the newest research" - }, - { - "example": "究竟", - "reading": "クキョウ", - "meaning": "culmination, conclusion" - }, - { - "example": "究竟", - "reading": "クッキョウ", - "meaning": "after all, in the end, finally, excellent, superb, handy, appropriate, ideal, robust, brawny, muscular, strong, sturdy" - } - ], - "kunyomiExamples": [ - { - "example": "極める", - "reading": "きわめる", - "meaning": "to carry to extremes, to go to the end of something, to investigate thoroughly, to master" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "九", - "儿", - "宀", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31350_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a76.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a76.gif", - "uri": "http://jisho.org/search/%E7%A9%B6%23kanji" - }, - { - "query": "急", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "309", - "strokeCount": 9, - "meaning": "hurry, emergency, sudden, steep", - "kunyomi": [ - "いそ.ぐ", - "いそ.ぎ", - "せ.く" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "急", - "reading": "キュウ", - "meaning": "sudden, abrupt, unexpected, urgent, pressing, steep, sharp, precipitous, rapid, swift, fast, emergency, crisis, danger, urgency, hurrying, haste, (in gagaku or noh) end of a song" - }, - { - "example": "急遽", - "reading": "キュウキョ", - "meaning": "hurriedly, in a hurry, in haste, sudden" - }, - { - "example": "準急", - "reading": "ジュンキュウ", - "meaning": "semi-express train, local express train, sub-express train" - }, - { - "example": "快急", - "reading": "カイキュウ", - "meaning": "rapid express (train)" - } - ], - "kunyomiExamples": [ - { - "example": "急ぐ", - "reading": "いそぐ", - "meaning": "to hurry, to rush, to hasten, to make something happen sooner" - }, - { - "example": "急ぎ", - "reading": "いそぎ", - "meaning": "haste, hurry, expedition, speed, dispatch" - }, - { - "example": "急ぎ足", - "reading": "いそぎあし", - "meaning": "fast pace, quick pace" - }, - { - "example": "急く", - "reading": "せく", - "meaning": "to hurry, to rush" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ヨ", - "勹", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24613_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06025.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6025.gif", - "uri": "http://jisho.org/search/%E6%80%A5%23kanji" - }, - { - "query": "級", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "785", - "strokeCount": 9, - "meaning": "class, rank, grade", - "kunyomi": [], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "級", - "reading": "キュウ", - "meaning": "class (e.g. school), grade, rank, kyū, kyu, junior rank in martial arts, go, shogi, etc." - }, - { - "example": "級友", - "reading": "キュウユウ", - "meaning": "classmate" - }, - { - "example": "同級", - "reading": "ドウキュウ", - "meaning": "the same grade, same class" - }, - { - "example": "最高級", - "reading": "サイコウキュウ", - "meaning": "highest grade, top class" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ノ", - "及", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32026_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d1a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d1a.gif", - "uri": "http://jisho.org/search/%E7%B4%9A%23kanji" - }, - { - "query": "宮", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "367", - "strokeCount": 10, - "meaning": "Shinto shrine, constellations, palace, princess", - "kunyomi": [ - "みや" - ], - "onyomi": [ - "キュウ", - "グウ", - "ク", - "クウ" - ], - "onyomiExamples": [ - { - "example": "宮", - "reading": "キュウ", - "meaning": "palace, tonic (of the Japanese and Chinese pentatonic scale), ancient Chinese punishment (castration for men, or confinement for women), zodiacal sign" - }, - { - "example": "宮中", - "reading": "キュウチュウ", - "meaning": "imperial court" - }, - { - "example": "離宮", - "reading": "リキュウ", - "meaning": "imperial villa, royal villa, detached palace" - }, - { - "example": "巨蟹宮", - "reading": "キョカイキュウ", - "meaning": "Cancer (4th zodiacal sign), the Crab" - }, - { - "example": "宮司", - "reading": "グウジ", - "meaning": "chief priest" - }, - { - "example": "宮寺", - "reading": "グウジ", - "meaning": "Buddhist temple within a Shinto shrine" - }, - { - "example": "二宮", - "reading": "ニグウ", - "meaning": "the Two Ise Shrines" - }, - { - "example": "東宮", - "reading": "トウグウ", - "meaning": "crown prince" - }, - { - "example": "宮内庁", - "reading": "クナイチョウ", - "meaning": "Imperial Household Agency" - }, - { - "example": "宮内", - "reading": "クナイ", - "meaning": "inside the Imperial Palace, Department of the Imperial Household" - }, - { - "example": "月宮", - "reading": "ゲッキュウ", - "meaning": "moon palace of the Hindu god Chandra" - }, - { - "example": "夙", - "reading": "シュク", - "meaning": "outcasts common around the Kyoto region from the Kamakura period to the Edo period" - }, - { - "example": "内宮", - "reading": "ナイクウ", - "meaning": "Inner Ise Shrine" - }, - { - "example": "外宮", - "reading": "ゲクウ", - "meaning": "outer shrine of the Ise Grand Shrine" - } - ], - "kunyomiExamples": [ - { - "example": "宮", - "reading": "みや", - "meaning": "shrine, palace, imperial residence, Imperial prince, Imperial princess, headboard with built-in shelves, drawers, etc., temple" - }, - { - "example": "宮家", - "reading": "みやけ", - "meaning": "house of a prince of the blood" - }, - { - "example": "若宮", - "reading": "わかみや", - "meaning": "young imperial prince, child of the imperial family, shrine dedicated to a child of the god of the main shrine, newly built shrine (to which a divided tutelary deity has just been transferred)" - }, - { - "example": "大宮", - "reading": "おおみや", - "meaning": "imperial palace, shrine, Grand Empress Dowager, Empress Dowager, woman of imperial lineage who has borne a child, elderly woman of imperial lineage" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ノ", - "口", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23470_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bae.gif", - "uri": "http://jisho.org/search/%E5%AE%AE%23kanji" - }, - { - "query": "球", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "302", - "strokeCount": 11, - "meaning": "ball, sphere", - "kunyomi": [ - "たま" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "球", - "reading": "キュウ", - "meaning": "sphere, counter for balls" - }, - { - "example": "球威", - "reading": "キュウイ", - "meaning": "(pitcher's) stuff" - }, - { - "example": "配球", - "reading": "ハイキュウ", - "meaning": "combination of (varied) pitches, serves, etc." - }, - { - "example": "制球", - "reading": "セイキュウ", - "meaning": "(pitcher's) control" - } - ], - "kunyomiExamples": [ - { - "example": "玉", - "reading": "たま", - "meaning": "ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, coin, precious, beautiful, excellent" - }, - { - "example": "玉突き", - "reading": "たまつき", - "meaning": "billiards, pool, serial collisions (of cars)" - }, - { - "example": "電気の球", - "reading": "でんきのたま", - "meaning": "electric (light) bulb" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "丶", - "水", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29699_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07403.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7403.gif", - "uri": "http://jisho.org/search/%E7%90%83%23kanji" - }, - { - "query": "去", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "440", - "strokeCount": 5, - "meaning": "gone, past, quit, leave, elapse, eliminate, divorce", - "kunyomi": [ - "さ.る", - "-さ.る" - ], - "onyomi": [ - "キョ", - "コ" - ], - "onyomiExamples": [ - { - "example": "去年", - "reading": "キョネン", - "meaning": "last year" - }, - { - "example": "去就", - "reading": "キョシュウ", - "meaning": "leaving or staying, (one's) course of action, (one's) position, (one's) attitude" - }, - { - "example": "消去", - "reading": "ショウキョ", - "meaning": "elimination, erasure, clearing, dissipating, melting away, elimination (of variables)" - }, - { - "example": "強制退去", - "reading": "キョウセイタイキョ", - "meaning": "forced eviction, deport" - }, - { - "example": "去年", - "reading": "キョネン", - "meaning": "last year" - }, - { - "example": "大過去", - "reading": "ダイカコ", - "meaning": "past perfect tense, pluperfect" - }, - { - "example": "不定過去", - "reading": "フテイカコ", - "meaning": "aorist tense (Greek), past-perfective tense" - } - ], - "kunyomiExamples": [ - { - "example": "去る", - "reading": "さる", - "meaning": "to leave, to go away, to pass, to elapse, to be distant, to send away, to drive off, to divorce, to (do) completely, last ... (e.g. \"last April\")" - }, - { - "example": "去る者追わず", - "reading": "さるものおわず", - "meaning": "do not chase the one who leaves" - } - ], - "radical": { - "symbol": "厶", - "meaning": "private" - }, - "parts": [ - "厶", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21435_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053bb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53bb.gif", - "uri": "http://jisho.org/search/%E5%8E%BB%23kanji" - }, - { - "query": "橋", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "553", - "strokeCount": 16, - "meaning": "bridge", - "kunyomi": [ - "はし" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "橋", - "reading": "キョウ", - "meaning": "pons (pontes), pons Varolii, pontine, part of the brain stem (links the medulla oblongata and cerebellum with the midbrain)" - }, - { - "example": "橋脚", - "reading": "キョウキャク", - "meaning": "bridge pier, pontoon bridge" - }, - { - "example": "桟橋", - "reading": "サンバシ", - "meaning": "wharf, bridge, jetty, pier" - }, - { - "example": "石橋", - "reading": "イシバシ", - "meaning": "stone bridge" - } - ], - "kunyomiExamples": [ - { - "example": "橋", - "reading": "はし", - "meaning": "bridge" - }, - { - "example": "橋渡し", - "reading": "はしわたし", - "meaning": "bridge building, mediation, go-between, intermediary, (through the) good offices (of someone)" - }, - { - "example": "舟橋", - "reading": "ふなはし", - "meaning": "pontoon" - }, - { - "example": "浮き橋", - "reading": "うきはし", - "meaning": "floating bridge, pontoon bridge" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "冂", - "口", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27211_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a4b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a4b.gif", - "uri": "http://jisho.org/search/%E6%A9%8B%23kanji" - }, - { - "query": "業", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "43", - "strokeCount": 13, - "meaning": "business, vocation, arts, performance", - "kunyomi": [ - "わざ" - ], - "onyomi": [ - "ギョウ", - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "業", - "reading": "ギョウ", - "meaning": "work, business, company, agency, study" - }, - { - "example": "業界", - "reading": "ギョウカイ", - "meaning": "business world, business circles, (the) industry" - }, - { - "example": "興業", - "reading": "コウギョウ", - "meaning": "promotion of industry, inauguration of a new industrial enterprise" - }, - { - "example": "鉱業", - "reading": "コウギョウ", - "meaning": "mining industry" - }, - { - "example": "業", - "reading": "ゴウ", - "meaning": "karma, result of one's karma, fate, destiny, uncontrollable temper" - }, - { - "example": "業因", - "reading": "ゴウイン", - "meaning": "karma" - }, - { - "example": "罪業", - "reading": "ザイゴウ", - "meaning": "sin, iniquity, crime" - }, - { - "example": "正業", - "reading": "ショウゴウ", - "meaning": "right action, correct meditative activity (in Jodo, saying the name of Amitabha)" - } - ], - "kunyomiExamples": [ - { - "example": "業", - "reading": "わざ", - "meaning": "deed, act, work, performance" - }, - { - "example": "業師", - "reading": "わざし", - "meaning": "tricky wrestler, shrewd fellow" - }, - { - "example": "寝技", - "reading": "ねわざ", - "meaning": "pinning technique (in wrestling or judo), underhanded dealings" - }, - { - "example": "投げ技", - "reading": "なげわざ", - "meaning": "throw or throwing technique (sumo, judo)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "并", - "木", - "王", - "羊", - "耒", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26989_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0696d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/696d.gif", - "uri": "http://jisho.org/search/%E6%A5%AD%23kanji" - }, - { - "query": "曲", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "810", - "strokeCount": 6, - "meaning": "bend, music, melody, composition, pleasure, injustice, fault, curve, crooked, perverse, lean", - "kunyomi": [ - "ま.がる", - "ま.げる", - "くま" - ], - "onyomi": [ - "キョク" - ], - "onyomiExamples": [ - { - "example": "曲", - "reading": "キョク", - "meaning": "composition, piece of music, song, track (on a record), tune, melody, air, enjoyment, fun, interest, pleasure" - }, - { - "example": "曲折", - "reading": "キョクセツ", - "meaning": "windings, meanderings, complications, twists and turns" - }, - { - "example": "歌謡曲", - "reading": "カヨウキョク", - "meaning": "kayōkyoku, form of Japanese popular music that developed during the Showa era, (Western) pop song" - }, - { - "example": "名曲", - "reading": "メイキョク", - "meaning": "famous piece of music, excellent song, (musical) masterpiece" - } - ], - "kunyomiExamples": [ - { - "example": "曲がる", - "reading": "まがる", - "meaning": "to bend, to curve, to warp, to wind, to twist, to turn, to be awry, to be askew, to be crooked" - }, - { - "example": "曲げる", - "reading": "まげる", - "meaning": "to bend, to crook, to bow, to curve, to curl, to lean, to tilt, to incline, to slant, to bend (the truth), to distort, to twist, to pervert, to yield (a point), to depart (from a principle), to ignore (what one really thinks), to pawn" - }, - { - "example": "隈", - "reading": "くま", - "meaning": "corner, nook, recess, shade, shadow, dark area, dark circles (under the eyes), dark rings, shading, gradation, kumadori, style of kabuki makeup used for violent roles" - } - ], - "radical": { - "symbol": "曰", - "meaning": "say" - }, - "parts": [ - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26354_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66f2.gif", - "uri": "http://jisho.org/search/%E6%9B%B2%23kanji" - }, - { - "query": "局", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "286", - "strokeCount": 7, - "meaning": "bureau, board, office, affair, conclusion, court lady, lady-in-waiting, her apartment", - "kunyomi": [ - "つぼね" - ], - "onyomi": [ - "キョク" - ], - "onyomiExamples": [ - { - "example": "局", - "reading": "キョク", - "meaning": "bureau, department, office (e.g. post, telephone), broadcasting station (e.g. television, radio), channel, exchange, affair, situation, game (of go, shogi, etc.)" - }, - { - "example": "局員", - "reading": "キョクイン", - "meaning": "clerk, (bureau, post-office) staff" - }, - { - "example": "医局", - "reading": "イキョク", - "meaning": "medical office (esp. in a hospital), doctor's office" - }, - { - "example": "開局", - "reading": "カイキョク", - "meaning": "opening (of a broadcasting station, post office, bureau, etc.), establishment" - } - ], - "kunyomiExamples": [ - { - "example": "局", - "reading": "つぼね", - "meaning": "court lady, lady-in-waiting (Heian period), separate room in a palace (esp. for a lady) (Heian period), room for a very low class prostitute, very low class prostitute" - }, - { - "example": "局女郎", - "reading": "つぼねじょろう", - "meaning": "prostitute of the lowest class (Edo period)" - }, - { - "example": "御局", - "reading": "おつぼね", - "meaning": "court lady with her own private chamber or office, low-class prostitute (Edo period)" - }, - { - "example": "お局", - "reading": "おつぼね", - "meaning": "senior female worker who supervises junior employees in a domineering fashion" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "口", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23616_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c40.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c40.gif", - "uri": "http://jisho.org/search/%E5%B1%80%23kanji" - }, - { - "query": "銀", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "395", - "strokeCount": 14, - "meaning": "silver", - "kunyomi": [ - "しろがね" - ], - "onyomi": [ - "ギン" - ], - "onyomiExamples": [ - { - "example": "銀", - "reading": "ギン", - "meaning": "silver (Ag), silver coin, money, silver medal, silver colour, silver color, bank, silver general" - }, - { - "example": "銀色", - "reading": "ギンイロ", - "meaning": "silver (color, colour)" - }, - { - "example": "世銀", - "reading": "セギン", - "meaning": "World Bank" - }, - { - "example": "水銀", - "reading": "スイギン", - "meaning": "mercury (Hg)" - } - ], - "kunyomiExamples": [ - { - "example": "銀", - "reading": "ぎん", - "meaning": "silver (Ag), silver coin, money, silver medal, silver colour, silver color, bank, silver general" - }, - { - "example": "銀鯵", - "reading": "しろがねあじ", - "meaning": "lookdown (Selene vomer)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "艮", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37504_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09280.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9280.gif", - "uri": "http://jisho.org/search/%E9%8A%80%23kanji" - }, - { - "query": "区", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "137", - "strokeCount": 4, - "meaning": "ward, district", - "kunyomi": [], - "onyomi": [ - "ク", - "オウ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "区", - "reading": "ク", - "meaning": "ward, borough, city (in Tokyo), district (e.g. electoral), section, zone (e.g. postal)" - }, - { - "example": "区域", - "reading": "クイキ", - "meaning": "limits, boundary, domain, zone, sphere, territory, area (e.g. in programming languages)" - }, - { - "example": "学区", - "reading": "ガック", - "meaning": "school district, school area" - }, - { - "example": "鉱区", - "reading": "コウク", - "meaning": "mining area, mine lot" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "匸", - "meaning": "hiding enclosure" - }, - "parts": [ - "ノ", - "丶", - "匚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21306_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0533a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/533a.gif", - "uri": "http://jisho.org/search/%E5%8C%BA%23kanji" - }, - { - "query": "苦", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "623", - "strokeCount": 8, - "meaning": "suffering, trial, worry, hardship, feel bitter, scowl", - "kunyomi": [ - "くる.しい", - "-ぐる.しい", - "くる.しむ", - "くる.しめる", - "にが.い", - "にが.る" - ], - "onyomi": [ - "ク" - ], - "onyomiExamples": [ - { - "example": "苦", - "reading": "ク", - "meaning": "pain, anguish, suffering, distress, anxiety, worry, trouble, difficulty, hardship, duhkha (suffering)" - }, - { - "example": "苦境", - "reading": "クキョウ", - "meaning": "difficult situation, adverse circumstances, predicament, trouble, dilemma, distress" - }, - { - "example": "生活苦", - "reading": "セイカツク", - "meaning": "life's struggles" - }, - { - "example": "病苦", - "reading": "ビョウク", - "meaning": "pain of sickness" - } - ], - "kunyomiExamples": [ - { - "example": "苦しい", - "reading": "くるしい", - "meaning": "painful, difficult, tough, hard, distressing, (psychologically) difficult, stressful, awkward (e.g. position), straitened (circumstances), tight (financial situation), needy, struggling, strained (interpretation, explanation, etc.), lame (e.g. excuse), forced (e.g. smile), far-fetched, hard to do, unpleasant" - }, - { - "example": "苦しい言い訳", - "reading": "くるしいいいわけ", - "meaning": "lame excuse, poor excuse" - }, - { - "example": "苦しむ", - "reading": "くるしむ", - "meaning": "to suffer, to groan, to be worried" - }, - { - "example": "苦しめる", - "reading": "くるしめる", - "meaning": "to torment, to pain, to inflict (physical) pain, to hurt, to harass, to cause (emotional) pain, to afflict, to distress, to bother, to trouble, to stump, to baffle" - }, - { - "example": "苦い", - "reading": "にがい", - "meaning": "bitter" - }, - { - "example": "苦い薬", - "reading": "にがいくすり", - "meaning": "bitter medicine" - }, - { - "example": "苦る", - "reading": "にがる", - "meaning": "to feel bitter, to scowl" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "十", - "口", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33510_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082e6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82e6.gif", - "uri": "http://jisho.org/search/%E8%8B%A6%23kanji" - }, - { - "query": "具", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "629", - "strokeCount": 8, - "meaning": "tool, utensil, means, possess, ingredients, counter for armor, suits, sets of furniture", - "kunyomi": [ - "そな.える", - "つぶさ.に" - ], - "onyomi": [ - "グ" - ], - "onyomiExamples": [ - { - "example": "具", - "reading": "グ", - "meaning": "tool, means, ingredients (added to soup, rice, etc.), counter for sets of armor, utensils, furniture, etc." - }, - { - "example": "具合", - "reading": "グアイ", - "meaning": "condition, state, health, state (of health), way, manner, circumstance, luck, face, dignity, decency, propriety" - }, - { - "example": "文具", - "reading": "ブング", - "meaning": "stationery" - }, - { - "example": "金具", - "reading": "カナグ", - "meaning": "metal fittings, metal fixtures" - } - ], - "kunyomiExamples": [ - { - "example": "備える", - "reading": "そなえる", - "meaning": "to furnish with, to equip with, to provide, to install, to prepare for, to make preparations for, to make provision for, to possess (all that is needed), to be endowed with, to be equipped with, to be born with, to have since birth" - }, - { - "example": "具に", - "reading": "つぶさに", - "meaning": "in detail, with great care, completely, fully" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "一", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20855_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05177.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5177.gif", - "uri": "http://jisho.org/search/%E5%85%B7%23kanji" - }, - { - "query": "君", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "947", - "strokeCount": 7, - "meaning": "mister, you, ruler, male name suffix", - "kunyomi": [ - "きみ", - "-ぎみ" - ], - "onyomi": [ - "クン" - ], - "onyomiExamples": [ - { - "example": "君", - "reading": "クン", - "meaning": "Mr (junior), master, boy" - }, - { - "example": "君子", - "reading": "クンシ", - "meaning": "man of virtue, wise man, (true) gentleman, person of high rank, the four gentlemen (plum, chrysanthemum, orchid, and bamboo)" - }, - { - "example": "夫君", - "reading": "フクン", - "meaning": "(another's) husband" - }, - { - "example": "名君", - "reading": "メイクン", - "meaning": "wise ruler, enlightened monarch, benevolent lord" - } - ], - "kunyomiExamples": [ - { - "example": "君", - "reading": "きみ", - "meaning": "you, buddy, pal, monarch, ruler, sovereign, (one's) master" - }, - { - "example": "君が代", - "reading": "きみがよ", - "meaning": "Imperial reign, Kimigayo (Japanese national anthem)" - }, - { - "example": "大君", - "reading": "おおきみ", - "meaning": "emperor, king, prince" - }, - { - "example": "嫁が君", - "reading": "よめがきみ", - "meaning": "mouse" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "ヨ", - "一", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21531_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0541b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/541b.gif", - "uri": "http://jisho.org/search/%E5%90%9B%23kanji" - }, - { - "query": "係", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "232", - "strokeCount": 9, - "meaning": "person in charge, connection, duty, concern oneself", - "kunyomi": [ - "かか.る", - "かかり", - "-がかり", - "かか.わる" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "係争", - "reading": "ケイソウ", - "meaning": "contention, dispute, conflict, controversy" - }, - { - "example": "係数", - "reading": "ケイスウ", - "meaning": "coefficient, factor, proportional constant" - }, - { - "example": "相関関係", - "reading": "ソウカンカンケイ", - "meaning": "correlation, interrelation, intertwining" - }, - { - "example": "三角関係", - "reading": "サンカクカンケイ", - "meaning": "love triangle, eternal triangle" - } - ], - "kunyomiExamples": [ - { - "example": "係る", - "reading": "かかる", - "meaning": "to be the work of, to be the result of, to be done by, to concern, to affect, to involve, to relate to" - }, - { - "example": "係", - "reading": "かかり", - "meaning": "charge, duty, person in charge, official, clerk, connection, linking" - }, - { - "example": "係員", - "reading": "かかりいん", - "meaning": "person in charge, official, attendant" - }, - { - "example": "口座係", - "reading": "こうざかかり", - "meaning": "teller (in bank)" - }, - { - "example": "応接係", - "reading": "おうせつかかり", - "meaning": "receptionist, desk clerk" - }, - { - "example": "関わる", - "reading": "かかわる", - "meaning": "to be affected, to be influenced, to be concerned with, to have to do with, to stick to (opinions)" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "化", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20418_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fc2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fc2.gif", - "uri": "http://jisho.org/search/%E4%BF%82%23kanji" - }, - { - "query": "軽", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "790", - "strokeCount": 12, - "meaning": "lightly, trifling, unimportant", - "kunyomi": [ - "かる.い", - "かろ.やか", - "かろ.んじる" - ], - "onyomi": [ - "ケイ", - "キョウ", - "キン" - ], - "onyomiExamples": [ - { - "example": "軽", - "reading": "ケイ", - "meaning": "light (e.g. aircraft, truck), light motor vehicle (up to 660cc and 64bhp), kei car" - }, - { - "example": "軽快", - "reading": "ケイカイ", - "meaning": "light (of movements), nimble, sprightly, springy, light-hearted, cheerful, buoyant, jaunty, casual (e.g. clothing), rhythmical (e.g. melody), taking a turn for the better (of an illness), receding of symptoms, recovery, convalescence" - }, - { - "example": "軽々", - "reading": "ケイケイ", - "meaning": "indiscreetly, thoughtlessly, carelessly, frivolously" - }, - { - "example": "酌量減軽", - "reading": "シャクリョウゲンケイ", - "meaning": "reduction of punishment in the light of extenuating circumstances" - }, - { - "example": "軽忽", - "reading": "キョウコツ", - "meaning": "indiscreet, thoughtless, absurd, laughable, disdaining, belittling" - }, - { - "example": "常不軽", - "reading": "ジョウフキョウ", - "meaning": "Sadaparibhuta (bodhisattva)" - }, - { - "example": "剽軽", - "reading": "ヒョウキン", - "meaning": "facetious, droll, funny" - } - ], - "kunyomiExamples": [ - { - "example": "軽い", - "reading": "かるい", - "meaning": "light (i.e. not heavy), feeling light (i.e. offering little resistance, moving easily), light (i.e. of foot), effortless, nimble, agile, non-serious, minor, unimportant, trivial, slight, small, gentle, soft, easy, lighthearted (e.g. joke), easy, simple, indiscriminate" - }, - { - "example": "軽石", - "reading": "かるいし", - "meaning": "pumice stone" - }, - { - "example": "軽やか", - "reading": "かろやか", - "meaning": "light, easy, non-serious, minor" - }, - { - "example": "軽んじる", - "reading": "かろんじる", - "meaning": "to look down on, to make light of" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "又", - "土", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36605_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08efd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8efd.gif", - "uri": "http://jisho.org/search/%E8%BB%BD%23kanji" - }, - { - "query": "血", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "832", - "strokeCount": 6, - "meaning": "blood", - "kunyomi": [ - "ち" - ], - "onyomi": [ - "ケツ" - ], - "onyomiExamples": [ - { - "example": "血液", - "reading": "ケツエキ", - "meaning": "blood" - }, - { - "example": "血圧", - "reading": "ケツアツ", - "meaning": "blood pressure" - }, - { - "example": "脳出血", - "reading": "ノウシュッケツ", - "meaning": "cerebral hemorrhage, cerebral haemorrhage" - }, - { - "example": "熱血", - "reading": "ネッケツ", - "meaning": "hot blood, warm blood, zeal, fervor, fervour, ardor, ardour, enthusiasm" - } - ], - "kunyomiExamples": [ - { - "example": "血", - "reading": "ち", - "meaning": "blood, blood, ancestry, lineage, stock, (the) blood, feelings, passions" - }, - { - "example": "血筋", - "reading": "ちすじ", - "meaning": "lineage, stock, strain, blood relationship" - }, - { - "example": "生き血", - "reading": "いきち", - "meaning": "lifeblood" - }, - { - "example": "悪血", - "reading": "あくち", - "meaning": "impure blood" - } - ], - "radical": { - "symbol": "血", - "meaning": "blood" - }, - "parts": [ - "皿", - "血" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34880_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08840.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8840.gif", - "uri": "http://jisho.org/search/%E8%A1%80%23kanji" - }, - { - "query": "決", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "71", - "strokeCount": 7, - "meaning": "decide, fix, agree upon, appoint", - "kunyomi": [ - "き.める", - "-ぎ.め", - "き.まる", - "さ.く" - ], - "onyomi": [ - "ケツ" - ], - "onyomiExamples": [ - { - "example": "決", - "reading": "ケツ", - "meaning": "decision, vote" - }, - { - "example": "決意", - "reading": "ケツイ", - "meaning": "decision, determination, resolution" - }, - { - "example": "表決", - "reading": "ヒョウケツ", - "meaning": "vote, voting" - }, - { - "example": "強行採決", - "reading": "キョウコウサイケツ", - "meaning": "steamroller voting, steamrollering" - } - ], - "kunyomiExamples": [ - { - "example": "決める", - "reading": "きめる", - "meaning": "to decide, to choose, to determine, to make up one's mind, to resolve, to set one's heart on, to settle, to arrange, to set, to appoint, to fix, to clinch (a victory), to decide (the outcome of a match), to persist in doing, to go through with, to always do, to have made a habit of, to take for granted, to assume, to dress up, to dress to kill, to dress to the nines, to carry out successfully (a move in sports, a pose in dance, etc.), to succeed in doing, to immobilize with a double-arm lock (in sumo, judo, etc.), to eat or drink something, to take illegal drugs" - }, - { - "example": "決まる", - "reading": "きまる", - "meaning": "to be decided, to be settled, to be fixed, to be arranged, to be unchanging, to be the same (as always), to be fixed, to be set, to be a fixed rule, to be destined, to be a convention, to be a custom, to be common knowledge, to be well executed (of a manoeuvre in a sport, game, etc.), to go well, to succeed, to connect (of a punch), to look good (of clothing), to look sharp, to be stylish, to suit one, to be held in place (of a hairdo), to be struck and held (of a pose in kabuki)" - }, - { - "example": "決る", - "reading": "しゃくる", - "meaning": "to dig out, to gouge out, to hollow out, to scoop, to ladle, to bail, to jerk (one's chin)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ユ", - "二", - "人", - "大", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27770_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c7a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c7a.gif", - "uri": "http://jisho.org/search/%E6%B1%BA%23kanji" - }, - { - "query": "研", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "336", - "strokeCount": 9, - "meaning": "polish, study of, sharpen", - "kunyomi": [ - "と.ぐ" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "研究員", - "reading": "ケンキュウイン", - "meaning": "researcher, lab worker" - }, - { - "example": "研究", - "reading": "ケンキュウ", - "meaning": "study, research, investigation" - }, - { - "example": "予研", - "reading": "ヨケン", - "meaning": "National Institute of Health" - }, - { - "example": "技研", - "reading": "ギケン", - "meaning": "technical research institute" - } - ], - "kunyomiExamples": [ - { - "example": "研ぐ", - "reading": "とぐ", - "meaning": "to sharpen, to hone, to whet, to grind, to wash (rice), to scour, to polish, to burnish" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "ノ", - "一", - "亅", - "二", - "口", - "廾", - "石", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30740_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07814.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7814.gif", - "uri": "http://jisho.org/search/%E7%A0%94%23kanji" - }, - { - "query": "県", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "140", - "strokeCount": 9, - "meaning": "prefecture", - "kunyomi": [ - "か.ける" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "県", - "reading": "ケン", - "meaning": "prefecture (Japan), county (China, Taiwan, Norway, etc.), department (France), province (Italy, Spain, etc.)" - }, - { - "example": "県営", - "reading": "ケンエイ", - "meaning": "(under) prefectural management" - }, - { - "example": "都道府県", - "reading": "トドウフケン", - "meaning": "administrative divisions of Japan: Tokyo-to, Hokkai-do, Osaka-fu, Kyoto-fu and remaining prefectures" - }, - { - "example": "同県", - "reading": "ドウケン", - "meaning": "the same prefecture" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "小", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30476_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0770c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/770c.gif", - "uri": "http://jisho.org/search/%E7%9C%8C%23kanji" - }, - { - "query": "庫", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "852", - "strokeCount": 10, - "meaning": "warehouse, storehouse", - "kunyomi": [ - "くら" - ], - "onyomi": [ - "コ", - "ク" - ], - "onyomiExamples": [ - { - "example": "庫内", - "reading": "コナイ", - "meaning": "inside (refrigerator, warehouse, etc.)" - }, - { - "example": "住宅金融公庫", - "reading": "ジュウタクキンユウコウコ", - "meaning": "Government Housing Loan Corporation" - }, - { - "example": "公庫", - "reading": "コウコ", - "meaning": "finance corporation" - }, - { - "example": "蔵", - "reading": "クラ", - "meaning": "warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator" - }, - { - "example": "庫院", - "reading": "クイン", - "meaning": "kitchen-cum-office of a Zen temple or monastery, where meals are prepared and senior priests have their offices" - } - ], - "kunyomiExamples": [ - { - "example": "蔵", - "reading": "くら", - "meaning": "warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator" - }, - { - "example": "蔵入れ", - "reading": "くらいれ", - "meaning": "warehousing, storing in a warehouse" - }, - { - "example": "神庫", - "reading": "ほくら", - "meaning": "small shrine, depository for sacred objects" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "广", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24235_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05eab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5eab.gif", - "uri": "http://jisho.org/search/%E5%BA%AB%23kanji" - }, - { - "query": "湖", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1344", - "strokeCount": 12, - "meaning": "lake", - "kunyomi": [ - "みずうみ" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "湖", - "reading": "コ", - "meaning": "lake (in place names)" - }, - { - "example": "湖沼", - "reading": "コショウ", - "meaning": "lake, marsh, wetland, inland waters" - }, - { - "example": "汽水湖", - "reading": "キスイコ", - "meaning": "brackish lake" - }, - { - "example": "塩水湖", - "reading": "エンスイコ", - "meaning": "saltwater or saline lake" - } - ], - "kunyomiExamples": [ - { - "example": "湖", - "reading": "みずうみ", - "meaning": "lake" - }, - { - "example": "白鳥の湖", - "reading": "はくちょうのみずうみ", - "meaning": "Swan Lake (ballet)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "十", - "口", - "月", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28246_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e56.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e56.gif", - "uri": "http://jisho.org/search/%E6%B9%96%23kanji" - }, - { - "query": "向", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "182", - "strokeCount": 6, - "meaning": "yonder, facing, beyond, confront, defy, tend toward, approach", - "kunyomi": [ - "む.く", - "む.い", - "-む.き", - "む.ける", - "-む.け", - "む.かう", - "む.かい", - "む.こう", - "む.こう-", - "むこ", - "むか.い" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "向上", - "reading": "コウジョウ", - "meaning": "elevation, rise, improvement, advancement, progress" - }, - { - "example": "向後", - "reading": "コウゴ", - "meaning": "hereafter" - }, - { - "example": "趣向", - "reading": "シュコウ", - "meaning": "plan, idea, design, plot" - }, - { - "example": "性向", - "reading": "セイコウ", - "meaning": "inclination, tendency, nature, character" - } - ], - "kunyomiExamples": [ - { - "example": "向く", - "reading": "むく", - "meaning": "to turn toward, to look (up, down, etc.), to face (e.g. east), to look out on, to point to, to be suited to, to be fit for, to go in the direction of, to lean towards (of a feeling)" - }, - { - "example": "向いている", - "reading": "むいている", - "meaning": "to be cut out for (e.g. a job), to be suited (to)" - }, - { - "example": "向ける", - "reading": "むける", - "meaning": "to turn towards, to point" - }, - { - "example": "向かう", - "reading": "むかう", - "meaning": "to face, to go towards, to head towards" - }, - { - "example": "向かうところ敵無し", - "reading": "むかうところてきなし", - "meaning": "unbeatable, invincible, irresistible" - }, - { - "example": "向い", - "reading": "むかい", - "meaning": "facing, opposite, across the street, other side" - }, - { - "example": "向かい合う", - "reading": "むかいあう", - "meaning": "to be opposite, to face each other" - }, - { - "example": "向こう", - "reading": "むこう", - "meaning": "opposite side, other side, opposite direction, over there, that way, far away, beyond, the other party, the other person, future (starting now)" - }, - { - "example": "向こう側", - "reading": "むこうがわ", - "meaning": "other side, opposite side, other party" - }, - { - "example": "向こう", - "reading": "むこう", - "meaning": "opposite side, other side, opposite direction, over there, that way, far away, beyond, the other party, the other person, future (starting now)" - }, - { - "example": "向こう側", - "reading": "むこうがわ", - "meaning": "other side, opposite side, other party" - }, - { - "example": "向い", - "reading": "むかい", - "meaning": "facing, opposite, across the street, other side" - }, - { - "example": "向かい合う", - "reading": "むかいあう", - "meaning": "to be opposite, to face each other" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "冂", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21521_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05411.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5411.gif", - "uri": "http://jisho.org/search/%E5%90%91%23kanji" - }, - { - "query": "幸", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "786", - "strokeCount": 8, - "meaning": "happiness, blessing, fortune", - "kunyomi": [ - "さいわ.い", - "さち", - "しあわ.せ" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "幸", - "reading": "サチ", - "meaning": "good luck, fortune, happiness, harvest, yield" - }, - { - "example": "幸運", - "reading": "コウウン", - "meaning": "good luck, fortune" - }, - { - "example": "親不孝", - "reading": "オヤフコウ", - "meaning": "lack of filial piety, disobedience to one's parents" - }, - { - "example": "御幸", - "reading": "ギョウキ", - "meaning": "imperial visit, imperial outing" - } - ], - "kunyomiExamples": [ - { - "example": "幸い", - "reading": "さいわい", - "meaning": "happiness, blessedness, luck, fortune, felicity, luckily, fortunately" - }, - { - "example": "幸いあれ", - "reading": "さいわいあれ", - "meaning": "be happy!, cheer up!" - }, - { - "example": "幸", - "reading": "さち", - "meaning": "good luck, fortune, happiness, harvest, yield" - }, - { - "example": "幸ある", - "reading": "さちある", - "meaning": "fortunate, happy, lucky" - }, - { - "example": "川の幸", - "reading": "かわのさち", - "meaning": "catch (fish) of the river, products of the river, fruits of the river" - }, - { - "example": "山幸", - "reading": "やまさち", - "meaning": "food of the mountains (wild game, mountain vegetables, mushrooms, etc.), fruits of the land" - }, - { - "example": "幸せ", - "reading": "しあわせ", - "meaning": "happiness, good fortune, luck, blessing" - }, - { - "example": "幸せにする", - "reading": "しあわせにする", - "meaning": "to bring someone happiness, to make someone happy" - } - ], - "radical": { - "symbol": "干", - "meaning": "pestle" - }, - "parts": [ - "亠", - "十", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24184_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e78.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e78.gif", - "uri": "http://jisho.org/search/%E5%B9%B8%23kanji" - }, - { - "query": "港", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "495", - "strokeCount": 12, - "meaning": "harbor", - "kunyomi": [ - "みなと" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "港", - "reading": "コウ", - "meaning": "harbour" - }, - { - "example": "港内", - "reading": "コウナイ", - "meaning": "inside the harbour, inside the harbor" - }, - { - "example": "漁港", - "reading": "ギョコウ", - "meaning": "fishing harbour, fishing harbor" - }, - { - "example": "海港", - "reading": "カイコウ", - "meaning": "port, seaport" - } - ], - "kunyomiExamples": [ - { - "example": "港", - "reading": "みなと", - "meaning": "harbour, harbor, port" - }, - { - "example": "港区", - "reading": "みなとく", - "meaning": "Harbour Ward (e.g. in Tokyo)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "井", - "已", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28207_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e2f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e2f.gif", - "uri": "http://jisho.org/search/%E6%B8%AF%23kanji" - }, - { - "query": "号", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "585", - "strokeCount": 5, - "meaning": "nickname, number, item, title, pseudonym, name, call", - "kunyomi": [ - "さけ.ぶ", - "よびな" - ], - "onyomi": [ - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "号", - "reading": "ゴウ", - "meaning": "number, edition, make, model, issue, part of that group, sobriquet, pen-name, size (of printing types, canvases, knitting needles, etc.), suffix attached to names of ships, trains, airplanes, etc." - }, - { - "example": "号車", - "reading": "ゴウシャ", - "meaning": "suffix for train car numbers" - }, - { - "example": "二号", - "reading": "ニゴウ", - "meaning": "number two, mistress, concubine" - }, - { - "example": "符号", - "reading": "フゴウ", - "meaning": "sign, mark, symbol, code, sign (e.g. positive, negative)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "勹", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21495_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053f7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53f7.gif", - "uri": "http://jisho.org/search/%E5%8F%B7%23kanji" - }, - { - "query": "根", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "620", - "strokeCount": 10, - "meaning": "root, radical, head (pimple)", - "kunyomi": [ - "ね", - "-ね" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "根", - "reading": "コン", - "meaning": "stick-to-itiveness, perseverance, persistence, radical (esp. one that tends to ionize easily), root, indriya (faculty of the body having a specific function, i.e. the sensory organs)" - }, - { - "example": "根幹", - "reading": "コンカン", - "meaning": "foundation, root, basis, core, fundamentals, root and trunk" - }, - { - "example": "事実無根", - "reading": "ジジツムコン", - "meaning": "groundless, entirely contrary to fact" - }, - { - "example": "球根", - "reading": "キュウコン", - "meaning": "(plant) bulb" - } - ], - "kunyomiExamples": [ - { - "example": "根", - "reading": "ね", - "meaning": "root (of a plant), root (of a tooth, hair, etc.), center (of a pimple, etc.), root (of all evil, etc.), source, origin, cause, basis, one's true nature, (fishing) reef" - }, - { - "example": "根ざす", - "reading": "ねざす", - "meaning": "to come from, to have roots in" - }, - { - "example": "島根", - "reading": "しまね", - "meaning": "Shimane (city, prefecture), island country" - }, - { - "example": "尾根", - "reading": "おね", - "meaning": "(mountain) ridge" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26681_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06839.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6839.gif", - "uri": "http://jisho.org/search/%E6%A0%B9%23kanji" - }, - { - "query": "祭", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1124", - "strokeCount": 11, - "meaning": "ritual, offer prayers, celebrate, deify, enshrine, worship", - "kunyomi": [ - "まつ.る", - "まつ.り", - "まつり" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "祭典", - "reading": "サイテン", - "meaning": "festival" - }, - { - "example": "祭壇", - "reading": "サイダン", - "meaning": "altar" - }, - { - "example": "葬祭", - "reading": "ソウサイ", - "meaning": "funerals and ceremonial occasions" - }, - { - "example": "慰霊祭", - "reading": "イレイサイ", - "meaning": "memorial service" - } - ], - "kunyomiExamples": [ - { - "example": "祭る", - "reading": "まつる", - "meaning": "to deify, to enshrine, to pray, to worship" - }, - { - "example": "祭り", - "reading": "まつり", - "meaning": "festival, feast, harassment by an Internet pitchfork mob, online shaming, flaming, galore (as in \"goals galore\"), frenzy, mania" - }, - { - "example": "祭り上げる", - "reading": "まつりあげる", - "meaning": "to set up (in high position), to kick upstairs, to hold sacred, to worship" - }, - { - "example": "秋祭り", - "reading": "あきまつり", - "meaning": "autumn festival, fall festival" - }, - { - "example": "葵祭", - "reading": "あおいまつり", - "meaning": "Aoi Festival (Kyoto, May 15), Aoi Matsuri" - }, - { - "example": "祭り", - "reading": "まつり", - "meaning": "festival, feast, harassment by an Internet pitchfork mob, online shaming, flaming, galore (as in \"goals galore\"), frenzy, mania" - }, - { - "example": "祭り上げる", - "reading": "まつりあげる", - "meaning": "to set up (in high position), to kick upstairs, to hold sacred, to worship" - }, - { - "example": "秋祭り", - "reading": "あきまつり", - "meaning": "autumn festival, fall festival" - }, - { - "example": "葵祭", - "reading": "あおいまつり", - "meaning": "Aoi Festival (Kyoto, May 15), Aoi Matsuri" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "个", - "二", - "小", - "癶", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31085_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0796d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/796d.gif", - "uri": "http://jisho.org/search/%E7%A5%AD%23kanji" - }, - { - "query": "皿", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1812", - "strokeCount": 5, - "meaning": "dish, a helping, plate", - "kunyomi": [ - "さら" - ], - "onyomi": [ - "ベイ" - ], - "onyomiExamples": [ - { - "example": "器皿", - "reading": "キベイ", - "meaning": "bowl, plate, dish" - } - ], - "kunyomiExamples": [ - { - "example": "皿", - "reading": "さら", - "meaning": "plate, dish, platter, disc, serving, helping, course, kanji radical 108 (at the bottom)" - }, - { - "example": "皿洗い", - "reading": "さらあらい", - "meaning": "washing-up, dish-washing" - }, - { - "example": "手皿", - "reading": "てさら", - "meaning": "holding food over one's hand" - }, - { - "example": "一皿", - "reading": "ひとさら", - "meaning": "plate, dish (of food)" - } - ], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30399_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076bf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76bf.gif", - "uri": "http://jisho.org/search/%E7%9A%BF%23kanji" - }, - { - "query": "仕", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "439", - "strokeCount": 5, - "meaning": "attend, doing, official, serve", - "kunyomi": [ - "つか.える" - ], - "onyomi": [ - "シ", - "ジ" - ], - "onyomiExamples": [ - { - "example": "仕", - "reading": "シ", - "meaning": "official, civil service" - }, - { - "example": "試合", - "reading": "シアイ", - "meaning": "match, game, bout, contest" - }, - { - "example": "社会奉仕", - "reading": "シャカイホウシ", - "meaning": "voluntary social service" - }, - { - "example": "勤労奉仕", - "reading": "キンロウホウシ", - "meaning": "labor service, labour service" - }, - { - "example": "仕込み", - "reading": "ジコミ", - "meaning": "learned at ..., acquired at ..." - }, - { - "example": "仕丁", - "reading": "シチョウ", - "meaning": "men pressed into forced labor (ritsuryo system), palanquin bearer (Edo period)" - }, - { - "example": "致仕", - "reading": "チシ", - "meaning": "resignation, seventy years of age" - } - ], - "kunyomiExamples": [ - { - "example": "仕える", - "reading": "つかえる", - "meaning": "to serve, to work for, to attend" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "士" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20181_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ed5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ed5.gif", - "uri": "http://jisho.org/search/%E4%BB%95%23kanji" - }, - { - "query": "死", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "229", - "strokeCount": 6, - "meaning": "death, die", - "kunyomi": [ - "し.ぬ", - "し.に-" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "死", - "reading": "シ", - "meaning": "death, decease, death penalty (by strangulation or decapitation), (an) out" - }, - { - "example": "死因", - "reading": "シイン", - "meaning": "cause of death" - }, - { - "example": "安楽死", - "reading": "アンラクシ", - "meaning": "euthanasia" - }, - { - "example": "病死", - "reading": "ビョウシ", - "meaning": "death from disease, death from illness" - } - ], - "kunyomiExamples": [ - { - "example": "死ぬ", - "reading": "しぬ", - "meaning": "to die, to pass away, to lose spirit, to lose vigor, to look dead, to cease, to stop" - }, - { - "example": "死ぬ気で", - "reading": "しぬきで", - "meaning": "all out, like hell, like crazy, desperately, expecting to die" - } - ], - "radical": { - "symbol": "歹", - "forms": [ - "歺" - ], - "meaning": "death, decay" - }, - "parts": [ - "一", - "匕", - "夕", - "歹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27515_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b7b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b7b.gif", - "uri": "http://jisho.org/search/%E6%AD%BB%23kanji" - }, - { - "query": "使", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "219", - "strokeCount": 8, - "meaning": "use, send on a mission, order, messenger, envoy, ambassador, cause", - "kunyomi": [ - "つか.う", - "つか.い", - "-つか.い", - "-づか.い" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "使", - "reading": "シ", - "meaning": "messenger, police and judicial chief (Heian and Kamakura periods), klesha (polluting thoughts such as greed, hatred and delusion, which result in suffering)" - }, - { - "example": "使者", - "reading": "シシャ", - "meaning": "messenger, envoy, emissary" - }, - { - "example": "特使", - "reading": "トクシ", - "meaning": "special envoy" - }, - { - "example": "実力行使", - "reading": "ジツリョクコウシ", - "meaning": "use of force" - } - ], - "kunyomiExamples": [ - { - "example": "使う", - "reading": "つかう", - "meaning": "to use (a thing, method, etc.), to make use of, to put to use, to use (a person, animal, puppet, etc.), to employ, to handle, to manage, to manipulate, to use (time, money, etc.), to spend, to consume, to use (language), to speak" - }, - { - "example": "使い", - "reading": "つかい", - "meaning": "errand, mission, going as envoy, messenger, bearer, errand boy, errand girl, familiar spirit, use, usage, user, trainer, tamer, charmer" - }, - { - "example": "使い方", - "reading": "つかいかた", - "meaning": "way to use something, treatment, management (of help)" - }, - { - "example": "春の使い", - "reading": "はるのつかい", - "meaning": "Japanese bush warbler, messenger of spring" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "化", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20351_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f7f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f7f.gif", - "uri": "http://jisho.org/search/%E4%BD%BF%23kanji" - }, - { - "query": "始", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "244", - "strokeCount": 8, - "meaning": "commence, begin", - "kunyomi": [ - "はじ.める", - "-はじ.める", - "はじ.まる" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "始発", - "reading": "シハツ", - "meaning": "first departure (of the day), first train, first bus, departing one's home station (of a train, bus, etc.)" - }, - { - "example": "始業", - "reading": "シギョウ", - "meaning": "start of work, commencement, opening" - }, - { - "example": "年始", - "reading": "ネンシ", - "meaning": "beginning of the year, new year, New Year's call, New Year's greetings" - }, - { - "example": "創始", - "reading": "ソウシ", - "meaning": "creation, founding, initiating" - } - ], - "kunyomiExamples": [ - { - "example": "始める", - "reading": "はじめる", - "meaning": "to start, to begin, to commence, to initiate, to originate, to start up (a business, society, etc.), to open (e.g. a store), to establish, to start ..., to begin to ..." - }, - { - "example": "始まる", - "reading": "はじまる", - "meaning": "to begin, to start, to commence, to happen (again), to begin (anew), to date (from), to originate (in)" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "厶", - "口", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22987_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59cb.gif", - "uri": "http://jisho.org/search/%E5%A7%8B%23kanji" - }, - { - "query": "指", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "155", - "strokeCount": 9, - "meaning": "finger, point to, indicate, put into, play (chess), measure (ruler)", - "kunyomi": [ - "ゆび", - "さ.す", - "-さ.し" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "指揮者", - "reading": "シキシャ", - "meaning": "(musical) conductor, commander, leader, director" - }, - { - "example": "指揮", - "reading": "シキ", - "meaning": "command, direction" - }, - { - "example": "中指", - "reading": "ナカユビ", - "meaning": "middle finger, long finger, second finger, tall finger, middle toe, third toe" - }, - { - "example": "食指", - "reading": "ショクシ", - "meaning": "index finger, forefinger" - } - ], - "kunyomiExamples": [ - { - "example": "指", - "reading": "ゆび", - "meaning": "finger, toe, digit" - }, - { - "example": "指先", - "reading": "ゆびさき", - "meaning": "fingertip, finger, toe tip, toe" - }, - { - "example": "中指", - "reading": "なかゆび", - "meaning": "middle finger, long finger, second finger, tall finger, middle toe, third toe" - }, - { - "example": "食指", - "reading": "しょくし", - "meaning": "index finger, forefinger" - }, - { - "example": "指す", - "reading": "さす", - "meaning": "to point, to nominate, to select someone, to specify some person, to identify, to indicate, to point out, to play (a game of shogi), to move (a piece), to extend one's arm straight ahead (in dance)" - }, - { - "example": "刺股", - "reading": "さすまた", - "meaning": "sasumata, man catcher, two-pronged weapon for catching criminals" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "匕", - "扎", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25351_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06307.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6307.gif", - "uri": "http://jisho.org/search/%E6%8C%87%23kanji" - }, - { - "query": "歯", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1106", - "strokeCount": 12, - "meaning": "tooth, cog", - "kunyomi": [ - "よわい", - "は", - "よわ.い", - "よわい.する" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "歯", - "reading": "シ", - "meaning": "tooth, age, years" - }, - { - "example": "歯科", - "reading": "シカ", - "meaning": "dentistry" - }, - { - "example": "義歯", - "reading": "ギシ", - "meaning": "artificial tooth" - }, - { - "example": "生歯", - "reading": "セイシ", - "meaning": "teething, cutting teeth, dentition" - } - ], - "kunyomiExamples": [ - { - "example": "齢", - "reading": "よわい", - "meaning": "(one's) age" - }, - { - "example": "歯", - "reading": "は", - "meaning": "tooth" - }, - { - "example": "歯切れ", - "reading": "はぎれ", - "meaning": "feel when biting, manner of enunciation" - }, - { - "example": "継ぎ歯", - "reading": "つぎば", - "meaning": "capped tooth, (dental) crown" - }, - { - "example": "年端", - "reading": "としは", - "meaning": "age, years (old)" - }, - { - "example": "齢", - "reading": "よわい", - "meaning": "(one's) age" - } - ], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "凵", - "止", - "歯", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27503_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b6f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b6f.gif", - "uri": "http://jisho.org/search/%E6%AD%AF%23kanji" - }, - { - "query": "詩", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1196", - "strokeCount": 13, - "meaning": "poem, poetry", - "kunyomi": [ - "うた" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "詩", - "reading": "シ", - "meaning": "poem, verse of poetry" - }, - { - "example": "詩歌", - "reading": "シイカ", - "meaning": "Japanese and Chinese poetry, poetry, poems" - }, - { - "example": "風物詩", - "reading": "フウブツシ", - "meaning": "thing that reminds one of a particular season, poem about natural scenery, poem about a particular season" - }, - { - "example": "近代詩", - "reading": "キンダイシ", - "meaning": "modern poetry, modern-style poetry" - } - ], - "kunyomiExamples": [ - { - "example": "歌", - "reading": "うた", - "meaning": "song, classical Japanese poetry (esp. tanka), modern poetry" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "土", - "寸", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35433_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a69.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a69.gif", - "uri": "http://jisho.org/search/%E8%A9%A9%23kanji" - }, - { - "query": "次", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "222", - "strokeCount": 6, - "meaning": "next, order, sequence", - "kunyomi": [ - "つ.ぐ", - "つぎ" - ], - "onyomi": [ - "ジ", - "シ" - ], - "onyomiExamples": [ - { - "example": "次", - "reading": "ジ", - "meaning": "next, hypo- (i.e. containing an element with low valence), order, sequence, time, times" - }, - { - "example": "次回", - "reading": "ジカイ", - "meaning": "next time (occasion)" - }, - { - "example": "三次", - "reading": "サンジ", - "meaning": "third, tertiary, cubic (function, equation, etc.), third-order" - }, - { - "example": "数次", - "reading": "スウジ", - "meaning": "several times" - }, - { - "example": "次第に", - "reading": "シダイニ", - "meaning": "gradually (progress into a state), in sequence, in order, in turn" - }, - { - "example": "次第", - "reading": "シダイ", - "meaning": "depending on, as soon as, immediately (upon), in accordance with, order, program, programme, precedence, circumstances, course of events, reason" - }, - { - "example": "路次", - "reading": "ロジ", - "meaning": "way, path, route, along the way, along the road" - } - ], - "kunyomiExamples": [ - { - "example": "次ぐ", - "reading": "つぐ", - "meaning": "to rank next to, to come after" - }, - { - "example": "次ぐ身", - "reading": "つぐみ", - "meaning": "next in line, heir" - }, - { - "example": "次", - "reading": "つぎ", - "meaning": "next, following, subsequent, stage, station" - }, - { - "example": "次々", - "reading": "つぎつぎ", - "meaning": "in succession, one by one" - }, - { - "example": "取次", - "reading": "とりつぎ", - "meaning": "agency, commission, distributor, intermediation, reception (of guests), conveyance (of messages)" - }, - { - "example": "中継ぎ", - "reading": "なかつぎ", - "meaning": "joining, joint, intermediation, acting as an intermediary, relaying, taking over, middle relief pitcher, middle reliever, pole-shaped item with a join in the middle, tea container with a lid that is the same size as the body" - } - ], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "冫", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27425_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b21.gif", - "uri": "http://jisho.org/search/%E6%AC%A1%23kanji" - }, - { - "query": "事", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "18", - "strokeCount": 8, - "meaning": "matter, thing, fact, business, reason, possibly", - "kunyomi": [ - "こと", - "つか.う", - "つか.える" - ], - "onyomi": [ - "ジ", - "ズ" - ], - "onyomiExamples": [ - { - "example": "事", - "reading": "ジ", - "meaning": "individual concrete phenomenon (as opposed to a general principle)" - }, - { - "example": "事業", - "reading": "ジギョウ", - "meaning": "project, enterprise, business, industry, operations, venture, service, act, deed, conduct" - }, - { - "example": "商事", - "reading": "ショウジ", - "meaning": "commercial affairs" - }, - { - "example": "有事", - "reading": "ユウジ", - "meaning": "emergency" - } - ], - "kunyomiExamples": [ - { - "example": "事", - "reading": "こと", - "meaning": "thing, matter, incident, occurrence, event, something serious, trouble, crisis, circumstances, situation, state of affairs, work, business, affair, after an inflectable word, creates a noun phrase indicating something the speaker does not feel close to, nominalizing suffix, pretending to ..., playing make-believe ..., alias, also known as, otherwise known as, or, necessity, need, you should ..., I advise that you ..., it's important to ..." - }, - { - "example": "事柄", - "reading": "ことがら", - "meaning": "matter, thing, affair, circumstance" - }, - { - "example": "神事", - "reading": "しんじ", - "meaning": "Shinto ritual" - }, - { - "example": "いい事", - "reading": "いいこと", - "meaning": "good thing, nice thing, good excuse, good grounds, good opportunity, interjection used to impress an idea or to urge a response" - }, - { - "example": "仕える", - "reading": "つかえる", - "meaning": "to serve, to work for, to attend" - } - ], - "radical": { - "symbol": "亅", - "meaning": "hook" - }, - "parts": [ - "ヨ", - "一", - "亅", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20107_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e8b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e8b.gif", - "uri": "http://jisho.org/search/%E4%BA%8B%23kanji" - }, - { - "query": "持", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "119", - "strokeCount": 9, - "meaning": "hold, have", - "kunyomi": [ - "も.つ", - "-も.ち", - "も.てる" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "持", - "reading": "ジ", - "meaning": "draw (in go, poetry contest, etc.), tie" - }, - { - "example": "持久", - "reading": "ジキュウ", - "meaning": "endurance, persistence" - }, - { - "example": "堅持", - "reading": "ケンジ", - "meaning": "holding on to, sticking to" - }, - { - "example": "護持", - "reading": "ゴジ", - "meaning": "defend and maintain, support, protection" - } - ], - "kunyomiExamples": [ - { - "example": "持つ", - "reading": "もつ", - "meaning": "to hold (in one's hand), to take, to carry, to possess, to have, to own, to maintain, to keep, to last, to be durable, to keep, to survive, to take charge of, to be in charge of" - }, - { - "example": "持子", - "reading": "もつご", - "meaning": "stone moroko (Pseudorasbora parva), topmouth gudgeon" - }, - { - "example": "持てる", - "reading": "もてる", - "meaning": "to be able to possess (hold, get, etc.), to be well liked, to be popular, to be pampered (spoiled, doted upon, etc.), to be welcomed, to endure (the tests of time, the elements, etc.), to last, possessed, held, rich, wealthy, affluent" - }, - { - "example": "持てる者", - "reading": "もてるもの", - "meaning": "(the) haves, those who have" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "土", - "寸", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25345_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06301.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6301.gif", - "uri": "http://jisho.org/search/%E6%8C%81%23kanji" - }, - { - "query": "式", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "251", - "strokeCount": 6, - "meaning": "style, ceremony, rite, function, method, system, form, expression", - "kunyomi": [], - "onyomi": [ - "シキ" - ], - "onyomiExamples": [ - { - "example": "式", - "reading": "シキ", - "meaning": "equation, formula, expression, ceremony, style, enforcement regulations (of the ritsuryo)" - }, - { - "example": "式場", - "reading": "シキジョウ", - "meaning": "ceremonial hall (e.g. wedding, funeral), hall for ceremonies, place of ceremony" - }, - { - "example": "硬式", - "reading": "コウシキ", - "meaning": "hard (esp. of hardball, tennis, etc.)" - }, - { - "example": "型式", - "reading": "カタシキ", - "meaning": "model (e.g. of a vehicle), type" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "弋", - "meaning": "shoot, arrow" - }, - "parts": [ - "工", - "弋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24335_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f0f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f0f.gif", - "uri": "http://jisho.org/search/%E5%BC%8F%23kanji" - }, - { - "query": "実", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "68", - "strokeCount": 8, - "meaning": "reality, truth, seed, fruit, nut", - "kunyomi": [ - "み", - "みの.る", - "まこと", - "みの", - "みち.る" - ], - "onyomi": [ - "ジツ", - "シツ" - ], - "onyomiExamples": [ - { - "example": "実", - "reading": "ジツ", - "meaning": "truth, reality, sincerity, honesty, fidelity, content, substance, (good) result" - }, - { - "example": "実演", - "reading": "ジツエン", - "meaning": "demonstration, presentation, stage show, performance" - }, - { - "example": "名実", - "reading": "メイジツ", - "meaning": "in name and in reality, nominally and virtually, form and contents" - }, - { - "example": "内実", - "reading": "ナイジツ", - "meaning": "the facts, the truth, the true state of affairs, in truth, in fact, in reality, actually" - }, - { - "example": "故実", - "reading": "コジツ", - "meaning": "ancient practices, old customs" - } - ], - "kunyomiExamples": [ - { - "example": "実", - "reading": "み", - "meaning": "fruit, nut, seed, (in broth) pieces of meat, vegetable, etc., content, substance" - }, - { - "example": "実り", - "reading": "みのり", - "meaning": "ripening (of a crop), crop, harvest" - }, - { - "example": "浮き実", - "reading": "うきみ", - "meaning": "soup garnish" - }, - { - "example": "桷", - "reading": "ずみ", - "meaning": "Toringo crabapple (Malus sieboldii)" - }, - { - "example": "実る", - "reading": "みのる", - "meaning": "to bear fruit, to ripen" - }, - { - "example": "誠", - "reading": "まこと", - "meaning": "truth, reality, sincerity, honesty, integrity, fidelity, that's right" - }, - { - "example": "実に", - "reading": "じつに", - "meaning": "indeed, really, absolutely, truly, actually, very, quite" - }, - { - "example": "嘘から出たまこと", - "reading": "うそからでたまこと", - "meaning": "something intended as a lie or joke which (by chance) ends up being true, lie turned truth" - }, - { - "example": "実り", - "reading": "みのり", - "meaning": "ripening (of a crop), crop, harvest" - }, - { - "example": "実る", - "reading": "みのる", - "meaning": "to bear fruit, to ripen" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "士", - "大", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23455_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b9f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b9f.gif", - "uri": "http://jisho.org/search/%E5%AE%9F%23kanji" - }, - { - "query": "写", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "453", - "strokeCount": 5, - "meaning": "copy, be photographed, describe", - "kunyomi": [ - "うつ.す", - "うつ.る", - "うつ-", - "うつ.し" - ], - "onyomi": [ - "シャ", - "ジャ" - ], - "onyomiExamples": [ - { - "example": "写真集", - "reading": "シャシンシュウ", - "meaning": "photo book (esp. one featuring photos of female celebrities, models), photobook" - }, - { - "example": "写真", - "reading": "シャシン", - "meaning": "photograph, photo, picture, snapshot, snap, moving picture, movie" - }, - { - "example": "実写", - "reading": "ジッシャ", - "meaning": "on-the-spot filming or photography, live filming (as opposed to animation), actual picture (as opposed to a drawing), photographic image (as opposed to a drawing, computer-generated image, etc.), real picture or story (as opposed to fiction, imaginary scene, etc.), describing actual scenes (in writing, drawings, paintings, etc.), documentary (film)" - }, - { - "example": "活写", - "reading": "カッシャ", - "meaning": "vivid description, painting a lively picture of" - } - ], - "kunyomiExamples": [ - { - "example": "写す", - "reading": "うつす", - "meaning": "to transcribe, to duplicate, to reproduce, to imitate, to trace, to describe, to film, to picture, to photograph" - }, - { - "example": "写る", - "reading": "うつる", - "meaning": "to be photographed, to be projected" - }, - { - "example": "写し", - "reading": "うつし", - "meaning": "copy, duplicate, facsimile, transcript" - }, - { - "example": "映し出す", - "reading": "うつしだす", - "meaning": "to project, to show, to portray, to depict, to describe, to reflect" - } - ], - "radical": { - "symbol": "冖", - "meaning": "cover" - }, - "parts": [ - "一", - "冖", - "勹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20889_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05199.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5199.gif", - "uri": "http://jisho.org/search/%E5%86%99%23kanji" - }, - { - "query": "者", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "38", - "strokeCount": 8, - "meaning": "someone, person", - "kunyomi": [ - "もの" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "者", - "reading": "シャ", - "meaning": "person, -er, expert, geisha, prostitute" - }, - { - "example": "芸者", - "reading": "ゲイシャ", - "meaning": "geisha, professional female entertainer, usu. at traditional banquets" - }, - { - "example": "加害者", - "reading": "カガイシャ", - "meaning": "assailant, perpetrator, wrong-doer, aggressor" - } - ], - "kunyomiExamples": [ - { - "example": "者", - "reading": "もの", - "meaning": "person" - }, - { - "example": "者ども", - "reading": "ものども", - "meaning": "you, people" - }, - { - "example": "弱き者", - "reading": "よわきもの", - "meaning": "weak person, the weak" - }, - { - "example": "若い者", - "reading": "わかいもの", - "meaning": "young man, young woman, young people, youth, youngsters, young employee, young manservant, young follower" - } - ], - "radical": { - "symbol": "老", - "forms": [ - "耂" - ], - "meaning": "old" - }, - "parts": [ - "日", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32773_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08005.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8005.gif", - "uri": "http://jisho.org/search/%E8%80%85%23kanji" - }, - { - "query": "主", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "95", - "strokeCount": 5, - "meaning": "lord, chief, master, main thing, principal", - "kunyomi": [ - "ぬし", - "おも", - "あるじ" - ], - "onyomi": [ - "シュ", - "ス", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "主", - "reading": "シュ", - "meaning": "(one's) master, Lord, the main thing, the majority, the primary concern" - }, - { - "example": "主人", - "reading": "シュジン", - "meaning": "head (of a household), proprietor (of a store), proprietress, landlord, landlady, one's husband, (one's) employer, (one's) master, host, hostess" - }, - { - "example": "自主", - "reading": "ジシュ", - "meaning": "independence, autonomy, self-reliance" - }, - { - "example": "盟主", - "reading": "メイシュ", - "meaning": "leader (of an alliance), leading power" - }, - { - "example": "主", - "reading": "ス", - "meaning": "honorific (or familiar) suffix used after a name" - }, - { - "example": "法主", - "reading": "ホッス", - "meaning": "high priest" - }, - { - "example": "座主", - "reading": "ザス", - "meaning": "temple's head priest" - }, - { - "example": "主", - "reading": "シュ", - "meaning": "(one's) master, Lord, the main thing, the majority, the primary concern" - }, - { - "example": "主従", - "reading": "シュウジュウ", - "meaning": "master and servant, lord and retainer, employer and employee" - } - ], - "kunyomiExamples": [ - { - "example": "主", - "reading": "ぬし", - "meaning": "head (of a household, etc.), leader, master, owner, proprietor, proprietress, subject (of a rumour, etc.), doer (of a deed), guardian spirit (e.g. long-resident beast, usu. with mystical powers), long-time resident (or employee, etc.), husband, you" - }, - { - "example": "馬主", - "reading": "うまぬし", - "meaning": "owner of a horse (esp. racehorse), registered owner (of a racehorse)" - }, - { - "example": "船主", - "reading": "せんしゅ", - "meaning": "shipowner" - }, - { - "example": "主", - "reading": "おも", - "meaning": "chief, main, principal, important, main secondary or supporting role (in kyogen)" - }, - { - "example": "主に", - "reading": "おもに", - "meaning": "mainly, primarily" - }, - { - "example": "主", - "reading": "あるじ", - "meaning": "head (of a household), proprietor (of a store), proprietress, landlord, landlady, master (of a servant), entertaining someone as one's guest" - }, - { - "example": "女主", - "reading": "おんなあるじ", - "meaning": "female owner, proprietress, landlady" - }, - { - "example": "坊の主", - "reading": "ぼうのあるじ", - "meaning": "master of the priests quarters" - } - ], - "radical": { - "symbol": "丶", - "meaning": "dot" - }, - "parts": [ - "丶", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20027_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e3b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e3b.gif", - "uri": "http://jisho.org/search/%E4%B8%BB%23kanji" - }, - { - "query": "守", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "457", - "strokeCount": 6, - "meaning": "guard, protect, defend, obey", - "kunyomi": [ - "まも.る", - "まも.り", - "もり", - "-もり", - "かみ" - ], - "onyomi": [ - "シュ", - "ス" - ], - "onyomiExamples": [ - { - "example": "守備", - "reading": "シュビ", - "meaning": "defense, defence" - }, - { - "example": "守勢", - "reading": "シュセイ", - "meaning": "(being on the) defensive" - }, - { - "example": "好守", - "reading": "コウシュ", - "meaning": "good fielding" - }, - { - "example": "攻守", - "reading": "コウシュ", - "meaning": "offense and defense, offence and defence, batting and fielding" - }, - { - "example": "守護", - "reading": "シュゴ", - "meaning": "protection, safeguard, shugo (Kamakura or Muromachi period military governor)" - }, - { - "example": "居留守", - "reading": "イルス", - "meaning": "pretending to be out" - }, - { - "example": "神の留守", - "reading": "カミノルス", - "meaning": "absence of the gods from their shrines in October (while they are visiting the Grand Shrine of Izumo)" - } - ], - "kunyomiExamples": [ - { - "example": "守る", - "reading": "まもる", - "meaning": "to protect, to guard, to defend, to keep (i.e. a promise), to abide (by the rules), to observe, to obey, to follow" - }, - { - "example": "守り", - "reading": "まもり", - "meaning": "protection, defense, defence, providence, amulet, charm, talisman" - }, - { - "example": "守り神", - "reading": "まもりがみ", - "meaning": "guardian deity" - }, - { - "example": "島主", - "reading": "とうしゅ", - "meaning": "island chief" - }, - { - "example": "山守", - "reading": "やまもり", - "meaning": "ranger (forest), mountain guardian" - }, - { - "example": "守り", - "reading": "もり", - "meaning": "babysitting, babysitter, protecting, keeping, keeper" - }, - { - "example": "守り立てる", - "reading": "もりたてる", - "meaning": "to support, to back up, to rally round, to revive (e.g. a company), to boost (e.g. morale), to bring up, to raise" - }, - { - "example": "井守", - "reading": "いもり", - "meaning": "newt (esp. the Japanese fire belly newt, Cynops pyrrhogaster)" - }, - { - "example": "足無井守", - "reading": "あしなしいもり", - "meaning": "caecilian (any burrowing legless amphibian of the order Gymnophiona)" - }, - { - "example": "守", - "reading": "かみ", - "meaning": "director (of the provincial governors under the ritsuryo system)" - }, - { - "example": "肥後守", - "reading": "ひごのかみ", - "meaning": "higonokami, type of folding knife with metal handle" - }, - { - "example": "薩摩の守", - "reading": "さつまのかみ", - "meaning": "traveling while deliberately not paying a fare (travelling)" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23432_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b88.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b88.gif", - "uri": "http://jisho.org/search/%E5%AE%88%23kanji" - }, - { - "query": "取", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "122", - "strokeCount": 8, - "meaning": "take, fetch, take up", - "kunyomi": [ - "と.る", - "と.り", - "と.り-", - "とり", - "-ど.り" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "取", - "reading": "シュ", - "meaning": "appropriation, obtaining" - }, - { - "example": "取材", - "reading": "シュザイ", - "meaning": "news coverage, collecting data (e.g. for an article), covering (something for media), interview" - }, - { - "example": "先取", - "reading": "センシュ", - "meaning": "earning the first (runs), preoccupation" - }, - { - "example": "聴取", - "reading": "チョウシュ", - "meaning": "hearing (of a statement, opinion, explanation, etc.), asking, questioning (e.g. a suspect), enquiry, listening (e.g. to the radio)" - } - ], - "kunyomiExamples": [ - { - "example": "取る", - "reading": "とる", - "meaning": "to take, to pick up, to grab, to catch, to pass, to hand, to give, to get, to obtain, to acquire, to win, to receive, to earn, to take (e.g. a vacation), to adopt (a method, proposal, etc.), to take (a measure, attitude, etc.), to choose, to remove, to get rid of, to take off, to take away, to steal, to rob, to eat, to have (e.g. lunch), to take (e.g. vitamins), to pick (e.g. flowers), to gather, to extract (e.g. juice), to catch (e.g. fish), to take up (time, space), to occupy, to spare, to set aside, to secure, to reserve, to save, to put aside, to keep, to take (e.g. a joke), to interpret, to understand, to make out, to grasp, to record, to take down, to subscribe to (e.g. a newspaper), to take, to buy, to get, to order, to have delivered, to charge, to fine, to take (tax), to take (e.g. a wife), to take on (e.g. an apprentice), to adopt, to accept, to compete (in sumo, cards, etc.), to play" - }, - { - "example": "取るに足らない", - "reading": "とるにたらない", - "meaning": "insignificant, inconsequential, trifling, negligible, of little importance" - }, - { - "example": "取り", - "reading": "とり", - "meaning": "taking, taker, collecting, collector, remover, removal, last performer of the day (usu. the star performer), last performance of the day, active partner (e.g. in judo demonstration), emphatic or formal prefix" - }, - { - "example": "取り扱い", - "reading": "とりあつかい", - "meaning": "treatment, service, handling, management" - }, - { - "example": "関取", - "reading": "せきとり", - "meaning": "ranking wrestler in the makuuchi (senior-grade) or juryo (junior-grade) divisions" - }, - { - "example": "買取", - "reading": "かいとり", - "meaning": "purchase, buying, buying out, buying used articles as a company, trade-in, buy back, purchase on a no-return policy, lump-sum payment, flat fee" - }, - { - "example": "取り", - "reading": "とり", - "meaning": "taking, taker, collecting, collector, remover, removal, last performer of the day (usu. the star performer), last performance of the day, active partner (e.g. in judo demonstration), emphatic or formal prefix" - }, - { - "example": "取り扱い", - "reading": "とりあつかい", - "meaning": "treatment, service, handling, management" - }, - { - "example": "関取", - "reading": "せきとり", - "meaning": "ranking wrestler in the makuuchi (senior-grade) or juryo (junior-grade) divisions" - }, - { - "example": "買取", - "reading": "かいとり", - "meaning": "purchase, buying, buying out, buying used articles as a company, trade-in, buy back, purchase on a no-return policy, lump-sum payment, flat fee" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "又", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21462_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053d6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53d6.gif", - "uri": "http://jisho.org/search/%E5%8F%96%23kanji" - }, - { - "query": "酒", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1006", - "strokeCount": 10, - "meaning": "sake, alcohol", - "kunyomi": [ - "さけ", - "さか-" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "酒", - "reading": "サケ", - "meaning": "alcohol, sake" - }, - { - "example": "酒税", - "reading": "シュゼイ", - "meaning": "liquor tax, tax on alcohol" - }, - { - "example": "洋酒", - "reading": "ヨウシュ", - "meaning": "Western wine and spirits, Western liquor" - }, - { - "example": "清酒", - "reading": "セイシュ", - "meaning": "refined sake" - } - ], - "kunyomiExamples": [ - { - "example": "酒", - "reading": "さけ", - "meaning": "alcohol, sake" - }, - { - "example": "酒店", - "reading": "さかだな", - "meaning": "alcohol-selling shop" - }, - { - "example": "手酌酒", - "reading": "てじゃくさけ", - "meaning": "pouring one's own drinks, drinking alone" - }, - { - "example": "小酒", - "reading": "こさけ", - "meaning": "small drink, small amount of alcohol" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "汁", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37202_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09152.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9152.gif", - "uri": "http://jisho.org/search/%E9%85%92%23kanji" - }, - { - "query": "受", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "136", - "strokeCount": 8, - "meaning": "accept, undergo, answer (phone), take, get, catch, receive", - "kunyomi": [ - "う.ける", - "-う.け", - "う.かる" - ], - "onyomi": [ - "ジュ" - ], - "onyomiExamples": [ - { - "example": "受", - "reading": "ジュ", - "meaning": "vedana (sensation)" - }, - { - "example": "受益", - "reading": "ジュエキ", - "meaning": "benefitting by, benefiting by" - }, - { - "example": "授受", - "reading": "ジュジュ", - "meaning": "giving and receiving, transferring, transfer, changing hands" - }, - { - "example": "収受", - "reading": "シュウジュ", - "meaning": "reception, receiving" - } - ], - "kunyomiExamples": [ - { - "example": "受ける", - "reading": "うける", - "meaning": "to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well" - }, - { - "example": "受かる", - "reading": "うかる", - "meaning": "to pass (examination)" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "冖", - "又", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21463_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053d7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53d7.gif", - "uri": "http://jisho.org/search/%E5%8F%97%23kanji" - }, - { - "query": "州", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "386", - "strokeCount": 6, - "meaning": "state, province", - "kunyomi": [ - "す" - ], - "onyomi": [ - "シュウ", - "ス" - ], - "onyomiExamples": [ - { - "example": "州", - "reading": "シュウ", - "meaning": "state (US, Australia, India, Germany, etc.), province (e.g. Canada), canton (e.g. Switzerland), oblast (e.g. Russia), department (e.g. ancient China), continent, dear" - }, - { - "example": "州政府", - "reading": "シュウセイフ", - "meaning": "state government" - }, - { - "example": "広州", - "reading": "コウシュウ", - "meaning": "Guangzhou (China), Kwangchow, Canton" - }, - { - "example": "沿海州", - "reading": "エンカイシュウ", - "meaning": "(Russian) maritime provinces" - }, - { - "example": "州", - "reading": "ス", - "meaning": "sandbank, sandbar" - }, - { - "example": "洲浜", - "reading": "スハマ", - "meaning": "sandy beach, sandbar that projects into the ocean, particularly in a wavy form, designs and objects with a wavy pattern, sweet mochi cake" - }, - { - "example": "白州", - "reading": "シラス", - "meaning": "white sandbar, white sandbank, area in a garden or entrance of a house laid with white sand or pebbles, gravel separating a noh stage from the audience, court of law in the Edo period, in which the parties sat on white sand" - }, - { - "example": "中州", - "reading": "ナカス", - "meaning": "sandbank (in a river), sandbar" - } - ], - "kunyomiExamples": [ - { - "example": "州", - "reading": "す", - "meaning": "sandbank, sandbar" - }, - { - "example": "洲浜", - "reading": "すはま", - "meaning": "sandy beach, sandbar that projects into the ocean, particularly in a wavy form, designs and objects with a wavy pattern, sweet mochi cake" - }, - { - "example": "白州", - "reading": "しらす", - "meaning": "white sandbar, white sandbank, area in a garden or entrance of a house laid with white sand or pebbles, gravel separating a noh stage from the audience, court of law in the Edo period, in which the parties sat on white sand" - }, - { - "example": "中州", - "reading": "なかす", - "meaning": "sandbank (in a river), sandbar" - } - ], - "radical": { - "symbol": "巛", - "forms": [ - "川", - "巜" - ], - "meaning": "river" - }, - "parts": [ - "丶", - "川", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24030_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05dde.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5dde.gif", - "uri": "http://jisho.org/search/%E5%B7%9E%23kanji" - }, - { - "query": "拾", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1479", - "strokeCount": 9, - "meaning": "pick up, gather, find, go on foot, ten", - "kunyomi": [ - "ひろ.う" - ], - "onyomi": [ - "シュウ", - "ジュウ" - ], - "onyomiExamples": [ - { - "example": "収集", - "reading": "シュウシュウ", - "meaning": "collecting, accumulating, gathering, collection (of art, stamps, insects, etc.), garbage collection, waste collection" - }, - { - "example": "拾得", - "reading": "シュウトク", - "meaning": "finding (lost property), picking up" - }, - { - "example": "十", - "reading": "ジュウ", - "meaning": "ten, ten years of age" - }, - { - "example": "10万", - "reading": "ジュウマン", - "meaning": "100,000, hundred thousand" - } - ], - "kunyomiExamples": [ - { - "example": "拾う", - "reading": "ひろう", - "meaning": "to pick up, to find, to gather" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "个", - "口", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25342_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062fe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62fe.gif", - "uri": "http://jisho.org/search/%E6%8B%BE%23kanji" - }, - { - "query": "終", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "256", - "strokeCount": 11, - "meaning": "end, finish", - "kunyomi": [ - "お.わる", - "-お.わる", - "おわ.る", - "お.える", - "つい", - "つい.に" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "終局", - "reading": "シュウキョク", - "meaning": "end, close, conclusion, end of a game of go, shogi, etc." - }, - { - "example": "終焉", - "reading": "シュウエン", - "meaning": "demise" - }, - { - "example": "有終", - "reading": "ユウシュウ", - "meaning": "perfection" - }, - { - "example": "無終", - "reading": "ムシュウ", - "meaning": "endlessness" - } - ], - "kunyomiExamples": [ - { - "example": "終わる", - "reading": "おわる", - "meaning": "to end, to come to an end, to close, to finish" - }, - { - "example": "終わる", - "reading": "おわる", - "meaning": "to end, to come to an end, to close, to finish" - }, - { - "example": "終える", - "reading": "おえる", - "meaning": "to finish, to graduate" - }, - { - "example": "終", - "reading": "つい", - "meaning": "end, final, end of life, death, never, not at all" - }, - { - "example": "遂に", - "reading": "ついに", - "meaning": "finally, at last, in the end, after all, never (happened)" - }, - { - "example": "遂に", - "reading": "ついに", - "meaning": "finally, at last, in the end, after all, never (happened)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "夂", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d42.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d42.gif", - "uri": "http://jisho.org/search/%E7%B5%82%23kanji" - }, - { - "query": "習", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "706", - "strokeCount": 11, - "meaning": "learn", - "kunyomi": [ - "なら.う", - "なら.い" - ], - "onyomi": [ - "シュウ", - "ジュ" - ], - "onyomiExamples": [ - { - "example": "習性", - "reading": "シュウセイ", - "meaning": "habit, behavior, behaviour, trait, nature" - }, - { - "example": "習慣", - "reading": "シュウカン", - "meaning": "habit, (social) custom, practice, convention" - }, - { - "example": "演習", - "reading": "エンシュウ", - "meaning": "practice, practising, exercises, manoeuvres, maneuvers, seminar (student debates, presentations, etc.), practicum" - }, - { - "example": "教習", - "reading": "キョウシュウ", - "meaning": "training, instruction" - }, - { - "example": "近習", - "reading": "キンジュ", - "meaning": "attendant" - } - ], - "kunyomiExamples": [ - { - "example": "習う", - "reading": "ならう", - "meaning": "to take lessons in, to be taught, to learn (from a teacher), to study (under a teacher), to get training in" - }, - { - "example": "習うより慣れろ", - "reading": "ならうよりなれろ", - "meaning": "experience is the best teacher, custom makes all things easy, you learn best by doing, practice makes perfect, it is better to grow accustomed than to be taught" - }, - { - "example": "習い", - "reading": "ならい", - "meaning": "as is habit, the way life normally is" - }, - { - "example": "習い事", - "reading": "ならいごと", - "meaning": "accomplishment, lessons (in an art, skill, etc.), practice" - }, - { - "example": "見習い", - "reading": "みならい", - "meaning": "apprenticeship, probation, learning by observation, apprentice, trainee, probationer" - }, - { - "example": "行儀見習い", - "reading": "ぎょうぎみならい", - "meaning": "learning good manners through apprenticeship (to an upper-class family)" - } - ], - "radical": { - "symbol": "羽", - "meaning": "feather" - }, - "parts": [ - "冫", - "白", - "羽" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32722_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fd2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fd2.gif", - "uri": "http://jisho.org/search/%E7%BF%92%23kanji" - }, - { - "query": "集", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "210", - "strokeCount": 12, - "meaning": "gather, meet, congregate, swarm, flock", - "kunyomi": [ - "あつ.まる", - "あつ.める", - "つど.う" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "集", - "reading": "シュウ", - "meaning": "collection, compilation" - }, - { - "example": "集荷", - "reading": "シュウカ", - "meaning": "collection of cargo (esp. produce, etc.), cargo booking" - }, - { - "example": "句集", - "reading": "クシュウ", - "meaning": "collection of haiku poems" - }, - { - "example": "歌集", - "reading": "カシュウ", - "meaning": "collection of waka poems, anthology, songbook" - } - ], - "kunyomiExamples": [ - { - "example": "集まる", - "reading": "あつまる", - "meaning": "to gather, to collect, to assemble" - }, - { - "example": "集める", - "reading": "あつめる", - "meaning": "to collect, to assemble, to gather" - }, - { - "example": "集う", - "reading": "つどう", - "meaning": "to meet, to assemble, to congregate" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "木", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38598_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096c6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96c6.gif", - "uri": "http://jisho.org/search/%E9%9B%86%23kanji" - }, - { - "query": "住", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "270", - "strokeCount": 7, - "meaning": "dwell, reside, live, inhabit", - "kunyomi": [ - "す.む", - "す.まう", - "-ず.まい" - ], - "onyomi": [ - "ジュウ", - "ヂュウ", - "チュウ" - ], - "onyomiExamples": [ - { - "example": "住", - "reading": "ジュウ", - "meaning": "dwelling, living" - }, - { - "example": "住居", - "reading": "ジュウキョ", - "meaning": "dwelling, house, residence, address" - }, - { - "example": "先住", - "reading": "センジュウ", - "meaning": "original inhabitant, aboriginal, previous priest" - }, - { - "example": "安住", - "reading": "アンジュウ", - "meaning": "living in peace, living a quiet life, being content with one's present position, being satisfied with one's lot" - } - ], - "kunyomiExamples": [ - { - "example": "住む", - "reading": "すむ", - "meaning": "to live (of humans), to reside, to inhabit, to dwell, to abide" - }, - { - "example": "住まう", - "reading": "すまう", - "meaning": "to live, to reside, to inhabit" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "丶", - "化", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20303_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f4f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f4f.gif", - "uri": "http://jisho.org/search/%E4%BD%8F%23kanji" - }, - { - "query": "重", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "193", - "strokeCount": 9, - "meaning": "heavy, important, esteem, respect, heap up, pile up, nest of boxes, -fold", - "kunyomi": [ - "え", - "おも.い", - "おも.り", - "おも.なう", - "かさ.ねる", - "かさ.なる", - "おも" - ], - "onyomi": [ - "ジュウ", - "チョウ" - ], - "onyomiExamples": [ - { - "example": "重", - "reading": "ジュウ", - "meaning": "jūbako, multi-tiered food box, heavy, serious, extreme, -fold, -ply" - }, - { - "example": "重圧", - "reading": "ジュウアツ", - "meaning": "strong pressure, heavy pressure" - }, - { - "example": "九重", - "reading": "ココノエ", - "meaning": "ninefold, imperial palace, the Court" - }, - { - "example": "加重", - "reading": "カジュウ", - "meaning": "weighting (in averaging), aggravation" - }, - { - "example": "重複", - "reading": "チョウフク", - "meaning": "duplication, repetition, overlapping, redundancy, restoration" - }, - { - "example": "重厚", - "reading": "ジュウコウ", - "meaning": "profound, deep, grave, solid, dignified, stately, solemn, massive, composed" - }, - { - "example": "加重", - "reading": "カジュウ", - "meaning": "weighting (in averaging), aggravation" - }, - { - "example": "九重", - "reading": "ココノエ", - "meaning": "ninefold, imperial palace, the Court" - } - ], - "kunyomiExamples": [ - { - "example": "重", - "reading": "え", - "meaning": "-fold, -ply" - }, - { - "example": "八重", - "reading": "やえ", - "meaning": "multilayered, doubled" - }, - { - "example": "九重", - "reading": "ここのえ", - "meaning": "ninefold, imperial palace, the Court" - }, - { - "example": "重い", - "reading": "おもい", - "meaning": "heavy, weighty, heavy (feeling), depressed, gloomy, blue, uneasy, slow, sluggish, lumbering, ponderous, clumsy, important (position, responsibility, etc.), serious, grave, serious (punishment, illness, etc.), severe, critical, solid, established, dignified, sensible" - }, - { - "example": "重い腰を上げる", - "reading": "おもいこしをあげる", - "meaning": "to get off one's backside, to bestir oneself" - }, - { - "example": "重り", - "reading": "おもり", - "meaning": "weight, sinker (fishing)" - }, - { - "example": "重ねる", - "reading": "かさねる", - "meaning": "to pile up, to heap up, to stack up, to put on top of another, to repeat many times over, to go through repeatedly, to accumulate" - }, - { - "example": "重なる", - "reading": "かさなる", - "meaning": "to be piled up, to lie on top of one another, to come one after another, to happen over and over, to pile up (e.g. stress), to accumulate, to overlap (each other), to occur at the same time, to happen simultaneously" - }, - { - "example": "主", - "reading": "おも", - "meaning": "chief, main, principal, important, main secondary or supporting role (in kyogen)" - }, - { - "example": "重き", - "reading": "おもき", - "meaning": "importance, emphasis, stress" - }, - { - "example": "身重", - "reading": "みおも", - "meaning": "pregnant" - }, - { - "example": "気重", - "reading": "きおも", - "meaning": "heavy-hearted" - } - ], - "radical": { - "symbol": "里", - "meaning": "village, mile" - }, - "parts": [ - "ノ", - "一", - "日", - "里", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37325_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91cd.gif", - "uri": "http://jisho.org/search/%E9%87%8D%23kanji" - }, - { - "query": "宿", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "701", - "strokeCount": 11, - "meaning": "inn, lodging, relay station, dwell, lodge, be pregnant, home, dwelling", - "kunyomi": [ - "やど", - "やど.る", - "やど.す" - ], - "onyomi": [ - "シュク" - ], - "onyomiExamples": [ - { - "example": "宿", - "reading": "シュク", - "meaning": "lodging, relay station, post town, constellation, mansion (in Chinese astronomy)" - }, - { - "example": "夙", - "reading": "シュク", - "meaning": "outcasts common around the Kyoto region from the Kamakura period to the Edo period" - }, - { - "example": "寄宿", - "reading": "キシュク", - "meaning": "lodging, boarding, boarding house, school dormitory" - }, - { - "example": "斗掻き星", - "reading": "トカキボシ", - "meaning": "Chinese \"Legs\" constellation (one of the 28 mansions)" - } - ], - "kunyomiExamples": [ - { - "example": "宿", - "reading": "やど", - "meaning": "lodging, inn, hotel, house, home, dwelling, home of a servant's parents (or guarantor, etc.)" - }, - { - "example": "宿屋", - "reading": "やどや", - "meaning": "inn" - }, - { - "example": "連れ込み宿", - "reading": "つれこみやど", - "meaning": "traditional love hotel, traditional Japanese inn specially for couples" - }, - { - "example": "相宿", - "reading": "あいやど", - "meaning": "staying in the same inn or hotel, rooming together" - }, - { - "example": "宿る", - "reading": "やどる", - "meaning": "to dwell, to live, to remain, to stay at, to take shelter at, to stop at, to lodge at, to be pregnant, to be part of a constellation, to be a parasite (bugs, plants, etc.)" - }, - { - "example": "宿す", - "reading": "やどす", - "meaning": "to house, to contain, to harbour (a feeling), to hold (e.g. dew on leaves), to carry (a baby), to be pregnant, to give lodging to, to accommodate" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "化", - "宀", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23487_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bbf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bbf.gif", - "uri": "http://jisho.org/search/%E5%AE%BF%23kanji" - }, - { - "query": "所", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "221", - "strokeCount": 8, - "meaning": "place, extent", - "kunyomi": [ - "ところ", - "-ところ", - "どころ", - "とこ" - ], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "所", - "reading": "ショ", - "meaning": "counter for places" - }, - { - "example": "署員", - "reading": "ショイン", - "meaning": "staff member, station employee, official" - }, - { - "example": "高所", - "reading": "コウショ", - "meaning": "high place, high altitude, heights, elevation, broad view" - }, - { - "example": "随所", - "reading": "ズイショ", - "meaning": "everywhere, at every turn" - } - ], - "kunyomiExamples": [ - { - "example": "所", - "reading": "ところ", - "meaning": "place, spot, scene, site, address, district, area, locality, one's house, point, aspect, side, facet, passage (in text), part, space, room, thing, matter, whereupon, as a result, about to, on the verge of, was just doing, was in the process of doing, have just done, just finished doing" - }, - { - "example": "所が", - "reading": "ところが", - "meaning": "even so, however, still, whereupon, even though, nevertheless, on the contrary, as a matter of fact, despite" - }, - { - "example": "見たところ", - "reading": "みたところ", - "meaning": "in appearance, to look at, judging from appearances" - }, - { - "example": "一所", - "reading": "いっしょ", - "meaning": "one place, the same place, one person, together" - }, - { - "example": "所か", - "reading": "どころか", - "meaning": "far from, anything but, not at all, let alone, to say nothing of, not to mention, much less" - }, - { - "example": "所じゃない", - "reading": "どころじゃない", - "meaning": "not the time for, not the place for, far from, anything but, ... is out of the question, ... isn't the word for it" - }, - { - "example": "大所", - "reading": "おおどころ", - "meaning": "wealthy family, important person, bigwig" - }, - { - "example": "居所", - "reading": "いどころ", - "meaning": "whereabouts, address, place of temporary residence" - }, - { - "example": "所", - "reading": "ところ", - "meaning": "place, spot, scene, site, address, district, area, locality, one's house, point, aspect, side, facet, passage (in text), part, space, room, thing, matter, whereupon, as a result, about to, on the verge of, was just doing, was in the process of doing, have just done, just finished doing" - }, - { - "example": "所が", - "reading": "ところが", - "meaning": "even so, however, still, whereupon, even though, nevertheless, on the contrary, as a matter of fact, despite" - }, - { - "example": "早いとこ", - "reading": "はやいとこ", - "meaning": "promptly, quickly" - }, - { - "example": "僕んとこ", - "reading": "ぼくんとこ", - "meaning": "at my place" - } - ], - "radical": { - "symbol": "戶", - "forms": [ - "户", - "戸" - ], - "meaning": "door, house" - }, - "parts": [ - "一", - "尸", - "戸", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25152_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06240.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6240.gif", - "uri": "http://jisho.org/search/%E6%89%80%23kanji" - }, - { - "query": "暑", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1442", - "strokeCount": 12, - "meaning": "sultry, hot, summer heat", - "kunyomi": [ - "あつ.い" - ], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "暑", - "reading": "ショ", - "meaning": "heat, midsummer" - }, - { - "example": "暑中見舞", - "reading": "ショチュウミマイ", - "meaning": "summer greeting card, inquiry after someone's health in the hot season" - }, - { - "example": "残暑", - "reading": "ザンショ", - "meaning": "late summer heat (from Aug. 8 and onwards), lingering summer heat" - }, - { - "example": "避暑", - "reading": "ヒショ", - "meaning": "escaping the summer heat, going somewhere cooler during the summer, summering" - } - ], - "kunyomiExamples": [ - { - "example": "暑い", - "reading": "あつい", - "meaning": "hot, warm, sultry, heated, passionate, impassioned, burning (desire, etc.), on everybody's mind, on the radar, du jour, interested (gaze, etc.)" - }, - { - "example": "暑い盛り", - "reading": "あついさかり", - "meaning": "heat of the day, hottest part of the day" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26257_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06691.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6691.gif", - "uri": "http://jisho.org/search/%E6%9A%91%23kanji" - }, - { - "query": "助", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "397", - "strokeCount": 7, - "meaning": "help, rescue, assist", - "kunyomi": [ - "たす.ける", - "たす.かる", - "す.ける", - "すけ" - ], - "onyomi": [ - "ジョ" - ], - "onyomiExamples": [ - { - "example": "助", - "reading": "ジョ", - "meaning": "help, rescue, assistant" - }, - { - "example": "助演", - "reading": "ジョエン", - "meaning": "supporting performance, playing a supporting role" - }, - { - "example": "互助", - "reading": "ゴジョ", - "meaning": "mutual aid, cooperation, benefit" - }, - { - "example": "介助", - "reading": "カイジョ", - "meaning": "help, assistance, aid" - } - ], - "kunyomiExamples": [ - { - "example": "助ける", - "reading": "たすける", - "meaning": "to save, to rescue, to help, to assist, to support (financially), to contribute (to), to provide aid, to facilitate, to stimulate, to promote, to contribute to" - }, - { - "example": "助かる", - "reading": "たすかる", - "meaning": "to be saved, to be rescued, to survive, to escape harm, to be spared damage, to be helped, to be saved trouble" - }, - { - "example": "助", - "reading": "すけ", - "meaning": "assistance, help, helper, babe, chick, broad" - }, - { - "example": "助手", - "reading": "じょしゅ", - "meaning": "assistant, helper, assistant (to a professor)" - }, - { - "example": "福助", - "reading": "ふくすけ", - "meaning": "large-headed dwarf statue, bringer of good luck" - }, - { - "example": "デコ助", - "reading": "デコすけ", - "meaning": "big forehead, fivehead, asshole" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21161_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052a9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52a9.gif", - "uri": "http://jisho.org/search/%E5%8A%A9%23kanji" - }, - { - "query": "昭", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "697", - "strokeCount": 9, - "meaning": "shining, bright", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "昭", - "reading": "ショウ", - "meaning": "nth year in the Shōwa era (1926.12.25-1989.1.7)" - }, - { - "example": "昭和", - "reading": "ショウワ", - "meaning": "Shōwa era (1926.12.25-1989.1.7), reminiscent of the Shōwa era, Shōwa-nostalgic, old-fashioned, quaint, old-school" - }, - { - "example": "昭昭", - "reading": "ショウショウ", - "meaning": "clear, bright, plain, obvious" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "刀", - "口", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26157_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0662d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/662d.gif", - "uri": "http://jisho.org/search/%E6%98%AD%23kanji" - }, - { - "query": "消", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "345", - "strokeCount": 10, - "meaning": "extinguish, blow out, turn off, neutralize, cancel", - "kunyomi": [ - "き.える", - "け.す" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "消化", - "reading": "ショウカ", - "meaning": "digestion (of food), digestion (of information), assimilation, thorough understanding, consumption, absorption, using up, meeting (e.g. a quota), completion, losing one's form and turning into something else" - }, - { - "example": "消火", - "reading": "ショウカ", - "meaning": "fire fighting, extinguishing a fire" - }, - { - "example": "費消", - "reading": "ヒショウ", - "meaning": "spending, consumption, misappropriation, embezzlement" - }, - { - "example": "曖昧性解消", - "reading": "アイマイセイカイショウ", - "meaning": "disambiguation" - } - ], - "kunyomiExamples": [ - { - "example": "消える", - "reading": "きえる", - "meaning": "to go out, to vanish, to disappear" - }, - { - "example": "消す", - "reading": "けす", - "meaning": "to erase, to delete, to cross out, to turn off (power), to switch off, to extinguish, to put out, to bump off" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "尚", - "月", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28040_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d88.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d88.gif", - "uri": "http://jisho.org/search/%E6%B6%88%23kanji" - }, - { - "query": "商", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "413", - "strokeCount": 11, - "meaning": "make a deal, selling, dealing in, merchant", - "kunyomi": [ - "あきな.う" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "商", - "reading": "ショウ", - "meaning": "quotient, dealing, dealer, store, second degree (of the Japanese and Chinese pentatonic scale), Shang dynasty (China, approx. 1600-1046 BCE), Yin dynasty" - }, - { - "example": "商会", - "reading": "ショウカイ", - "meaning": "firm, company" - }, - { - "example": "年商", - "reading": "ネンショウ", - "meaning": "yearly (annual) turnover" - }, - { - "example": "画商", - "reading": "ガショウ", - "meaning": "picture dealer, commercial art gallery" - } - ], - "kunyomiExamples": [ - { - "example": "商う", - "reading": "あきなう", - "meaning": "to trade in (commercial goods), to deal in, to sell" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "亠", - "儿", - "冂", - "口", - "并", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21830_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05546.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5546.gif", - "uri": "http://jisho.org/search/%E5%95%86%23kanji" - }, - { - "query": "章", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "990", - "strokeCount": 11, - "meaning": "badge, chapter, composition, poem, design", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "章", - "reading": "ショウ", - "meaning": "chapter, section, medal, badge, insignia" - }, - { - "example": "章句", - "reading": "ショウク", - "meaning": "chapter and verse, paragraph, passage" - }, - { - "example": "受章", - "reading": "ジュショウ", - "meaning": "reception of a decoration, reception of an order" - }, - { - "example": "楽章", - "reading": "ガクショウ", - "meaning": "(musical) movement" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "立", - "meaning": "stand, erect" - }, - "parts": [ - "十", - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31456_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ae0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ae0.gif", - "uri": "http://jisho.org/search/%E7%AB%A0%23kanji" - }, - { - "query": "勝", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "185", - "strokeCount": 12, - "meaning": "victory, win, prevail, excel", - "kunyomi": [ - "か.つ", - "-が.ち", - "まさ.る", - "すぐ.れる", - "かつ" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "勝", - "reading": "ショウ", - "meaning": "win, victory, beautiful scenery, scenic spot, counter for wins" - }, - { - "example": "勝因", - "reading": "ショウイン", - "meaning": "cause of victory" - }, - { - "example": "必勝", - "reading": "ヒッショウ", - "meaning": "certain victory" - }, - { - "example": "快勝", - "reading": "カイショウ", - "meaning": "sweeping victory, easy victory" - } - ], - "kunyomiExamples": [ - { - "example": "勝つ", - "reading": "かつ", - "meaning": "to win, to gain victory" - }, - { - "example": "褐色", - "reading": "かちいろ", - "meaning": "dark indigo (almost black)" - }, - { - "example": "勝る", - "reading": "まさる", - "meaning": "to excel, to surpass, to exceed, to have an edge, to be superior, to outrival, to outweigh, to preponderate" - }, - { - "example": "優るとも劣らない", - "reading": "まさるともおとらない", - "meaning": "not at all inferior to, rival or surpass, compare favorably (with)" - }, - { - "example": "優れる", - "reading": "すぐれる", - "meaning": "to surpass, to outstrip, to excel" - }, - { - "example": "勝つ", - "reading": "かつ", - "meaning": "to win, to gain victory" - }, - { - "example": "褐色", - "reading": "かちいろ", - "meaning": "dark indigo (almost black)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "二", - "人", - "力", - "大", - "并", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21213_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052dd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52dd.gif", - "uri": "http://jisho.org/search/%E5%8B%9D%23kanji" - }, - { - "query": "乗", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "377", - "strokeCount": 9, - "meaning": "ride, power, multiplication, record, counter for vehicles, board, mount, join", - "kunyomi": [ - "の.る", - "-の.り", - "の.せる" - ], - "onyomi": [ - "ジョウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "乗", - "reading": "ジョウ", - "meaning": "(nth) power, counter for vehicles, multiplication, Buddha's teachings" - }, - { - "example": "乗員", - "reading": "ジョウイン", - "meaning": "crew" - }, - { - "example": "同乗", - "reading": "ドウジョウ", - "meaning": "riding together, riding with" - }, - { - "example": "相乗", - "reading": "ソウジョウ", - "meaning": "multiplication, synergism" - } - ], - "kunyomiExamples": [ - { - "example": "乗る", - "reading": "のる", - "meaning": "to get on (train, plane, bus, ship, etc.), to get in, to board, to take, to embark, to get on (e.g. a footstool), to step on, to jump on, to sit on, to mount, to reach, to go over, to pass, to follow, to stay (on track), to go with (the times, etc.), to take part, to participate, to join, to get into the swing (and sing, dance, etc.), to be deceived, to be taken in, to be carried, to be spread, to be scattered, to stick, to attach, to take, to go on" - }, - { - "example": "伸るか反るか", - "reading": "のるかそるか", - "meaning": "win or lose, sink or swim, make or break, all or nothing" - }, - { - "example": "乗せる", - "reading": "のせる", - "meaning": "to place on (something), to give (someone) a ride, to give a lift, to pick up, to help on board, to load (luggage), to carry, to take on board, to send out (on the airwaves, etc.), to deceive, to take for a ride, to (sing) along with (musical accompaniment), to let (someone) take part, to excite (someone), to publish (an article), to run (an ad)" - } - ], - "radical": { - "symbol": "丿", - "meaning": "slash" - }, - "parts": [ - "ノ", - "ハ", - "一", - "禾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20055_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e57.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e57.gif", - "uri": "http://jisho.org/search/%E4%B9%97%23kanji" - }, - { - "query": "植", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "699", - "strokeCount": 12, - "meaning": "plant", - "kunyomi": [ - "う.える", - "う.わる" - ], - "onyomi": [ - "ショク" - ], - "onyomiExamples": [ - { - "example": "植物", - "reading": "ショクブツ", - "meaning": "plant, vegetation" - }, - { - "example": "植樹", - "reading": "ショクジュ", - "meaning": "tree-planting" - }, - { - "example": "写植", - "reading": "シャショク", - "meaning": "phototypesetting" - }, - { - "example": "骨髄移植", - "reading": "コツズイイショク", - "meaning": "marrow transplant" - } - ], - "kunyomiExamples": [ - { - "example": "植える", - "reading": "うえる", - "meaning": "to plant, to grow, to raise, to insert, to transplant, to implant, to set (type), to inoculate (e.g. an infectious agent), to instill (idea, value, etc.), to inculcate" - }, - { - "example": "植わる", - "reading": "うわる", - "meaning": "to be planted" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "十", - "木", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26893_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0690d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/690d.gif", - "uri": "http://jisho.org/search/%E6%A4%8D%23kanji" - }, - { - "query": "申", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "492", - "strokeCount": 5, - "meaning": "have the honor to, sign of the monkey, 3-5PM, ninth sign of Chinese zodiac", - "kunyomi": [ - "もう.す", - "もう.し-", - "さる" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "申請", - "reading": "シンセイ", - "meaning": "application, request, petition" - }, - { - "example": "申告", - "reading": "シンコク", - "meaning": "report, return (e.g. tax), statement, declaration, notification, filing" - }, - { - "example": "上申", - "reading": "ジョウシン", - "meaning": "report to a superior" - }, - { - "example": "具申", - "reading": "グシン", - "meaning": "offering a full report to a superior" - } - ], - "kunyomiExamples": [ - { - "example": "申す", - "reading": "もうす", - "meaning": "to say, to be called, to do" - }, - { - "example": "申すまでもなく", - "reading": "もうすまでもなく", - "meaning": "needless to say, obviously, of course" - }, - { - "example": "申", - "reading": "さる", - "meaning": "the Monkey (ninth sign of the Chinese zodiac), hour of the Monkey (around 4pm, 3-5pm, or 4-6pm), west-southwest, 7th month of the lunar calendar" - }, - { - "example": "猿楽", - "reading": "さるがく", - "meaning": "sarugaku (form of theatre popular in Japan during the 11th to 14th centuries), noh, fooling around" - }, - { - "example": "庚申", - "reading": "かのえさる", - "meaning": "Metal Monkey (57th year of the sexagenary cycle, e.g. 1920, 1980, 2040)" - }, - { - "example": "甲申", - "reading": "きのえさる", - "meaning": "Wood Monkey (21st year of the sexagenary cycle, e.g. 1944, 2004, 2064)" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30003_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07533.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7533.gif", - "uri": "http://jisho.org/search/%E7%94%B3%23kanji" - }, - { - "query": "身", - "found": true, - "taughtIn": "grade 3", - "newspaperFrequencyRank": "320", - "strokeCount": 7, - "meaning": "somebody, person, one's station in life", - "kunyomi": [ - "み" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "心身", - "reading": "シンシン", - "meaning": "mind and body" - }, - { - "example": "身障者", - "reading": "シンショウシャ", - "meaning": "(physically) disabled person, person with a physical disability" - }, - { - "example": "終身", - "reading": "シュウシン", - "meaning": "the whole life" - }, - { - "example": "等身", - "reading": "トウシン", - "meaning": "body proportions" - } - ], - "kunyomiExamples": [ - { - "example": "身", - "reading": "み", - "meaning": "body, oneself, one's place, one's position, main part, meat (as opposed to bone, skin, etc.), wood (as opposed to bark), blade (as opposed to its handle), container (as opposed to its lid)" - }, - { - "example": "身動き", - "reading": "みうごき", - "meaning": "moving about, stirring about" - }, - { - "example": "肩身", - "reading": "かたみ", - "meaning": "shoulders, body, honour, honor, prestige, face" - }, - { - "example": "細身", - "reading": "ほそみ", - "meaning": "narrow, thin (sized), slender" - } - ], - "radical": { - "symbol": "身", - "meaning": "body" - }, - "parts": [ - "身" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36523_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08eab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8eab.gif", - "uri": "http://jisho.org/search/%E8%BA%AB%23kanji" - }, - { - "query": "神", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "347", - "strokeCount": 9, - "meaning": "gods, mind, soul", - "kunyomi": [ - "かみ", - "かん-", - "こう-" - ], - "onyomi": [ - "シン", - "ジン" - ], - "onyomiExamples": [ - { - "example": "神", - "reading": "シン", - "meaning": "spirit, psyche, god, deity, divinity, kami" - }, - { - "example": "神学", - "reading": "シンガク", - "meaning": "theology" - }, - { - "example": "鬼神", - "reading": "キシン", - "meaning": "fierce god" - }, - { - "example": "祭神", - "reading": "サイジン", - "meaning": "enshrined deity" - }, - { - "example": "神", - "reading": "シン", - "meaning": "spirit, psyche, god, deity, divinity, kami" - }, - { - "example": "神宮", - "reading": "ジングウ", - "meaning": "high-status Shinto shrine with connection to imperial family, imperial Shinto shrine" - }, - { - "example": "天神", - "reading": "テンジン", - "meaning": "heavenly god, heavenly gods, spirit of Sugawara no Michizane, Tenmangu shrine (dedicated to Michizane's spirit), pit of a dried plum, dried plum, tenjin hairstyle, prostitute of the second-highest class (Edo period), tuning peg (on a biwa or shamisen)" - }, - { - "example": "石神", - "reading": "シャクジン", - "meaning": "stone which is worshipped, image of a god in stone" - } - ], - "kunyomiExamples": [ - { - "example": "神", - "reading": "かみ", - "meaning": "god, deity, divinity, spirit, kami, incredible, fantastic, amazing, emperor of Japan, thunder" - }, - { - "example": "神様", - "reading": "かみさま", - "meaning": "God, god, ace, king, superior person, god (amongst men)" - }, - { - "example": "大神", - "reading": "おおかみ", - "meaning": "god" - }, - { - "example": "ギ神", - "reading": "ギかみ", - "meaning": "Greek mythology" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "日", - "田", - "礼", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31070_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0795e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/795e.gif", - "uri": "http://jisho.org/search/%E7%A5%9E%23kanji" - }, - { - "query": "真", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "279", - "strokeCount": 10, - "meaning": "true, reality, Buddhist sect", - "kunyomi": [ - "ま", - "ま-", - "まこと" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "真", - "reading": "シン", - "meaning": "truth, reality, genuineness, seriousness, logical truth, printed style writing, star performer" - }, - { - "example": "真意", - "reading": "シンイ", - "meaning": "real intention, true motive, true meaning" - }, - { - "example": "組み写真", - "reading": "クミシャシン", - "meaning": "composite or montage photograph" - }, - { - "example": "迫真", - "reading": "ハクシン", - "meaning": "realistic, true to life" - } - ], - "kunyomiExamples": [ - { - "example": "真", - "reading": "ま", - "meaning": "just, right, due (east), pure, genuine, true, truth" - }, - { - "example": "愛", - "reading": "まな", - "meaning": "beloved, dear" - }, - { - "example": "秀真", - "reading": "ほつま", - "meaning": "Hotsuma (script)" - }, - { - "example": "誠に", - "reading": "まことに", - "meaning": "indeed, really, absolutely, truly, actually, very, quite" - }, - { - "example": "実しやか", - "reading": "まことしやか", - "meaning": "plausible (but untrue), credible (e.g. of a lie), specious, truthy" - }, - { - "example": "嘘から出たまこと", - "reading": "うそからでたまこと", - "meaning": "something intended as a lie or joke which (by chance) ends up being true, lie turned truth" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "ハ", - "一", - "十", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30495_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0771f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/771f.gif", - "uri": "http://jisho.org/search/%E7%9C%9F%23kanji" - }, - { - "query": "深", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "484", - "strokeCount": 11, - "meaning": "deep, heighten, intensify, strengthen", - "kunyomi": [ - "ふか.い", - "-ぶか.い", - "ふか.まる", - "ふか.める", - "み-" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "深刻", - "reading": "シンコク", - "meaning": "serious, severe, grave, acute" - }, - { - "example": "深海", - "reading": "シンカイ", - "meaning": "deep sea, depths of the sea, ocean depths" - }, - { - "example": "海深", - "reading": "カイシン", - "meaning": "depth of the sea" - }, - { - "example": "最深", - "reading": "サイシン", - "meaning": "deepest" - } - ], - "kunyomiExamples": [ - { - "example": "深い", - "reading": "ふかい", - "meaning": "deep, profound, dense, thick, close (relationship), intense, strong, late" - }, - { - "example": "深入り", - "reading": "ふかいり", - "meaning": "getting deeply involved, going deeply into, going too far (into something)" - }, - { - "example": "深まる", - "reading": "ふかまる", - "meaning": "to deepen, to heighten, to intensify" - }, - { - "example": "深める", - "reading": "ふかめる", - "meaning": "to deepen, to heighten, to intensify" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "儿", - "冖", - "木", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28145_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06df1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6df1.gif", - "uri": "http://jisho.org/search/%E6%B7%B1%23kanji" - }, - { - "query": "進", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "142", - "strokeCount": 11, - "meaning": "advance, proceed, progress, promote", - "kunyomi": [ - "すす.む", - "すす.める" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "進学", - "reading": "シンガク", - "meaning": "entering a higher-level school, esp. going on to university" - }, - { - "example": "進化", - "reading": "シンカ", - "meaning": "evolution, progress" - }, - { - "example": "後進", - "reading": "コウシン", - "meaning": "one's junior, younger generation, next generation, moving backwards, backing up, reversing" - }, - { - "example": "累進", - "reading": "ルイシン", - "meaning": "successive promotion, gradual promotion, graduated" - } - ], - "kunyomiExamples": [ - { - "example": "進む", - "reading": "すすむ", - "meaning": "to advance, to go forward, to precede, to go ahead (of), to make progress, to improve, to deepen, to heighten, to be fast (of a clock), to be ahead, to do of one's own free will" - }, - { - "example": "進める", - "reading": "すすめる", - "meaning": "to advance, to move forward, to put (a clock, watch) forward, to carry forward (plans, work, etc.), to proceed with, to make progress in, to further, to advance, to hasten, to speed up, to raise, to elevate, to promote, to develop, to stimulate (e.g. one's appetite)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "込", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36914_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09032.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9032.gif", - "uri": "http://jisho.org/search/%E9%80%B2%23kanji" - }, - { - "query": "世", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "135", - "strokeCount": 5, - "meaning": "generation, world, society, public", - "kunyomi": [ - "よ" - ], - "onyomi": [ - "セイ", - "セ", - "ソウ" - ], - "onyomiExamples": [ - { - "example": "世", - "reading": "セイ", - "meaning": "counter for generations, epoch" - }, - { - "example": "世紀", - "reading": "セイキ", - "meaning": "century, era, of the century (e.g. fight of the century)" - }, - { - "example": "近世", - "reading": "キンセイ", - "meaning": "recent past, recent times, early modern period (from the Azuchi-Momoyama period to the end of the Edo period)" - }, - { - "example": "創世", - "reading": "ソウセイ", - "meaning": "creation of the world" - }, - { - "example": "世", - "reading": "セイ", - "meaning": "counter for generations, epoch" - }, - { - "example": "世紀", - "reading": "セイキ", - "meaning": "century, era, of the century (e.g. fight of the century)" - }, - { - "example": "夜店", - "reading": "ヨミセ", - "meaning": "night stall, night shop, night fair" - }, - { - "example": "救世", - "reading": "キュウセイ", - "meaning": "salvation" - } - ], - "kunyomiExamples": [ - { - "example": "世", - "reading": "よ", - "meaning": "world, society, public, life, lifetime, age, era, period, epoch, generation, reign, rule, the times, world (of existence)" - }, - { - "example": "世の中", - "reading": "よのなか", - "meaning": "society, the world, the times" - }, - { - "example": "千代", - "reading": "ちよ", - "meaning": "thousand years, very long period, forever" - }, - { - "example": "君が代", - "reading": "きみがよ", - "meaning": "Imperial reign, Kimigayo (Japanese national anthem)" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "世", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19990_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e16.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e16.gif", - "uri": "http://jisho.org/search/%E4%B8%96%23kanji" - }, - { - "query": "整", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "478", - "strokeCount": 16, - "meaning": "organize, arranging, tune, tone, meter, key (music)", - "kunyomi": [ - "ととの.える", - "ととの.う" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "整合", - "reading": "セイゴウ", - "meaning": "adjustment, coordination, integration, conformity" - }, - { - "example": "整形外科", - "reading": "セイケイゲカ", - "meaning": "orthopedic surgery, orthopaedic surgery, orthopedics, orthopaedics, plastic surgery, cosmetic surgery" - }, - { - "example": "年末調整", - "reading": "ネンマツチョウセイ", - "meaning": "year-end tax adjustment" - }, - { - "example": "修整", - "reading": "シュウセイ", - "meaning": "adjustment, retouching (in photography)" - } - ], - "kunyomiExamples": [ - { - "example": "整える", - "reading": "ととのえる", - "meaning": "to put in order, to arrange, to tidy up, to straighten, to adjust, to fix, to get ready, to prepare, to arrange, to supply, to assemble, to buy, to work out (e.g. business deal), to arrange (e.g. marriage), to settle" - }, - { - "example": "整う", - "reading": "ととのう", - "meaning": "to be ready, to be prepared, to be arranged, to be in order, to be put in order, to be well-ordered, to be well-proportioned, to be harmonious, to be adjusted, to be regulated, to be refined (e.g. of a face), to be settled (e.g. treaty, contract), to be completed" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "一", - "乞", - "口", - "攵", - "木", - "止", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25972_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06574.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6574.gif", - "uri": "http://jisho.org/search/%E6%95%B4%23kanji" - }, - { - "query": "昔", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1197", - "strokeCount": 8, - "meaning": "once upon a time, antiquity, old times", - "kunyomi": [ - "むかし" - ], - "onyomi": [ - "セキ", - "シャク" - ], - "onyomiExamples": [ - { - "example": "昔時", - "reading": "セキジ", - "meaning": "old times, former times" - }, - { - "example": "昔日", - "reading": "セキジツ", - "meaning": "old days" - }, - { - "example": "今昔", - "reading": "コンジャク", - "meaning": "past and present" - }, - { - "example": "往昔", - "reading": "オウセキ", - "meaning": "ancient times" - } - ], - "kunyomiExamples": [ - { - "example": "昔", - "reading": "むかし", - "meaning": "olden days, former" - }, - { - "example": "昔話", - "reading": "むかしばなし", - "meaning": "old tale, folk tale, legend, reminiscence" - }, - { - "example": "一昔", - "reading": "ひとむかし", - "meaning": "ages, long time, decade, ten years (ago)" - }, - { - "example": "遥か昔", - "reading": "はるかむかし", - "meaning": "long ago" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "一", - "二", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26132_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06614.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6614.gif", - "uri": "http://jisho.org/search/%E6%98%94%23kanji" - }, - { - "query": "全", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "75", - "strokeCount": 6, - "meaning": "whole, entire, all, complete, fulfill", - "kunyomi": [ - "まった.く", - "すべ.て" - ], - "onyomi": [ - "ゼン" - ], - "onyomiExamples": [ - { - "example": "全", - "reading": "ゼン", - "meaning": "all, whole, entire, complete, total, pan-, complete (set), in total" - }, - { - "example": "全域", - "reading": "ゼンイキ", - "meaning": "the whole area" - }, - { - "example": "腎不全", - "reading": "ジンフゼン", - "meaning": "kidney failure, renal failure" - }, - { - "example": "大全", - "reading": "タイゼン", - "meaning": "encyclopedia, complete works" - } - ], - "kunyomiExamples": [ - { - "example": "全く", - "reading": "まったく", - "meaning": "really, truly, entirely, completely, wholly, perfectly, indeed, good grief" - }, - { - "example": "全くする", - "reading": "まったくする", - "meaning": "to accomplish, to fulfill, to carry out" - }, - { - "example": "全て", - "reading": "すべて", - "meaning": "everything, all, the whole, entirely, completely, wholly, all" - }, - { - "example": "すべての爆弾の母", - "reading": "すべてのばくだんのはは", - "meaning": "mother of all bombs, MOAB" - } - ], - "radical": { - "symbol": "入", - "meaning": "enter" - }, - "parts": [ - "ハ", - "个", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20840_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05168.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5168.gif", - "uri": "http://jisho.org/search/%E5%85%A8%23kanji" - }, - { - "query": "相", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "45", - "strokeCount": 9, - "meaning": "inter-, mutual, together, each other, minister of state, councillor, aspect, phase, physiognomy", - "kunyomi": [ - "あい-" - ], - "onyomi": [ - "ソウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "相", - "reading": "ソウ", - "meaning": "appearance, look, countenance, a 'seeming' that fortune-tellers relate to one's fortune, aspect, phase (e.g. solid, liquid and gaseous)" - }, - { - "example": "相違", - "reading": "ソウイ", - "meaning": "difference, discrepancy, variation" - }, - { - "example": "実相", - "reading": "ジッソウ", - "meaning": "reality, real state of affairs, true state of affairs, true form of all things as they are, ultimate reality" - }, - { - "example": "世相", - "reading": "セソウ", - "meaning": "social conditions, phase of life, (sign of) the times, state of society" - }, - { - "example": "相", - "reading": "ショウ", - "meaning": "minister of state" - }, - { - "example": "相伴", - "reading": "ショウバン", - "meaning": "partaking, participating, taking part in, sharing (something with someone)" - }, - { - "example": "厚相", - "reading": "コウショウ", - "meaning": "Welfare Minister" - }, - { - "example": "宰相", - "reading": "サイショウ", - "meaning": "prime minister" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "木", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30456_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76f8.gif", - "uri": "http://jisho.org/search/%E7%9B%B8%23kanji" - }, - { - "query": "送", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "311", - "strokeCount": 9, - "meaning": "escort, send", - "kunyomi": [ - "おく.る" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "送球", - "reading": "ソウキュウ", - "meaning": "throwing a ball, handball" - }, - { - "example": "送還", - "reading": "ソウカン", - "meaning": "sending home, repatriation, deportation" - }, - { - "example": "葬送", - "reading": "ソウソウ", - "meaning": "funeral, burial rites, attendance at a funeral" - }, - { - "example": "移送", - "reading": "イソウ", - "meaning": "transfer, transport, removal" - } - ], - "kunyomiExamples": [ - { - "example": "送る", - "reading": "おくる", - "meaning": "to send (a thing), to dispatch, to despatch, to transmit, to take or escort (a person somewhere), to see off (a person), to bid farewell (to the departed), to bury, to spend (time), to live one's life, to pass (down the line), to affix okurigana" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "一", - "二", - "大", - "并", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36865_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09001.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9001.gif", - "uri": "http://jisho.org/search/%E9%80%81%23kanji" - }, - { - "query": "想", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "381", - "strokeCount": 13, - "meaning": "concept, think, idea, thought", - "kunyomi": [ - "おも.う" - ], - "onyomi": [ - "ソウ", - "ソ" - ], - "onyomiExamples": [ - { - "example": "想", - "reading": "ソウ", - "meaning": "conception, idea, thought, samjna (perception)" - }, - { - "example": "想像", - "reading": "ソウゾウ", - "meaning": "imagination, guess" - }, - { - "example": "追想", - "reading": "ツイソウ", - "meaning": "recollection, reminiscence" - }, - { - "example": "お愛想", - "reading": "オアイソ", - "meaning": "compliments, civilities, courtesies, flattery, hospitality, special treatment, entertainment, bill (at a restaurant), check" - }, - { - "example": "想", - "reading": "ソウ", - "meaning": "conception, idea, thought, samjna (perception)" - }, - { - "example": "想像", - "reading": "ソウゾウ", - "meaning": "imagination, guess" - }, - { - "example": "お愛想", - "reading": "オアイソ", - "meaning": "compliments, civilities, courtesies, flattery, hospitality, special treatment, entertainment, bill (at a restaurant), check" - }, - { - "example": "仏教思想", - "reading": "ブッキョウシソ", - "meaning": "Buddhist thought, Buddhist concept" - } - ], - "kunyomiExamples": [ - { - "example": "思う", - "reading": "おもう", - "meaning": "to think, to consider, to believe, to reckon, to think (of doing), to plan (to do), to judge, to assess, to regard, to imagine, to suppose, to dream, to expect, to look forward to, to feel, to be (in a state of mind), to desire, to want, to recall, to remember" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "木", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24819_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60f3.gif", - "uri": "http://jisho.org/search/%E6%83%B3%23kanji" - }, - { - "query": "息", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "882", - "strokeCount": 10, - "meaning": "breath, respiration, son, interest (on money)", - "kunyomi": [ - "いき" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "息", - "reading": "ソク", - "meaning": "son, interest (on a loan, deposit, etc.)" - }, - { - "example": "息子", - "reading": "ムスコ", - "meaning": "son, penis" - }, - { - "example": "鼻息", - "reading": "ハナイキ", - "meaning": "nasal breathing, breathing through one's nose, person's pleasure, excitement" - }, - { - "example": "終息", - "reading": "シュウソク", - "meaning": "having ended, being resolved" - } - ], - "kunyomiExamples": [ - { - "example": "息", - "reading": "いき", - "meaning": "breath, breathing, tone, mood" - }, - { - "example": "意気込む", - "reading": "いきごむ", - "meaning": "to be enthusiastic about, to be eager, to be keen" - }, - { - "example": "鼻息", - "reading": "はないき", - "meaning": "nasal breathing, breathing through one's nose, person's pleasure, excitement" - }, - { - "example": "寝息", - "reading": "ねいき", - "meaning": "breathing of a sleeping person" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "目", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24687_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0606f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/606f.gif", - "uri": "http://jisho.org/search/%E6%81%AF%23kanji" - }, - { - "query": "速", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "576", - "strokeCount": 10, - "meaning": "quick, fast", - "kunyomi": [ - "はや.い", - "はや-", - "はや.める", - "すみ.やか" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "速", - "reading": "ソク", - "meaning": "gear, speed (e.g. 4-speed transmission)" - }, - { - "example": "速度", - "reading": "ソクド", - "meaning": "speed, velocity, pace, rate, velocity" - }, - { - "example": "失速", - "reading": "シッソク", - "meaning": "stall (in flying), downturn, slowdown, slump, weakening, decline" - }, - { - "example": "快速", - "reading": "カイソク", - "meaning": "high speed, rapidity, rapid-service train (not as fast as express), rapid train" - } - ], - "kunyomiExamples": [ - { - "example": "早い", - "reading": "はやい", - "meaning": "fast, quick, hasty, brisk, early (in the day, etc.), premature, (too) soon, not yet, (too) early, easy, simple, quick" - }, - { - "example": "早める", - "reading": "はやめる", - "meaning": "to bring forward (e.g. by 3 hours), to advance, to hasten (e.g. one's death), to expedite, to precipitate, to quicken (e.g. one's step), to speed up, to accelerate" - }, - { - "example": "速やか", - "reading": "すみやか", - "meaning": "quick, speedy, prompt, rapid, swift" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ハ", - "一", - "口", - "木", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36895_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0901f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/901f.gif", - "uri": "http://jisho.org/search/%E9%80%9F%23kanji" - }, - { - "query": "族", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "393", - "strokeCount": 11, - "meaning": "tribe, family", - "kunyomi": [], - "onyomi": [ - "ゾク" - ], - "onyomiExamples": [ - { - "example": "族", - "reading": "ゾク", - "meaning": "tribe, clan, band, family, (taxonomical) tribe, group (of the periodic table)" - }, - { - "example": "族長", - "reading": "ゾクチョウ", - "meaning": "patriarch, head of a family" - }, - { - "example": "皇族", - "reading": "コウゾク", - "meaning": "imperial family, royalty" - }, - { - "example": "王族", - "reading": "オウゾク", - "meaning": "royalty" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "方", - "meaning": "square" - }, - "parts": [ - "乞", - "方", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26063_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065cf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65cf.gif", - "uri": "http://jisho.org/search/%E6%97%8F%23kanji" - }, - { - "query": "他", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "543", - "strokeCount": 5, - "meaning": "other, another, the others", - "kunyomi": [ - "ほか" - ], - "onyomi": [ - "タ" - ], - "onyomiExamples": [ - { - "example": "他", - "reading": "タ", - "meaning": "other (esp. people and abstract matters)" - }, - { - "example": "他国", - "reading": "タコク", - "meaning": "foreign country, other country, another province, strange land, alien land" - }, - { - "example": "自他", - "reading": "ジタ", - "meaning": "oneself and others, (in philosophy) subject and object, transitivity, transitive and intransitive verbs, first person and third person, self-salvation and salvation by faith" - }, - { - "example": "排他", - "reading": "ハイタ", - "meaning": "exclusion" - } - ], - "kunyomiExamples": [ - { - "example": "他", - "reading": "ほか", - "meaning": "other (place, thing, person), the rest, outside, beyond, nothing except, nothing but, nothing apart from, nothing aside from, no choice (but to), besides..., in addition to..." - }, - { - "example": "他に", - "reading": "ほかに", - "meaning": "in addition, besides" - }, - { - "example": "殊の外", - "reading": "ことのほか", - "meaning": "exceedingly, extremely, exceptionally, unusually, unexpectedly" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "也", - "化" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20182_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ed6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ed6.gif", - "uri": "http://jisho.org/search/%E4%BB%96%23kanji" - }, - { - "query": "打", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "239", - "strokeCount": 5, - "meaning": "strike, hit, knock, pound, dozen", - "kunyomi": [ - "う.つ", - "う.ち-", - "ぶ.つ" - ], - "onyomi": [ - "ダ", - "ダース" - ], - "onyomiExamples": [ - { - "example": "打", - "reading": "ダ", - "meaning": "hitting a ball, batting, stroke" - }, - { - "example": "打", - "reading": "ダース", - "meaning": "dozen" - }, - { - "example": "本塁打", - "reading": "ホンルイダ", - "meaning": "home run" - }, - { - "example": "二塁打", - "reading": "ニルイダ", - "meaning": "two-base hit, double" - }, - { - "example": "打", - "reading": "ダース", - "meaning": "dozen" - } - ], - "kunyomiExamples": [ - { - "example": "打つ", - "reading": "うつ", - "meaning": "to hit, to strike, to knock, to beat, to punch, to slap, to tap, to bang, to clap, to pound, to strike (noon, etc.), to sound (cymbals, etc.), to beat (a drum, etc.), to beat (rhythmically, e.g. pulse, waves, etc.), to move, to impress, to touch, to drive in, to hammer in, to put in, to inject, to type, to send, to transmit, to insert, to write in, to mark, to make (noodles, etc.), to prepare, to till (soil), to sprinkle, to throw, to cast, to do, to carry out, to play, to perform, to engage in (gambling, etc.), to pay (a deposit, etc.), to visit (on a pilgrimage), to line (a coat), to bind (a criminal)" - }, - { - "example": "打つ手", - "reading": "うつて", - "meaning": "way to do (something)" - }, - { - "example": "打つ", - "reading": "ぶつ", - "meaning": "to hit (a person), to strike, to beat, to deliver (a speech), to give (an address)" - }, - { - "example": "打つかる", - "reading": "ぶつかる", - "meaning": "to strike against, to collide with, to bump into, to conflict, to encounter, to meet, to clash" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "亅", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25171_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06253.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6253.gif", - "uri": "http://jisho.org/search/%E6%89%93%23kanji" - }, - { - "query": "対", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "34", - "strokeCount": 7, - "meaning": "vis-a-vis, opposite, even, equal, versus, anti-, compare", - "kunyomi": [ - "あいて", - "こた.える", - "そろ.い", - "つれあ.い", - "なら.ぶ", - "むか.う" - ], - "onyomi": [ - "タイ", - "ツイ" - ], - "onyomiExamples": [ - { - "example": "対", - "reading": "タイ", - "meaning": "opposite, opposition, versus, vs., v., to (e.g. \"winning a game five to three\"), equal footing, equal terms, against ..., anti-, toward ..., to ..." - }, - { - "example": "対案", - "reading": "タイアン", - "meaning": "counter-proposal, counter-suggestion" - }, - { - "example": "国対", - "reading": "コクタイ", - "meaning": "Committee of the National Diet" - }, - { - "example": "相対", - "reading": "ソウタイ", - "meaning": "relativity, relative" - }, - { - "example": "対", - "reading": "ツイ", - "meaning": "pair, couple, set, antithesis, counter for items that come in pairs, counter for sets (of clothes, small furniture, utensils, etc.)" - }, - { - "example": "対句", - "reading": "ツイク", - "meaning": "couplet, antithesis" - }, - { - "example": "一対", - "reading": "イッツイ", - "meaning": "pair, couple" - }, - { - "example": "双対", - "reading": "ソウツイ", - "meaning": "duality" - } - ], - "kunyomiExamples": [ - { - "example": "対手", - "reading": "たいしゅ", - "meaning": "opponent (in combat)" - }, - { - "example": "向かう", - "reading": "むかう", - "meaning": "to face, to go towards, to head towards" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "寸", - "文" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23550_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bfe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bfe.gif", - "uri": "http://jisho.org/search/%E5%AF%BE%23kanji" - }, - { - "query": "待", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "391", - "strokeCount": 9, - "meaning": "wait, depend on", - "kunyomi": [ - "ま.つ", - "-ま.ち" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "待遇", - "reading": "タイグウ", - "meaning": "treatment, reception, service, working conditions, salary, pay, remuneration" - }, - { - "example": "待機", - "reading": "タイキ", - "meaning": "standing by, awaiting an opportunity, being on alert" - }, - { - "example": "歓待", - "reading": "カンタイ", - "meaning": "warm welcome, friendly reception, hospitality, entertainment" - }, - { - "example": "優待", - "reading": "ユウタイ", - "meaning": "preferential treatment, hospitality, warm reception, cordial welcome" - } - ], - "kunyomiExamples": [ - { - "example": "待つ", - "reading": "まつ", - "meaning": "to wait, to await, to look forward to, to anticipate, to depend on, to need" - }, - { - "example": "待つ身は長い", - "reading": "まつみはながい", - "meaning": "a watched pot never boils" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "土", - "寸", - "彳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24453_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f85.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f85.gif", - "uri": "http://jisho.org/search/%E5%BE%85%23kanji" - }, - { - "query": "代", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "66", - "strokeCount": 5, - "meaning": "substitute, change, convert, replace, period, age, counter for decades of ages, eras, etc., generation, charge, rate, fee", - "kunyomi": [ - "か.わる", - "かわ.る", - "かわ.り", - "か.わり", - "-がわ.り", - "-が.わり", - "か.える", - "よ", - "しろ" - ], - "onyomi": [ - "ダイ", - "タイ" - ], - "onyomiExamples": [ - { - "example": "代", - "reading": "ダイ", - "meaning": "charge, cost, price, generation, age, (school) year, cohort, reign, era, a representative of, on behalf of, for (someone), switchboard number, counter for decades of ages, eras, etc., counter for generations (of inheritors to a throne, etc.), proxy application company, pronoun" - }, - { - "example": "代官", - "reading": "ダイカン", - "meaning": "Edo-period prefectural governor (magistrate, bailiff)" - }, - { - "example": "大時代", - "reading": "オオジダイ", - "meaning": "old-fashioned, antiquated, anachronistic" - }, - { - "example": "次代", - "reading": "ジダイ", - "meaning": "the next era" - }, - { - "example": "代謝", - "reading": "タイシャ", - "meaning": "metabolism, renewal, regeneration, replacing the old with the new" - }, - { - "example": "代赭", - "reading": "タイシャ", - "meaning": "red ocher (ochre)" - }, - { - "example": "永代", - "reading": "エイタイ", - "meaning": "permanence, eternity" - }, - { - "example": "希代", - "reading": "キタイ", - "meaning": "uncommon, rare, extraordinary, matchless" - } - ], - "kunyomiExamples": [ - { - "example": "替わる", - "reading": "かわる", - "meaning": "to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch" - }, - { - "example": "代わる代わる", - "reading": "かわるがわる", - "meaning": "alternately, by turns" - }, - { - "example": "替わる", - "reading": "かわる", - "meaning": "to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch" - }, - { - "example": "代わる代わる", - "reading": "かわるがわる", - "meaning": "alternately, by turns" - }, - { - "example": "代わり", - "reading": "かわり", - "meaning": "substitute, replacement, substituting, replacing, stand-in, proxy, alternate, deputy, relief, successor, compensation, exchange, return, another helping, second helping, seconds, refill, upcoming program, upcoming programme" - }, - { - "example": "代わり合う", - "reading": "かわりあう", - "meaning": "to relieve each other, to take turns (to do)" - }, - { - "example": "代わり", - "reading": "かわり", - "meaning": "substitute, replacement, substituting, replacing, stand-in, proxy, alternate, deputy, relief, successor, compensation, exchange, return, another helping, second helping, seconds, refill, upcoming program, upcoming programme" - }, - { - "example": "代わり合う", - "reading": "かわりあう", - "meaning": "to relieve each other, to take turns (to do)" - }, - { - "example": "換える", - "reading": "かえる", - "meaning": "to replace, to exchange, to interchange, to substitute" - }, - { - "example": "世", - "reading": "よ", - "meaning": "world, society, public, life, lifetime, age, era, period, epoch, generation, reign, rule, the times, world (of existence)" - }, - { - "example": "代々", - "reading": "だいだい", - "meaning": "for generations, hereditary, generation after generation" - }, - { - "example": "千代", - "reading": "ちよ", - "meaning": "thousand years, very long period, forever" - }, - { - "example": "君が代", - "reading": "きみがよ", - "meaning": "Imperial reign, Kimigayo (Japanese national anthem)" - }, - { - "example": "代", - "reading": "しろ", - "meaning": "substitution, material, price, margin (e.g. for stapling, etc.), area required for something, shiro (unit of land area equal to one-fiftieth of a tan; approx. 19.83 m.sq.)" - }, - { - "example": "代物", - "reading": "しろもの", - "meaning": "article, goods, product, fine thing, fellow, affair, stuff, prostitute, price, cost, money" - }, - { - "example": "阿代", - "reading": "あしろ", - "meaning": "Ophidion asiro (species of cusk eel)" - }, - { - "example": "食い代", - "reading": "くいしろ", - "meaning": "food expenses" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "弋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20195_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ee3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ee3.gif", - "uri": "http://jisho.org/search/%E4%BB%A3%23kanji" - }, - { - "query": "第", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "160", - "strokeCount": 11, - "meaning": "No., residence", - "kunyomi": [], - "onyomi": [ - "ダイ", - "テイ" - ], - "onyomiExamples": [ - { - "example": "第", - "reading": "ダイ", - "meaning": "prefix for forming ordinal numbers" - }, - { - "example": "第一義", - "reading": "ダイイチギ", - "meaning": "primary significance, primary importance, first principle, absolute truth, ultimate truth" - }, - { - "example": "式次第", - "reading": "シキシダイ", - "meaning": "program of a ceremony (programme)" - }, - { - "example": "登第", - "reading": "トウダイ", - "meaning": "passing the examination" - }, - { - "example": "邸宅", - "reading": "テイタク", - "meaning": "mansion, residence" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "弓", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31532_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b2c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b2c.gif", - "uri": "http://jisho.org/search/%E7%AC%AC%23kanji" - }, - { - "query": "題", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "96", - "strokeCount": 18, - "meaning": "topic, subject", - "kunyomi": [], - "onyomi": [ - "ダイ" - ], - "onyomiExamples": [ - { - "example": "題", - "reading": "ダイ", - "meaning": "title, subject, theme, topic, problem (on a test), question, counter for questions (on a test)" - }, - { - "example": "題材", - "reading": "ダイザイ", - "meaning": "subject, theme" - }, - { - "example": "表題", - "reading": "ヒョウダイ", - "meaning": "title, index, heading, headline, caption" - }, - { - "example": "命題", - "reading": "メイダイ", - "meaning": "proposition, thesis, notion, theory, problem, issue, challenge" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "日", - "疋", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38988_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0984c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/984c.gif", - "uri": "http://jisho.org/search/%E9%A1%8C%23kanji" - }, - { - "query": "炭", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1307", - "strokeCount": 9, - "meaning": "charcoal, coal", - "kunyomi": [ - "すみ" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "炭素", - "reading": "タンソ", - "meaning": "carbon (C)" - }, - { - "example": "炭鉱", - "reading": "タンコウ", - "meaning": "coal mine, coal pit" - }, - { - "example": "木炭", - "reading": "モクタン", - "meaning": "charcoal" - }, - { - "example": "活性炭", - "reading": "カッセイタン", - "meaning": "activated charcoal, activated carbon" - } - ], - "kunyomiExamples": [ - { - "example": "炭", - "reading": "すみ", - "meaning": "charcoal, charred remains" - }, - { - "example": "炭火", - "reading": "すみび", - "meaning": "charcoal fire" - }, - { - "example": "正炭", - "reading": "しょうすみ", - "meaning": "first adding of charcoal to the fire (tea ceremony)" - }, - { - "example": "竹炭", - "reading": "たけすみ", - "meaning": "bamboo charcoal" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "厂", - "山", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28845_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/070ad.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/70ad.gif", - "uri": "http://jisho.org/search/%E7%82%AD%23kanji" - }, - { - "query": "短", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "689", - "strokeCount": 12, - "meaning": "short, brevity, fault, defect, weak point", - "kunyomi": [ - "みじか.い" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "短", - "reading": "タン", - "meaning": "fault, defect, weak point, minor, 5-point card" - }, - { - "example": "短歌", - "reading": "タンカ", - "meaning": "tanka, 31-mora Japanese poem" - }, - { - "example": "長短", - "reading": "チョウタン", - "meaning": "(relative) length, advantages and disadvantages, pluses and minuses, strong and weak points, merits and demerits" - }, - { - "example": "車高短", - "reading": "シャコウタン", - "meaning": "lowered car, car with lowered suspension" - } - ], - "kunyomiExamples": [ - { - "example": "短い", - "reading": "みじかい", - "meaning": "short, brief" - } - ], - "radical": { - "symbol": "矢", - "meaning": "arrow" - }, - "parts": [ - "乞", - "口", - "并", - "矢", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30701_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77ed.gif", - "uri": "http://jisho.org/search/%E7%9F%AD%23kanji" - }, - { - "query": "談", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "272", - "strokeCount": 15, - "meaning": "discuss, talk", - "kunyomi": [], - "onyomi": [ - "ダン" - ], - "onyomiExamples": [ - { - "example": "談", - "reading": "ダン", - "meaning": "talk, story, conversation" - }, - { - "example": "談合", - "reading": "ダンゴウ", - "meaning": "consultation, discussion, conference, collusion, bid-rigging" - }, - { - "example": "示談", - "reading": "ジダン", - "meaning": "settlement out of court, private settlement" - }, - { - "example": "講談", - "reading": "コウダン", - "meaning": "storytelling (of war chronicles, revenge tales, etc.) with highly dramatic delivery, story" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "火", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35527_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ac7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ac7.gif", - "uri": "http://jisho.org/search/%E8%AB%87%23kanji" - }, - { - "query": "着", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "376", - "strokeCount": 12, - "meaning": "don, arrive, wear, counter for suits of clothing", - "kunyomi": [ - "き.る", - "き.せる", - "つ.く", - "つ.ける" - ], - "onyomi": [ - "チャク", - "ジャク" - ], - "onyomiExamples": [ - { - "example": "着", - "reading": "チャク", - "meaning": "counter for suits of clothing, arriving at ..." - }, - { - "example": "着衣", - "reading": "チャクイ", - "meaning": "clothes (that one is wearing), wearing clothes" - }, - { - "example": "決着", - "reading": "ケッチャク", - "meaning": "conclusion, decision, end, settlement" - }, - { - "example": "装着", - "reading": "ソウチャク", - "meaning": "equipping, installing, fitting, mounting, putting on" - }, - { - "example": "着す", - "reading": "ジャクス", - "meaning": "to insist on, to cling to, to adhere to" - }, - { - "example": "頓着", - "reading": "トンチャク", - "meaning": "being concerned about or mindful of" - } - ], - "kunyomiExamples": [ - { - "example": "着る", - "reading": "きる", - "meaning": "to wear (in modern Japanese, from the shoulders down), to put on, to bear (guilt, etc.)" - }, - { - "example": "着類", - "reading": "きるい", - "meaning": "clothing" - }, - { - "example": "着せる", - "reading": "きせる", - "meaning": "to put clothes on (someone), to plate, to gild, to veneer, to accuse (of some crime), to give (a bad name)" - }, - { - "example": "着く", - "reading": "つく", - "meaning": "to arrive at, to reach, to sit on, to sit at (e.g. the table)" - }, - { - "example": "付ける", - "reading": "つける", - "meaning": "to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "ノ", - "并", - "王", - "目", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30528_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07740.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7740.gif", - "uri": "http://jisho.org/search/%E7%9D%80%23kanji" - }, - { - "query": "注", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "497", - "strokeCount": 8, - "meaning": "pour, irrigate, shed (tears), flow into, concentrate on, notes, comment, annotate", - "kunyomi": [ - "そそ.ぐ", - "さ.す", - "つ.ぐ" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "注", - "reading": "チュウ", - "meaning": "annotation, explanatory note, comment" - }, - { - "example": "注意", - "reading": "チュウイ", - "meaning": "caution, being careful, attention (heed), warning, advice" - }, - { - "example": "受注", - "reading": "ジュチュウ", - "meaning": "accepting an order, receiving an order, orders received" - }, - { - "example": "特注", - "reading": "トクチュウ", - "meaning": "special order (goods), custom (made), bespoke" - } - ], - "kunyomiExamples": [ - { - "example": "注ぐ", - "reading": "そそぐ", - "meaning": "to pour (into), to sprinkle on (from above), to water (e.g. plants), to pour onto, to spray, to shed (tears), to concentrate one's energy (strength, attention, etc.) on, to devote to, to fix (one's eyes) on, to flow into (e.g. of a river), to run into, to drain into, to fall (of rain, snow), to pour down" - }, - { - "example": "注す", - "reading": "さす", - "meaning": "to pour, to add (liquid), to serve (drinks), to put on (lipstick, etc.), to apply, to colour, to dye, to light (a fire), to burn" - }, - { - "example": "注ぐ", - "reading": "つぐ", - "meaning": "to pour (into a vessel), to fill (a cup, bowl, etc.) with, to dish out (food or drink)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "汁", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27880_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ce8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ce8.gif", - "uri": "http://jisho.org/search/%E6%B3%A8%23kanji" - }, - { - "query": "柱", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1119", - "strokeCount": 9, - "meaning": "pillar, post, cylinder, support", - "kunyomi": [ - "はしら" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "柱", - "reading": "チュウ", - "meaning": "bridge (of a koto, etc.), cylinder, prism" - }, - { - "example": "柱穴", - "reading": "チュウケツ", - "meaning": "posthole (archaeology)" - }, - { - "example": "支柱", - "reading": "シチュウ", - "meaning": "prop, stay, support, brace, fulcrum" - }, - { - "example": "氷柱", - "reading": "ツララ", - "meaning": "icicle, ice pillar (for cooling a room), ice" - } - ], - "kunyomiExamples": [ - { - "example": "柱", - "reading": "はしら", - "meaning": "pillar, post, support, prop, mainstay, counter for buddhas, gods, nobles, etc." - }, - { - "example": "柱穴", - "reading": "ちゅうけつ", - "meaning": "posthole (archaeology)" - }, - { - "example": "杖柱", - "reading": "つえはしら", - "meaning": "person upon whom one relies" - }, - { - "example": "心の柱", - "reading": "しんのはしら", - "meaning": "central pillar of a pagoda" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "丶", - "木", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067f1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67f1.gif", - "uri": "http://jisho.org/search/%E6%9F%B1%23kanji" - }, - { - "query": "丁", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1312", - "strokeCount": 2, - "meaning": "street, ward, town, counter for guns, tools, leaves or cakes of something, even number, 4th calendar sign", - "kunyomi": [ - "ひのと" - ], - "onyomi": [ - "チョウ", - "テイ", - "チン", - "トウ", - "チ" - ], - "onyomiExamples": [ - { - "example": "丁", - "reading": "チョウ", - "meaning": "counter for leaves in a book (esp. one with traditional Japanese-style binding), counter for blocks of tofu, counter for servings in a restaurant, counter for long and narrow things such as guns, scissors, spades, hoes, inksticks, palanquins, candles, jinrikishas, shamisen, oars, etc., even number, 109.09 m" - }, - { - "example": "丁度", - "reading": "チョウド", - "meaning": "exactly, precisely, just, right, as if, as though, quite" - }, - { - "example": "一丁", - "reading": "イッチョウ", - "meaning": "one sheet, one page, one leaf, one block of tofu, one serving (in a restaurant), one long and narrow thing (e.g. guns, scissors, spades, hoes, inksticks, palanquins, candles, jinrikishas, shamisen, oars, etc.), one chō (unit of distance, 109.09 m), one game, one task, well then, come then" - }, - { - "example": "柳刃包丁", - "reading": "ヤナギバボウチョウ", - "meaning": "kitchen knife for sashimi" - }, - { - "example": "丁", - "reading": "テイ", - "meaning": "fourth rank, fourth class, fourth party (in a contract, etc.), fourth sign of the Chinese calendar, Denmark" - }, - { - "example": "丁寧", - "reading": "テイネイ", - "meaning": "polite, courteous, civil, careful, close, thorough, conscientious" - }, - { - "example": "装丁", - "reading": "ソウテイ", - "meaning": "binding (of a book), design (of a book cover)" - }, - { - "example": "正丁", - "reading": "セイテイ", - "meaning": "man in good health between 21 and 60 years of age to whom applied various corvee and taxes (under the ritsuryo system)" - }, - { - "example": "丁幾", - "reading": "チンキ", - "meaning": "tincture" - }, - { - "example": "亜爾然丁", - "reading": "アルゼンチン", - "meaning": "Argentina" - }, - { - "example": "丁々", - "reading": "チョウチョウ", - "meaning": "clashing of swords, felling of trees, ringing of an ax" - }, - { - "example": "丁々", - "reading": "チョウチョウ", - "meaning": "clashing of swords, felling of trees, ringing of an ax" - }, - { - "example": "丁", - "reading": "チョウ", - "meaning": "counter for leaves in a book (esp. one with traditional Japanese-style binding), counter for blocks of tofu, counter for servings in a restaurant, counter for long and narrow things such as guns, scissors, spades, hoes, inksticks, palanquins, candles, jinrikishas, shamisen, oars, etc., even number, 109.09 m" - }, - { - "example": "丁度", - "reading": "チョウド", - "meaning": "exactly, precisely, just, right, as if, as though, quite" - } - ], - "kunyomiExamples": [ - { - "example": "丁", - "reading": "てい", - "meaning": "fourth rank, fourth class, fourth party (in a contract, etc.), fourth sign of the Chinese calendar, Denmark" - }, - { - "example": "丁卯", - "reading": "ひのとう", - "meaning": "Fire Rabbit (4th year of the sexagenary cycle, e.g. 1927, 1987, 2047)" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "亅" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19969_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e01.gif", - "uri": "http://jisho.org/search/%E4%B8%81%23kanji" - }, - { - "query": "帳", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1459", - "strokeCount": 11, - "meaning": "notebook, account book, album, curtain, veil, net, tent", - "kunyomi": [ - "とばり" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "帳", - "reading": "チョウ", - "meaning": "book, register" - }, - { - "example": "帳消し", - "reading": "チョウケシ", - "meaning": "writing off (a debt), cancellation, balancing the books, cancelling out (gains or losses), making even, making up (for), offsetting, undoing, wiping out" - }, - { - "example": "記帳", - "reading": "キチョウ", - "meaning": "registry, entry, book-keeping, signature" - }, - { - "example": "台帳", - "reading": "ダイチョウ", - "meaning": "account book, ledger, register" - } - ], - "kunyomiExamples": [ - { - "example": "帳", - "reading": "とばり", - "meaning": "curtain, hanging, bunting" - }, - { - "example": "夜の帳", - "reading": "よるのとばり", - "meaning": "veil of darkness, curtain of night" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "巾", - "長" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24115_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e33.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e33.gif", - "uri": "http://jisho.org/search/%E5%B8%B3%23kanji" - }, - { - "query": "調", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "87", - "strokeCount": 15, - "meaning": "tune, tone, meter, key (music), writing style, prepare, exorcise, investigate, harmonize, mediate", - "kunyomi": [ - "しら.べる", - "しら.べ", - "ととの.う", - "ととの.える" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "調", - "reading": "チョウ", - "meaning": "pitch, tone, key, time, tempo, mood, tendency, style, tax paid in kind (ritsuryo period), first a tax on rice fields and households, then on individuals" - }, - { - "example": "調印", - "reading": "チョウイン", - "meaning": "signature, signing, sealing" - }, - { - "example": "長調", - "reading": "チョウチョウ", - "meaning": "major key" - }, - { - "example": "空調", - "reading": "クウチョウ", - "meaning": "air conditioning" - } - ], - "kunyomiExamples": [ - { - "example": "調べる", - "reading": "しらべる", - "meaning": "to examine, to look up, to investigate, to check up, to sense, to study, to inquire, to search" - }, - { - "example": "調べ", - "reading": "しらべ", - "meaning": "investigation, inspection, examination, tune, note, melody" - }, - { - "example": "調べる", - "reading": "しらべる", - "meaning": "to examine, to look up, to investigate, to check up, to sense, to study, to inquire, to search" - }, - { - "example": "取り調べ", - "reading": "とりしらべ", - "meaning": "investigation (e.g. by police or prosecutors), examination, inquiry, enquiry" - }, - { - "example": "整う", - "reading": "ととのう", - "meaning": "to be ready, to be prepared, to be arranged, to be in order, to be put in order, to be well-ordered, to be well-proportioned, to be harmonious, to be adjusted, to be regulated, to be refined (e.g. of a face), to be settled (e.g. treaty, contract), to be completed" - }, - { - "example": "整える", - "reading": "ととのえる", - "meaning": "to put in order, to arrange, to tidy up, to straighten, to adjust, to fix, to get ready, to prepare, to arrange, to supply, to assemble, to buy, to work out (e.g. business deal), to arrange (e.g. marriage), to settle" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "冂", - "口", - "土", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35519_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08abf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8abf.gif", - "uri": "http://jisho.org/search/%E8%AA%BF%23kanji" - }, - { - "query": "追", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "411", - "strokeCount": 9, - "meaning": "chase, drive away, follow, pursue, meanwhile", - "kunyomi": [ - "お.う" - ], - "onyomi": [ - "ツイ" - ], - "onyomiExamples": [ - { - "example": "追及", - "reading": "ツイキュウ", - "meaning": "investigation (e.g. into someone's guilt), questioning, pressing, hounding, pinning down, catching up, overtaking" - }, - { - "example": "追加", - "reading": "ツイカ", - "meaning": "addition, supplement, appending, appendix" - }, - { - "example": "訴追", - "reading": "ソツイ", - "meaning": "prosecution, indictment, impeachment" - }, - { - "example": "猛追", - "reading": "モウツイ", - "meaning": "hot pursuit, hot chase" - } - ], - "kunyomiExamples": [ - { - "example": "追う", - "reading": "おう", - "meaning": "to chase, to run after, to pursue, to follow after, to follow (a set order, a trend, etc.), to drive out, to get rid of, to oust, to expel, to drive (e.g. a herd), to be pressed (e.g. for time)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "口", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36861_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ffd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ffd.gif", - "uri": "http://jisho.org/search/%E8%BF%BD%23kanji" - }, - { - "query": "定", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "48", - "strokeCount": 8, - "meaning": "determine, fix, establish, decide", - "kunyomi": [ - "さだ.める", - "さだ.まる", - "さだ.か" - ], - "onyomi": [ - "テイ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "定価", - "reading": "テイカ", - "meaning": "list price, regular price, established price" - }, - { - "example": "定員", - "reading": "テイイン", - "meaning": "fixed number (of people), prescribed number (of regular personnel, students, etc.), quota, numerical limit, complement, capacity (of a bus, boat, theatre, etc.), seating capacity" - }, - { - "example": "裁定", - "reading": "サイテイ", - "meaning": "decision, ruling, award, arbitration" - }, - { - "example": "改定", - "reading": "カイテイ", - "meaning": "revision (of a rule, price, etc.), alteration, change" - }, - { - "example": "定", - "reading": "ジョウ", - "meaning": "certainty, reality, actuality, regular, permanent, samadhi (state of intense concentration achieved through meditation)" - }, - { - "example": "定住", - "reading": "テイジュウ", - "meaning": "settlement, permanent residency" - }, - { - "example": "不定", - "reading": "フジョウ", - "meaning": "uncertainty, insecurity, inconstancy, indefinite, undecided" - }, - { - "example": "改定", - "reading": "カイテイ", - "meaning": "revision (of a rule, price, etc.), alteration, change" - } - ], - "kunyomiExamples": [ - { - "example": "定める", - "reading": "さだめる", - "meaning": "to decide, to determine, to establish, to lay down, to prescribe, to provide, to stipulate, to bring peace (to), to make peaceful" - }, - { - "example": "定まる", - "reading": "さだまる", - "meaning": "to become settled, to be fixed" - }, - { - "example": "定か", - "reading": "さだか", - "meaning": "definite, sure" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23450_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b9a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b9a.gif", - "uri": "http://jisho.org/search/%E5%AE%9A%23kanji" - }, - { - "query": "庭", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "816", - "strokeCount": 10, - "meaning": "courtyard, garden, yard", - "kunyomi": [ - "にわ" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "庭園", - "reading": "テイエン", - "meaning": "garden, park" - }, - { - "example": "庭球", - "reading": "テイキュウ", - "meaning": "tennis" - }, - { - "example": "前庭", - "reading": "ゼンテイ", - "meaning": "front garden, front yard, vestibule (of the ear)" - }, - { - "example": "営庭", - "reading": "エイテイ", - "meaning": "open space within a barracks compound" - } - ], - "kunyomiExamples": [ - { - "example": "庭", - "reading": "にわ", - "meaning": "garden, yard, courtyard, field (of action), area" - }, - { - "example": "庭木", - "reading": "にわき", - "meaning": "garden tree" - }, - { - "example": "前庭", - "reading": "ぜんてい", - "meaning": "front garden, front yard, vestibule (of the ear)" - }, - { - "example": "奥庭", - "reading": "おくにわ", - "meaning": "inner garden, back yard" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "广", - "廴", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24237_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ead.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ead.gif", - "uri": "http://jisho.org/search/%E5%BA%AD%23kanji" - }, - { - "query": "笛", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1928", - "strokeCount": 11, - "meaning": "flute, clarinet, pipe, whistle, bagpipe, piccolo", - "kunyomi": [ - "ふえ" - ], - "onyomi": [ - "テキ" - ], - "onyomiExamples": [ - { - "example": "笛子", - "reading": "テキシ", - "meaning": "dizi, Chinese bamboo transverse flute" - }, - { - "example": "警笛", - "reading": "ケイテキ", - "meaning": "horn, alarm, whistle, foghorn" - }, - { - "example": "横笛", - "reading": "ヨコブエ", - "meaning": "transverse flute (e.g. a fife)" - } - ], - "kunyomiExamples": [ - { - "example": "笛", - "reading": "ふえ", - "meaning": "flute, fife, pipe, recorder, flageolet, shakuhachi, clarinet, whistle" - }, - { - "example": "笛吹き", - "reading": "ふえふき", - "meaning": "flute player, flutist, flautist, piper" - }, - { - "example": "鷺笛", - "reading": "さぎふえ", - "meaning": "longspine snipefish (Macroramphosus scolopax), common bellowsfish, snipe-fish, snipefish, spine trumpet fish, trumpetfish" - }, - { - "example": "笙の笛", - "reading": "しょうのふえ", - "meaning": "shō (Japanese free reed musical instrument)" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "日", - "田", - "竹", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31515_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b1b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b1b.gif", - "uri": "http://jisho.org/search/%E7%AC%9B%23kanji" - }, - { - "query": "鉄", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "672", - "strokeCount": 13, - "meaning": "iron", - "kunyomi": [ - "くろがね" - ], - "onyomi": [ - "テツ" - ], - "onyomiExamples": [ - { - "example": "鉄", - "reading": "テツ", - "meaning": "iron (Fe), strong and hard (as iron), railway, railway enthusiast" - }, - { - "example": "鉄製", - "reading": "テッセイ", - "meaning": "made of iron" - }, - { - "example": "国鉄", - "reading": "コクテツ", - "meaning": "national railway (esp. former Japan National Railways)" - }, - { - "example": "新日本製鐵", - "reading": "シンニッポンセイテツ", - "meaning": "Nippon Steel Corporation" - } - ], - "kunyomiExamples": [ - { - "example": "黒金", - "reading": "くろがね", - "meaning": "iron" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ノ", - "乞", - "二", - "大", - "矢", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37444_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09244.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9244.gif", - "uri": "http://jisho.org/search/%E9%89%84%23kanji" - }, - { - "query": "転", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "327", - "strokeCount": 11, - "meaning": "revolve, turn around, change", - "kunyomi": [ - "ころ.がる", - "ころ.げる", - "ころ.がす", - "ころ.ぶ", - "まろ.ぶ", - "うたた", - "うつ.る", - "くる.めく" - ], - "onyomi": [ - "テン" - ], - "onyomiExamples": [ - { - "example": "転", - "reading": "テン", - "meaning": "change in pronunciation or meaning of a word, sound change, word with an altered pronunciation or meaning, turning or twisting part of a text (in Chinese poetry)" - }, - { - "example": "転移", - "reading": "テンイ", - "meaning": "moving (location, with the times, etc.), change, transition, metastasis, spread, transition (e.g. phase transition), transfer (of learning), transference (in psychoanalysis)" - }, - { - "example": "不退転", - "reading": "フタイテン", - "meaning": "determination, conviction" - }, - { - "example": "大回転", - "reading": "ダイカイテン", - "meaning": "the giant slalom" - } - ], - "kunyomiExamples": [ - { - "example": "転がる", - "reading": "ころがる", - "meaning": "to roll, to tumble, to fall over, to roll over, to lie down, to be scattered about, to be lying around, (of a situation or outcome) to change, to turn out, to come easily, to be common, to fall into one's hands, to grow on trees" - }, - { - "example": "転がる石には苔は付かない", - "reading": "ころがるいしにはこけはつかない", - "meaning": "a rolling stone gathers no moss" - }, - { - "example": "転げる", - "reading": "ころげる", - "meaning": "to roll over, to tumble, to roll about (with laughter)" - }, - { - "example": "転がす", - "reading": "ころがす", - "meaning": "to roll, to turn over, to tip over, to throw down, to leave, to buy and sell (quickly for a profit)" - }, - { - "example": "転ぶ", - "reading": "ころぶ", - "meaning": "to fall down, to fall over, to turn out, to play out, to abandon Christianity (and convert to Buddhism), to apostatize, to roll, to tumble, (for a geisha) to prostitute (herself) in secret" - }, - { - "example": "転ぶ", - "reading": "ころぶ", - "meaning": "to fall down, to fall over, to turn out, to play out, to abandon Christianity (and convert to Buddhism), to apostatize, to roll, to tumble, (for a geisha) to prostitute (herself) in secret" - }, - { - "example": "転", - "reading": "うたた", - "meaning": "more and more, increasingly, all the more" - }, - { - "example": "うたた寝", - "reading": "うたたね", - "meaning": "doze, nap, snooze" - }, - { - "example": "眩めく", - "reading": "くるめく", - "meaning": "to spin, to revolve, to twirl, to be dizzy, to feel faint, to bustle about" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "二", - "厶", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36578_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ee2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ee2.gif", - "uri": "http://jisho.org/search/%E8%BB%A2%23kanji" - }, - { - "query": "都", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "123", - "strokeCount": 11, - "meaning": "metropolis, capital, all, everything", - "kunyomi": [ - "みやこ" - ], - "onyomi": [ - "ト", - "ツ" - ], - "onyomiExamples": [ - { - "example": "都", - "reading": "ト", - "meaning": "Metropolis (of Tokyo), (Tokyo) Metropolitan District, metropolitan prefecture, counter for cities and towns, capital" - }, - { - "example": "都営", - "reading": "トエイ", - "meaning": "(under) metropolitan government management" - }, - { - "example": "遷都", - "reading": "セント", - "meaning": "relocation of the capital, transfer of the capital" - }, - { - "example": "東都", - "reading": "トウト", - "meaning": "the Eastern Capital (now Tokyo), Yedo, Edo" - }, - { - "example": "都度", - "reading": "ツド", - "meaning": "each (every) time, whenever" - }, - { - "example": "都合", - "reading": "ツゴウ", - "meaning": "circumstances, condition, convenience, to arrange, to manage, to lend money, to raise money, in all, in total, all told" - } - ], - "kunyomiExamples": [ - { - "example": "都", - "reading": "みやこ", - "meaning": "capital (esp. Kyoto, Japan's former capital), seat of government, capital (of music, fashion, etc.), city (e.g. of light), location of the Imperial Palace" - }, - { - "example": "都入り", - "reading": "みやこいり", - "meaning": "arriving in the capital" - }, - { - "example": "京の都", - "reading": "きょうのみやこ", - "meaning": "Kyoto" - }, - { - "example": "森の都", - "reading": "もりのみやこ", - "meaning": "tree-clad town" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "日", - "老", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37117_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90fd.gif", - "uri": "http://jisho.org/search/%E9%83%BD%23kanji" - }, - { - "query": "度", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "110", - "strokeCount": 9, - "meaning": "degrees, occurrence, time, counter for occurrences, consider, attitude", - "kunyomi": [ - "たび", - "-た.い" - ], - "onyomi": [ - "ド", - "ト", - "タク" - ], - "onyomiExamples": [ - { - "example": "度", - "reading": "ド", - "meaning": "degree (angle, temperature, scale, etc.), counter for occurrences, strength (of glasses), glasses prescription, alcohol content (percentage), alcohol by volume, extent, degree, limit, presence of mind, composure" - }, - { - "example": "度合い", - "reading": "ドアイ", - "meaning": "degree, extent" - }, - { - "example": "重度", - "reading": "ジュウド", - "meaning": "severe (injury, handicap, etc.), serious" - }, - { - "example": "濃度", - "reading": "ノウド", - "meaning": "concentration, thickness, density, cardinality" - }, - { - "example": "法度", - "reading": "ハット", - "meaning": "law, ban, prohibition, ordinance" - }, - { - "example": "ご法度", - "reading": "ゴハット", - "meaning": "contraband, taboo, strictly forbidden" - }, - { - "example": "臆度", - "reading": "オクタク", - "meaning": "guessing, speculation, supposition, hypothesis" - }, - { - "example": "老い支度", - "reading": "オイジタク", - "meaning": "preparation for retirement, preparation for old age" - } - ], - "kunyomiExamples": [ - { - "example": "度", - "reading": "たび", - "meaning": "time (three times, each time, etc.), times" - }, - { - "example": "度数", - "reading": "どすう", - "meaning": "frequency, number of times, incidence, degree (e.g. temperature), strength (e.g. alcohol, lens, etc.)" - }, - { - "example": "千度", - "reading": "せんど", - "meaning": "thousand times" - }, - { - "example": "七度", - "reading": "ななたび", - "meaning": "seven times, many times, seventh (interval)" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "一", - "凵", - "又", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24230_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ea6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ea6.gif", - "uri": "http://jisho.org/search/%E5%BA%A6%23kanji" - }, - { - "query": "投", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "236", - "strokeCount": 7, - "meaning": "throw, discard, abandon, launch into, join, invest in, hurl, give up, sell at a loss", - "kunyomi": [ - "な.げる", - "-な.げ" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "投", - "reading": "トウ", - "meaning": "pitching ability, counter for pitches" - }, - { - "example": "投下", - "reading": "トウカ", - "meaning": "throwing down, dropping, airdrop, investment" - }, - { - "example": "好投", - "reading": "コウトウ", - "meaning": "good (nice) pitching" - }, - { - "example": "継投", - "reading": "ケイトウ", - "meaning": "relieving the (starting) pitcher" - } - ], - "kunyomiExamples": [ - { - "example": "投げる", - "reading": "なげる", - "meaning": "to throw, to hurl, to fling, to toss, to cast, to give up, to abandon, to throw away, to cast (a glance, shadow, doubt, etc.)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "几", - "又", - "扎", - "殳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25237_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06295.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6295.gif", - "uri": "http://jisho.org/search/%E6%8A%95%23kanji" - }, - { - "query": "豆", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1422", - "strokeCount": 7, - "meaning": "beans, pea, midget", - "kunyomi": [ - "まめ", - "まめ-" - ], - "onyomi": [ - "トウ", - "ズ" - ], - "onyomiExamples": [ - { - "example": "豆腐", - "reading": "トウフ", - "meaning": "tofu, bean curd, beancurd" - }, - { - "example": "豆乳", - "reading": "トウニュウ", - "meaning": "soy milk" - }, - { - "example": "緑豆", - "reading": "リョクトウ", - "meaning": "mung bean (Vigna radiata), green gram" - }, - { - "example": "菜豆", - "reading": "サイトウ", - "meaning": "haricot, kidney bean" - }, - { - "example": "豆打", - "reading": "ズンダ", - "meaning": "mashed boiled green soybeans" - }, - { - "example": "小豆", - "reading": "アズキ", - "meaning": "adzuki bean (Vigna angularis)" - }, - { - "example": "大豆", - "reading": "ダイズ", - "meaning": "soya bean (Glycine max), soybean, soy" - } - ], - "kunyomiExamples": [ - { - "example": "豆", - "reading": "まめ", - "meaning": "legume (esp. edible legumes or their seeds, such as beans, peas, pulses, etc.), beans, peas, soya bean (Glycine max), soybean, soy, female genitalia (esp. the clitoris), kidney, miniature, tiny, child" - }, - { - "example": "豆まき", - "reading": "まめまき", - "meaning": "sowing beans (or pulses, etc.), scattering parched beans (to drive out evil spirits)" - }, - { - "example": "枝豆", - "reading": "えだまめ", - "meaning": "edamame (green soybeans)" - }, - { - "example": "ライ豆", - "reading": "ライまめ", - "meaning": "lima bean (Phaseolus lunatus), butter bean" - } - ], - "radical": { - "symbol": "豆", - "meaning": "bean" - }, - "parts": [ - "口", - "并", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35910_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c46.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c46.gif", - "uri": "http://jisho.org/search/%E8%B1%86%23kanji" - }, - { - "query": "島", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "245", - "strokeCount": 10, - "meaning": "island", - "kunyomi": [ - "しま" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "島", - "reading": "トウ", - "meaning": "Island, insula, island, islet" - }, - { - "example": "島国", - "reading": "シマグニ", - "meaning": "island country" - }, - { - "example": "千島列島", - "reading": "チシマレットウ", - "meaning": "Kurile Islands" - }, - { - "example": "列島", - "reading": "レットウ", - "meaning": "archipelago, chain of islands" - } - ], - "kunyomiExamples": [ - { - "example": "島", - "reading": "しま", - "meaning": "island, one's territory (e.g. of a sex worker, organized crime gang), one's turf" - }, - { - "example": "島国", - "reading": "しまぐに", - "meaning": "island country" - }, - { - "example": "千島", - "reading": "ちしま", - "meaning": "Kurile Islands" - }, - { - "example": "広島", - "reading": "ひろしま", - "meaning": "Hiroshima (city, prefecture)" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "山", - "白", - "鳥" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23798_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05cf6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5cf6.gif", - "uri": "http://jisho.org/search/%E5%B3%B6%23kanji" - }, - { - "query": "湯", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1356", - "strokeCount": 12, - "meaning": "hot water, bath, hot spring", - "kunyomi": [ - "ゆ" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "湯治", - "reading": "トウジ", - "meaning": "hot-spring cure, taking the baths" - }, - { - "example": "湯液", - "reading": "トウエキ", - "meaning": "decoction (in Chinese medicine)" - }, - { - "example": "銭湯", - "reading": "セントウ", - "meaning": "public bath, bathhouse" - }, - { - "example": "給湯", - "reading": "キュウトウ", - "meaning": "hot-water supply" - } - ], - "kunyomiExamples": [ - { - "example": "湯", - "reading": "ゆ", - "meaning": "hot water, hot bath, hot spring, molten iron" - }, - { - "example": "湯気", - "reading": "ゆげ", - "meaning": "steam, vapour, vapor" - }, - { - "example": "茶の湯", - "reading": "ちゃのゆ", - "meaning": "tea ceremony" - }, - { - "example": "共同湯", - "reading": "きょうどうゆ", - "meaning": "public bath, communal bath" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "勿", - "日", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28271_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e6f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e6f.gif", - "uri": "http://jisho.org/search/%E6%B9%AF%23kanji" - }, - { - "query": "登", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "566", - "strokeCount": 12, - "meaning": "ascend, climb up", - "kunyomi": [ - "のぼ.る", - "あ.がる" - ], - "onyomi": [ - "トウ", - "ト", - "ドウ", - "ショウ", - "チョウ" - ], - "onyomiExamples": [ - { - "example": "登校", - "reading": "トウコウ", - "meaning": "attendance (at school), going to school" - }, - { - "example": "登記", - "reading": "トウキ", - "meaning": "registry, registration" - }, - { - "example": "登校", - "reading": "トウコウ", - "meaning": "attendance (at school), going to school" - }, - { - "example": "登記", - "reading": "トウキ", - "meaning": "registry, registration" - }, - { - "example": "能登", - "reading": "ノト", - "meaning": "Noto (former province located in the north of present-day Ishikawa Prefecture), Noto (peninsula)" - } - ], - "kunyomiExamples": [ - { - "example": "上る", - "reading": "のぼる", - "meaning": "to ascend, to go up, to climb, to ascend (as a natural process, e.g. the Sun), to rise, to go to (the capital), to be promoted, to add up to, to advance (in price), to swim up (a river), to sail up, to come up (on the agenda)" - } - ], - "radical": { - "symbol": "癶", - "meaning": "footsteps" - }, - "parts": [ - "口", - "并", - "癶", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30331_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0767b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/767b.gif", - "uri": "http://jisho.org/search/%E7%99%BB%23kanji" - }, - { - "query": "等", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "798", - "strokeCount": 12, - "meaning": "etc., and so forth, class (first), quality, equal, similar", - "kunyomi": [ - "ひと.しい", - "など", - "-ら" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "等", - "reading": "トウ", - "meaning": "class, order, rank, et cetera, etc., and the like, equal, iso-" - }, - { - "example": "等身", - "reading": "トウシン", - "meaning": "body proportions" - }, - { - "example": "中等", - "reading": "チュウトウ", - "meaning": "second grade, medium quality, average, middle class, secondary grade" - }, - { - "example": "等々", - "reading": "トウトウ", - "meaning": "etc., et cetera, and so on" - } - ], - "kunyomiExamples": [ - { - "example": "等しい", - "reading": "ひとしい", - "meaning": "equal, identical, the same, no different (to), just like, equivalent" - }, - { - "example": "等", - "reading": "など", - "meaning": "et cetera, etc., and the like, and so forth, or something, the likes of" - }, - { - "example": "等々", - "reading": "とうとう", - "meaning": "etc., et cetera, and so on" - }, - { - "example": "等々", - "reading": "とうとう", - "meaning": "etc., et cetera, and so on" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "土", - "寸", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31561_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b49.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b49.gif", - "uri": "http://jisho.org/search/%E7%AD%89%23kanji" - }, - { - "query": "動", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "73", - "strokeCount": 11, - "meaning": "move, motion, change, confusion, shift, shake", - "kunyomi": [ - "うご.く", - "うご.かす" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "動", - "reading": "ドウ", - "meaning": "motion" - }, - { - "example": "動員", - "reading": "ドウイン", - "meaning": "mobilization, mobilisation" - }, - { - "example": "人事異動", - "reading": "ジンジイドウ", - "meaning": "personnel change, personnel shift, reshuffle, (annual) staff reassignment" - }, - { - "example": "異動", - "reading": "イドウ", - "meaning": "change (personnel), transfer, reshuffle" - } - ], - "kunyomiExamples": [ - { - "example": "動く", - "reading": "うごく", - "meaning": "to move, to stir, to shift, to shake, to swing, to operate, to run, to go, to work, to make a move, to take action, to act, to go into action, to be touched, to be influenced, to change, to vary, to fluctuate, to waver, to be transferred" - }, - { - "example": "動く歩道", - "reading": "うごくほどう", - "meaning": "moving walkway, moving sidewalk, travelator" - }, - { - "example": "動かす", - "reading": "うごかす", - "meaning": "to move, to shift, to stir, to budge, to change position, to inspire, to rouse, to move (e.g. feeling), to influence, to change, to alter, to deny, to operate, to set in motion, to get going, to mobilize (e.g. troops), to mobilise, to deploy, to manage (e.g. funds)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "ノ", - "一", - "力", - "日", - "里", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21205_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052d5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52d5.gif", - "uri": "http://jisho.org/search/%E5%8B%95%23kanji" - }, - { - "query": "童", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1138", - "strokeCount": 12, - "meaning": "juvenile, child", - "kunyomi": [ - "わらべ" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "童話", - "reading": "ドウワ", - "meaning": "children's story, fairy tale" - }, - { - "example": "童謡", - "reading": "ドウヨウ", - "meaning": "children's song, nursery rhyme" - }, - { - "example": "天童", - "reading": "テンドウ", - "meaning": "cherub, gods disguised as children, children parading as cherubs" - }, - { - "example": "悪童", - "reading": "アクドウ", - "meaning": "bad boy, naughty child, brat" - } - ], - "kunyomiExamples": [ - { - "example": "童", - "reading": "わらべ", - "meaning": "child" - }, - { - "example": "わらべ歌", - "reading": "わらべうた", - "meaning": "children's song, nursery song" - }, - { - "example": "京童", - "reading": "きょうわらべ", - "meaning": "Kyoto's children, Kyoto's young people, who are noisy and gossiping on the least pretext" - }, - { - "example": "小童", - "reading": "こわっぱ", - "meaning": "boy, child, youth, brat" - } - ], - "radical": { - "symbol": "立", - "meaning": "stand, erect" - }, - "parts": [ - "立", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31461_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ae5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ae5.gif", - "uri": "http://jisho.org/search/%E7%AB%A5%23kanji" - }, - { - "query": "農", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "385", - "strokeCount": 13, - "meaning": "agriculture, farmers", - "kunyomi": [], - "onyomi": [ - "ノウ" - ], - "onyomiExamples": [ - { - "example": "農", - "reading": "ノウ", - "meaning": "farming, agriculture" - }, - { - "example": "農園", - "reading": "ノウエン", - "meaning": "plantation" - }, - { - "example": "酪農", - "reading": "ラクノウ", - "meaning": "dairy farming" - }, - { - "example": "営農", - "reading": "エイノウ", - "meaning": "farming, agriculture" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辰", - "meaning": "morning" - }, - "parts": [ - "一", - "厂", - "日", - "衣", - "辰", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36786_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fb2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fb2.gif", - "uri": "http://jisho.org/search/%E8%BE%B2%23kanji" - }, - { - "query": "波", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "740", - "strokeCount": 8, - "meaning": "waves, billows, Poland", - "kunyomi": [ - "なみ" - ], - "onyomi": [ - "ハ" - ], - "onyomiExamples": [ - { - "example": "波", - "reading": "ハ", - "meaning": "counter for waves (of a repeated occurrence)" - }, - { - "example": "波及", - "reading": "ハキュウ", - "meaning": "spread, extension, influence, aftereffect, ripple" - }, - { - "example": "低周波", - "reading": "テイシュウハ", - "meaning": "low frequency" - }, - { - "example": "横波", - "reading": "ヨコナミ", - "meaning": "transverse wave, beam sea" - } - ], - "kunyomiExamples": [ - { - "example": "波", - "reading": "なみ", - "meaning": "wave, ups and downs" - }, - { - "example": "波間", - "reading": "なみま", - "meaning": "interval between the waves, gap between waves" - }, - { - "example": "高波", - "reading": "たかなみ", - "meaning": "high waves, heavy seas" - }, - { - "example": "横波", - "reading": "よこなみ", - "meaning": "transverse wave, beam sea" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "又", - "汁", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27874_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ce2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ce2.gif", - "uri": "http://jisho.org/search/%E6%B3%A2%23kanji" - }, - { - "query": "配", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "359", - "strokeCount": 10, - "meaning": "distribute, spouse, exile, rationing", - "kunyomi": [ - "くば.る" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "配給", - "reading": "ハイキュウ", - "meaning": "distribution (e.g. films, rice), rationing (e.g. food, gasoline), food ration" - }, - { - "example": "配管", - "reading": "ハイカン", - "meaning": "plumbing, piping" - }, - { - "example": "無配", - "reading": "ムハイ", - "meaning": "without dividend" - }, - { - "example": "宅配", - "reading": "タクハイ", - "meaning": "home delivery" - } - ], - "kunyomiExamples": [ - { - "example": "配る", - "reading": "くばる", - "meaning": "to distribute, to hand out, to deliver, to deal out, to serve out, to allot, to allocate, to place (staff, soldiers, etc.), to station" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "已", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37197_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0914d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/914d.gif", - "uri": "http://jisho.org/search/%E9%85%8D%23kanji" - }, - { - "query": "倍", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "714", - "strokeCount": 10, - "meaning": "double, twice, times, fold", - "kunyomi": [], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "倍", - "reading": "バイ", - "meaning": "twice, double, times, -fold, 1-nth, 1 to n, 1 in n" - }, - { - "example": "倍増", - "reading": "バイゾウ", - "meaning": "double" - }, - { - "example": "逓倍", - "reading": "テイバイ", - "meaning": "multiplication (e.g. of frequencies)" - }, - { - "example": "層倍", - "reading": "ソウバイ", - "meaning": "times" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "口", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20493_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0500d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/500d.gif", - "uri": "http://jisho.org/search/%E5%80%8D%23kanji" - }, - { - "query": "箱", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1357", - "strokeCount": 15, - "meaning": "box, chest, case, bin, railway car", - "kunyomi": [ - "はこ" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "書箱", - "reading": "ショソウ", - "meaning": "bookcase" - } - ], - "kunyomiExamples": [ - { - "example": "箱", - "reading": "はこ", - "meaning": "box, case, chest, package, pack, crate, car (of a train, etc.), shamisen case, shamisen, public building, community building, man who carries a geisha's shamisen, receptacle for human waste, feces (faeces), counter for boxes (or boxed objects)" - }, - { - "example": "箱入り", - "reading": "はこいり", - "meaning": "cased, boxed, precious, cherished, girl who has been sheltered from the world, one's special talent" - }, - { - "example": "リサイクル用の箱", - "reading": "リサイクルようのはこ", - "meaning": "recycling bin, recycling box" - }, - { - "example": "契約の箱", - "reading": "けいやくのはこ", - "meaning": "Ark of the Covenant" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "木", - "目", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31665_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07bb1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7bb1.gif", - "uri": "http://jisho.org/search/%E7%AE%B1%23kanji" - }, - { - "query": "畑", - "found": true, - "taughtIn": "grade 3", - "newspaperFrequencyRank": "1176", - "strokeCount": 9, - "meaning": "farm, field, garden, one's specialty, (kokuji)", - "kunyomi": [ - "はた", - "はたけ", - "-ばたけ" - ], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "畑", - "reading": "はたけ", - "meaning": "field (for fruits, vegetables, etc.), cultivated land, vegetable plot, kitchen garden, plantation, field (of specialization), sphere, area, womb, birth, birthplace" - }, - { - "example": "畑違い", - "reading": "はたけちがい", - "meaning": "out of one's line, out of one's field" - }, - { - "example": "田畑", - "reading": "たはた", - "meaning": "fields (of rice and other crops)" - }, - { - "example": "焼き畑", - "reading": "やきばた", - "meaning": "land made arable by the slash-and-burn method, swidden, slash-and-burn farming" - }, - { - "example": "畑", - "reading": "はたけ", - "meaning": "field (for fruits, vegetables, etc.), cultivated land, vegetable plot, kitchen garden, plantation, field (of specialization), sphere, area, womb, birth, birthplace" - }, - { - "example": "畑違い", - "reading": "はたけちがい", - "meaning": "out of one's line, out of one's field" - }, - { - "example": "田畑", - "reading": "たはた", - "meaning": "fields (of rice and other crops)" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "火", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30033_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07551.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7551.gif", - "uri": "http://jisho.org/search/%E7%95%91%23kanji" - }, - { - "query": "発", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "32", - "strokeCount": 9, - "meaning": "departure, discharge, publish, emit, start from, disclose, counter for gunshots", - "kunyomi": [ - "た.つ", - "あば.く", - "おこ.る", - "つか.わす", - "はな.つ" - ], - "onyomi": [ - "ハツ", - "ホツ" - ], - "onyomiExamples": [ - { - "example": "発", - "reading": "ハツ", - "meaning": "departure, departing (from ...), departing (at time ...), sending, sent (by ...), sent (at ...), engine, counter for gunshots, bursts of gas, etc., counter for bullets, bombs, etc., counter for blows (punches)" - }, - { - "example": "発", - "reading": "ハツ", - "meaning": "green dragon tile, winning hand with a pung (or kong) of green dragon tiles" - }, - { - "example": "偶発", - "reading": "グウハツ", - "meaning": "sudden outbreak, accidental, incidental" - }, - { - "example": "電源開発", - "reading": "デンゲンカイハツ", - "meaning": "development of electrical power resources" - }, - { - "example": "発熱", - "reading": "ハツネツ", - "meaning": "generation of heat, (attack of) fever, pyrexia" - }, - { - "example": "発議", - "reading": "ハツギ", - "meaning": "proposal, suggestion, motion, initiative" - } - ], - "kunyomiExamples": [ - { - "example": "立つ", - "reading": "たつ", - "meaning": "to stand, to rise, to stand up, to find oneself (e.g. in a difficult position), to depart (on a plane, train, etc.)" - }, - { - "example": "暴く", - "reading": "あばく", - "meaning": "to disclose, to divulge, to expose, to open (and rob) a grave" - } - ], - "radical": { - "symbol": "癶", - "meaning": "footsteps" - }, - "parts": [ - "二", - "儿", - "癶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30330_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0767a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/767a.gif", - "uri": "http://jisho.org/search/%E7%99%BA%23kanji" - }, - { - "query": "反", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "191", - "strokeCount": 4, - "meaning": "anti-", - "kunyomi": [ - "そ.る", - "そ.らす", - "かえ.す", - "かえ.る", - "-かえ.る" - ], - "onyomi": [ - "ハン", - "ホン", - "タン", - "ホ" - ], - "onyomiExamples": [ - { - "example": "反", - "reading": "ハン", - "meaning": "anti-, antithesis, fanqie, traditional Chinese spelling system in which two characters are used: the first one for the onset, the second one for rhyme and tone" - }, - { - "example": "反映", - "reading": "ハンエイ", - "meaning": "reflection (light, image, situation, attitude, etc.), reflecting, influence, application (e.g. of an update)" - }, - { - "example": "離反", - "reading": "リハン", - "meaning": "estrangement, alienation, disaffection" - }, - { - "example": "造反", - "reading": "ゾウハン", - "meaning": "rebellion" - }, - { - "example": "反故", - "reading": "ホゴ", - "meaning": "wastepaper, scrap paper" - }, - { - "example": "謀反", - "reading": "ムホン", - "meaning": "rebellion, uprising, insurrection, treason" - }, - { - "example": "反", - "reading": "タン", - "meaning": "variable measure of fabric (28.8 cm in width), for kimonos: at least 10 m in length, for haori: at least 7.27 m in length, for other clothes: at least 6.06 m in length, 300 tsubo (991.74 meters square, 0.24506 acres), six ken (10.91 m)" - }, - { - "example": "反物", - "reading": "タンモノ", - "meaning": "fabric, cloth, textiles, drapery, dry-goods, piece goods, measure of kimono material" - }, - { - "example": "減反", - "reading": "ゲンタン", - "meaning": "reduction (of crop size), reduction of acreage (under cultivation)" - }, - { - "example": "一反", - "reading": "イッタン", - "meaning": "one-tenth hectare" - }, - { - "example": "反故", - "reading": "ホゴ", - "meaning": "wastepaper, scrap paper" - }, - { - "example": "反古籠", - "reading": "ホグカゴ", - "meaning": "wastebasket" - } - ], - "kunyomiExamples": [ - { - "example": "反る", - "reading": "そる", - "meaning": "to warp, to curve, to arch, to bend, to bend backward (body or body part, e.g. fingers)" - }, - { - "example": "反らす", - "reading": "そらす", - "meaning": "to bend, to warp, to curve" - }, - { - "example": "返す", - "reading": "かえす", - "meaning": "to return (something), to restore, to put back, to turn over, to turn upside down, to overturn, to pay back, to retaliate, to reciprocate, to respond (with), to retort, to reply, to say back, to do ... back (e.g. speak back, throw back), to do again, to do repeatedly" - }, - { - "example": "返る", - "reading": "かえる", - "meaning": "to return, to come back, to go back, to turn over, to become extremely, to become completely" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "厂", - "又" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21453_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53cd.gif", - "uri": "http://jisho.org/search/%E5%8F%8D%23kanji" - }, - { - "query": "坂", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "865", - "strokeCount": 7, - "meaning": "slope, incline, hill", - "kunyomi": [ - "さか" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "坂路", - "reading": "ハンロ", - "meaning": "ramp, slope" - }, - { - "example": "京阪", - "reading": "ケイハン", - "meaning": "Kyoto-Osaka, Kyoto and Osaka" - }, - { - "example": "登坂", - "reading": "トウハン", - "meaning": "climbing a slope (hill), ascending a hill" - } - ], - "kunyomiExamples": [ - { - "example": "坂", - "reading": "さか", - "meaning": "slope, incline, hill, milestone, (age) mark" - }, - { - "example": "坂道", - "reading": "さかみち", - "meaning": "hill road" - }, - { - "example": "海境", - "reading": "うなさか", - "meaning": "boundary between the world of men and the world of the sea god" - }, - { - "example": "急な坂", - "reading": "きゅうなさか", - "meaning": "sudden drop, precipitous slope" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "厂", - "又", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22338_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05742.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5742.gif", - "uri": "http://jisho.org/search/%E5%9D%82%23kanji" - }, - { - "query": "板", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "926", - "strokeCount": 8, - "meaning": "plank, board, plate, stage", - "kunyomi": [ - "いた" - ], - "onyomi": [ - "ハン", - "バン" - ], - "onyomiExamples": [ - { - "example": "板門店", - "reading": "パンムンジョム", - "meaning": "Panmunjon (Korea), Joint Security Area (Korean Demilitarized Zone)" - }, - { - "example": "版画", - "reading": "ハンガ", - "meaning": "woodcut, woodblock print, art print" - }, - { - "example": "合板", - "reading": "ゴウハン", - "meaning": "veneer board, plywood, joint publication" - }, - { - "example": "鋼板", - "reading": "コウハン", - "meaning": "steel sheet, steel plate, steel plates" - }, - { - "example": "版木", - "reading": "ハンギ", - "meaning": "(printing) block, woodcut" - }, - { - "example": "板金", - "reading": "バンキン", - "meaning": "sheet metal, metal plate" - }, - { - "example": "降板", - "reading": "コウバン", - "meaning": "leaving the mound, being knocked out, resignation, stepping down, withdrawing" - }, - { - "example": "鋼板", - "reading": "コウハン", - "meaning": "steel sheet, steel plate, steel plates" - } - ], - "kunyomiExamples": [ - { - "example": "板", - "reading": "いた", - "meaning": "board, plank, sheet (of metal), plate (of glass), pane, slab, cutting board, chopping board, chef (esp. of high-end Japanese cuisine), cook, stage (i.e. at a theatre)" - }, - { - "example": "板ガラス", - "reading": "いたガラス", - "meaning": "plate glass, sheet glass" - }, - { - "example": "まな板", - "reading": "まないた", - "meaning": "chopping board, cutting board" - }, - { - "example": "厚板", - "reading": "あついた", - "meaning": "plank, thick board, plate glass, heavy metal sheet (esp. welding), heavy brocaded obi" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "厂", - "又", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26495_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0677f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/677f.gif", - "uri": "http://jisho.org/search/%E6%9D%BF%23kanji" - }, - { - "query": "皮", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1092", - "strokeCount": 5, - "meaning": "pelt, skin, hide, leather, skin radical (no. 107)", - "kunyomi": [ - "かわ" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "皮肉", - "reading": "ヒニク", - "meaning": "irony, sarcasm, cynicism, satire, unexpected, different from what one expected, not as one had planned, (only) surface, something superficial, skin and bone, body" - }, - { - "example": "皮革", - "reading": "ヒカク", - "meaning": "leather, hide" - }, - { - "example": "表皮", - "reading": "ヒョウヒ", - "meaning": "epidermis, cuticle" - }, - { - "example": "上皮", - "reading": "ウワカワ", - "meaning": "outer layer (e.g. of skin), cuticle, epidermis, bark, rind, crust, film (on the surface of a liquid), scum, epithelium" - } - ], - "kunyomiExamples": [ - { - "example": "皮", - "reading": "かわ", - "meaning": "skin, hide, pelt, fur, rind, peel, husk, bark, shell, sheath, wrapping, mask (hiding one's true nature), seeming" - }, - { - "example": "皮切り", - "reading": "かわきり", - "meaning": "beginning, start" - }, - { - "example": "一皮", - "reading": "ひとかわ", - "meaning": "unmasking" - }, - { - "example": "薄皮", - "reading": "うすかわ", - "meaning": "thin skin" - } - ], - "radical": { - "symbol": "皮", - "meaning": "skin" - }, - "parts": [ - "又", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30382_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076ae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76ae.gif", - "uri": "http://jisho.org/search/%E7%9A%AE%23kanji" - }, - { - "query": "悲", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1014", - "strokeCount": 12, - "meaning": "grieve, sad, deplore, regret", - "kunyomi": [ - "かな.しい", - "かな.しむ" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "悲", - "reading": "ヒ", - "meaning": "karuna (compassion)" - }, - { - "example": "悲哀", - "reading": "ヒアイ", - "meaning": "sorrow, grief, sadness" - }, - { - "example": "大慈大悲", - "reading": "ダイジダイヒ", - "meaning": "great compassion and mercy" - }, - { - "example": "無慈悲", - "reading": "ムジヒ", - "meaning": "merciless, ruthless, pitiless, unfeeling" - } - ], - "kunyomiExamples": [ - { - "example": "悲しい", - "reading": "かなしい", - "meaning": "sad, miserable, unhappy, sorrowful, sad, lamentable, deplorable, grievous" - }, - { - "example": "悲しいかな", - "reading": "かなしいかな", - "meaning": "sad to say, how sad, alas" - }, - { - "example": "悲しむ", - "reading": "かなしむ", - "meaning": "to be sad, to mourn for, to regret" - }, - { - "example": "悲しむべき境遇", - "reading": "かなしむべききょうぐう", - "meaning": "pitiable condition" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24754_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60b2.gif", - "uri": "http://jisho.org/search/%E6%82%B2%23kanji" - }, - { - "query": "美", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "462", - "strokeCount": 9, - "meaning": "beauty, beautiful", - "kunyomi": [ - "うつく.しい" - ], - "onyomi": [ - "ビ", - "ミ" - ], - "onyomiExamples": [ - { - "example": "美", - "reading": "ビ", - "meaning": "beauty" - }, - { - "example": "美意識", - "reading": "ビイシキ", - "meaning": "sense of beauty, aesthetic sense" - }, - { - "example": "華美", - "reading": "カビ", - "meaning": "splendor, splendour, gorgeousness, pomp, magnificence, showiness, gaudiness, extravagance, luxury" - }, - { - "example": "造形美", - "reading": "ゾウケイビ", - "meaning": "beauty of form (oft. used of nature), beauty of a sculpted shape" - }, - { - "example": "御", - "reading": "ミ", - "meaning": "august, beautiful" - }, - { - "example": "見事", - "reading": "ミゴト", - "meaning": "splendid, magnificent, excellent, fine, superb, beautiful, admirable, utter (esp. defeat), total, complete, something worth seeing, sight, spectacle" - } - ], - "kunyomiExamples": [ - { - "example": "美しい", - "reading": "うつくしい", - "meaning": "beautiful, pretty, lovely, sweet, pure (heart, friendship, etc.)" - } - ], - "radical": { - "symbol": "羊", - "forms": [ - "⺶" - ], - "meaning": "sheep" - }, - "parts": [ - "大", - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32654_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f8e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f8e.gif", - "uri": "http://jisho.org/search/%E7%BE%8E%23kanji" - }, - { - "query": "鼻", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1632", - "strokeCount": 14, - "meaning": "nose, snout", - "kunyomi": [ - "はな" - ], - "onyomi": [ - "ビ" - ], - "onyomiExamples": [ - { - "example": "鼻息", - "reading": "ハナイキ", - "meaning": "nasal breathing, breathing through one's nose, person's pleasure, excitement" - }, - { - "example": "鼻炎", - "reading": "ビエン", - "meaning": "rhinitis, coryza, nasal inflammation" - }, - { - "example": "阿鼻", - "reading": "アビ", - "meaning": "Avici (lowest level of hell)" - }, - { - "example": "擤鼻", - "reading": "コウビ", - "meaning": "nose-blowing" - } - ], - "kunyomiExamples": [ - { - "example": "鼻", - "reading": "はな", - "meaning": "nose" - }, - { - "example": "鼻息", - "reading": "はないき", - "meaning": "nasal breathing, breathing through one's nose, person's pleasure, excitement" - }, - { - "example": "目鼻", - "reading": "めはな", - "meaning": "eyes and nose, looks, facial features, shape, form" - }, - { - "example": "赤鼻", - "reading": "あかはな", - "meaning": "red nose" - } - ], - "radical": { - "symbol": "鼻", - "meaning": "nose" - }, - "parts": [ - "廾", - "田", - "目", - "自", - "鼻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40763_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09f3b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9f3b.gif", - "uri": "http://jisho.org/search/%E9%BC%BB%23kanji" - }, - { - "query": "筆", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1132", - "strokeCount": 12, - "meaning": "writing brush, writing, painting brush, handwriting", - "kunyomi": [ - "ふで" - ], - "onyomi": [ - "ヒツ" - ], - "onyomiExamples": [ - { - "example": "筆", - "reading": "フデ", - "meaning": "writing brush, paintbrush, pen, writing with a brush, drawing with a brush, penmanship, something drawn with a brush, writing (composing text), the written word, (land) lot, plot" - }, - { - "example": "筆順", - "reading": "ヒツジュン", - "meaning": "stroke order (esp. of a Chinese character)" - }, - { - "example": "自筆", - "reading": "ジヒツ", - "meaning": "one's own handwriting, autograph, holograph" - }, - { - "example": "特筆", - "reading": "トクヒツ", - "meaning": "special mention" - } - ], - "kunyomiExamples": [ - { - "example": "筆", - "reading": "ふで", - "meaning": "writing brush, paintbrush, pen, writing with a brush, drawing with a brush, penmanship, something drawn with a brush, writing (composing text), the written word, (land) lot, plot" - }, - { - "example": "筆跡", - "reading": "ひっせき", - "meaning": "handwriting, calligraphy specimen, example of penmanship, holograph" - }, - { - "example": "面相筆", - "reading": "めんそうふで", - "meaning": "fine-point brushes" - }, - { - "example": "焼き筆", - "reading": "やきふで", - "meaning": "wooden stick with a burned tip (used to create underdrawings)" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "竹", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31558_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b46.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b46.gif", - "uri": "http://jisho.org/search/%E7%AD%86%23kanji" - }, - { - "query": "氷", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1450", - "strokeCount": 5, - "meaning": "icicle, ice, hail, freeze, congeal", - "kunyomi": [ - "こおり", - "ひ", - "こお.る" - ], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "氷柱", - "reading": "ツララ", - "meaning": "icicle, ice pillar (for cooling a room), ice" - }, - { - "example": "氷山", - "reading": "ヒョウザン", - "meaning": "iceberg" - }, - { - "example": "海氷", - "reading": "カイヒョウ", - "meaning": "sea ice" - }, - { - "example": "解氷", - "reading": "カイヒョウ", - "meaning": "a thaw" - } - ], - "kunyomiExamples": [ - { - "example": "氷", - "reading": "こおり", - "meaning": "ice, shaved ice (usually served with flavored simple syrup)" - }, - { - "example": "氷水", - "reading": "こおりみず", - "meaning": "ice water, shaved ice (usually served with flavored simple syrup)" - }, - { - "example": "人造氷", - "reading": "じんぞうこおり", - "meaning": "artificial ice" - }, - { - "example": "雪氷", - "reading": "せっぴょう", - "meaning": "snow and ice, snow ice, frozen snow" - }, - { - "example": "氷", - "reading": "ひ", - "meaning": "ice, hail" - }, - { - "example": "氷柱", - "reading": "つらら", - "meaning": "icicle, ice pillar (for cooling a room), ice" - }, - { - "example": "薄ら氷", - "reading": "うすらひ", - "meaning": "thin ice" - }, - { - "example": "凍る", - "reading": "こおる", - "meaning": "to freeze, to be frozen over, to congeal" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27703_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c37.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c37.gif", - "uri": "http://jisho.org/search/%E6%B0%B7%23kanji" - }, - { - "query": "表", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "77", - "strokeCount": 8, - "meaning": "surface, table, chart, diagram", - "kunyomi": [ - "おもて", - "-おもて", - "あらわ.す", - "あらわ.れる", - "あら.わす" - ], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "表", - "reading": "ヒョウ", - "meaning": "table, chart, list, memorial to an emperor" - }, - { - "example": "表記", - "reading": "ヒョウキ", - "meaning": "expression in writing, written representation, notation, transcription, orthography, writing on the surface (e.g. an address on an envelope), inscribing on the face" - }, - { - "example": "一覧表", - "reading": "イチランヒョウ", - "meaning": "list, table, schedule, catalogue, catalog" - }, - { - "example": "意表", - "reading": "イヒョウ", - "meaning": "surprise, something unexpected" - } - ], - "kunyomiExamples": [ - { - "example": "表", - "reading": "おもて", - "meaning": "surface, face (i.e. the visible side of an object), front (of a building, etc.), obverse side (i.e. \"head\") of a coin, outside, exterior, appearance, public, first half (of an inning), top (of an inning), cover (for tatami mats, etc.), foreground" - }, - { - "example": "表裏", - "reading": "ひょうり", - "meaning": "front and back, inside and outside, two sides, both sides, duplicity, double-dealing, being two-faced" - }, - { - "example": "京表", - "reading": "きょうおもて", - "meaning": "vicinity of Kyoto" - }, - { - "example": "中表", - "reading": "なかおもて", - "meaning": "cloth folded inside out" - }, - { - "example": "表す", - "reading": "あらわす", - "meaning": "to represent, to signify, to stand for, to reveal, to show, to display, to express, to make widely known" - }, - { - "example": "現れる", - "reading": "あらわれる", - "meaning": "to appear, to come in sight, to become visible, to come out, to embody, to materialize, to materialise, to be expressed (e.g. emotions), to become apparent (e.g. trends, effects)" - }, - { - "example": "表す", - "reading": "あらわす", - "meaning": "to represent, to signify, to stand for, to reveal, to show, to display, to express, to make widely known" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "二", - "亠", - "土", - "士", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34920_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08868.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8868.gif", - "uri": "http://jisho.org/search/%E8%A1%A8%23kanji" - }, - { - "query": "秒", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1015", - "strokeCount": 9, - "meaning": "second (1/60 minute)", - "kunyomi": [], - "onyomi": [ - "ビョウ" - ], - "onyomiExamples": [ - { - "example": "秒", - "reading": "ビョウ", - "meaning": "second (unit of time), arc second" - }, - { - "example": "秒速", - "reading": "ビョウソク", - "meaning": "per second" - }, - { - "example": "壊変毎秒", - "reading": "カイヘンマイビョウ", - "meaning": "decays per second, disintegrations per second, dps" - }, - { - "example": "閏秒", - "reading": "ウルウビョウ", - "meaning": "leap second" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ノ", - "小", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31186_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079d2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79d2.gif", - "uri": "http://jisho.org/search/%E7%A7%92%23kanji" - }, - { - "query": "病", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "384", - "strokeCount": 10, - "meaning": "ill, sick", - "kunyomi": [ - "や.む", - "-や.み", - "やまい" - ], - "onyomi": [ - "ビョウ", - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "病", - "reading": "ビョウ", - "meaning": "disease, -pathy" - }, - { - "example": "病院", - "reading": "ビョウイン", - "meaning": "hospital, clinic, doctor's office, doctor's surgery, infirmary" - }, - { - "example": "血友病", - "reading": "ケツユウビョウ", - "meaning": "haemophilia" - }, - { - "example": "同病", - "reading": "ドウビョウ", - "meaning": "the same sickness" - } - ], - "kunyomiExamples": [ - { - "example": "病む", - "reading": "やむ", - "meaning": "to fall ill, to suffer from (e.g. a disease), to have something wrong with (e.g. an inner organ)" - }, - { - "example": "病", - "reading": "やまい", - "meaning": "illness, disease, bad habit, weakness, fault" - }, - { - "example": "病が篤い", - "reading": "やまいがあつい", - "meaning": "seriously ill" - }, - { - "example": "恋病", - "reading": "こいやまい", - "meaning": "lovesickness" - }, - { - "example": "躁鬱病", - "reading": "そううつびょう", - "meaning": "manic depression, manic-depressive psychosis, bipolar disorder" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "一", - "人", - "冂", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30149_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75c5.gif", - "uri": "http://jisho.org/search/%E7%97%85%23kanji" - }, - { - "query": "品", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "225", - "strokeCount": 9, - "meaning": "goods, refinement, dignity, article, counter for meal courses", - "kunyomi": [ - "しな" - ], - "onyomi": [ - "ヒン", - "ホン" - ], - "onyomiExamples": [ - { - "example": "品", - "reading": "ヒン", - "meaning": "elegance, grace, refinement, class, dignity, article, item, counter for items (of food, etc.), counter for dishes or courses (at a restaurant)" - }, - { - "example": "品位", - "reading": "ヒンイ", - "meaning": "dignity, grace, nobility, grade, quality, fineness, carat, karat" - }, - { - "example": "小品", - "reading": "ショウヒン", - "meaning": "short piece (of music, writing), small work (painting, sculpture, etc.), literary sketch, essay, small article, small item" - }, - { - "example": "遺品", - "reading": "イヒン", - "meaning": "things left (to one) by the deceased, inherited item, estate, memento, keepsake, lost item, lost property" - }, - { - "example": "品", - "reading": "ホン", - "meaning": "court rank, level, grade, chapter, section, volume" - }, - { - "example": "品題", - "reading": "ホンダイ", - "meaning": "chapter title, section title, volume title" - }, - { - "example": "九品", - "reading": "クホン", - "meaning": "nine levels of Amitabha's Pure Land, Amitabha's Pure Land, nine-tiered lotus leaf platform in Amitabha's Pure Land" - } - ], - "kunyomiExamples": [ - { - "example": "品", - "reading": "しな", - "meaning": "article, item, thing, goods, stock, quality, flirtatiousness, coquetry" - }, - { - "example": "品目", - "reading": "ひんもく", - "meaning": "item, commodity, list of articles" - }, - { - "example": "一品", - "reading": "いっぴん", - "meaning": "item, article, dish, course, finest item" - }, - { - "example": "極め付きの品", - "reading": "きわめつきのしな", - "meaning": "article of certified genuineness" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "品" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21697_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054c1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54c1.gif", - "uri": "http://jisho.org/search/%E5%93%81%23kanji" - }, - { - "query": "負", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "443", - "strokeCount": 9, - "meaning": "defeat, negative, -, minus, bear, owe, assume a responsibility", - "kunyomi": [ - "ま.ける", - "ま.かす", - "お.う" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "負", - "reading": "フ", - "meaning": "negative, minus" - }, - { - "example": "負荷", - "reading": "フカ", - "meaning": "burden, load (e.g. CPU time, electricity, etc.)" - }, - { - "example": "正負", - "reading": "セイフ", - "meaning": "positive and negative, +-, plus and minus" - }, - { - "example": "非負", - "reading": "ヒフ", - "meaning": "non-negative" - } - ], - "kunyomiExamples": [ - { - "example": "負ける", - "reading": "まける", - "meaning": "to lose, to be defeated, to succumb, to give in, to surrender, to yield, to be inferior to, to break out in a rash due to (e.g. lacquer, shaving, etc.), to reduce the price, to give a discount, to throw in (something extra) for free" - }, - { - "example": "負けるが勝ち", - "reading": "まけるがかち", - "meaning": "he that fights and runs away may live to fight another day, sometimes you have to lose to win, losing is winning" - }, - { - "example": "負かす", - "reading": "まかす", - "meaning": "to defeat" - }, - { - "example": "負う", - "reading": "おう", - "meaning": "to bear, to carry on one's back, to take responsibility for, to accept a duty, to receive (wound), to incur (damage), to be injured, to owe" - }, - { - "example": "負うた子に教えられて浅瀬を渡る", - "reading": "おうたこにおしえられてあさせをわたる", - "meaning": "some things can be learned from the young, a fool may give a wise man counsel, to be led across the shallows by the child on one's shoulders" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "勹", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36000_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ca0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ca0.gif", - "uri": "http://jisho.org/search/%E8%B2%A0%23kanji" - }, - { - "query": "部", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "36", - "strokeCount": 11, - "meaning": "section, bureau, dept, class, copy, part, portion, counter for copies of a newspaper or magazine", - "kunyomi": [ - "-べ" - ], - "onyomi": [ - "ブ" - ], - "onyomiExamples": [ - { - "example": "部", - "reading": "ブ", - "meaning": "department (in an organization), division, bureau, club, part, component, element, category, counter for copies of a newspaper or magazine" - }, - { - "example": "部位", - "reading": "ブイ", - "meaning": "part (esp. of the body), region, site, cut (of meat)" - }, - { - "example": "情報部", - "reading": "ジョウホウブ", - "meaning": "information bureau, intelligence department" - }, - { - "example": "首脳部", - "reading": "シュノウブ", - "meaning": "executives, top management, governing body" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "口", - "立", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37096_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090e8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90e8.gif", - "uri": "http://jisho.org/search/%E9%83%A8%23kanji" - }, - { - "query": "服", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "873", - "strokeCount": 8, - "meaning": "clothing, admit, obey, discharge", - "kunyomi": [], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "服", - "reading": "フク", - "meaning": "clothes (esp. Western clothes), counter for doses of medicine, gulps of tea, drags of a cigarette, etc." - }, - { - "example": "服役", - "reading": "フクエキ", - "meaning": "penal servitude, serving time in prison, military service, forced labor, compulsory service" - }, - { - "example": "私服", - "reading": "シフク", - "meaning": "civilian clothes, plain clothes, mufti, plainclothes police officer" - }, - { - "example": "呉服", - "reading": "ゴフク", - "meaning": "cloth (for Japanese clothes), kimono fabrics, textile, drapery, dry goods, piece goods, silk fabrics" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "卩", - "又", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26381_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0670d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/670d.gif", - "uri": "http://jisho.org/search/%E6%9C%8D%23kanji" - }, - { - "query": "福", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "467", - "strokeCount": 13, - "meaning": "blessing, fortune, luck, wealth", - "kunyomi": [], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "福", - "reading": "フク", - "meaning": "good fortune, happiness, blessing, good luck" - }, - { - "example": "福祉", - "reading": "フクシ", - "meaning": "welfare, well-being, social welfare, social security, social service" - }, - { - "example": "大福", - "reading": "ダイフク", - "meaning": "great fortune, good luck, rice cake stuffed with bean jam" - }, - { - "example": "慶福", - "reading": "ケイフク", - "meaning": "happy event, happiness" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "一", - "口", - "田", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31119_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0798f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/798f.gif", - "uri": "http://jisho.org/search/%E7%A6%8F%23kanji" - }, - { - "query": "物", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "215", - "strokeCount": 8, - "meaning": "thing, object, matter", - "kunyomi": [ - "もの", - "もの-" - ], - "onyomi": [ - "ブツ", - "モツ" - ], - "onyomiExamples": [ - { - "example": "物", - "reading": "ブツ", - "meaning": "stock, products, stolen goods, loot, spoils" - }, - { - "example": "物議", - "reading": "ブツギ", - "meaning": "public discussion, public criticism, controversy" - }, - { - "example": "異物", - "reading": "イブツ", - "meaning": "foreign substance, foreign body, foreign contamination, foreign material, strange object, unusual object, dead body, corpse, remains" - }, - { - "example": "遺物", - "reading": "イブツ", - "meaning": "relic, remains, memento" - }, - { - "example": "財物", - "reading": "ザイブツ", - "meaning": "property" - }, - { - "example": "幣物", - "reading": "ヘイモツ", - "meaning": "Shinto offerings, present to a guest" - } - ], - "kunyomiExamples": [ - { - "example": "物", - "reading": "もの", - "meaning": "thing, object, article, stuff, substance, one's things, possessions, property, belongings, things, something, anything, everything, nothing, quality, reason, the way of things, used to emphasize emotion, judgment, etc., used to indicate a common occurrence in the past (after a verb in past tense), used to indicate a general tendency, used to indicate something that should happen, item classified as ..., item related to ..., work in the genre of ..., cause of ..., cause for ..., somehow, somewhat, for some reason, really, truly" - }, - { - "example": "物言い", - "reading": "ものいい", - "meaning": "manner of speaking, verbal argument, objection, protesting a decision (esp. that of a sumo referee), rumor, rumour" - }, - { - "example": "先物", - "reading": "さきもの", - "meaning": "futures" - }, - { - "example": "拾い物", - "reading": "ひろいもの", - "meaning": "a find, windfall, bargain" - } - ], - "radical": { - "symbol": "牛", - "forms": [ - "牜" - ], - "meaning": "cow" - }, - "parts": [ - "ノ", - "勹", - "勿", - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29289_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07269.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7269.gif", - "uri": "http://jisho.org/search/%E7%89%A9%23kanji" - }, - { - "query": "平", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "128", - "strokeCount": 5, - "meaning": "even, flat, peace", - "kunyomi": [ - "たい.ら", - "たい.らげる", - "ひら" - ], - "onyomi": [ - "ヘイ", - "ビョウ", - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "平", - "reading": "ヘイ", - "meaning": "nth year in the Heisei era (1989.1.8-2019.4.30)" - }, - { - "example": "平安", - "reading": "ヘイアン", - "meaning": "peace, tranquility, tranquillity, Heian period (794-1185)" - }, - { - "example": "和平", - "reading": "ワヘイ", - "meaning": "peace" - }, - { - "example": "公平", - "reading": "コウヘイ", - "meaning": "fairness, impartiality, justice, objectivity" - }, - { - "example": "平等", - "reading": "ビョウドウ", - "meaning": "equality, impartiality, evenness" - }, - { - "example": "平常心", - "reading": "ビョウジョウシン", - "meaning": "everyday feelings, usual feelings" - }, - { - "example": "寛平", - "reading": "カンピョウ", - "meaning": "Kanpyō era (889.4.27-898.4.26), Kanbyō era" - }, - { - "example": "天平", - "reading": "テンピョウ", - "meaning": "Tenpyō era (729.8.5-749.4.14), Tenbyō era, Tenhei era" - }, - { - "example": "平声", - "reading": "ヒョウショウ", - "meaning": "first tone in old Chinese phonetics, level tone, (of a Japanese accent) having a low, flat tone" - }, - { - "example": "平調", - "reading": "ヒョウジョウ", - "meaning": "(in Japan) 3rd note of the ancient chromatic scale (approx. E), hyōjō mode (one of the six main gagaku modes)" - } - ], - "kunyomiExamples": [ - { - "example": "平ら", - "reading": "たいら", - "meaning": "flat, level, even, smooth, calm, tranquil, placid, composed, stable, relaxed (sitting posture), comfortable, plateau, tableland, plain" - }, - { - "example": "平らか", - "reading": "たいらか", - "meaning": "level, just, peaceful" - }, - { - "example": "平らげる", - "reading": "たいらげる", - "meaning": "to eat up (completely), to put down (a rebellion), to suppress, to subjugate, to make flat, to level out" - }, - { - "example": "平", - "reading": "ひら", - "meaning": "something broad and flat, common, ordinary, plain, rank-and-file, low-ranking employee, freshman, novice, private" - }, - { - "example": "平泳ぎ", - "reading": "ひらおよぎ", - "meaning": "breaststroke (swimming)" - }, - { - "example": "嘉平次平", - "reading": "かへいじひら", - "meaning": "hakama fabric made from meisen silk" - }, - { - "example": "金平", - "reading": "かねひら", - "meaning": "Acheilognathus rhombeus (species of cyprinid)" - } - ], - "radical": { - "symbol": "干", - "meaning": "pestle" - }, - "parts": [ - "干", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24179_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e73.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e73.gif", - "uri": "http://jisho.org/search/%E5%B9%B3%23kanji" - }, - { - "query": "返", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "685", - "strokeCount": 7, - "meaning": "return, answer, fade, repay", - "kunyomi": [ - "かえ.す", - "-かえ.す", - "かえ.る", - "-かえ.る" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "返", - "reading": "ヘン", - "meaning": "reply, answer" - }, - { - "example": "遍", - "reading": "ヘン", - "meaning": "number of times" - }, - { - "example": "代返", - "reading": "ダイヘン", - "meaning": "answer a roll call for another" - }, - { - "example": "往返", - "reading": "オウヘン", - "meaning": "round trip" - } - ], - "kunyomiExamples": [ - { - "example": "返す", - "reading": "かえす", - "meaning": "to return (something), to restore, to put back, to turn over, to turn upside down, to overturn, to pay back, to retaliate, to reciprocate, to respond (with), to retort, to reply, to say back, to do ... back (e.g. speak back, throw back), to do again, to do repeatedly" - }, - { - "example": "返す刀", - "reading": "かえすかたな", - "meaning": "attacking one opponent then immediately attacking another" - }, - { - "example": "返る", - "reading": "かえる", - "meaning": "to return, to come back, to go back, to turn over, to become extremely, to become completely" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "厂", - "又", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36820_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fd4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fd4.gif", - "uri": "http://jisho.org/search/%E8%BF%94%23kanji" - }, - { - "query": "勉", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1066", - "strokeCount": 10, - "meaning": "exertion, endeavour, encourage, strive, make effort, diligent", - "kunyomi": [ - "つと.める" - ], - "onyomi": [ - "ベン" - ], - "onyomiExamples": [ - { - "example": "勉強", - "reading": "ベンキョウ", - "meaning": "study, diligence, discount, reduction" - }, - { - "example": "勉学", - "reading": "ベンガク", - "meaning": "study, pursuit of knowledge" - }, - { - "example": "猛勉", - "reading": "モウベン", - "meaning": "studying hard, cramming" - }, - { - "example": "のこ勉", - "reading": "ノコベン", - "meaning": "staying behind after school to do private study" - } - ], - "kunyomiExamples": [ - { - "example": "努める", - "reading": "つとめる", - "meaning": "to endeavor (endeavour), to try, to strive, to make an effort, to exert oneself, to be diligent, to be committed (to doing something)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "儿", - "免", - "力", - "勹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21193_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052c9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52c9.gif", - "uri": "http://jisho.org/search/%E5%8B%89%23kanji" - }, - { - "query": "放", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "288", - "strokeCount": 8, - "meaning": "set free, release, fire, shoot, emit, banish, liberate", - "kunyomi": [ - "はな.す", - "-っぱな.し", - "はな.つ", - "はな.れる", - "こ.く", - "ほう.る" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "放火", - "reading": "ホウカ", - "meaning": "arson, setting fire" - }, - { - "example": "放映", - "reading": "ホウエイ", - "meaning": "televising, broadcasting, airing" - }, - { - "example": "豪放", - "reading": "ゴウホウ", - "meaning": "largehearted, frank, unaffected" - }, - { - "example": "女性解放", - "reading": "ジョセイカイホウ", - "meaning": "women's liberation, emancipation of women" - } - ], - "kunyomiExamples": [ - { - "example": "放す", - "reading": "はなす", - "meaning": "to release, to let go, to free, to set free, to let loose, to turn loose, to add (pieces of eggplant, potato, etc.) to water, broth, etc." - }, - { - "example": "放つ", - "reading": "はなつ", - "meaning": "to fire (gun, arrow, questions, etc.), to shoot, to hit (e.g. baseball), to break wind, to set free, to release, to let loose, to emit (e.g. light), to give off (e.g. a scent), to send out (a person to carry out a duty), to set fire to" - }, - { - "example": "放れる", - "reading": "はなれる", - "meaning": "to get free (from), to be freed, to be released" - }, - { - "example": "放く", - "reading": "こく", - "meaning": "to let loose (e.g. a fart), to utter (e.g. a lie), to do" - }, - { - "example": "放る", - "reading": "ほうる", - "meaning": "to throw, to fling, to hurl, to toss, to neglect, to abandon, to leave alone, to give up on, to leave undone, to leave unfinished" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "攵", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25918_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0653e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/653e.gif", - "uri": "http://jisho.org/search/%E6%94%BE%23kanji" - }, - { - "query": "味", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "442", - "strokeCount": 8, - "meaning": "flavor, taste", - "kunyomi": [ - "あじ", - "あじ.わう" - ], - "onyomi": [ - "ミ" - ], - "onyomiExamples": [ - { - "example": "味", - "reading": "ミ", - "meaning": "(sense of) taste, counter for food, drink, medicine, etc." - }, - { - "example": "味覚", - "reading": "ミカク", - "meaning": "taste, palate, sense of taste" - }, - { - "example": "厚み", - "reading": "アツミ", - "meaning": "thickness, profundity, depth" - }, - { - "example": "加味", - "reading": "カミ", - "meaning": "seasoning, flavoring, flavouring, addition, inclusion, taking into account" - } - ], - "kunyomiExamples": [ - { - "example": "味", - "reading": "あじ", - "meaning": "flavor, flavour, taste, charm, appeal, uniqueness, attractiveness, experience, taste (e.g. of victory), smart, clever, witty, strange" - }, - { - "example": "味付け", - "reading": "あじつけ", - "meaning": "seasoning, flavour, flavor" - }, - { - "example": "切れ味", - "reading": "きれあじ", - "meaning": "sharpness, cutting ability, quickness (of wit), incisiveness, technical proficiency, skill, peppiness (of a ball)" - }, - { - "example": "下味", - "reading": "したあじ", - "meaning": "seasoning of food" - }, - { - "example": "味わう", - "reading": "あじわう", - "meaning": "to taste, to savor, to savour, to relish, to appreciate, to enjoy, to relish, to digest, to experience, to go through, to taste (e.g. victory), to know (e.g. pain)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ハ", - "二", - "亠", - "口", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21619_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05473.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5473.gif", - "uri": "http://jisho.org/search/%E5%91%B3%23kanji" - }, - { - "query": "命", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "465", - "strokeCount": 8, - "meaning": "fate, command, decree, destiny, life, appoint", - "kunyomi": [ - "いのち" - ], - "onyomi": [ - "メイ", - "ミョウ" - ], - "onyomiExamples": [ - { - "example": "命", - "reading": "メイ", - "meaning": "order, command, decree, life, destiny, fate" - }, - { - "example": "命運", - "reading": "メイウン", - "meaning": "fate, destiny" - }, - { - "example": "延命", - "reading": "エンメイ", - "meaning": "keeping alive longer, prolonging life, life extension, life-support" - }, - { - "example": "十月革命", - "reading": "ジュウガツカクメイ", - "meaning": "October Revolution" - }, - { - "example": "命婦", - "reading": "ミョウブ", - "meaning": "title for high-ranking court ladies" - }, - { - "example": "延命", - "reading": "エンメイ", - "meaning": "keeping alive longer, prolonging life, life extension, life-support" - }, - { - "example": "安心立命", - "reading": "アンシンリツメイ", - "meaning": "spiritual peace and enlightenment, keeping an unperturbed mind through faith" - } - ], - "kunyomiExamples": [ - { - "example": "命", - "reading": "いのち", - "meaning": "life, life force, lifetime, lifespan, most important thing, foundation, core, paired tattoos of the \"life\" kanji on the upper arms of a man and woman (indicating unwavering love), fate, destiny, karma" - }, - { - "example": "命からがら", - "reading": "いのちからがら", - "meaning": "for dear life, barely escaping alive" - }, - { - "example": "貴い命", - "reading": "たっといいのち", - "meaning": "precious life" - }, - { - "example": "露の命", - "reading": "つゆのいのち", - "meaning": "life as evanescent as the dew" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "个", - "卩", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21629_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0547d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/547d.gif", - "uri": "http://jisho.org/search/%E5%91%BD%23kanji" - }, - { - "query": "面", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "186", - "strokeCount": 9, - "meaning": "mask, face, features, surface", - "kunyomi": [ - "おも", - "おもて", - "つら" - ], - "onyomi": [ - "メン", - "ベン" - ], - "onyomiExamples": [ - { - "example": "面", - "reading": "メン", - "meaning": "face, mask, face guard, (in kendo) striking the head, surface (esp. a geometrical surface), page, aspect, facet, side, chamfer, counter for broad, flat objects, levels or stages, e.g. in a video game" - }, - { - "example": "面会", - "reading": "メンカイ", - "meaning": "meeting (face-to-face), seeing, visit, interview" - }, - { - "example": "平面", - "reading": "ヘイメン", - "meaning": "level surface, plane" - }, - { - "example": "対面", - "reading": "タイメン", - "meaning": "meeting face-to-face, seeing in person, facing (each other), opposing (traffic, etc.), confronting" - } - ], - "kunyomiExamples": [ - { - "example": "面", - "reading": "おもて", - "meaning": "face, surface, mask (esp. a noh or kyogen mask)" - }, - { - "example": "面影", - "reading": "おもかげ", - "meaning": "face, looks, vestiges, trace" - }, - { - "example": "水の面", - "reading": "みのも", - "meaning": "surface of the water, face of the water" - }, - { - "example": "面", - "reading": "おもて", - "meaning": "face, surface, mask (esp. a noh or kyogen mask)" - }, - { - "example": "面伏せ", - "reading": "おもてぶせ", - "meaning": "being so embarrassed as to keep one's face down" - }, - { - "example": "細面", - "reading": "ほそおもて", - "meaning": "slender face" - }, - { - "example": "面", - "reading": "つら", - "meaning": "face, mug, surface, cheek meat, cheek, cheeks, surrounding area" - }, - { - "example": "面当て", - "reading": "つらあて", - "meaning": "spiteful remarks" - }, - { - "example": "赤面", - "reading": "あかつら", - "meaning": "red face, villain (in kabuki, jōruri, etc.)" - }, - { - "example": "横面", - "reading": "よこつら", - "meaning": "side of face" - } - ], - "radical": { - "symbol": "面", - "forms": [ - "靣" - ], - "meaning": "face" - }, - "parts": [ - "面" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38754_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09762.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9762.gif", - "uri": "http://jisho.org/search/%E9%9D%A2%23kanji" - }, - { - "query": "問", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "64", - "strokeCount": 11, - "meaning": "question, ask, problem", - "kunyomi": [ - "と.う", - "と.い", - "とん" - ], - "onyomi": [ - "モン" - ], - "onyomiExamples": [ - { - "example": "問", - "reading": "モン", - "meaning": "counter for questions" - }, - { - "example": "問責", - "reading": "モンセキ", - "meaning": "blame, censure, reproof, reprimand, rebuke" - }, - { - "example": "設問", - "reading": "セツモン", - "meaning": "posing a question, question" - }, - { - "example": "弔問", - "reading": "チョウモン", - "meaning": "condolence call" - } - ], - "kunyomiExamples": [ - { - "example": "問う", - "reading": "とう", - "meaning": "to ask, to inquire, to blame (someone) for, to accuse of, to pursue (question of responsibility), to charge with, to care about, to regard as important, to call into question, to doubt, to question" - }, - { - "example": "問うに落ちず語るに落ちる", - "reading": "とうにおちずかたるにおちる", - "meaning": "to keep a secret when asked about it, but let it slip inadvertently when chatting on another occasion" - }, - { - "example": "問い", - "reading": "とい", - "meaning": "question, query" - }, - { - "example": "問い合わせ", - "reading": "といあわせ", - "meaning": "enquiry, inquiry, query, interrogation, ENQ" - }, - { - "example": "問屋", - "reading": "とんや", - "meaning": "wholesale store, wholesale dealer, wholesaler" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21839_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0554f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/554f.gif", - "uri": "http://jisho.org/search/%E5%95%8F%23kanji" - }, - { - "query": "役", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "315", - "strokeCount": 7, - "meaning": "duty, war, campaign, drafted labor, office, service, role", - "kunyomi": [], - "onyomi": [ - "ヤク", - "エキ" - ], - "onyomiExamples": [ - { - "example": "役", - "reading": "ヤク", - "meaning": "role, assignment, responsibility, duty, function, job, service, position (of responsibility), post, office, part (in a play, film, etc.), role, character, scoring combination (in mahjong, card games, etc.), meld, hand, yaku" - }, - { - "example": "役員", - "reading": "ヤクイン", - "meaning": "director, executive, officer, official, person in charge" - }, - { - "example": "悪役", - "reading": "アクヤク", - "meaning": "villain, baddie, the villain's part" - }, - { - "example": "大役", - "reading": "タイヤク", - "meaning": "important task, important role, great duty, important mission, major part (in a film, play, etc.), leading role, high-scoring combination" - }, - { - "example": "役", - "reading": "エキ", - "meaning": "war, campaign, battle, unpaid work (ritsuryo system), forced labor" - }, - { - "example": "役務", - "reading": "エキム", - "meaning": "labor, labour, service" - }, - { - "example": "荷役", - "reading": "ニエキ", - "meaning": "handling cargo, loading and unloading" - }, - { - "example": "就役", - "reading": "シュウエキ", - "meaning": "placed in commission, entering servitude" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "几", - "又", - "彳", - "殳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24441_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f79.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f79.gif", - "uri": "http://jisho.org/search/%E5%BD%B9%23kanji" - }, - { - "query": "薬", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "702", - "strokeCount": 16, - "meaning": "medicine, chemical, enamel, gunpowder, benefit", - "kunyomi": [ - "くすり" - ], - "onyomi": [ - "ヤク" - ], - "onyomiExamples": [ - { - "example": "薬", - "reading": "ヤク", - "meaning": "dope, narcotic, drug" - }, - { - "example": "薬価", - "reading": "ヤッカ", - "meaning": "National Health Insurance drug price, NHI drug price" - }, - { - "example": "製薬", - "reading": "セイヤク", - "meaning": "medicine manufacture, drug manufacture" - }, - { - "example": "医薬", - "reading": "イヤク", - "meaning": "medicine, Pharmaceutical and Food Safety Bureau" - } - ], - "kunyomiExamples": [ - { - "example": "薬", - "reading": "くすり", - "meaning": "medicine, pharmaceuticals, (legal) drugs, pill, ointment, salve, efficacious chemical (gunpowder, pesticide, etc.), (pottery) glaze, (illegal) drug, narcotic, small bribe" - }, - { - "example": "薬指", - "reading": "くすりゆび", - "meaning": "ring finger, fourth finger" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "冫", - "日", - "木", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34220_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85ac.gif", - "uri": "http://jisho.org/search/%E8%96%AC%23kanji" - }, - { - "query": "由", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "325", - "strokeCount": 5, - "meaning": "wherefore, a reason", - "kunyomi": [ - "よし", - "よ.る" - ], - "onyomi": [ - "ユ", - "ユウ", - "ユイ" - ], - "onyomiExamples": [ - { - "example": "由来", - "reading": "ユライ", - "meaning": "origin, source, history, derivation, originally, from the start, by nature" - }, - { - "example": "由緒", - "reading": "ユイショ", - "meaning": "history, pedigree, lineage" - }, - { - "example": "来由", - "reading": "ライユ", - "meaning": "origin, cause" - }, - { - "example": "因由", - "reading": "インユ", - "meaning": "cause" - }, - { - "example": "事由", - "reading": "ジユウ", - "meaning": "reason, cause" - }, - { - "example": "海洋自由", - "reading": "カイヨウジユウ", - "meaning": "freedom of the sea" - }, - { - "example": "由緒", - "reading": "ユイショ", - "meaning": "history, pedigree, lineage" - }, - { - "example": "由緒ある", - "reading": "ユイショアル", - "meaning": "venerable, prestigious, with a long history" - } - ], - "kunyomiExamples": [ - { - "example": "由", - "reading": "よし", - "meaning": "reason, significance, cause, piece of information that one has heard, I hear that ..., it is said that ..." - }, - { - "example": "由ありげ", - "reading": "よしありげ", - "meaning": "meaningful, suggestive, seeming to be with a history, seeming to be with circumstances that are hard to explain" - }, - { - "example": "候由", - "reading": "そうろうよし", - "meaning": "I hear that ..." - }, - { - "example": "因る", - "reading": "よる", - "meaning": "to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30001_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07531.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7531.gif", - "uri": "http://jisho.org/search/%E7%94%B1%23kanji" - }, - { - "query": "油", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "690", - "strokeCount": 8, - "meaning": "oil, fat", - "kunyomi": [ - "あぶら" - ], - "onyomi": [ - "ユ", - "ユウ" - ], - "onyomiExamples": [ - { - "example": "油井", - "reading": "ユセイ", - "meaning": "oil well" - }, - { - "example": "油彩", - "reading": "ユサイ", - "meaning": "oil painting" - }, - { - "example": "重油", - "reading": "ジュウユ", - "meaning": "heavy oil, fuel oil" - }, - { - "example": "軽油", - "reading": "ケイユ", - "meaning": "diesel oil, gas oil, light oil" - }, - { - "example": "油色", - "reading": "ユショク", - "meaning": "coating a painting with a layer of transparent oil" - }, - { - "example": "油然", - "reading": "ユウゼン", - "meaning": "welling or bubbling up" - } - ], - "kunyomiExamples": [ - { - "example": "油", - "reading": "あぶら", - "meaning": "oil" - }, - { - "example": "油絵", - "reading": "あぶらえ", - "meaning": "oil painting" - }, - { - "example": "匂い油", - "reading": "においあぶら", - "meaning": "perfumed hair oil" - }, - { - "example": "機械油", - "reading": "きかいあぶら", - "meaning": "machine oil" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "日", - "汁", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27833_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cb9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cb9.gif", - "uri": "http://jisho.org/search/%E6%B2%B9%23kanji" - }, - { - "query": "有", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "282", - "strokeCount": 6, - "meaning": "possess, have, exist, happen, occur, approx", - "kunyomi": [ - "あ.る" - ], - "onyomi": [ - "ユウ", - "ウ" - ], - "onyomiExamples": [ - { - "example": "有", - "reading": "ユウ", - "meaning": "existence, possession, having, limited company" - }, - { - "example": "有意義", - "reading": "ユウイギ", - "meaning": "significant, useful, meaningful, worthwhile, valuable, of interest" - }, - { - "example": "領有", - "reading": "リョウユウ", - "meaning": "possession (esp. of a territory)" - }, - { - "example": "公有", - "reading": "コウユウ", - "meaning": "public ownership, public domain" - }, - { - "example": "有", - "reading": "ウ", - "meaning": "bhava (becoming, existence)" - }, - { - "example": "有無", - "reading": "ウム", - "meaning": "existence or nonexistence, presence or absence, consent or refusal, yes or no" - }, - { - "example": "領有", - "reading": "リョウユウ", - "meaning": "possession (esp. of a territory)" - }, - { - "example": "公有", - "reading": "コウユウ", - "meaning": "public ownership, public domain" - } - ], - "kunyomiExamples": [ - { - "example": "有る", - "reading": "ある", - "meaning": "to be, to exist, to live, to have, to be located, to be equipped with, to happen, to come about" - }, - { - "example": "ある限り", - "reading": "あるかぎり", - "meaning": "all (there is), as long as there is" - } - ], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "ノ", - "一", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26377_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06709.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6709.gif", - "uri": "http://jisho.org/search/%E6%9C%89%23kanji" - }, - { - "query": "遊", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "941", - "strokeCount": 12, - "meaning": "play", - "kunyomi": [ - "あそ.ぶ", - "あそ.ばす" - ], - "onyomi": [ - "ユウ", - "ユ" - ], - "onyomiExamples": [ - { - "example": "遊撃", - "reading": "ユウゲキ", - "meaning": "raid, military attack by a mobile unit, hit-and-run attack, search-and-kill mission, search-and-destroy mission, military action without a predetermined target, attacking the enemy or assisting allies as the opportunity arises, shortstop, short" - }, - { - "example": "遊園地", - "reading": "ユウエンチ", - "meaning": "amusement park" - }, - { - "example": "浮遊", - "reading": "フユウ", - "meaning": "floating, drifting, suspension, wandering (about)" - }, - { - "example": "外遊", - "reading": "ガイユウ", - "meaning": "foreign travel" - }, - { - "example": "遊撃", - "reading": "ユウゲキ", - "meaning": "raid, military attack by a mobile unit, hit-and-run attack, search-and-kill mission, search-and-destroy mission, military action without a predetermined target, attacking the enemy or assisting allies as the opportunity arises, shortstop, short" - }, - { - "example": "遊園地", - "reading": "ユウエンチ", - "meaning": "amusement park" - } - ], - "kunyomiExamples": [ - { - "example": "遊ぶ", - "reading": "あそぶ", - "meaning": "to play (games, sports), to enjoy oneself, to have a good time, to mess about (with alcohol, gambling, philandery, etc.), to be idle, to do nothing, to be unused, to meet up (with friends), to hang out, to give oneself up (to gambling, drinking, etc.), to go to (for pleasure or for study), to tease (somebody), to play (with), to intentionally throw a ball to lower the batter's concentration" - }, - { - "example": "遊糸", - "reading": "ゆうし", - "meaning": "gossamer, heat haze, shimmer of hot air" - }, - { - "example": "遊ばす", - "reading": "あそばす", - "meaning": "to let (someone) play, to keep (someone) amused, to entertain, to leave idle, to not make use of, to let go to waste, to do, to do" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "乞", - "子", - "方", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36938_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0904a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/904a.gif", - "uri": "http://jisho.org/search/%E9%81%8A%23kanji" - }, - { - "query": "予", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "180", - "strokeCount": 4, - "meaning": "beforehand, previous, myself, I", - "kunyomi": [ - "あらかじ.め" - ], - "onyomi": [ - "ヨ", - "シャ" - ], - "onyomiExamples": [ - { - "example": "予", - "reading": "ヨ", - "meaning": "I, me" - }, - { - "example": "予感", - "reading": "ヨカン", - "meaning": "presentiment, premonition, hunch, to have a premonition, to have a hunch" - }, - { - "example": "起訴猶予", - "reading": "キソユウヨ", - "meaning": "suspension of indictment, leaving charge on the file" - }, - { - "example": "執行猶予", - "reading": "シッコウユウヨ", - "meaning": "stay of execution, suspended sentence" - } - ], - "kunyomiExamples": [ - { - "example": "予め", - "reading": "あらかじめ", - "meaning": "beforehand, in advance, previously" - } - ], - "radical": { - "symbol": "亅", - "meaning": "hook" - }, - "parts": [ - "マ", - "一", - "亅" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20104_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e88.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e88.gif", - "uri": "http://jisho.org/search/%E4%BA%88%23kanji" - }, - { - "query": "羊", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1852", - "strokeCount": 6, - "meaning": "sheep", - "kunyomi": [ - "ひつじ" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "羊毛", - "reading": "ヨウモウ", - "meaning": "wool" - }, - { - "example": "羊肉", - "reading": "ヨウニク", - "meaning": "mutton, lamb (meat)" - }, - { - "example": "羝羊", - "reading": "テイヨウ", - "meaning": "ram (sheep), someone who lives their life by instinct" - }, - { - "example": "羚羊", - "reading": "レイヨウ", - "meaning": "antelope" - } - ], - "kunyomiExamples": [ - { - "example": "羊", - "reading": "ひつじ", - "meaning": "sheep (Ovis aries)" - }, - { - "example": "羊飼い", - "reading": "ひつじかい", - "meaning": "shepherd, shepherdess" - }, - { - "example": "牡羊", - "reading": "おひつじ", - "meaning": "ram (sheep)" - }, - { - "example": "迷える子羊", - "reading": "まよえるこひつじ", - "meaning": "stray sheep, lost lamb, person at a loss for what to do" - } - ], - "radical": { - "symbol": "羊", - "forms": [ - "⺶" - ], - "meaning": "sheep" - }, - "parts": [ - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32650_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f8a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f8a.gif", - "uri": "http://jisho.org/search/%E7%BE%8A%23kanji" - }, - { - "query": "洋", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "763", - "strokeCount": 9, - "meaning": "ocean, sea, foreign, Western style", - "kunyomi": [], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "洋", - "reading": "ヨウ", - "meaning": "Occident and Orient (esp. the Occident), ocean, sea, foreign, Western, European" - }, - { - "example": "洋画", - "reading": "ヨウガ", - "meaning": "Western painting, Western film, Western movie" - }, - { - "example": "南氷洋", - "reading": "ナンヒョウヨウ", - "meaning": "Antarctic Ocean" - }, - { - "example": "環太平洋", - "reading": "カンタイヘイヨウ", - "meaning": "the Pacific Rim" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "并", - "汁", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27915_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d0b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d0b.gif", - "uri": "http://jisho.org/search/%E6%B4%8B%23kanji" - }, - { - "query": "葉", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "414", - "strokeCount": 12, - "meaning": "leaf, plane, lobe, needle, blade, spear, counter for flat things, fragment, piece", - "kunyomi": [ - "は" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "葉", - "reading": "ヨウ", - "meaning": "counter for leaves, pieces of paper, etc., counter for boats" - }, - { - "example": "葉胃", - "reading": "ヨウイ", - "meaning": "omasum, psalterium, third compartment of the stomach in ruminants" - }, - { - "example": "枝葉", - "reading": "シヨウ", - "meaning": "branches and leaves, foliage, unimportant details, nonessentials, side issue, digression" - }, - { - "example": "中葉", - "reading": "チュウヨウ", - "meaning": "about the middle (of an era), middle lobe (right lung), median lobe (prostate)" - } - ], - "kunyomiExamples": [ - { - "example": "葉", - "reading": "は", - "meaning": "leaf, blade (of grass), (pine) needle" - }, - { - "example": "葉書", - "reading": "はがき", - "meaning": "postcard, memo, note, card" - }, - { - "example": "枝葉", - "reading": "しよう", - "meaning": "branches and leaves, foliage, unimportant details, nonessentials, side issue, digression" - }, - { - "example": "一葉", - "reading": "いちよう", - "meaning": "one leaf, one page, one sheet, one card, one photo, one boat" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "世", - "木", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33865_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08449.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8449.gif", - "uri": "http://jisho.org/search/%E8%91%89%23kanji" - }, - { - "query": "陽", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1071", - "strokeCount": 12, - "meaning": "sunshine, yang principle, positive, male, heaven, daytime", - "kunyomi": [ - "ひ" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "陽", - "reading": "ヨウ", - "meaning": "(the) positive, yang (in Chinese divination), the open, visible place, public place" - }, - { - "example": "陽気", - "reading": "ヨウキ", - "meaning": "cheerful, jovial, merry, lively, weather, season, spirit of yang" - }, - { - "example": "山陽", - "reading": "サンヨウ", - "meaning": "south side of a mountain, Sanyo district" - }, - { - "example": "陰陽", - "reading": "インヨウ", - "meaning": "cosmic dual forces, yin and yang, sun and moon, etc." - } - ], - "kunyomiExamples": [ - { - "example": "日", - "reading": "ひ", - "meaning": "day, days, sun, sunshine, sunlight, case (esp. unfortunate), event" - }, - { - "example": "日差し", - "reading": "ひざし", - "meaning": "sunlight, rays of the Sun" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "一", - "勿", - "日", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38525_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0967d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/967d.gif", - "uri": "http://jisho.org/search/%E9%99%BD%23kanji" - }, - { - "query": "様", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "493", - "strokeCount": 14, - "meaning": "Esq., way, manner, situation, polite suffix", - "kunyomi": [ - "さま", - "さん" - ], - "onyomi": [ - "ヨウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "様", - "reading": "ヨウ", - "meaning": "appearing ..., looking ..., way to ..., method of ...ing, form, style, design, like, similar to, thing (thought or spoken)" - }, - { - "example": "様式", - "reading": "ヨウシキ", - "meaning": "style, form, pattern" - }, - { - "example": "文様", - "reading": "モンヨウ", - "meaning": "pattern, design" - }, - { - "example": "一様", - "reading": "イチヨウ", - "meaning": "uniform, equal, even, the same, identical, common, ordinary, usual" - } - ], - "kunyomiExamples": [ - { - "example": "様", - "reading": "さま", - "meaning": "Mr., Mrs., Miss, Ms., makes a word more polite (usu. in fixed expressions), state, situation, appearance, manner" - }, - { - "example": "様変わり", - "reading": "さまがわり", - "meaning": "changing completely, transformation" - }, - { - "example": "殿様", - "reading": "とのさま", - "meaning": "nobleman, dignitary, lord, feudal lord (of the Edo period), daimyō, man brought up away from the world, arrogant man with little knowledge of the ways of the world" - }, - { - "example": "ご馳走様", - "reading": "ごちそうさま", - "meaning": "thank you (for the meal), that was a delicious meal, thank you (for displaying lovey-dovey behaviour)" - }, - { - "example": "唐行きさん", - "reading": "からゆきさん", - "meaning": "karayuki-san, young Japanese women who were sent to work (mainly as prostitutes) in foreign countries, esp. in Southeast Asia (Meiji to early Showa)" - }, - { - "example": "愛様", - "reading": "いとさん", - "meaning": "daughter (of a good family)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "并", - "木", - "水", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27096_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/069d8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/69d8.gif", - "uri": "http://jisho.org/search/%E6%A7%98%23kanji" - }, - { - "query": "落", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "420", - "strokeCount": 12, - "meaning": "fall, drop, come down, village, hamlet", - "kunyomi": [ - "お.ちる", - "お.ち", - "お.とす" - ], - "onyomi": [ - "ラク" - ], - "onyomiExamples": [ - { - "example": "落語", - "reading": "ラクゴ", - "meaning": "rakugo, traditional Japanese comic storytelling, comic story (told by a professional storyteller)" - }, - { - "example": "落書き", - "reading": "ラクガキ", - "meaning": "scrawl, scribble, graffiti, doodle" - }, - { - "example": "崩落", - "reading": "ホウラク", - "meaning": "collapse, break, cave-in, crash, (market) decline" - }, - { - "example": "当落", - "reading": "トウラク", - "meaning": "result (of an election), success or defeat (in an election), winning or losing (a lottery, raffle, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "落ちる", - "reading": "おちる", - "meaning": "to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one's gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone's hands), to become someone's possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths, to go down (of a website, server, etc.)" - }, - { - "example": "落ち", - "reading": "おち", - "meaning": "slip, omission, outcome, final result, the end, punch line (of a joke)" - }, - { - "example": "落ち込む", - "reading": "おちこむ", - "meaning": "to feel down, to feel sad, to be depressed, to be in low spirits, to be in a slump (business, economy, etc.), to be in an unfavourable condition, to fall into (e.g. a hole)" - }, - { - "example": "付け落ち", - "reading": "つけおち", - "meaning": "omission in a bill" - }, - { - "example": "鳩尾", - "reading": "みぞおち", - "meaning": "pit of the stomach, solar plexus, place where water falls" - }, - { - "example": "落とす", - "reading": "おとす", - "meaning": "to drop, to lose, to let fall, to shed (light), to cast (one's gaze), to pour in (liquid), to leave behind, to clean off (dirt, makeup, paint, etc.), to remove (e.g. stains or facial hair), to lose, to spend money at a certain place, to omit, to leave out, to secretly let escape, to lose (a match), to reject (an applicant), to fail (a course), to defeat (in an election), to lower (e.g. shoulders or voice), to lessen (e.g. production or body weight), to worsen (quality), to reduce (e.g. rank or popularity), to speak badly of, to make light of, to fall into straitened circumstances, to fall into (e.g. a dilemma or sin), to make one's own, to have one's bid accepted, to force surrender, to take (e.g. an enemy camp or castle), to forcefully convince, to press for a confession, to deal with, to download, to copy from a computer to another medium, to make someone swoon (judo), to finish a story (e.g. with the punch line), to finish (a period, e.g. of fasting)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "口", - "夂", - "汁", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33853_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0843d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/843d.gif", - "uri": "http://jisho.org/search/%E8%90%BD%23kanji" - }, - { - "query": "流", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "280", - "strokeCount": 10, - "meaning": "current, a sink, flow, forfeit", - "kunyomi": [ - "なが.れる", - "なが.れ", - "なが.す", - "-なが.す" - ], - "onyomi": [ - "リュウ", - "ル" - ], - "onyomiExamples": [ - { - "example": "流", - "reading": "リュウ", - "meaning": "fashion, way, style, manner, school (of thought), class, rank, rate, current (electrical, water, etc.), flow, stream" - }, - { - "example": "旒", - "reading": "リュウ", - "meaning": "counter for flags, banners, etc." - }, - { - "example": "清流", - "reading": "セイリュウ", - "meaning": "clear stream" - }, - { - "example": "火砕流", - "reading": "カサイリュウ", - "meaning": "pyroclastic flow" - }, - { - "example": "流", - "reading": "ル", - "meaning": "exile" - }, - { - "example": "流刑", - "reading": "リュウケイ", - "meaning": "exile, banishment, deportation" - }, - { - "example": "配流", - "reading": "ハイル", - "meaning": "exile, banishment" - }, - { - "example": "中流", - "reading": "チュウル", - "meaning": "banishment (to a somewhat distant province), middle-degree punishment of the three banishment punishments under the ritsuryo system" - } - ], - "kunyomiExamples": [ - { - "example": "流れる", - "reading": "ながれる", - "meaning": "to stream, to flow (liquid, time, etc.), to run (ink), to be washed away, to be carried, to drift, to float (e.g. clouds), to wander, to stray, to sweep (e.g. rumour, fire), to spread, to circulate, to be heard (e.g. music), to be played, to lapse (e.g. into indolence, despair), to pass, to elapse, to be transmitted, to be called off, to be forfeited, to disappear, to be removed" - }, - { - "example": "流れ", - "reading": "ながれ", - "meaning": "flow (of a fluid or gas), stream, current, flow (of people, things), passage (of time), tide, passing, (changing) trends, tendency, course (of events), (step-by-step) procedure, process, group of people who remain together after the end of an event, descent, ancestry, school, forfeiture, foreclosure, cancellation, drifting, wandering, roaming" - }, - { - "example": "流れ込む", - "reading": "ながれこむ", - "meaning": "to flow into, to pour into, to stream into" - }, - { - "example": "流す", - "reading": "ながす", - "meaning": "to drain, to pour, to spill, to shed (blood, tears), to wash away, to distribute (e.g. electricity over wires, music over a PA system, etc.), to circulate, to broadcast, to beam, to cruise (e.g. taxi), to float, to set adrift, to call off (a meeting, etc.), to exile, to banish" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "亠", - "厶", - "川", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27969_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d41.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d41.gif", - "uri": "http://jisho.org/search/%E6%B5%81%23kanji" - }, - { - "query": "旅", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N4", - "newspaperFrequencyRank": "783", - "strokeCount": 10, - "meaning": "trip, travel", - "kunyomi": [ - "たび" - ], - "onyomi": [ - "リョ" - ], - "onyomiExamples": [ - { - "example": "旅", - "reading": "リョ", - "meaning": "500-man battalion (Zhou-dynasty Chinese army)" - }, - { - "example": "旅客", - "reading": "リョカク", - "meaning": "passenger, traveller, traveler, tourist" - }, - { - "example": "行旅", - "reading": "コウリョ", - "meaning": "traveling, travelling, traveler, traveller" - }, - { - "example": "修旅", - "reading": "シュウリョ", - "meaning": "excursion, field trip, school trip" - } - ], - "kunyomiExamples": [ - { - "example": "旅", - "reading": "たび", - "meaning": "travel, trip, journey" - }, - { - "example": "旅先", - "reading": "たびさき", - "meaning": "destination, goal (of travel), place one stays during a journey" - }, - { - "example": "あてなき旅", - "reading": "あてなきたび", - "meaning": "journey without a destination" - }, - { - "example": "股旅", - "reading": "またたび", - "meaning": "wandering life of a gambler" - } - ], - "radical": { - "symbol": "方", - "meaning": "square" - }, - "parts": [ - "ノ", - "乞", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26053_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65c5.gif", - "uri": "http://jisho.org/search/%E6%97%85%23kanji" - }, - { - "query": "両", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "247", - "strokeCount": 6, - "meaning": "both, old Japanese coin, counter for carriages (e.g., in a train), two", - "kunyomi": [ - "てる", - "ふたつ" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "両", - "reading": "リョウ", - "meaning": "both (hands, parents, sides, etc.), counter for carriages (e.g. in a train), counter for vehicles, ryō, tael, traditional unit of weight (for gold, silver and drugs), 4-5 monme, 15-19 g, ryō, pre-Meiji unit of currency, orig. the value of one ryō of gold, ryō, traditional measure of fabric, 2 tan, ryō, tael, unit of weight under the Ritsuryo system, 1/16 kin, 42-43 g, counter for suits of clothing, sets of armor, etc." - }, - { - "example": "両足", - "reading": "リョウソク", - "meaning": "both feet, both legs" - }, - { - "example": "一両", - "reading": "イチリョウ", - "meaning": "one vehicle, one ryō (an old coin)" - }, - { - "example": "十両", - "reading": "ジュウリョウ", - "meaning": "second highest division, wrestlers of the second highest division" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "冂", - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20001_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e21.gif", - "uri": "http://jisho.org/search/%E4%B8%A1%23kanji" - }, - { - "query": "緑", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1180", - "strokeCount": 14, - "meaning": "green", - "kunyomi": [ - "みどり" - ], - "onyomi": [ - "リョク", - "ロク" - ], - "onyomiExamples": [ - { - "example": "緑色", - "reading": "ミドリイロ", - "meaning": "green, emerald green, green color of new foliage, verdure" - }, - { - "example": "緑化", - "reading": "リョッカ", - "meaning": "greening (i.e. planting to increase greenery), tree planting, afforestation" - }, - { - "example": "新緑", - "reading": "シンリョク", - "meaning": "fresh verdure, new green leaves" - }, - { - "example": "常緑", - "reading": "ジョウリョク", - "meaning": "evergreen" - }, - { - "example": "緑青", - "reading": "ロクショウ", - "meaning": "verdigris, green rust, copper rust" - }, - { - "example": "四緑", - "reading": "シロク", - "meaning": "fourth of nine traditional astrological signs (corresponding to Jupiter and south-east)" - } - ], - "kunyomiExamples": [ - { - "example": "緑", - "reading": "みどり", - "meaning": "green, greenery (esp. fresh verdure)" - }, - { - "example": "緑色", - "reading": "みどりいろ", - "meaning": "green, emerald green, green color of new foliage, verdure" - }, - { - "example": "黄緑", - "reading": "きみどり", - "meaning": "pea green, yellow-green" - }, - { - "example": "青緑", - "reading": "あおみどり", - "meaning": "blue-green, turquoise, aqua, spirogyra, algae forming pond scum" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ヨ", - "小", - "幺", - "水", - "糸", - "隶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32209_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dd1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dd1.gif", - "uri": "http://jisho.org/search/%E7%B7%91%23kanji" - }, - { - "query": "礼", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1185", - "strokeCount": 5, - "meaning": "salute, bow, ceremony, thanks, remuneration", - "kunyomi": [], - "onyomi": [ - "レイ", - "ライ" - ], - "onyomiExamples": [ - { - "example": "礼", - "reading": "レイ", - "meaning": "thanks, gratitude, manners, etiquette, bow, reward, gift, ceremony, ritual" - }, - { - "example": "礼儀", - "reading": "レイギ", - "meaning": "manners, courtesy, etiquette" - }, - { - "example": "巡礼", - "reading": "ジュンレイ", - "meaning": "pilgrimage, pilgrim" - }, - { - "example": "儀礼", - "reading": "ギレイ", - "meaning": "etiquette, courtesy" - }, - { - "example": "礼拝", - "reading": "レイハイ", - "meaning": "worship (esp. Christian), adoration, divine service, worship (esp. Buddhist and Shinto)" - }, - { - "example": "礼賛", - "reading": "ライサン", - "meaning": "praise, worship, adoration, glorification" - }, - { - "example": "頂礼", - "reading": "チョウライ", - "meaning": "prostration, placing knees, hands and forehead on the ground to show utmost respect" - }, - { - "example": "室礼", - "reading": "シツライ", - "meaning": "setting up a living or ceremonial space with furnishings, implements, etc. (Heian era)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "乙", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31036_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0793c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/793c.gif", - "uri": "http://jisho.org/search/%E7%A4%BC%23kanji" - }, - { - "query": "列", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "927", - "strokeCount": 6, - "meaning": "file, row, rank, tier, column", - "kunyomi": [], - "onyomi": [ - "レツ", - "レ" - ], - "onyomiExamples": [ - { - "example": "列", - "reading": "レツ", - "meaning": "row, line, file, column, queue, rank, procession, company (of someone), group, ranks, sequence, counter for rows" - }, - { - "example": "列伝", - "reading": "レツデン", - "meaning": "series of biographies" - }, - { - "example": "配列", - "reading": "ハイレツ", - "meaning": "arrangement, disposition, array (programming)" - }, - { - "example": "系列", - "reading": "ケイレツ", - "meaning": "series, sequence, system, succession, keiretsu (group), conglomeration of businesses linked by cross-shareholdings, affiliated, subsidiary" - }, - { - "example": "列", - "reading": "レツ", - "meaning": "row, line, file, column, queue, rank, procession, company (of someone), group, ranks, sequence, counter for rows" - }, - { - "example": "列車", - "reading": "レッシャ", - "meaning": "train, railway train" - }, - { - "example": "加密列", - "reading": "カミツレ", - "meaning": "German chamomile (Matricaria recutita), German camomile" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "歹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21015_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05217.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5217.gif", - "uri": "http://jisho.org/search/%E5%88%97%23kanji" - }, - { - "query": "練", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N2", - "newspaperFrequencyRank": "788", - "strokeCount": 14, - "meaning": "practice, gloss, train, drill, polish, refine", - "kunyomi": [ - "ね.る", - "ね.り" - ], - "onyomi": [ - "レン" - ], - "onyomiExamples": [ - { - "example": "練習", - "reading": "レンシュウ", - "meaning": "practice, training, drill, (an) exercise, workout" - }, - { - "example": "練達", - "reading": "レンタツ", - "meaning": "expert(ise), skill, dexterity" - }, - { - "example": "修練", - "reading": "シュウレン", - "meaning": "training, drill, practice, practising, discipline" - }, - { - "example": "水練", - "reading": "スイレン", - "meaning": "swimming practice" - } - ], - "kunyomiExamples": [ - { - "example": "練る", - "reading": "ねる", - "meaning": "to knead, to thicken into a paste (stirring over a flame), to polish (a plan, etc.), to refine, to elaborate, to work out, to train, to drill, to exercise, to gloss (silk), to soften, to degum, to tan (leather), to temper (steel), to walk in procession, to parade, to march" - }, - { - "example": "練り", - "reading": "ねり", - "meaning": "kneading, gloss, tempering, paste (e.g. bean paste, mustard paste), parading of portable shrines and floats at festivals" - }, - { - "example": "練り上げる", - "reading": "ねりあげる", - "meaning": "to knead well, to polish, to refine" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ハ", - "小", - "幺", - "日", - "木", - "田", - "糸", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32244_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07df4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7df4.gif", - "uri": "http://jisho.org/search/%E7%B7%B4%23kanji" - }, - { - "query": "路", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "529", - "strokeCount": 13, - "meaning": "path, route, road, distance", - "kunyomi": [ - "-じ", - "みち" - ], - "onyomi": [ - "ロ", - "ル" - ], - "onyomiExamples": [ - { - "example": "路上", - "reading": "ロジョウ", - "meaning": "on the road, on the street, in the street, on the way" - }, - { - "example": "路地", - "reading": "ロジ", - "meaning": "alley, alleyway, lane, bare earth (i.e. ground not covered by a roof), open field, outdoors (non-greenhouse cultivation of crops), teahouse garden, path through a gate (or through a garden, etc.)" - }, - { - "example": "活路", - "reading": "カツロ", - "meaning": "means of survival, means of escape, way out of a difficulty" - }, - { - "example": "岐路", - "reading": "キロ", - "meaning": "forked road, crossroads" - }, - { - "example": "路加", - "reading": "ルカ", - "meaning": "St Luke" - }, - { - "example": "舎路", - "reading": "シアトル", - "meaning": "Seattle" - } - ], - "kunyomiExamples": [ - { - "example": "道", - "reading": "みち", - "meaning": "road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method" - }, - { - "example": "道教え", - "reading": "みちおしえ", - "meaning": "tiger beetle (esp. the Japanese tiger beetle, Cicindela japonica)" - }, - { - "example": "長路", - "reading": "ながみち", - "meaning": "long road, far journey" - }, - { - "example": "脇道", - "reading": "わきみち", - "meaning": "side road, byroad, digression (e.g. from argument)" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "口", - "夂", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36335_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08def.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8def.gif", - "uri": "http://jisho.org/search/%E8%B7%AF%23kanji" - }, - { - "query": "和", - "found": true, - "taughtIn": "grade 3", - "jlptLevel": "N3", - "newspaperFrequencyRank": "124", - "strokeCount": 8, - "meaning": "harmony, Japanese style, peace, soften, Japan", - "kunyomi": [ - "やわ.らぐ", - "やわ.らげる", - "なご.む", - "なご.やか", - "あ.える" - ], - "onyomi": [ - "ワ", - "オ", - "カ" - ], - "onyomiExamples": [ - { - "example": "和", - "reading": "ワ", - "meaning": "sum, harmony, peace, Japan, Japanese-style" - }, - { - "example": "和歌", - "reading": "ワカ", - "meaning": "waka, classic Japanese poem, esp. a tanka, often 31 morae" - }, - { - "example": "講和", - "reading": "コウワ", - "meaning": "reconciliation (between warring nations), (making of) peace" - }, - { - "example": "英和", - "reading": "エイワ", - "meaning": "English-Japanese, English-Japanese dictionary" - }, - { - "example": "阿蘭陀", - "reading": "オランダ", - "meaning": "Netherlands, Holland" - }, - { - "example": "和尚", - "reading": "オショウ", - "meaning": "preceptor or high priest (esp. in Zen or Pure Land Buddhism), preceptor or high priest (in Tendai or Kegon Buddhism), preceptor or high priest (in Shingon, Hosso, Ritsu or Shin Buddhism), second highest priestly rank in Buddhism, monk (esp. the head monk of a temple), master (of one's art, trade, etc.)" - }, - { - "example": "和声", - "reading": "ワセイ", - "meaning": "harmony, concord, consonance" - }, - { - "example": "和尚", - "reading": "オショウ", - "meaning": "preceptor or high priest (esp. in Zen or Pure Land Buddhism), preceptor or high priest (in Tendai or Kegon Buddhism), preceptor or high priest (in Shingon, Hosso, Ritsu or Shin Buddhism), second highest priestly rank in Buddhism, monk (esp. the head monk of a temple), master (of one's art, trade, etc.)" - }, - { - "example": "諧和", - "reading": "カイワ", - "meaning": "gentle mutual affection, harmony, harmony" - } - ], - "kunyomiExamples": [ - { - "example": "和らぐ", - "reading": "やわらぐ", - "meaning": "to soften, to calm down, to be eased, to be mitigated, to subside, to abate" - }, - { - "example": "和らげる", - "reading": "やわらげる", - "meaning": "to soften, to moderate, to relieve" - }, - { - "example": "和む", - "reading": "なごむ", - "meaning": "to be softened, to calm down" - }, - { - "example": "和やか", - "reading": "なごやか", - "meaning": "mild, calm, gentle, quiet, congenial, amicable, amiable, friendly, genial, harmonious, peaceful" - }, - { - "example": "和える", - "reading": "あえる", - "meaning": "to dress (vegetables, salad, etc.)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21644_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0548c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/548c.gif", - "uri": "http://jisho.org/search/%E5%92%8C%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/data/jisho/grade4.json b/lib/migrations/data/jisho/grade4.json deleted file mode 100644 index fa8c1c6..0000000 --- a/lib/migrations/data/jisho/grade4.json +++ /dev/null @@ -1,14534 +0,0 @@ -[ - { - "query": "愛", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "640", - "strokeCount": 13, - "meaning": "love, affection, favourite", - "kunyomi": [ - "いと.しい", - "かな.しい", - "め.でる", - "お.しむ", - "まな" - ], - "onyomi": [ - "アイ" - ], - "onyomiExamples": [ - { - "example": "愛", - "reading": "アイ", - "meaning": "love, affection, care, attachment, craving, desire, agape (Christian love), Ireland" - }, - { - "example": "愛犬", - "reading": "アイケン", - "meaning": "pet dog, beloved dog, love of dogs, fondness for dogs" - }, - { - "example": "友愛", - "reading": "ユウアイ", - "meaning": "fraternity, friendship" - }, - { - "example": "同性愛", - "reading": "ドウセイアイ", - "meaning": "homosexual love" - } - ], - "kunyomiExamples": [ - { - "example": "愛しい", - "reading": "いとしい", - "meaning": "lovely, dear, beloved, darling, dearest, pitiable, pitiful" - }, - { - "example": "悲しい", - "reading": "かなしい", - "meaning": "sad, miserable, unhappy, sorrowful, sad, lamentable, deplorable, grievous" - }, - { - "example": "愛でる", - "reading": "めでる", - "meaning": "to love, to cherish, to admire, to appreciate" - }, - { - "example": "惜しむ", - "reading": "おしむ", - "meaning": "to be frugal, to be sparing, to value, to hold dear, to regret (e.g. a loss), to feel sorry (for), to be unwilling, to be reluctant" - }, - { - "example": "愛", - "reading": "まな", - "meaning": "beloved, dear" - }, - { - "example": "愛弟子", - "reading": "まなでし", - "meaning": "favorite pupil, favourite pupil, teacher's pet" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "冖", - "夂", - "心", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24859_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0611b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/611b.gif", - "uri": "http://jisho.org/search/%E6%84%9B%23kanji" - }, - { - "query": "案", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "206", - "strokeCount": 10, - "meaning": "plan, suggestion, draft, ponder, fear, proposition, idea, expectation, worry, table, bench", - "kunyomi": [ - "つくえ" - ], - "onyomi": [ - "アン" - ], - "onyomiExamples": [ - { - "example": "案", - "reading": "アン", - "meaning": "idea, plan, proposal, suggestion, (government) bill, draft, rough copy, expectation, desk, stand" - }, - { - "example": "案外", - "reading": "アンガイ", - "meaning": "unexpectedly, surprisingly, unexpected, unanticipated, unforeseen, surprising" - }, - { - "example": "対案", - "reading": "タイアン", - "meaning": "counter-proposal, counter-suggestion" - }, - { - "example": "成案", - "reading": "セイアン", - "meaning": "definite plan" - } - ], - "kunyomiExamples": [ - { - "example": "机", - "reading": "つくえ", - "meaning": "desk" - }, - { - "example": "八足の机", - "reading": "やつあしのつくえ", - "meaning": "eight-legged table (used as a stand for religious offerings, etc.)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "女", - "宀", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26696_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06848.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6848.gif", - "uri": "http://jisho.org/search/%E6%A1%88%23kanji" - }, - { - "query": "以", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "126", - "strokeCount": 5, - "meaning": "by means of, because, in view of, compared with", - "kunyomi": [ - "もっ.て" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "以降", - "reading": "イコウ", - "meaning": "on and after, as from, hereafter, thereafter, since" - }, - { - "example": "以下", - "reading": "イカ", - "meaning": "not exceeding, and downward, ... and below, below (e.g. standard), under (e.g. a level), the below-mentioned, the following, the rest" - }, - { - "example": "縞曹以", - "reading": "シマソイ", - "meaning": "threestripe rockfish (Sebastes trivittatus)" - }, - { - "example": "斑曹以", - "reading": "ムラソイ", - "meaning": "spotbelly rockfish (Sebastes pachycephalus)" - } - ], - "kunyomiExamples": [ - { - "example": "以て", - "reading": "もって", - "meaning": "with, by, by means of, because of, on account of, for, due to, on (a day, date), at (a time), as of (e.g. today), adds emphasis to preceding word, in addition (to being), moreover, as well as, and, therefore, and so, hence" - }, - { - "example": "以ってしても", - "reading": "もってしても", - "meaning": "(not) even when using ..., (not) even with the help of ..., (not) even by ..." - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "丶", - "人", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20197_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ee5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ee5.gif", - "uri": "http://jisho.org/search/%E4%BB%A5%23kanji" - }, - { - "query": "衣", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1214", - "strokeCount": 6, - "meaning": "garment, clothes, dressing", - "kunyomi": [ - "ころも", - "きぬ", - "-ぎ" - ], - "onyomi": [ - "イ", - "エ" - ], - "onyomiExamples": [ - { - "example": "衣", - "reading": "キヌ", - "meaning": "clothing, garment, dress" - }, - { - "example": "衣装", - "reading": "イショウ", - "meaning": "clothing, costume, outfit, garment, dress" - }, - { - "example": "着衣", - "reading": "チャクイ", - "meaning": "clothes (that one is wearing), wearing clothes" - }, - { - "example": "脱衣", - "reading": "ダツイ", - "meaning": "undressing, taking off one's clothes" - }, - { - "example": "衣鉢", - "reading": "イハツ", - "meaning": "mysteries of one's master's art, robes and a bowl (monk's key possessions auctioned off at his funeral), transmission of the dharma from master to disciple (in Zen)" - }, - { - "example": "衣紋", - "reading": "エモン", - "meaning": "dress, clothes, drapery" - }, - { - "example": "着衣", - "reading": "チャクイ", - "meaning": "clothes (that one is wearing), wearing clothes" - }, - { - "example": "衣替え", - "reading": "コロモガエ", - "meaning": "seasonal change of clothing, changing one's dress for the season, renovation, facelift, redesign, redecoration, new appearance, fresh look" - } - ], - "kunyomiExamples": [ - { - "example": "衣", - "reading": "ころも", - "meaning": "clothes, garment, gown, robe, coating (e.g. glaze, batter, icing)" - }, - { - "example": "衣替え", - "reading": "ころもがえ", - "meaning": "seasonal change of clothing, changing one's dress for the season, renovation, facelift, redesign, redecoration, new appearance, fresh look" - }, - { - "example": "砂糖の衣", - "reading": "さとうのころも", - "meaning": "frosting (e.g. on a cake), icing" - }, - { - "example": "紅葉の衣", - "reading": "もみじのころも", - "meaning": "comparing beautiful autumn leaves to a garment" - }, - { - "example": "衣", - "reading": "きぬ", - "meaning": "clothing, garment, dress" - }, - { - "example": "如月", - "reading": "きさらぎ", - "meaning": "second month of the lunar calendar" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34915_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08863.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8863.gif", - "uri": "http://jisho.org/search/%E8%A1%A3%23kanji" - }, - { - "query": "位", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "276", - "strokeCount": 7, - "meaning": "rank, grade, throne, crown, about, some", - "kunyomi": [ - "くらい", - "ぐらい" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "位", - "reading": "イ", - "meaning": "rank, place (e.g. first place), decimal place, counter for ghosts" - }, - { - "example": "位置", - "reading": "イチ", - "meaning": "place, situation, position, location" - }, - { - "example": "部位", - "reading": "ブイ", - "meaning": "part (esp. of the body), region, site, cut (of meat)" - }, - { - "example": "高位", - "reading": "コウイ", - "meaning": "dignity, eminent, high ranking, high-order (digit, bit, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "位", - "reading": "くらい", - "meaning": "throne, crown, (nobleman's) seat, government position, court rank, social standing, rank, class, echelon, rung, grade (of quality, etc.), level, tier, rank, position of a figure (e.g. tens, thousands), digit, (decimal) place, degree, extent, amount" - }, - { - "example": "位が昇る", - "reading": "くらいがのぼる", - "meaning": "to rise in rank" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20301_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f4d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f4d.gif", - "uri": "http://jisho.org/search/%E4%BD%8D%23kanji" - }, - { - "query": "茨", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "1203", - "strokeCount": 9, - "meaning": "briar, thorn", - "kunyomi": [ - "いばら", - "かや", - "くさぶき" - ], - "onyomi": [ - "シ", - "ジ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "茨", - "reading": "いばら", - "meaning": "thorny shrub, wild rose, briar, thorn, cusp" - }, - { - "example": "茨垣", - "reading": "いばらがき", - "meaning": "thorn hedge" - }, - { - "example": "野薔薇", - "reading": "のいばら", - "meaning": "multiflora rose (Rosa multiflora), baby rose, Japanese rose" - }, - { - "example": "猿捕茨", - "reading": "さるとりいばら", - "meaning": "Smilax china (species of sarsaparilla)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "冫", - "欠", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33576_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08328.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8328.gif", - "uri": "http://jisho.org/search/%E8%8C%A8%23kanji" - }, - { - "query": "印", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "682", - "strokeCount": 6, - "meaning": "stamp, seal, mark, imprint, symbol, emblem, trademark, evidence, souvenir, India", - "kunyomi": [ - "しるし", - "-じるし", - "しる.す" - ], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "印", - "reading": "イン", - "meaning": "stamp, seal, chop, seal impression, seal, sealing, stamp, mark, print, mudra (symbolic hand gesture), ninja hand sign, India" - }, - { - "example": "印鑑", - "reading": "インカン", - "meaning": "stamp, seal" - }, - { - "example": "消印", - "reading": "ケシイン", - "meaning": "postmark, (postal) cancellation mark" - }, - { - "example": "認め印", - "reading": "ミトメイン", - "meaning": "private seal, personal seal, unregistered seal, informal seal, signet" - } - ], - "kunyomiExamples": [ - { - "example": "印", - "reading": "しるし", - "meaning": "mark, sign, symbol, emblem, badge, crest, flag, evidence, proof, token (of gratitude, affection, etc.)" - }, - { - "example": "印半纏", - "reading": "しるしばんてん", - "meaning": "livery coat" - }, - { - "example": "感謝の印", - "reading": "かんしゃのしるし", - "meaning": "token of appreciation" - }, - { - "example": "印す", - "reading": "しるす", - "meaning": "to leave (a mark, trace, etc.), to print, to stamp, to be a sign of, to be an omen for" - } - ], - "radical": { - "symbol": "卩", - "meaning": "kneel" - }, - "parts": [ - "卩", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21360_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05370.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5370.gif", - "uri": "http://jisho.org/search/%E5%8D%B0%23kanji" - }, - { - "query": "英", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "430", - "strokeCount": 8, - "meaning": "England, English, hero, outstanding, calyx", - "kunyomi": [ - "はなぶさ" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "英", - "reading": "エイ", - "meaning": "Britain, British" - }, - { - "example": "英語", - "reading": "エイゴ", - "meaning": "English (language)" - }, - { - "example": "育英", - "reading": "イクエイ", - "meaning": "education of gifted young people, providing financial support to gifted students, education" - }, - { - "example": "和英", - "reading": "ワエイ", - "meaning": "Japanese-English, Japanese-English dictionary" - } - ], - "kunyomiExamples": [ - { - "example": "花房", - "reading": "はなぶさ", - "meaning": "calyx, corolla" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "冖", - "大", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33521_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082f1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82f1.gif", - "uri": "http://jisho.org/search/%E8%8B%B1%23kanji" - }, - { - "query": "栄", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "920", - "strokeCount": 9, - "meaning": "flourish, prosperity, honor, glory, splendor", - "kunyomi": [ - "さか.える", - "は.え", - "-ば.え", - "は.える", - "え" - ], - "onyomi": [ - "エイ", - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "栄", - "reading": "エイ", - "meaning": "honor, honour, glory, prosperity" - }, - { - "example": "栄冠", - "reading": "エイカン", - "meaning": "laurels, garland" - }, - { - "example": "共栄", - "reading": "キョウエイ", - "meaning": "mutual prosperity" - }, - { - "example": "虚栄", - "reading": "キョエイ", - "meaning": "vanity, vainglory" - } - ], - "kunyomiExamples": [ - { - "example": "栄える", - "reading": "さかえる", - "meaning": "to prosper, to flourish" - }, - { - "example": "栄え", - "reading": "はえ", - "meaning": "glory, splendour, honour" - }, - { - "example": "映える", - "reading": "はえる", - "meaning": "to shine, to glow, to look attractive, to look nice, to be set off (by)" - }, - { - "example": "映える", - "reading": "はえる", - "meaning": "to shine, to glow, to look attractive, to look nice, to be set off (by)" - }, - { - "example": "栄", - "reading": "えい", - "meaning": "honor, honour, glory, prosperity" - }, - { - "example": "栄冠", - "reading": "えいかん", - "meaning": "laurels, garland" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "冖", - "尚", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26628_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06804.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6804.gif", - "uri": "http://jisho.org/search/%E6%A0%84%23kanji" - }, - { - "query": "媛", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1735", - "strokeCount": 12, - "meaning": "beautiful woman, princess", - "kunyomi": [ - "ひめ" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "才媛", - "reading": "サイエン", - "meaning": "literary woman, talented woman" - } - ], - "kunyomiExamples": [ - { - "example": "姫", - "reading": "ひめ", - "meaning": "young lady of noble birth, princess (esp. in Western contexts, tales, etc.), girl, small, cute, lesser (in names of species), prostitute" - }, - { - "example": "愛媛", - "reading": "えひめ", - "meaning": "Ehime (prefecture)" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ノ", - "又", - "女", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23195_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a9b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a9b.gif", - "uri": "http://jisho.org/search/%E5%AA%9B%23kanji" - }, - { - "query": "塩", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1148", - "strokeCount": 13, - "meaning": "salt", - "kunyomi": [ - "しお" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "塩", - "reading": "シオ", - "meaning": "salt (i.e. sodium chloride), common salt, table salt, salt (e.g. sodium chloride, calcium sulfate, etc.), hardship, toil, trouble, saltiness" - }, - { - "example": "塩化", - "reading": "エンカ", - "meaning": "chloride" - }, - { - "example": "減塩", - "reading": "ゲンエン", - "meaning": "reduction of salt, sodium restriction" - }, - { - "example": "岩塩", - "reading": "ガンエン", - "meaning": "halite, rock salt" - } - ], - "kunyomiExamples": [ - { - "example": "塩", - "reading": "しお", - "meaning": "salt (i.e. sodium chloride), common salt, table salt, salt (e.g. sodium chloride, calcium sulfate, etc.), hardship, toil, trouble, saltiness" - }, - { - "example": "塩辛い", - "reading": "しおからい", - "meaning": "salty (taste), briny" - }, - { - "example": "岩塩", - "reading": "がんえん", - "meaning": "halite, rock salt" - }, - { - "example": "手塩", - "reading": "てしお", - "meaning": "table salt, small plate" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "口", - "土", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22633_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05869.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5869.gif", - "uri": "http://jisho.org/search/%E5%A1%A9%23kanji" - }, - { - "query": "岡", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "463", - "strokeCount": 8, - "meaning": "mount, hill, knoll", - "kunyomi": [ - "おか" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "岡陵", - "reading": "コウリョウ", - "meaning": "hill" - } - ], - "kunyomiExamples": [ - { - "example": "丘", - "reading": "おか", - "meaning": "hill, height, knoll, rising ground, bonus points awarded to the winner at the end of a game" - }, - { - "example": "岡崎フラグメント", - "reading": "おかざきフラグメント", - "meaning": "Okazaki fragment" - }, - { - "example": "盛岡", - "reading": "もりおか", - "meaning": "Morioka (city in Iwate)" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "一", - "冂", - "山", - "岡", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23713_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ca1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ca1.gif", - "uri": "http://jisho.org/search/%E5%B2%A1%23kanji" - }, - { - "query": "億", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "716", - "strokeCount": 15, - "meaning": "hundred million, 10**8", - "kunyomi": [], - "onyomi": [ - "オク" - ], - "onyomiExamples": [ - { - "example": "億", - "reading": "オク", - "meaning": "10^8, 100,000,000, hundred million" - }, - { - "example": "億万", - "reading": "オクマン", - "meaning": "millions and millions" - }, - { - "example": "十億", - "reading": "ジュウオク", - "meaning": "1,000,000,000, billion" - }, - { - "example": "100億", - "reading": "ヒャクオク", - "meaning": "10,000,000,000, ten billion" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "心", - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20740_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05104.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5104.gif", - "uri": "http://jisho.org/search/%E5%84%84%23kanji" - }, - { - "query": "加", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "130", - "strokeCount": 5, - "meaning": "add, addition, increase, join, include, Canada", - "kunyomi": [ - "くわ.える", - "くわ.わる" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "加", - "reading": "カ", - "meaning": "addition, increase, Canada" - }, - { - "example": "加圧", - "reading": "カアツ", - "meaning": "increasing pressure" - }, - { - "example": "添加", - "reading": "テンカ", - "meaning": "addition, annexing" - }, - { - "example": "牙買加", - "reading": "ジャマイカ", - "meaning": "Jamaica" - } - ], - "kunyomiExamples": [ - { - "example": "加える", - "reading": "くわえる", - "meaning": "to add, to add up, to sum up, to append, to annex, to increase, to gather (e.g. speed), to pick up, to include, to count in, to let join, to inflict (damage), to deal, to give" - }, - { - "example": "加わる", - "reading": "くわわる", - "meaning": "to be added to, to be appended, to join in (e.g. a group of friends), to participate, to increase (e.g. heat), to gain in (e.g. influence), to grow, to gather (speed), to be applied (e.g. heat, pressure), to be exerted" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21152_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052a0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52a0.gif", - "uri": "http://jisho.org/search/%E5%8A%A0%23kanji" - }, - { - "query": "果", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "258", - "strokeCount": 8, - "meaning": "fruit, reward, carry out, achieve, complete, end, finish, succeed", - "kunyomi": [ - "は.たす", - "はた.す", - "-は.たす", - "は.てる", - "-は.てる", - "は.て" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "果", - "reading": "カ", - "meaning": "phala (attained state, result), enlightenment (as the fruits of one's Buddhist practice), fruit, counter for pieces of fruit" - }, - { - "example": "果敢", - "reading": "カカン", - "meaning": "resolute, determined, bold" - }, - { - "example": "青果", - "reading": "セイカ", - "meaning": "fruit(s) and vegetables, produce" - }, - { - "example": "研究結果", - "reading": "ケンキュウケッカ", - "meaning": "results of a scientific investigation, findings" - } - ], - "kunyomiExamples": [ - { - "example": "果たす", - "reading": "はたす", - "meaning": "to accomplish, to achieve, to carry out, to fulfill, to fulfil, to realize, to execute, to perform, to do, to do ... completely, to do ... entirely" - }, - { - "example": "果たす", - "reading": "はたす", - "meaning": "to accomplish, to achieve, to carry out, to fulfill, to fulfil, to realize, to execute, to perform, to do, to do ... completely, to do ... entirely" - }, - { - "example": "果てる", - "reading": "はてる", - "meaning": "to end, to be finished, to be exhausted, to die, to perish, to do utterly, to do completely" - }, - { - "example": "果て", - "reading": "はて", - "meaning": "the end, the extremity, the limit, the limits, the result" - }, - { - "example": "果てしない", - "reading": "はてしない", - "meaning": "endless, boundless, everlasting" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26524_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0679c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/679c.gif", - "uri": "http://jisho.org/search/%E6%9E%9C%23kanji" - }, - { - "query": "貨", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "822", - "strokeCount": 11, - "meaning": "freight, goods, property", - "kunyomi": [ - "たから" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "貨幣", - "reading": "カヘイ", - "meaning": "money, currency, coinage" - }, - { - "example": "貨物", - "reading": "カモツ", - "meaning": "cargo, freight, money or assets" - }, - { - "example": "基軸通貨", - "reading": "キジクツウカ", - "meaning": "key currency" - }, - { - "example": "英貨", - "reading": "エイカ", - "meaning": "British currency, pound sterling" - } - ], - "kunyomiExamples": [ - { - "example": "宝", - "reading": "たから", - "meaning": "treasure" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "匕", - "化", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36008_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ca8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ca8.gif", - "uri": "http://jisho.org/search/%E8%B2%A8%23kanji" - }, - { - "query": "課", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "455", - "strokeCount": 15, - "meaning": "chapter, lesson, section, department, division, counter for chapters (of a book)", - "kunyomi": [], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "課", - "reading": "カ", - "meaning": "lesson, section (in an organization), division, department, counter for lessons and chapters (of a book)" - }, - { - "example": "課員", - "reading": "カイン", - "meaning": "section staff" - }, - { - "example": "賦課", - "reading": "フカ", - "meaning": "levy, imposition" - }, - { - "example": "会計課", - "reading": "カイケイカ", - "meaning": "accounts section, accounting section" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "木", - "田", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35506_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ab2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ab2.gif", - "uri": "http://jisho.org/search/%E8%AA%B2%23kanji" - }, - { - "query": "芽", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1691", - "strokeCount": 8, - "meaning": "bud, sprout, spear, germ", - "kunyomi": [ - "め" - ], - "onyomi": [ - "ガ" - ], - "onyomiExamples": [ - { - "example": "芽球", - "reading": "ガキュウ", - "meaning": "gemmule, blast (cell)" - }, - { - "example": "芽条変異", - "reading": "ガジョウヘンイ", - "meaning": "bud mutation, bud sport" - }, - { - "example": "発芽", - "reading": "ハツガ", - "meaning": "germination, sprouting, budding" - }, - { - "example": "萌芽", - "reading": "ホウガ", - "meaning": "germination, germ, sprout, bud, sign" - } - ], - "kunyomiExamples": [ - { - "example": "芽", - "reading": "め", - "meaning": "sprout, shoot, bud, germinal disk (in an egg)" - }, - { - "example": "目出度い", - "reading": "めでたい", - "meaning": "happy, auspicious, propitious, joyous, naive" - }, - { - "example": "若芽", - "reading": "わかめ", - "meaning": "sprouts, new shoots, young buds" - }, - { - "example": "腋芽", - "reading": "えきが", - "meaning": "axillary bud, lateral bud" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "牙", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33469_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082bd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82bd.gif", - "uri": "http://jisho.org/search/%E8%8A%BD%23kanji" - }, - { - "query": "賀", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1056", - "strokeCount": 12, - "meaning": "congratulations, joy", - "kunyomi": [], - "onyomi": [ - "ガ" - ], - "onyomiExamples": [ - { - "example": "賀", - "reading": "ガ", - "meaning": "congratulation, celebration" - }, - { - "example": "賀正", - "reading": "ガショウ", - "meaning": "A Happy New Year!" - }, - { - "example": "年賀", - "reading": "ネンガ", - "meaning": "New Year's greetings, New Year's call, New Year's gift" - }, - { - "example": "祝賀", - "reading": "シュクガ", - "meaning": "celebration, congratulations" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "力", - "口", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36032_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cc0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cc0.gif", - "uri": "http://jisho.org/search/%E8%B3%80%23kanji" - }, - { - "query": "改", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "147", - "strokeCount": 7, - "meaning": "reformation, change, modify, mend, renew, examine, inspect, search", - "kunyomi": [ - "あらた.める", - "あらた.まる" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "改", - "reading": "カイ", - "meaning": "revision" - }, - { - "example": "改革", - "reading": "カイカク", - "meaning": "reform, reformation, reorganization" - }, - { - "example": "更改", - "reading": "コウカイ", - "meaning": "renewal, extension, revision" - }, - { - "example": "契約更改", - "reading": "ケイヤクコウカイ", - "meaning": "contract renewal" - } - ], - "kunyomiExamples": [ - { - "example": "改める", - "reading": "あらためる", - "meaning": "to change, to alter, to revise, to replace, to reform, to correct, to mend, to improve, to examine, to check, to inspect, to do properly, to do formally" - }, - { - "example": "改まる", - "reading": "あらたまる", - "meaning": "to be renewed, to change, to be improved, to be reformed, to be revised, to be corrected, to stand on ceremony, to be formal, to take a turn for the worse (of an illness), to take a serious turn" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "已", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25913_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06539.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6539.gif", - "uri": "http://jisho.org/search/%E6%94%B9%23kanji" - }, - { - "query": "械", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1321", - "strokeCount": 11, - "meaning": "contraption, fetter, machine, instrument", - "kunyomi": [ - "かせ" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "工作機械", - "reading": "コウサクキカイ", - "meaning": "machine tools" - }, - { - "example": "産業機械", - "reading": "サンギョウキカイ", - "meaning": "industrial machinery" - } - ], - "kunyomiExamples": [ - { - "example": "足かせ", - "reading": "あしかせ", - "meaning": "fetters, shackles, hobbles, encumbrance, hindrance, burden, trap" - }, - { - "example": "手かせ", - "reading": "てかせ", - "meaning": "handcuffs" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "廾", - "戈", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26800_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068b0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68b0.gif", - "uri": "http://jisho.org/search/%E6%A2%B0%23kanji" - }, - { - "query": "害", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "358", - "strokeCount": 10, - "meaning": "harm, injury", - "kunyomi": [], - "onyomi": [ - "ガイ" - ], - "onyomiExamples": [ - { - "example": "害", - "reading": "ガイ", - "meaning": "injury, harm, evil influence, damage" - }, - { - "example": "害虫", - "reading": "ガイチュウ", - "meaning": "harmful insect, noxious insect, vermin, pest" - }, - { - "example": "薬害", - "reading": "ヤクガイ", - "meaning": "harmful side effects of a medicine or drug" - }, - { - "example": "傷害", - "reading": "ショウガイ", - "meaning": "wound, injury, accident, casualty, assault, inflicting bodily injury" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "二", - "亠", - "口", - "土", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bb3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bb3.gif", - "uri": "http://jisho.org/search/%E5%AE%B3%23kanji" - }, - { - "query": "街", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "891", - "strokeCount": 12, - "meaning": "boulevard, street, town", - "kunyomi": [ - "まち" - ], - "onyomi": [ - "ガイ", - "カイ" - ], - "onyomiExamples": [ - { - "example": "街", - "reading": "ガイ", - "meaning": "... street, ... quarter, ... district" - }, - { - "example": "街宣車", - "reading": "ガイセンシャ", - "meaning": "(right-wing) propaganda truck" - }, - { - "example": "ウォール街", - "reading": "ウォールガイ", - "meaning": "Wall Street" - }, - { - "example": "中華街", - "reading": "チュウカガイ", - "meaning": "Chinatown" - }, - { - "example": "街道", - "reading": "カイドウ", - "meaning": "highway (esp. one existing from the Edo period), main road, highway (e.g. to success), path (to becoming ...)" - }, - { - "example": "街道筋", - "reading": "カイドウスジ", - "meaning": "highway route (Edo period), main route" - } - ], - "kunyomiExamples": [ - { - "example": "町", - "reading": "まち", - "meaning": "town, block, neighbourhood, neighborhood, downtown, main street, street, road, 109.09 m, 0.99 hectares" - }, - { - "example": "街角", - "reading": "まちかど", - "meaning": "street corner" - }, - { - "example": "眠らない街", - "reading": "ねむらないまち", - "meaning": "city that never sleeps" - }, - { - "example": "街々", - "reading": "まちまち", - "meaning": "streets" - } - ], - "radical": { - "symbol": "行", - "meaning": "go, do" - }, - "parts": [ - "土", - "彳", - "行" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34903_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08857.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8857.gif", - "uri": "http://jisho.org/search/%E8%A1%97%23kanji" - }, - { - "query": "各", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "243", - "strokeCount": 6, - "meaning": "each, every, either", - "kunyomi": [ - "おのおの" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "各", - "reading": "カク", - "meaning": "each, every, all" - }, - { - "example": "各自", - "reading": "カクジ", - "meaning": "each (person), everyone, individual, respective" - } - ], - "kunyomiExamples": [ - { - "example": "各々", - "reading": "おのおの", - "meaning": "each, you (plural)" - }, - { - "example": "各方", - "reading": "おのおのがた", - "meaning": "all of you (pronoun)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "夂", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21508_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05404.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5404.gif", - "uri": "http://jisho.org/search/%E5%90%84%23kanji" - }, - { - "query": "覚", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "710", - "strokeCount": 12, - "meaning": "memorize, learn, remember, awake, sober up", - "kunyomi": [ - "おぼ.える", - "さ.ます", - "さ.める", - "さと.る" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "覚醒剤", - "reading": "カクセイザイ", - "meaning": "stimulant (e.g. psychoactive drugs like methamphetamine, ritalin, etc.)" - }, - { - "example": "覚悟", - "reading": "カクゴ", - "meaning": "readiness, preparedness, resolution, resignation" - }, - { - "example": "視聴覚", - "reading": "シチョウカク", - "meaning": "senses of seeing and hearing, audiovisual" - }, - { - "example": "才覚", - "reading": "サイカク", - "meaning": "ready wit, quick wits, resourcefulness, raising (money)" - } - ], - "kunyomiExamples": [ - { - "example": "覚える", - "reading": "おぼえる", - "meaning": "to memorize, to memorise, to commit to memory, to learn by heart, to bear in mind, to remember, to learn, to pick up, to acquire, to feel, to think, to regard" - }, - { - "example": "覚ます", - "reading": "さます", - "meaning": "to awaken, to arouse from sleep, to bring to one's senses, to disabuse (someone of), to sober up, to dampen, to throw a damper on, to spoil" - }, - { - "example": "覚める", - "reading": "さめる", - "meaning": "to wake, to wake up, to become sober, to sober up, to regain consciousness (e.g. after anaesthesia), to come to one's senses, to be disillusioned" - }, - { - "example": "悟る", - "reading": "さとる", - "meaning": "to perceive, to sense, to discern, to understand, to comprehend, to realize, to attain enlightenment" - } - ], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "冖", - "尚", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35226_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0899a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/899a.gif", - "uri": "http://jisho.org/search/%E8%A6%9A%23kanji" - }, - { - "query": "潟", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1204", - "strokeCount": 15, - "meaning": "lagoon", - "kunyomi": [ - "かた", - "-がた" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "潟湖", - "reading": "セキコ", - "meaning": "lagoon" - } - ], - "kunyomiExamples": [ - { - "example": "潟", - "reading": "かた", - "meaning": "lagoon" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "勹", - "杰", - "汁", - "臼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28511_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f5f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f5f.gif", - "uri": "http://jisho.org/search/%E6%BD%9F%23kanji" - }, - { - "query": "完", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "595", - "strokeCount": 7, - "meaning": "perfect, completion, end", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "完", - "reading": "カン", - "meaning": "The End, Finis, completion, conclusion, end, providing fully" - }, - { - "example": "完結", - "reading": "カンケツ", - "meaning": "conclusion, completion" - }, - { - "example": "未完", - "reading": "ミカン", - "meaning": "incomplete, unfinished" - }, - { - "example": "追完", - "reading": "ツイカン", - "meaning": "subsequent completion" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "二", - "儿", - "元", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23436_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b8c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b8c.gif", - "uri": "http://jisho.org/search/%E5%AE%8C%23kanji" - }, - { - "query": "官", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "230", - "strokeCount": 8, - "meaning": "bureaucrat, the government, organ", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "官", - "reading": "カン", - "meaning": "government service, the bureaucracy" - }, - { - "example": "官界", - "reading": "カンカイ", - "meaning": "bureaucracy" - }, - { - "example": "代官", - "reading": "ダイカン", - "meaning": "Edo-period prefectural governor (magistrate, bailiff)" - }, - { - "example": "自衛官", - "reading": "ジエイカン", - "meaning": "Japanese Self-Defense Force official, Self-Defense Force official" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "口", - "宀", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23448_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b98.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b98.gif", - "uri": "http://jisho.org/search/%E5%AE%98%23kanji" - }, - { - "query": "管", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "517", - "strokeCount": 14, - "meaning": "pipe, tube, wind instrument, drunken talk, control, jurisdiction", - "kunyomi": [ - "くだ" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "管", - "reading": "カン", - "meaning": "pipe, tube" - }, - { - "example": "管轄", - "reading": "カンカツ", - "meaning": "jurisdiction, control" - }, - { - "example": "配管", - "reading": "ハイカン", - "meaning": "plumbing, piping" - }, - { - "example": "移管", - "reading": "イカン", - "meaning": "transfer of control" - } - ], - "kunyomiExamples": [ - { - "example": "管", - "reading": "かん", - "meaning": "pipe, tube" - }, - { - "example": "管狐", - "reading": "くだぎつね", - "meaning": "mythological pipe fox, stoat" - }, - { - "example": "手練手管", - "reading": "てれんてくだ", - "meaning": "wiles, art of coaxing" - }, - { - "example": "手管", - "reading": "てくだ", - "meaning": "wiles, trick, artifice, coquetry, lover (male) (esp. of a prostitute)" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "口", - "宀", - "竹", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31649_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ba1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ba1.gif", - "uri": "http://jisho.org/search/%E7%AE%A1%23kanji" - }, - { - "query": "関", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "70", - "strokeCount": 14, - "meaning": "connection, barrier, gateway, involve, concerning", - "kunyomi": [ - "せき", - "-ぜき", - "かか.わる", - "からくり", - "かんぬき" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "関", - "reading": "カン", - "meaning": "barrier, gate" - }, - { - "example": "関係", - "reading": "カンケイ", - "meaning": "relation, relationship, connection, participation, involvement, concern, influence, effect, sexual relations, sexual relationship, related to, connected to" - }, - { - "example": "連関", - "reading": "レンカン", - "meaning": "connection, relation, linkage" - }, - { - "example": "通関", - "reading": "ツウカン", - "meaning": "customs clearance" - } - ], - "kunyomiExamples": [ - { - "example": "関", - "reading": "せき", - "meaning": "barrier, gate, seki (in go), mutual life" - }, - { - "example": "関取", - "reading": "せきとり", - "meaning": "ranking wrestler in the makuuchi (senior-grade) or juryo (junior-grade) divisions" - }, - { - "example": "霞ヶ関", - "reading": "かすみがせき", - "meaning": "Kasumigaseki, district of Tokyo where most of Japan's government ministry offices are located, government ministries (of Japan), Japanese government bureaucracy" - }, - { - "example": "関わる", - "reading": "かかわる", - "meaning": "to be affected, to be influenced, to be concerned with, to have to do with, to stick to (opinions)" - }, - { - "example": "覗き機関", - "reading": "のぞきからくり", - "meaning": "peep show, device with lens mounted on a stand or in a box to view enlarged pictures" - }, - { - "example": "水機関", - "reading": "みずからくり", - "meaning": "puppet powered by (falling) water, water-powered contrivance, show using such a device (in Edo-period Osaka)" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "ハ", - "一", - "二", - "人", - "大", - "并", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38306_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/095a2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/95a2.gif", - "uri": "http://jisho.org/search/%E9%96%A2%23kanji" - }, - { - "query": "観", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "476", - "strokeCount": 18, - "meaning": "outlook, look, appearance, condition, view", - "kunyomi": [ - "み.る", - "しめ.す" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "観", - "reading": "カン", - "meaning": "look, appearance, spectacle, sight, observation meditation, outlook on ..., view of ..." - }, - { - "example": "看過", - "reading": "カンカ", - "meaning": "overlooking, turning a blind eye" - }, - { - "example": "客観", - "reading": "キャッカン", - "meaning": "objectivity, objective, object (philosophical)" - }, - { - "example": "静観", - "reading": "セイカン", - "meaning": "watchful waiting, careful supervision" - } - ], - "kunyomiExamples": [ - { - "example": "見る", - "reading": "みる", - "meaning": "to see, to look, to watch, to view, to observe, to examine, to look over, to assess, to check, to judge, to look after, to attend to, to take care of, to keep an eye on, to experience, to meet with (misfortune, success, etc.), to try ..., to have a go at ..., to give ... a try, to see (that) ..., to find (that) ..." - } - ], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "乞", - "矢", - "見", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35251_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/089b3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/89b3.gif", - "uri": "http://jisho.org/search/%E8%A6%B3%23kanji" - }, - { - "query": "願", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "894", - "strokeCount": 19, - "meaning": "petition, request, vow, wish, hope", - "kunyomi": [ - "ねが.う", - "-ねがい" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "願", - "reading": "ガン", - "meaning": "prayer, wish, vow" - }, - { - "example": "願書", - "reading": "ガンショ", - "meaning": "(written) application, written request, petition, written prayer for a shrine or Buddhist temple" - }, - { - "example": "本願", - "reading": "ホンガン", - "meaning": "Amida Buddha's original vow, long-cherished desire" - }, - { - "example": "祈願", - "reading": "キガン", - "meaning": "prayer (for something), supplication" - } - ], - "kunyomiExamples": [ - { - "example": "願う", - "reading": "ねがう", - "meaning": "to desire, to wish, to hope, to beg, to request, to implore, to pray, to have something done for oneself" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "厂", - "小", - "白", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39000_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09858.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9858.gif", - "uri": "http://jisho.org/search/%E9%A1%98%23kanji" - }, - { - "query": "岐", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1428", - "strokeCount": 7, - "meaning": "branch off, fork in road, scene, arena, theater", - "kunyomi": [], - "onyomi": [ - "キ", - "ギ" - ], - "onyomiExamples": [ - { - "example": "岐路", - "reading": "キロ", - "meaning": "forked road, crossroads" - }, - { - "example": "多岐", - "reading": "タキ", - "meaning": "digression, many divergences" - }, - { - "example": "壱岐", - "reading": "イキ", - "meaning": "Iki (former province located on Iki Island in present-day Nagasaki Prefecture), Iki (island)" - }, - { - "example": "岐阜", - "reading": "ギフ", - "meaning": "Gifu (city, prefecture)" - }, - { - "example": "岐阜県", - "reading": "ギフケン", - "meaning": "Gifu prefecture (Chūbu area)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "十", - "又", - "山", - "支" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23696_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c90.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c90.gif", - "uri": "http://jisho.org/search/%E5%B2%90%23kanji" - }, - { - "query": "希", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "896", - "strokeCount": 7, - "meaning": "hope, beg, request, pray, beseech, Greece, dilute (acid), rare, few, phenomenal", - "kunyomi": [ - "まれ", - "こいねが.う" - ], - "onyomi": [ - "キ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "希", - "reading": "キ", - "meaning": "dilute, rare" - }, - { - "example": "希少", - "reading": "キショウ", - "meaning": "scarce, rare" - }, - { - "example": "古希", - "reading": "コキ", - "meaning": "70th birthday, ancient Greek (language)" - }, - { - "example": "七十古希", - "reading": "シチジュウコキ", - "meaning": "Men seldom live to be seventy (Du Fu (c.712-c.770)), Few people live to be seventy" - }, - { - "example": "希有", - "reading": "ケウ", - "meaning": "rare, uncommon" - } - ], - "kunyomiExamples": [ - { - "example": "稀", - "reading": "まれ", - "meaning": "rare, seldom" - }, - { - "example": "類稀", - "reading": "たぐいまれ", - "meaning": "unique, rare, exceptional, unparalleled, incomparable" - }, - { - "example": "ごく稀", - "reading": "ごくまれ", - "meaning": "extremely rare" - }, - { - "example": "希う", - "reading": "こいねがう", - "meaning": "to beg, to request, to beseech, to implore, to entreat" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "ノ", - "一", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24076_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e0c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e0c.gif", - "uri": "http://jisho.org/search/%E5%B8%8C%23kanji" - }, - { - "query": "季", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "842", - "strokeCount": 8, - "meaning": "seasons", - "kunyomi": [], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "季", - "reading": "キ", - "meaning": "season, seasonal word or phrase (in haiku), year" - }, - { - "example": "季刊", - "reading": "キカン", - "meaning": "quarterly (publication)" - }, - { - "example": "夏季", - "reading": "カキ", - "meaning": "summer season" - }, - { - "example": "秋季", - "reading": "シュウキ", - "meaning": "fall season, autumn season" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "子", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23395_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b63.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b63.gif", - "uri": "http://jisho.org/search/%E5%AD%A3%23kanji" - }, - { - "query": "旗", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1190", - "strokeCount": 14, - "meaning": "national flag, banner, standard", - "kunyomi": [ - "はた" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "旗手", - "reading": "キシュ", - "meaning": "standard-bearer, flag-bearer" - }, - { - "example": "旗色", - "reading": "ハタイロ", - "meaning": "situation, outlook, one's allegiance, affiliation, position" - }, - { - "example": "日章旗", - "reading": "ニッショウキ", - "meaning": "the Japanese (rising sun) flag" - }, - { - "example": "校旗", - "reading": "コウキ", - "meaning": "school flag" - } - ], - "kunyomiExamples": [ - { - "example": "旗", - "reading": "はた", - "meaning": "flag, pataka (banner), banner (administrative division of Inner Mongolia)" - }, - { - "example": "旗揚げ", - "reading": "はたあげ", - "meaning": "raising an army, launching business" - }, - { - "example": "白旗", - "reading": "しらはた", - "meaning": "white flag, truce flag, surrender flag" - }, - { - "example": "大会旗", - "reading": "たいかいはた", - "meaning": "tournament flag" - } - ], - "radical": { - "symbol": "方", - "meaning": "square" - }, - "parts": [ - "ハ", - "乞", - "方", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26071_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065d7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65d7.gif", - "uri": "http://jisho.org/search/%E6%97%97%23kanji" - }, - { - "query": "器", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "525", - "strokeCount": 15, - "meaning": "utensil, vessel, receptacle, implement, instrument, ability, container, tool, set", - "kunyomi": [ - "うつわ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "器", - "reading": "キ", - "meaning": "device, instrument, vessel, container, ability, capacity, calibre, caliber" - }, - { - "example": "機械", - "reading": "キカイ", - "meaning": "machine, mechanism, instrument, appliance, apparatus" - }, - { - "example": "呼吸器", - "reading": "コキュウキ", - "meaning": "respiratory organs" - }, - { - "example": "化学兵器", - "reading": "カガクヘイキ", - "meaning": "chemical weapon" - } - ], - "kunyomiExamples": [ - { - "example": "器", - "reading": "うつわ", - "meaning": "bowl, vessel, container, ability, capacity, calibre, caliber" - }, - { - "example": "器物", - "reading": "きぶつ", - "meaning": "container, receptacle, utensil, implement, furniture, calibre, talent, ability, personal property" - }, - { - "example": "横綱の器", - "reading": "よこづなのうつわ", - "meaning": "mental characteristics expected of a grand champion" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22120_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05668.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5668.gif", - "uri": "http://jisho.org/search/%E5%99%A8%23kanji" - }, - { - "query": "機", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "127", - "strokeCount": 16, - "meaning": "loom, mechanism, machine, airplane, opportunity, potency, efficacy, occasion", - "kunyomi": [ - "はた" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "機", - "reading": "キ", - "meaning": "chance, opportunity, machine, aircraft, counter for aircraft, counter for remaining lives (in video games)" - }, - { - "example": "機運", - "reading": "キウン", - "meaning": "opportunity, chance, good time (to do), trend, tendency, momentum" - }, - { - "example": "端末機", - "reading": "タンマツキ", - "meaning": "terminal (unit)" - }, - { - "example": "有機", - "reading": "ユウキ", - "meaning": "organic" - } - ], - "kunyomiExamples": [ - { - "example": "機", - "reading": "はた", - "meaning": "loom" - }, - { - "example": "機織り", - "reading": "はたおり", - "meaning": "weaving, weaver" - }, - { - "example": "高機", - "reading": "たかばた", - "meaning": "traditional Japanese treadle-operated tall loom" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "丶", - "幺", - "戈", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27231_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a5f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a5f.gif", - "uri": "http://jisho.org/search/%E6%A9%9F%23kanji" - }, - { - "query": "議", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "25", - "strokeCount": 20, - "meaning": "deliberation, consultation, debate, consideration", - "kunyomi": [], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "議", - "reading": "ギ", - "meaning": "discussion, deliberation, thought, opinion" - }, - { - "example": "議案", - "reading": "ギアン", - "meaning": "legislative bill, measure, agenda item" - }, - { - "example": "本会議", - "reading": "ホンカイギ", - "meaning": "plenary session, regular session" - }, - { - "example": "日本学術会議", - "reading": "ニホンガクジュツカイギ", - "meaning": "Science Council of Japan" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "亅", - "并", - "戈", - "手", - "王", - "羊", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35696_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b70.gif", - "uri": "http://jisho.org/search/%E8%AD%B0%23kanji" - }, - { - "query": "求", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "220", - "strokeCount": 7, - "meaning": "request, want, wish for, require, demand", - "kunyomi": [ - "もと.める" - ], - "onyomi": [ - "キュウ", - "グ" - ], - "onyomiExamples": [ - { - "example": "求職", - "reading": "キュウショク", - "meaning": "job hunting, seeking employment" - }, - { - "example": "求刑", - "reading": "キュウケイ", - "meaning": "recommended sentence, prosecution's demand for punishment" - }, - { - "example": "身代金要求", - "reading": "ミノシロキンヨウキュウ", - "meaning": "ransom demand" - }, - { - "example": "希求", - "reading": "キキュウ", - "meaning": "longing, great desire, aspiration" - }, - { - "example": "求道", - "reading": "キュウドウ", - "meaning": "seeking for truth" - }, - { - "example": "求不得苦", - "reading": "グフトクク", - "meaning": "the pain of not getting what one seeks" - }, - { - "example": "勤求", - "reading": "ゴング", - "meaning": "inquiring the Buddha way" - }, - { - "example": "欣求", - "reading": "ゴング", - "meaning": "earnest aspiration (to go to paradise)" - } - ], - "kunyomiExamples": [ - { - "example": "求める", - "reading": "もとめる", - "meaning": "to want, to wish for, to request, to demand, to require, to ask for, to seek, to search for, to look for, to pursue (pleasure), to hunt (a job), to purchase, to buy" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "丶", - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27714_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c42.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c42.gif", - "uri": "http://jisho.org/search/%E6%B1%82%23kanji" - }, - { - "query": "泣", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1380", - "strokeCount": 8, - "meaning": "cry, weep, moan", - "kunyomi": [ - "な.く" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "泣訴", - "reading": "キュウソ", - "meaning": "imploring with tears in one's eyes" - }, - { - "example": "号泣", - "reading": "ゴウキュウ", - "meaning": "crying aloud, lamentation, wailing" - }, - { - "example": "哀泣", - "reading": "アイキュウ", - "meaning": "crying with sadness" - } - ], - "kunyomiExamples": [ - { - "example": "泣く", - "reading": "なく", - "meaning": "to cry, to weep, to sob, to howl" - }, - { - "example": "泣く子と地頭には勝てない", - "reading": "なくことじとうにはかてない", - "meaning": "you cannot win against someone who doesn't listen to reason, you can't fight City Hall" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27875_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ce3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ce3.gif", - "uri": "http://jisho.org/search/%E6%B3%A3%23kanji" - }, - { - "query": "給", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "615", - "strokeCount": 12, - "meaning": "salary, wage, gift, allow, grant, bestow on", - "kunyomi": [ - "たま.う", - "たも.う", - "-たま.え" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "給", - "reading": "キュウ", - "meaning": "wage, recompense" - }, - { - "example": "給食", - "reading": "キュウショク", - "meaning": "provision of lunch (e.g. at office, school, etc.), providing a meal, lunch service" - }, - { - "example": "自給", - "reading": "ジキュウ", - "meaning": "self-support" - }, - { - "example": "有給", - "reading": "ユウキュウ", - "meaning": "salaried, with pay, vacation, (paid) holiday" - } - ], - "kunyomiExamples": [ - { - "example": "給う", - "reading": "たまう", - "meaning": "to give, to do ..." - }, - { - "example": "給ふ", - "reading": "たまう", - "meaning": "to give, to receive" - }, - { - "example": "給う", - "reading": "たもう", - "meaning": "to give, to do ..." - }, - { - "example": "給ふ", - "reading": "たまう", - "meaning": "to give, to receive" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "一", - "个", - "口", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32102_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d66.gif", - "uri": "http://jisho.org/search/%E7%B5%A6%23kanji" - }, - { - "query": "挙", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "257", - "strokeCount": 10, - "meaning": "raise, plan, project, behavior, actions", - "kunyomi": [ - "あ.げる", - "あ.がる", - "こぞ.る" - ], - "onyomi": [ - "キョ" - ], - "onyomiExamples": [ - { - "example": "挙", - "reading": "キョ", - "meaning": "action, behavior, behaviour, move, recommendation (of a person for a position)" - }, - { - "example": "挙式", - "reading": "キョシキ", - "meaning": "holding a ceremony, wedding ceremony" - }, - { - "example": "暴挙", - "reading": "ボウキョ", - "meaning": "violence, reckless action, (an) outrage" - }, - { - "example": "快挙", - "reading": "カイキョ", - "meaning": "brilliant achievement, spectacular feat, splendid accomplishment, remarkable deed" - } - ], - "kunyomiExamples": [ - { - "example": "上げる", - "reading": "あげる", - "meaning": "to raise, to elevate, to do up (one's hair), to fly (a kite, etc.), to launch (fireworks, etc.), to surface (a submarine, etc.), to land (a boat), to deep-fry, to show someone (into a room), to give, to send someone (away), to enrol (one's child in school), to enroll, to increase (price, quality, status, etc.), to develop (talent, skill), to improve, to make (a loud sound), to raise (one's voice), to earn (something desirable), to praise, to give (an example, etc.), to cite, to summon up (all of one's energy, etc.), to arrest, to nominate, to summon (for geishas, etc.), to offer up (incense, a prayer, etc.) to the gods (or Buddha, etc.), to bear (a child), to conduct (a ceremony, esp. a wedding), (of the tide) to come in, to vomit, to do for (the sake of someone else), to complete ..., to humbly do ..." - }, - { - "example": "上がる", - "reading": "あがる", - "meaning": "to rise, to go up, to come up, to ascend, to be raised, to enter (esp. from outdoors), to come in, to go in, to enter (a school), to advance to the next grade, to get out (of water), to come ashore, to increase, to improve, to make progress, to be promoted, to advance, to be made (of profit, etc.), to occur (esp. of a favourable result), to be adequate (to cover expenses, etc.), to be finished, to be done, to be over, (of rain) to stop, to lift, to stop (working properly), to cut out, to give out, to die, to win (in a card game, etc.), to be arrested, to turn up (of evidence, etc.), to be deep fried, to be spoken loudly, to get nervous, to get stage fright, to be offered (to the gods, etc.), to go, to visit, to eat, to drink, to be listed (as a candidate), to serve (in one's master's home), to go north, to be complete, to finish" - }, - { - "example": "挙る", - "reading": "こぞる", - "meaning": "to assemble everything together, to do something as a group" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ハ", - "尚", - "手" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25369_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06319.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6319.gif", - "uri": "http://jisho.org/search/%E6%8C%99%23kanji" - }, - { - "query": "漁", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1094", - "strokeCount": 14, - "meaning": "fishing, fishery", - "kunyomi": [ - "あさ.る" - ], - "onyomi": [ - "ギョ", - "リョウ" - ], - "onyomiExamples": [ - { - "example": "漁業", - "reading": "ギョギョウ", - "meaning": "fishing (industry)" - }, - { - "example": "漁獲", - "reading": "ギョカク", - "meaning": "fishing, catch, haul" - }, - { - "example": "出漁", - "reading": "シュツギョ", - "meaning": "going fishing" - }, - { - "example": "大漁", - "reading": "タイリョウ", - "meaning": "big catch (fishing), good haul" - }, - { - "example": "漁", - "reading": "リョウ", - "meaning": "fishing, gathering seafood (e.g. clams, seaweed), catch (e.g. of fish), haul" - }, - { - "example": "漁師", - "reading": "リョウシ", - "meaning": "fisherman" - }, - { - "example": "大漁", - "reading": "タイリョウ", - "meaning": "big catch (fishing), good haul" - }, - { - "example": "豊漁", - "reading": "ホウリョウ", - "meaning": "good catch, good haul" - } - ], - "kunyomiExamples": [ - { - "example": "漁る", - "reading": "あさる", - "meaning": "to fish, to look for, to search for, to hunt for, to scavenge, to scrounge, to look through, to rummage through, to go on a spree (spending, reading, etc.), to binge" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "杰", - "汁", - "田", - "魚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28417_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f01.gif", - "uri": "http://jisho.org/search/%E6%BC%81%23kanji" - }, - { - "query": "共", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "174", - "strokeCount": 6, - "meaning": "together, both, neither, all, and, alike, with", - "kunyomi": [ - "とも", - "とも.に", - "-ども" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "共演", - "reading": "キョウエン", - "meaning": "appearing together, co-acting, co-starring" - }, - { - "example": "共栄", - "reading": "キョウエイ", - "meaning": "mutual prosperity" - }, - { - "example": "反共", - "reading": "ハンキョウ", - "meaning": "anticommunist" - }, - { - "example": "中共", - "reading": "チュウキョウ", - "meaning": "Chinese Communist Party, Chinese Communists, Communist China" - } - ], - "kunyomiExamples": [ - { - "example": "共", - "reading": "とも", - "meaning": "together with, same, both, all, neither, none, including ..." - }, - { - "example": "共に", - "reading": "ともに", - "meaning": "together, jointly, at the same time, with, as ..., including, along with, both" - }, - { - "example": "送料共", - "reading": "そうりょうとも", - "meaning": "including postage" - }, - { - "example": "母子とも", - "reading": "ぼしとも", - "meaning": "both mother and child" - }, - { - "example": "共に", - "reading": "ともに", - "meaning": "together, jointly, at the same time, with, as ..., including, along with, both" - }, - { - "example": "共にする", - "reading": "ともにする", - "meaning": "to do together, to share, to participate in" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "一", - "二", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20849_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05171.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5171.gif", - "uri": "http://jisho.org/search/%E5%85%B1%23kanji" - }, - { - "query": "協", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "121", - "strokeCount": 8, - "meaning": "co-, cooperation", - "kunyomi": [], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "協議", - "reading": "キョウギ", - "meaning": "conference, consultation, discussion, negotiation" - }, - { - "example": "協会", - "reading": "キョウカイ", - "meaning": "association, society, organization, organisation" - }, - { - "example": "農協", - "reading": "ノウキョウ", - "meaning": "agricultural cooperative" - }, - { - "example": "経協", - "reading": "ケイキョウ", - "meaning": "management association, management conference, management institute" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "力", - "十" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21332_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05354.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5354.gif", - "uri": "http://jisho.org/search/%E5%8D%94%23kanji" - }, - { - "query": "鏡", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1506", - "strokeCount": 19, - "meaning": "mirror, speculum, barrel-head, round rice-cake offering", - "kunyomi": [ - "かがみ" - ], - "onyomi": [ - "キョウ", - "ケイ" - ], - "onyomiExamples": [ - { - "example": "鏡面", - "reading": "キョウメン", - "meaning": "mirror surface, lens surface" - }, - { - "example": "鏡台", - "reading": "キョウダイ", - "meaning": "dresser" - }, - { - "example": "内視鏡", - "reading": "ナイシキョウ", - "meaning": "endoscope" - }, - { - "example": "万華鏡", - "reading": "マンゲキョウ", - "meaning": "kaleidoscope" - }, - { - "example": "明鏡", - "reading": "メイキョウ", - "meaning": "polished mirror, clear mirror" - }, - { - "example": "鸞鏡", - "reading": "ランキョウ", - "meaning": "mirror with a mythical Chinese bird carved into the back, (in Japan) 9th note of the ancient chromatic scale (approx. A sharp)" - } - ], - "kunyomiExamples": [ - { - "example": "鏡", - "reading": "かがみ", - "meaning": "mirror, looking-glass, barrel head, page added at the beginning of a document mentioning its purpose, date, author, etc., mirror-shaped mochi" - }, - { - "example": "鏡板", - "reading": "かがみいた", - "meaning": "panel, scene-panel, painted backdrop (panel at the back of a noh stage), on which a pine tree is painted" - }, - { - "example": "懐中鏡", - "reading": "かいちゅうかがみ", - "meaning": "pocket mirror" - }, - { - "example": "化粧鏡", - "reading": "けしょうかがみ", - "meaning": "bathroom mirror, vanity mirror" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "儿", - "日", - "立", - "金", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37857_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/093e1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/93e1.gif", - "uri": "http://jisho.org/search/%E9%8F%A1%23kanji" - }, - { - "query": "競", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "610", - "strokeCount": 20, - "meaning": "emulate, compete with, bid, sell at auction, bout, contest, race", - "kunyomi": [ - "きそ.う", - "せ.る", - "くら.べる" - ], - "onyomi": [ - "キョウ", - "ケイ" - ], - "onyomiExamples": [ - { - "example": "競演", - "reading": "キョウエン", - "meaning": "contest (between performers), competitive performance, competition between theatres putting on the same show" - }, - { - "example": "競泳", - "reading": "キョウエイ", - "meaning": "competitive swimming, swimming race" - }, - { - "example": "競馬", - "reading": "ケイバ", - "meaning": "horse racing" - }, - { - "example": "競売", - "reading": "キョウバイ", - "meaning": "auction" - } - ], - "kunyomiExamples": [ - { - "example": "競う", - "reading": "きそう", - "meaning": "to compete, to contend, to vie, to contest" - }, - { - "example": "競る", - "reading": "せる", - "meaning": "to compete, to bid, to sell at auction" - }, - { - "example": "比べる", - "reading": "くらべる", - "meaning": "to compare, to make a comparison, to compete, to vie" - } - ], - "radical": { - "symbol": "立", - "meaning": "stand, erect" - }, - "parts": [ - "儿", - "口", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31478_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07af6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7af6.gif", - "uri": "http://jisho.org/search/%E7%AB%B6%23kanji" - }, - { - "query": "極", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "460", - "strokeCount": 12, - "meaning": "poles, settlement, conclusion, end, highest rank, electric poles, very, extremely, most, highly, 10**48", - "kunyomi": [ - "きわ.める", - "きわ.まる", - "きわ.まり", - "きわ.み", - "き.める", - "-ぎ.め", - "き.まる" - ], - "onyomi": [ - "キョク", - "ゴク" - ], - "onyomiExamples": [ - { - "example": "極", - "reading": "キョク", - "meaning": "pole, climax, extreme, extremity, culmination, height, zenith, nadir" - }, - { - "example": "極右", - "reading": "キョクウ", - "meaning": "far right (in politics), extreme right, ultraconservative" - }, - { - "example": "消極", - "reading": "ショウキョク", - "meaning": "passive, negative, conservative, depolarization" - }, - { - "example": "対極", - "reading": "タイキョク", - "meaning": "antipodes, other (opposite) extreme, opposite, antithesis" - }, - { - "example": "極", - "reading": "ゴク", - "meaning": "quite, very, 10^48, quindecillion" - }, - { - "example": "極秘", - "reading": "ゴクヒ", - "meaning": "absolute secrecy" - }, - { - "example": "極々", - "reading": "ゴクゴク", - "meaning": "extremely, highly" - }, - { - "example": "失礼至極", - "reading": "シツレイシゴク", - "meaning": "extremely rude, impertinent, impolite" - } - ], - "kunyomiExamples": [ - { - "example": "極める", - "reading": "きわめる", - "meaning": "to carry to extremes, to go to the end of something, to investigate thoroughly, to master" - }, - { - "example": "極まる", - "reading": "きわまる", - "meaning": "to reach an extreme, to reach a limit, to terminate, to come to an end, extremely, to be stuck, to be in a dilemma, to be at a loss, to be decided, to be settled" - }, - { - "example": "極まり", - "reading": "きわまり", - "meaning": "extremity, end, bound, limit" - }, - { - "example": "極まりない", - "reading": "きわまりない", - "meaning": "extremely, in the extreme, knows no bounds (e.g. rudeness), unparalleled, boundless (e.g. universe, ocean), limitless" - }, - { - "example": "極み", - "reading": "きわみ", - "meaning": "height, acme, extremity, peak, end, limit" - }, - { - "example": "決める", - "reading": "きめる", - "meaning": "to decide, to choose, to determine, to make up one's mind, to resolve, to set one's heart on, to settle, to arrange, to set, to appoint, to fix, to clinch (a victory), to decide (the outcome of a match), to persist in doing, to go through with, to always do, to have made a habit of, to take for granted, to assume, to dress up, to dress to kill, to dress to the nines, to carry out successfully (a move in sports, a pose in dance, etc.), to succeed in doing, to immobilize with a double-arm lock (in sumo, judo, etc.), to eat or drink something, to take illegal drugs" - }, - { - "example": "決まる", - "reading": "きまる", - "meaning": "to be decided, to be settled, to be fixed, to be arranged, to be unchanging, to be the same (as always), to be fixed, to be set, to be a fixed rule, to be destined, to be a convention, to be a custom, to be common knowledge, to be well executed (of a manoeuvre in a sport, game, etc.), to go well, to succeed, to connect (of a punch), to look good (of clothing), to look sharp, to be stylish, to suit one, to be held in place (of a hairdo), to be struck and held (of a pose in kabuki)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "又", - "口", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26997_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06975.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6975.gif", - "uri": "http://jisho.org/search/%E6%A5%B5%23kanji" - }, - { - "query": "熊", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1105", - "strokeCount": 14, - "meaning": "bear", - "kunyomi": [ - "くま" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "熊掌", - "reading": "ユウショウ", - "meaning": "bear's palm (meat treasured in Ancient China)" - }, - { - "example": "熊の胆", - "reading": "クマノイ", - "meaning": "bear's gall (used as medicine for the stomach), bear's bile" - } - ], - "kunyomiExamples": [ - { - "example": "熊", - "reading": "くま", - "meaning": "bear (any mammal of family Ursidae)" - }, - { - "example": "熊手", - "reading": "くまで", - "meaning": "rake, fork, bamboo rake" - }, - { - "example": "蜂熊", - "reading": "はちくま", - "meaning": "crested honey buzzard (Pernis ptilorhynchus), Oriental honey buzzard, pern" - }, - { - "example": "黒熊", - "reading": "くろくま", - "meaning": "black bear" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "匕", - "厶", - "月", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0718a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/718a.gif", - "uri": "http://jisho.org/search/%E7%86%8A%23kanji" - }, - { - "query": "訓", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1134", - "strokeCount": 10, - "meaning": "instruction, Japanese character reading, explanation, read", - "kunyomi": [ - "おし.える", - "よ.む", - "くん.ずる" - ], - "onyomi": [ - "クン", - "キン" - ], - "onyomiExamples": [ - { - "example": "訓", - "reading": "クン", - "meaning": "native Japanese reading of a Chinese character, precept, lesson, one's teachings" - }, - { - "example": "訓示", - "reading": "クンジ", - "meaning": "instruction, direction, briefing" - }, - { - "example": "特訓", - "reading": "トックン", - "meaning": "special training, intensive training, crash course" - }, - { - "example": "校訓", - "reading": "コウクン", - "meaning": "school precepts" - }, - { - "example": "庭訓", - "reading": "テイキン", - "meaning": "home education" - }, - { - "example": "家訓", - "reading": "カクン", - "meaning": "family precepts, family motto, rule of the home" - } - ], - "kunyomiExamples": [ - { - "example": "教える", - "reading": "おしえる", - "meaning": "to teach, to instruct, to tell, to inform, to preach" - }, - { - "example": "訓む", - "reading": "よむ", - "meaning": "to pronounce kanji (using the native Japanese reading)" - }, - { - "example": "訓ずる", - "reading": "くんずる", - "meaning": "to read kanji using its native Japanese pronunciation" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "川", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35347_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a13.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a13.gif", - "uri": "http://jisho.org/search/%E8%A8%93%23kanji" - }, - { - "query": "軍", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "189", - "strokeCount": 9, - "meaning": "army, force, troops, war, battle", - "kunyomi": [ - "いくさ" - ], - "onyomi": [ - "グン" - ], - "onyomiExamples": [ - { - "example": "軍", - "reading": "グン", - "meaning": "army, armed forces, troops, military authorities, team, group, troupe" - }, - { - "example": "軍医", - "reading": "グンイ", - "meaning": "military physician or surgeon" - }, - { - "example": "両軍", - "reading": "リョウグン", - "meaning": "both armies, both teams" - }, - { - "example": "従軍", - "reading": "ジュウグン", - "meaning": "military service, serving in a war, taking part in a campaign" - } - ], - "kunyomiExamples": [ - { - "example": "戦", - "reading": "いくさ", - "meaning": "war, battle, campaign, fight, troops, forces" - }, - { - "example": "軍神", - "reading": "ぐんしん", - "meaning": "god of war, war hero" - }, - { - "example": "海兵遠征軍", - "reading": "かいへいえんせいいくさ", - "meaning": "Marine Expeditionary Force (US)" - }, - { - "example": "大軍", - "reading": "おおいくさ", - "meaning": "great war, great battle" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "冖", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36557_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ecd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ecd.gif", - "uri": "http://jisho.org/search/%E8%BB%8D%23kanji" - }, - { - "query": "郡", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "965", - "strokeCount": 10, - "meaning": "county, district", - "kunyomi": [ - "こおり" - ], - "onyomi": [ - "グン" - ], - "onyomiExamples": [ - { - "example": "郡", - "reading": "グン", - "meaning": "district, county, district (of 2-20 50-home neighbourhoods or townships, in the ritsuryo period)" - }, - { - "example": "郡部", - "reading": "グンブ", - "meaning": "rural districts, counties" - }, - { - "example": "共産国家郡", - "reading": "キョウサンコッカグン", - "meaning": "Communist bloc" - } - ], - "kunyomiExamples": [ - { - "example": "郡", - "reading": "ぐん", - "meaning": "district, county, district (of 2-20 50-home neighbourhoods or townships, in the ritsuryo period)" - }, - { - "example": "郡司", - "reading": "ぐんじ", - "meaning": "district governor (Ritsuryo period)" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "ノ", - "ヨ", - "一", - "口", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37089_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090e1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90e1.gif", - "uri": "http://jisho.org/search/%E9%83%A1%23kanji" - }, - { - "query": "群", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1012", - "strokeCount": 13, - "meaning": "flock, group, crowd, herd, swarm, cluster", - "kunyomi": [ - "む.れる", - "む.れ", - "むら", - "むら.がる" - ], - "onyomi": [ - "グン" - ], - "onyomiExamples": [ - { - "example": "群", - "reading": "グン", - "meaning": "group, bunch, crowd, throng, swarm, band, group" - }, - { - "example": "群衆", - "reading": "グンシュウ", - "meaning": "group (of people), crowd, horde, throng, mob, multitude" - }, - { - "example": "症候群", - "reading": "ショウコウグン", - "meaning": "syndrome" - }, - { - "example": "層群", - "reading": "ソウグン", - "meaning": "(geol) group" - } - ], - "kunyomiExamples": [ - { - "example": "群れる", - "reading": "むれる", - "meaning": "to crowd, to flock, to swarm" - }, - { - "example": "群れ", - "reading": "むれ", - "meaning": "group, crowd, flock, herd, bevy, school, swarm, cluster (e.g. of stars), clump, pack (e.g. of dogs)" - }, - { - "example": "群れる", - "reading": "むれる", - "meaning": "to crowd, to flock, to swarm" - }, - { - "example": "群", - "reading": "むら", - "meaning": "gathering" - }, - { - "example": "群がる", - "reading": "むらがる", - "meaning": "to swarm, to gather" - }, - { - "example": "葉群", - "reading": "はむら", - "meaning": "leaves, foliage" - }, - { - "example": "岩群", - "reading": "いわむら", - "meaning": "rocky outcrop, jumble of rocks" - }, - { - "example": "群がる", - "reading": "むらがる", - "meaning": "to swarm, to gather" - } - ], - "radical": { - "symbol": "羊", - "forms": [ - "⺶" - ], - "meaning": "sheep" - }, - "parts": [ - "ノ", - "ヨ", - "一", - "口", - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32676_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fa4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fa4.gif", - "uri": "http://jisho.org/search/%E7%BE%A4%23kanji" - }, - { - "query": "径", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1435", - "strokeCount": 8, - "meaning": "diameter, path, method", - "kunyomi": [ - "みち", - "こみち", - "さしわたし", - "ただちに" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "径", - "reading": "ケイ", - "meaning": "diameter" - }, - { - "example": "経路", - "reading": "ケイロ", - "meaning": "course, route, path, channel, process, means" - }, - { - "example": "半径", - "reading": "ハンケイ", - "meaning": "radius" - }, - { - "example": "口径", - "reading": "コウケイ", - "meaning": "aperture, bore, calibre, caliber" - } - ], - "kunyomiExamples": [ - { - "example": "道", - "reading": "みち", - "meaning": "road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "又", - "土", - "彳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24452_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f84.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f84.gif", - "uri": "http://jisho.org/search/%E5%BE%84%23kanji" - }, - { - "query": "景", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "419", - "strokeCount": 12, - "meaning": "scenery, view", - "kunyomi": [], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "景", - "reading": "ケイ", - "meaning": "vista, view, scene, scenic view, counter for scenes (in a play)" - }, - { - "example": "景観", - "reading": "ケイカン", - "meaning": "scenery" - }, - { - "example": "八景", - "reading": "ハッケイ", - "meaning": "eight picturesque sights" - }, - { - "example": "殺風景", - "reading": "サップウケイ", - "meaning": "dreary, bleak, monotonous, barren, tasteless, unrefined" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "亠", - "口", - "小", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26223_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0666f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/666f.gif", - "uri": "http://jisho.org/search/%E6%99%AF%23kanji" - }, - { - "query": "芸", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "719", - "strokeCount": 7, - "meaning": "technique, art, craft, performance, acting, trick, stunt", - "kunyomi": [ - "う.える", - "のり", - "わざ" - ], - "onyomi": [ - "ゲイ", - "ウン" - ], - "onyomiExamples": [ - { - "example": "芸", - "reading": "ゲイ", - "meaning": "art, craft, accomplishment, artistic skill, technique, performance" - }, - { - "example": "芸者", - "reading": "ゲイシャ", - "meaning": "geisha, professional female entertainer, usu. at traditional banquets" - }, - { - "example": "民芸", - "reading": "ミンゲイ", - "meaning": "folk craft, folk art" - }, - { - "example": "文芸", - "reading": "ブンゲイ", - "meaning": "literature, the arts, art and literature, liberal arts" - }, - { - "example": "芸香", - "reading": "ウンコウ", - "meaning": "common rue (Ruta graveolens)" - }, - { - "example": "耕耘", - "reading": "コウウン", - "meaning": "plowing and weeding, farming, cultivation, tillage" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "二", - "厶", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33464_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082b8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82b8.gif", - "uri": "http://jisho.org/search/%E8%8A%B8%23kanji" - }, - { - "query": "欠", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "860", - "strokeCount": 4, - "meaning": "lack, gap, fail, yawning radical (no. 76)", - "kunyomi": [ - "か.ける", - "か.く" - ], - "onyomi": [ - "ケツ", - "ケン" - ], - "onyomiExamples": [ - { - "example": "欠", - "reading": "ケツ", - "meaning": "lack, deficiency, vacancy, absence, non-attendance" - }, - { - "example": "欠員", - "reading": "ケツイン", - "meaning": "vacancy, vacant position" - }, - { - "example": "補欠", - "reading": "ホケツ", - "meaning": "filling a vacancy, supplementation, substitute, deputy, alternate, spare" - }, - { - "example": "出欠", - "reading": "シュッケツ", - "meaning": "attendance or absence" - }, - { - "example": "欠伸", - "reading": "アクビ", - "meaning": "yawn, yawning, kanji \"yawning\" radical (radical 76)" - }, - { - "example": "欠缺", - "reading": "ケンケツ", - "meaning": "lacuna, gap where something is lacked" - } - ], - "kunyomiExamples": [ - { - "example": "欠ける", - "reading": "かける", - "meaning": "to be chipped, to be damaged, to be broken, to be lacking, to be missing, to be insufficient, to be short, to be deficient, to be negligent toward, to wane (e.g. moon), to go into eclipse" - }, - { - "example": "欠く", - "reading": "かく", - "meaning": "to chip, to nick, to break, to crack, to lack" - }, - { - "example": "欠くことができない", - "reading": "かくことができない", - "meaning": "indispensable, essential, necessary" - } - ], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "人", - "勹", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27424_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b20.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b20.gif", - "uri": "http://jisho.org/search/%E6%AC%A0%23kanji" - }, - { - "query": "結", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "162", - "strokeCount": 12, - "meaning": "tie, bind, contract, join, organize, do up hair, fasten", - "kunyomi": [ - "むす.ぶ", - "ゆ.う", - "ゆ.わえる" - ], - "onyomi": [ - "ケツ", - "ケチ" - ], - "onyomiExamples": [ - { - "example": "結末", - "reading": "ケツマツ", - "meaning": "end, conclusion" - }, - { - "example": "結合", - "reading": "ケツゴウ", - "meaning": "combination, union, binding, catenation, coupling, joining, bond" - }, - { - "example": "完結", - "reading": "カンケツ", - "meaning": "conclusion, completion" - }, - { - "example": "妥結", - "reading": "ダケツ", - "meaning": "settlement, an agreement" - }, - { - "example": "結縁", - "reading": "ケチエン", - "meaning": "making a connection (with Buddha)" - }, - { - "example": "結願", - "reading": "ケチガン", - "meaning": "expiration of term of a vow" - } - ], - "kunyomiExamples": [ - { - "example": "結ぶ", - "reading": "むすぶ", - "meaning": "to tie, to bind, to link, to bear (fruit), to close (e.g. deal), to confirm, to conclude, to connect (two distant places), to close tightly, to purse (e.g. lips), to unite (with), to ally, to join hands" - }, - { - "example": "結ぶ便", - "reading": "むすぶびん", - "meaning": "connecting flight, connecting service" - }, - { - "example": "結う", - "reading": "ゆう", - "meaning": "to do up (hair), to dress, to arrange, to tie, to bind, to fasten, to make (a fence)" - }, - { - "example": "結城紬", - "reading": "ゆうきつむぎ", - "meaning": "silk products produced near Yūki (using natural indigo dye), Yūki pongee" - }, - { - "example": "結わえる", - "reading": "ゆわえる", - "meaning": "to bind, to fasten, to tie up" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "口", - "士", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32080_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d50.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d50.gif", - "uri": "http://jisho.org/search/%E7%B5%90%23kanji" - }, - { - "query": "建", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "300", - "strokeCount": 9, - "meaning": "build", - "kunyomi": [ - "た.てる", - "た.て", - "-だ.て", - "た.つ" - ], - "onyomi": [ - "ケン", - "コン" - ], - "onyomiExamples": [ - { - "example": "建国", - "reading": "ケンコク", - "meaning": "founding of a nation" - }, - { - "example": "建議", - "reading": "ケンギ", - "meaning": "proposition, motion, proposal, suggestion" - }, - { - "example": "経営再建", - "reading": "ケイエイサイケン", - "meaning": "management reorganization, management reorganisation" - }, - { - "example": "財政再建", - "reading": "ザイセイサイケン", - "meaning": "finance reform, fiscal reconstruction" - }, - { - "example": "建立", - "reading": "コンリュウ", - "meaning": "(act of) building (temple, monument, etc.), erection" - }, - { - "example": "再建", - "reading": "サイコン", - "meaning": "(temple or shrine) rebuilding" - } - ], - "kunyomiExamples": [ - { - "example": "建てる", - "reading": "たてる", - "meaning": "to build, to construct" - }, - { - "example": "建て", - "reading": "たて", - "meaning": "contract, commitment" - }, - { - "example": "建前", - "reading": "たてまえ", - "meaning": "face, official stance, public position or attitude (as opposed to private thoughts), ceremony for the erection of the framework of a house" - }, - { - "example": "建つ", - "reading": "たつ", - "meaning": "to be erected, to be built" - } - ], - "radical": { - "symbol": "廴", - "meaning": "long stride" - }, - "parts": [ - "廴", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24314_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05efa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5efa.gif", - "uri": "http://jisho.org/search/%E5%BB%BA%23kanji" - }, - { - "query": "健", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "572", - "strokeCount": 11, - "meaning": "healthy, health, strength, persistence", - "kunyomi": [ - "すこ.やか" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "健康食品", - "reading": "ケンコウショクヒン", - "meaning": "health foods" - }, - { - "example": "健康", - "reading": "ケンコウ", - "meaning": "health, healthy, sound, fit, wholesome" - }, - { - "example": "豪健", - "reading": "ゴウケン", - "meaning": "strong and full of vigour" - }, - { - "example": "質実剛健", - "reading": "シツジツゴウケン", - "meaning": "unaffected and sincere, with fortitude and vigor (vigour)" - } - ], - "kunyomiExamples": [ - { - "example": "健やか", - "reading": "すこやか", - "meaning": "vigorous, healthy, sound" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "廴", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20581_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05065.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5065.gif", - "uri": "http://jisho.org/search/%E5%81%A5%23kanji" - }, - { - "query": "験", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "410", - "strokeCount": 18, - "meaning": "verification, effect, testing", - "kunyomi": [ - "あかし", - "しるし", - "ため.す", - "ためし" - ], - "onyomi": [ - "ケン", - "ゲン" - ], - "onyomiExamples": [ - { - "example": "験", - "reading": "ゲン", - "meaning": "effect, efficacy, omen" - }, - { - "example": "験者", - "reading": "ケンザ", - "meaning": "mountaineering ascetic, practitioner of mountain asceticism" - }, - { - "example": "治験", - "reading": "チケン", - "meaning": "clinical trial" - }, - { - "example": "筆記試験", - "reading": "ヒッキシケン", - "meaning": "written examination" - }, - { - "example": "験", - "reading": "ゲン", - "meaning": "effect, efficacy, omen" - }, - { - "example": "ゲン担ぎ", - "reading": "ゲンカツギ", - "meaning": "superstition, acting superstitiously (for good luck)" - }, - { - "example": "霊験", - "reading": "レイゲン", - "meaning": "miraculous efficacy, miracle, miraculous virtue" - } - ], - "kunyomiExamples": [ - { - "example": "徴", - "reading": "しるし", - "meaning": "sign, indication, omen" - }, - { - "example": "試す", - "reading": "ためす", - "meaning": "to attempt, to test, to try out" - }, - { - "example": "試し", - "reading": "ためし", - "meaning": "trial, test" - } - ], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "个", - "人", - "口", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39443_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09a13.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9a13.gif", - "uri": "http://jisho.org/search/%E9%A8%93%23kanji" - }, - { - "query": "固", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "750", - "strokeCount": 8, - "meaning": "harden, set, clot, curdle", - "kunyomi": [ - "かた.める", - "かた.まる", - "かた.まり", - "かた.い" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "固体", - "reading": "コタイ", - "meaning": "solid (body), solid matter, solid-state" - }, - { - "example": "固形", - "reading": "コケイ", - "meaning": "solid (body)" - }, - { - "example": "凝固", - "reading": "ギョウコ", - "meaning": "coagulation, freezing, solidification" - }, - { - "example": "簡明強固", - "reading": "カンメイキョウコ", - "meaning": "plain and sturdy" - } - ], - "kunyomiExamples": [ - { - "example": "固める", - "reading": "かためる", - "meaning": "to harden, to freeze, to strengthen, to solidify, to make (a fist), to tramp down (snow, dirt), to put together, to collect, to gather, to consolidate, to make secure, to stabilize, to settle down, to strengthen (belief, resolution, etc.), to establish (evidence), to fortify, to reinforce, to support, to wear for a specific purpose (armor, coat, etc.), to swear, to resolutely vow, to sincerely promise, to tie tightly, to fasten, to hold a bow fully drawn" - }, - { - "example": "固まる", - "reading": "かたまる", - "meaning": "to harden, to solidify, to become firm, to become certain, to gather (together), to assemble, to huddle together" - }, - { - "example": "塊", - "reading": "かたまり", - "meaning": "lump, mass, bundle, clump, clod, cluster, group, crowd, embodiment (of an idea, quality, feeling etc.), personification" - }, - { - "example": "塊肉", - "reading": "かたまりにく", - "meaning": "chunk of meat (e.g. for grilling), joint of meat" - }, - { - "example": "硬い", - "reading": "かたい", - "meaning": "hard, solid, tough, stiff, tight, wooden, unpolished (e.g. writing), strong, firm (not viscous or easily moved), safe, steady, honest, steadfast, obstinate, stubborn, bookish, formal, stuffy" - }, - { - "example": "かたいことは言いっこなし", - "reading": "かたいことはいいっこなし", - "meaning": "let's put formalities aside, let's not speak so stiffly" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "十", - "口", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22266_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56fa.gif", - "uri": "http://jisho.org/search/%E5%9B%BA%23kanji" - }, - { - "query": "功", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "857", - "strokeCount": 5, - "meaning": "achievement, merits, success, honor, credit", - "kunyomi": [ - "いさお" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "功", - "reading": "コウ", - "meaning": "merit, success, meritorious deed, achievement, accumulated experience" - }, - { - "example": "功績", - "reading": "コウセキ", - "meaning": "achievement, meritorious deed, distinguished service, contribution" - }, - { - "example": "即効", - "reading": "ソッコウ", - "meaning": "immediate effect, instant effect" - }, - { - "example": "奏功", - "reading": "ソウコウ", - "meaning": "success, achievement, fruition" - }, - { - "example": "工夫", - "reading": "クフウ", - "meaning": "scheme, device, scheming, devising, figuring out, coming up with, solving ingeniously, dedication to spiritual improvement (esp. through Zen meditation)" - }, - { - "example": "効能", - "reading": "コウノウ", - "meaning": "effect, efficacy, virtue, benefit" - } - ], - "kunyomiExamples": [ - { - "example": "勲", - "reading": "いさお", - "meaning": "distinguished service, meritorious service" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "工" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0529f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/529f.gif", - "uri": "http://jisho.org/search/%E5%8A%9F%23kanji" - }, - { - "query": "好", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "423", - "strokeCount": 6, - "meaning": "fond, pleasing, like something", - "kunyomi": [ - "この.む", - "す.く", - "よ.い", - "い.い" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "好", - "reading": "コウ", - "meaning": "good" - }, - { - "example": "好意", - "reading": "コウイ", - "meaning": "kindness, favor, favour, friendliness, goodwill, affection, liking (for someone), love" - }, - { - "example": "友好", - "reading": "ユウコウ", - "meaning": "friendship" - }, - { - "example": "同好", - "reading": "ドウコウ", - "meaning": "similar tastes" - } - ], - "kunyomiExamples": [ - { - "example": "好む", - "reading": "このむ", - "meaning": "to like, to prefer" - }, - { - "example": "好むと好まざるとにかかわらず", - "reading": "このむとこのまざるとにかかわらず", - "meaning": "whether one likes it or not" - }, - { - "example": "好く", - "reading": "すく", - "meaning": "to like, to love, to be fond of" - }, - { - "example": "良い", - "reading": "よい", - "meaning": "good, excellent, fine, nice, pleasant, agreeable, sufficient, enough, ready, prepared, profitable (deal, business offer, etc.), beneficial, OK, all right, fine, no problem" - }, - { - "example": "いい男", - "reading": "いいおとこ", - "meaning": "handsome man, looker, good guy, great guy, influential person (esp. in the yakuza), sumo wrestler" - }, - { - "example": "いい加減", - "reading": "いいかげん", - "meaning": "irresponsible, perfunctory, careless, lukewarm, half-baked, halfhearted, vague, reasonable, moderate, considerably, quite, rather, pretty" - }, - { - "example": "いい男", - "reading": "いいおとこ", - "meaning": "handsome man, looker, good guy, great guy, influential person (esp. in the yakuza), sumo wrestler" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "子" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22909_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0597d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/597d.gif", - "uri": "http://jisho.org/search/%E5%A5%BD%23kanji" - }, - { - "query": "香", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "859", - "strokeCount": 9, - "meaning": "incense, smell, perfume", - "kunyomi": [ - "か", - "かお.り", - "かお.る" - ], - "onyomi": [ - "コウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "香", - "reading": "コウ", - "meaning": "incense" - }, - { - "example": "香水", - "reading": "コウスイ", - "meaning": "perfume" - }, - { - "example": "線香", - "reading": "センコウ", - "meaning": "incense stick" - }, - { - "example": "焼香", - "reading": "ショウコウ", - "meaning": "burning (offer) incense" - }, - { - "example": "香", - "reading": "キョウ", - "meaning": "lance" - }, - { - "example": "香車", - "reading": "キョウシャ", - "meaning": "lance" - }, - { - "example": "異香", - "reading": "イキョウ", - "meaning": "great fragrance" - }, - { - "example": "茴香", - "reading": "ウイキョウ", - "meaning": "fennel (Foeniculum vulgare)" - } - ], - "kunyomiExamples": [ - { - "example": "香", - "reading": "か", - "meaning": "smell (esp. a good smell), fragrance, scent, aroma, perfume" - }, - { - "example": "香り", - "reading": "かおり", - "meaning": "aroma, fragrance, scent, smell" - }, - { - "example": "腸香", - "reading": "わたか", - "meaning": "wataka (Ischikauia steenackeri) (freshwater fish of the carp family)" - }, - { - "example": "木の香", - "reading": "きのか", - "meaning": "smell of new wood" - }, - { - "example": "香り", - "reading": "かおり", - "meaning": "aroma, fragrance, scent, smell" - }, - { - "example": "香りがする", - "reading": "かおりがする", - "meaning": "to smell, to smell of, to have a smell" - }, - { - "example": "香る", - "reading": "かおる", - "meaning": "to smell sweet, to be fragrant" - } - ], - "radical": { - "symbol": "香", - "meaning": "fragrance" - }, - "parts": [ - "日", - "禾", - "香" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39321_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09999.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9999.gif", - "uri": "http://jisho.org/search/%E9%A6%99%23kanji" - }, - { - "query": "候", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "510", - "strokeCount": 10, - "meaning": "climate, season, weather, wait for, expect", - "kunyomi": [ - "そうろう" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "候", - "reading": "コウ", - "meaning": "season, weather" - }, - { - "example": "候補", - "reading": "コウホ", - "meaning": "candidate, contender, prospect, pick, choice, list, candidacy, candidature, nomination" - }, - { - "example": "時候", - "reading": "ジコウ", - "meaning": "season, time of the year" - }, - { - "example": "症候", - "reading": "ショウコウ", - "meaning": "symptoms" - } - ], - "kunyomiExamples": [ - { - "example": "候ふ", - "reading": "そうろう", - "meaning": "to serve (by a superior's side), to be, to do" - }, - { - "example": "候間", - "reading": "そうろうあいだ", - "meaning": "as ..." - }, - { - "example": "書き候", - "reading": "かきそうろう", - "meaning": "(have the honor, honour) to write" - }, - { - "example": "御入り候ふ", - "reading": "おんいりそうろう", - "meaning": "to go, to come, to be" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ユ", - "乞", - "化", - "矢", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20505_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05019.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5019.gif", - "uri": "http://jisho.org/search/%E5%80%99%23kanji" - }, - { - "query": "康", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "760", - "strokeCount": 11, - "meaning": "ease, peace", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "康安", - "reading": "コウアン", - "meaning": "Kōan era (of the Northern Court) (1361.3.29-1362.9.23)" - }, - { - "example": "康永", - "reading": "コウエイ", - "meaning": "Kōei era (of the Northern Court) (1342.4.27-1345.10.21)" - }, - { - "example": "小康", - "reading": "ショウコウ", - "meaning": "lull, breathing spell, respite, remission (of an illness), becoming stable" - }, - { - "example": "安康", - "reading": "アンコウ", - "meaning": "calm and peaceful period of time" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "ヨ", - "广", - "水", - "隶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24247_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05eb7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5eb7.gif", - "uri": "http://jisho.org/search/%E5%BA%B7%23kanji" - }, - { - "query": "佐", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "474", - "strokeCount": 7, - "meaning": "assistant, help", - "kunyomi": [], - "onyomi": [ - "サ" - ], - "onyomiExamples": [ - { - "example": "佐保姫", - "reading": "サホヒメ", - "meaning": "Saohime, goddess of Spring" - }, - { - "example": "佐官", - "reading": "サカン", - "meaning": "field officer" - }, - { - "example": "中佐", - "reading": "チュウサ", - "meaning": "lieutenant colonel, commander (navy)" - }, - { - "example": "二佐", - "reading": "ニサ", - "meaning": "lieutenant colonel (JGSDF)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "化", - "工" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20304_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f50.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f50.gif", - "uri": "http://jisho.org/search/%E4%BD%90%23kanji" - }, - { - "query": "差", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "449", - "strokeCount": 10, - "meaning": "distinction, difference, variation, discrepancy, margin, balance", - "kunyomi": [ - "さ.す", - "さ.し" - ], - "onyomi": [ - "サ" - ], - "onyomiExamples": [ - { - "example": "差", - "reading": "サ", - "meaning": "difference, variation, difference" - }, - { - "example": "差し", - "reading": "サシ", - "meaning": "between (e.g. two people), face to face, hindrance, impediment, arrhythmic section of recitative in noh music, playing with only 2 players, prefix used for stress or emphasis, counter for traditional dance songs" - }, - { - "example": "落差", - "reading": "ラクサ", - "meaning": "difference in elevation (between two points in a body of water), head, drop (e.g. of a waterfall), fall distance, difference, gap" - }, - { - "example": "賃金格差", - "reading": "チンギンカクサ", - "meaning": "wage differential" - } - ], - "kunyomiExamples": [ - { - "example": "差す", - "reading": "さす", - "meaning": "to shine, to be visible, to be tinged with, to rise (of water levels), to flow in, to be felt (i.e. as an emotion), to come over one, to hold up (an umbrella, etc.), to put up, to raise, to extend one's arm straight ahead (in dance), to insert, to put in, to wear (a sword) in one's belt, to wear at one's side, to carry under one's arm, to insert one's arm under an opponent's arm, to pole (a boat), to pour, to add (liquid), to serve (drinks), to put on (lipstick, etc.), to apply, to colour, to dye, to light (a fire), to burn, to shut, to close, to lock, to fasten, to stop in the midst of, to leave undone" - }, - { - "example": "差し", - "reading": "さし", - "meaning": "between (e.g. two people), face to face, hindrance, impediment, arrhythmic section of recitative in noh music, playing with only 2 players, prefix used for stress or emphasis, counter for traditional dance songs" - }, - { - "example": "尺", - "reading": "さし", - "meaning": "ruler, measure" - }, - { - "example": "旗指", - "reading": "はたさし", - "meaning": "samurai who carries his general's banner while riding into battle, small war flag attached to the back of one's armour during battle" - }, - { - "example": "一差し", - "reading": "ひとさし", - "meaning": "one dance, one game (e.g. of shogi)" - } - ], - "radical": { - "symbol": "工", - "meaning": "work" - }, - "parts": [ - "ノ", - "工", - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24046_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05dee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5dee.gif", - "uri": "http://jisho.org/search/%E5%B7%AE%23kanji" - }, - { - "query": "菜", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1327", - "strokeCount": 11, - "meaning": "vegetable, side dish, greens", - "kunyomi": [ - "な" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "菜", - "reading": "サイ", - "meaning": "side dish" - }, - { - "example": "菜園", - "reading": "サイエン", - "meaning": "vegetable garden" - }, - { - "example": "山菜", - "reading": "サンサイ", - "meaning": "edible wild plants" - }, - { - "example": "前菜", - "reading": "ゼンサイ", - "meaning": "hors d'oeuvre, appetizer, appetiser, starter" - } - ], - "kunyomiExamples": [ - { - "example": "菜", - "reading": "な", - "meaning": "greens, vegetables, rape (Brassica napus), rapeseed" - }, - { - "example": "菜種", - "reading": "なたね", - "meaning": "rapeseed, coleseed" - }, - { - "example": "若菜", - "reading": "わかな", - "meaning": "young greens, young herbs" - }, - { - "example": "うまい菜", - "reading": "うまいな", - "meaning": "Swiss chard" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "木", - "爪", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33756_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/083dc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/83dc.gif", - "uri": "http://jisho.org/search/%E8%8F%9C%23kanji" - }, - { - "query": "最", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "82", - "strokeCount": 12, - "meaning": "utmost, most, extreme", - "kunyomi": [ - "もっと.も", - "つま" - ], - "onyomi": [ - "サイ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "最", - "reading": "サイ", - "meaning": "the most, the extreme, prime, conspicuous" - }, - { - "example": "最悪", - "reading": "サイアク", - "meaning": "worst, horrible, horrid, awful, terrible, in the worst case, if worst comes to worst" - } - ], - "kunyomiExamples": [ - { - "example": "最も", - "reading": "もっとも", - "meaning": "most, extremely" - }, - { - "example": "最も重要", - "reading": "もっともじゅうよう", - "meaning": "most important, central, matters most, overriding, top" - } - ], - "radical": { - "symbol": "曰", - "meaning": "say" - }, - "parts": [ - "一", - "又", - "日", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26368_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06700.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6700.gif", - "uri": "http://jisho.org/search/%E6%9C%80%23kanji" - }, - { - "query": "埼", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "971", - "strokeCount": 11, - "meaning": "cape, spit, promontory", - "kunyomi": [ - "さき", - "さい", - "みさき" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "崎", - "reading": "さき", - "meaning": "small peninsula, cape, promontory, headland" - }, - { - "example": "埼玉", - "reading": "さいたま", - "meaning": "Saitama (city, prefecture)" - }, - { - "example": "埼銀", - "reading": "さいぎん", - "meaning": "Saitama Bank" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "一", - "口", - "土", - "大", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22524_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057fc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57fc.gif", - "uri": "http://jisho.org/search/%E5%9F%BC%23kanji" - }, - { - "query": "材", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "565", - "strokeCount": 7, - "meaning": "lumber, log, timber, wood, materials, ingredients, talent", - "kunyomi": [], - "onyomi": [ - "ザイ" - ], - "onyomiExamples": [ - { - "example": "材", - "reading": "ザイ", - "meaning": "wood, lumber, timber, (raw) material, stuff, ingredients, talent, ability, capable person" - }, - { - "example": "材質", - "reading": "ザイシツ", - "meaning": "material, material properties, quality of material" - }, - { - "example": "器材", - "reading": "キザイ", - "meaning": "tools and materials, equipment and materials" - }, - { - "example": "廃材", - "reading": "ハイザイ", - "meaning": "scrap wood, waste wood, waste, waste material, scrap material" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "一", - "亅", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26448_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06750.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6750.gif", - "uri": "http://jisho.org/search/%E6%9D%90%23kanji" - }, - { - "query": "崎", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "533", - "strokeCount": 11, - "meaning": "promontory, cape, spit", - "kunyomi": [ - "さき", - "さい", - "みさき" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "崎崖", - "reading": "キガイ", - "meaning": "steepness of a mountain" - }, - { - "example": "崎嶇", - "reading": "キク", - "meaning": "steep (mountain), precipitous, hard (life), difficult, troubled" - }, - { - "example": "川崎", - "reading": "カワサキ", - "meaning": "Kawasaki (city)" - }, - { - "example": "長崎", - "reading": "ナガサキ", - "meaning": "Nagasaki (city, prefecture)" - } - ], - "kunyomiExamples": [ - { - "example": "崎", - "reading": "さき", - "meaning": "small peninsula, cape, promontory, headland" - }, - { - "example": "川崎", - "reading": "かわさき", - "meaning": "Kawasaki (city)" - }, - { - "example": "長崎", - "reading": "ながさき", - "meaning": "Nagasaki (city, prefecture)" - }, - { - "example": "岬", - "reading": "みさき", - "meaning": "cape (on coast)" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "一", - "口", - "大", - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23822_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05d0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5d0e.gif", - "uri": "http://jisho.org/search/%E5%B4%8E%23kanji" - }, - { - "query": "昨", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "226", - "strokeCount": 9, - "meaning": "yesterday, previous", - "kunyomi": [], - "onyomi": [ - "サク" - ], - "onyomiExamples": [ - { - "example": "昨", - "reading": "サク", - "meaning": "last (year), yesterday" - }, - { - "example": "昨今", - "reading": "サッコン", - "meaning": "nowadays, recently" - }, - { - "example": "一昨", - "reading": "イッサク", - "meaning": "one previous" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ノ", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26152_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06628.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6628.gif", - "uri": "http://jisho.org/search/%E6%98%A8%23kanji" - }, - { - "query": "札", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "921", - "strokeCount": 5, - "meaning": "tag, paper money, counter for bonds, placard, bid", - "kunyomi": [ - "ふだ" - ], - "onyomi": [ - "サツ" - ], - "onyomiExamples": [ - { - "example": "札", - "reading": "サツ", - "meaning": "banknote, bill, note, paper money" - }, - { - "example": "札束", - "reading": "サツタバ", - "meaning": "roll of banknotes" - }, - { - "example": "落札", - "reading": "ラクサツ", - "meaning": "successful bid, winning a tender" - }, - { - "example": "応札", - "reading": "オウサツ", - "meaning": "making a bid, tendering a bid" - } - ], - "kunyomiExamples": [ - { - "example": "札", - "reading": "ふだ", - "meaning": "ticket, token, check, receipt, label, tag, sign, card, plate, playing card, charm, talisman, slip of paper posted on shrine pillars by pilgrims" - }, - { - "example": "札所", - "reading": "ふだしょ", - "meaning": "temple which issues amulets" - }, - { - "example": "立て札", - "reading": "たてふだ", - "meaning": "bulletin board, notice board, billboard, roadside sign, sign on a post, usu. wooden, esp. containing information about a sight, warning, congratulations, etc." - }, - { - "example": "合札", - "reading": "あいふだ", - "meaning": "check (e.g. baggage claim), tag, token, tally, score" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "乙", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26413_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0672d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/672d.gif", - "uri": "http://jisho.org/search/%E6%9C%AD%23kanji" - }, - { - "query": "刷", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1352", - "strokeCount": 8, - "meaning": "printing, print, brush", - "kunyomi": [ - "す.る", - "-ず.り", - "-ずり", - "は.く" - ], - "onyomi": [ - "サツ" - ], - "onyomiExamples": [ - { - "example": "刷", - "reading": "サツ", - "meaning": "printing, impression, issue" - }, - { - "example": "刷数", - "reading": "サツスウ", - "meaning": "number (of books) printed" - }, - { - "example": "凸版印刷", - "reading": "トッパンインサツ", - "meaning": "letterpress, relief printing" - }, - { - "example": "増刷", - "reading": "ゾウサツ", - "meaning": "additional printing (esp. of books, etc.), additional run" - } - ], - "kunyomiExamples": [ - { - "example": "刷る", - "reading": "する", - "meaning": "to print, to color or pattern fabric using a wooden mold" - }, - { - "example": "刷く", - "reading": "はく", - "meaning": "to daub, to brush, to touch up" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "尸", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21047_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05237.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5237.gif", - "uri": "http://jisho.org/search/%E5%88%B7%23kanji" - }, - { - "query": "察", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "477", - "strokeCount": 14, - "meaning": "guess, presume, surmise, judge, understand", - "kunyomi": [], - "onyomi": [ - "サツ" - ], - "onyomiExamples": [ - { - "example": "察", - "reading": "サツ", - "meaning": "cops, police" - }, - { - "example": "監察", - "reading": "カンサツ", - "meaning": "inspection, inspector" - }, - { - "example": "偵察", - "reading": "テイサツ", - "meaning": "scouting, reconnaissance" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ノ", - "二", - "宀", - "小", - "癶", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23519_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bdf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bdf.gif", - "uri": "http://jisho.org/search/%E5%AF%9F%23kanji" - }, - { - "query": "参", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "201", - "strokeCount": 8, - "meaning": "nonplussed, three (in documents), going, coming, visiting, visit, be defeated, die, be madly in love, participate, take part in", - "kunyomi": [ - "まい.る", - "まい-", - "まじわる", - "みつ" - ], - "onyomi": [ - "サン", - "シン" - ], - "onyomiExamples": [ - { - "example": "三", - "reading": "サン", - "meaning": "three, tri-" - }, - { - "example": "参院", - "reading": "サンイン", - "meaning": "House of Councillors (upper house of the National Diet of Japan)" - }, - { - "example": "日参", - "reading": "ニッサン", - "meaning": "daily visit (of worship), frequent visit" - }, - { - "example": "推参", - "reading": "スイサン", - "meaning": "paying an unannounced visit, rudeness" - }, - { - "example": "参", - "reading": "シン", - "meaning": "Chinese \"Three Stars\" constellation (one of the 28 mansions)" - }, - { - "example": "参差", - "reading": "シンシ", - "meaning": "of uneven heights or lengths" - } - ], - "kunyomiExamples": [ - { - "example": "参る", - "reading": "まいる", - "meaning": "to go, to come, to call, to be defeated, to collapse, to die, to be annoyed, to be nonplussed, to be madly in love, to visit (shrine, grave)" - } - ], - "radical": { - "symbol": "厶", - "meaning": "private" - }, - "parts": [ - "一", - "厶", - "彡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21442_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053c2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53c2.gif", - "uri": "http://jisho.org/search/%E5%8F%82%23kanji" - }, - { - "query": "産", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "161", - "strokeCount": 11, - "meaning": "products, bear, give birth, yield, childbirth, native, property", - "kunyomi": [ - "う.む", - "う.まれる", - "うぶ-", - "む.す" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "産", - "reading": "サン", - "meaning": "(giving) birth, childbirth, delivery, confinement, native of, product of, assets, property, fortune" - }, - { - "example": "産科", - "reading": "サンカ", - "meaning": "obstetrics" - }, - { - "example": "増産", - "reading": "ゾウサン", - "meaning": "production increase" - }, - { - "example": "水産", - "reading": "スイサン", - "meaning": "aquatic products, fisheries" - } - ], - "kunyomiExamples": [ - { - "example": "生む", - "reading": "うむ", - "meaning": "to give birth, to bear (child), to lay (eggs), to produce, to yield, to give rise to, to deliver" - }, - { - "example": "産む機械", - "reading": "うむきかい", - "meaning": "baby-making machine (famously used by Health, Labour and Welfare Minister Yanagisawa Hakuo to refer to women)" - }, - { - "example": "生まれる", - "reading": "うまれる", - "meaning": "to be born" - }, - { - "example": "生す", - "reading": "むす", - "meaning": "to grow (of moss, etc.)" - } - ], - "radical": { - "symbol": "生", - "meaning": "life" - }, - "parts": [ - "ノ", - "亠", - "厂", - "并", - "生", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29987_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07523.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7523.gif", - "uri": "http://jisho.org/search/%E7%94%A3%23kanji" - }, - { - "query": "散", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "758", - "strokeCount": 12, - "meaning": "scatter, disperse, spend, squander", - "kunyomi": [ - "ち.る", - "ち.らす", - "-ち.らす", - "ち.らかす", - "ち.らかる", - "ち.らばる", - "ばら", - "ばら.ける" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "散骨", - "reading": "サンコツ", - "meaning": "scattering of ashes (cremated remains)" - }, - { - "example": "散会", - "reading": "サンカイ", - "meaning": "adjournment" - }, - { - "example": "離散", - "reading": "リサン", - "meaning": "dispersal, scattering, discrete" - }, - { - "example": "集散", - "reading": "シュウサン", - "meaning": "collection (gathering) and distribution" - } - ], - "kunyomiExamples": [ - { - "example": "散る", - "reading": "ちる", - "meaning": "to fall (e.g. blossoms, leaves), to scatter, to be dispersed, to disappear, to dissolve, to break up, to spread, to run, to blur, to die a noble death" - }, - { - "example": "散らす", - "reading": "ちらす", - "meaning": "to scatter, to cause a shower of, to disperse, to distribute, to spread, to resolve (a symptom, condition, etc.), to relieve, to get rid of, to cure, to distract, to divert, to do ... wildly (i.e. disorderly or frequently), to do ... all over the place" - }, - { - "example": "散らかす", - "reading": "ちらかす", - "meaning": "to scatter around, to leave untidy" - }, - { - "example": "散らかる", - "reading": "ちらかる", - "meaning": "to be in disorder, to lie scattered around" - }, - { - "example": "散らばる", - "reading": "ちらばる", - "meaning": "to be scattered about" - }, - { - "example": "散", - "reading": "ばら", - "meaning": "loose articles (not packaged with other things), bulk items, individual items, coins, small change" - }, - { - "example": "ばら撒く", - "reading": "ばらまく", - "meaning": "to scatter, to disseminate (e.g. a rumor), to spread (e.g. germs), to broadcast, to distribute widely (e.g. leaflets), to hand out freely, to spend recklessly" - }, - { - "example": "散ける", - "reading": "ばらける", - "meaning": "to come apart, to unravel, to come loose, to become disarrayed (e.g. hair)" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "二", - "廾", - "攵", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25955_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06563.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6563.gif", - "uri": "http://jisho.org/search/%E6%95%A3%23kanji" - }, - { - "query": "残", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "380", - "strokeCount": 10, - "meaning": "remainder, leftover, balance", - "kunyomi": [ - "のこ.る", - "のこ.す", - "そこな.う", - "のこ.り" - ], - "onyomi": [ - "ザン", - "サン" - ], - "onyomiExamples": [ - { - "example": "残", - "reading": "ザン", - "meaning": "remaining, left-over, excess" - }, - { - "example": "残虐", - "reading": "ザンギャク", - "meaning": "cruel, brutal, savage, barbarous" - }, - { - "example": "敗残", - "reading": "ハイザン", - "meaning": "survival after defeat, decline (of a person, business, etc.), ruin" - }, - { - "example": "遺残", - "reading": "イザン", - "meaning": "persistence, vestigial remnant" - } - ], - "kunyomiExamples": [ - { - "example": "残る", - "reading": "のこる", - "meaning": "to remain, to be left" - }, - { - "example": "残す", - "reading": "のこす", - "meaning": "to leave (behind), to leave (undone), to not finish, to save, to set aside, to reserve, to leave (to someone, esp. after one's death), to bequeath, to stay (in the ring), to hold on" - }, - { - "example": "残り", - "reading": "のこり", - "meaning": "remnant, residue, remaining, left-over" - }, - { - "example": "残り惜しい", - "reading": "のこりおしい", - "meaning": "regrettable, reluctant" - } - ], - "radical": { - "symbol": "歹", - "forms": [ - "歺" - ], - "meaning": "death, decay" - }, - "parts": [ - "二", - "戈", - "歹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27531_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b8b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b8b.gif", - "uri": "http://jisho.org/search/%E6%AE%8B%23kanji" - }, - { - "query": "氏", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "84", - "strokeCount": 4, - "meaning": "family name, surname, clan", - "kunyomi": [ - "うじ", - "-うじ" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "氏", - "reading": "シ", - "meaning": "Mr, Mrs, Ms, Miss, clan, he, him, counter for people" - }, - { - "example": "氏族", - "reading": "シゾク", - "meaning": "clan, family" - }, - { - "example": "両氏", - "reading": "リョウシ", - "meaning": "both persons" - }, - { - "example": "同氏", - "reading": "ドウシ", - "meaning": "the said person, he, she, same surname" - } - ], - "kunyomiExamples": [ - { - "example": "氏", - "reading": "うじ", - "meaning": "family name, lineage, birth, clan" - }, - { - "example": "氏名", - "reading": "しめい", - "meaning": "(full) name, identity" - }, - { - "example": "杜氏", - "reading": "とうじ", - "meaning": "chief brewer at a sake brewery" - }, - { - "example": "漢氏", - "reading": "あやうじ", - "meaning": "Aya clan" - } - ], - "radical": { - "symbol": "氏", - "meaning": "clan" - }, - "parts": [ - "氏" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27663_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c0f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c0f.gif", - "uri": "http://jisho.org/search/%E6%B0%8F%23kanji" - }, - { - "query": "司", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "759", - "strokeCount": 5, - "meaning": "director, official, govt office, rule, administer", - "kunyomi": [ - "つかさど.る" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "司", - "reading": "シ", - "meaning": "office (government department beneath a bureau under the ritsuryo system)" - }, - { - "example": "司会", - "reading": "シカイ", - "meaning": "leading a meeting, presiding over a meeting, officiating at a ceremony, chairmanship, chairman, presenter, host, moderator, master of ceremonies" - }, - { - "example": "公司", - "reading": "コウシ", - "meaning": "company, firm (in China)" - }, - { - "example": "にぎり寿司", - "reading": "ニギリズシ", - "meaning": "nigirizushi, hand-formed sushi with a topping of seafood, etc." - } - ], - "kunyomiExamples": [ - { - "example": "司る", - "reading": "つかさどる", - "meaning": "to rule, to govern, to administer" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "亅", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21496_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53f8.gif", - "uri": "http://jisho.org/search/%E5%8F%B8%23kanji" - }, - { - "query": "試", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "392", - "strokeCount": 13, - "meaning": "test, try, attempt, experiment, ordeal", - "kunyomi": [ - "こころ.みる", - "ため.す" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "試", - "reading": "シ", - "meaning": "testing, experiment, test, examination, exam, trial" - }, - { - "example": "試合", - "reading": "シアイ", - "meaning": "match, game, bout, contest" - }, - { - "example": "公試", - "reading": "コウシ", - "meaning": "national examinations" - }, - { - "example": "考試", - "reading": "コウシ", - "meaning": "test, exam" - } - ], - "kunyomiExamples": [ - { - "example": "試みる", - "reading": "こころみる", - "meaning": "to try, to attempt, to have a go (at something)" - }, - { - "example": "試す", - "reading": "ためす", - "meaning": "to attempt, to test, to try out" - }, - { - "example": "試筋", - "reading": "ためすじ", - "meaning": "patron, effective means" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "工", - "弋", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35430_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a66.gif", - "uri": "http://jisho.org/search/%E8%A9%A6%23kanji" - }, - { - "query": "児", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "679", - "strokeCount": 7, - "meaning": "newborn babe, child, young of animals", - "kunyomi": [ - "こ", - "-こ", - "-っこ" - ], - "onyomi": [ - "ジ", - "ニ", - "ゲイ" - ], - "onyomiExamples": [ - { - "example": "児", - "reading": "ジ", - "meaning": "child, boy, I, me" - }, - { - "example": "児童", - "reading": "ジドウ", - "meaning": "children, juvenile" - }, - { - "example": "新生児", - "reading": "シンセイジ", - "meaning": "newborn baby" - }, - { - "example": "遺児", - "reading": "イジ", - "meaning": "orphan, child left by the deceased, abandoned child" - } - ], - "kunyomiExamples": [ - { - "example": "子", - "reading": "こ", - "meaning": "child, young (animal), young woman, young geisha, offshoot, interest, new shares, player who is not a dealer (in cards, mahjong, etc.), bird egg, -er (often of young women)" - }, - { - "example": "克鯨", - "reading": "こくくじら", - "meaning": "gray whale (Eschrichtius robustus)" - }, - { - "example": "江戸っ子", - "reading": "えどっこ", - "meaning": "true Tokyoite, Edoite, person born and raised in Edo" - }, - { - "example": "駄々っ子", - "reading": "だだっこ", - "meaning": "unmanageable child, spoiled child (spoilt), spoiled brat" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "儿", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20816_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05150.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5150.gif", - "uri": "http://jisho.org/search/%E5%85%90%23kanji" - }, - { - "query": "治", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "109", - "strokeCount": 8, - "meaning": "reign, be at peace, calm down, subdue, quell, govt, cure, heal, rule, conserve", - "kunyomi": [ - "おさ.める", - "おさ.まる", - "なお.る", - "なお.す" - ], - "onyomi": [ - "ジ", - "チ" - ], - "onyomiExamples": [ - { - "example": "治療", - "reading": "チリョウ", - "meaning": "(medical) treatment, care, therapy, cure, remedy" - }, - { - "example": "治安", - "reading": "ジアン", - "meaning": "Jian era (1021.2.2-1024.7.13)" - }, - { - "example": "完治", - "reading": "カンチ", - "meaning": "complete recovery" - }, - { - "example": "政党政治", - "reading": "セイトウセイジ", - "meaning": "party politics" - }, - { - "example": "治", - "reading": "チ", - "meaning": "politics, government, administration, rule, peace, medical treatment, cure" - }, - { - "example": "治安", - "reading": "チアン", - "meaning": "public order" - }, - { - "example": "完治", - "reading": "カンチ", - "meaning": "complete recovery" - }, - { - "example": "地方自治", - "reading": "チホウジチ", - "meaning": "local (governmental) autonomy" - } - ], - "kunyomiExamples": [ - { - "example": "治める", - "reading": "おさめる", - "meaning": "to govern, to manage, to subdue" - }, - { - "example": "治まる", - "reading": "おさまる", - "meaning": "to die down (storm, anger, conflict, etc.), to calm down, to cool off, to abate, to be settled, to be brought under control, to be at peace, to be governed well, to subside (of pain, symptoms, etc.), to be alleviated, to get better, to ease off" - }, - { - "example": "治る", - "reading": "なおる", - "meaning": "to get better, to get well, to recover (from an illness), to be cured, to be restored, to heal" - }, - { - "example": "治す", - "reading": "なおす", - "meaning": "to cure, to heal, to fix, to correct, to repair, to do over again, to replace, to put back as it was, to convert (into a different state), to transform" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "厶", - "口", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27835_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cbb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cbb.gif", - "uri": "http://jisho.org/search/%E6%B2%BB%23kanji" - }, - { - "query": "滋", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1563", - "strokeCount": 12, - "meaning": "nourishing, more & more, be luxuriant, planting, turbidity", - "kunyomi": [], - "onyomi": [ - "ジ", - "シ" - ], - "onyomiExamples": [ - { - "example": "滋養", - "reading": "ジヨウ", - "meaning": "nourishment" - }, - { - "example": "慈雨", - "reading": "ジウ", - "meaning": "welcome rain, beneficial rain, blessed rain, rain that comes after a drought" - }, - { - "example": "京滋", - "reading": "ケイジ", - "meaning": "Kyoto-Shiga, Kyoto and Shiga" - }, - { - "example": "茂る", - "reading": "シゲル", - "meaning": "to grow thickly, to be in full leaf, to be rampant, to luxuriate, to be luxurious" - }, - { - "example": "滋賀", - "reading": "シガ", - "meaning": "Shiga (prefecture)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "并", - "幺", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28363_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ecb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ecb.gif", - "uri": "http://jisho.org/search/%E6%BB%8B%23kanji" - }, - { - "query": "辞", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "633", - "strokeCount": 13, - "meaning": "resign, word, term, expression", - "kunyomi": [ - "や.める", - "いな.む" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "辞", - "reading": "ジ", - "meaning": "address (e.g. opening or closing remarks), speech, words, ci (Chinese literary form), ancillary word" - }, - { - "example": "辞意", - "reading": "ジイ", - "meaning": "intention to resign" - }, - { - "example": "弔辞", - "reading": "チョウジ", - "meaning": "message of condolence, memorial address" - }, - { - "example": "修辞", - "reading": "シュウジ", - "meaning": "figure of speech, rhetorical flourish" - } - ], - "kunyomiExamples": [ - { - "example": "辞める", - "reading": "やめる", - "meaning": "to resign, to retire, to quit, to leave (one's job, etc.)" - }, - { - "example": "否む", - "reading": "いなむ", - "meaning": "to refuse, to decline, to deny" - } - ], - "radical": { - "symbol": "辛", - "meaning": "bitter" - }, - "parts": [ - "十", - "口", - "立", - "舌", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36766_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f9e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f9e.gif", - "uri": "http://jisho.org/search/%E8%BE%9E%23kanji" - }, - { - "query": "鹿", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "957", - "strokeCount": 11, - "meaning": "deer", - "kunyomi": [ - "しか", - "か" - ], - "onyomi": [ - "ロク" - ], - "onyomiExamples": [ - { - "example": "鹿", - "reading": "シカ", - "meaning": "deer (esp. the sika deer, Cervus nippon), cervid" - }, - { - "example": "鹿砦", - "reading": "ロクサイ", - "meaning": "abatis" - }, - { - "example": "神鹿", - "reading": "シンロク", - "meaning": "deer raised upon the grounds of a shrine (who serve as messengers of the gods)" - }, - { - "example": "馴鹿", - "reading": "トナカイ", - "meaning": "reindeer (Rangifer tarandus)" - } - ], - "kunyomiExamples": [ - { - "example": "鹿", - "reading": "しか", - "meaning": "deer (esp. the sika deer, Cervus nippon), cervid" - }, - { - "example": "鹿猪", - "reading": "しかいのしし", - "meaning": "babirusa (Babyrousa babyrussa)" - }, - { - "example": "牡鹿", - "reading": "おじか", - "meaning": "buck (male deer)" - }, - { - "example": "赤鹿", - "reading": "あかしか", - "meaning": "red deer (Cervus elaphus)" - }, - { - "example": "鹿", - "reading": "しか", - "meaning": "deer (esp. the sika deer, Cervus nippon), cervid" - }, - { - "example": "鹿", - "reading": "かのしし", - "meaning": "deer meat, deer" - }, - { - "example": "牡鹿", - "reading": "おじか", - "meaning": "buck (male deer)" - }, - { - "example": "赤鹿", - "reading": "あかしか", - "meaning": "red deer (Cervus elaphus)" - } - ], - "radical": { - "symbol": "鹿", - "meaning": "deer" - }, - "parts": [ - "广", - "比", - "鹿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40575_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09e7f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9e7f.gif", - "uri": "http://jisho.org/search/%E9%B9%BF%23kanji" - }, - { - "query": "失", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "447", - "strokeCount": 5, - "meaning": "lose, error, fault, disadvantage, loss", - "kunyomi": [ - "うしな.う", - "う.せる" - ], - "onyomi": [ - "シツ" - ], - "onyomiExamples": [ - { - "example": "失", - "reading": "シツ", - "meaning": "loss (of something), disadvantage, mistake, error, failure, flaw, defect, error" - }, - { - "example": "失業", - "reading": "シツギョウ", - "meaning": "unemployment, losing one's job, becoming unemployed" - }, - { - "example": "得失", - "reading": "トクシツ", - "meaning": "advantages and disadvantages, plus and minuses" - }, - { - "example": "敵失", - "reading": "テキシツ", - "meaning": "error made by the enemy or opposing team" - } - ], - "kunyomiExamples": [ - { - "example": "失う", - "reading": "うしなう", - "meaning": "to lose, to miss (a change, opportunity), to lose (a loved one), to be bereaved of, to concede (goals, points, etc.)" - }, - { - "example": "失せる", - "reading": "うせる", - "meaning": "to disappear, to vanish, to fade away, to go, to leave, to die" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "ノ", - "二", - "人", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22833_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05931.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5931.gif", - "uri": "http://jisho.org/search/%E5%A4%B1%23kanji" - }, - { - "query": "借", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "932", - "strokeCount": 10, - "meaning": "borrow, rent", - "kunyomi": [ - "か.りる" - ], - "onyomi": [ - "シャク" - ], - "onyomiExamples": [ - { - "example": "借家", - "reading": "シャクヤ", - "meaning": "house for rent, rented house, renting a house" - }, - { - "example": "借地", - "reading": "シャクチ", - "meaning": "leased land" - }, - { - "example": "賃借", - "reading": "チンシャク", - "meaning": "hiring, renting, leasing" - }, - { - "example": "賃貸借", - "reading": "チンタイシャク", - "meaning": "renting, leasing" - } - ], - "kunyomiExamples": [ - { - "example": "借りる", - "reading": "かりる", - "meaning": "to borrow, to have a loan, to rent, to hire" - }, - { - "example": "借りる時の地蔵顔、なす時の閻魔顔", - "reading": "かりるときのじぞうがおなすときのえんまがお", - "meaning": "people look friendly when they ask for a loan but not so much when they repay it, when borrowing (the money), the face of the (bodhisattva) Kshitigarbha; when returning it, the face of the (hell king) Yama" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "二", - "化", - "廾", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20511_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0501f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/501f.gif", - "uri": "http://jisho.org/search/%E5%80%9F%23kanji" - }, - { - "query": "種", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "461", - "strokeCount": 14, - "meaning": "species, kind, class, variety, seed", - "kunyomi": [ - "たね", - "-ぐさ" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "種", - "reading": "シュ", - "meaning": "kind, variety, (biological) species, (logical) species" - }, - { - "example": "種子", - "reading": "シュシ", - "meaning": "seed, pit" - }, - { - "example": "職種", - "reading": "ショクシュ", - "meaning": "type of occupation, occupational category" - }, - { - "example": "業種", - "reading": "ギョウシュ", - "meaning": "type of industry" - } - ], - "kunyomiExamples": [ - { - "example": "種", - "reading": "たね", - "meaning": "seed (e.g. of a plant), pip, kind, variety, quality, tone, material (e.g. for an article), matter (e.g. of a story), subject, theme, (news) copy, ingredient, leaven (bread), main ingredient of a sushi, cause, source, trick, secret, magician's trick, inside story, paternal blood, lineage, breed (of a stock), sperm, semen, 10-point card (in hanafuda), tane, animal card" - }, - { - "example": "種馬", - "reading": "たねうま", - "meaning": "studhorse, stallion, breeding horse" - }, - { - "example": "菜種", - "reading": "なたね", - "meaning": "rapeseed, coleseed" - }, - { - "example": "自分で蒔いた種", - "reading": "じぶんでまいたたね", - "meaning": "situation of one's own doing" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ノ", - "日", - "禾", - "里", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31278_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a2e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a2e.gif", - "uri": "http://jisho.org/search/%E7%A8%AE%23kanji" - }, - { - "query": "周", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "562", - "strokeCount": 8, - "meaning": "circumference, circuit, lap", - "kunyomi": [ - "まわ.り" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "周", - "reading": "シュウ", - "meaning": "Zhou dynasty (China, approx. 1046-256 BCE), Chou dynasty, perimeter, counter for laps or circuits" - }, - { - "example": "周囲", - "reading": "シュウイ", - "meaning": "surroundings, environs, circumference" - }, - { - "example": "円周", - "reading": "エンシュウ", - "meaning": "circumference" - }, - { - "example": "外周", - "reading": "ガイシュウ", - "meaning": "outer circumference" - } - ], - "kunyomiExamples": [ - { - "example": "周り", - "reading": "まわり", - "meaning": "circumference, girth, surroundings, neighbourhood, neighborhood, vicinity, people surrounding oneself, surrounding circumstances" - }, - { - "example": "周りの目", - "reading": "まわりのめ", - "meaning": "how others look at you, what others think about you" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "冂", - "口", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21608_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05468.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5468.gif", - "uri": "http://jisho.org/search/%E5%91%A8%23kanji" - }, - { - "query": "祝", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1184", - "strokeCount": 9, - "meaning": "celebrate, congratulate", - "kunyomi": [ - "いわ.う" - ], - "onyomi": [ - "シュク", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "祝", - "reading": "シュク", - "meaning": "public holiday, celebration (of)" - }, - { - "example": "祝賀", - "reading": "シュクガ", - "meaning": "celebration, congratulations" - }, - { - "example": "慶祝", - "reading": "ケイシュク", - "meaning": "congratulation, celebration" - }, - { - "example": "奉祝", - "reading": "ホウシュク", - "meaning": "celebration" - }, - { - "example": "祝儀", - "reading": "シュウギ", - "meaning": "celebration, celebratory event, wedding ceremony, congratulatory gift, tip, gratuity" - }, - { - "example": "祝儀袋", - "reading": "シュウギブクロ", - "meaning": "special envelope for monetary gifts" - } - ], - "kunyomiExamples": [ - { - "example": "祝う", - "reading": "いわう", - "meaning": "to celebrate, to congratulate, to observe (a festival), to present (a gift) in celebration, to drink in celebration, to wish for (a happy future, good fortune, etc.), to pray for" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "儿", - "口", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31069_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0795d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/795d.gif", - "uri": "http://jisho.org/search/%E7%A5%9D%23kanji" - }, - { - "query": "順", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "779", - "strokeCount": 12, - "meaning": "obey, order, turn, right, docility, occasion", - "kunyomi": [], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "順", - "reading": "ジュン", - "meaning": "order, turn, sorting, obedient, docile, submissive, meek" - }, - { - "example": "順位", - "reading": "ジュンイ", - "meaning": "order, rank, position (e.g. in a race), precedence" - }, - { - "example": "打順", - "reading": "ダジュン", - "meaning": "batting order" - }, - { - "example": "筆順", - "reading": "ヒツジュン", - "meaning": "stroke order (esp. of a Chinese character)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "川", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38918_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09806.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9806.gif", - "uri": "http://jisho.org/search/%E9%A0%86%23kanji" - }, - { - "query": "初", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "152", - "strokeCount": 7, - "meaning": "first time, beginning", - "kunyomi": [ - "はじ.め", - "はじ.めて", - "はつ", - "はつ-", - "うい-", - "-そ.める", - "-ぞ.め" - ], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "初夏", - "reading": "ショカ", - "meaning": "early summer, fourth month of the lunar calendar" - }, - { - "example": "初演", - "reading": "ショエン", - "meaning": "first performance" - }, - { - "example": "年初", - "reading": "ネンショ", - "meaning": "beginning of the year" - }, - { - "example": "原初", - "reading": "ゲンショ", - "meaning": "origin, source, beginning, starting point" - } - ], - "kunyomiExamples": [ - { - "example": "始め", - "reading": "はじめ", - "meaning": "beginning, start, outset, opening, first (in line, etc.), origin, such as ..., not to mention ..." - }, - { - "example": "初めて", - "reading": "はじめて", - "meaning": "for the first time, only after ... is it ..., only when ... do you ..." - }, - { - "example": "初めて", - "reading": "はじめて", - "meaning": "for the first time, only after ... is it ..., only when ... do you ..." - }, - { - "example": "初", - "reading": "はつ", - "meaning": "first, new" - }, - { - "example": "初夏", - "reading": "しょか", - "meaning": "early summer, fourth month of the lunar calendar" - }, - { - "example": "業界初", - "reading": "ぎょうかいはつ", - "meaning": "the industry's first ..." - }, - { - "example": "人生初", - "reading": "じんせいはつ", - "meaning": "(for the) first time in one's life" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刀", - "初" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21021_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0521d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/521d.gif", - "uri": "http://jisho.org/search/%E5%88%9D%23kanji" - }, - { - "query": "松", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "471", - "strokeCount": 8, - "meaning": "pine tree", - "kunyomi": [ - "まつ" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "松竹梅", - "reading": "ショウチクバイ", - "meaning": "pine, bamboo and plum (an auspicious grouping), high, middle and low (ranking), top, middle and bottom, upper, medium, lower, first, second and third (class)" - }, - { - "example": "鰹", - "reading": "カツオ", - "meaning": "skipjack tuna (Katsuwonus pelamis), oceanic bonito, victorfish" - }, - { - "example": "老松", - "reading": "ロウショウ", - "meaning": "old pine tree" - }, - { - "example": "翠松", - "reading": "スイショウ", - "meaning": "verdant pine, green pine" - } - ], - "kunyomiExamples": [ - { - "example": "松", - "reading": "まつ", - "meaning": "pine tree (Pinus spp.), highest (of a three-tier ranking system)" - }, - { - "example": "松下電工", - "reading": "まつしたでんこう", - "meaning": "Matsushita Electric Works" - }, - { - "example": "若松", - "reading": "わかまつ", - "meaning": "young pine, New Year's symbolic pine decoration" - }, - { - "example": "赤松", - "reading": "あかまつ", - "meaning": "Japanese red pine (Pinus densiflora), Japanese umbrella pine, tanyosho pine" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ハ", - "厶", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26494_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0677e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/677e.gif", - "uri": "http://jisho.org/search/%E6%9D%BE%23kanji" - }, - { - "query": "笑", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "913", - "strokeCount": 10, - "meaning": "laugh", - "kunyomi": [ - "わら.う", - "え.む" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "笑気", - "reading": "ショウキ", - "meaning": "nitrous oxide (N2O), laughing gas" - }, - { - "example": "笑劇", - "reading": "ショウゲキ", - "meaning": "(theatrical) farce" - }, - { - "example": "苦笑", - "reading": "クショウ", - "meaning": "bitter smile, wry smile, strained laugh, sarcastic laugh" - }, - { - "example": "冷笑", - "reading": "レイショウ", - "meaning": "sneer, derision, scornful laugh, cold smile" - } - ], - "kunyomiExamples": [ - { - "example": "笑う", - "reading": "わらう", - "meaning": "to laugh, to smile, to sneer, to ridicule, to be dumbfounded, to be flabbergasted" - }, - { - "example": "笑う門には福来る", - "reading": "わらうかどにはふくきたる", - "meaning": "laugh and grow fat, good fortune and happiness will come to the home of those who smile" - }, - { - "example": "笑む", - "reading": "えむ", - "meaning": "to smile" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "大", - "禾", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31505_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b11.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b11.gif", - "uri": "http://jisho.org/search/%E7%AC%91%23kanji" - }, - { - "query": "唱", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1123", - "strokeCount": 11, - "meaning": "chant, recite, call upon, yell", - "kunyomi": [ - "とな.える" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "唱和", - "reading": "ショウワ", - "meaning": "cheering in chorus, saying in unison" - }, - { - "example": "唱歌", - "reading": "ショウカ", - "meaning": "singing, songs" - }, - { - "example": "斉唱", - "reading": "セイショウ", - "meaning": "singing or chanting in unison" - }, - { - "example": "主唱", - "reading": "シュショウ", - "meaning": "advocacy, promotion" - } - ], - "kunyomiExamples": [ - { - "example": "唱える", - "reading": "となえる", - "meaning": "to recite, to chant, to cry, to yell, to shout, to advocate, to advance, to preach, to insist" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21809_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05531.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5531.gif", - "uri": "http://jisho.org/search/%E5%94%B1%23kanji" - }, - { - "query": "焼", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "982", - "strokeCount": 12, - "meaning": "bake, burning", - "kunyomi": [ - "や.く", - "や.き", - "や.き-", - "-や.き", - "や.ける" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "焼死", - "reading": "ショウシ", - "meaning": "death by fire" - }, - { - "example": "焼却", - "reading": "ショウキャク", - "meaning": "incineration, destroy by fire" - }, - { - "example": "半焼", - "reading": "ハンショウ", - "meaning": "partial destruction by fire" - }, - { - "example": "延焼", - "reading": "エンショウ", - "meaning": "spread of fire" - } - ], - "kunyomiExamples": [ - { - "example": "焼く", - "reading": "やく", - "meaning": "to burn, to roast, to broil, to grill, to bake, to toast, to barbecue, to heat, to heat up, to make (charcoal, pottery, bricks, etc.), to bake, to fire, to burn, to tan (i.e. suntan), to burn, to print (a photo), to burn (an optical disc), to be jealous of, to be envious of, to envy" - }, - { - "example": "焼き", - "reading": "やき", - "meaning": "cooking, esp. frying or stir-frying, heating, tempering, -ware" - }, - { - "example": "焼肉", - "reading": "やきにく", - "meaning": "yakiniku, Japanese dish of grilled meat similar to Korean barbecue, roasted meat, grill" - }, - { - "example": "卵焼き", - "reading": "たまごやき", - "meaning": "rolled egg, rolled omelette (omelet), fried egg, frying pan for making rolled eggs" - }, - { - "example": "塩焼き", - "reading": "しおやき", - "meaning": "grilling (fish) with salt, broiling with salt, boiling seawater to get salt" - }, - { - "example": "焼ける", - "reading": "やける", - "meaning": "to burn, to be roasted, to be heated, to be sunburnt, to fade (in the sun), to glow red (i.e. of the sky at sunset), to be jealous, to be envious" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "儿", - "十", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28988_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0713c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/713c.gif", - "uri": "http://jisho.org/search/%E7%84%BC%23kanji" - }, - { - "query": "照", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1004", - "strokeCount": 13, - "meaning": "illuminate, shine, compare, bashful", - "kunyomi": [ - "て.る", - "て.らす", - "て.れる" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "照射", - "reading": "ショウシャ", - "meaning": "irradiation, radiation, beaming, exposure (to light), illumination" - }, - { - "example": "照会", - "reading": "ショウカイ", - "meaning": "inquiry, enquiry, query, reference" - }, - { - "example": "日照", - "reading": "ニッショウ", - "meaning": "sunlight" - }, - { - "example": "残照", - "reading": "ザンショウ", - "meaning": "afterglow" - } - ], - "kunyomiExamples": [ - { - "example": "照る", - "reading": "てる", - "meaning": "to shine, to look slightly upward (of a noh mask; indicating joy, etc.)" - }, - { - "example": "てるてる坊主", - "reading": "てるてるぼうず", - "meaning": "paper doll to which children pray for fine weather (usu. white, and shaped like a Buddhist priest)" - }, - { - "example": "照らす", - "reading": "てらす", - "meaning": "to shine on, to illuminate, to compare (with), to refer to" - }, - { - "example": "照れる", - "reading": "てれる", - "meaning": "to be shy, to be bashful, to feel awkward, to feel embarrassed" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "刀", - "口", - "日", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29031_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07167.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7167.gif", - "uri": "http://jisho.org/search/%E7%85%A7%23kanji" - }, - { - "query": "城", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "795", - "strokeCount": 9, - "meaning": "castle", - "kunyomi": [ - "しろ" - ], - "onyomi": [ - "ジョウ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "城", - "reading": "ジョウ", - "meaning": "castle (in place names), castle, fortress" - }, - { - "example": "城内", - "reading": "ジョウナイ", - "meaning": "inside of a castle, area surrounded by castle walls" - }, - { - "example": "荒城", - "reading": "コウジョウ", - "meaning": "ruined castle" - }, - { - "example": "開城", - "reading": "カイジョウ", - "meaning": "capitulation (of fort)" - }, - { - "example": "傾城", - "reading": "ケイセイ", - "meaning": "beauty, siren, courtesan, prostitute" - }, - { - "example": "傾国傾城", - "reading": "ケイコクケイセイ", - "meaning": "woman so glamorous as to bring ruin to a country (castle) as its king (lord) is captivated by her beauty, femme fatale" - } - ], - "kunyomiExamples": [ - { - "example": "城", - "reading": "しろ", - "meaning": "castle" - }, - { - "example": "城跡", - "reading": "しろあと", - "meaning": "castle site, ruins of a castle" - }, - { - "example": "山城", - "reading": "やましろ", - "meaning": "Yamashiro (former province located in the south of present-day Kyoto Prefecture)" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "土", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22478_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057ce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57ce.gif", - "uri": "http://jisho.org/search/%E5%9F%8E%23kanji" - }, - { - "query": "縄", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1075", - "strokeCount": 15, - "meaning": "straw rope, cord", - "kunyomi": [ - "なわ", - "ただ.す" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "縄文", - "reading": "ジョウモン", - "meaning": "straw-rope pattern pressed into earthenware, Jōmon period (ca. 14000-1000 BCE)" - }, - { - "example": "縄墨", - "reading": "ジョウボク", - "meaning": "standard, inked timber marking string" - }, - { - "example": "絞縄", - "reading": "コウジョウ", - "meaning": "hangman's noose, halter, rope to hang a criminal" - }, - { - "example": "結縄", - "reading": "ケツジョウ", - "meaning": "knotted cord or rope, quipu, quippu" - } - ], - "kunyomiExamples": [ - { - "example": "縄", - "reading": "なわ", - "meaning": "rope, cord, policeman's rope" - }, - { - "example": "縄張り", - "reading": "なわばり", - "meaning": "stretching a rope around, roping off, cordoning off, demarcation, one's turf, domain, territory, jurisdiction, sphere of influence, territory (of an animal)" - }, - { - "example": "腰縄", - "reading": "こしなわ", - "meaning": "leash, rope tied round prisoner's waists" - }, - { - "example": "延縄", - "reading": "はえなわ", - "meaning": "longline" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "乙", - "亀", - "勹", - "小", - "幺", - "田", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32260_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e04.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e04.gif", - "uri": "http://jisho.org/search/%E7%B8%84%23kanji" - }, - { - "query": "臣", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1249", - "strokeCount": 7, - "meaning": "retainer, subject", - "kunyomi": [], - "onyomi": [ - "シン", - "ジン" - ], - "onyomiExamples": [ - { - "example": "臣", - "reading": "オミ", - "meaning": "retainer, attendant, Omi (hereditary title; orig. one of the two highest such titles, later demoted to sixth highest of eight), I, me" - }, - { - "example": "臣下", - "reading": "シンカ", - "meaning": "retainer, subject, vassal, servant" - }, - { - "example": "忠臣", - "reading": "チュウシン", - "meaning": "loyal retainer, loyal subject" - }, - { - "example": "重臣", - "reading": "ジュウシン", - "meaning": "chief vassal, senior statesman" - }, - { - "example": "国務大臣", - "reading": "コクムダイジン", - "meaning": "minister of state, cabinet minister (Japan)" - }, - { - "example": "内大臣", - "reading": "ナイダイジン", - "meaning": "Lord Keeper of the Privy Seal (1885-1945 CE), Minister of the Interior (669-1868 CE)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "臣", - "meaning": "minster, official" - }, - "parts": [ - "匚", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33251_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81e3.gif", - "uri": "http://jisho.org/search/%E8%87%A3%23kanji" - }, - { - "query": "信", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "208", - "strokeCount": 9, - "meaning": "faith, truth, fidelity, trust", - "kunyomi": [], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "信", - "reading": "シン", - "meaning": "honesty, sincerity, fidelity, trust, reliance, confidence, (religious) faith, devotion, counter for received messages" - }, - { - "example": "信金", - "reading": "シンキン", - "meaning": "credit union" - }, - { - "example": "逓信", - "reading": "テイシン", - "meaning": "communications (e.g. post, tele.)" - }, - { - "example": "外信", - "reading": "ガイシン", - "meaning": "external communication" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20449_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fe1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fe1.gif", - "uri": "http://jisho.org/search/%E4%BF%A1%23kanji" - }, - { - "query": "井", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "339", - "strokeCount": 4, - "meaning": "well, well crib, town, community", - "kunyomi": [ - "い" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "井", - "reading": "セイ", - "meaning": "well curb, Chinese \"Well\" constellation (one of the 28 mansions)" - }, - { - "example": "整然", - "reading": "セイゼン", - "meaning": "orderly, regular, systematic, well-organized, well-organised, trim, tidy, accurate" - }, - { - "example": "市井", - "reading": "シセイ", - "meaning": "the street, the town" - }, - { - "example": "坑井", - "reading": "コウセイ", - "meaning": "winze (mining), well (oil, gas)" - } - ], - "kunyomiExamples": [ - { - "example": "井", - "reading": "い", - "meaning": "well" - }, - { - "example": "堰", - "reading": "せき", - "meaning": "dam, weir, barrier, sluice" - }, - { - "example": "筒井", - "reading": "つつい", - "meaning": "round well" - }, - { - "example": "市井", - "reading": "しせい", - "meaning": "the street, the town" - } - ], - "radical": { - "symbol": "二", - "meaning": "two" - }, - "parts": [ - "ノ", - "一", - "二", - "井", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20117_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e95.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e95.gif", - "uri": "http://jisho.org/search/%E4%BA%95%23kanji" - }, - { - "query": "成", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "116", - "strokeCount": 6, - "meaning": "turn into, become, get, grow, elapse, reach", - "kunyomi": [ - "な.る", - "な.す", - "-な.す" - ], - "onyomi": [ - "セイ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "成果", - "reading": "セイカ", - "meaning": "(good) result, outcome, fruits (of one's labors), product, accomplishment" - }, - { - "example": "成案", - "reading": "セイアン", - "meaning": "definite plan" - }, - { - "example": "合成", - "reading": "ゴウセイ", - "meaning": "composition, synthesis, composite, compound, synthetic, mixed, combined, (function) composition" - }, - { - "example": "集大成", - "reading": "シュウタイセイ", - "meaning": "(large) compilation, culmination (of hard work)" - }, - { - "example": "成仏", - "reading": "ジョウブツ", - "meaning": "attaining Buddhahood, becoming a Buddha, entering Nirvana, going to heaven, resting in peace, dying (peacefully)" - }, - { - "example": "成就", - "reading": "ジョウジュ", - "meaning": "fulfillment, fulfilment, realization, realisation, completion" - } - ], - "kunyomiExamples": [ - { - "example": "成る", - "reading": "なる", - "meaning": "to become, to get, to grow, to be, to reach, to attain, to result in, to prove to be, to consist of, to be composed of, to succeed, to be complete, to change into, to be exchanged for, to play a role, to be promoted, to do ..." - }, - { - "example": "成るべく", - "reading": "なるべく", - "meaning": "as (much) as possible, as (much) as one can, wherever practicable, if possible" - }, - { - "example": "為す", - "reading": "なす", - "meaning": "to build up, to establish, to form, to become (a state), to accomplish, to achieve, to succeed in, to change into, to do, to perform, to intend to, to attempt, to try" - }, - { - "example": "なす角", - "reading": "なすかく", - "meaning": "formed angle, angle made" - } - ], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "ノ", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25104_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06210.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6210.gif", - "uri": "http://jisho.org/search/%E6%88%90%23kanji" - }, - { - "query": "省", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "548", - "strokeCount": 9, - "meaning": "focus, government ministry, conserve", - "kunyomi": [ - "かえり.みる", - "はぶ.く" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "省察", - "reading": "セイサツ", - "meaning": "reflection, consideration" - }, - { - "example": "省思", - "reading": "セイシ", - "meaning": "reflection, reexamination, contemplation" - }, - { - "example": "三省", - "reading": "サンセイ", - "meaning": "frequent reflection (meditation)" - }, - { - "example": "内省", - "reading": "ナイセイ", - "meaning": "introspection, reflection on one's self" - }, - { - "example": "省", - "reading": "ショウ", - "meaning": "ministry, department, province (of China), saving, conserving" - }, - { - "example": "省エネルギー", - "reading": "ショウエネルギー", - "meaning": "energy conservation, economical use of energy, energy-saving" - }, - { - "example": "郵政省", - "reading": "ユウセイショウ", - "meaning": "(former) Ministry of Posts and Telecommunications (now Ministry of Internal Affairs and Communications)" - }, - { - "example": "厚生省", - "reading": "コウセイショウ", - "meaning": "Ministry of Health and Welfare (now Ministry of Health, Labour and Welfare)" - } - ], - "kunyomiExamples": [ - { - "example": "省みる", - "reading": "かえりみる", - "meaning": "to reflect on (oneself, past conduct, etc.), to contemplate, to examine, to think over, to introspect" - }, - { - "example": "省く", - "reading": "はぶく", - "meaning": "to omit, to leave out, to exclude, to eliminate, to curtail, to save, to cut down, to economize, to economise" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "ノ", - "小", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30465_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07701.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7701.gif", - "uri": "http://jisho.org/search/%E7%9C%81%23kanji" - }, - { - "query": "清", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "705", - "strokeCount": 11, - "meaning": "pure, purify, cleanse, exorcise, Manchu dynasty", - "kunyomi": [ - "きよ.い", - "きよ.まる", - "きよ.める" - ], - "onyomi": [ - "セイ", - "ショウ", - "シン" - ], - "onyomiExamples": [ - { - "example": "清算", - "reading": "セイサン", - "meaning": "settlement (financial), squaring accounts, clearing debts, liquidation, ending (a relationship), breaking up (with), burying (the past), redeeming (one's faults)" - }, - { - "example": "清潔", - "reading": "セイケツ", - "meaning": "clean, hygienic, sanitary, pure, virtuous, immaculate" - }, - { - "example": "血清", - "reading": "ケッセイ", - "meaning": "serum, blood serum" - }, - { - "example": "乳清", - "reading": "ニュウセイ", - "meaning": "whey" - }, - { - "example": "清浄", - "reading": "セイジョウ", - "meaning": "pure, clean, purity" - }, - { - "example": "清", - "reading": "シン", - "meaning": "Qing dynasty (China, 1644-1912), Ch'ing dynasty, Manchu dynasty" - }, - { - "example": "清朝", - "reading": "シンチョウ", - "meaning": "Qing dynasty (China, 1644-1912), Ch'ing dynasty, Manchu dynasty" - }, - { - "example": "東清", - "reading": "トウシン", - "meaning": "Eastern China" - }, - { - "example": "日清", - "reading": "ニッシン", - "meaning": "First Sino-Japanese war (1894-1895)" - } - ], - "kunyomiExamples": [ - { - "example": "清い", - "reading": "きよい", - "meaning": "clear, pure, noble" - }, - { - "example": "清い愛", - "reading": "きよいあい", - "meaning": "pure love, platonic love" - }, - { - "example": "清まる", - "reading": "きよまる", - "meaning": "to be purified, to be cleansed" - }, - { - "example": "清める", - "reading": "きよめる", - "meaning": "to purify, to cleanse, to exorcise, to purge, to ward off" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "二", - "亠", - "土", - "月", - "汁", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28165_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e05.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e05.gif", - "uri": "http://jisho.org/search/%E6%B8%85%23kanji" - }, - { - "query": "静", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "764", - "strokeCount": 14, - "meaning": "quiet", - "kunyomi": [ - "しず-", - "しず.か", - "しず.まる", - "しず.める" - ], - "onyomi": [ - "セイ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "静", - "reading": "セイ", - "meaning": "stillness, quiet, peacefulness" - }, - { - "example": "静観", - "reading": "セイカン", - "meaning": "watchful waiting, careful supervision" - }, - { - "example": "沈静", - "reading": "チンセイ", - "meaning": "stillness, tranquility, tranquillity, dullness" - }, - { - "example": "寧静", - "reading": "ネイセイ", - "meaning": "calmness, peacefulness, tranquility" - }, - { - "example": "静脈", - "reading": "ジョウミャク", - "meaning": "vein" - }, - { - "example": "静注", - "reading": "ジョウチュウ", - "meaning": "intravenous injection, IV" - }, - { - "example": "寂静", - "reading": "ジャクジョウ", - "meaning": "calmness, stillness, tranquility, calmness of the heart, enlightenment" - }, - { - "example": "涅槃寂静", - "reading": "ネハンジャクジョウ", - "meaning": "enlightenment leads to serenity" - } - ], - "kunyomiExamples": [ - { - "example": "静か", - "reading": "しずか", - "meaning": "quiet, silent, slow, unhurried, calm, peaceful" - }, - { - "example": "静かに", - "reading": "しずかに", - "meaning": "calmly, quietly, gently, peacefully, be quiet!" - }, - { - "example": "二人静", - "reading": "ふたりしずか", - "meaning": "Chloranthus serratus (species of flowering plant)" - }, - { - "example": "一人静", - "reading": "ひとりしずか", - "meaning": "Chloranthus japonicus" - }, - { - "example": "静まる", - "reading": "しずまる", - "meaning": "to become quiet, to quiet down, to quieten down, to calm down, to die down, to subside, to abate, to be suppressed" - }, - { - "example": "静める", - "reading": "しずめる", - "meaning": "to appease, to suppress, to calm" - } - ], - "radical": { - "symbol": "青", - "forms": [ - "靑" - ], - "meaning": "blue" - }, - "parts": [ - "ヨ", - "亅", - "二", - "亠", - "勹", - "土", - "月", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38745_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09759.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9759.gif", - "uri": "http://jisho.org/search/%E9%9D%99%23kanji" - }, - { - "query": "席", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "370", - "strokeCount": 10, - "meaning": "seat, mat, occasion, place", - "kunyomi": [ - "むしろ" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "席", - "reading": "セキ", - "meaning": "seat, location (of a gathering, etc.), place, position, post" - }, - { - "example": "席上", - "reading": "セキジョウ", - "meaning": "at the meeting, on the occasion" - }, - { - "example": "寄席", - "reading": "ヨセ", - "meaning": "entertainment hall (for rakugo, manzai, magic, music, etc.), vaudeville theater (theatre), music hall" - }, - { - "example": "次席", - "reading": "ジセキ", - "meaning": "associate, junior, assistant, runner-up" - } - ], - "kunyomiExamples": [ - { - "example": "筵", - "reading": "むしろ", - "meaning": "woven mat (esp. one made of straw), seat" - }, - { - "example": "竹席", - "reading": "たかむしろ", - "meaning": "bamboo mat" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "一", - "凵", - "巾", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24109_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e2d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e2d.gif", - "uri": "http://jisho.org/search/%E5%B8%AD%23kanji" - }, - { - "query": "積", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "541", - "strokeCount": 16, - "meaning": "volume, product (x*y), acreage, contents, pile up, stack, load, amass", - "kunyomi": [ - "つ.む", - "-づ.み", - "つ.もる", - "つ.もり" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "積", - "reading": "セキ", - "meaning": "product, volume, area" - }, - { - "example": "積載", - "reading": "セキサイ", - "meaning": "lading, loading, carrying" - }, - { - "example": "作付面積", - "reading": "サクヅケメンセキ", - "meaning": "planted area" - }, - { - "example": "蓄積", - "reading": "チクセキ", - "meaning": "accumulation, accumulate, store" - } - ], - "kunyomiExamples": [ - { - "example": "積む", - "reading": "つむ", - "meaning": "to pile up, to stack, to load (car, ship, etc.), to pack, to acquire, to accumulate" - }, - { - "example": "積もる", - "reading": "つもる", - "meaning": "to pile up, to accumulate, to estimate" - }, - { - "example": "積もり", - "reading": "つもり", - "meaning": "intention, plan, conviction, belief" - }, - { - "example": "積り書", - "reading": "つもりがき", - "meaning": "written estimate" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ハ", - "二", - "亠", - "土", - "目", - "禾", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31309_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a4d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a4d.gif", - "uri": "http://jisho.org/search/%E7%A9%8D%23kanji" - }, - { - "query": "折", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "962", - "strokeCount": 7, - "meaning": "fold, break, fracture, bend, yield, submit", - "kunyomi": [ - "お.る", - "おり", - "お.り", - "-お.り", - "お.れる" - ], - "onyomi": [ - "セツ", - "シャク" - ], - "onyomiExamples": [ - { - "example": "曲折", - "reading": "キョクセツ", - "meaning": "windings, meanderings, complications, twists and turns" - }, - { - "example": "屈折", - "reading": "クッセツ", - "meaning": "bending, curving, twisting, turning, winding, warping (of feelings, logic, etc.), distortion, twisting, refraction, inflection" - }, - { - "example": "折伏", - "reading": "シャクブク", - "meaning": "preaching down, breaking down somebody's false beliefs through confrontation (in order to convert them to the right faith)" - } - ], - "kunyomiExamples": [ - { - "example": "折る", - "reading": "おる", - "meaning": "to break, to fracture, to break off, to snap off, to pick (e.g. flowers), to fold, to bend, to make (origami), to interrupt, to end" - }, - { - "example": "折", - "reading": "おり", - "meaning": "opportunity, chance, occasion, time, folding, fold, pleat, crease, small food box (wooden or cardboard), counter for folds, counter for items (esp. food) packed in an oribako" - }, - { - "example": "折り合い", - "reading": "おりあい", - "meaning": "agreement (e.g. business, dispute), understanding, compromise, settlement, mutual relations (between family members, coworkers, etc.)" - }, - { - "example": "折々", - "reading": "おりおり", - "meaning": "occasionally, now and then, from time to time" - }, - { - "example": "指折り", - "reading": "ゆびおり", - "meaning": "leading, prominent, eminent, foremost, distinguished, counting on one's fingers" - }, - { - "example": "折", - "reading": "おり", - "meaning": "opportunity, chance, occasion, time, folding, fold, pleat, crease, small food box (wooden or cardboard), counter for folds, counter for items (esp. food) packed in an oribako" - }, - { - "example": "折り合い", - "reading": "おりあい", - "meaning": "agreement (e.g. business, dispute), understanding, compromise, settlement, mutual relations (between family members, coworkers, etc.)" - }, - { - "example": "折々", - "reading": "おりおり", - "meaning": "occasionally, now and then, from time to time" - }, - { - "example": "指折り", - "reading": "ゆびおり", - "meaning": "leading, prominent, eminent, foremost, distinguished, counting on one's fingers" - }, - { - "example": "折れる", - "reading": "おれる", - "meaning": "to break, to be broken, to snap, to fracture, to be folded, to give in, to back down, to yield, to submit, to turn (a corner)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25240_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06298.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6298.gif", - "uri": "http://jisho.org/search/%E6%8A%98%23kanji" - }, - { - "query": "節", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "934", - "strokeCount": 13, - "meaning": "node, season, period, occasion, verse, clause, stanza, honor, joint, knuckle, knob, knot, tune, melody", - "kunyomi": [ - "ふし", - "-ぶし", - "のっと" - ], - "onyomi": [ - "セツ", - "セチ" - ], - "onyomiExamples": [ - { - "example": "節", - "reading": "セツ", - "meaning": "occasion, time, section (of a literary work), paragraph, verse, stanza, passage, season, term, holiday, principle, integrity, node (of a plant stem), clause, (taxonomical) section" - }, - { - "example": "節減", - "reading": "セツゲン", - "meaning": "retrenchment, curtailment, economy" - }, - { - "example": "結節", - "reading": "ケッセツ", - "meaning": "knot, nodule, tubercule, node" - }, - { - "example": "国慶節", - "reading": "コッケイセツ", - "meaning": "anniversary of founding (of PRC), national celebration time" - }, - { - "example": "節", - "reading": "セチ", - "meaning": "season, time of the year, seasonal festival, seasonal banquet, seasonal feast" - }, - { - "example": "節分", - "reading": "セツブン", - "meaning": "last day of winter in the traditional Japanese calendar (usually February 3 or 4), holiday for end of winter (accompanied by a bean scattering ceremony), last day of any season (according to the traditional Japanese calendar)" - } - ], - "kunyomiExamples": [ - { - "example": "節", - "reading": "ふし", - "meaning": "joint, knuckle, tune, melody, knot (in wood), node in a bamboo stem, part, notable characteristic" - }, - { - "example": "節目", - "reading": "ふしめ", - "meaning": "turning point, critical juncture, knot (in a tree, etc.)" - }, - { - "example": "七節", - "reading": "ななふし", - "meaning": "walking stick (any insect of order Phasmatodea), walkingstick, stick insect, leaf insect" - }, - { - "example": "飛七節", - "reading": "とびななふし", - "meaning": "Micadina phluctaenoides (species of stick insect)" - }, - { - "example": "節", - "reading": "ノット", - "meaning": "knot (nautical mile per hour)" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "卩", - "竹", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31680_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07bc0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7bc0.gif", - "uri": "http://jisho.org/search/%E7%AF%80%23kanji" - }, - { - "query": "説", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "326", - "strokeCount": 14, - "meaning": "opinion, theory, explanation, rumor", - "kunyomi": [ - "と.く" - ], - "onyomi": [ - "セツ", - "ゼイ" - ], - "onyomiExamples": [ - { - "example": "説", - "reading": "セツ", - "meaning": "theory, doctrine, opinion, view, rumour, rumor, gossip, hearsay" - }, - { - "example": "説明", - "reading": "セツメイ", - "meaning": "explanation, exposition" - }, - { - "example": "論説", - "reading": "ロンセツ", - "meaning": "editorial, dissertation" - }, - { - "example": "定説", - "reading": "テイセツ", - "meaning": "established theory, accepted opinion, accepted explanation" - }, - { - "example": "遊説", - "reading": "ユウゼイ", - "meaning": "election tour, election campaign, stumping" - }, - { - "example": "全国遊説", - "reading": "ゼンコクユウゼイ", - "meaning": "nationwide election campaign" - } - ], - "kunyomiExamples": [ - { - "example": "説く", - "reading": "とく", - "meaning": "to explain, to advocate, to preach, to persuade" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "儿", - "口", - "并", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35500_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08aac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8aac.gif", - "uri": "http://jisho.org/search/%E8%AA%AC%23kanji" - }, - { - "query": "浅", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1253", - "strokeCount": 9, - "meaning": "shallow, superficial, frivolous, wretched, shameful", - "kunyomi": [ - "あさ.い" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "浅見", - "reading": "センケン", - "meaning": "shallow view, superficial idea" - }, - { - "example": "浅海", - "reading": "センカイ", - "meaning": "shallow sea" - }, - { - "example": "深浅", - "reading": "シンセン", - "meaning": "depth, shade (of color, colour)" - } - ], - "kunyomiExamples": [ - { - "example": "浅い", - "reading": "あさい", - "meaning": "shallow, superficial, slight (wound), light (sleep), pale (colour), inadequate (knowledge), short (time), early, young" - }, - { - "example": "浅煎り", - "reading": "あさいり", - "meaning": "light roast (coffee)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "二", - "戈", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27973_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d45.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d45.gif", - "uri": "http://jisho.org/search/%E6%B5%85%23kanji" - }, - { - "query": "戦", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "78", - "strokeCount": 13, - "meaning": "war, battle, match", - "kunyomi": [ - "いくさ", - "たたか.う", - "おのの.く", - "そよ.ぐ", - "わなな.く" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "戦", - "reading": "セン", - "meaning": "war, battle, match, game, competition" - }, - { - "example": "戦域", - "reading": "センイキ", - "meaning": "war area, battlefield, theater, theatre" - }, - { - "example": "開戦", - "reading": "カイセン", - "meaning": "outbreak of war, starting a war" - }, - { - "example": "回戦", - "reading": "カイセン", - "meaning": "event with ... rounds, innings, legs, etc., nth-round match (in a knockout tournament)" - } - ], - "kunyomiExamples": [ - { - "example": "戦", - "reading": "いくさ", - "meaning": "war, battle, campaign, fight, troops, forces" - }, - { - "example": "戦場", - "reading": "せんじょう", - "meaning": "battlefield, battleground" - }, - { - "example": "負け戦", - "reading": "まけいくさ", - "meaning": "lost battle" - }, - { - "example": "野合戦", - "reading": "のがっせん", - "meaning": "battle in the open, battle on an open field" - }, - { - "example": "戦う", - "reading": "たたかう", - "meaning": "to make war (on), to wage war (against), to go to war (with), to fight (with), to do battle (against), to compete (against), to struggle (against adversities, etc.), to fight, to contend, to resist" - }, - { - "example": "戦く", - "reading": "おののく", - "meaning": "to shake (from fear, cold, excitement, etc.), to shudder, to tremble" - }, - { - "example": "戦ぐ", - "reading": "そよぐ", - "meaning": "to rustle, to sway, to stir, to flutter" - }, - { - "example": "戦慄く", - "reading": "わななく", - "meaning": "to tremble, to shiver, to shake" - } - ], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "十", - "尚", - "戈", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25126_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06226.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6226.gif", - "uri": "http://jisho.org/search/%E6%88%A6%23kanji" - }, - { - "query": "選", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "57", - "strokeCount": 15, - "meaning": "elect, select, choose, prefer", - "kunyomi": [ - "えら.ぶ", - "え.る", - "よ.る" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "選", - "reading": "セン", - "meaning": "selection, choice, choosing, picking, election" - }, - { - "example": "選挙", - "reading": "センキョ", - "meaning": "election" - }, - { - "example": "抽選", - "reading": "チュウセン", - "meaning": "lottery, raffle, drawing (of lots)" - }, - { - "example": "公選", - "reading": "コウセン", - "meaning": "public election" - } - ], - "kunyomiExamples": [ - { - "example": "選ぶ", - "reading": "えらぶ", - "meaning": "to choose, to select" - }, - { - "example": "選ぶところがない", - "reading": "えらぶところがない", - "meaning": "being the same thing (as), being indistinguishable (from)" - }, - { - "example": "選る", - "reading": "よる", - "meaning": "to choose, to select" - }, - { - "example": "選る", - "reading": "よる", - "meaning": "to choose, to select" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ハ", - "二", - "已", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36984_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09078.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9078.gif", - "uri": "http://jisho.org/search/%E9%81%B8%23kanji" - }, - { - "query": "然", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "401", - "strokeCount": 12, - "meaning": "sort of thing, so, if so, in that case, well", - "kunyomi": [ - "しか", - "しか.り", - "しか.し", - "さ" - ], - "onyomi": [ - "ゼン", - "ネン" - ], - "onyomiExamples": [ - { - "example": "然", - "reading": "ゼン", - "meaning": "-like" - }, - { - "example": "然諾", - "reading": "ゼンダク", - "meaning": "consent, saying yes" - }, - { - "example": "必然", - "reading": "ヒツゼン", - "meaning": "inevitable, necessary, certain, sure, inevitability, necessity" - }, - { - "example": "漠然", - "reading": "バクゼン", - "meaning": "vague, obscure, indistinct, hazy, ambiguous" - }, - { - "example": "寂然", - "reading": "セキゼン", - "meaning": "lonely, desolate, forlornness, desolation" - }, - { - "example": "自然", - "reading": "ジネン", - "meaning": "occurring naturally (without human influence)" - } - ], - "kunyomiExamples": [ - { - "example": "然", - "reading": "しか", - "meaning": "like that, as such, yeah, uh-huh" - }, - { - "example": "然し", - "reading": "しかし", - "meaning": "however, but" - }, - { - "example": "然り", - "reading": "しかり", - "meaning": "yes, yea, aye, affirmative, to be so" - }, - { - "example": "然し", - "reading": "しかし", - "meaning": "however, but" - }, - { - "example": "然して", - "reading": "そして", - "meaning": "and, and then, thus, and now, and finally" - }, - { - "example": "然", - "reading": "さ", - "meaning": "so, like that, in that way" - }, - { - "example": "然有らぬ", - "reading": "さあらぬ", - "meaning": "casual, indifferent, nonchalant" - }, - { - "example": "然然", - "reading": "ささ", - "meaning": "such and such" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "夕", - "杰", - "犬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28982_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07136.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7136.gif", - "uri": "http://jisho.org/search/%E7%84%B6%23kanji" - }, - { - "query": "争", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "271", - "strokeCount": 6, - "meaning": "contend, dispute, argue", - "kunyomi": [ - "あらそ.う", - "いか.でか" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "争奪", - "reading": "ソウダツ", - "meaning": "struggle (for), scramble, contest" - }, - { - "example": "争議", - "reading": "ソウギ", - "meaning": "dispute, quarrel, strike" - }, - { - "example": "係争", - "reading": "ケイソウ", - "meaning": "contention, dispute, conflict, controversy" - }, - { - "example": "政争", - "reading": "セイソウ", - "meaning": "political strife" - } - ], - "kunyomiExamples": [ - { - "example": "争う", - "reading": "あらそう", - "meaning": "to compete, to contest, to contend, to quarrel, to argue, to dispute, to be at variance, to oppose, to deny (e.g. evidence)" - }, - { - "example": "争うべからざる", - "reading": "あらそうべからざる", - "meaning": "indisputable" - } - ], - "radical": { - "symbol": "亅", - "meaning": "hook" - }, - "parts": [ - "ヨ", - "一", - "亅", - "勹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20105_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e89.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e89.gif", - "uri": "http://jisho.org/search/%E4%BA%89%23kanji" - }, - { - "query": "倉", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1114", - "strokeCount": 10, - "meaning": "godown, warehouse, storehouse, cellar, treasury", - "kunyomi": [ - "くら" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "倉庫", - "reading": "ソウコ", - "meaning": "storehouse, warehouse, godown" - }, - { - "example": "倉頡輸入法", - "reading": "ソウケツユニュウホウ", - "meaning": "Cangjie input method (for Chinese), Tsang-chieh input method" - }, - { - "example": "船倉", - "reading": "センソウ", - "meaning": "ship's hold, hatch" - }, - { - "example": "穀倉", - "reading": "コクソウ", - "meaning": "granary" - } - ], - "kunyomiExamples": [ - { - "example": "蔵", - "reading": "くら", - "meaning": "warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator" - }, - { - "example": "倉敷", - "reading": "くらしき", - "meaning": "storage charges" - }, - { - "example": "鎌倉", - "reading": "かまくら", - "meaning": "Kamakura (city)" - }, - { - "example": "お蔵", - "reading": "おくら", - "meaning": "shelving (a play, movie, etc.), closing down, cancelling, canceling, shelf (i.e. \"on the shelf\"), rice storehouse of the Edo shogunate" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "个", - "口", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20489_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05009.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5009.gif", - "uri": "http://jisho.org/search/%E5%80%89%23kanji" - }, - { - "query": "巣", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1588", - "strokeCount": 11, - "meaning": "nest, rookery, hive, cobweb, den", - "kunyomi": [ - "す", - "す.くう" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "巣窟", - "reading": "ソウクツ", - "meaning": "den, haunt, hangout, nest, lair" - }, - { - "example": "巣穴", - "reading": "スアナ", - "meaning": "nesting hole, burrow, den" - }, - { - "example": "卵巣", - "reading": "ランソウ", - "meaning": "ovary" - }, - { - "example": "病巣", - "reading": "ビョウソウ", - "meaning": "focus, nidus, lesion" - } - ], - "kunyomiExamples": [ - { - "example": "巣", - "reading": "す", - "meaning": "nest, rookery, breeding place, hive, den, haunt, (spider's) web" - }, - { - "example": "巣食う", - "reading": "すくう", - "meaning": "to build (a nest), to nest, to haunt (a place), to hang out (somewhere)" - }, - { - "example": "古巣", - "reading": "ふるす", - "meaning": "old haunts, former homes" - }, - { - "example": "浮き巣", - "reading": "うきす", - "meaning": "floating nest" - }, - { - "example": "巣食う", - "reading": "すくう", - "meaning": "to build (a nest), to nest, to haunt (a place), to hang out (somewhere)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "尚", - "木", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24035_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05de3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5de3.gif", - "uri": "http://jisho.org/search/%E5%B7%A3%23kanji" - }, - { - "query": "束", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "918", - "strokeCount": 7, - "meaning": "bundle, sheaf, ream, tie in bundles, govern, manage, control", - "kunyomi": [ - "たば", - "たば.ねる", - "つか", - "つか.ねる" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "束", - "reading": "ソク", - "meaning": "lattice, counter for large bundles (e.g. 10 sheafs of rice, 200 sheets of calligraphy paper, 20 whistling arrows, 100 fish), handbreadth (unit for measuring the length of arrows)" - }, - { - "example": "束縛", - "reading": "ソクバク", - "meaning": "restraint, restriction, fetters, yoke, shackles, binding, confinement with rope" - }, - { - "example": "結束", - "reading": "ケッソク", - "meaning": "union, unity, solidarity, bundling, binding, tying, putting on (clothes, armour, etc.)" - }, - { - "example": "口約束", - "reading": "クチヤクソク", - "meaning": "verbal promise, one's word" - } - ], - "kunyomiExamples": [ - { - "example": "束", - "reading": "たば", - "meaning": "bundle, bunch, sheaf" - }, - { - "example": "束ねる", - "reading": "たばねる", - "meaning": "to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one's arms), to put together (one's hands)" - }, - { - "example": "鍵束", - "reading": "かぎたば", - "meaning": "bunch of keys" - }, - { - "example": "麦束", - "reading": "むぎたば", - "meaning": "wheat sheaf, stacked wheat" - }, - { - "example": "束ねる", - "reading": "たばねる", - "meaning": "to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one's arms), to put together (one's hands)" - }, - { - "example": "束", - "reading": "つか", - "meaning": "strut, short vertical post, thickness (of a book minus the cover, a sheaf of paper, etc.), handbreadth, bundle" - }, - { - "example": "束ねる", - "reading": "たばねる", - "meaning": "to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one's arms), to put together (one's hands)" - }, - { - "example": "不束", - "reading": "ふつつか", - "meaning": "rude, inexperienced, stupid, incompetent" - }, - { - "example": "矢束", - "reading": "やつか", - "meaning": "arrow length, bundle of arrows" - }, - { - "example": "束ねる", - "reading": "たばねる", - "meaning": "to tie up in a bundle (e.g. straw, hair, bills, letters), to bundle, to sheathe, to govern, to manage, to control, to administer, to fold (one's arms), to put together (one's hands)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ハ", - "一", - "口", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26463_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0675f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/675f.gif", - "uri": "http://jisho.org/search/%E6%9D%9F%23kanji" - }, - { - "query": "側", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "216", - "strokeCount": 11, - "meaning": "side, lean, oppose, regret", - "kunyomi": [ - "かわ", - "がわ", - "そば" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "側", - "reading": "ソク", - "meaning": "first principle of the Eight Principles of Yong, tiny dash or speck" - }, - { - "example": "側", - "reading": "ソバ", - "meaning": "near, close, beside, vicinity, proximity, besides, while, third person" - }, - { - "example": "最外側", - "reading": "サイガイソク", - "meaning": "outermost (side)" - }, - { - "example": "体側", - "reading": "タイソク", - "meaning": "side of a body" - } - ], - "kunyomiExamples": [ - { - "example": "側", - "reading": "がわ", - "meaning": "side (of something, or taking someone's side), part, (watch) case" - }, - { - "example": "側板", - "reading": "がわいた", - "meaning": "stringer, slanted staircase beam, side plate, side panel, side sheet" - }, - { - "example": "裏っかわ", - "reading": "うらっかわ", - "meaning": "the reverse, other side, lining" - }, - { - "example": "上っ側", - "reading": "うわっかわ", - "meaning": "upper side, surface" - }, - { - "example": "側", - "reading": "がわ", - "meaning": "side (of something, or taking someone's side), part, (watch) case" - }, - { - "example": "側板", - "reading": "がわいた", - "meaning": "stringer, slanted staircase beam, side plate, side panel, side sheet" - }, - { - "example": "縁側", - "reading": "えんがわ", - "meaning": "veranda, porch, balcony, open corridor, bone at the base of a fin, meat at the base of a fin (esp. of a flatfish)" - }, - { - "example": "体制側", - "reading": "たいせいがわ", - "meaning": "the establishment" - }, - { - "example": "側", - "reading": "そば", - "meaning": "near, close, beside, vicinity, proximity, besides, while, third person" - }, - { - "example": "側泳", - "reading": "そばえい", - "meaning": "side stroke" - }, - { - "example": "お側", - "reading": "おそば", - "meaning": "near, close, beside, vicinity, proximity, besides, while, attendant, retainer, vassal" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "刈", - "化", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20596_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05074.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5074.gif", - "uri": "http://jisho.org/search/%E5%81%B4%23kanji" - }, - { - "query": "続", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "141", - "strokeCount": 13, - "meaning": "continue, series, sequel", - "kunyomi": [ - "つづ.く", - "つづ.ける", - "つぐ.ない" - ], - "onyomi": [ - "ゾク", - "ショク", - "コウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "続", - "reading": "ゾク", - "meaning": "continuation, sequel" - }, - { - "example": "続出", - "reading": "ゾクシュツ", - "meaning": "appearing one after another, cropping up one after another, occurring in succession" - }, - { - "example": "断続", - "reading": "ダンゾク", - "meaning": "intermittence, being intermittent, occurring intermittently" - }, - { - "example": "持続", - "reading": "ジゾク", - "meaning": "continuation, persisting, lasting, sustaining, enduring" - }, - { - "example": "続", - "reading": "ゾク", - "meaning": "continuation, sequel" - }, - { - "example": "続日本紀", - "reading": "ショクニホンギ", - "meaning": "Shoku Nihongi (second of the six classical Japanese history texts)" - } - ], - "kunyomiExamples": [ - { - "example": "続く", - "reading": "つづく", - "meaning": "to continue, to last, to go on, to continue (without a break), to be unbroken, to occur again and again, to lead to, to connect to, to adjoin, to come after, to follow, to succeed, to rank next to, to hold out, to keep, to last" - }, - { - "example": "続ける", - "reading": "つづける", - "meaning": "to continue, to keep up, to keep on" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "儿", - "冖", - "士", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32154_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d9a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d9a.gif", - "uri": "http://jisho.org/search/%E7%B6%9A%23kanji" - }, - { - "query": "卒", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "772", - "strokeCount": 8, - "meaning": "graduate, soldier, private, die", - "kunyomi": [ - "そっ.する", - "お.える", - "お.わる", - "ついに", - "にわか" - ], - "onyomi": [ - "ソツ", - "シュツ" - ], - "onyomiExamples": [ - { - "example": "卒", - "reading": "ソツ", - "meaning": "low-ranking soldier, graduation, outgrowing, moving on (from), low-ranking samurai (1870-1872), death (of a noble, etc.)" - }, - { - "example": "卒業", - "reading": "ソツギョウ", - "meaning": "graduation, completion (of a course), moving on (from), outgrowing (something), leaving (a group, company, etc.), quitting" - }, - { - "example": "中卒", - "reading": "チュウソツ", - "meaning": "junior high school graduate, middle school graduate" - }, - { - "example": "大卒", - "reading": "ダイソツ", - "meaning": "university graduate, having graduated from university" - } - ], - "kunyomiExamples": [ - { - "example": "卒する", - "reading": "そっする", - "meaning": "to die, to pass away" - }, - { - "example": "終える", - "reading": "おえる", - "meaning": "to finish, to graduate" - }, - { - "example": "終わる", - "reading": "おわる", - "meaning": "to end, to come to an end, to close, to finish" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "亠", - "人", - "十" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21330_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05352.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5352.gif", - "uri": "http://jisho.org/search/%E5%8D%92%23kanji" - }, - { - "query": "孫", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1388", - "strokeCount": 10, - "meaning": "grandchild, descendants", - "kunyomi": [ - "まご" - ], - "onyomi": [ - "ソン" - ], - "onyomiExamples": [ - { - "example": "孫", - "reading": "ソン", - "meaning": "descendant (usu. of a certain generation), lineage, pedigree, grandchild" - }, - { - "example": "孫子", - "reading": "ソンシ", - "meaning": "Sun Tzu (Chinese military strategist, 544?-496 BCE), The Art of War (military text by Sun Tzu, 512 BC), Sun Bin Bing Fa (military text by Sun Bin)" - }, - { - "example": "愛孫", - "reading": "アイソン", - "meaning": "one's beloved grandchild" - }, - { - "example": "外孫", - "reading": "ガイソン", - "meaning": "grandchild from a daughter married into another family" - } - ], - "kunyomiExamples": [ - { - "example": "孫", - "reading": "まご", - "meaning": "grandchild" - }, - { - "example": "孫子", - "reading": "まごこ", - "meaning": "children and grandchildren, posterity, descendants" - }, - { - "example": "初孫", - "reading": "ういまご", - "meaning": "first grandchild" - }, - { - "example": "内孫", - "reading": "ないそん", - "meaning": "child of one's heir" - } - ], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "ノ", - "子", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23403_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b6b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b6b.gif", - "uri": "http://jisho.org/search/%E5%AD%AB%23kanji" - }, - { - "query": "帯", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "746", - "strokeCount": 10, - "meaning": "sash, belt, obi, zone, region", - "kunyomi": [ - "お.びる", - "おび" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "帯", - "reading": "タイ", - "meaning": "band (e.g. conduction, valence), belt (e.g. Van-Allen, asteroid, etc.)" - }, - { - "example": "帯状疱疹", - "reading": "タイジョウホウシン", - "meaning": "shingles, herpes zoster" - }, - { - "example": "付帯", - "reading": "フタイ", - "meaning": "incidental, ancillary, accessory, secondary, collateral" - }, - { - "example": "亜熱帯", - "reading": "アネッタイ", - "meaning": "subtropics" - } - ], - "kunyomiExamples": [ - { - "example": "帯びる", - "reading": "おびる", - "meaning": "to wear (sword, decoration, etc.), to carry, to be entrusted (e.g. with a mission), to take on, to have a trace of, to be tinged with" - }, - { - "example": "帯", - "reading": "おび", - "meaning": "obi, kimono sash, paper wrapper on books, CDs, etc., band, belt, strip, cingulum, radio or television program broadcast in the same time slot on all or most days" - }, - { - "example": "帯びる", - "reading": "おびる", - "meaning": "to wear (sword, decoration, etc.), to carry, to be entrusted (e.g. with a mission), to take on, to have a trace of, to be tinged with" - }, - { - "example": "単帯", - "reading": "ひとえおび", - "meaning": "unlined sash" - }, - { - "example": "巻き帯", - "reading": "まきおび", - "meaning": "obi that is not tied but merely wrapped around the body" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "一", - "冖", - "巾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24111_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e2f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e2f.gif", - "uri": "http://jisho.org/search/%E5%B8%AF%23kanji" - }, - { - "query": "隊", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "605", - "strokeCount": 12, - "meaning": "regiment, party, company, squad", - "kunyomi": [], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "隊", - "reading": "タイ", - "meaning": "party, group, crew, team, body, company (of troops), corps, unit, squad" - }, - { - "example": "隊員", - "reading": "タイイン", - "meaning": "troops, group members, team members" - }, - { - "example": "陸上自衛隊", - "reading": "リクジョウジエイタイ", - "meaning": "Japan Ground Self-Defense Force, JGSDF" - }, - { - "example": "航空自衛隊", - "reading": "コウクウジエイタイ", - "meaning": "Japan Air Self-Defense Force, JASDF" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "并", - "豕", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38538_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0968a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/968a.gif", - "uri": "http://jisho.org/search/%E9%9A%8A%23kanji" - }, - { - "query": "達", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "500", - "strokeCount": 12, - "meaning": "accomplished, reach, arrive, attain", - "kunyomi": [ - "-たち" - ], - "onyomi": [ - "タツ", - "ダ" - ], - "onyomiExamples": [ - { - "example": "達人", - "reading": "タツジン", - "meaning": "master, expert" - }, - { - "example": "達意", - "reading": "タツイ", - "meaning": "lucidity, intelligibility, perspicuity" - }, - { - "example": "通達", - "reading": "ツウタツ", - "meaning": "notification, official notice, directive (e.g. from higher to lower levels of the administration), being well versed (in something)" - }, - { - "example": "御用達", - "reading": "ゴヨウタシ", - "meaning": "purveyor (to the Imperial Household, etc.), company (or restaurant, place, etc.) that caters to or is popular with a specific clientele" - }, - { - "example": "達", - "reading": "ダチ", - "meaning": "friend" - }, - { - "example": "達頼喇嘛", - "reading": "ダライラマ", - "meaning": "Dalai Lama" - }, - { - "example": "重炭酸曹達", - "reading": "ジュウタンサンソウダ", - "meaning": "sodium bicarbonate, baking soda" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "土", - "并", - "王", - "羊", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36948_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09054.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9054.gif", - "uri": "http://jisho.org/search/%E9%81%94%23kanji" - }, - { - "query": "単", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "586", - "strokeCount": 9, - "meaning": "simple, one, single, merely", - "kunyomi": [ - "ひとえ" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "単", - "reading": "タン", - "meaning": "single, simple, singles (tennis, badminton, etc.), win bet, bet which predicts the winner of a race" - }, - { - "example": "単位", - "reading": "タンイ", - "meaning": "unit, denomination, credit (in school), in units of (e.g. \"in thousands\"), in amounts of" - }, - { - "example": "菜単", - "reading": "サイタン", - "meaning": "menu (at a Chinese restaurant)" - }, - { - "example": "指定単", - "reading": "シテイタン", - "meaning": "designated money trust" - } - ], - "kunyomiExamples": [ - { - "example": "一重", - "reading": "ひとえ", - "meaning": "one layer, single layer, monopetalous, unlined kimono, single-edged eyelid, eyelid with an epicanthic fold, upper eyelid with no fold" - }, - { - "example": "単衣", - "reading": "たんい", - "meaning": "unlined kimono, one kimono, a single kimono" - }, - { - "example": "十二単", - "reading": "じゅうにひとえ", - "meaning": "twelve-layered ceremonial kimono (worn by a court lady), ajuga (Ajuga nipponensis), bugle" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "十", - "尚", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21336_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05358.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5358.gif", - "uri": "http://jisho.org/search/%E5%8D%98%23kanji" - }, - { - "query": "置", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "277", - "strokeCount": 13, - "meaning": "placement, put, set, deposit, leave behind, keep, employ, pawn", - "kunyomi": [ - "お.く", - "-お.き" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "置換", - "reading": "チカン", - "meaning": "substitution, replacement, permutation, substitution, displacement" - }, - { - "example": "置換可能引数データ", - "reading": "チカンカノウヒキスウデータ", - "meaning": "replaceable parameter data" - }, - { - "example": "留置", - "reading": "リュウチ", - "meaning": "detention (usu. during investigation), imprisonment, poundage, custody" - }, - { - "example": "倒置", - "reading": "トウチ", - "meaning": "turning upside down, placing nonessentials before essentials" - } - ], - "kunyomiExamples": [ - { - "example": "置く", - "reading": "おく", - "meaning": "to put, to place, to leave (behind), to establish (an organization, a facility, a position, etc.), to set up, to appoint (someone to a certain position), to hire, to employ, to place (one's trust, one's faith, etc.), to bear (in mind, etc.), to put down a tool (e.g. a pen) hence stopping what one is doing with that tool, to take in (boarders, etc.), to provide lodging in one's house, to separate spatially or temporally, to do something in advance, to leave something in a certain state, to keep something in a certain state" - } - ], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "一", - "十", - "目", - "買", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32622_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f6e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f6e.gif", - "uri": "http://jisho.org/search/%E7%BD%AE%23kanji" - }, - { - "query": "仲", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "919", - "strokeCount": 6, - "meaning": "go-between, relationship", - "kunyomi": [ - "なか" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "中核", - "reading": "チュウカク", - "meaning": "kernel, core, nucleus, center, centre" - }, - { - "example": "仲介", - "reading": "チュウカイ", - "meaning": "agency, intermediation" - }, - { - "example": "保革伯仲", - "reading": "ホカクハクチュウ", - "meaning": "conservatives and reformists being neck and neck, balanced conservative and progressive strengths" - }, - { - "example": "勢力伯仲", - "reading": "セイリョクハクチュウ", - "meaning": "(the two sides) being evenly-matched in influence or power" - } - ], - "kunyomiExamples": [ - { - "example": "仲", - "reading": "なか", - "meaning": "relation, relationship" - }, - { - "example": "仲間", - "reading": "なかま", - "meaning": "company, fellow, colleague, associate, comrade, mate, group, circle of friends, partner, member of the same category" - }, - { - "example": "不仲", - "reading": "ふなか", - "meaning": "discord, (on) bad terms (with)" - }, - { - "example": "犬猿の仲", - "reading": "けんえんのなか", - "meaning": "like cats and dogs, (on) very bad terms, relationship of dogs and monkeys" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20210_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ef2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ef2.gif", - "uri": "http://jisho.org/search/%E4%BB%B2%23kanji" - }, - { - "query": "沖", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "929", - "strokeCount": 7, - "meaning": "open sea, offing, rise high into sky", - "kunyomi": [ - "おき", - "おきつ", - "ちゅう.する", - "わく" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "沖する", - "reading": "チュウスル", - "meaning": "to rise up into the air, to ascend into the sky" - }, - { - "example": "沖積", - "reading": "チュウセキ", - "meaning": "alluvial" - } - ], - "kunyomiExamples": [ - { - "example": "沖", - "reading": "おき", - "meaning": "open sea, Okinawa" - }, - { - "example": "沖合", - "reading": "おきあい", - "meaning": "off the coast, offshore, out at sea" - }, - { - "example": "来沖", - "reading": "らいおき", - "meaning": "coming to Okinawa, visiting Okinawa" - }, - { - "example": "沖する", - "reading": "ちゅうする", - "meaning": "to rise up into the air, to ascend into the sky" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "口", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27798_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c96.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c96.gif", - "uri": "http://jisho.org/search/%E6%B2%96%23kanji" - }, - { - "query": "兆", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1174", - "strokeCount": 6, - "meaning": "portent, 10**12, trillion, sign, omen, symptoms", - "kunyomi": [ - "きざ.す", - "きざ.し" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "兆", - "reading": "チョウ", - "meaning": "10^12, 1,000,000,000,000, trillion, sign, omen, indication, portent" - }, - { - "example": "兆候", - "reading": "チョウコウ", - "meaning": "sign, indication, omen, symptom" - }, - { - "example": "吉兆", - "reading": "キッチョウ", - "meaning": "lucky omen, good omen" - }, - { - "example": "慶兆", - "reading": "ケイチョウ", - "meaning": "sign of happiness, good omen" - } - ], - "kunyomiExamples": [ - { - "example": "兆す", - "reading": "きざす", - "meaning": "to show signs, to have symptoms, to give indications (of), to bud, to germinate, to sprout" - }, - { - "example": "兆し", - "reading": "きざし", - "meaning": "signs, omen, symptoms" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "儿", - "冫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20806_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05146.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5146.gif", - "uri": "http://jisho.org/search/%E5%85%86%23kanji" - }, - { - "query": "低", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "435", - "strokeCount": 7, - "meaning": "lower, short, humble", - "kunyomi": [ - "ひく.い", - "ひく.める", - "ひく.まる" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "低", - "reading": "テイ", - "meaning": "low (level, value, price, etc.)" - }, - { - "example": "低温", - "reading": "テイオン", - "meaning": "low temperature" - }, - { - "example": "高低", - "reading": "コウテイ", - "meaning": "high and low, rise and fall" - }, - { - "example": "西高東低", - "reading": "セイコウトウテイ", - "meaning": "high barometric pressure to the west, low pressure to the east" - } - ], - "kunyomiExamples": [ - { - "example": "低い", - "reading": "ひくい", - "meaning": "low (rank, degree, value, content, quality, etc.), low (position), close to the ground, short (height), deep (voice), in a low key, low (volume)" - }, - { - "example": "低い優先順位", - "reading": "ひくいゆうせんじゅんい", - "meaning": "low priority (e.g. cell)" - }, - { - "example": "低める", - "reading": "ひくめる", - "meaning": "to lower, to be lowered" - }, - { - "example": "低まる", - "reading": "ひくまる", - "meaning": "to lower, to be lowered" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "化", - "氏" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20302_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f4e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f4e.gif", - "uri": "http://jisho.org/search/%E4%BD%8E%23kanji" - }, - { - "query": "底", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "867", - "strokeCount": 8, - "meaning": "bottom, sole, depth, bottom price, base, kind, sort", - "kunyomi": [ - "そこ" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "底", - "reading": "テイ", - "meaning": "base (logarithmic, exponential, number system), radix, base (triangle, cone, cylinder, etc.), type, kind, extent, degree" - }, - { - "example": "底辺", - "reading": "テイヘン", - "meaning": "base (e.g. of a triangle), low class, low in social standing, low level, of poor reputation, base (e.g. of support), foundation, basis" - }, - { - "example": "奥底", - "reading": "オクソコ", - "meaning": "depths, deep place, bottom (of one's heart)" - }, - { - "example": "水底", - "reading": "スイテイ", - "meaning": "sea or river bottom" - } - ], - "kunyomiExamples": [ - { - "example": "底", - "reading": "そこ", - "meaning": "bottom, sole" - }, - { - "example": "底入れ", - "reading": "そこいれ", - "meaning": "bottoming out (of prices)" - }, - { - "example": "水底", - "reading": "すいてい", - "meaning": "sea or river bottom" - }, - { - "example": "奥底", - "reading": "おくそこ", - "meaning": "depths, deep place, bottom (of one's heart)" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "广", - "氏" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24213_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e95.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e95.gif", - "uri": "http://jisho.org/search/%E5%BA%95%23kanji" - }, - { - "query": "的", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "105", - "strokeCount": 8, - "meaning": "bull's eye, mark, target, object, adjective ending", - "kunyomi": [ - "まと" - ], - "onyomi": [ - "テキ" - ], - "onyomiExamples": [ - { - "example": "的", - "reading": "テキ", - "meaning": "-ical, -ive, -al, -ic, -y, -like, -ish, -sort of, -kind of, (something) like, along the lines of, -wise, in terms of, for, from the viewpoint of, from a ... standpoint, as far as ... is concerned, Mr., Ms., Mrs." - }, - { - "example": "的確", - "reading": "テキカク", - "meaning": "precise, accurate, appropriate, exactly the right" - }, - { - "example": "公的", - "reading": "コウテキ", - "meaning": "public, official" - }, - { - "example": "人為的", - "reading": "ジンイテキ", - "meaning": "artificial, unnatural, human-caused (e.g. mistake, error, disaster), man-made" - } - ], - "kunyomiExamples": [ - { - "example": "的", - "reading": "まと", - "meaning": "mark, target, object, subject, focus, point (e.g. of argument)" - }, - { - "example": "的外れ", - "reading": "まとはずれ", - "meaning": "off the mark, off base, misdirected, irrelevant" - }, - { - "example": "憧れの的", - "reading": "あこがれのまと", - "meaning": "object of adoration, longing" - }, - { - "example": "小的", - "reading": "こまと", - "meaning": "small mark, small target" - } - ], - "radical": { - "symbol": "白", - "meaning": "white" - }, - "parts": [ - "丶", - "勹", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30340_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07684.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7684.gif", - "uri": "http://jisho.org/search/%E7%9A%84%23kanji" - }, - { - "query": "典", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1055", - "strokeCount": 8, - "meaning": "code, ceremony, law, rule", - "kunyomi": [], - "onyomi": [ - "テン", - "デン" - ], - "onyomiExamples": [ - { - "example": "典", - "reading": "テン", - "meaning": "ceremony, celebration, law code" - }, - { - "example": "典型", - "reading": "テンケイ", - "meaning": "type, pattern, model, epitome, exemplar, archetype, perfect example" - }, - { - "example": "国語辞典", - "reading": "コクゴジテン", - "meaning": "Japanese-language dictionary, dictionary of a national language" - }, - { - "example": "拉丁", - "reading": "ラテン", - "meaning": "Latin (language), Latin-American, Latin, Latino, Latin, Roman, relating to the literature, culture, etc. of ancient Rome" - }, - { - "example": "香典", - "reading": "コウデン", - "meaning": "gift brought to a funeral (usu. money), funeral offering, condolence gift, incense money" - }, - { - "example": "外典", - "reading": "ガイテン", - "meaning": "Apocrypha (i.e. as opposed to the Biblical canon), non-Buddhist writings (esp. Confucian writings)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "一", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20856_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05178.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5178.gif", - "uri": "http://jisho.org/search/%E5%85%B8%23kanji" - }, - { - "query": "伝", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "416", - "strokeCount": 6, - "meaning": "transmit, go along, walk along, follow, report, communicate, legend, tradition", - "kunyomi": [ - "つた.わる", - "つた.える", - "つた.う", - "つだ.う", - "-づた.い", - "つて" - ], - "onyomi": [ - "デン", - "テン" - ], - "onyomiExamples": [ - { - "example": "伝", - "reading": "デン", - "meaning": "legend, tradition, biography, life, method, way, horseback transportation and communication relay system used in ancient Japan" - }, - { - "example": "伝記", - "reading": "デンキ", - "meaning": "biography, life story" - }, - { - "example": "駅伝", - "reading": "エキデン", - "meaning": "long-distance relay race, stagecoach, post horse" - }, - { - "example": "評伝", - "reading": "ヒョウデン", - "meaning": "critical biography" - }, - { - "example": "転手", - "reading": "テンジュ", - "meaning": "tuning peg (on a biwa or shamisen)" - }, - { - "example": "伝達コスト", - "reading": "テンタツコスト", - "meaning": "transmission cost" - } - ], - "kunyomiExamples": [ - { - "example": "伝わる", - "reading": "つたわる", - "meaning": "to be handed down, to be introduced, to be transmitted, to be circulated, to go along, to walk along" - }, - { - "example": "伝える", - "reading": "つたえる", - "meaning": "to convey, to report, to transmit, to communicate, to tell, to impart, to propagate, to teach, to bequeath" - }, - { - "example": "伝う", - "reading": "つたう", - "meaning": "to go along, to walk along, to follow" - }, - { - "example": "伝", - "reading": "つて", - "meaning": "means of making contact, intermediary, go-between, connections, influence, pull, good offices" - }, - { - "example": "伝言", - "reading": "つてこと", - "meaning": "verbal message, word (from someone), rumour, rumor" - }, - { - "example": "風のつて", - "reading": "かぜのつて", - "meaning": "hearsay, rumor, grapevine" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "二", - "化", - "厶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20253_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f1d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f1d.gif", - "uri": "http://jisho.org/search/%E4%BC%9D%23kanji" - }, - { - "query": "徒", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "817", - "strokeCount": 10, - "meaning": "on foot, junior, emptiness, vanity, futility, uselessness, ephemeral thing, gang, set, party, people", - "kunyomi": [ - "いたずら", - "あだ" - ], - "onyomi": [ - "ト" - ], - "onyomiExamples": [ - { - "example": "徒", - "reading": "ト", - "meaning": "party, set, gang, company, person" - }, - { - "example": "徒歩", - "reading": "トホ", - "meaning": "walking, going on foot" - }, - { - "example": "信徒", - "reading": "シント", - "meaning": "layman, believer, adherent, follower, laity" - }, - { - "example": "学徒", - "reading": "ガクト", - "meaning": "student, follower, students and pupils" - } - ], - "kunyomiExamples": [ - { - "example": "徒", - "reading": "いたずら", - "meaning": "useless, vain, aimless, idle" - }, - { - "example": "いたずら書き", - "reading": "いたずらがき", - "meaning": "scribbling, doodling, graffiti" - }, - { - "example": "徒", - "reading": "あだ", - "meaning": "vain, futile, transient, frivolous" - }, - { - "example": "徒疎か", - "reading": "あだおろそか", - "meaning": "making light of, disregarding" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "土", - "彳", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24466_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f92.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f92.gif", - "uri": "http://jisho.org/search/%E5%BE%92%23kanji" - }, - { - "query": "努", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "749", - "strokeCount": 7, - "meaning": "toil, diligent, as much as possible", - "kunyomi": [ - "つと.める" - ], - "onyomi": [ - "ド" - ], - "onyomiExamples": [ - { - "example": "努", - "reading": "ド", - "meaning": "third principle of the Eight Principles of Yong, downward stroke" - }, - { - "example": "努力", - "reading": "ドリョク", - "meaning": "effort, exertion, endeavour, endeavor, hard work, striving" - } - ], - "kunyomiExamples": [ - { - "example": "努める", - "reading": "つとめる", - "meaning": "to endeavor (endeavour), to try, to strive, to make an effort, to exert oneself, to be diligent, to be committed (to doing something)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "又", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21162_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52aa.gif", - "uri": "http://jisho.org/search/%E5%8A%AA%23kanji" - }, - { - "query": "灯", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1605", - "strokeCount": 6, - "meaning": "lamp, a light, light, counter for lights", - "kunyomi": [ - "ひ", - "ほ-", - "ともしび", - "とも.す", - "あかり" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "灯", - "reading": "トウ", - "meaning": "light, lamp, counter for electric lights" - }, - { - "example": "灯", - "reading": "ヒ", - "meaning": "light, lamp, torch" - }, - { - "example": "消灯", - "reading": "ショウトウ", - "meaning": "putting out the light, switching off the light" - }, - { - "example": "提灯", - "reading": "チョウチン", - "meaning": "paper lantern, Chinese lantern, Japanese lantern" - } - ], - "kunyomiExamples": [ - { - "example": "灯", - "reading": "ひ", - "meaning": "light, lamp, torch" - }, - { - "example": "灯明かり", - "reading": "ひあかり", - "meaning": "lamplight, torchlight" - }, - { - "example": "灯", - "reading": "ひ", - "meaning": "light, lamp, torch" - }, - { - "example": "灯す", - "reading": "ともす", - "meaning": "to light (a candle, lamp, etc.), to turn on (a light)" - }, - { - "example": "明かり", - "reading": "あかり", - "meaning": "light, illumination, glow, gleam, lamp, light" - }, - { - "example": "明かりを消す", - "reading": "あかりをけす", - "meaning": "to turn the lights off" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "一", - "亅", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28783_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0706f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/706f.gif", - "uri": "http://jisho.org/search/%E7%81%AF%23kanji" - }, - { - "query": "働", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "417", - "strokeCount": 13, - "meaning": "work, (kokuji)", - "kunyomi": [ - "はたら.く" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "実働", - "reading": "ジツドウ", - "meaning": "actual work" - }, - { - "example": "就働", - "reading": "シュウドウ", - "meaning": "being employed, working" - } - ], - "kunyomiExamples": [ - { - "example": "働く", - "reading": "はたらく", - "meaning": "to work, to labor, to labour, to function, to operate, to be effective, to work (i.e. ... works), to come into play, to commit (e.g. a crime), to perpetrate, to do, to act, to practise, to practice, to be conjugated" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "力", - "化", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20685_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50cd.gif", - "uri": "http://jisho.org/search/%E5%83%8D%23kanji" - }, - { - "query": "特", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "234", - "strokeCount": 10, - "meaning": "special", - "kunyomi": [], - "onyomi": [ - "トク" - ], - "onyomiExamples": [ - { - "example": "特産", - "reading": "トクサン", - "meaning": "being produced in a particular region, local specialty" - }, - { - "example": "特異", - "reading": "トクイ", - "meaning": "unique, peculiar, singular" - }, - { - "example": "在特", - "reading": "ザイトク", - "meaning": "Special Permission to Stay in Japan, residence status that can be granted to illegal immigrants or overstayers" - }, - { - "example": "超特", - "reading": "チョウトク", - "meaning": "double extra large, 2XL, XXL" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "牛", - "forms": [ - "牜" - ], - "meaning": "cow" - }, - "parts": [ - "土", - "寸", - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29305_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07279.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7279.gif", - "uri": "http://jisho.org/search/%E7%89%B9%23kanji" - }, - { - "query": "徳", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1091", - "strokeCount": 14, - "meaning": "benevolence, virtue, goodness, commanding respect", - "kunyomi": [], - "onyomi": [ - "トク" - ], - "onyomiExamples": [ - { - "example": "徳", - "reading": "トク", - "meaning": "virtue, benevolence, profit, benefit, advantage" - }, - { - "example": "徳義", - "reading": "トクギ", - "meaning": "morals, morality, sincerity" - }, - { - "example": "高徳", - "reading": "コウトク", - "meaning": "eminent virtue" - }, - { - "example": "大徳", - "reading": "ダイトク", - "meaning": "great virtue, virtuous priest, priest, rich person" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "十", - "彳", - "心", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24499_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fb3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fb3.gif", - "uri": "http://jisho.org/search/%E5%BE%B3%23kanji" - }, - { - "query": "栃", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "1427", - "strokeCount": 9, - "meaning": "horse chestnut, (kokuji)", - "kunyomi": [ - "とち" - ], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "橡", - "reading": "とちのき", - "meaning": "Japanese horse chestnut (Aesculus turbinata)" - }, - { - "example": "栃木", - "reading": "とちぎ", - "meaning": "Tochigi (city, prefecture)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "厂", - "斤", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26627_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06803.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6803.gif", - "uri": "http://jisho.org/search/%E6%A0%83%23kanji" - }, - { - "query": "奈", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "841", - "strokeCount": 8, - "meaning": "Nara, what?", - "kunyomi": [ - "いかん", - "からなし" - ], - "onyomi": [ - "ナ", - "ナイ", - "ダイ" - ], - "onyomiExamples": [ - { - "example": "奈良", - "reading": "ナラ", - "meaning": "Nara (city, prefecture)" - }, - { - "example": "な行", - "reading": "ナギョウ", - "meaning": "the \"na\" column of the Japanese syllabary table (na, ni, nu, ne, no)" - }, - { - "example": "眼仁奈", - "reading": "メジナ", - "meaning": "largescale blackfish (Girella punctata)" - }, - { - "example": "輪奈", - "reading": "ワナ", - "meaning": "loop (of thread, string, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "如何", - "reading": "いかん", - "meaning": "how, in what way, circumstances" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "二", - "大", - "小", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22856_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05948.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5948.gif", - "uri": "http://jisho.org/search/%E5%A5%88%23kanji" - }, - { - "query": "梨", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1331", - "strokeCount": 11, - "meaning": "pear tree", - "kunyomi": [ - "なし" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "梨園", - "reading": "リエン", - "meaning": "theatrical world" - }, - { - "example": "梨果", - "reading": "リカ", - "meaning": "pome" - }, - { - "example": "鳳梨", - "reading": "ホウリ", - "meaning": "pineapple" - }, - { - "example": "阿闍梨", - "reading": "アジャリ", - "meaning": "high monk (esp. one of correct conduct who acts as a role model for his pupils), high priest, initiate (esp. as a formal rank in Tendai and Shingon), monk who conducts religious services" - } - ], - "kunyomiExamples": [ - { - "example": "梨", - "reading": "なし", - "meaning": "nashi (Pyrus pyrifolia, esp. var. culta), Japanese pear, Asian pear, sand pear, apple pear" - }, - { - "example": "梨子地", - "reading": "なしじ", - "meaning": "nashiji (lacquering technique using gold or silver powder or flakes)" - }, - { - "example": "西洋梨", - "reading": "せいようなし", - "meaning": "European pear (Pyrus communis)" - }, - { - "example": "青梨", - "reading": "あおなし", - "meaning": "Harbin pear (Pyrus ussuriensis var. hondoensis), Ussurian pear, Chinese pear" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "刈", - "木", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26792_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068a8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68a8.gif", - "uri": "http://jisho.org/search/%E6%A2%A8%23kanji" - }, - { - "query": "熱", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "700", - "strokeCount": 15, - "meaning": "heat, temperature, fever, mania, passion", - "kunyomi": [ - "あつ.い" - ], - "onyomi": [ - "ネツ" - ], - "onyomiExamples": [ - { - "example": "熱", - "reading": "ネツ", - "meaning": "heat, fever, temperature, zeal, passion, enthusiasm, mania, craze, rage" - }, - { - "example": "熱意", - "reading": "ネツイ", - "meaning": "zeal, enthusiasm, ardor, ardour" - }, - { - "example": "発熱", - "reading": "ハツネツ", - "meaning": "generation of heat, (attack of) fever, pyrexia" - }, - { - "example": "解熱", - "reading": "ゲネツ", - "meaning": "lowering a fever, alleviation of fever" - } - ], - "kunyomiExamples": [ - { - "example": "熱い", - "reading": "あつい", - "meaning": "hot (thing), passionate (feelings, etc.), ardent, hot (e.g. gaze), hot (e.g. temper), zealous, enthusiastic, fired up, intense, severe, extreme, hot (topic), of interest" - }, - { - "example": "熱い暗黒物質", - "reading": "あついあんこくぶっしつ", - "meaning": "hot dark matter" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "丶", - "九", - "儿", - "土", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29105_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/071b1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/71b1.gif", - "uri": "http://jisho.org/search/%E7%86%B1%23kanji" - }, - { - "query": "念", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "390", - "strokeCount": 8, - "meaning": "wish, sense, idea, thought, feeling, desire, attention", - "kunyomi": [], - "onyomi": [ - "ネン" - ], - "onyomiExamples": [ - { - "example": "念", - "reading": "ネン", - "meaning": "sense, idea, thought, feeling, desire, concern, attention, care" - }, - { - "example": "念願", - "reading": "ネンガン", - "meaning": "one's heart's desire, one's dearest wish" - }, - { - "example": "執念", - "reading": "シュウネン", - "meaning": "tenacity, persistence, obsession, implacability" - }, - { - "example": "通念", - "reading": "ツウネン", - "meaning": "common idea, common wisdom, generally accepted idea" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "个", - "心", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24565_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ff5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ff5.gif", - "uri": "http://jisho.org/search/%E5%BF%B5%23kanji" - }, - { - "query": "敗", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "516", - "strokeCount": 11, - "meaning": "failure, defeat, reversal", - "kunyomi": [ - "やぶ.れる" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "敗", - "reading": "ハイ", - "meaning": "loss, defeat, counter for losses" - }, - { - "example": "敗因", - "reading": "ハイイン", - "meaning": "cause of defeat" - }, - { - "example": "惜敗", - "reading": "セキハイ", - "meaning": "regrettable defeat, defeat by a narrow margin" - }, - { - "example": "零敗", - "reading": "レイハイ", - "meaning": "going undefeated, losing without scoring a point, whitewash, being shut out" - } - ], - "kunyomiExamples": [ - { - "example": "敗れる", - "reading": "やぶれる", - "meaning": "to be defeated, to be beaten, to be unsuccessful, to lose" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "ハ", - "乞", - "攵", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25943_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06557.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6557.gif", - "uri": "http://jisho.org/search/%E6%95%97%23kanji" - }, - { - "query": "梅", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1232", - "strokeCount": 10, - "meaning": "plum", - "kunyomi": [ - "うめ" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "梅雨", - "reading": "ツユ", - "meaning": "rainy season (in Japan usu. from early June to mid-July), rain during the rainy season" - }, - { - "example": "梅雨前線", - "reading": "バイウゼンセン", - "meaning": "seasonal rain front" - }, - { - "example": "松竹梅", - "reading": "ショウチクバイ", - "meaning": "pine, bamboo and plum (an auspicious grouping), high, middle and low (ranking), top, middle and bottom, upper, medium, lower, first, second and third (class)" - }, - { - "example": "紅梅", - "reading": "コウバイ", - "meaning": "red-blossomed plum tree, red Japanese apricot" - } - ], - "kunyomiExamples": [ - { - "example": "梅", - "reading": "うめ", - "meaning": "Japanese apricot (Prunus mume), Japanese plum, ume, Chinese plum, lowest (of a three-tier ranking system)" - }, - { - "example": "梅干し", - "reading": "うめぼし", - "meaning": "umeboshi, pickled dried ume, pickled dried plum" - }, - { - "example": "青梅", - "reading": "あおうめ", - "meaning": "unripe plum" - }, - { - "example": "紅梅", - "reading": "こうばい", - "meaning": "red-blossomed plum tree, red Japanese apricot" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "乞", - "木", - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26757_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06885.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6885.gif", - "uri": "http://jisho.org/search/%E6%A2%85%23kanji" - }, - { - "query": "博", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "794", - "strokeCount": 12, - "meaning": "Dr., command, esteem, win acclaim, Ph.D., exposition, fair", - "kunyomi": [], - "onyomi": [ - "ハク", - "バク" - ], - "onyomiExamples": [ - { - "example": "博", - "reading": "ハク", - "meaning": "doctor, PhD, exposition, fair, exhibition" - }, - { - "example": "博物", - "reading": "ハクブツ", - "meaning": "natural history, wide learning, broad area of learning" - }, - { - "example": "文博", - "reading": "ブンハク", - "meaning": "doctor of literature" - }, - { - "example": "医博", - "reading": "イハク", - "meaning": "doctor of medicine, MD" - }, - { - "example": "博", - "reading": "ハク", - "meaning": "doctor, PhD, exposition, fair, exhibition" - }, - { - "example": "博徒", - "reading": "バクト", - "meaning": "gambler" - }, - { - "example": "賭博", - "reading": "トバク", - "meaning": "gambling" - }, - { - "example": "伝助賭博", - "reading": "デンスケトバク", - "meaning": "deceptive betting game (such as the shell game), street fraud, trickery, densuke, roulette-like deceptive street gambling" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "丶", - "十", - "寸", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21338_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0535a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/535a.gif", - "uri": "http://jisho.org/search/%E5%8D%9A%23kanji" - }, - { - "query": "阪", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "503", - "strokeCount": 7, - "meaning": "heights, slope", - "kunyomi": [ - "さか" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "阪神", - "reading": "ハンシン", - "meaning": "Osaka-Kobe, Hanshin (company name: railway, dept. store, baseball team, etc.)" - }, - { - "example": "阪神大震災", - "reading": "ハンシンダイシンサイ", - "meaning": "the Great Hanshin Earthquake (January 17, 1995)" - }, - { - "example": "京阪", - "reading": "ケイハン", - "meaning": "Kyoto-Osaka, Kyoto and Osaka" - }, - { - "example": "在阪", - "reading": "ザイハン", - "meaning": "being based in Osaka, being in Osaka" - } - ], - "kunyomiExamples": [ - { - "example": "坂", - "reading": "さか", - "meaning": "slope, incline, hill, milestone, (age) mark" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "厂", - "又", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38442_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0962a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/962a.gif", - "uri": "http://jisho.org/search/%E9%98%AA%23kanji" - }, - { - "query": "飯", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1046", - "strokeCount": 12, - "meaning": "meal, boiled rice", - "kunyomi": [ - "めし" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "飯店", - "reading": "ハンテン", - "meaning": "Chinese restaurant" - }, - { - "example": "飯切", - "reading": "ハンギリ", - "meaning": "flat-bottomed wooden bowl for preparing sushi rice" - }, - { - "example": "米飯", - "reading": "ベイハン", - "meaning": "cooked rice" - }, - { - "example": "赤飯", - "reading": "セキハン", - "meaning": "red rice (beans and mochi) for auspicious occasions" - } - ], - "kunyomiExamples": [ - { - "example": "飯", - "reading": "めし", - "meaning": "cooked rice, meal, food, one's living, livelihood" - }, - { - "example": "飯売女", - "reading": "めしうりおんな", - "meaning": "maid at an inn who served clients and worked as a prostitute (Edo period)" - }, - { - "example": "握り飯", - "reading": "にぎりめし", - "meaning": "rice ball" - }, - { - "example": "冷や飯", - "reading": "ひやめし", - "meaning": "cold rice, hanger-on, dependent, disgraced former actor" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "厂", - "又", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098ef.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98ef.gif", - "uri": "http://jisho.org/search/%E9%A3%AF%23kanji" - }, - { - "query": "飛", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "580", - "strokeCount": 9, - "meaning": "fly, skip (pages), scatter", - "kunyomi": [ - "と.ぶ", - "と.ばす", - "-と.ばす" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "飛", - "reading": "ヒ", - "meaning": "rook" - }, - { - "example": "飛球", - "reading": "ヒキュウ", - "meaning": "fly (ball)" - }, - { - "example": "犠飛", - "reading": "ギヒ", - "meaning": "sacrifice fly" - }, - { - "example": "中飛", - "reading": "チュウヒ", - "meaning": "center fly, centre fly" - } - ], - "kunyomiExamples": [ - { - "example": "飛ぶ", - "reading": "とぶ", - "meaning": "to fly, to soar, to jump, to leap, to spring, to bound, to hop, to spatter, to scatter, to splash, to fly (e.g. of sparks), to hurry, to rush, to flee, to run off, to escape, to disappear, to vanish, to fade, to thin out, to break off, to come off, to fall off, to blow (of a fuse), to be sent out (of an order), to fly (of false rumours, catcalls, etc.), to come flying (of a punch, kick, etc.), to be missing (of a page, stitch, etc.), to skip, to jump (e.g. of a conversation)" - }, - { - "example": "飛ぶ鳥", - "reading": "とぶとり", - "meaning": "flying bird, soaring bird" - }, - { - "example": "飛ばす", - "reading": "とばす", - "meaning": "to let fly, to make fly, to send flying, to blow off (e.g. in the wind), to launch, to fire, to hurl, to shoot, to skip over, to leave out, to omit, to drop (e.g. a stitch), to run fast, to drive fast, to gallop, to spray, to splash, to spatter, to say without reservation, to call out (e.g. a jeer), to rattle off (e.g. a joke), to spread (e.g. a rumour), to circulate, to send out (a message), to issue (e.g. an appeal), to transfer (to a less important post), to send away (e.g. to a provincial branch), to demote, to dispatch quickly (e.g. a reporter), to get rid of, to burn off (alcohol), to attack (e.g. with a leg manoeuvre), to do vigorously, to do roughly, to do energetically" - } - ], - "radical": { - "symbol": "飛", - "meaning": "fly" - }, - "parts": [ - "飛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39131_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98db.gif", - "uri": "http://jisho.org/search/%E9%A3%9B%23kanji" - }, - { - "query": "必", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "265", - "strokeCount": 5, - "meaning": "invariably, certain, inevitable", - "kunyomi": [ - "かなら.ず" - ], - "onyomi": [ - "ヒツ" - ], - "onyomiExamples": [ - { - "example": "必", - "reading": "ヒツ", - "meaning": "definiteness, certainty" - }, - { - "example": "必需", - "reading": "ヒツジュ", - "meaning": "necessary" - } - ], - "kunyomiExamples": [ - { - "example": "必ず", - "reading": "かならず", - "meaning": "always, without exception, necessarily, certainly, without fail, positively, invariably" - }, - { - "example": "必ずしも", - "reading": "かならずしも", - "meaning": "(not) always, (not) necessarily, (not) entirely, (not) all" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24517_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fc5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fc5.gif", - "uri": "http://jisho.org/search/%E5%BF%85%23kanji" - }, - { - "query": "票", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "489", - "strokeCount": 11, - "meaning": "ballot, label, ticket, sign", - "kunyomi": [], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "票", - "reading": "ヒョウ", - "meaning": "vote, ballot, label, ticket, tag, stub" - }, - { - "example": "票田", - "reading": "ヒョウデン", - "meaning": "(favorable voting) constituency (favourable)" - }, - { - "example": "不在者投票", - "reading": "フザイシャトウヒョウ", - "meaning": "absentee ballot, absentee voting" - }, - { - "example": "無投票", - "reading": "ムトウヒョウ", - "meaning": "without a vote" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "二", - "小", - "示", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31080_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07968.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7968.gif", - "uri": "http://jisho.org/search/%E7%A5%A8%23kanji" - }, - { - "query": "標", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "686", - "strokeCount": 15, - "meaning": "signpost, seal, mark, stamp, imprint, symbol, emblem, trademark, evidence, souvenir, target", - "kunyomi": [ - "しるべ", - "しるし" - ], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "標", - "reading": "ヒョウ", - "meaning": "mark, sign, target, plain wood showing the seating order of officials at court, nameplate" - }, - { - "example": "標高", - "reading": "ヒョウコウ", - "meaning": "elevation, height above sea level" - }, - { - "example": "商標", - "reading": "ショウヒョウ", - "meaning": "trademark" - }, - { - "example": "登録商標", - "reading": "トウロクショウヒョウ", - "meaning": "registered trademark" - } - ], - "kunyomiExamples": [ - { - "example": "導", - "reading": "しるべ", - "meaning": "guidance, guide" - }, - { - "example": "印", - "reading": "しるし", - "meaning": "mark, sign, symbol, emblem, badge, crest, flag, evidence, proof, token (of gratitude, affection, etc.)" - }, - { - "example": "標旗", - "reading": "ひょうき", - "meaning": "identification, marking flag" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "二", - "小", - "木", - "示", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27161_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a19.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a19.gif", - "uri": "http://jisho.org/search/%E6%A8%99%23kanji" - }, - { - "query": "不", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "101", - "strokeCount": 4, - "meaning": "negative, non-, bad, ugly, clumsy", - "kunyomi": [], - "onyomi": [ - "フ", - "ブ" - ], - "onyomiExamples": [ - { - "example": "不", - "reading": "フ", - "meaning": "un-, non-, negative prefix" - }, - { - "example": "不安", - "reading": "フアン", - "meaning": "anxiety, uneasiness, worry, apprehension, fear, insecurity, suspense" - }, - { - "example": "意味不", - "reading": "イミフ", - "meaning": "of uncertain meaning, ambiguous, cryptic, nonsensical, incomprehensible, perplexing" - }, - { - "example": "無", - "reading": "ブ", - "meaning": "un-, non-, bad ..., poor ..." - }, - { - "example": "不気味", - "reading": "ブキミ", - "meaning": "weird, ominous, eerie, uncanny, ghastly" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "ノ", - "一", - "丶", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19981_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e0d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e0d.gif", - "uri": "http://jisho.org/search/%E4%B8%8D%23kanji" - }, - { - "query": "夫", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "335", - "strokeCount": 4, - "meaning": "husband, man", - "kunyomi": [ - "おっと", - "それ" - ], - "onyomi": [ - "フ", - "フウ", - "ブ" - ], - "onyomiExamples": [ - { - "example": "夫妻", - "reading": "フサイ", - "meaning": "husband and wife, married couple" - }, - { - "example": "夫婦", - "reading": "フウフ", - "meaning": "married couple, husband and wife, man and wife, his and hers, pair of objects, one larger (for man), one smaller (for woman)" - }, - { - "example": "継夫", - "reading": "ケイフ", - "meaning": "second husband" - }, - { - "example": "炊夫", - "reading": "スイフ", - "meaning": "male cook" - }, - { - "example": "夫婦", - "reading": "フウフ", - "meaning": "married couple, husband and wife, man and wife, his and hers, pair of objects, one larger (for man), one smaller (for woman)" - }, - { - "example": "夫子", - "reading": "フウシ", - "meaning": "teacher, wise man, sage, master, Confucius, the person concerned, you, he, she" - }, - { - "example": "一工夫", - "reading": "ヒトクフウ", - "meaning": "contrivance, bit of fiddling, little ingenuity, bit more (e.g. food)" - }, - { - "example": "創意工夫", - "reading": "ソウイクフウ", - "meaning": "being imaginative and creative, creative originality" - }, - { - "example": "夫人", - "reading": "フジン", - "meaning": "wife, Mrs, madam, wife of a nobleman (aristocrat, etc.), consort of the emperor" - }, - { - "example": "賦役", - "reading": "フエキ", - "meaning": "slave labour, slave labor, compulsory service, forced labour, forced labor, exacted service" - }, - { - "example": "大夫", - "reading": "ダイブ", - "meaning": "high steward, grand master" - }, - { - "example": "右京大夫", - "reading": "ウキョウノダイブ", - "meaning": "Ukyō no Daibu (title under the ritsuryo system), high steward" - } - ], - "kunyomiExamples": [ - { - "example": "夫", - "reading": "おっと", - "meaning": "husband" - }, - { - "example": "夫選び", - "reading": "おっとえらび", - "meaning": "choosing a husband" - }, - { - "example": "DV夫", - "reading": "ディーブイおっと", - "meaning": "(physically) abusive husband, wife beater" - }, - { - "example": "元夫", - "reading": "もとおっと", - "meaning": "ex-husband, former husband" - }, - { - "example": "夫れ夫れ", - "reading": "それぞれ", - "meaning": "each, respectively" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "二", - "人", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22827_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0592b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/592b.gif", - "uri": "http://jisho.org/search/%E5%A4%AB%23kanji" - }, - { - "query": "付", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "322", - "strokeCount": 5, - "meaning": "adhere, attach, refer to, append", - "kunyomi": [ - "つ.ける", - "-つ.ける", - "-づ.ける", - "つ.け", - "つ.け-", - "-つ.け", - "-づ.け", - "-づけ", - "つ.く", - "-づ.く", - "つ.き", - "-つ.き", - "-つき", - "-づ.き", - "-づき" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "付近", - "reading": "フキン", - "meaning": "neighbourhood, neighborhood, vicinity, environs, approaching" - }, - { - "example": "付加", - "reading": "フカ", - "meaning": "addition, annexation, appendage" - }, - { - "example": "貼付", - "reading": "チョウフ", - "meaning": "pasting, sticking, attaching, affixing, appending" - }, - { - "example": "回付", - "reading": "カイフ", - "meaning": "transmitting, referring to, passing on" - } - ], - "kunyomiExamples": [ - { - "example": "付ける", - "reading": "つける", - "meaning": "to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit" - }, - { - "example": "付け", - "reading": "つけ", - "meaning": "bill, bill of sale, payment invoice, tab (for later payment), credit, contact move (in go), direct attack to an enemy stone, sound effect produced by striking with clappers a wooden board in kabuki, letter, reason, motive, pretext, one's fortune, one's luck" - }, - { - "example": "付け根", - "reading": "つけね", - "meaning": "root, joint, base, crotch" - }, - { - "example": "振り付け", - "reading": "ふりつけ", - "meaning": "choreography, dance composition, dance coaching" - }, - { - "example": "締め付け", - "reading": "しめつけ", - "meaning": "pressure, clamping, tightening, fastening" - }, - { - "example": "付く", - "reading": "つく", - "meaning": "to be attached, to be connected with, to adhere, to stick, to cling, to remain imprinted, to scar, to stain, to dye, to bear (fruit, interest, etc.), to be acquired (of a habit, ability, etc.), to increase (of strength, etc.), to take root, to accompany, to attend, to follow, to study with, to side with, to belong to, to possess, to haunt, to be lit, to be lighted, to be settled, to be resolved, to be decided, to be given (of a name, price, etc.), to be sensed, to be perceived, to be lucky, to become (a state, condition, etc.)" - }, - { - "example": "付喪神", - "reading": "つくもがみ", - "meaning": "artifact spirit, in folk belief, long-lived objects (household objects, living beings, nature, etc.) become inhabited by a spirit" - }, - { - "example": "付き", - "reading": "つき", - "meaning": "furnished with, including, attached to, impression, appearance, luck, sociality, under, assistant (e.g. to a manager), soup base" - }, - { - "example": "付き合い", - "reading": "つきあい", - "meaning": "association, socializing, socialising, fellowship" - }, - { - "example": "紋付", - "reading": "もんつき", - "meaning": "clothing (e.g. kimono) decorated with one's family crest" - }, - { - "example": "原付", - "reading": "げんつき", - "meaning": "motorized two-wheeled vehicle (with a displacement of less than 50cc), scooter, moped" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20184_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ed8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ed8.gif", - "uri": "http://jisho.org/search/%E4%BB%98%23kanji" - }, - { - "query": "府", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "170", - "strokeCount": 8, - "meaning": "borough, urban prefecture, govt office, representative body, storehouse", - "kunyomi": [], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "府", - "reading": "フ", - "meaning": "(metropolitan) prefecture (of Osaka and Kyoto), the centre or seat (of) (center), (government) office, fu, historical administrative unit in China, Korea and Vietnam" - }, - { - "example": "府警", - "reading": "フケイ", - "meaning": "prefectural police" - }, - { - "example": "総理府", - "reading": "ソウリフ", - "meaning": "Prime Minister's office, PMO" - }, - { - "example": "無政府", - "reading": "ムセイフ", - "meaning": "anarchy" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "化", - "寸", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24220_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e9c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e9c.gif", - "uri": "http://jisho.org/search/%E5%BA%9C%23kanji" - }, - { - "query": "阜", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "1532", - "strokeCount": 8, - "meaning": "hill, mound, left village radical (no. 170)", - "kunyomi": [], - "onyomi": [ - "フ", - "フウ" - ], - "onyomiExamples": [ - { - "example": "埠頭", - "reading": "フトウ", - "meaning": "pier, wharf, quay, dock" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "十", - "口", - "阡", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38428_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0961c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/961c.gif", - "uri": "http://jisho.org/search/%E9%98%9C%23kanji" - }, - { - "query": "富", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "644", - "strokeCount": 12, - "meaning": "wealth, enrich, abundant", - "kunyomi": [ - "と.む", - "とみ" - ], - "onyomi": [ - "フ", - "フウ" - ], - "onyomiExamples": [ - { - "example": "富士山", - "reading": "フジサン", - "meaning": "Mount Fuji, Mt. Fuji, Fujiyama, Fuji-san" - }, - { - "example": "富豪", - "reading": "フゴウ", - "meaning": "wealthy person, millionaire" - }, - { - "example": "種類豊富", - "reading": "シュルイホウフ", - "meaning": "rich in variety, diverse, wide-ranging, multifarious" - }, - { - "example": "知識豊富", - "reading": "チシキホウフ", - "meaning": "knowledgeable" - }, - { - "example": "富者", - "reading": "フシャ", - "meaning": "rich person, millionaire, the wealthy" - }, - { - "example": "富貴", - "reading": "フウキ", - "meaning": "riches and honours (honors), wealth and rank" - } - ], - "kunyomiExamples": [ - { - "example": "富む", - "reading": "とむ", - "meaning": "to be rich in, to abound in, to be abundant in, to be full of, to be rich, to be wealthy" - }, - { - "example": "富", - "reading": "とみ", - "meaning": "riches, wealth, fortune, resources, lottery" - }, - { - "example": "富くじ", - "reading": "とみくじ", - "meaning": "lottery" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "一", - "口", - "宀", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23500_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bcc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bcc.gif", - "uri": "http://jisho.org/search/%E5%AF%8C%23kanji" - }, - { - "query": "副", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "360", - "strokeCount": 11, - "meaning": "vice-, assistant, aide, duplicate, copy", - "kunyomi": [], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "副", - "reading": "フク", - "meaning": "assistant, associate, vice-, sub-, deputy, substitute, auxiliary, supplementary, additional, collateral, duplicate, copy, adverb" - }, - { - "example": "副作用", - "reading": "フクサヨウ", - "meaning": "side effect, adverse reaction" - }, - { - "example": "正副", - "reading": "セイフク", - "meaning": "original and copy (of a document), principal and vice- (e.g. chairman and vice-chairman)" - }, - { - "example": "関副", - "reading": "カンフク", - "meaning": "relative adverb" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "一", - "刈", - "口", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21103_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0526f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/526f.gif", - "uri": "http://jisho.org/search/%E5%89%AF%23kanji" - }, - { - "query": "兵", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "522", - "strokeCount": 7, - "meaning": "soldier, private, troops, army, warfare, strategy, tactics", - "kunyomi": [ - "つわもの" - ], - "onyomi": [ - "ヘイ", - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "兵", - "reading": "ヘイ", - "meaning": "(common) soldier, rank and file, army, troops, warfare, strategy" - }, - { - "example": "兵員", - "reading": "ヘイイン", - "meaning": "military strength, military personnel" - }, - { - "example": "伏兵", - "reading": "フクヘイ", - "meaning": "ambush, troops in ambush, unexpected opposition, unexpected obstacle" - }, - { - "example": "工兵", - "reading": "コウヘイ", - "meaning": "combat engineer, military engineer, combat engineering, military engineering" - }, - { - "example": "兵", - "reading": "ヒョウ", - "meaning": "pawn" - }, - { - "example": "兵法", - "reading": "ヘイホウ", - "meaning": "art of war, strategy, tactics" - }, - { - "example": "小兵", - "reading": "コヒョウ", - "meaning": "small build, small stature" - }, - { - "example": "大兵", - "reading": "ダイヒョウ", - "meaning": "of great build or stature, great number of soldiers, great army" - } - ], - "kunyomiExamples": [ - { - "example": "兵", - "reading": "つわもの", - "meaning": "warrior, soldier, courageous person, strong person" - }, - { - "example": "古強者", - "reading": "ふるつわもの", - "meaning": "feudal warrior, samurai, old soldier, veteran, old hand" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "一", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20853_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05175.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5175.gif", - "uri": "http://jisho.org/search/%E5%85%B5%23kanji" - }, - { - "query": "別", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "214", - "strokeCount": 7, - "meaning": "separate, branch off, diverge, fork, another, extra, specially", - "kunyomi": [ - "わか.れる", - "わ.ける" - ], - "onyomi": [ - "ベツ" - ], - "onyomiExamples": [ - { - "example": "別", - "reading": "ベツ", - "meaning": "distinction, difference, discrimination, separate, different, another, extra, exception, exclusion, classified by, ranked by, according to" - }, - { - "example": "別院", - "reading": "ベツイン", - "meaning": "branch temple" - }, - { - "example": "無差別", - "reading": "ムサベツ", - "meaning": "indiscrimination, without discrimination, indiscriminate" - }, - { - "example": "告別", - "reading": "コクベツ", - "meaning": "farewell, leave-taking" - } - ], - "kunyomiExamples": [ - { - "example": "別れる", - "reading": "わかれる", - "meaning": "to part (usu. of people), to part from, to part with, to be apart from, to separate (of a couple), to break up, to divorce, to lose (e.g. one's mother), to be bereaved" - }, - { - "example": "分ける", - "reading": "わける", - "meaning": "to divide (into), to split (into), to part, to separate, to divide up, to classify, to sort out, to divide out, to share, to distribute, to deal out, to dish out, to distinguish, to discriminate, to differentiate (between), to break up (a fight), to mediate, to call a draw, to tie, to push one's way through (a crowd), to sell" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "力", - "勹", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21029_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05225.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5225.gif", - "uri": "http://jisho.org/search/%E5%88%A5%23kanji" - }, - { - "query": "辺", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "428", - "strokeCount": 5, - "meaning": "environs, boundary, border, vicinity", - "kunyomi": [ - "あた.り", - "ほと.り", - "-べ" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "辺", - "reading": "ヘン", - "meaning": "area, vicinity, region, side, edge, circumstances" - }, - { - "example": "辺境", - "reading": "ヘンキョウ", - "meaning": "remote region, frontier (district), border(land)" - }, - { - "example": "普遍", - "reading": "フヘン", - "meaning": "universal, general, ubiquitous, omnipresent" - }, - { - "example": "どの辺", - "reading": "ドノヘン", - "meaning": "whereabout, about where, how much" - } - ], - "kunyomiExamples": [ - { - "example": "辺り", - "reading": "あたり", - "meaning": "(in the) neighbourhood, neighborhood, vicinity, nearby, surroundings, around, about, or thereabouts, for instance, say, such as" - }, - { - "example": "辺り一面", - "reading": "あたりいちめん", - "meaning": "all around, as far as the eye can see" - }, - { - "example": "御辺", - "reading": "ごへん", - "meaning": "you" - }, - { - "example": "辺", - "reading": "ほとり", - "meaning": "side (esp. of a waterbody), edge, bank, shore" - }, - { - "example": "片辺", - "reading": "かたほとり", - "meaning": "corner, remote country place" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "刀", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36794_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fba.gif", - "uri": "http://jisho.org/search/%E8%BE%BA%23kanji" - }, - { - "query": "変", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "238", - "strokeCount": 9, - "meaning": "unusual, change, strange", - "kunyomi": [ - "か.わる", - "か.わり", - "か.える" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "変", - "reading": "ヘン", - "meaning": "strange, odd, peculiar, weird, curious, queer, eccentric, funny, suspicious, fishy, unexpected, change, incident, disturbance, disaster, accident, flat" - }, - { - "example": "変化", - "reading": "ヘンカ", - "meaning": "change, variation, alteration, mutation, transition, transformation, transfiguration, metamorphosis, variety, diversity, inflection, declension, conjugation, sidestepping" - }, - { - "example": "政変", - "reading": "セイヘン", - "meaning": "political disturbance, political change, change of government, political upheaval, overthrowing of a government, coup d'état, coup, revolution" - }, - { - "example": "異変", - "reading": "イヘン", - "meaning": "unusual event, strange occurrence, strange phenomenon, something abnormal, change (for the worse), accident, disaster" - } - ], - "kunyomiExamples": [ - { - "example": "変わる", - "reading": "かわる", - "meaning": "to change, to be transformed, to be altered, to vary, to move to, to be different, to be uncommon, to be unusual" - }, - { - "example": "変わり", - "reading": "かわり", - "meaning": "change, alteration, difference, distinction, something wrong, abnormality, unusual event, accident, incident" - }, - { - "example": "変わり種", - "reading": "かわりだね", - "meaning": "something out of the ordinary, variant, variety, exception, novelty, person with an unusual character or background, unique figure, exceptional type, eccentric, oddball" - }, - { - "example": "変える", - "reading": "かえる", - "meaning": "to change, to alter, to transform, to convert, to turn, to vary, to reform, to revise, to amend" - } - ], - "radical": { - "symbol": "夂", - "meaning": "go" - }, - "parts": [ - "亠", - "夂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22793_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05909.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5909.gif", - "uri": "http://jisho.org/search/%E5%A4%89%23kanji" - }, - { - "query": "便", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "729", - "strokeCount": 9, - "meaning": "convenience, facility, excrement, feces, letter, chance", - "kunyomi": [ - "たよ.り" - ], - "onyomi": [ - "ベン", - "ビン" - ], - "onyomiExamples": [ - { - "example": "便", - "reading": "ベン", - "meaning": "convenience, service, facility, accommodation, excreta (esp. faeces), excrement, stool" - }, - { - "example": "便宜", - "reading": "ベンギ", - "meaning": "convenience, accommodation, advantage, benefit, expediency" - }, - { - "example": "利便", - "reading": "リベン", - "meaning": "convenience" - }, - { - "example": "大便", - "reading": "ダイベン", - "meaning": "feces, excrement, shit" - }, - { - "example": "便", - "reading": "ビン", - "meaning": "flight (e.g. airline flight), trip (e.g. train trip), service, mail, post, letter, opportunity, chance" - }, - { - "example": "便宜", - "reading": "ベンギ", - "meaning": "convenience, accommodation, advantage, benefit, expediency" - }, - { - "example": "穏便", - "reading": "オンビン", - "meaning": "gentle, peaceable, amicable, quiet, without fuss, simply" - }, - { - "example": "増便", - "reading": "ゾウビン", - "meaning": "increase in the number of flights" - } - ], - "kunyomiExamples": [ - { - "example": "便り", - "reading": "たより", - "meaning": "news, tidings, information, correspondence, letter" - }, - { - "example": "便りがないのはよい便り", - "reading": "たよりがないのはよいたより", - "meaning": "no news is good news" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "化", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20415_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fbf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fbf.gif", - "uri": "http://jisho.org/search/%E4%BE%BF%23kanji" - }, - { - "query": "包", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "954", - "strokeCount": 5, - "meaning": "wrap, pack up, cover, conceal", - "kunyomi": [ - "つつ.む", - "くる.む" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "包括", - "reading": "ホウカツ", - "meaning": "inclusion, complete coverage, comprehensiveness" - }, - { - "example": "包囲", - "reading": "ホウイ", - "meaning": "siege, encirclement, envelopment, surrounding, besiegement" - }, - { - "example": "内包", - "reading": "ナイホウ", - "meaning": "connotation, comprehension, intension, inclusion, containment within" - }, - { - "example": "閉包", - "reading": "ヘイホウ", - "meaning": "closure" - } - ], - "kunyomiExamples": [ - { - "example": "包む", - "reading": "つつむ", - "meaning": "to wrap up, to tuck in, to pack, to do up, to cover with, to dress in, to conceal, to hide, to be engulfed in, to be enveloped by" - }, - { - "example": "包む", - "reading": "くるむ", - "meaning": "to wrap up, to tuck in, to pack, to do up, to cover with, to dress in" - } - ], - "radical": { - "symbol": "勹", - "meaning": "wrap, embrace" - }, - "parts": [ - "勹", - "已" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21253_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05305.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5305.gif", - "uri": "http://jisho.org/search/%E5%8C%85%23kanji" - }, - { - "query": "法", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "100", - "strokeCount": 8, - "meaning": "method, law, rule, principle, model, system", - "kunyomi": [ - "のり" - ], - "onyomi": [ - "ホウ", - "ハッ", - "ホッ", - "フラン" - ], - "onyomiExamples": [ - { - "example": "法", - "reading": "ホウ", - "meaning": "law, act, principle, method, mood, dharma, law" - }, - { - "example": "法案", - "reading": "ホウアン", - "meaning": "bill (law), measure" - }, - { - "example": "航法", - "reading": "コウホウ", - "meaning": "sailing, navigation" - }, - { - "example": "会社更生法", - "reading": "カイシャコウセイホウ", - "meaning": "Corporate Rehabilitation Law" - }, - { - "example": "法被", - "reading": "ハッピ", - "meaning": "happi coat, happy coat, workman's livery coat, traditional Japanese straight-sleeved coat" - }, - { - "example": "法度", - "reading": "ハット", - "meaning": "law, ban, prohibition, ordinance" - }, - { - "example": "法師", - "reading": "ホウシ", - "meaning": "Buddhist priest, bonze, layman dressed like a priest, person" - }, - { - "example": "法華経", - "reading": "ホケキョウ", - "meaning": "Lotus Sutra" - } - ], - "kunyomiExamples": [ - { - "example": "法の筵", - "reading": "のりのむしろ", - "meaning": "preaching place" - }, - { - "example": "法面", - "reading": "のりめん", - "meaning": "slope (e.g. of embankment)" - }, - { - "example": "内法", - "reading": "うちのり", - "meaning": "inside measure" - }, - { - "example": "外法", - "reading": "そとのり", - "meaning": "outside measurements" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "厶", - "土", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27861_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cd5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cd5.gif", - "uri": "http://jisho.org/search/%E6%B3%95%23kanji" - }, - { - "query": "望", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "470", - "strokeCount": 11, - "meaning": "ambition, full moon, hope, desire, aspire to, expect", - "kunyomi": [ - "のぞ.む", - "もち" - ], - "onyomi": [ - "ボウ", - "モウ" - ], - "onyomiExamples": [ - { - "example": "望", - "reading": "モチ", - "meaning": "full moon, 15th day of the lunar month" - }, - { - "example": "望遠鏡", - "reading": "ボウエンキョウ", - "meaning": "telescope" - }, - { - "example": "眺望", - "reading": "チョウボウ", - "meaning": "prospect, view, outlook" - }, - { - "example": "太公望", - "reading": "タイコウボウ", - "meaning": "(avid) angler" - }, - { - "example": "本望", - "reading": "ホンモウ", - "meaning": "long-cherished ambition, satisfaction" - }, - { - "example": "宿望", - "reading": "シュクボウ", - "meaning": "long-cherished desire" - } - ], - "kunyomiExamples": [ - { - "example": "望む", - "reading": "のぞむ", - "meaning": "to desire, to wish for, to expect, to see, to command (a view of)" - }, - { - "example": "望むところ", - "reading": "のぞむところ", - "meaning": "what one desires, what one hopes for, suits me well, could ask for nothing better, bring it on, make my day" - }, - { - "example": "望", - "reading": "もち", - "meaning": "full moon, 15th day of the lunar month" - }, - { - "example": "望月", - "reading": "もちづき", - "meaning": "full moon, moon on the 15th day of the month (by the lunar calendar), full moon of the eighth lunar month" - } - ], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "亡", - "月", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26395_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0671b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/671b.gif", - "uri": "http://jisho.org/search/%E6%9C%9B%23kanji" - }, - { - "query": "牧", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1360", - "strokeCount": 8, - "meaning": "breed, care for, shepherd, feed, pasture", - "kunyomi": [ - "まき" - ], - "onyomi": [ - "ボク" - ], - "onyomiExamples": [ - { - "example": "牧", - "reading": "ボク", - "meaning": "regional governor in ancient China" - }, - { - "example": "牧師", - "reading": "ボクシ", - "meaning": "pastor, minister, clergyman, reverend" - }, - { - "example": "遊牧", - "reading": "ユウボク", - "meaning": "nomadism" - }, - { - "example": "移牧", - "reading": "イボク", - "meaning": "transhumance, moving stock between pastures according to season" - } - ], - "kunyomiExamples": [ - { - "example": "牧", - "reading": "まき", - "meaning": "pasture, grazing land" - }, - { - "example": "牧場", - "reading": "ぼくじょう", - "meaning": "farm (livestock), stock farm, ranch, station, pasture, meadow, grazing land" - } - ], - "radical": { - "symbol": "牛", - "forms": [ - "牜" - ], - "meaning": "cow" - }, - "parts": [ - "乞", - "攵", - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29287_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07267.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7267.gif", - "uri": "http://jisho.org/search/%E7%89%A7%23kanji" - }, - { - "query": "末", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "456", - "strokeCount": 5, - "meaning": "end, close, tip, powder, posterity", - "kunyomi": [ - "すえ", - "うら", - "うれ" - ], - "onyomi": [ - "マツ", - "バツ" - ], - "onyomiExamples": [ - { - "example": "末", - "reading": "マツ", - "meaning": "the end (of), powder" - }, - { - "example": "末日", - "reading": "マツジツ", - "meaning": "last day (of a month)" - }, - { - "example": "幕末", - "reading": "バクマツ", - "meaning": "closing days of the Tokugawa shogunate, end of Edo era" - }, - { - "example": "終末", - "reading": "シュウマツ", - "meaning": "end, close, conclusion, termination" - }, - { - "example": "末路", - "reading": "マツロ", - "meaning": "last days, the end, one's fate" - }, - { - "example": "末裔", - "reading": "マツエイ", - "meaning": "descendant" - } - ], - "kunyomiExamples": [ - { - "example": "末", - "reading": "すえ", - "meaning": "end, tip, top, end (of the year, month, etc.), close, youngest child, descendants, offspring, posterity, future, (finally) after, (at last) after, at the end of, trifles, trivialities, degenerate age" - }, - { - "example": "末広", - "reading": "すえひろ", - "meaning": "spreading out like an open fan, becoming prosperous, folding fan, ceremonial folding fan" - }, - { - "example": "来月末", - "reading": "らいげつまつ", - "meaning": "end of next month" - }, - { - "example": "末の末", - "reading": "すえのすえ", - "meaning": "the last" - }, - { - "example": "末", - "reading": "うら", - "meaning": "top end, tip" - }, - { - "example": "末枯れ", - "reading": "うらがれ", - "meaning": "dying of the little twigs and branches" - }, - { - "example": "末", - "reading": "うれ", - "meaning": "new shoots, new growth (of a tree)" - }, - { - "example": "末葉", - "reading": "うらば", - "meaning": "end leaves, top leaves, last leaves" - }, - { - "example": "木の末", - "reading": "このうれ", - "meaning": "treetop, tip of a branch" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ハ", - "一", - "亠", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26411_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0672b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/672b.gif", - "uri": "http://jisho.org/search/%E6%9C%AB%23kanji" - }, - { - "query": "満", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "515", - "strokeCount": 12, - "meaning": "full, fullness, enough, satisfy", - "kunyomi": [ - "み.ちる", - "み.つ", - "み.たす" - ], - "onyomi": [ - "マン", - "バン" - ], - "onyomiExamples": [ - { - "example": "満", - "reading": "マン", - "meaning": "being full, (counting) completed years (e.g. when calculating age), full (years, months, etc.), Manchuria" - }, - { - "example": "満員", - "reading": "マンイン", - "meaning": "full house, no vacancy, sold out, standing room only, full (of people), crowded" - }, - { - "example": "豊満", - "reading": "ホウマン", - "meaning": "stout, corpulent, plump, voluptuous" - }, - { - "example": "倍満", - "reading": "バイマン", - "meaning": "win worth 16000 points (or, if dealer, 24000 points)" - } - ], - "kunyomiExamples": [ - { - "example": "満ちる", - "reading": "みちる", - "meaning": "to be full, to wax (e.g. moon), to rise (e.g. tide), to mature, to expire" - }, - { - "example": "満つ", - "reading": "みつ", - "meaning": "to be full, to wax (e.g. moon), to rise (e.g. tide), to mature, to expire" - }, - { - "example": "満たす", - "reading": "みたす", - "meaning": "to satisfy (conditions, one's appetite, etc.), to meet (e.g. demands), to fulfill, to gratify, to fill (e.g. a cup), to pack, to supply" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "二", - "冂", - "山", - "汁", - "艾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28288_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e80.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e80.gif", - "uri": "http://jisho.org/search/%E6%BA%80%23kanji" - }, - { - "query": "未", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "650", - "strokeCount": 5, - "meaning": "un-, not yet, hitherto, still, even now, sign of the ram, 1-3PM, eighth sign of Chinese zodiac", - "kunyomi": [ - "いま.だ", - "ま.だ", - "ひつじ" - ], - "onyomi": [ - "ミ", - "ビ" - ], - "onyomiExamples": [ - { - "example": "未", - "reading": "ミ", - "meaning": "not yet, un-" - }, - { - "example": "未解決", - "reading": "ミカイケツ", - "meaning": "unsettled, pending, unresolved" - }, - { - "example": "過現未", - "reading": "カゲンミ", - "meaning": "past, present and future, three states of existence" - }, - { - "example": "未央柳", - "reading": "ビヨウヤナギ", - "meaning": "Chinese hypericum (Hypericum monogynum)" - }, - { - "example": "丁未", - "reading": "ヒノトヒツジ", - "meaning": "Fire Sheep (44th year of the sexagenary cycle, e.g. 1907, 1967, 2027)" - }, - { - "example": "己未", - "reading": "ツチノトヒツジ", - "meaning": "Earth Sheep (56th year of the sexagenary cycle, e.g. 1919, 1979, 2039)" - } - ], - "kunyomiExamples": [ - { - "example": "未だ", - "reading": "まだ", - "meaning": "still, as yet, only, (not) yet, more, (more) still, at least, comparatively, relatively, unfinished, incomplete, not yet done" - }, - { - "example": "未だかつて", - "reading": "いまだかつて", - "meaning": "not until now, never yet" - }, - { - "example": "未だ", - "reading": "まだ", - "meaning": "still, as yet, only, (not) yet, more, (more) still, at least, comparatively, relatively, unfinished, incomplete, not yet done" - }, - { - "example": "未だしも", - "reading": "まだしも", - "meaning": "rather, better" - }, - { - "example": "未", - "reading": "ひつじ", - "meaning": "the Sheep (eighth sign of the Chinese zodiac), the Ram, the Goat, hour of the Sheep (around 2pm, 1-3pm, or 2-4pm), south-southwest, sixth month of the lunar calendar" - }, - { - "example": "未草", - "reading": "ひつじぐさ", - "meaning": "pygmy waterlily (Nymphaea tetragona)" - }, - { - "example": "辛未", - "reading": "かのとひつじ", - "meaning": "Metal Sheep (8th year of the sexagenary cycle, e.g. 1931, 1991, 2051)" - }, - { - "example": "乙未", - "reading": "きのとひつじ", - "meaning": "Wood Sheep (32nd year of the sexagenary cycle, e.g. 1955, 2015, 2075)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ハ", - "二", - "亠", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26410_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0672a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/672a.gif", - "uri": "http://jisho.org/search/%E6%9C%AA%23kanji" - }, - { - "query": "民", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "28", - "strokeCount": 5, - "meaning": "people, nation, subjects", - "kunyomi": [ - "たみ" - ], - "onyomi": [ - "ミン" - ], - "onyomiExamples": [ - { - "example": "民", - "reading": "ミン", - "meaning": "citizen, resident, person, user (of a website, esp. as a collective, e.g. Twittersphere)" - }, - { - "example": "民意", - "reading": "ミンイ", - "meaning": "popular will, will of the people" - }, - { - "example": "自民", - "reading": "ジミン", - "meaning": "Liberal Democratic Party, LDP" - }, - { - "example": "公民", - "reading": "コウミン", - "meaning": "citizen, freemen" - } - ], - "kunyomiExamples": [ - { - "example": "民", - "reading": "たみ", - "meaning": "people, citizens, subjects, folk" - }, - { - "example": "民草", - "reading": "たみくさ", - "meaning": "people, populace" - }, - { - "example": "国民", - "reading": "くにたみ", - "meaning": "people of a country" - }, - { - "example": "流浪の民", - "reading": "るろうのたみ", - "meaning": "wandering people, nomadic tribe" - } - ], - "radical": { - "symbol": "氏", - "meaning": "clan" - }, - "parts": [ - "口", - "尸", - "氏" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27665_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c11.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c11.gif", - "uri": "http://jisho.org/search/%E6%B0%91%23kanji" - }, - { - "query": "無", - "found": true, - "taughtIn": "grade 4", - "newspaperFrequencyRank": "274", - "strokeCount": 12, - "meaning": "nothingness, none, ain't, nothing, nil, not", - "kunyomi": [ - "な.い" - ], - "onyomi": [ - "ム", - "ブ" - ], - "onyomiExamples": [ - { - "example": "無", - "reading": "ム", - "meaning": "nothing, naught, nought, nil, zero, un-, non-" - }, - { - "example": "無意識", - "reading": "ムイシキ", - "meaning": "unconsciousness, unconscious, involuntary, automatic, mechanical, unintentional, spontaneous, the unconscious (psychoanalysis)" - }, - { - "example": "皆無", - "reading": "カイム", - "meaning": "nonexistent, nil, none, nothing (at all), bugger-all" - }, - { - "example": "虚無", - "reading": "キョム", - "meaning": "nihility, nothingness" - }, - { - "example": "無", - "reading": "ブ", - "meaning": "un-, non-, bad ..., poor ..." - }, - { - "example": "不気味", - "reading": "ブキミ", - "meaning": "weird, ominous, eerie, uncanny, ghastly" - } - ], - "kunyomiExamples": [ - { - "example": "無い", - "reading": "ない", - "meaning": "nonexistent, not being (there), unowned, not had, unpossessed, unique, not, impossible, won't happen, not, to not be, to have not" - }, - { - "example": "ないと行けない", - "reading": "ないといけない", - "meaning": "have to (verb), must (verb), is indispensable, absolutely necessary" - }, - { - "example": "苦無", - "reading": "くない", - "meaning": "ninja throwing knives, mediaeval farming tool for digging, prying, etc." - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "ノ", - "一", - "乞", - "杰", - "無", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28961_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07121.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7121.gif", - "uri": "http://jisho.org/search/%E7%84%A1%23kanji" - }, - { - "query": "約", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "94", - "strokeCount": 9, - "meaning": "promise, approximately, shrink", - "kunyomi": [ - "つづ.まる", - "つづ.める", - "つづま.やか" - ], - "onyomi": [ - "ヤク" - ], - "onyomiExamples": [ - { - "example": "約", - "reading": "ヤク", - "meaning": "approximately, about, promise, appointment, engagement, shortening, reduction, simplification, contraction (in phonetics)" - }, - { - "example": "約束", - "reading": "ヤクソク", - "meaning": "promise, agreement, arrangement, one's word, contract, pact, appointment, engagement, date, convention, rule, destiny, fate" - }, - { - "example": "締約", - "reading": "テイヤク", - "meaning": "conclusion of a treaty" - }, - { - "example": "成約", - "reading": "セイヤク", - "meaning": "conclusion of a contract" - } - ], - "kunyomiExamples": [ - { - "example": "約まる", - "reading": "つづまる", - "meaning": "to compress, to shrink" - }, - { - "example": "約める", - "reading": "つづめる", - "meaning": "to abridge, to shorten, to economize" - }, - { - "example": "約やか", - "reading": "つづまやか", - "meaning": "concise, brief, humble, frugal, modest, discrete" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "丶", - "勹", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32004_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d04.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d04.gif", - "uri": "http://jisho.org/search/%E7%B4%84%23kanji" - }, - { - "query": "勇", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1319", - "strokeCount": 9, - "meaning": "courage, cheer up, be in high spirits, bravery, heroism", - "kunyomi": [ - "いさ.む" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "勇", - "reading": "ユウ", - "meaning": "bravery, courage, heroism" - }, - { - "example": "勇気", - "reading": "ユウキ", - "meaning": "courage, bravery, valour, valor, nerve, boldness" - }, - { - "example": "義勇", - "reading": "ギユウ", - "meaning": "heroism, loyalty and courage" - }, - { - "example": "武勇", - "reading": "ブユウ", - "meaning": "bravery, military prowess, valour, valor" - } - ], - "kunyomiExamples": [ - { - "example": "勇む", - "reading": "いさむ", - "meaning": "to be in high spirits, to be encouraged, to be lively, to cheer up" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "マ", - "力", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21191_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52c7.gif", - "uri": "http://jisho.org/search/%E5%8B%87%23kanji" - }, - { - "query": "要", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "106", - "strokeCount": 9, - "meaning": "need, main point, essence, pivot, key to", - "kunyomi": [ - "い.る", - "かなめ" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "要", - "reading": "ヨウ", - "meaning": "cornerstone, main point, keystone, requirement, need, necessary, required" - }, - { - "example": "要因", - "reading": "ヨウイン", - "meaning": "main cause, primary factor" - }, - { - "example": "所要", - "reading": "ショヨウ", - "meaning": "required, needed, necessary" - }, - { - "example": "法要", - "reading": "ホウヨウ", - "meaning": "Buddhist memorial service" - } - ], - "kunyomiExamples": [ - { - "example": "要る", - "reading": "いる", - "meaning": "to be needed, to be wanted" - }, - { - "example": "要", - "reading": "かなめ", - "meaning": "pivot, vital point, cornerstone, keystone, Japanese photinia" - }, - { - "example": "要石", - "reading": "かなめいし", - "meaning": "keystone" - } - ], - "radical": { - "symbol": "西", - "forms": [ - "襾", - "覀" - ], - "meaning": "west" - }, - "parts": [ - "女", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35201_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08981.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8981.gif", - "uri": "http://jisho.org/search/%E8%A6%81%23kanji" - }, - { - "query": "養", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "888", - "strokeCount": 15, - "meaning": "foster, bring up, rear, develop, nurture", - "kunyomi": [ - "やしな.う" - ], - "onyomi": [ - "ヨウ", - "リョウ" - ], - "onyomiExamples": [ - { - "example": "養子", - "reading": "ヨウシ", - "meaning": "adopted child (usu. male), son-in-law" - }, - { - "example": "養育", - "reading": "ヨウイク", - "meaning": "bringing up, rearing, upbringing" - }, - { - "example": "保養", - "reading": "ホヨウ", - "meaning": "health preservation, recuperation, recreation" - }, - { - "example": "供養", - "reading": "クヨウ", - "meaning": "memorial service for the dead, holding a service" - } - ], - "kunyomiExamples": [ - { - "example": "養う", - "reading": "やしなう", - "meaning": "to support, to maintain, to provide for, to bring up, to raise, to rear, to feed, to adopt (a child), to cultivate (a habit, a quality, etc.), to develop, to build up, to foster, to recuperate (from injury, illness, etc.)" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "并", - "王", - "羊", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0990a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/990a.gif", - "uri": "http://jisho.org/search/%E9%A4%8A%23kanji" - }, - { - "query": "浴", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1136", - "strokeCount": 10, - "meaning": "bathe, be favored with, bask in", - "kunyomi": [ - "あ.びる", - "あ.びせる" - ], - "onyomi": [ - "ヨク" - ], - "onyomiExamples": [ - { - "example": "浴室", - "reading": "ヨクシツ", - "meaning": "bathroom" - }, - { - "example": "浴衣", - "reading": "ユカタ", - "meaning": "yukata (light cotton kimono worn in the summer or used as a bathrobe)" - }, - { - "example": "開浴", - "reading": "カイヨク", - "meaning": "bathing (in a Zen Temple)" - }, - { - "example": "泥浴", - "reading": "デイヨク", - "meaning": "mud bath" - } - ], - "kunyomiExamples": [ - { - "example": "浴びる", - "reading": "あびる", - "meaning": "to dash over oneself (e.g. water), to take (e.g. shower), to bask in (e.g. the sun), to bathe in, to be flooded with (e.g. light), to be covered in, to suffer (e.g. an attack), to draw (e.g. criticism, attention, praise), to have heaped upon, to be showered with" - }, - { - "example": "浴びせる", - "reading": "あびせる", - "meaning": "to pour on" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "个", - "口", - "汁", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28020_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d74.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d74.gif", - "uri": "http://jisho.org/search/%E6%B5%B4%23kanji" - }, - { - "query": "利", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "203", - "strokeCount": 7, - "meaning": "profit, advantage, benefit", - "kunyomi": [ - "き.く" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "利", - "reading": "リ", - "meaning": "advantage, benefit, profit, interest" - }, - { - "example": "利上げ", - "reading": "リアゲ", - "meaning": "increase in interest rates" - }, - { - "example": "低利", - "reading": "テイリ", - "meaning": "low interest rate" - }, - { - "example": "水利", - "reading": "スイリ", - "meaning": "utilization of water, water supply, irrigation, water transportation, navigability (e.g. of a river)" - } - ], - "kunyomiExamples": [ - { - "example": "効く", - "reading": "きく", - "meaning": "to be effective, to take effect, to be good (for), to work, to function well, to be possible (to do, use, etc.), to be able to, to taste (alcohol), to try" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21033_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05229.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5229.gif", - "uri": "http://jisho.org/search/%E5%88%A9%23kanji" - }, - { - "query": "陸", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "736", - "strokeCount": 11, - "meaning": "land, six", - "kunyomi": [ - "おか" - ], - "onyomi": [ - "リク", - "ロク" - ], - "onyomiExamples": [ - { - "example": "陸", - "reading": "リク", - "meaning": "land, shore" - }, - { - "example": "陸海", - "reading": "リクカイ", - "meaning": "land and sea, army and navy" - }, - { - "example": "北陸", - "reading": "ホクリク", - "meaning": "Hokuriku region of Honshu (incl. Niigata, Toyama, Ishikawa and Fukui prefectures)" - }, - { - "example": "内陸", - "reading": "ナイリク", - "meaning": "inland" - }, - { - "example": "六", - "reading": "ロク", - "meaning": "six" - }, - { - "example": "碌", - "reading": "ロク", - "meaning": "satisfactory, decent, good, proper, worthy" - }, - { - "example": "碌碌", - "reading": "ロクロク", - "meaning": "hardly, barely, inadequately (with negative grammatical constructions)" - }, - { - "example": "双六", - "reading": "スゴロク", - "meaning": "sugoroku, traditional Japanese board game played with dice" - } - ], - "kunyomiExamples": [ - { - "example": "陸", - "reading": "りく", - "meaning": "land, shore" - }, - { - "example": "丘", - "reading": "おか", - "meaning": "hill, height, knoll, rising ground, bonus points awarded to the winner at the end of a game" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "儿", - "土", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38520_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09678.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9678.gif", - "uri": "http://jisho.org/search/%E9%99%B8%23kanji" - }, - { - "query": "良", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "501", - "strokeCount": 7, - "meaning": "good, pleasing, skilled", - "kunyomi": [ - "よ.い", - "-よ.い", - "い.い", - "-い.い" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "良", - "reading": "リョウ", - "meaning": "good (quality, condition, etc.), Good (grade), B" - }, - { - "example": "良好", - "reading": "リョウコウ", - "meaning": "good, fine, excellent, favorable, favourable, satisfactory" - }, - { - "example": "優良", - "reading": "ユウリョウ", - "meaning": "superior, excellent, fine" - }, - { - "example": "選良", - "reading": "センリョウ", - "meaning": "member of parliament, the elite" - } - ], - "kunyomiExamples": [ - { - "example": "良い", - "reading": "よい", - "meaning": "good, excellent, fine, nice, pleasant, agreeable, sufficient, enough, ready, prepared, profitable (deal, business offer, etc.), beneficial, OK, all right, fine, no problem" - }, - { - "example": "いい男", - "reading": "いいおとこ", - "meaning": "handsome man, looker, good guy, great guy, influential person (esp. in the yakuza), sumo wrestler" - }, - { - "example": "いい男", - "reading": "いいおとこ", - "meaning": "handsome man, looker, good guy, great guy, influential person (esp. in the yakuza), sumo wrestler" - }, - { - "example": "いい大人", - "reading": "いいおとな", - "meaning": "(an) adult their age (should, should not, etc.), grown man (woman), person who is old enough (to know better)" - } - ], - "radical": { - "symbol": "艮", - "meaning": "stopping" - }, - "parts": [ - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33391_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0826f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/826f.gif", - "uri": "http://jisho.org/search/%E8%89%AF%23kanji" - }, - { - "query": "料", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "295", - "strokeCount": 10, - "meaning": "fee, materials", - "kunyomi": [], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "料", - "reading": "リョウ", - "meaning": "fee, charge, rate, material" - }, - { - "example": "料金", - "reading": "リョウキン", - "meaning": "fee, charge, fare" - }, - { - "example": "史料", - "reading": "シリョウ", - "meaning": "historical materials, historical records, historical sources, archives" - }, - { - "example": "使用料", - "reading": "シヨウリョウ", - "meaning": "use fee, rent" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "斗", - "meaning": "dipper" - }, - "parts": [ - "斗", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26009_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06599.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6599.gif", - "uri": "http://jisho.org/search/%E6%96%99%23kanji" - }, - { - "query": "量", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "469", - "strokeCount": 12, - "meaning": "quantity, measure, weight, amount, consider, estimate, surmise", - "kunyomi": [ - "はか.る" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "量", - "reading": "リョウ", - "meaning": "quantity, amount, volume, capacity, portion (of food), generosity, magnanimity, tolerance, pramana, (in Indian philosophy) means by which one gains accurate and valid knowledge" - }, - { - "example": "量刑", - "reading": "リョウケイ", - "meaning": "judge's sentence, assessment of a case" - }, - { - "example": "裁量", - "reading": "サイリョウ", - "meaning": "discretion, judgement" - }, - { - "example": "軽量", - "reading": "ケイリョウ", - "meaning": "light weight" - } - ], - "kunyomiExamples": [ - { - "example": "計る", - "reading": "はかる", - "meaning": "to measure, to weigh, to survey, to time (sound, gauge, estimate), to conjecture, to infer, to surmise" - } - ], - "radical": { - "symbol": "里", - "meaning": "village, mile" - }, - "parts": [ - "一", - "日", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37327_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091cf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91cf.gif", - "uri": "http://jisho.org/search/%E9%87%8F%23kanji" - }, - { - "query": "輪", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "693", - "strokeCount": 15, - "meaning": "wheel, ring, circle, link, loop, counter for wheels and flowers", - "kunyomi": [ - "わ" - ], - "onyomi": [ - "リン" - ], - "onyomiExamples": [ - { - "example": "輪", - "reading": "リン", - "meaning": "counter for wheels and flowers" - }, - { - "example": "輪郭", - "reading": "リンカク", - "meaning": "contour, outline, border, silhouette, summary, outline, sketch, looks, features, appearance" - }, - { - "example": "三輪", - "reading": "サンリン", - "meaning": "three wheels" - }, - { - "example": "競輪", - "reading": "ケイリン", - "meaning": "keirin, cycle racing event, usu. 2km with a paced start and sprint finish" - } - ], - "kunyomiExamples": [ - { - "example": "輪", - "reading": "わ", - "meaning": "ring, circle, loop, hoop, wheel, circle (e.g. of friends)" - }, - { - "example": "輪切り", - "reading": "わぎり", - "meaning": "cutting in round slices, round slice, dividing into groups (e.g. by ability)" - }, - { - "example": "埴輪", - "reading": "はにわ", - "meaning": "haniwa, hollow unglazed terracotta figure from the Kofun period" - }, - { - "example": "後輪", - "reading": "こうりん", - "meaning": "rear wheel, cantle" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "一", - "个", - "冊", - "廾", - "車", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36650_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f2a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f2a.gif", - "uri": "http://jisho.org/search/%E8%BC%AA%23kanji" - }, - { - "query": "類", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "678", - "strokeCount": 18, - "meaning": "sort, kind, variety, class, genus", - "kunyomi": [ - "たぐ.い" - ], - "onyomi": [ - "ルイ" - ], - "onyomiExamples": [ - { - "example": "類", - "reading": "ルイ", - "meaning": "kind, sort, type, class, genus, order, family, similar example, parallel, the like" - }, - { - "example": "類似", - "reading": "ルイジ", - "meaning": "resemblance, similarity, likeness, analogy" - }, - { - "example": "魚類", - "reading": "ギョルイ", - "meaning": "fish, fishes" - }, - { - "example": "魚介類", - "reading": "ギョカイルイ", - "meaning": "marine products, seafood, fish and shellfish" - } - ], - "kunyomiExamples": [ - { - "example": "類い", - "reading": "たぐい", - "meaning": "kind, sort, type, equal, match, peer" - }, - { - "example": "類いする", - "reading": "たぐいする", - "meaning": "to be equal to, to be as good as, to be a match for, to rival" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "大", - "目", - "米", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39006_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0985e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/985e.gif", - "uri": "http://jisho.org/search/%E9%A1%9E%23kanji" - }, - { - "query": "令", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "804", - "strokeCount": 5, - "meaning": "orders, laws, command, decree, good", - "kunyomi": [], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "令", - "reading": "レイ", - "meaning": "command, order, dictation, nth year in the Reiwa era (May 1, 2019-)" - }, - { - "example": "令状", - "reading": "レイジョウ", - "meaning": "warrant, summons, written order" - }, - { - "example": "号令", - "reading": "ゴウレイ", - "meaning": "order (esp. to a number of people), command, ritual of bowing at start and end of school class" - }, - { - "example": "政令", - "reading": "セイレイ", - "meaning": "government ordinance, cabinet order" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "个", - "卩" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20196_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ee4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ee4.gif", - "uri": "http://jisho.org/search/%E4%BB%A4%23kanji" - }, - { - "query": "冷", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "667", - "strokeCount": 7, - "meaning": "cool, cold (beer, person), chill", - "kunyomi": [ - "つめ.たい", - "ひ.える", - "ひ.や", - "ひ.ややか", - "ひ.やす", - "ひ.やかす", - "さ.める", - "さ.ます" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "冷", - "reading": "レイ", - "meaning": "refrigerator, cold, cool, cold sake" - }, - { - "example": "冷夏", - "reading": "レイカ", - "meaning": "cool summer, cold summer, cooler-than-normal summer" - }, - { - "example": "寒冷", - "reading": "カンレイ", - "meaning": "cold, coldness, chilliness" - }, - { - "example": "空冷", - "reading": "クウレイ", - "meaning": "air cooling" - } - ], - "kunyomiExamples": [ - { - "example": "冷たい", - "reading": "つめたい", - "meaning": "cold (to the touch), chilly, icy, freezing, (emotionally) cold, coldhearted, unfeeling, indifferent, unfriendly, distant" - }, - { - "example": "冷たい暗黒物質", - "reading": "つめたいあんこくぶっしつ", - "meaning": "cold dark matter" - }, - { - "example": "冷える", - "reading": "ひえる", - "meaning": "to grow cold (from room temperature, e.g. in refrigerator), to get chilly, to cool down" - }, - { - "example": "冷や", - "reading": "ひや", - "meaning": "cold water, cold sake, cold, cool, chilled, unheated" - }, - { - "example": "冷やす", - "reading": "ひやす", - "meaning": "to cool (from room temperature), to chill, to refrigerate, to calm down, to cool off, to regain one's composure, to relax, to be frightened (at), to be scared (of)" - }, - { - "example": "お冷", - "reading": "おひや", - "meaning": "cold (drinking) water, (glass of) cold water, cold boiled rice" - }, - { - "example": "冷ややか", - "reading": "ひややか", - "meaning": "cold, chilly, cool, cold (attitude, stare, etc.), frigid, indifferent, distant, surly, curt, composed, cool, calm" - }, - { - "example": "冷やす", - "reading": "ひやす", - "meaning": "to cool (from room temperature), to chill, to refrigerate, to calm down, to cool off, to regain one's composure, to relax, to be frightened (at), to be scared (of)" - }, - { - "example": "冷やかす", - "reading": "ひやかす", - "meaning": "to banter, to make fun of, to jeer at, to cool, to refrigerate, to window-shop, to look at without buying" - }, - { - "example": "冷める", - "reading": "さめる", - "meaning": "to cool down, to get cold, to cool off (excitement, temper, etc.), to subside, to dampen, to fade, to wane, to be cold (eyes, expression, etc.), to be composed" - }, - { - "example": "冷ます", - "reading": "さます", - "meaning": "to cool (e.g. from a high temperature to room temperature), to let cool, to dampen, to throw a damper on, to spoil" - } - ], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "一", - "个", - "冫", - "卩" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20919_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051b7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51b7.gif", - "uri": "http://jisho.org/search/%E5%86%B7%23kanji" - }, - { - "query": "例", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "399", - "strokeCount": 8, - "meaning": "example, custom, usage, precedent", - "kunyomi": [ - "たと.える" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "例", - "reading": "レイ", - "meaning": "custom, practice, habit, usual, said, aforementioned, instance, example, case, illustration, usage, precedent" - }, - { - "example": "例会", - "reading": "レイカイ", - "meaning": "regular meeting" - }, - { - "example": "恒例", - "reading": "コウレイ", - "meaning": "established practice, custom" - }, - { - "example": "定例", - "reading": "テイレイ", - "meaning": "regular, ordinary (e.g. session of parliament), established usage, precedent, regular practice" - } - ], - "kunyomiExamples": [ - { - "example": "例える", - "reading": "たとえる", - "meaning": "to compare (something) to, to liken, to speak figuratively, to use a simile, to use a metaphor" - }, - { - "example": "例えるなら", - "reading": "たとえるなら", - "meaning": "for example" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "刈", - "化", - "歹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20363_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f8b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f8b.gif", - "uri": "http://jisho.org/search/%E4%BE%8B%23kanji" - }, - { - "query": "連", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "30", - "strokeCount": 10, - "meaning": "take along, lead, join, connect, party, gang, clique", - "kunyomi": [ - "つら.なる", - "つら.ねる", - "つ.れる", - "-づ.れ" - ], - "onyomi": [ - "レン" - ], - "onyomiExamples": [ - { - "example": "連", - "reading": "レン", - "meaning": "two reams (of paper), 1000 sheets (of paper), stanza, verse, tribe (in taxonomy), forecast (bet), bet which predicts the top 2 finishers (i.e. quinella or perfecta bet), party, company, group, set, things strung in a line, e.g. pearls, dried fish, spans of a bridge, etc., falcon" - }, - { - "example": "連邦捜査局", - "reading": "レンポウソウサキョク", - "meaning": "Federal Bureau of Investigation, FBI" - }, - { - "example": "労連", - "reading": "ロウレン", - "meaning": "labour union, labor union" - }, - { - "example": "常連", - "reading": "ジョウレン", - "meaning": "regular customer, regular patron, frequenter, constant companion" - } - ], - "kunyomiExamples": [ - { - "example": "連なる", - "reading": "つらなる", - "meaning": "to extend, to stretch out, to stand in a row, to attend, to participate in, to enrol, to enroll, to join, to have a connection, to be related, to be linked" - }, - { - "example": "連ねる", - "reading": "つらねる", - "meaning": "to line up, to put in a row, to add (to a group), to accept (as a member of an organization, etc.), to join (e.g. a list), to link, to put together, to string together (e.g. compliments), to enumerate, to take along with, to bring with" - }, - { - "example": "連れる", - "reading": "つれる", - "meaning": "to take (someone) with one, to bring along, to go with, to be accompanied by" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "車", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36899_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09023.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9023.gif", - "uri": "http://jisho.org/search/%E9%80%A3%23kanji" - }, - { - "query": "老", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "803", - "strokeCount": 6, - "meaning": "old man, old age, grow old", - "kunyomi": [ - "お.いる", - "ふ.ける" - ], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "老", - "reading": "ロウ", - "meaning": "old age, age, old people, the old, the aged, senior, elder, I, me, my humble self" - }, - { - "example": "老化", - "reading": "ロウカ", - "meaning": "ageing, aging, senile deterioration" - }, - { - "example": "養老", - "reading": "ヨウロウ", - "meaning": "making provision for the elderly, making provision for one's old age, spending one's old age in comfort, Yōrō era (717.11.17-724.2.4)" - }, - { - "example": "敬老", - "reading": "ケイロウ", - "meaning": "respect for the aged" - } - ], - "kunyomiExamples": [ - { - "example": "老いる", - "reading": "おいる", - "meaning": "to age, to grow old" - }, - { - "example": "老ける", - "reading": "ふける", - "meaning": "to age, to grow old (esp. in appearance), to show marks of age" - } - ], - "radical": { - "symbol": "老", - "forms": [ - "耂" - ], - "meaning": "old" - }, - "parts": [ - "匕", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32769_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08001.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8001.gif", - "uri": "http://jisho.org/search/%E8%80%81%23kanji" - }, - { - "query": "労", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "398", - "strokeCount": 7, - "meaning": "labor, thank for, reward for, toil, trouble", - "kunyomi": [ - "ろう.する", - "いたわ.る", - "いた.ずき", - "ねぎら", - "つか.れる", - "ねぎら.う" - ], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "労", - "reading": "ロウ", - "meaning": "labor, labour, toil, trouble, pains, work, effort, striving" - }, - { - "example": "労組", - "reading": "ロウソ", - "meaning": "labor union, labour union, trade union" - }, - { - "example": "国労", - "reading": "コクロウ", - "meaning": "National Railway Workers Union" - }, - { - "example": "功労", - "reading": "コウロウ", - "meaning": "meritorious deed, services" - } - ], - "kunyomiExamples": [ - { - "example": "労する", - "reading": "ろうする", - "meaning": "to work, to labor, to labour, to put to work, to make (someone) work" - }, - { - "example": "労る", - "reading": "いたわる", - "meaning": "to pity, to sympathize with, to sympathise with, to treat with sympathy, to console, to be kind to, to appreciate, to tend to (e.g. an injury), to care for, to nurse, to soothe" - }, - { - "example": "労き", - "reading": "いたずき", - "meaning": "pain, trouble, illness" - }, - { - "example": "労い", - "reading": "ねぎらい", - "meaning": "appreciation, thanks, gratitude" - }, - { - "example": "労う", - "reading": "ねぎらう", - "meaning": "to show appreciation for (efforts, esp. by someone of equal or lower status), to thank for, to reward for" - }, - { - "example": "労う", - "reading": "ねぎらう", - "meaning": "to show appreciation for (efforts, esp. by someone of equal or lower status), to thank for, to reward for" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "冖", - "力", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21172_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052b4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52b4.gif", - "uri": "http://jisho.org/search/%E5%8A%B4%23kanji" - }, - { - "query": "録", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "546", - "strokeCount": 16, - "meaning": "record", - "kunyomi": [ - "しる.す", - "と.る" - ], - "onyomi": [ - "ロク" - ], - "onyomiExamples": [ - { - "example": "録", - "reading": "ロク", - "meaning": "record, transcript" - }, - { - "example": "録音", - "reading": "ロクオン", - "meaning": "(audio) recording" - }, - { - "example": "付録", - "reading": "フロク", - "meaning": "appendix, supplement, annex, extra (of a newspaper or magazine)" - }, - { - "example": "採録", - "reading": "サイロク", - "meaning": "recording, transcription" - } - ], - "kunyomiExamples": [ - { - "example": "撮る", - "reading": "とる", - "meaning": "to take (a photo), to record (video, audio, etc.), to make (a film)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ヨ", - "水", - "金", - "隶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37682_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09332.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9332.gif", - "uri": "http://jisho.org/search/%E9%8C%B2%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/data/jisho/grade5.json b/lib/migrations/data/jisho/grade5.json deleted file mode 100644 index 247df3c..0000000 --- a/lib/migrations/data/jisho/grade5.json +++ /dev/null @@ -1,13313 +0,0 @@ -[ - { - "query": "圧", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "718", - "strokeCount": 5, - "meaning": "pressure, push, overwhelm, oppress, dominate", - "kunyomi": [ - "お.す", - "へ.す", - "おさ.える", - "お.さえる" - ], - "onyomi": [ - "アツ", - "エン", - "オウ" - ], - "onyomiExamples": [ - { - "example": "圧", - "reading": "アツ", - "meaning": "pressure, force" - }, - { - "example": "圧力", - "reading": "アツリョク", - "meaning": "pressure, stress, pressure (e.g. political), coercion, arm-twisting" - }, - { - "example": "高圧", - "reading": "コウアツ", - "meaning": "high voltage, high pressure" - }, - { - "example": "外圧", - "reading": "ガイアツ", - "meaning": "external pressure, outside pressure, foreign pressure" - }, - { - "example": "圧状", - "reading": "オウジョウ", - "meaning": "document written under duress, coercion" - } - ], - "kunyomiExamples": [ - { - "example": "押す", - "reading": "おす", - "meaning": "to push, to press, to apply pressure from above, to press down, to stamp (i.e. a passport), to apply a seal, to affix (e.g. gold leaf), to press (someone for something), to urge, to compel, to influence, to overwhelm, to overpower, to repress, to push (events along), to advance (a plan), to do in spite of ..., to do even though ..., to force, to make sure, to be pressed for time, to advance troops, to attack, (of light) to be diffused across an entire surface" - }, - { - "example": "圧す", - "reading": "へす", - "meaning": "to dent, to press, to push" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "厂", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22311_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05727.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5727.gif", - "uri": "http://jisho.org/search/%E5%9C%A7%23kanji" - }, - { - "query": "囲", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "771", - "strokeCount": 7, - "meaning": "surround, besiege, store, paling, enclosure, encircle, preserve, keep", - "kunyomi": [ - "かこ.む", - "かこ.う", - "かこ.い" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "囲碁", - "reading": "イゴ", - "meaning": "go, board game of capturing territory" - }, - { - "example": "囲郭村", - "reading": "イカクソン", - "meaning": "walled settlement, walled town" - }, - { - "example": "解囲", - "reading": "カイイ", - "meaning": "breaking the enemy siege" - }, - { - "example": "外囲", - "reading": "ガイイ", - "meaning": "periphery, surroundings" - } - ], - "kunyomiExamples": [ - { - "example": "囲む", - "reading": "かこむ", - "meaning": "to surround, to encircle, to enclose, to fence, to wall in, to besiege, to lay siege to, to play (go, shogi, etc.)" - }, - { - "example": "囲う", - "reading": "かこう", - "meaning": "to enclose, to surround, to encircle, to fence, to wall in, to shelter (e.g. a criminal), to shield, to hide, to protect, to keep (e.g. a mistress), to store (vegetables, fruit, etc.), to preserve, to protect" - }, - { - "example": "囲い", - "reading": "かこい", - "meaning": "enclosure, fence, wall, pen, paling, storage (of fruit, vegetables, etc.), partitioned area of a room for conducting tea ceremonies, mistress, castle, strong defensive position" - }, - { - "example": "囲い女", - "reading": "かこいおんな", - "meaning": "mistress" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "井", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22258_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56f2.gif", - "uri": "http://jisho.org/search/%E5%9B%B2%23kanji" - }, - { - "query": "移", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "448", - "strokeCount": 11, - "meaning": "shift, move, change, drift, catch (cold, fire), pass into", - "kunyomi": [ - "うつ.る", - "うつ.す" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "移行", - "reading": "イコウ", - "meaning": "switching over to, migration, transition" - }, - { - "example": "移管", - "reading": "イカン", - "meaning": "transfer of control" - }, - { - "example": "転移", - "reading": "テンイ", - "meaning": "moving (location, with the times, etc.), change, transition, metastasis, spread, transition (e.g. phase transition), transfer (of learning), transference (in psychoanalysis)" - }, - { - "example": "変移", - "reading": "ヘンイ", - "meaning": "change, alteration, transmutation, mutation" - } - ], - "kunyomiExamples": [ - { - "example": "移る", - "reading": "うつる", - "meaning": "to move (house), to transfer (department), to change the target of interest or concern, to elapse (passage of time), to be permeated by a colour or scent, to be infected, to be contagious, to spread (as in fire)" - }, - { - "example": "移す", - "reading": "うつす", - "meaning": "to change, to swap, to substitute, to transfer, to change the object of one's interest or focus, to spend or take time, to infect, to permeate something with the smell or colour of something, to move on to the next or different stage of (a plan, etc.)" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "夕", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31227_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079fb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79fb.gif", - "uri": "http://jisho.org/search/%E7%A7%BB%23kanji" - }, - { - "query": "因", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "636", - "strokeCount": 6, - "meaning": "cause, factor, be associated with, depend on, be limited to", - "kunyomi": [ - "よ.る", - "ちな.む" - ], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "因", - "reading": "イン", - "meaning": "cause, factor, hetu (direct cause, esp. as opposed to indirect conditions), the basis of one's argument (in hetuvidya)" - }, - { - "example": "因縁", - "reading": "インネン", - "meaning": "fate, destiny, connection, tie, bond, origin, pretext, justification, hetu and prataya (direct causes and indirect conditions, which underlie the actions of all things)" - }, - { - "example": "主因", - "reading": "シュイン", - "meaning": "primary cause, main factor" - }, - { - "example": "勝因", - "reading": "ショウイン", - "meaning": "cause of victory" - } - ], - "kunyomiExamples": [ - { - "example": "因る", - "reading": "よる", - "meaning": "to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at" - }, - { - "example": "よるところが大きい", - "reading": "よるところがおおきい", - "meaning": "depending largely on, playing a large role in, due largely to" - }, - { - "example": "因む", - "reading": "ちなむ", - "meaning": "to be associated (with), to be connected (with)" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "囗", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22240_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056e0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56e0.gif", - "uri": "http://jisho.org/search/%E5%9B%A0%23kanji" - }, - { - "query": "永", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "846", - "strokeCount": 5, - "meaning": "eternity, long, lengthy", - "kunyomi": [ - "なが.い" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "永久", - "reading": "エイキュウ", - "meaning": "eternity, permanence, perpetuity, Eikyū era (1113.7.13-1118.4.3)" - }, - { - "example": "永遠", - "reading": "エイエン", - "meaning": "eternity, perpetuity, permanence, immortality" - }, - { - "example": "永々", - "reading": "エイエイ", - "meaning": "forever" - }, - { - "example": "大永", - "reading": "タイエイ", - "meaning": "Taiei era (1521.8.23-1528.8.20)" - } - ], - "kunyomiExamples": [ - { - "example": "長い", - "reading": "ながい", - "meaning": "long (distance, length), long (time), protracted, prolonged" - }, - { - "example": "長いこと", - "reading": "ながいこと", - "meaning": "for a long time" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27704_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c38.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c38.gif", - "uri": "http://jisho.org/search/%E6%B0%B8%23kanji" - }, - { - "query": "営", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "303", - "strokeCount": 12, - "meaning": "occupation, camp, perform, build, conduct (business)", - "kunyomi": [ - "いとな.む", - "いとな.み" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "営業所", - "reading": "エイギョウショ", - "meaning": "business office, place of business" - }, - { - "example": "営業", - "reading": "エイギョウ", - "meaning": "business, trade, operations, sales" - }, - { - "example": "国営", - "reading": "コクエイ", - "meaning": "government management, state management" - }, - { - "example": "公営", - "reading": "コウエイ", - "meaning": "public management" - } - ], - "kunyomiExamples": [ - { - "example": "営む", - "reading": "いとなむ", - "meaning": "to run (a business), to operate, to conduct, to practice (law, medicine, etc.), to carry out, to perform, to lead (a life), to hold (a Buddhist or Shinto ceremony)" - }, - { - "example": "営み", - "reading": "いとなみ", - "meaning": "activity, action, performance, execution, occupation, business, work, sexual intercourse, sex, preparations" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "冖", - "口", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21942_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/055b6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/55b6.gif", - "uri": "http://jisho.org/search/%E5%96%B6%23kanji" - }, - { - "query": "衛", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "400", - "strokeCount": 16, - "meaning": "defense, protection", - "kunyomi": [], - "onyomi": [ - "エイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "衛生", - "reading": "エイセイ", - "meaning": "hygiene, sanitation, health" - }, - { - "example": "衛星", - "reading": "エイセイ", - "meaning": "(natural) satellite, moon, (artificial) satellite" - }, - { - "example": "自衛", - "reading": "ジエイ", - "meaning": "self-defense, self-defence" - }, - { - "example": "専守防衛", - "reading": "センシュボウエイ", - "meaning": "nonaggressive defense (policy) (defence)" - }, - { - "example": "衛生", - "reading": "エイセイ", - "meaning": "hygiene, sanitation, health" - }, - { - "example": "衛星", - "reading": "エイセイ", - "meaning": "(natural) satellite, moon, (artificial) satellite" - }, - { - "example": "近衛", - "reading": "コノエ", - "meaning": "Imperial Guards" - }, - { - "example": "兵衛", - "reading": "ヒョウエ", - "meaning": "middle palace guard (ritsuryo system)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "行", - "meaning": "go, do" - }, - "parts": [ - "口", - "彳", - "行", - "韋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34907_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0885b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/885b.gif", - "uri": "http://jisho.org/search/%E8%A1%9B%23kanji" - }, - { - "query": "易", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "571", - "strokeCount": 8, - "meaning": "easy, ready to, simple, fortune-telling, divination", - "kunyomi": [ - "やさ.しい", - "やす.い" - ], - "onyomi": [ - "エキ", - "イ" - ], - "onyomiExamples": [ - { - "example": "易", - "reading": "エキ", - "meaning": "type of cleromancy divination (described in the Book of Changes) performed with long sticks, The Book of Changes, Yijing, I Ching" - }, - { - "example": "易学", - "reading": "エキガク", - "meaning": "study of divination" - }, - { - "example": "改易", - "reading": "カイエキ", - "meaning": "change of rank" - }, - { - "example": "加工交易", - "reading": "カコウコウエキ", - "meaning": "processing trade (importing all or part of raw and auxiliary materials, parts, components, accessories, and packaging materials in bond from a foreign company, and re-exporting the finished products after processing or assembly for distribution and sale by that foreign company)" - }, - { - "example": "易", - "reading": "イ", - "meaning": "easiness" - }, - { - "example": "易々", - "reading": "イイ", - "meaning": "easy, simple, plain" - }, - { - "example": "簡易", - "reading": "カンイ", - "meaning": "simplicity, convenience, easiness, quasi-" - }, - { - "example": "難易", - "reading": "ナンイ", - "meaning": "difficulty, relative difficulty" - } - ], - "kunyomiExamples": [ - { - "example": "易しい", - "reading": "やさしい", - "meaning": "easy, plain, simple" - }, - { - "example": "やさしい文章", - "reading": "やさしいぶんしょう", - "meaning": "easy (simple) writing" - }, - { - "example": "易い", - "reading": "やすい", - "meaning": "easy, likely to ..., have a tendency to ..., easy to ..." - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ノ", - "勹", - "勿", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26131_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06613.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6613.gif", - "uri": "http://jisho.org/search/%E6%98%93%23kanji" - }, - { - "query": "益", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "674", - "strokeCount": 10, - "meaning": "benefit, gain, profit, advantage", - "kunyomi": [ - "ま.す" - ], - "onyomi": [ - "エキ", - "ヤク" - ], - "onyomiExamples": [ - { - "example": "益", - "reading": "エキ", - "meaning": "benefit, use, good, advantage, gain, profit, gains" - }, - { - "example": "益金", - "reading": "エキキン", - "meaning": "profit" - }, - { - "example": "増益", - "reading": "ゾウエキ", - "meaning": "increased (profit)" - }, - { - "example": "公益", - "reading": "コウエキ", - "meaning": "public interest, public benefit, public good" - }, - { - "example": "益", - "reading": "エキ", - "meaning": "benefit, use, good, advantage, gain, profit, gains" - }, - { - "example": "益体もない", - "reading": "ヤクタイモナイ", - "meaning": "useless, worthless, absurd, baloney" - }, - { - "example": "現世利益", - "reading": "ゲンセリヤク", - "meaning": "benefits gained in this world through observance of the Buddhist teachings, happiness gained in this world through observance of the Buddhist teachings" - } - ], - "kunyomiExamples": [ - { - "example": "益々", - "reading": "ますます", - "meaning": "increasingly, more and more, decreasingly (when declining), less and less" - }, - { - "example": "益人", - "reading": "ますひと", - "meaning": "people, subjects, populace" - } - ], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "ハ", - "一", - "并", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30410_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076ca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76ca.gif", - "uri": "http://jisho.org/search/%E7%9B%8A%23kanji" - }, - { - "query": "液", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1210", - "strokeCount": 11, - "meaning": "fluid, liquid, juice, sap, secretion", - "kunyomi": [], - "onyomi": [ - "エキ" - ], - "onyomiExamples": [ - { - "example": "液", - "reading": "エキ", - "meaning": "liquid, fluid" - }, - { - "example": "液化", - "reading": "エキカ", - "meaning": "liquefaction" - }, - { - "example": "乳液", - "reading": "ニュウエキ", - "meaning": "latex (milky fluid found in plants), milky lotion (cosmetic), body milk" - }, - { - "example": "体液", - "reading": "タイエキ", - "meaning": "body fluids" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "乞", - "亠", - "化", - "夕", - "攵", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28082_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06db2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6db2.gif", - "uri": "http://jisho.org/search/%E6%B6%B2%23kanji" - }, - { - "query": "演", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "267", - "strokeCount": 14, - "meaning": "performance, act, play, render, stage", - "kunyomi": [], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "演技", - "reading": "エンギ", - "meaning": "acting, performance" - }, - { - "example": "演歌", - "reading": "エンカ", - "meaning": "enka, traditional-style Japanese popular ballad, troubadour" - }, - { - "example": "共演", - "reading": "キョウエン", - "meaning": "appearing together, co-acting, co-starring" - }, - { - "example": "再演", - "reading": "サイエン", - "meaning": "another showing (of a play), recapitulation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "一", - "宀", - "汁", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28436_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f14.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f14.gif", - "uri": "http://jisho.org/search/%E6%BC%94%23kanji" - }, - { - "query": "応", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "266", - "strokeCount": 7, - "meaning": "apply, answer, yes, OK, reply, accept", - "kunyomi": [ - "あた.る", - "まさに", - "こた.える" - ], - "onyomi": [ - "オウ", - "ヨウ", - "-ノウ" - ], - "onyomiExamples": [ - { - "example": "応", - "reading": "オウ", - "meaning": "agreement, affirmative, aye, yes, OK, okay, yeah, all right" - }, - { - "example": "応援", - "reading": "オウエン", - "meaning": "aid, assistance, help, reinforcement, rooting, barracking, support, cheering" - }, - { - "example": "呼応", - "reading": "コオウ", - "meaning": "hailing each other, acting in concert, responding (to), sympathizing (with), agreement, concord" - }, - { - "example": "饗応", - "reading": "キョウオウ", - "meaning": "entertaining with food and drink, treating to dinner, wining and dining, immediately agreeing with someone else, pandering" - } - ], - "kunyomiExamples": [ - { - "example": "応える", - "reading": "こたえる", - "meaning": "to respond, to answer, to meet (e.g. demands, expectations), to affect, to take a toll, to strike home, to have an effect on, to be hard on someone (e.g. heat, cold, work, illness, etc.), to be a strain" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "广", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24540_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fdc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fdc.gif", - "uri": "http://jisho.org/search/%E5%BF%9C%23kanji" - }, - { - "query": "往", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1421", - "strokeCount": 8, - "meaning": "journey, travel, chase away, let go, going, before, formerly", - "kunyomi": [ - "い.く", - "いにしえ", - "さき.に", - "ゆ.く" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "往復", - "reading": "オウフク", - "meaning": "making a round trip, going and returning, coming and going, round-trip ticket, return ticket, correspondence, exchanging (letters), socializing, visiting one another" - }, - { - "example": "往年", - "reading": "オウネン", - "meaning": "years gone by, earlier years, former years, the past" - }, - { - "example": "右往左往", - "reading": "ウオウサオウ", - "meaning": "moving about in confusion, going every which way, going this way and that" - }, - { - "example": "以往", - "reading": "イオウ", - "meaning": "after this, from now on, hereafter, ago, since, before, previous" - } - ], - "kunyomiExamples": [ - { - "example": "行く", - "reading": "いく", - "meaning": "to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination" - }, - { - "example": "行く", - "reading": "いく", - "meaning": "to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "丶", - "彳", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24448_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f80.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f80.gif", - "uri": "http://jisho.org/search/%E5%BE%80%23kanji" - }, - { - "query": "桜", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1237", - "strokeCount": 10, - "meaning": "cherry", - "kunyomi": [ - "さくら" - ], - "onyomi": [ - "オウ", - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "桜花", - "reading": "オウカ", - "meaning": "cherry blossom" - }, - { - "example": "桜花爛漫", - "reading": "オウカランマン", - "meaning": "riot of cherry blossoms" - }, - { - "example": "観桜", - "reading": "カンオウ", - "meaning": "cherry blossom viewing" - } - ], - "kunyomiExamples": [ - { - "example": "桜", - "reading": "さくら", - "meaning": "cherry tree, cherry blossom, fake buyer, paid audience, shill, seat filler, hired applauder, horse meat" - }, - { - "example": "桜花", - "reading": "おうか", - "meaning": "cherry blossom" - }, - { - "example": "左近の桜", - "reading": "さこんのさくら", - "meaning": "cherry tree east of the southern stairs of the Hall for State Ceremonies (in Heian Palace)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "女", - "尚", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26716_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0685c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/685c.gif", - "uri": "http://jisho.org/search/%E6%A1%9C%23kanji" - }, - { - "query": "可", - "found": true, - "taughtIn": "grade 5", - "newspaperFrequencyRank": "314", - "strokeCount": 5, - "meaning": "can, passable, mustn't, should not, do not", - "kunyomi": [ - "-べ.き", - "-べ.し" - ], - "onyomi": [ - "カ", - "コク" - ], - "onyomiExamples": [ - { - "example": "可", - "reading": "カ", - "meaning": "acceptable, satisfactory, allowed, permitted, approval, being in favour, (a) vote in favour, aye, Pass (grade), Fair, C, D" - }, - { - "example": "可決", - "reading": "カケツ", - "meaning": "approval, adoption (of a motion, bill, etc.), passage" - }, - { - "example": "裁可", - "reading": "サイカ", - "meaning": "sanction, approval" - }, - { - "example": "不裁可", - "reading": "フサイカ", - "meaning": "veto, rejection" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "亅", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21487_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053ef.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53ef.gif", - "uri": "http://jisho.org/search/%E5%8F%AF%23kanji" - }, - { - "query": "仮", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1039", - "strokeCount": 6, - "meaning": "sham, temporary, interim, assumed (name), informal", - "kunyomi": [ - "かり", - "かり-" - ], - "onyomi": [ - "カ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "仮", - "reading": "カリ", - "meaning": "temporary, provisional, interim, fictitious, assumed (name), alias, hypothetical, theoretical" - }, - { - "example": "仮設", - "reading": "カセツ", - "meaning": "temporary, provisional, to do something temporarily (esp. build temporary facilities), to do something provisionally" - }, - { - "example": "仮", - "reading": "ケ", - "meaning": "lacking substance and existing in name only, something without substance" - }, - { - "example": "化粧", - "reading": "ケショウ", - "meaning": "make-up, makeup, cosmetics" - }, - { - "example": "虚仮", - "reading": "コケ", - "meaning": "folly, fool" - } - ], - "kunyomiExamples": [ - { - "example": "仮", - "reading": "かり", - "meaning": "temporary, provisional, interim, fictitious, assumed (name), alias, hypothetical, theoretical" - }, - { - "example": "仮処分", - "reading": "かりしょぶん", - "meaning": "provisional disposition, temporary injunction" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "厂", - "又" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20206_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04eee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4eee.gif", - "uri": "http://jisho.org/search/%E4%BB%AE%23kanji" - }, - { - "query": "価", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "250", - "strokeCount": 8, - "meaning": "value, price", - "kunyomi": [ - "あたい" - ], - "onyomi": [ - "カ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "価", - "reading": "カ", - "meaning": "valence, valency" - }, - { - "example": "価格", - "reading": "カカク", - "meaning": "price, value, cost" - }, - { - "example": "時価", - "reading": "ジカ", - "meaning": "current value, price, market value" - }, - { - "example": "薬価", - "reading": "ヤッカ", - "meaning": "National Health Insurance drug price, NHI drug price" - } - ], - "kunyomiExamples": [ - { - "example": "値", - "reading": "あたい", - "meaning": "price, cost, value, worth, merit, value" - }, - { - "example": "値する", - "reading": "あたいする", - "meaning": "to be worth, to be worthy of, to deserve, to merit" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20385_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fa1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fa1.gif", - "uri": "http://jisho.org/search/%E4%BE%A1%23kanji" - }, - { - "query": "河", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "663", - "strokeCount": 8, - "meaning": "river", - "kunyomi": [ - "かわ" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "河", - "reading": "ホー", - "meaning": "discarded tiles, discards" - }, - { - "example": "川", - "reading": "カワ", - "meaning": "river, stream, River, the ... river" - }, - { - "example": "星河", - "reading": "セイガ", - "meaning": "Milky Way" - }, - { - "example": "決河", - "reading": "ケッカ", - "meaning": "river breaking through (its dikes)" - } - ], - "kunyomiExamples": [ - { - "example": "川", - "reading": "かわ", - "meaning": "river, stream, River, the ... river" - }, - { - "example": "河", - "reading": "ホー", - "meaning": "discarded tiles, discards" - }, - { - "example": "追河", - "reading": "おいかわ", - "meaning": "freshwater minnow, pale chub (Zacco platypus)" - }, - { - "example": "恋河", - "reading": "こいかわ", - "meaning": "oceans of love" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "亅", - "口", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27827_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cb3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cb3.gif", - "uri": "http://jisho.org/search/%E6%B2%B3%23kanji" - }, - { - "query": "過", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "285", - "strokeCount": 12, - "meaning": "overdo, exceed, go beyond, error", - "kunyomi": [ - "す.ぎる", - "す.ごす", - "あやま.ち", - "あやま.つ", - "よぎ.る", - "よ.ぎる" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "過", - "reading": "カ", - "meaning": "surplus-, excess-, over-, per- (chemical with more of a certain element than found in other compounds of the same constituents)" - }, - { - "example": "過激", - "reading": "カゲキ", - "meaning": "extreme, radical" - }, - { - "example": "看過", - "reading": "カンカ", - "meaning": "overlooking, turning a blind eye" - }, - { - "example": "輸出超過", - "reading": "ユシュツチョウカ", - "meaning": "excess of exports" - } - ], - "kunyomiExamples": [ - { - "example": "過ぎる", - "reading": "すぎる", - "meaning": "to pass through, to pass by, to go beyond, to pass (of time), to elapse, to have expired, to have ended, to be over, to exceed, to surpass, to be above, to be no more than ..., to be excessive, to be too much, to be too ..." - }, - { - "example": "過ごす", - "reading": "すごす", - "meaning": "to pass (time), to spend, to overdo (esp. of one's alcohol consumption), to drink (alcohol), to take care of, to support, to overdo, to do too much, to ... without acting on it" - }, - { - "example": "過ち", - "reading": "あやまち", - "meaning": "fault, error, indiscretion, faux pas" - }, - { - "example": "過ちて改めざるこれを過ちという", - "reading": "あやまちてあらためざるこれをあやまちという", - "meaning": "to err and not change one's ways, this is what it is to err" - }, - { - "example": "過つ", - "reading": "あやまつ", - "meaning": "to err" - }, - { - "example": "過ぎる", - "reading": "よぎる", - "meaning": "to go by, to cross, to pass by, to flash across" - }, - { - "example": "過ぎる", - "reading": "よぎる", - "meaning": "to go by, to cross, to pass by, to flash across" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "冂", - "口", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36942_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0904e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/904e.gif", - "uri": "http://jisho.org/search/%E9%81%8E%23kanji" - }, - { - "query": "快", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1074", - "strokeCount": 7, - "meaning": "cheerful, pleasant, agreeable, comfortable", - "kunyomi": [ - "こころよ.い" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "快", - "reading": "カイ", - "meaning": "pleasure, delight, enjoyment" - }, - { - "example": "快感", - "reading": "カイカン", - "meaning": "pleasant feeling, pleasant sensation, pleasure" - }, - { - "example": "豪快", - "reading": "ゴウカイ", - "meaning": "hearty, tremendous, magnificent, glorious, splendid, heroic, stirring" - }, - { - "example": "明快", - "reading": "メイカイ", - "meaning": "clear, clear-cut, lucid, unequivocal, explicit" - } - ], - "kunyomiExamples": [ - { - "example": "快い", - "reading": "こころよい", - "meaning": "pleasant, agreeable, comfortable, refreshing" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ユ", - "二", - "人", - "大", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24555_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05feb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5feb.gif", - "uri": "http://jisho.org/search/%E5%BF%AB%23kanji" - }, - { - "query": "解", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "176", - "strokeCount": 13, - "meaning": "unravel, notes, key, explanation, understanding, untie, undo, solve, answer, cancel, absolve, explain, minute", - "kunyomi": [ - "と.く", - "と.かす", - "と.ける", - "ほど.く", - "ほど.ける", - "わか.る", - "さと.る" - ], - "onyomi": [ - "カイ", - "ゲ" - ], - "onyomiExamples": [ - { - "example": "解", - "reading": "カイ", - "meaning": "solution (of an equation, inequality, etc.), root (e.g. of a polynomial), solution (to a given problem), answer, explanation, interpretation" - }, - { - "example": "解禁", - "reading": "カイキン", - "meaning": "lifting a ban, raising an embargo, opening a season (hunting, fishing, etc.), publishing contents, revealing information" - }, - { - "example": "瓦解", - "reading": "ガカイ", - "meaning": "collapse, downfall" - }, - { - "example": "明解", - "reading": "メイカイ", - "meaning": "clear explanation" - }, - { - "example": "解熱", - "reading": "ゲネツ", - "meaning": "lowering a fever, alleviation of fever" - }, - { - "example": "解脱", - "reading": "ゲダツ", - "meaning": "liberation from earthly desires and the woes of man, deliverance of one's soul, moksha, mukti, vimukti" - }, - { - "example": "雪消", - "reading": "ユキゲ", - "meaning": "snow melting, water from melting snow" - }, - { - "example": "義解", - "reading": "ギゲ", - "meaning": "explanation (of the meaning), interpretation" - } - ], - "kunyomiExamples": [ - { - "example": "解く", - "reading": "とく", - "meaning": "to untie, to unfasten, to unwrap, to undo, to unbind, to unpack, to unsew, to unstitch, to solve, to work out, to answer, to dispel (misunderstanding, etc.), to clear up, to remove (suspicion), to appease, to dissolve (a contract), to cancel, to remove (a prohibition), to lift (a ban), to raise (a siege), to release (from duty), to relieve, to dismiss, to comb (out), to card, to untangle (hair)" - }, - { - "example": "溶かす", - "reading": "とかす", - "meaning": "to dissolve, to melt" - }, - { - "example": "梳かす", - "reading": "とかす", - "meaning": "to comb out, to brush, to untangle, to unravel" - }, - { - "example": "溶ける", - "reading": "とける", - "meaning": "to melt, to thaw, to fuse, to dissolve" - }, - { - "example": "解ける", - "reading": "とける", - "meaning": "to be solved, to be resolved, to loosen, to come untied, to come undone, to be removed (of restrictions), to be lifted (e.g. a ban), to be broken (spells, curses, etc.), to dissipate (of anger, tension, etc.), to melt away, to ease, to be appeased, to be resolved (of a dispute, misunderstanding, etc.), to be cleared up" - }, - { - "example": "解く", - "reading": "ほどく", - "meaning": "to undo, to untie, to unfasten, to unlace, to unravel, to loosen, to unpack" - }, - { - "example": "解ける", - "reading": "ほどける", - "meaning": "to come loose, to come untied, to come undone, to unravel, to loosen up (e.g. tension)" - }, - { - "example": "分かる", - "reading": "わかる", - "meaning": "to understand, to comprehend, to grasp, to see, to get, to follow, to become clear, to be known, to be discovered, to be realized, to be realised, to be found out, I know!, I think so too!" - } - ], - "radical": { - "symbol": "角", - "meaning": "horn" - }, - "parts": [ - "刀", - "牛", - "角" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35299_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/089e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/89e3.gif", - "uri": "http://jisho.org/search/%E8%A7%A3%23kanji" - }, - { - "query": "格", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "281", - "strokeCount": 10, - "meaning": "status, rank, capacity, character, case (law, grammar)", - "kunyomi": [], - "onyomi": [ - "カク", - "コウ", - "キャク", - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "格", - "reading": "カク", - "meaning": "status, position, rank, method, way, style, rule, regulation, law, grammatical case, figure (syllogism)" - }, - { - "example": "格上げ", - "reading": "カクアゲ", - "meaning": "status elevation, upgrading, promotion" - }, - { - "example": "規格", - "reading": "キカク", - "meaning": "standard, norm" - }, - { - "example": "低価格", - "reading": "テイカカク", - "meaning": "low price" - }, - { - "example": "格子", - "reading": "コウシ", - "meaning": "lattice, latticework, window bars, grid, grating" - }, - { - "example": "格子柄", - "reading": "コウシガラ", - "meaning": "check pattern, checked pattern, checkered pattern, plaid, lattice design" - }, - { - "example": "格", - "reading": "キャク", - "meaning": "amendment (of the ritsuryo)" - }, - { - "example": "格式", - "reading": "カクシキ", - "meaning": "formality, social rules, social status, social standing, amendments and enforcement regulations (of the ritsuryo)" - }, - { - "example": "弘仁格", - "reading": "コウニンキャク", - "meaning": "Ordinance of the Konin Era" - }, - { - "example": "格組", - "reading": "ゴウグミ", - "meaning": "wooden framework" - }, - { - "example": "格天井", - "reading": "ゴウテンジョウ", - "meaning": "coffered ceiling" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "口", - "夂", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26684_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0683c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/683c.gif", - "uri": "http://jisho.org/search/%E6%A0%BC%23kanji" - }, - { - "query": "確", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "252", - "strokeCount": 15, - "meaning": "assurance, firm, tight, hard, solid, confirm, clear, evident", - "kunyomi": [ - "たし.か", - "たし.かめる" - ], - "onyomi": [ - "カク", - "コウ" - ], - "onyomiExamples": [ - { - "example": "確", - "reading": "カク", - "meaning": "certain, definite" - }, - { - "example": "確執", - "reading": "カクシツ", - "meaning": "discord, antagonism" - }, - { - "example": "当確", - "reading": "トウカク", - "meaning": "projected to win, sure to be elected, home free" - }, - { - "example": "精確", - "reading": "セイカク", - "meaning": "detailed and accurate, exhaustive and precise, meticulous, finely detailed" - } - ], - "kunyomiExamples": [ - { - "example": "確か", - "reading": "たしか", - "meaning": "sure, certain, positive, definite, reliable, trustworthy, safe, sound, firm, accurate, correct, exact, If I'm not mistaken, If I remember correctly, If I remember rightly" - }, - { - "example": "確かめる", - "reading": "たしかめる", - "meaning": "to ascertain, to check, to make sure" - }, - { - "example": "確かめる", - "reading": "たしかめる", - "meaning": "to ascertain, to check, to make sure" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "口", - "宀", - "石", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30906_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/078ba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/78ba.gif", - "uri": "http://jisho.org/search/%E7%A2%BA%23kanji" - }, - { - "query": "額", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "407", - "strokeCount": 18, - "meaning": "forehead, tablet, plaque, framed picture, sum, amount, volume", - "kunyomi": [ - "ひたい" - ], - "onyomi": [ - "ガク" - ], - "onyomiExamples": [ - { - "example": "額", - "reading": "ガク", - "meaning": "(picture) frame, framed picture, amount (esp. of money), sum" - }, - { - "example": "額面", - "reading": "ガクメン", - "meaning": "face value, par" - }, - { - "example": "定額", - "reading": "テイガク", - "meaning": "ration, fixed amount" - }, - { - "example": "税額", - "reading": "ゼイガク", - "meaning": "amount of tax" - } - ], - "kunyomiExamples": [ - { - "example": "額", - "reading": "ひたい", - "meaning": "forehead, brow" - }, - { - "example": "額当て", - "reading": "ひたいあて", - "meaning": "(military) headband with reinforced metal plate, red headband" - }, - { - "example": "広い額", - "reading": "ひろいひたい", - "meaning": "high brow, broad forehead" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "口", - "夂", - "宀", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38989_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0984d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/984d.gif", - "uri": "http://jisho.org/search/%E9%A1%8D%23kanji" - }, - { - "query": "刊", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "855", - "strokeCount": 5, - "meaning": "publish, carve, engrave", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "刊", - "reading": "カン", - "meaning": "publication, edition (e.g. morning, evening, special), published in (year), publication frequency (e.g. daily, monthly)" - }, - { - "example": "刊行", - "reading": "カンコウ", - "meaning": "publication, issue" - }, - { - "example": "週刊", - "reading": "シュウカン", - "meaning": "weekly publication" - }, - { - "example": "休刊", - "reading": "キュウカン", - "meaning": "suspension of publication" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "干" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21002_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0520a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/520a.gif", - "uri": "http://jisho.org/search/%E5%88%8A%23kanji" - }, - { - "query": "幹", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "364", - "strokeCount": 13, - "meaning": "tree trunk, main part, talent, capability", - "kunyomi": [ - "みき" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "幹", - "reading": "ミキ", - "meaning": "(tree) trunk, (arrow) shaft, (tool) handle, backbone, base" - }, - { - "example": "幹事", - "reading": "カンジ", - "meaning": "executive secretary, coordinator, organizer, person in charge of making arrangements" - }, - { - "example": "主幹", - "reading": "シュカン", - "meaning": "chief editor, managing editor, manager, person in charge" - }, - { - "example": "基幹", - "reading": "キカン", - "meaning": "mainstay, nucleus, key" - } - ], - "kunyomiExamples": [ - { - "example": "幹", - "reading": "みき", - "meaning": "(tree) trunk, (arrow) shaft, (tool) handle, backbone, base" - } - ], - "radical": { - "symbol": "干", - "meaning": "pestle" - }, - "parts": [ - "个", - "十", - "干", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24185_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e79.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e79.gif", - "uri": "http://jisho.org/search/%E5%B9%B9%23kanji" - }, - { - "query": "慣", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1177", - "strokeCount": 14, - "meaning": "accustomed, get used to, become experienced", - "kunyomi": [ - "な.れる", - "な.らす" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "慣習", - "reading": "カンシュウ", - "meaning": "custom, convention, common practice, becoming accustomed (to)" - }, - { - "example": "慣行", - "reading": "カンコウ", - "meaning": "customary practice, habit, traditional event" - }, - { - "example": "旧慣", - "reading": "キュウカン", - "meaning": "old customs" - }, - { - "example": "購買習慣", - "reading": "コウバイシュウカン", - "meaning": "buying habit" - } - ], - "kunyomiExamples": [ - { - "example": "慣れる", - "reading": "なれる", - "meaning": "to get used to, to grow accustomed to, to become familiar with, to become skilled in, to become experienced at, to become tame, to become domesticated, to get used to doing" - }, - { - "example": "慣らす", - "reading": "ならす", - "meaning": "to accustom, to train (e.g. one's ear), to tame, to domesticate, to train (an animal)" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ハ", - "忙", - "毋", - "母", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24931_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06163.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6163.gif", - "uri": "http://jisho.org/search/%E6%85%A3%23kanji" - }, - { - "query": "眼", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1527", - "strokeCount": 11, - "meaning": "eyeball", - "kunyomi": [ - "まなこ", - "め" - ], - "onyomi": [ - "ガン", - "ゲン" - ], - "onyomiExamples": [ - { - "example": "眼", - "reading": "ガン", - "meaning": "eye, insight, vision, power of observation, gist, main point, hole" - }, - { - "example": "眼科", - "reading": "ガンカ", - "meaning": "ophthalmology" - }, - { - "example": "主眼", - "reading": "シュガン", - "meaning": "main purpose, chief aim, focus, main point, gist, essence" - }, - { - "example": "象嵌", - "reading": "ゾウガン", - "meaning": "inlay (work), inlaying" - }, - { - "example": "慈眼", - "reading": "ジゲン", - "meaning": "merciful eye (of a Buddha or a bodhisattva watching humanity)" - }, - { - "example": "開眼", - "reading": "カイガン", - "meaning": "enlightenment, spiritual awakening, opening one's eyes to the truth, gaining eyesight, restoring eyesight, opening the eyes" - } - ], - "kunyomiExamples": [ - { - "example": "眼", - "reading": "まなこ", - "meaning": "eye, eyeball, pupil and (dark) iris of the eye, insight, perceptivity, power of observation, look, field of vision, core, center, centre, essence" - }, - { - "example": "血眼", - "reading": "ちまなこ", - "meaning": "bloodshot eyes, (doing something in a) frenzy" - }, - { - "example": "百眼", - "reading": "ひゃくまなこ", - "meaning": "using multiple simple paper masks to represent different emotions in a play (from the middle of the Edo period), simple paper mask" - }, - { - "example": "目", - "reading": "め", - "meaning": "eye, eyeball, eyesight, sight, vision, look, stare, gaze, glance, notice, attention, observation, eyes (of the world, public, etc.), an experience, viewpoint, discrimination, discernment, judgement, eye (e.g. for quality), appearance, chance to succeed, possibility, spacing (between crossed strands of a net, mesh, etc.), opening, stitch, texture, weave, grain (of wood), eye (of a storm, needle, etc.), intersection (on a go board), square (on a chess board), dot (on a dice), pip, rolled number, graduation, division (of a scale), tooth (of a saw, comb, etc.), ordinal number suffix, somewhat, -ish, point (e.g. of change)" - }, - { - "example": "眼鏡", - "reading": "めがね", - "meaning": "glasses, eyeglasses, spectacles, judgment, judgement, discrimination, discernment, insight" - }, - { - "example": "血眼", - "reading": "ちまなこ", - "meaning": "bloodshot eyes, (doing something in a) frenzy" - }, - { - "example": "青目", - "reading": "あおめ", - "meaning": "blue eyes, a Westerner" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "目", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30524_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0773c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/773c.gif", - "uri": "http://jisho.org/search/%E7%9C%BC%23kanji" - }, - { - "query": "紀", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "780", - "strokeCount": 9, - "meaning": "chronicle, account, narrative, history, annals, geologic period", - "kunyomi": [], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "紀", - "reading": "キ", - "meaning": "period, Nihon-shoki" - }, - { - "example": "紀元前", - "reading": "キゲンゼン", - "meaning": "pre-era, BC, BCE" - }, - { - "example": "デボン紀", - "reading": "デボンキ", - "meaning": "Devonian period" - }, - { - "example": "前世紀", - "reading": "ゼンセイキ", - "meaning": "last century, ancient times" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "已", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32000_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d00.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d00.gif", - "uri": "http://jisho.org/search/%E7%B4%80%23kanji" - }, - { - "query": "基", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "241", - "strokeCount": 11, - "meaning": "fundamentals, radical (chem), counter for machines, foundation", - "kunyomi": [ - "もと", - "もとい" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "基", - "reading": "キ", - "meaning": "group, (free) radical, counter for installed or mounted objects (e.g. stone lanterns, gravestones, satellites)" - }, - { - "example": "起因", - "reading": "キイン", - "meaning": "cause, origin" - }, - { - "example": "塩基", - "reading": "エンキ", - "meaning": "base" - }, - { - "example": "開基", - "reading": "カイキ", - "meaning": "foundation of a temple, laying a foundation (stone), open base" - } - ], - "kunyomiExamples": [ - { - "example": "元", - "reading": "もと", - "meaning": "origin, source, base, basis, foundation, root, cause, ingredient, material, (somebody's) side, (somebody's) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip" - }, - { - "example": "基", - "reading": "もとい", - "meaning": "basis, foundation, cause" - }, - { - "example": "失敗は成功のもと", - "reading": "しっぱいはせいこうのもと", - "meaning": "failure teaches success, failure is a stepping-stone to success" - }, - { - "example": "生兵法は大怪我のもと", - "reading": "なまびょうほうはおおけがのもと", - "meaning": "a little learning is a dangerous thing" - }, - { - "example": "基", - "reading": "もとい", - "meaning": "basis, foundation, cause" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ハ", - "一", - "土", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22522_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57fa.gif", - "uri": "http://jisho.org/search/%E5%9F%BA%23kanji" - }, - { - "query": "寄", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "673", - "strokeCount": 11, - "meaning": "draw near, stop in, bring near, gather, collect, send, forward", - "kunyomi": [ - "よ.る", - "-よ.り", - "よ.せる" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "寄港", - "reading": "キコウ", - "meaning": "stopping at a port" - }, - { - "example": "寄金", - "reading": "キキン", - "meaning": "contribution, donation" - }, - { - "example": "数寄", - "reading": "スキ", - "meaning": "refined taste, elegant pursuits" - } - ], - "kunyomiExamples": [ - { - "example": "寄る", - "reading": "よる", - "meaning": "to approach, to draw near, to come near, to be close to, to gather (in one place), to come together, to meet, to stop by (while on one's way to another place), to drop by, to make a short visit, to grow old, to grow high (number, etc.), to grow (wrinkly), to lean against, to recline on, to push one's opponent while holding their belt, to decide on a price and come to a deal, to be swayed by (a person), to yield to" - }, - { - "example": "寄ると触ると", - "reading": "よるとさわると", - "meaning": "whenever they come together" - }, - { - "example": "寄せる", - "reading": "よせる", - "meaning": "to come near, to let someone approach, to bring near, to bring together, to collect, to gather, to deliver (opinion, news, etc.), to send (e.g. a letter), to contribute, to donate, to let someone drop by, to add (numbers), to have feelings for (love, goodwill, trust, etc.), to rely upon for a time, to depend on, to use as a pretext, to put aside, to press, to push, to force, to include, to welcome (in a group), to let in" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "一", - "亅", - "口", - "大", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23492_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bc4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bc4.gif", - "uri": "http://jisho.org/search/%E5%AF%84%23kanji" - }, - { - "query": "規", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "349", - "strokeCount": 11, - "meaning": "standard, measure", - "kunyomi": [], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "基準", - "reading": "キジュン", - "meaning": "standard, basis, criterion, norm, reference, datum" - }, - { - "example": "規格", - "reading": "キカク", - "meaning": "standard, norm" - }, - { - "example": "内規", - "reading": "ナイキ", - "meaning": "private regulations, bylaws, internal rules, tradition" - }, - { - "example": "正規", - "reading": "セイキ", - "meaning": "regular, normal, formal, legal, established, legitimate" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "二", - "人", - "土", - "大", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35215_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0898f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/898f.gif", - "uri": "http://jisho.org/search/%E8%A6%8F%23kanji" - }, - { - "query": "喜", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "769", - "strokeCount": 12, - "meaning": "rejoice, take pleasure in", - "kunyomi": [ - "よろこ.ぶ", - "よろこ.ばす" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "喜劇", - "reading": "キゲキ", - "meaning": "comedy, funny show" - }, - { - "example": "喜寿", - "reading": "キジュ", - "meaning": "77th birthday" - }, - { - "example": "歓喜", - "reading": "カンキ", - "meaning": "delight, great joy" - }, - { - "example": "悲喜", - "reading": "ヒキ", - "meaning": "joys and sorrows" - } - ], - "kunyomiExamples": [ - { - "example": "喜ぶ", - "reading": "よろこぶ", - "meaning": "to be delighted, to be glad, to be pleased, to congratulate, to gratefully accept" - }, - { - "example": "喜ばす", - "reading": "よろこばす", - "meaning": "to delight, to give pleasure" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "士", - "并", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21916_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0559c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/559c.gif", - "uri": "http://jisho.org/search/%E5%96%9C%23kanji" - }, - { - "query": "技", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "434", - "strokeCount": 7, - "meaning": "skill, art, craft, ability, feat, performance, vocation, arts", - "kunyomi": [ - "わざ" - ], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "技", - "reading": "ワザ", - "meaning": "technique, art, skill, move" - }, - { - "example": "技巧", - "reading": "ギコウ", - "meaning": "technique, finesse" - }, - { - "example": "国技", - "reading": "コクギ", - "meaning": "national sport (e.g. sumo)" - }, - { - "example": "陸上競技", - "reading": "リクジョウキョウギ", - "meaning": "track-and-field events" - } - ], - "kunyomiExamples": [ - { - "example": "技", - "reading": "わざ", - "meaning": "technique, art, skill, move" - }, - { - "example": "技あり", - "reading": "わざあり", - "meaning": "waza-ari (in judo, a half-point awarded for good but incomplete execution)" - }, - { - "example": "寝技", - "reading": "ねわざ", - "meaning": "pinning technique (in wrestling or judo), underhanded dealings" - }, - { - "example": "投げ技", - "reading": "なげわざ", - "meaning": "throw or throwing technique (sumo, judo)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "十", - "又", - "扎", - "支" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25216_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06280.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6280.gif", - "uri": "http://jisho.org/search/%E6%8A%80%23kanji" - }, - { - "query": "義", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "415", - "strokeCount": 13, - "meaning": "righteousness, justice, morality, honor, loyalty, meaning", - "kunyomi": [], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "義", - "reading": "ギ", - "meaning": "morality, righteousness, justice, honour (honor), meaning, teachings, doctrine, nonconsanguineous relationship (i.e. of in-laws), prosthesis" - }, - { - "example": "義援金", - "reading": "ギエンキン", - "meaning": "donation money (esp. disaster relief or charity), contribution" - }, - { - "example": "疑義", - "reading": "ギギ", - "meaning": "doubt" - }, - { - "example": "大義", - "reading": "タイギ", - "meaning": "great cause, moral law, justice" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "羊", - "forms": [ - "⺶" - ], - "meaning": "sheep" - }, - "parts": [ - "一", - "亅", - "并", - "戈", - "手", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32681_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fa9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fa9.gif", - "uri": "http://jisho.org/search/%E7%BE%A9%23kanji" - }, - { - "query": "逆", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "683", - "strokeCount": 9, - "meaning": "inverted, reverse, opposite, wicked", - "kunyomi": [ - "さか", - "さか.さ", - "さか.らう" - ], - "onyomi": [ - "ギャク", - "ゲキ" - ], - "onyomiExamples": [ - { - "example": "逆", - "reading": "ギャク", - "meaning": "reverse, opposite, converse (of a hypothesis, etc.), inverse (function)" - }, - { - "example": "逆効果", - "reading": "ギャクコウカ", - "meaning": "opposite effect, adverse effect, backfiring" - }, - { - "example": "反逆", - "reading": "ハンギャク", - "meaning": "treason, treachery, mutiny, rebellion, insurrection" - }, - { - "example": "可逆", - "reading": "カギャク", - "meaning": "reversible, invertible" - }, - { - "example": "逆旅", - "reading": "ゲキリョ", - "meaning": "inn" - }, - { - "example": "逆鱗", - "reading": "ゲキリン", - "meaning": "one's superior's anger, imperial wrath" - }, - { - "example": "莫逆", - "reading": "バクギャク", - "meaning": "cordial relations" - }, - { - "example": "乱逆", - "reading": "ランギャク", - "meaning": "rebellion" - } - ], - "kunyomiExamples": [ - { - "example": "逆", - "reading": "さか", - "meaning": "inverse, reverse" - }, - { - "example": "逆さ", - "reading": "さかさ", - "meaning": "inverted, upside down, reversed, back to front" - }, - { - "example": "逆さ", - "reading": "さかさ", - "meaning": "inverted, upside down, reversed, back to front" - }, - { - "example": "逆さま", - "reading": "さかさま", - "meaning": "inverted, upside down, reversed, back to front" - }, - { - "example": "逆らう", - "reading": "さからう", - "meaning": "to go against, to oppose, to disobey, to defy" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "屮", - "并", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36870_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09006.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9006.gif", - "uri": "http://jisho.org/search/%E9%80%86%23kanji" - }, - { - "query": "久", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "688", - "strokeCount": 3, - "meaning": "long time, old story", - "kunyomi": [ - "ひさ.しい" - ], - "onyomi": [ - "キュウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "旧痾", - "reading": "キュウア", - "meaning": "persistent disease" - }, - { - "example": "久安", - "reading": "キュウアン", - "meaning": "Kyūan era (1145.7.22-1151.1.26)" - }, - { - "example": "恒久", - "reading": "コウキュウ", - "meaning": "permanence, perpetuity" - }, - { - "example": "耐久", - "reading": "タイキュウ", - "meaning": "endurance, persistence" - }, - { - "example": "久留子", - "reading": "クルス", - "meaning": "cross sign" - }, - { - "example": "久遠", - "reading": "クオン", - "meaning": "eternity" - }, - { - "example": "天邪鬼", - "reading": "アマノジャク", - "meaning": "perversity, perverse person, contrary person, contrarian, antagonistic demon in Japanese folklore, demon under the feet of temple guardian statues" - } - ], - "kunyomiExamples": [ - { - "example": "久しい", - "reading": "ひさしい", - "meaning": "long (time that has passed), old (story)" - } - ], - "radical": { - "symbol": "丿", - "meaning": "slash" - }, - "parts": [ - "ノ", - "久", - "入" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20037_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e45.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e45.gif", - "uri": "http://jisho.org/search/%E4%B9%85%23kanji" - }, - { - "query": "旧", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "549", - "strokeCount": 5, - "meaning": "old times, old things, old friend, former, ex-", - "kunyomi": [ - "ふる.い", - "もと" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "旧", - "reading": "キュウ", - "meaning": "old, former, ex-, the old, old things, old customs, old times, bygone days, Japan's old (lunisolar) calendar" - }, - { - "example": "旧式", - "reading": "キュウシキ", - "meaning": "old type, old style" - }, - { - "example": "新旧", - "reading": "シンキュウ", - "meaning": "new and old, incoming and outgoing" - }, - { - "example": "懐旧", - "reading": "カイキュウ", - "meaning": "reminiscence, nostalgia, thinking fondly of the past, recalling the old days" - } - ], - "kunyomiExamples": [ - { - "example": "古い", - "reading": "ふるい", - "meaning": "old, aged, ancient, antiquated, antique, timeworn, long, since long ago, time-honored, of the distant past, long-ago, stale, threadbare, hackneyed, corny, old-fashioned, outmoded, out-of-date" - }, - { - "example": "元", - "reading": "もと", - "meaning": "former, ex-, past, one-time, earlier times, the past, previous state, formerly, previously, originally, before" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26087_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065e7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65e7.gif", - "uri": "http://jisho.org/search/%E6%97%A7%23kanji" - }, - { - "query": "救", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "799", - "strokeCount": 11, - "meaning": "salvation, save, help, rescue, reclaim", - "kunyomi": [ - "すく.う" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "救急", - "reading": "キュウキュウ", - "meaning": "first-aid, emergency (aid)" - }, - { - "example": "救援", - "reading": "キュウエン", - "meaning": "relief, rescue" - }, - { - "example": "匡救", - "reading": "キョウキュウ", - "meaning": "delivering from sin, succor, succour" - } - ], - "kunyomiExamples": [ - { - "example": "救う", - "reading": "すくう", - "meaning": "to rescue from, to help out of, to save" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "丶", - "乞", - "攵", - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25937_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06551.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6551.gif", - "uri": "http://jisho.org/search/%E6%95%91%23kanji" - }, - { - "query": "居", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "836", - "strokeCount": 8, - "meaning": "reside, to be, exist, live with", - "kunyomi": [ - "い.る", - "-い", - "お.る" - ], - "onyomi": [ - "キョ", - "コ" - ], - "onyomiExamples": [ - { - "example": "居", - "reading": "キョ", - "meaning": "residence" - }, - { - "example": "居室", - "reading": "キョシツ", - "meaning": "living room" - }, - { - "example": "入居", - "reading": "ニュウキョ", - "meaning": "moving into (house)" - }, - { - "example": "住居", - "reading": "ジュウキョ", - "meaning": "dwelling, house, residence, address" - }, - { - "example": "居士", - "reading": "コジ", - "meaning": "grhapati (layman; sometimes used as a posthumous suffix), private-sector scholar" - } - ], - "kunyomiExamples": [ - { - "example": "居る", - "reading": "いる", - "meaning": "to be (of animate objects), to exist, to stay, to be ...-ing, to have been ...-ing" - }, - { - "example": "居留守", - "reading": "いるす", - "meaning": "pretending to be out" - }, - { - "example": "居る", - "reading": "おる", - "meaning": "to be (animate), to be, to exist, to be ..ing, to (have the audacity to) do" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "十", - "口", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23621_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c45.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c45.gif", - "uri": "http://jisho.org/search/%E5%B1%85%23kanji" - }, - { - "query": "許", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "720", - "strokeCount": 11, - "meaning": "permit, approve", - "kunyomi": [ - "ゆる.す", - "もと" - ], - "onyomi": [ - "キョ" - ], - "onyomiExamples": [ - { - "example": "許諾", - "reading": "キョダク", - "meaning": "consent" - }, - { - "example": "許可", - "reading": "キョカ", - "meaning": "permission, approval, authorization, license, to permit, to authorize" - }, - { - "example": "特許", - "reading": "トッキョ", - "meaning": "patent, special permission, licence (license), concession, franchise, charter, proprietary" - }, - { - "example": "専売特許", - "reading": "センバイトッキョ", - "meaning": "patent, one's specialty (party piece, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "許す", - "reading": "ゆるす", - "meaning": "to permit, to allow, to approve, to consent to, to forgive, to pardon, to excuse, to tolerate, to exempt (someone) from, to remit, to release, to let off, to acknowledge, to admit, to trust, to confide in, to let one's guard down, to give up (points in a game, distance in a race, etc.), to yield" - }, - { - "example": "許すまじ", - "reading": "ゆるすまじ", - "meaning": "unforgivable, inexcusable, unpardonable" - }, - { - "example": "下", - "reading": "もと", - "meaning": "under (guidance, supervision, rules, the law, etc.), under (a flag, the sun, etc.), beneath, with (e.g. one blow), on (the promise, condition, assumption, etc. that ...), in (e.g. the name of), (somebody's) side, (somebody's) location" - }, - { - "example": "胸元", - "reading": "むなもと", - "meaning": "breast, chest, pit of the stomach, solar plexus, epigastrium" - }, - { - "example": "其処許", - "reading": "そこもと", - "meaning": "that place, there, you" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "乞", - "十", - "干", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35377_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a31.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a31.gif", - "uri": "http://jisho.org/search/%E8%A8%B1%23kanji" - }, - { - "query": "境", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "346", - "strokeCount": 14, - "meaning": "boundary, border, region", - "kunyomi": [ - "さかい" - ], - "onyomi": [ - "キョウ", - "ケイ" - ], - "onyomiExamples": [ - { - "example": "境", - "reading": "サカイ", - "meaning": "border, boundary, turning point, watershed, area, region, spot, space, environment, psychological state, mental state, cognitive object, something perceptible by the sense organs or mind" - }, - { - "example": "境界", - "reading": "キョウカイ", - "meaning": "boundary, border, limit, bounds, frontier" - }, - { - "example": "越境", - "reading": "エッキョウ", - "meaning": "border transgression" - }, - { - "example": "推奨環境", - "reading": "スイショウカンキョウ", - "meaning": "system requirements (i.e. recommended hardware and software to run a package)" - }, - { - "example": "境内", - "reading": "ケイダイ", - "meaning": "grounds (esp. of shrines and temples), compound, churchyard, precincts" - }, - { - "example": "境界", - "reading": "ケイカイ", - "meaning": "land boundary, border (between properties)" - } - ], - "kunyomiExamples": [ - { - "example": "境", - "reading": "さかい", - "meaning": "border, boundary, turning point, watershed, area, region, spot, space, environment, psychological state, mental state, cognitive object, something perceptible by the sense organs or mind" - }, - { - "example": "境目", - "reading": "さかいめ", - "meaning": "borderline, boundary" - }, - { - "example": "生死の境", - "reading": "せいしのさかい", - "meaning": "between life and death" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "儿", - "土", - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22659_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05883.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5883.gif", - "uri": "http://jisho.org/search/%E5%A2%83%23kanji" - }, - { - "query": "均", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "715", - "strokeCount": 7, - "meaning": "level, average", - "kunyomi": [ - "なら.す" - ], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "均衡", - "reading": "キンコウ", - "meaning": "equilibrium, balance" - }, - { - "example": "均一", - "reading": "キンイツ", - "meaning": "uniformity, equality" - }, - { - "example": "100均", - "reading": "ヒャッキン", - "meaning": "hundred-yen store, 100 yen shop" - }, - { - "example": "移動平均", - "reading": "イドウヘイキン", - "meaning": "moving average" - } - ], - "kunyomiExamples": [ - { - "example": "均す", - "reading": "ならす", - "meaning": "to make even, to make smooth, to make level, to flatten, to average" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "二", - "冫", - "勹", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22343_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05747.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5747.gif", - "uri": "http://jisho.org/search/%E5%9D%87%23kanji" - }, - { - "query": "禁", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "681", - "strokeCount": 13, - "meaning": "prohibition, ban, forbid", - "kunyomi": [], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "禁", - "reading": "キン", - "meaning": "ban (e.g. on smoking), prohibition" - }, - { - "example": "禁煙", - "reading": "キンエン", - "meaning": "abstaining from smoking, quitting smoking, No Smoking!, Smoking Prohibited!" - }, - { - "example": "軟禁", - "reading": "ナンキン", - "meaning": "house arrest" - }, - { - "example": "拘禁", - "reading": "コウキン", - "meaning": "detention, custody, confinement, internment" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "二", - "小", - "木", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31105_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07981.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7981.gif", - "uri": "http://jisho.org/search/%E7%A6%81%23kanji" - }, - { - "query": "句", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1244", - "strokeCount": 5, - "meaning": "phrase, clause, sentence, passage, paragraph, counter for haiku", - "kunyomi": [], - "onyomi": [ - "ク" - ], - "onyomiExamples": [ - { - "example": "句", - "reading": "ク", - "meaning": "section (i.e. of text), sentence, passage, paragraph, phrase, verse (of 5 or 7 mora in Japanese poetry; of 4, 5, or 7 characters in Chinese poetry), haiku, first 17 morae of a renga, etc., maxim, saying, idiom, expression" - }, - { - "example": "区切り", - "reading": "クギリ", - "meaning": "punctuation, pause, juncture, end, (place to) stop" - }, - { - "example": "絶句", - "reading": "ゼック", - "meaning": "being lost for words, becoming speechless, jueju (Chinese quatrain with lines of either five or seven syllables)" - }, - { - "example": "慣用句", - "reading": "カンヨウク", - "meaning": "idiom, set phrase, idiomatic phrase" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "勹", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21477_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053e5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53e5.gif", - "uri": "http://jisho.org/search/%E5%8F%A5%23kanji" - }, - { - "query": "型", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "482", - "strokeCount": 9, - "meaning": "mould, type, model", - "kunyomi": [ - "かた", - "-がた" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "型式", - "reading": "カタシキ", - "meaning": "model (e.g. of a vehicle), type" - }, - { - "example": "造形", - "reading": "ゾウケイ", - "meaning": "molding, moulding, shaping, modelling (i.e. plastic arts), modeling" - }, - { - "example": "体型", - "reading": "タイケイ", - "meaning": "figure, body shape, build, physique, form, somatotype, biotype, habitus, (type of) physique" - } - ], - "kunyomiExamples": [ - { - "example": "型", - "reading": "かた", - "meaning": "model, type (e.g. of machine, goods, etc.), type, style, pattern, mold (mould), template, model, kata (standard form of a movement, posture, etc. in martial arts, sport, etc.), form (i.e. customary procedure), size (i.e. clothing, shoes), inch (in diagonal display size), (taxonomical) form" - }, - { - "example": "型式", - "reading": "かたしき", - "meaning": "model (e.g. of a vehicle), type" - }, - { - "example": "ギャランティ型", - "reading": "ギャランティかた", - "meaning": "guarantee type" - }, - { - "example": "不況型", - "reading": "ふきょうかた", - "meaning": "recession-induced" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "一", - "二", - "刈", - "土", - "廾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22411_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0578b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/578b.gif", - "uri": "http://jisho.org/search/%E5%9E%8B%23kanji" - }, - { - "query": "経", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "79", - "strokeCount": 11, - "meaning": "sutra, longitude, pass thru, expire, warp", - "kunyomi": [ - "へ.る", - "た.つ", - "たていと", - "はか.る", - "のり" - ], - "onyomi": [ - "ケイ", - "キョウ", - "キン" - ], - "onyomiExamples": [ - { - "example": "経", - "reading": "ケイ", - "meaning": "warp (weaving), longitude, scripture, sutra, trans-" - }, - { - "example": "経団連", - "reading": "ケイダンレン", - "meaning": "Federation of Economic Organizations (Organisation)" - }, - { - "example": "月経", - "reading": "ゲッケイ", - "meaning": "menstruation, menstrual period" - }, - { - "example": "政経", - "reading": "セイケイ", - "meaning": "politics and economics" - }, - { - "example": "経", - "reading": "キョウ", - "meaning": "sutra, Buddhist scriptures" - }, - { - "example": "経典", - "reading": "キョウテン", - "meaning": "sacred books, sutras, scriptures, Bible" - }, - { - "example": "説経", - "reading": "セッキョウ", - "meaning": "lecture on the sutras" - }, - { - "example": "法華経", - "reading": "ホケキョウ", - "meaning": "Lotus Sutra" - }, - { - "example": "経行", - "reading": "キンヒン", - "meaning": "meditation performed while walking" - }, - { - "example": "看経", - "reading": "カンキン", - "meaning": "silent reading of sutra" - } - ], - "kunyomiExamples": [ - { - "example": "経る", - "reading": "へる", - "meaning": "to pass, to elapse, to go by, to pass through, to go through, to experience, to go through, to undergo" - }, - { - "example": "経つ", - "reading": "たつ", - "meaning": "to pass (of time), to elapse" - }, - { - "example": "縦糸", - "reading": "たていと", - "meaning": "(weaving) warp" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "又", - "土", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32076_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d4c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d4c.gif", - "uri": "http://jisho.org/search/%E7%B5%8C%23kanji" - }, - { - "query": "潔", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1595", - "strokeCount": 15, - "meaning": "undefiled, pure, clean, righteous, gallant", - "kunyomi": [ - "いさぎよ.い" - ], - "onyomi": [ - "ケツ" - ], - "onyomiExamples": [ - { - "example": "廉潔", - "reading": "レンケツ", - "meaning": "honest, incorruptible, integrity" - }, - { - "example": "貞潔", - "reading": "テイケツ", - "meaning": "chastity, purity" - } - ], - "kunyomiExamples": [ - { - "example": "潔い", - "reading": "いさぎよい", - "meaning": "manly, sportsmanlike, gracious, gallant, resolute, brave, pure (heart, actions, etc.), upright, blameless, unsullied (e.g. scenery or object), pure, clean" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "二", - "亠", - "刀", - "土", - "小", - "幺", - "汁", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28500_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f54.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f54.gif", - "uri": "http://jisho.org/search/%E6%BD%94%23kanji" - }, - { - "query": "件", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "212", - "strokeCount": 6, - "meaning": "affair, case, matter, item", - "kunyomi": [ - "くだん" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "件", - "reading": "ケン", - "meaning": "matter, case, item, affair, subject" - }, - { - "example": "件数", - "reading": "ケンスウ", - "meaning": "number of events (e.g. accidents, crimes, meetings, housing starts, hits on a web page)" - }, - { - "example": "刑事事件", - "reading": "ケイジジケン", - "meaning": "criminal case" - }, - { - "example": "要件", - "reading": "ヨウケン", - "meaning": "important matter, requirement, requisite, necessary condition, sine qua non" - } - ], - "kunyomiExamples": [ - { - "example": "件", - "reading": "くだん", - "meaning": "the aforementioned, the said, (man, incident, etc.) in question, the above-mentioned, the aforesaid, the usual" - }, - { - "example": "件の一件", - "reading": "くだんのいっけん", - "meaning": "the matter in question, the aforesaid matter" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20214_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ef6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ef6.gif", - "uri": "http://jisho.org/search/%E4%BB%B6%23kanji" - }, - { - "query": "険", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "707", - "strokeCount": 11, - "meaning": "precipitous, inaccessible place, impregnable position, steep place, sharp eyes", - "kunyomi": [ - "けわ.しい" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "険", - "reading": "ケン", - "meaning": "steepness, steep place, harsh (look), sharp (tongue)" - }, - { - "example": "険悪", - "reading": "ケンアク", - "meaning": "dangerous, perilous, threatening, stormy, volatile, tense, critical, serious, stern (expression), hostile (attitude), sharp, harsh" - }, - { - "example": "損害保険", - "reading": "ソンガイホケン", - "meaning": "damage insurance" - }, - { - "example": "社会保険", - "reading": "シャカイホケン", - "meaning": "social insurance" - } - ], - "kunyomiExamples": [ - { - "example": "険しい", - "reading": "けわしい", - "meaning": "precipitous, rugged, inaccessible, impregnable, steep, grim, severe, stern" - }, - { - "example": "険しい顔", - "reading": "けわしいかお", - "meaning": "grim face" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "个", - "人", - "口", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38522_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0967a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/967a.gif", - "uri": "http://jisho.org/search/%E9%99%BA%23kanji" - }, - { - "query": "検", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "290", - "strokeCount": 12, - "meaning": "examination, investigate", - "kunyomi": [ - "しら.べる" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "検閲", - "reading": "ケンエツ", - "meaning": "censorship, inspection, examination" - }, - { - "example": "検疫", - "reading": "ケンエキ", - "meaning": "quarantine, medical inspection" - }, - { - "example": "送検", - "reading": "ソウケン", - "meaning": "sending the person accused to the prosecutor" - }, - { - "example": "最高検", - "reading": "サイコウケン", - "meaning": "Public Prosecutor's Office" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "个", - "人", - "口", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26908_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0691c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/691c.gif", - "uri": "http://jisho.org/search/%E6%A4%9C%23kanji" - }, - { - "query": "限", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "405", - "strokeCount": 9, - "meaning": "limit, restrict, to best of ability", - "kunyomi": [ - "かぎ.る", - "かぎ.り", - "-かぎ.り" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "限定", - "reading": "ゲンテイ", - "meaning": "limit, restriction" - }, - { - "example": "限界", - "reading": "ゲンカイ", - "meaning": "limit, bound" - }, - { - "example": "上限", - "reading": "ジョウゲン", - "meaning": "upper limit, supremum" - }, - { - "example": "有限", - "reading": "ユウゲン", - "meaning": "finite, limited" - } - ], - "kunyomiExamples": [ - { - "example": "限る", - "reading": "かぎる", - "meaning": "to restrict, to limit, to confine, to be restricted to, to be limited to, to be confined to, to be best (for), to be the best plan, to be the only way (to)" - }, - { - "example": "限り", - "reading": "かぎり", - "meaning": "limit, limits, bounds, degree, extent, scope, the end, the last, as long as ..., as far as ..., as much as ..., to the limits of ..., all of ..., unless ..., (not) included in ..., (not) part of ..., ... only (e.g. \"one time only\", \"today only\"), end of one's life, final moments, death, funeral, burial" - }, - { - "example": "限りない", - "reading": "かぎりない", - "meaning": "eternal, unlimited, endless" - }, - { - "example": "中限", - "reading": "なかぎり", - "meaning": "next-month delivery" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "艮", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38480_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09650.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9650.gif", - "uri": "http://jisho.org/search/%E9%99%90%23kanji" - }, - { - "query": "現", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "85", - "strokeCount": 11, - "meaning": "present, existing, actual", - "kunyomi": [ - "あらわ.れる", - "あらわ.す", - "うつつ", - "うつ.つ" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "現", - "reading": "ゲン", - "meaning": "present (e.g. government, administration), current, existing" - }, - { - "example": "現役", - "reading": "ゲンエキ", - "meaning": "active duty, active service, student taking (university) entrance exams while still enrolled in school, student who passed their university entrance exams on the first try" - }, - { - "example": "具現", - "reading": "グゲン", - "meaning": "incarnation, embodiment, realization, giving concrete form (to)" - }, - { - "example": "体現", - "reading": "タイゲン", - "meaning": "personification, impersonation, embodiment" - } - ], - "kunyomiExamples": [ - { - "example": "現れる", - "reading": "あらわれる", - "meaning": "to appear, to come in sight, to become visible, to come out, to embody, to materialize, to materialise, to be expressed (e.g. emotions), to become apparent (e.g. trends, effects)" - }, - { - "example": "表す", - "reading": "あらわす", - "meaning": "to represent, to signify, to stand for, to reveal, to show, to display, to express, to make widely known" - }, - { - "example": "現つ", - "reading": "うつつ", - "meaning": "reality, consciousness" - }, - { - "example": "現責め", - "reading": "うつつぜめ", - "meaning": "sleep deprivation (as a form of torture)" - }, - { - "example": "現つ", - "reading": "うつつ", - "meaning": "reality, consciousness" - }, - { - "example": "現責め", - "reading": "うつつぜめ", - "meaning": "sleep deprivation (as a form of torture)" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "王", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29694_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/073fe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/73fe.gif", - "uri": "http://jisho.org/search/%E7%8F%BE%23kanji" - }, - { - "query": "減", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "261", - "strokeCount": 12, - "meaning": "dwindle, decrease, reduce, decline, curtail, get hungry", - "kunyomi": [ - "へ.る", - "へ.らす" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "減", - "reading": "ゲン", - "meaning": "reduction, decrease, subtraction, reduction of penalty (under the ritsuryo codes)" - }, - { - "example": "減員", - "reading": "ゲンイン", - "meaning": "reduction of staff" - }, - { - "example": "増減", - "reading": "ゾウゲン", - "meaning": "increase and decrease, fluctuation" - }, - { - "example": "軽減", - "reading": "ケイゲン", - "meaning": "abatement, reduction" - } - ], - "kunyomiExamples": [ - { - "example": "減る", - "reading": "へる", - "meaning": "to decrease (in size or number), to diminish, to abate" - }, - { - "example": "減るもんじゃない", - "reading": "へるもんじゃない", - "meaning": "it's no big deal, it's nothing to fret about, it's not like it's the end of the world" - }, - { - "example": "減らす", - "reading": "へらす", - "meaning": "to abate, to decrease, to diminish, to shorten" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "亅", - "口", - "戈", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28187_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e1b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e1b.gif", - "uri": "http://jisho.org/search/%E6%B8%9B%23kanji" - }, - { - "query": "故", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "612", - "strokeCount": 9, - "meaning": "happenstance, especially, intentionally, reason, cause, circumstances, the late, therefore, consequently", - "kunyomi": [ - "ゆえ", - "ふる.い", - "もと" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "故", - "reading": "コ", - "meaning": "the late, the deceased" - }, - { - "example": "殊更", - "reading": "コトサラ", - "meaning": "intentionally, deliberately, designedly, on purpose, especially, particularly" - }, - { - "example": "物故", - "reading": "ブッコ", - "meaning": "death (of a person)" - }, - { - "example": "人身事故", - "reading": "ジンシンジコ", - "meaning": "accident resulting in personal injury or death (esp. traffic, rail, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "故", - "reading": "ゆえ", - "meaning": "reason, cause, circumstances" - }, - { - "example": "故に", - "reading": "ゆえに", - "meaning": "therefore, consequently" - }, - { - "example": "古い", - "reading": "ふるい", - "meaning": "old, aged, ancient, antiquated, antique, timeworn, long, since long ago, time-honored, of the distant past, long-ago, stale, threadbare, hackneyed, corny, old-fashioned, outmoded, out-of-date" - }, - { - "example": "元", - "reading": "もと", - "meaning": "former, ex-, past, one-time, earlier times, the past, previous state, formerly, previously, originally, before" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "十", - "口", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25925_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06545.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6545.gif", - "uri": "http://jisho.org/search/%E6%95%85%23kanji" - }, - { - "query": "個", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "451", - "strokeCount": 10, - "meaning": "individual, counter for articles", - "kunyomi": [], - "onyomi": [ - "コ", - "カ" - ], - "onyomiExamples": [ - { - "example": "個", - "reading": "コ", - "meaning": "counter for articles, counter for military units, individual" - }, - { - "example": "個々", - "reading": "ココ", - "meaning": "individual, one by one, separate, each" - }, - { - "example": "好個", - "reading": "コウコ", - "meaning": "excellent, fine, pertinent" - }, - { - "example": "複数個", - "reading": "フクスウコ", - "meaning": "multitude" - }, - { - "example": "箇", - "reading": "カ", - "meaning": "counter for the ichi-ni-san counting system (usu. directly preceding the item being counted), a noun read using its on-yomi" - }, - { - "example": "箇所", - "reading": "カショ", - "meaning": "place, point, part, spot, area, passage, portion, counter for places, parts, passages, etc." - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "十", - "口", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20491_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0500b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/500b.gif", - "uri": "http://jisho.org/search/%E5%80%8B%23kanji" - }, - { - "query": "護", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "351", - "strokeCount": 20, - "meaning": "safeguard, protect", - "kunyomi": [ - "まも.る" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "護岸", - "reading": "ゴガン", - "meaning": "river dike" - }, - { - "example": "護衛", - "reading": "ゴエイ", - "meaning": "guard, convoy, escort" - }, - { - "example": "警護", - "reading": "ケイゴ", - "meaning": "bodyguard, escort" - }, - { - "example": "愛護", - "reading": "アイゴ", - "meaning": "protection, tender care" - } - ], - "kunyomiExamples": [ - { - "example": "守る", - "reading": "まもる", - "meaning": "to protect, to guard, to defend, to keep (i.e. a promise), to abide (by the rules), to observe, to obey, to follow" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "又", - "艾", - "言", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35703_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b77.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b77.gif", - "uri": "http://jisho.org/search/%E8%AD%B7%23kanji" - }, - { - "query": "効", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "538", - "strokeCount": 8, - "meaning": "merit, efficacy, efficiency, benefit", - "kunyomi": [ - "き.く", - "ききめ", - "なら.う" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "効", - "reading": "コウ", - "meaning": "efficacy, benefit, efficiency, effect, result, success" - }, - { - "example": "効果", - "reading": "コウカ", - "meaning": "effect, effectiveness, efficacy, result, effects (e.g. sound effects, visual effects, special effects)" - }, - { - "example": "実効", - "reading": "ジッコウ", - "meaning": "practical effect, efficacy, efficiency" - }, - { - "example": "時効", - "reading": "ジコウ", - "meaning": "statute of limitations, lapse of rights after a period of time, prescription (including acquisitive and extinctive prescription), becoming invalid or void after a set time, ageing, aging" - } - ], - "kunyomiExamples": [ - { - "example": "効く", - "reading": "きく", - "meaning": "to be effective, to take effect, to be good (for), to work, to function well, to be possible (to do, use, etc.), to be able to, to taste (alcohol), to try" - }, - { - "example": "効き目", - "reading": "ききめ", - "meaning": "effect, virtue, efficacy, impression, one's dominant eye" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "亠", - "力", - "父" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21177_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052b9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52b9.gif", - "uri": "http://jisho.org/search/%E5%8A%B9%23kanji" - }, - { - "query": "厚", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "768", - "strokeCount": 9, - "meaning": "thick, heavy, rich, kind, cordial, brazen, shameless", - "kunyomi": [ - "あつ.い", - "あか" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "厚生", - "reading": "コウセイ", - "meaning": "welfare, public welfare, social welfare, (former) Ministry of Health and Welfare" - }, - { - "example": "厚相", - "reading": "コウショウ", - "meaning": "Welfare Minister" - }, - { - "example": "重厚", - "reading": "ジュウコウ", - "meaning": "profound, deep, grave, solid, dignified, stately, solemn, massive, composed" - }, - { - "example": "敗色濃厚", - "reading": "ハイショクノウコウ", - "meaning": "likely loss, probable defeat" - } - ], - "kunyomiExamples": [ - { - "example": "厚い", - "reading": "あつい", - "meaning": "thick, deep, heavy, kind, cordial, hospitable, warm, faithful, serious (of an illness), abundant" - }, - { - "example": "厚板", - "reading": "あついた", - "meaning": "plank, thick board, plate glass, heavy metal sheet (esp. welding), heavy brocaded obi" - } - ], - "radical": { - "symbol": "厂", - "meaning": "cliff" - }, - "parts": [ - "厂", - "子", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21402_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0539a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/539a.gif", - "uri": "http://jisho.org/search/%E5%8E%9A%23kanji" - }, - { - "query": "耕", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1568", - "strokeCount": 10, - "meaning": "till, plow, cultivate", - "kunyomi": [ - "たがや.す" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "耕作", - "reading": "コウサク", - "meaning": "cultivation, farming" - }, - { - "example": "耕地", - "reading": "コウチ", - "meaning": "arable land" - }, - { - "example": "農耕", - "reading": "ノウコウ", - "meaning": "farming, agriculture, cultivation" - }, - { - "example": "水耕", - "reading": "スイコウ", - "meaning": "hydroponics" - } - ], - "kunyomiExamples": [ - { - "example": "耕す", - "reading": "たがやす", - "meaning": "to till, to plow, to plough, to cultivate" - } - ], - "radical": { - "symbol": "耒", - "meaning": "plow" - }, - "parts": [ - "ノ", - "ハ", - "亅", - "井", - "土", - "木", - "耒", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32789_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08015.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8015.gif", - "uri": "http://jisho.org/search/%E8%80%95%23kanji" - }, - { - "query": "航", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "665", - "strokeCount": 10, - "meaning": "navigate, sail, cruise, fly", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "航空", - "reading": "コウクウ", - "meaning": "aviation, flying" - }, - { - "example": "航海", - "reading": "コウカイ", - "meaning": "(sea) voyage, navigation, sailing, passage, cruise" - }, - { - "example": "密航", - "reading": "ミッコウ", - "meaning": "smuggling (people), stowing away" - }, - { - "example": "就航", - "reading": "シュウコウ", - "meaning": "entering service (on a route; of a plane or ship), going into commission, being in service" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "亠", - "几", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33322_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0822a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/822a.gif", - "uri": "http://jisho.org/search/%E8%88%AA%23kanji" - }, - { - "query": "鉱", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1376", - "strokeCount": 13, - "meaning": "mineral, ore", - "kunyomi": [ - "あらがね" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "鉱区", - "reading": "コウク", - "meaning": "mining area, mine lot" - }, - { - "example": "鉱業", - "reading": "コウギョウ", - "meaning": "mining industry" - }, - { - "example": "廃坑", - "reading": "ハイコウ", - "meaning": "abandoned mine, disused mine" - }, - { - "example": "採鉱", - "reading": "サイコウ", - "meaning": "mining" - } - ], - "kunyomiExamples": [ - { - "example": "粗金", - "reading": "あらがね", - "meaning": "ore" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "厶", - "广", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37489_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09271.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9271.gif", - "uri": "http://jisho.org/search/%E9%89%B1%23kanji" - }, - { - "query": "構", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "316", - "strokeCount": 14, - "meaning": "posture, build, pretend", - "kunyomi": [ - "かま.える", - "かま.う" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "構成", - "reading": "コウセイ", - "meaning": "composition, construction, formation, makeup, structure, organization, organisation" - }, - { - "example": "構図", - "reading": "コウズ", - "meaning": "composition" - }, - { - "example": "遺構", - "reading": "イコウ", - "meaning": "(archaeological) remains, remnants (of ancient structures), ancient foundation" - }, - { - "example": "外構え", - "reading": "ソトガマエ", - "meaning": "outward appearance (of a house), exterior, external structure (of a building; e.g. gate, fence, garage), exterior structure" - } - ], - "kunyomiExamples": [ - { - "example": "構える", - "reading": "かまえる", - "meaning": "to set up (a house, store, etc.), to build, to establish, to run, to maintain, to have at the ready (e.g. a gun), to hold in preparation (e.g. a camera), to prepare in advance (e.g. a meal), to adopt a posture, to assume a stance, to stand ready, to be poised for, to put on an air, to assume an attitude, to stiffen, to tense up, to become formal, to fabricate in order to deceive, to make up, to feign, to plan, to scheme" - }, - { - "example": "構う", - "reading": "かまう", - "meaning": "to mind, to care about, to be concerned about, to have a regard for, to be an issue, to matter, to create inconvenience, to keep company, to care for, to look after, to entertain, to pay attention to, to spend time with, to interfere with, to meddle in, to tease, to banish, to prohibit" - }, - { - "example": "構うものか", - "reading": "かまうものか", - "meaning": "who cares?, I don't give a damn, what does it matter?" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "冂", - "十", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27083_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/069cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/69cb.gif", - "uri": "http://jisho.org/search/%E6%A7%8B%23kanji" - }, - { - "query": "興", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "734", - "strokeCount": 16, - "meaning": "entertain, revive, retrieve, interest, pleasure", - "kunyomi": [ - "おこ.る", - "おこ.す" - ], - "onyomi": [ - "コウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "興業", - "reading": "コウギョウ", - "meaning": "promotion of industry, inauguration of a new industrial enterprise" - }, - { - "example": "興行", - "reading": "コウギョウ", - "meaning": "show, performance, act, entertainment industry, show business" - }, - { - "example": "新興", - "reading": "シンコウ", - "meaning": "rising, developing, emergent, burgeoning, new" - }, - { - "example": "再興", - "reading": "サイコウ", - "meaning": "revival, restoration, resuscitation" - }, - { - "example": "興", - "reading": "キョウ", - "meaning": "interest, entertainment, pleasure, implicit comparison (style of the Shi Jing)" - }, - { - "example": "興味", - "reading": "キョウミ", - "meaning": "interest (in something), curiosity (about something), zest (for)" - }, - { - "example": "一興", - "reading": "イッキョウ", - "meaning": "amusement, fun, brief entertainment" - }, - { - "example": "遊興", - "reading": "ユウキョウ", - "meaning": "merrymaking (esp. wine and women), pleasures" - } - ], - "kunyomiExamples": [ - { - "example": "興る", - "reading": "おこる", - "meaning": "to rise, to flourish" - }, - { - "example": "興す", - "reading": "おこす", - "meaning": "to vitalize (e.g. an industry), to invigorate, to energize, to revive, to promote, to make prosperous, to establish (e.g. a company), to build up, to set up, to launch, to commence" - } - ], - "radical": { - "symbol": "臼", - "meaning": "mortar" - }, - "parts": [ - "ハ", - "一", - "冂", - "口", - "臼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33288_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08208.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8208.gif", - "uri": "http://jisho.org/search/%E8%88%88%23kanji" - }, - { - "query": "講", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "653", - "strokeCount": 17, - "meaning": "lecture, club, association", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "講", - "reading": "コウ", - "meaning": "(Buddhist) lecture meeting, religious association, mutual assistance association (i.e. for financial assistance)" - }, - { - "example": "講演", - "reading": "コウエン", - "meaning": "lecture, address, speech" - }, - { - "example": "進講", - "reading": "シンコウ", - "meaning": "giving a lecture in the Emperor's presence, lecturing to the Emperor" - }, - { - "example": "代講", - "reading": "ダイコウ", - "meaning": "substitute lecturing, substitute lecturer" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "冂", - "十", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35611_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b1b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b1b.gif", - "uri": "http://jisho.org/search/%E8%AC%9B%23kanji" - }, - { - "query": "告", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "188", - "strokeCount": 7, - "meaning": "revelation, tell, inform, announce", - "kunyomi": [ - "つ.げる" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "告訴", - "reading": "コクソ", - "meaning": "accusation, complaint, charge, legal action" - }, - { - "example": "告示", - "reading": "コクジ", - "meaning": "notice, bulletin" - }, - { - "example": "抗告", - "reading": "コウコク", - "meaning": "appeal, protest, complaint" - }, - { - "example": "戒告", - "reading": "カイコク", - "meaning": "admonition, warning, caution" - } - ], - "kunyomiExamples": [ - { - "example": "告げる", - "reading": "つげる", - "meaning": "to tell, to inform, to announce, to indicate, to signal, to mark" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "口", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21578_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0544a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/544a.gif", - "uri": "http://jisho.org/search/%E5%91%8A%23kanji" - }, - { - "query": "混", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "824", - "strokeCount": 11, - "meaning": "mix, blend, confuse", - "kunyomi": [ - "ま.じる", - "-ま.じり", - "ま.ざる", - "ま.ぜる", - "こ.む" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "混合", - "reading": "コンゴウ", - "meaning": "mixing, mixture, meld, miscegenation" - }, - { - "example": "混血", - "reading": "コンケツ", - "meaning": "mixed race, mixed parentage" - }, - { - "example": "麻混", - "reading": "アサコン", - "meaning": "hemp blend, linen blend" - }, - { - "example": "滾々", - "reading": "コンコン", - "meaning": "copious (flowing)" - } - ], - "kunyomiExamples": [ - { - "example": "混じる", - "reading": "まじる", - "meaning": "to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join" - }, - { - "example": "混ざる", - "reading": "まざる", - "meaning": "to be mixed, to be blended with, to associate with, to mingle with, to join" - }, - { - "example": "混ぜる", - "reading": "まぜる", - "meaning": "to mix, to stir, to blend" - }, - { - "example": "込む", - "reading": "こむ", - "meaning": "to be crowded, to be packed, to be complex, to go into, to put into, to remain (seated), to be plunged into (silence), to do thoroughly, to do intently, to continue in the same state" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "日", - "比", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06df7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6df7.gif", - "uri": "http://jisho.org/search/%E6%B7%B7%23kanji" - }, - { - "query": "査", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "184", - "strokeCount": 9, - "meaning": "investigate", - "kunyomi": [], - "onyomi": [ - "サ" - ], - "onyomiExamples": [ - { - "example": "査証", - "reading": "サショウ", - "meaning": "visa, endorsing (e.g. a passport), stamping" - }, - { - "example": "査察", - "reading": "ササツ", - "meaning": "inspection (for compliance), investigation (tax, etc.)" - }, - { - "example": "主査", - "reading": "シュサ", - "meaning": "chief examiner or investigator" - }, - { - "example": "実態調査", - "reading": "ジッタイチョウサ", - "meaning": "fact-finding investigation, investigation into actual conditions, fact-finding survey" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "木", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26619_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067fb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67fb.gif", - "uri": "http://jisho.org/search/%E6%9F%BB%23kanji" - }, - { - "query": "再", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "275", - "strokeCount": 6, - "meaning": "again, twice, second time", - "kunyomi": [ - "ふたた.び" - ], - "onyomi": [ - "サイ", - "サ" - ], - "onyomiExamples": [ - { - "example": "再", - "reading": "サイ", - "meaning": "re-, again, repeated, deutero-, deuto-, deuter-" - }, - { - "example": "再演", - "reading": "サイエン", - "meaning": "another showing (of a play), recapitulation" - }, - { - "example": "一再", - "reading": "イッサイ", - "meaning": "once or twice, repeatedly" - }, - { - "example": "再", - "reading": "サイ", - "meaning": "re-, again, repeated, deutero-, deuto-, deuter-" - }, - { - "example": "再演", - "reading": "サイエン", - "meaning": "another showing (of a play), recapitulation" - } - ], - "kunyomiExamples": [ - { - "example": "再び", - "reading": "ふたたび", - "meaning": "again, once more, a second time" - }, - { - "example": "再び取る", - "reading": "ふたたびとる", - "meaning": "to reassume" - } - ], - "radical": { - "symbol": "冂", - "meaning": "open country" - }, - "parts": [ - "一", - "冂", - "王", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20877_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0518d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/518d.gif", - "uri": "http://jisho.org/search/%E5%86%8D%23kanji" - }, - { - "query": "災", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "976", - "strokeCount": 7, - "meaning": "disaster, calamity, woe, curse, evil", - "kunyomi": [ - "わざわ.い" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "災害", - "reading": "サイガイ", - "meaning": "calamity, disaster, misfortune" - }, - { - "example": "災難", - "reading": "サイナン", - "meaning": "calamity, misfortune, disaster" - }, - { - "example": "労災", - "reading": "ロウサイ", - "meaning": "work-related injury, work-related illness, work-related death, on-the-job accident, workers' compensation insurance" - }, - { - "example": "防災", - "reading": "ボウサイ", - "meaning": "disaster preparedness, prevention of damage resulting from a natural disaster, protection against disaster" - } - ], - "kunyomiExamples": [ - { - "example": "災い", - "reading": "わざわい", - "meaning": "disaster, calamity, misfortune, trouble, woes" - }, - { - "example": "災いする", - "reading": "わざわいする", - "meaning": "to be the ruin of (a person)" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "巛", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28797_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0707d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/707d.gif", - "uri": "http://jisho.org/search/%E7%81%BD%23kanji" - }, - { - "query": "妻", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "691", - "strokeCount": 8, - "meaning": "wife, spouse", - "kunyomi": [ - "つま" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "妻", - "reading": "サイ", - "meaning": "one's wife" - }, - { - "example": "妻子", - "reading": "サイシ", - "meaning": "wife and children, wife" - }, - { - "example": "先妻", - "reading": "センサイ", - "meaning": "former wife, late wife" - }, - { - "example": "後妻", - "reading": "ゴサイ", - "meaning": "second wife" - } - ], - "kunyomiExamples": [ - { - "example": "妻", - "reading": "つま", - "meaning": "wife, my dear, dear, honey, garnish (esp. one served with sashimi), embellishment" - }, - { - "example": "端", - "reading": "つま", - "meaning": "edge, tip, end, gable wall, gable" - }, - { - "example": "我が妻", - "reading": "わがつま", - "meaning": "my spouse (esp. used to refer to one's wife), my wife, my husband" - }, - { - "example": "元妻", - "reading": "もとつま", - "meaning": "ex-wife, former wife" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ヨ", - "一", - "女", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22971_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059bb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59bb.gif", - "uri": "http://jisho.org/search/%E5%A6%BB%23kanji" - }, - { - "query": "採", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "607", - "strokeCount": 11, - "meaning": "pick, take, fetch, take up", - "kunyomi": [ - "と.る" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "採決", - "reading": "サイケツ", - "meaning": "vote, ballot, division" - }, - { - "example": "採掘", - "reading": "サイクツ", - "meaning": "mining" - }, - { - "example": "伐採", - "reading": "バッサイ", - "meaning": "felling timber, cutting down trees, logging, lumbering" - }, - { - "example": "掘採", - "reading": "クッサイ", - "meaning": "mining" - } - ], - "kunyomiExamples": [ - { - "example": "採る", - "reading": "とる", - "meaning": "to adopt (method, proposal, etc.), to take (measure, course of action, etc.), to decide on, to pick (e.g. flowers), to gather (e.g. mushrooms), to catch (e.g. insects), to extract (e.g. juice), to take (e.g. a sample), to assume (an attitude), to take on (workers, students), to employ, to hire, to draw in (e.g. water), to let in (e.g. light from a window)" - }, - { - "example": "採るべき道", - "reading": "とるべきみち", - "meaning": "course of action" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "木", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25505_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063a1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63a1.gif", - "uri": "http://jisho.org/search/%E6%8E%A1%23kanji" - }, - { - "query": "際", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "183", - "strokeCount": 14, - "meaning": "occasion, side, edge, verge, dangerous, adventurous, indecent, time, when", - "kunyomi": [ - "きわ", - "-ぎわ" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "際", - "reading": "サイ", - "meaning": "on the occasion of, circumstances, juncture" - }, - { - "example": "際会", - "reading": "サイカイ", - "meaning": "meeting, facing, confronting" - }, - { - "example": "学際", - "reading": "ガクサイ", - "meaning": "interdisciplinary" - }, - { - "example": "援助交際", - "reading": "エンジョコウサイ", - "meaning": "paid dating (esp. with an underage girl; oft. involving selling of sex), compensated dating" - } - ], - "kunyomiExamples": [ - { - "example": "際", - "reading": "きわ", - "meaning": "edge, brink, verge, side, time, moment of" - }, - { - "example": "際立つ", - "reading": "きわだつ", - "meaning": "to be prominent, to be conspicuous" - }, - { - "example": "今際の際", - "reading": "いまわのきわ", - "meaning": "verge of death, dying moments" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "ノ", - "二", - "小", - "癶", - "示", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38555_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0969b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/969b.gif", - "uri": "http://jisho.org/search/%E9%9A%9B%23kanji" - }, - { - "query": "在", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "211", - "strokeCount": 6, - "meaning": "exist, outskirts, suburbs, located in", - "kunyomi": [ - "あ.る" - ], - "onyomi": [ - "ザイ" - ], - "onyomiExamples": [ - { - "example": "在", - "reading": "ザイ", - "meaning": "the country, countryside, outskirts, suburbs, presence, being in attendance, situated in, staying in, resident in" - }, - { - "example": "在外", - "reading": "ザイガイ", - "meaning": "overseas, abroad" - }, - { - "example": "顕在", - "reading": "ケンザイ", - "meaning": "being actual (as opposed to hidden or latent), being apparent, being obvious, being tangible, being revealed" - }, - { - "example": "介在", - "reading": "カイザイ", - "meaning": "existing (between), interposition, intervention, involvement" - } - ], - "kunyomiExamples": [ - { - "example": "有る", - "reading": "ある", - "meaning": "to be, to exist, to live, to have, to be located, to be equipped with, to happen, to come about" - }, - { - "example": "在るが儘", - "reading": "あるがまま", - "meaning": "in truth, as it is, as you are, in practice" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "一", - "土", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22312_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05728.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5728.gif", - "uri": "http://jisho.org/search/%E5%9C%A8%23kanji" - }, - { - "query": "財", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "494", - "strokeCount": 10, - "meaning": "property, money, wealth, assets", - "kunyomi": [ - "たから" - ], - "onyomi": [ - "ザイ", - "サイ", - "ゾク" - ], - "onyomiExamples": [ - { - "example": "財", - "reading": "ザイ", - "meaning": "fortune, riches, goods, incorporated foundation" - }, - { - "example": "財界", - "reading": "ザイカイ", - "meaning": "financial world, business circles" - }, - { - "example": "無形文化財", - "reading": "ムケイブンカザイ", - "meaning": "intangible cultural asset" - }, - { - "example": "文化財", - "reading": "ブンカザイ", - "meaning": "cultural assets, cultural property" - }, - { - "example": "財布", - "reading": "サイフ", - "meaning": "purse, handbag, wallet" - }, - { - "example": "財布の紐を締める", - "reading": "サイフノヒモヲシメル", - "meaning": "to tighten the purse strings, to tighten one's belt" - } - ], - "kunyomiExamples": [ - { - "example": "宝", - "reading": "たから", - "meaning": "treasure" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ノ", - "ハ", - "一", - "亅", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36001_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ca1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ca1.gif", - "uri": "http://jisho.org/search/%E8%B2%A1%23kanji" - }, - { - "query": "罪", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "732", - "strokeCount": 13, - "meaning": "guilt, sin, crime, fault, blame, offense", - "kunyomi": [ - "つみ" - ], - "onyomi": [ - "ザイ" - ], - "onyomiExamples": [ - { - "example": "罪", - "reading": "ザイ", - "meaning": "crime" - }, - { - "example": "罪悪", - "reading": "ザイアク", - "meaning": "crime, sin, vice" - }, - { - "example": "同罪", - "reading": "ドウザイ", - "meaning": "same crime, being equally guilty" - }, - { - "example": "功罪", - "reading": "コウザイ", - "meaning": "merits and demerits, good points and bad points, strengths and weaknesses" - } - ], - "kunyomiExamples": [ - { - "example": "罪", - "reading": "つみ", - "meaning": "crime, sin, wrongdoing, indiscretion, penalty, sentence, punishment, fault, responsibility, culpability, thoughtlessness, lack of consideration" - }, - { - "example": "罪滅ぼし", - "reading": "つみほろぼし", - "meaning": "atonement, expiation" - }, - { - "example": "無実の罪", - "reading": "むじつのつみ", - "meaning": "false charge" - }, - { - "example": "重い罪", - "reading": "おもいつみ", - "meaning": "serious crime, grave crime" - } - ], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "買", - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32618_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f6a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f6a.gif", - "uri": "http://jisho.org/search/%E7%BD%AA%23kanji" - }, - { - "query": "殺", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "581", - "strokeCount": 10, - "meaning": "kill, murder, butcher, slice off, split, diminish, reduce, spoil", - "kunyomi": [ - "ころ.す", - "-ごろ.し", - "そ.ぐ" - ], - "onyomi": [ - "サツ", - "サイ", - "セツ" - ], - "onyomiExamples": [ - { - "example": "殺意", - "reading": "サツイ", - "meaning": "intent to kill, intent to murder, urge to kill, murderous impulse" - }, - { - "example": "殺害", - "reading": "サツガイ", - "meaning": "killing, murder" - }, - { - "example": "他殺", - "reading": "タサツ", - "meaning": "murder" - }, - { - "example": "併殺", - "reading": "ヘイサツ", - "meaning": "double play" - }, - { - "example": "相殺", - "reading": "ソウサイ", - "meaning": "offset, offsetting each other, cancelling each other out, counterbalancing, set-off, setoff" - }, - { - "example": "減殺", - "reading": "ゲンサイ", - "meaning": "lessening, diminishing, reducing" - }, - { - "example": "殺害", - "reading": "サツガイ", - "meaning": "killing, murder" - }, - { - "example": "刹那", - "reading": "セツナ", - "meaning": "moment, instant, kshana, duration of a single mental event (about 1/75 second), shortest possible interval of time" - }, - { - "example": "歳殺", - "reading": "サイセツ", - "meaning": "Saisetsu, one of the eight gods of the koyomi" - } - ], - "kunyomiExamples": [ - { - "example": "殺す", - "reading": "ころす", - "meaning": "to kill, to slay, to murder, to slaughter, to suppress, to block, to hamper, to destroy (e.g. talent), to eliminate (e.g. an odour), to spoil (e.g. a flavour), to kill (e.g. one's speed), to suppress (a voice, feelings, etc.), to hold back, to stifle (a yawn, laugh, etc.), to hold (one's breath), to put out (a runner), to pawn, to put in hock" - }, - { - "example": "削ぐ", - "reading": "そぐ", - "meaning": "to chip (off), to shave (off), to slice (off), to sharpen, to dampen (e.g. enthusiasm), to discourage, to weaken, to reduce" - } - ], - "radical": { - "symbol": "殳", - "meaning": "weapon, lance" - }, - "parts": [ - "ノ", - "丶", - "几", - "又", - "木", - "殳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27578_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bba.gif", - "uri": "http://jisho.org/search/%E6%AE%BA%23kanji" - }, - { - "query": "雑", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "839", - "strokeCount": 14, - "meaning": "miscellaneous", - "kunyomi": [ - "まじ.える", - "まじ.る" - ], - "onyomi": [ - "ザツ", - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "雑", - "reading": "ザツ", - "meaning": "rough, crude, sloppy, messy, miscellaneous" - }, - { - "example": "雑音", - "reading": "ザツオン", - "meaning": "noise (usu. unpleasant), interference (e.g. radio), static, noise, gossip, irresponsible criticism" - }, - { - "example": "猥雑", - "reading": "ワイザツ", - "meaning": "vulgar, indecent, crude, sordid, jumbled (of a place), disorderly, chaotic, messy" - }, - { - "example": "交雑", - "reading": "コウザツ", - "meaning": "hybridization, crossing, mixing" - }, - { - "example": "雑", - "reading": "ゾウ", - "meaning": "miscellany (classification of Japanese poetry unrelated to the seasons or to love)" - }, - { - "example": "雑木林", - "reading": "ゾウキバヤシ", - "meaning": "grove of miscellaneous trees, copse, coppice, thicket" - } - ], - "kunyomiExamples": [ - { - "example": "交える", - "reading": "まじえる", - "meaning": "to mix, to combine, to include, to exchange (words, fire, etc.), to cross (e.g. swords), to join together" - }, - { - "example": "混じる", - "reading": "まじる", - "meaning": "to be mixed, to be blended with, to be combined, to associate with, to mingle with, to interest, to join" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "九", - "木", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096d1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96d1.gif", - "uri": "http://jisho.org/search/%E9%9B%91%23kanji" - }, - { - "query": "酸", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1218", - "strokeCount": 14, - "meaning": "acid, bitterness, sour, tart", - "kunyomi": [ - "す.い" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "酸", - "reading": "サン", - "meaning": "acid, sourness, sour taste" - }, - { - "example": "酸化", - "reading": "サンカ", - "meaning": "oxidation, oxidization" - }, - { - "example": "炭酸", - "reading": "タンサン", - "meaning": "carbonic acid, carbonated water, baking soda, sodium carbonate" - }, - { - "example": "アミノ酸", - "reading": "アミノサン", - "meaning": "amino acid" - } - ], - "kunyomiExamples": [ - { - "example": "酸い", - "reading": "すい", - "meaning": "sour, acid" - }, - { - "example": "酸葉", - "reading": "すいば", - "meaning": "sorrel (Rumex acetosa), Common sorrel, garden sorrel, spinach dock" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "儿", - "厶", - "夂", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37240_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09178.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9178.gif", - "uri": "http://jisho.org/search/%E9%85%B8%23kanji" - }, - { - "query": "賛", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "868", - "strokeCount": 15, - "meaning": "approve, praise, title or inscription on picture, assist, agree with", - "kunyomi": [ - "たす.ける", - "たた.える" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "賛", - "reading": "サン", - "meaning": "praise, tribute, inscription (on a painting)" - }, - { - "example": "賛意", - "reading": "サンイ", - "meaning": "approval, assent" - }, - { - "example": "協賛", - "reading": "キョウサン", - "meaning": "support, mutual aid, cooperation, approval, authorization, authorisation" - }, - { - "example": "礼賛", - "reading": "ライサン", - "meaning": "praise, worship, adoration, glorification" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "二", - "亠", - "人", - "大", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36059_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cdb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cdb.gif", - "uri": "http://jisho.org/search/%E8%B3%9B%23kanji" - }, - { - "query": "士", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "526", - "strokeCount": 3, - "meaning": "gentleman, scholar, samurai, samurai radical (no. 33)", - "kunyomi": [ - "さむらい" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "士", - "reading": "シ", - "meaning": "man (esp. one who is well-respected), samurai, person (in a certain profession, esp. licensed), member" - }, - { - "example": "士官", - "reading": "シカン", - "meaning": "officer" - }, - { - "example": "飛行士", - "reading": "ヒコウシ", - "meaning": "pilot" - }, - { - "example": "公認会計士", - "reading": "コウニンカイケイシ", - "meaning": "certified public accountant" - } - ], - "kunyomiExamples": [ - { - "example": "侍", - "reading": "さむらい", - "meaning": "warrior (esp. of military retainers of daimyos in the Edo period), samurai, man in attendance (on a person of high standing), retainer" - }, - { - "example": "二四六九士", - "reading": "にしむくさむらい", - "meaning": "mnemonic for remembering the months with fewer than 31 days (ni, shi, mu, ku, etc.)" - } - ], - "radical": { - "symbol": "士", - "meaning": "scholar, bachelor" - }, - "parts": [ - "士" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22763_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058eb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58eb.gif", - "uri": "http://jisho.org/search/%E5%A3%AB%23kanji" - }, - { - "query": "支", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "159", - "strokeCount": 4, - "meaning": "branch, support, sustain, branch radical (no. 65)", - "kunyomi": [ - "ささ.える", - "つか.える", - "か.う" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "支", - "reading": "シ", - "meaning": "China" - }, - { - "example": "支援", - "reading": "シエン", - "meaning": "support, backing, aid, assistance" - }, - { - "example": "気管支", - "reading": "キカンシ", - "meaning": "bronchial tube" - }, - { - "example": "干支", - "reading": "エト", - "meaning": "sexagenary cycle (60-year cycle of 12 animal zodiac and 5 elements in the traditional Chinese calendar), 12-year Chinese zodiac" - } - ], - "kunyomiExamples": [ - { - "example": "支える", - "reading": "ささえる", - "meaning": "to support, to prop, to sustain, to underlay, to hold up, to defend, to hold at bay, to stem, to check" - }, - { - "example": "閊える", - "reading": "つかえる", - "meaning": "to stick, to get stuck, to get caught, to get jammed, to clog, to be unavailable, to be busy, to be occupied, to be full, to be piled up (e.g. of work), to halt (in one's speech), to stumble (over one's words), to stutter, to stammer, to feel blocked (of one's chest or throat, due to grief, anxiety, illness, etc.), to feel pressure, to feel pain" - }, - { - "example": "支う", - "reading": "かう", - "meaning": "to support, to prop up" - } - ], - "radical": { - "symbol": "支", - "meaning": "branch" - }, - "parts": [ - "十", - "又", - "支" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25903_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0652f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/652f.gif", - "uri": "http://jisho.org/search/%E6%94%AF%23kanji" - }, - { - "query": "史", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "511", - "strokeCount": 5, - "meaning": "history, chronicle", - "kunyomi": [], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "史", - "reading": "シ", - "meaning": "history" - }, - { - "example": "史家", - "reading": "シカ", - "meaning": "historian" - }, - { - "example": "通史", - "reading": "ツウシ", - "meaning": "overview of history" - }, - { - "example": "正史", - "reading": "セイシ", - "meaning": "official history, authorized history" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21490_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53f2.gif", - "uri": "http://jisho.org/search/%E5%8F%B2%23kanji" - }, - { - "query": "志", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "823", - "strokeCount": 7, - "meaning": "intention, plan, resolve, aspire, motive, hopes, shilling", - "kunyomi": [ - "シリング", - "こころざ.す", - "こころざし" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "志向", - "reading": "シコウ", - "meaning": "intention, aim, preference (for), orientation (towards a goal)" - }, - { - "example": "志願", - "reading": "シガン", - "meaning": "aspiration, volunteering, desire, application" - }, - { - "example": "遺志", - "reading": "イシ", - "meaning": "wishes of a deceased person, dying wish" - }, - { - "example": "立志", - "reading": "リッシ", - "meaning": "fixing one's aim in life, deciding one's life goal" - } - ], - "kunyomiExamples": [ - { - "example": "志す", - "reading": "こころざす", - "meaning": "to plan, to intend, to aspire to, to set aims (sights on)" - }, - { - "example": "志", - "reading": "こころざし", - "meaning": "will, resolution, intention, ambition, aim, goal, kindness, goodwill, kind offer, gift (as a token of gratitude)" - }, - { - "example": "志は松の葉に包め", - "reading": "こころざしはまつのはにつつめ", - "meaning": "for gifts, it's the thought that counts" - }, - { - "example": "お志", - "reading": "おこころざし", - "meaning": "kindness, courtesy" - }, - { - "example": "青雲の志", - "reading": "せいうんのこころざし", - "meaning": "high (lofty) ambition" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "士", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24535_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fd7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fd7.gif", - "uri": "http://jisho.org/search/%E5%BF%97%23kanji" - }, - { - "query": "枝", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1401", - "strokeCount": 8, - "meaning": "bough, branch, twig, limb, counter for branches", - "kunyomi": [ - "えだ" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "枝", - "reading": "シ", - "meaning": "counter for long, thin things (i.e. swords)" - }, - { - "example": "枝葉", - "reading": "シヨウ", - "meaning": "branches and leaves, foliage, unimportant details, nonessentials, side issue, digression" - }, - { - "example": "整枝", - "reading": "セイシ", - "meaning": "training (branches in horticulture)" - }, - { - "example": "茘枝", - "reading": "レイシ", - "meaning": "litchi (Nephelium litchi), lychee, lichee, litchi nut, bitter melon (Momordica charantia), bitter gourd, Thais bronni (species of muricid gastropod)" - } - ], - "kunyomiExamples": [ - { - "example": "枝", - "reading": "えだ", - "meaning": "branch, bow, bough, twig, limb" - }, - { - "example": "枝葉", - "reading": "しよう", - "meaning": "branches and leaves, foliage, unimportant details, nonessentials, side issue, digression" - }, - { - "example": "若枝", - "reading": "わかえだ", - "meaning": "young branch, sprig" - }, - { - "example": "下枝", - "reading": "したえだ", - "meaning": "lower branches of a tree" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "十", - "又", - "支", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26525_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0679d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/679d.gif", - "uri": "http://jisho.org/search/%E6%9E%9D%23kanji" - }, - { - "query": "師", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "563", - "strokeCount": 10, - "meaning": "expert, teacher, master, model, exemplar, army (incl. counter), war", - "kunyomi": [ - "いくさ" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "師", - "reading": "シ", - "meaning": "teacher, master, one's mentor, religious leader, specialist, five-battalion brigade comprising 2500 men (Zhou-dynasty Chinese army)" - }, - { - "example": "獅子", - "reading": "シシ", - "meaning": "lion, left-hand guardian dog at a Shinto shrine" - }, - { - "example": "大師", - "reading": "ダイシ", - "meaning": "great teacher (i.e. a buddha, bodhisattva or high monk, esp. Kobo Daishi)" - }, - { - "example": "歯科医師", - "reading": "シカイシ", - "meaning": "dentist" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "一", - "口", - "巾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24107_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e2b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e2b.gif", - "uri": "http://jisho.org/search/%E5%B8%AB%23kanji" - }, - { - "query": "資", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "179", - "strokeCount": 13, - "meaning": "assets, resources, capital, funds, data, be conducive to, contribute to", - "kunyomi": [], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "資", - "reading": "シ", - "meaning": "funds, capital, material, basis, character, qualities, disposition" - }, - { - "example": "資格", - "reading": "シカク", - "meaning": "qualifications, requirements, capabilities" - }, - { - "example": "増資", - "reading": "ゾウシ", - "meaning": "increase of capital" - }, - { - "example": "外資", - "reading": "ガイシ", - "meaning": "foreign capital (e.g. in a company), foreign investment" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "冫", - "欠", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36039_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cc7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cc7.gif", - "uri": "http://jisho.org/search/%E8%B3%87%23kanji" - }, - { - "query": "飼", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1392", - "strokeCount": 13, - "meaning": "domesticate, raise, keep, feed", - "kunyomi": [ - "か.う" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "飼料", - "reading": "シリョウ", - "meaning": "fodder, feed" - }, - { - "example": "飼育", - "reading": "シイク", - "meaning": "breeding, raising, rearing" - } - ], - "kunyomiExamples": [ - { - "example": "飼う", - "reading": "かう", - "meaning": "to keep (a pet or other animal), to have, to own, to raise, to rear, to feed" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "个", - "亅", - "口", - "艮", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39164_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098fc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98fc.gif", - "uri": "http://jisho.org/search/%E9%A3%BC%23kanji" - }, - { - "query": "示", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "237", - "strokeCount": 5, - "meaning": "show, indicate, point out, express, display", - "kunyomi": [ - "しめ.す" - ], - "onyomi": [ - "ジ", - "シ" - ], - "onyomiExamples": [ - { - "example": "示談", - "reading": "ジダン", - "meaning": "settlement out of court, private settlement" - }, - { - "example": "示威", - "reading": "ジイ", - "meaning": "demonstration, show of force" - }, - { - "example": "内示", - "reading": "ナイジ", - "meaning": "unofficial announcement" - }, - { - "example": "開示", - "reading": "カイジ", - "meaning": "release (e.g. information), disclosure (legal), show, indication, display" - }, - { - "example": "示し", - "reading": "シメシ", - "meaning": "lesson, discipline, example (e.g. set a bad example), revelation" - }, - { - "example": "示唆", - "reading": "シサ", - "meaning": "suggestion, hint, implication" - }, - { - "example": "公示", - "reading": "コウジ", - "meaning": "edict, public announcement" - }, - { - "example": "内示", - "reading": "ナイジ", - "meaning": "unofficial announcement" - } - ], - "kunyomiExamples": [ - { - "example": "示す", - "reading": "しめす", - "meaning": "to (take out and) show, to demonstrate, to tell, to exemplify, to make apparent, to point out (finger, clock hand, needle, etc.), to indicate, to show, to represent, to signify, to display" - }, - { - "example": "示偏", - "reading": "しめすへん", - "meaning": "kanji \"show\" radical at left (radical 113)" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "二", - "小", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31034_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0793a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/793a.gif", - "uri": "http://jisho.org/search/%E7%A4%BA%23kanji" - }, - { - "query": "似", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "923", - "strokeCount": 7, - "meaning": "becoming, resemble, counterfeit, imitate, suitable", - "kunyomi": [ - "に.る", - "ひ.る" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "似我蜂", - "reading": "ジガバチ", - "meaning": "red-banded sand wasp (Ammophila sabulosa), thread-waisted wasp (any wasp of family Sphecidae, incl. digger wasps and mud daubers)" - }, - { - "example": "酷似", - "reading": "コクジ", - "meaning": "resembling closely, being strikingly similar, bearing a strong likeness" - }, - { - "example": "疑似", - "reading": "ギジ", - "meaning": "pseudo, quasi, false, para-, mock, sham, suspected (case, e.g. of disease)" - } - ], - "kunyomiExamples": [ - { - "example": "似る", - "reading": "にる", - "meaning": "to resemble, to look like, to take after, to be similar (in status, condition, etc.), to be close, to be alike, to be like" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "丶", - "人", - "化" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20284_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f3c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f3c.gif", - "uri": "http://jisho.org/search/%E4%BC%BC%23kanji" - }, - { - "query": "識", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "496", - "strokeCount": 19, - "meaning": "discriminating, know, write", - "kunyomi": [ - "し.る", - "しる.す" - ], - "onyomi": [ - "シキ" - ], - "onyomiExamples": [ - { - "example": "識", - "reading": "シキ", - "meaning": "acquaintanceship, vijnana, consciousness, written by..." - }, - { - "example": "識者", - "reading": "シキシャ", - "meaning": "well-informed person, thinking person, intelligent person" - }, - { - "example": "光学式文字認識", - "reading": "コウガクシキモジニンシキ", - "meaning": "optical character recognition, OCR" - }, - { - "example": "目的意識", - "reading": "モクテキイシキ", - "meaning": "sense of purpose" - } - ], - "kunyomiExamples": [ - { - "example": "知る", - "reading": "しる", - "meaning": "to be aware of, to know, to be conscious of, to cognize, to cognise, to notice, to feel, to understand, to comprehend, to grasp, to remember, to be acquainted with (a procedure), to experience, to go through, to learn, to be acquainted with (a person), to get to know, to concern" - }, - { - "example": "記す", - "reading": "しるす", - "meaning": "to write down, to note, to jot down, to remember" - }, - { - "example": "記す", - "reading": "しるす", - "meaning": "to write down, to note, to jot down, to remember" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "戈", - "日", - "立", - "言", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35672_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b58.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b58.gif", - "uri": "http://jisho.org/search/%E8%AD%98%23kanji" - }, - { - "query": "質", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N4", - "newspaperFrequencyRank": "389", - "strokeCount": 15, - "meaning": "substance, quality, matter, temperament", - "kunyomi": [ - "たち", - "ただ.す", - "もと", - "わりふ" - ], - "onyomi": [ - "シツ", - "シチ", - "チ" - ], - "onyomiExamples": [ - { - "example": "質", - "reading": "シツ", - "meaning": "quality, value, nature, inherent quality, character, logical quality" - }, - { - "example": "質疑", - "reading": "シツギ", - "meaning": "question, interpellation" - }, - { - "example": "変質", - "reading": "ヘンシツ", - "meaning": "alteration (of character or essence), change in quality, transformation, deterioration, degeneration, transmutation" - }, - { - "example": "タンパク質", - "reading": "タンパクシツ", - "meaning": "protein" - }, - { - "example": "質", - "reading": "シチ", - "meaning": "pawn, pawned article, pledge, security, guarantee" - }, - { - "example": "質屋", - "reading": "シチヤ", - "meaning": "pawnshop" - }, - { - "example": "入質", - "reading": "ニュウシチ", - "meaning": "pawning" - }, - { - "example": "流質", - "reading": "リュウシチ", - "meaning": "forfeiting a pawned article" - }, - { - "example": "入質", - "reading": "ニュウシチ", - "meaning": "pawning" - }, - { - "example": "流質", - "reading": "リュウシチ", - "meaning": "forfeiting a pawned article" - } - ], - "kunyomiExamples": [ - { - "example": "質", - "reading": "たち", - "meaning": "nature (of a person), disposition, temperament, nature (of something), character, kind, sort" - }, - { - "example": "質がいい", - "reading": "たちがいい", - "meaning": "good-natured, of good character" - }, - { - "example": "質す", - "reading": "ただす", - "meaning": "to enquire of someone about something (inquire), to question" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "斤", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36074_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cea.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cea.gif", - "uri": "http://jisho.org/search/%E8%B3%AA%23kanji" - }, - { - "query": "舎", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1170", - "strokeCount": 8, - "meaning": "cottage, inn, hut, house, mansion", - "kunyomi": [ - "やど.る" - ], - "onyomi": [ - "シャ", - "セキ" - ], - "onyomiExamples": [ - { - "example": "舎", - "reading": "シャ", - "meaning": "hut, house, boarding house, school dormitory, one day's march (approx. 12.2 km)" - }, - { - "example": "舎弟", - "reading": "シャテイ", - "meaning": "one's younger brother, underling (e.g. in yakuza), junior male peer, sworn younger brother" - }, - { - "example": "公舎", - "reading": "コウシャ", - "meaning": "official residence" - }, - { - "example": "兵舎", - "reading": "ヘイシャ", - "meaning": "barracks" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "个", - "口", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33294_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0820e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/820e.gif", - "uri": "http://jisho.org/search/%E8%88%8E%23kanji" - }, - { - "query": "謝", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1028", - "strokeCount": 17, - "meaning": "apologize, thank, refuse", - "kunyomi": [ - "あやま.る" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "謝罪", - "reading": "シャザイ", - "meaning": "apology" - }, - { - "example": "謝意", - "reading": "シャイ", - "meaning": "gratitude, thanks" - }, - { - "example": "慰謝", - "reading": "イシャ", - "meaning": "consolation" - }, - { - "example": "代謝", - "reading": "タイシャ", - "meaning": "metabolism, renewal, regeneration, replacing the old with the new" - } - ], - "kunyomiExamples": [ - { - "example": "謝る", - "reading": "あやまる", - "meaning": "to apologize, to apologise" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "寸", - "言", - "身" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35613_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b1d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b1d.gif", - "uri": "http://jisho.org/search/%E8%AC%9D%23kanji" - }, - { - "query": "授", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "535", - "strokeCount": 11, - "meaning": "impart, instruct, grant, confer", - "kunyomi": [ - "さず.ける", - "さず.かる" - ], - "onyomi": [ - "ジュ" - ], - "onyomiExamples": [ - { - "example": "授業料", - "reading": "ジュギョウリョウ", - "meaning": "tuition fee, course fee" - }, - { - "example": "授業", - "reading": "ジュギョウ", - "meaning": "lesson, class work, teaching, instruction" - }, - { - "example": "授受", - "reading": "ジュジュ", - "meaning": "giving and receiving, transferring, transfer, changing hands" - }, - { - "example": "伝授", - "reading": "デンジュ", - "meaning": "(giving) instruction, initiation" - } - ], - "kunyomiExamples": [ - { - "example": "授ける", - "reading": "さずける", - "meaning": "to grant, to give, to confer, to award, to teach, to instruct, to impart (knowledge)" - }, - { - "example": "授かる", - "reading": "さずかる", - "meaning": "to be awarded (e.g. a prize), to be given an award, to receive (e.g. a title), to be gifted or endowed (e.g. with a talent), to be blessed (e.g. with a child), to be initiated (e.g. into a secret)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "冖", - "又", - "扎", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25480_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06388.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6388.gif", - "uri": "http://jisho.org/search/%E6%8E%88%23kanji" - }, - { - "query": "修", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "603", - "strokeCount": 10, - "meaning": "discipline, conduct oneself well, study, master", - "kunyomi": [ - "おさ.める", - "おさ.まる" - ], - "onyomi": [ - "シュウ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "修業", - "reading": "シュウギョウ", - "meaning": "pursuit of knowledge, studying, learning, training, completing a course" - }, - { - "example": "修学旅行", - "reading": "シュウガクリョコウ", - "meaning": "excursion, field trip, school trip" - }, - { - "example": "監修", - "reading": "カンシュウ", - "meaning": "(editorial) supervision, general editorship, supervising director" - }, - { - "example": "改修", - "reading": "カイシュウ", - "meaning": "repair, improvement" - }, - { - "example": "修業", - "reading": "シュウギョウ", - "meaning": "pursuit of knowledge, studying, learning, training, completing a course" - }, - { - "example": "修学旅行", - "reading": "シュウガクリョコウ", - "meaning": "excursion, field trip, school trip" - }, - { - "example": "逆修", - "reading": "ギャクシュ", - "meaning": "holding a memorial service for oneself, an older person conducting a memorial service for a deceased, younger person" - } - ], - "kunyomiExamples": [ - { - "example": "修める", - "reading": "おさめる", - "meaning": "to study, to complete (a course), to cultivate, to master, to order (one's life), to repair (a fault one has committed)" - }, - { - "example": "修まる", - "reading": "おさまる", - "meaning": "to reform (oneself), to conduct oneself well" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "乞", - "化", - "彡", - "攵", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20462_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fee.gif", - "uri": "http://jisho.org/search/%E4%BF%AE%23kanji" - }, - { - "query": "述", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "379", - "strokeCount": 8, - "meaning": "mention, state, speak, relate", - "kunyomi": [ - "の.べる" - ], - "onyomi": [ - "ジュツ" - ], - "onyomiExamples": [ - { - "example": "述", - "reading": "ジュツ", - "meaning": "dictation, verbal statement" - }, - { - "example": "述語", - "reading": "ジュツゴ", - "meaning": "predicate" - }, - { - "example": "詳述", - "reading": "ショウジュツ", - "meaning": "detailed explanation" - }, - { - "example": "公述", - "reading": "コウジュツ", - "meaning": "speaking at a public hearing" - } - ], - "kunyomiExamples": [ - { - "example": "述べる", - "reading": "のべる", - "meaning": "to state, to express, to mention" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "丶", - "十", - "木", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36848_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ff0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ff0.gif", - "uri": "http://jisho.org/search/%E8%BF%B0%23kanji" - }, - { - "query": "術", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "350", - "strokeCount": 11, - "meaning": "art, technique, skill, means, trick, resources, magic", - "kunyomi": [ - "すべ" - ], - "onyomi": [ - "ジュツ" - ], - "onyomiExamples": [ - { - "example": "術", - "reading": "ジュツ", - "meaning": "art, technique, means, way, trick, trap, plot, stratagem, magic" - }, - { - "example": "術後", - "reading": "ジュツゴ", - "meaning": "postoperative, after surgery" - }, - { - "example": "奇術", - "reading": "キジュツ", - "meaning": "magic, conjuring, sleight of hand, legerdemain" - }, - { - "example": "占星術", - "reading": "センセイジュツ", - "meaning": "astrology" - } - ], - "kunyomiExamples": [ - { - "example": "術", - "reading": "すべ", - "meaning": "way, method, means" - }, - { - "example": "術無し", - "reading": "すべなし", - "meaning": "having no choice, at a loss for what to do, at one's wits' end" - }, - { - "example": "為す術", - "reading": "なすすべ", - "meaning": "means, method, way" - }, - { - "example": "為ん術", - "reading": "せんすべ", - "meaning": "(proper) methods" - } - ], - "radical": { - "symbol": "行", - "meaning": "go, do" - }, - "parts": [ - "丶", - "十", - "彳", - "木", - "行" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34899_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08853.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8853.gif", - "uri": "http://jisho.org/search/%E8%A1%93%23kanji" - }, - { - "query": "準", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "425", - "strokeCount": 13, - "meaning": "semi-, correspond to, proportionate to, conform, imitate", - "kunyomi": [ - "じゅん.じる", - "じゅん.ずる", - "なぞら.える", - "のり", - "ひと.しい", - "みずもり" - ], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "準", - "reading": "ジュン", - "meaning": "semi-, quasi-, associate" - }, - { - "example": "準決勝", - "reading": "ジュンケッショウ", - "meaning": "semifinal" - }, - { - "example": "照準", - "reading": "ショウジュン", - "meaning": "sight (e.g. of a gun), aim, alignment" - }, - { - "example": "低水準", - "reading": "テイスイジュン", - "meaning": "substandard, low-level" - } - ], - "kunyomiExamples": [ - { - "example": "準じる", - "reading": "じゅんじる", - "meaning": "to follow, to conform, to apply to" - }, - { - "example": "準ずる", - "reading": "じゅんずる", - "meaning": "to apply correspondingly, to correspond to, to be proportionate to, to conform to" - }, - { - "example": "準える", - "reading": "なぞらえる", - "meaning": "to pattern after, to liken to, to imitate" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "十", - "汁", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28310_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e96.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e96.gif", - "uri": "http://jisho.org/search/%E6%BA%96%23kanji" - }, - { - "query": "序", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1160", - "strokeCount": 7, - "meaning": "preface, beginning, order, precedence, occasion, chance, incidentally", - "kunyomi": [ - "つい.で", - "ついで" - ], - "onyomi": [ - "ジョ" - ], - "onyomiExamples": [ - { - "example": "序", - "reading": "ジョ", - "meaning": "order, ordering, beginning, start, foreword, preface, introduction, opening of a song (in gagaku or noh)" - }, - { - "example": "序盤", - "reading": "ジョバン", - "meaning": "the opening(s) (e.g. in a game of go or chess)" - }, - { - "example": "公序", - "reading": "コウジョ", - "meaning": "public order, public policy" - }, - { - "example": "西序", - "reading": "セイジョ", - "meaning": "memorial rite involving the western sanctum" - } - ], - "kunyomiExamples": [ - { - "example": "序で", - "reading": "ついで", - "meaning": "opportunity, occasion, chance, order, sequence, successor" - }, - { - "example": "序でに", - "reading": "ついでに", - "meaning": "incidentally, taking the opportunity, while (you) are at it, on the occasion" - }, - { - "example": "序で", - "reading": "ついで", - "meaning": "opportunity, occasion, chance, order, sequence, successor" - }, - { - "example": "序でに", - "reading": "ついでに", - "meaning": "incidentally, taking the opportunity, while (you) are at it, on the occasion" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "マ", - "一", - "亅", - "子", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24207_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e8f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e8f.gif", - "uri": "http://jisho.org/search/%E5%BA%8F%23kanji" - }, - { - "query": "招", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "840", - "strokeCount": 8, - "meaning": "beckon, invite, summon, engage", - "kunyomi": [ - "まね.く" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "招請", - "reading": "ショウセイ", - "meaning": "invitation" - }, - { - "example": "招集", - "reading": "ショウシュウ", - "meaning": "call, summons, convening, convocation" - } - ], - "kunyomiExamples": [ - { - "example": "招く", - "reading": "まねく", - "meaning": "to invite, to ask, to beckon, to wave someone in, to gesture to, to call in, to send for, to summon, to bring on oneself, to cause, to incur, to lead to, to result in" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "刀", - "口", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25307_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62db.gif", - "uri": "http://jisho.org/search/%E6%8B%9B%23kanji" - }, - { - "query": "証", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "306", - "strokeCount": 12, - "meaning": "evidence, proof, certificate", - "kunyomi": [ - "あかし" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "証", - "reading": "アカシ", - "meaning": "proof, evidence, sign, testimony, vindication, certificate, license, membership card, to testify (usu. Christian religious context), enlightenment, symptoms (in Chinese medicine), patient's condition" - }, - { - "example": "証券", - "reading": "ショウケン", - "meaning": "bond, bill, certificate, security" - }, - { - "example": "査証", - "reading": "サショウ", - "meaning": "visa, endorsing (e.g. a passport), stamping" - }, - { - "example": "偽証", - "reading": "ギショウ", - "meaning": "false evidence, perjury, false testimony" - } - ], - "kunyomiExamples": [ - { - "example": "証", - "reading": "あかし", - "meaning": "proof, evidence, sign, testimony, vindication, certificate, license, membership card, to testify (usu. Christian religious context), enlightenment, symptoms (in Chinese medicine), patient's condition" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "止", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35388_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a3c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a3c.gif", - "uri": "http://jisho.org/search/%E8%A8%BC%23kanji" - }, - { - "query": "象", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "394", - "strokeCount": 12, - "meaning": "elephant, pattern after, imitate, image, shape, sign (of the times)", - "kunyomi": [ - "かたど.る" - ], - "onyomi": [ - "ショウ", - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "象", - "reading": "ショウ", - "meaning": "form, shape, figure, appearance, phenomenon" - }, - { - "example": "将棋", - "reading": "ショウギ", - "meaning": "shogi, Japanese chess" - }, - { - "example": "具象", - "reading": "グショウ", - "meaning": "embodying, expressing concretely" - }, - { - "example": "抽象", - "reading": "チュウショウ", - "meaning": "abstract" - }, - { - "example": "象", - "reading": "ゾウ", - "meaning": "elephant (Elephantidae spp.)" - }, - { - "example": "象牙", - "reading": "ゾウゲ", - "meaning": "ivory" - }, - { - "example": "アジア象", - "reading": "アジアゾウ", - "meaning": "Asian elephant, Indian elephant" - }, - { - "example": "海象", - "reading": "セイウチ", - "meaning": "walrus (Odobenus rosmarus), elephant seal (Mirounga spp.)" - } - ], - "kunyomiExamples": [ - { - "example": "象る", - "reading": "かたどる", - "meaning": "to model on, to make in the shape of, to represent, to pattern after, to imitate, to symbolise" - } - ], - "radical": { - "symbol": "豕", - "meaning": "pig" - }, - "parts": [ - "一", - "勹", - "口", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35937_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c61.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c61.gif", - "uri": "http://jisho.org/search/%E8%B1%A1%23kanji" - }, - { - "query": "賞", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "426", - "strokeCount": 15, - "meaning": "prize, reward, praise", - "kunyomi": [ - "ほ.める" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "賞", - "reading": "ショウ", - "meaning": "prize, award" - }, - { - "example": "賞金", - "reading": "ショウキン", - "meaning": "prize money, monetary award, reward" - }, - { - "example": "懸賞", - "reading": "ケンショウ", - "meaning": "offering a prize, prize competition, prize, reward" - }, - { - "example": "副賞", - "reading": "フクショウ", - "meaning": "extra prize" - } - ], - "kunyomiExamples": [ - { - "example": "褒める", - "reading": "ほめる", - "meaning": "to praise, to commend, to compliment, to speak well of, to speak highly of" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "冖", - "口", - "尚", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36062_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cde.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cde.gif", - "uri": "http://jisho.org/search/%E8%B3%9E%23kanji" - }, - { - "query": "条", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "363", - "strokeCount": 7, - "meaning": "article, clause, counter for articles, clauses, paragraphs, etc., twig, item, stripe, streak", - "kunyomi": [ - "えだ", - "すじ" - ], - "onyomi": [ - "ジョウ", - "チョウ", - "デキ" - ], - "onyomiExamples": [ - { - "example": "条", - "reading": "ジョウ", - "meaning": "article (in document), provision, stripe, streak, line, although, though, since, as, because, inasmuch as" - }, - { - "example": "条件", - "reading": "ジョウケン", - "meaning": "condition, term, requirement, qualification, prerequisite" - }, - { - "example": "別状", - "reading": "ベツジョウ", - "meaning": "something unusual, something wrong, mishap, accident, serious condition (e.g. after an injury), different situation" - }, - { - "example": "言い条", - "reading": "イイジョウ", - "meaning": "an excuse, however, nonetheless" - } - ], - "kunyomiExamples": [ - { - "example": "筋", - "reading": "すじ", - "meaning": "muscle, tendon, sinew, vein, artery, fiber, fibre, string, line, stripe, streak, reason, logic, plot, storyline, lineage, descent, school (e.g. of scholarship or arts), aptitude, talent, source (of information, etc.), circle, channel, well-informed person (in a transaction), logical move (in go, shogi, etc.), ninth vertical line, seam on a helmet, gristly fish paste (made of muscle, tendons, skin, etc.), social position, status, on (a river, road, etc.), along, counter for long thin things, counter for roads or blocks when giving directions, (Edo period) counter for hundreds of mon (obsolete unit of currency)" - }, - { - "example": "条海豚", - "reading": "すじいるか", - "meaning": "striped dolphin (Stenella coeruleoalba)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "夂", - "攵", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26465_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06761.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6761.gif", - "uri": "http://jisho.org/search/%E6%9D%A1%23kanji" - }, - { - "query": "状", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "298", - "strokeCount": 7, - "meaning": "status quo, conditions, circumstances, form, appearance", - "kunyomi": [], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "状", - "reading": "ジョウ", - "meaning": "form, shape, appearance, state, condition, circumstances, letter, correspondence" - }, - { - "example": "状況", - "reading": "ジョウキョウ", - "meaning": "state of affairs (around you), situation, circumstances" - }, - { - "example": "内情", - "reading": "ナイジョウ", - "meaning": "internal conditions, true state of affairs" - }, - { - "example": "形状", - "reading": "ケイジョウ", - "meaning": "shape, form" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "爿", - "犬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29366_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072b6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72b6.gif", - "uri": "http://jisho.org/search/%E7%8A%B6%23kanji" - }, - { - "query": "常", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "293", - "strokeCount": 11, - "meaning": "usual, ordinary, normal, common, regular, continually, always, long-lasting", - "kunyomi": [ - "つね", - "とこ-" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "常識", - "reading": "ジョウシキ", - "meaning": "common sense, good sense, common knowledge, general knowledge, common practice, accepted practice, social etiquette" - }, - { - "example": "常勤", - "reading": "ジョウキン", - "meaning": "full-time employment" - }, - { - "example": "平常", - "reading": "ヘイジョウ", - "meaning": "normal, usual, ordinary, everyday" - }, - { - "example": "経常", - "reading": "ケイジョウ", - "meaning": "ordinary" - } - ], - "kunyomiExamples": [ - { - "example": "常", - "reading": "つね", - "meaning": "usual state of things" - }, - { - "example": "常に", - "reading": "つねに", - "meaning": "always, constantly" - }, - { - "example": "経常", - "reading": "けいじょう", - "meaning": "ordinary" - }, - { - "example": "世の常", - "reading": "よのつね", - "meaning": "ordinary, run-of-the-mill, usual" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "冖", - "口", - "尚", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24120_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e38.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e38.gif", - "uri": "http://jisho.org/search/%E5%B8%B8%23kanji" - }, - { - "query": "情", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "235", - "strokeCount": 11, - "meaning": "feelings, emotion, passion, sympathy, circumstances, facts", - "kunyomi": [ - "なさ.け" - ], - "onyomi": [ - "ジョウ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "情", - "reading": "ジョウ", - "meaning": "feelings, emotion, sentiment, compassion, sympathy, passion, affection, love, the way things really are, the actual situation" - }, - { - "example": "情感", - "reading": "ジョウカン", - "meaning": "feeling, sensitivity, emotion" - }, - { - "example": "風情", - "reading": "フゼイ", - "meaning": "taste, elegance, charm, appearance, air, the likes of ..., lowly people such as ..." - }, - { - "example": "内情", - "reading": "ナイジョウ", - "meaning": "internal conditions, true state of affairs" - }, - { - "example": "傾城", - "reading": "ケイセイ", - "meaning": "beauty, siren, courtesan, prostitute" - } - ], - "kunyomiExamples": [ - { - "example": "情け", - "reading": "なさけ", - "meaning": "pity, sympathy, compassion, mercy, affection, love" - }, - { - "example": "情けない", - "reading": "なさけない", - "meaning": "miserable, pitiable, shameful, deplorable, pathetic" - }, - { - "example": "恋情", - "reading": "れんじょう", - "meaning": "love, attachment, lovesickness" - }, - { - "example": "裏情", - "reading": "うらなさけ", - "meaning": "inner affection" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "二", - "亠", - "土", - "忙", - "月", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24773_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60c5.gif", - "uri": "http://jisho.org/search/%E6%83%85%23kanji" - }, - { - "query": "織", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "608", - "strokeCount": 18, - "meaning": "weave, fabric", - "kunyomi": [ - "お.る", - "お.り", - "おり", - "-おり", - "-お.り" - ], - "onyomi": [ - "ショク", - "シキ" - ], - "onyomiExamples": [ - { - "example": "織布", - "reading": "ショクフ", - "meaning": "woven fabric" - }, - { - "example": "織女", - "reading": "ショクジョ", - "meaning": "female weaver, Vega (star in the constellation Lyra), Alpha Lyrae" - }, - { - "example": "染織", - "reading": "センショク", - "meaning": "dyeing and weaving" - }, - { - "example": "紡織", - "reading": "ボウショク", - "meaning": "spinning and weaving" - }, - { - "example": "子宮旁結合織", - "reading": "シキュウボウケツゴウシキ", - "meaning": "parametrium" - }, - { - "example": "間充織", - "reading": "カンジュウシキ", - "meaning": "mesenchyme" - } - ], - "kunyomiExamples": [ - { - "example": "織る", - "reading": "おる", - "meaning": "to weave" - }, - { - "example": "織り", - "reading": "おり", - "meaning": "weave, weaving, woven item" - }, - { - "example": "織物", - "reading": "おりもの", - "meaning": "textile, fabric" - }, - { - "example": "羽織", - "reading": "はおり", - "meaning": "haori (Japanese formal coat)" - }, - { - "example": "手織り", - "reading": "ており", - "meaning": "handwoven, handspun, weaving by hand" - }, - { - "example": "織り", - "reading": "おり", - "meaning": "weave, weaving, woven item" - }, - { - "example": "織物", - "reading": "おりもの", - "meaning": "textile, fabric" - }, - { - "example": "羽織", - "reading": "はおり", - "meaning": "haori (Japanese formal coat)" - }, - { - "example": "手織り", - "reading": "ており", - "meaning": "handwoven, handspun, weaving by hand" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "戈", - "日", - "立", - "糸", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32340_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e54.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e54.gif", - "uri": "http://jisho.org/search/%E7%B9%94%23kanji" - }, - { - "query": "職", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "305", - "strokeCount": 18, - "meaning": "post, employment, work", - "kunyomi": [], - "onyomi": [ - "ショク", - "ソク" - ], - "onyomiExamples": [ - { - "example": "職", - "reading": "ショク", - "meaning": "job, work, employment, occupation, position, duties, trade, skill" - }, - { - "example": "職員", - "reading": "ショクイン", - "meaning": "staff member, personnel" - }, - { - "example": "住職", - "reading": "ジュウショク", - "meaning": "chief priest (of a Buddhist temple)" - }, - { - "example": "休職", - "reading": "キュウショク", - "meaning": "temporary retirement, suspension from office" - }, - { - "example": "職", - "reading": "ショク", - "meaning": "job, work, employment, occupation, position, duties, trade, skill" - }, - { - "example": "有職", - "reading": "ユウショク", - "meaning": "holding a job, being employed, being learned, being knowledgeable, having great artistic talent, being a skilled performer, being well-versed in usages or practices of the court or military households" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "耳", - "meaning": "ear" - }, - "parts": [ - "戈", - "日", - "立", - "耳", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32887_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08077.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8077.gif", - "uri": "http://jisho.org/search/%E8%81%B7%23kanji" - }, - { - "query": "制", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "108", - "strokeCount": 8, - "meaning": "system, law, rule", - "kunyomi": [], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "制", - "reading": "セイ", - "meaning": "system, organization, organisation, imperial command, laws, regulation, control, government, suppression, restraint, holding back, establishment" - }, - { - "example": "制圧", - "reading": "セイアツ", - "meaning": "gaining total control (of people or counties), suppression, oppression, control, mastery, ascendancy, supremacy" - }, - { - "example": "天皇制", - "reading": "テンノウセイ", - "meaning": "the Emperor System" - }, - { - "example": "帝政", - "reading": "テイセイ", - "meaning": "imperial government, imperialism, monarchical rule" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ノ", - "二", - "刈", - "巾", - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21046_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05236.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5236.gif", - "uri": "http://jisho.org/search/%E5%88%B6%23kanji" - }, - { - "query": "性", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "104", - "strokeCount": 8, - "meaning": "sex, gender, nature", - "kunyomi": [ - "さが" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "性", - "reading": "セイ", - "meaning": "nature (of a person), sex, gender, -ty, -ity, -ness, -cy" - }, - { - "example": "性格", - "reading": "セイカク", - "meaning": "character (of a person), personality, disposition, nature, characteristics, nature (of a thing, event, etc.)" - }, - { - "example": "耐性", - "reading": "タイセイ", - "meaning": "resistance (e.g. to antibiotics), tolerance (e.g. drug tolerance)" - }, - { - "example": "社会性", - "reading": "シャカイセイ", - "meaning": "sociality" - }, - { - "example": "性", - "reading": "ショウ", - "meaning": "nature (of a person or thing), that which does not change according to external influences" - }, - { - "example": "性根", - "reading": "ショウネ", - "meaning": "nature, character, disposition" - }, - { - "example": "冷え性", - "reading": "ヒエショウ", - "meaning": "sensitivity to cold" - }, - { - "example": "凝り性", - "reading": "コリショウ", - "meaning": "fastidiousness, enthusiasm for one thing, meticulousness, monomania, obsession, susceptibility for a stiffening of the shoulders" - } - ], - "kunyomiExamples": [ - { - "example": "性", - "reading": "さが", - "meaning": "one's nature, one's destiny, custom, tradition, habit, convention" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "忙", - "生" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24615_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06027.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6027.gif", - "uri": "http://jisho.org/search/%E6%80%A7%23kanji" - }, - { - "query": "政", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "17", - "strokeCount": 9, - "meaning": "politics, government", - "kunyomi": [ - "まつりごと", - "まん" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "政", - "reading": "マツリゴト", - "meaning": "rule, government" - }, - { - "example": "政界", - "reading": "セイカイ", - "meaning": "(world of) politics, political world, political circles" - }, - { - "example": "農政", - "reading": "ノウセイ", - "meaning": "agricultural administration" - }, - { - "example": "帝政", - "reading": "テイセイ", - "meaning": "imperial government, imperialism, monarchical rule" - }, - { - "example": "摂政", - "reading": "セッショウ", - "meaning": "regency, regent" - } - ], - "kunyomiExamples": [ - { - "example": "政", - "reading": "まつりごと", - "meaning": "rule, government" - }, - { - "example": "政所", - "reading": "まんどころ", - "meaning": "official in charge of the administration of domains and general affairs of powerful noble families (from the middle of the Heian period), titled lady (legal wife of an important official), government office related to finances (Kamakura and Muromachi periods), clerk working for large temples and shrines" - }, - { - "example": "太政", - "reading": "おおまつりごと", - "meaning": "(Japanese) imperial government" - }, - { - "example": "政所", - "reading": "まんどころ", - "meaning": "official in charge of the administration of domains and general affairs of powerful noble families (from the middle of the Heian period), titled lady (legal wife of an important official), government office related to finances (Kamakura and Muromachi periods), clerk working for large temples and shrines" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "一", - "乞", - "攵", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25919_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0653f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/653f.gif", - "uri": "http://jisho.org/search/%E6%94%BF%23kanji" - }, - { - "query": "勢", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "260", - "strokeCount": 13, - "meaning": "forces, energy, military strength", - "kunyomi": [ - "いきお.い", - "はずみ" - ], - "onyomi": [ - "セイ", - "ゼイ" - ], - "onyomiExamples": [ - { - "example": "勢", - "reading": "セイ", - "meaning": "energy, military strength" - }, - { - "example": "勢力", - "reading": "セイリョク", - "meaning": "influence, power, might, strength, potency, force, energy" - }, - { - "example": "国勢", - "reading": "コクセイ", - "meaning": "state of a country (population, resources, etc.), condition of a country, strength of a country" - }, - { - "example": "党勢", - "reading": "トウセイ", - "meaning": "strength of a party" - }, - { - "example": "勢", - "reading": "ゼイ", - "meaning": "group engaged in some activity (players, companies, forces, etc.)" - }, - { - "example": "同勢", - "reading": "ドウゼイ", - "meaning": "party, company" - }, - { - "example": "猛勢", - "reading": "モウセイ", - "meaning": "great strength, courageous army, valiant troops" - } - ], - "kunyomiExamples": [ - { - "example": "勢い", - "reading": "いきおい", - "meaning": "force, vigor, vigour, energy, spirit, life, influence, authority, power, might, impetus, momentum, course (of events), naturally, necessarily" - }, - { - "example": "勢い余る", - "reading": "いきおいあまる", - "meaning": "to have excess momentum (from going too fast, using too much force, etc.), to get carried away, to go overboard, to overdo (something)" - }, - { - "example": "弾み", - "reading": "はずみ", - "meaning": "bounce, spring, rebound, momentum, impetus, impulse, stimulus, inertia, moment, instant, impulse, chance" - }, - { - "example": "弾車", - "reading": "はずみぐるま", - "meaning": "flywheel" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "丶", - "九", - "儿", - "力", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21218_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052e2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52e2.gif", - "uri": "http://jisho.org/search/%E5%8B%A2%23kanji" - }, - { - "query": "精", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "752", - "strokeCount": 14, - "meaning": "refined, ghost, fairy, energy, vitality, semen, excellence, purity, skill", - "kunyomi": [ - "しら.げる", - "くわ.しい" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "精", - "reading": "セイ", - "meaning": "spirit, sprite, nymph, energy, vigor (vigour), strength, fine details, semen" - }, - { - "example": "精鋭", - "reading": "セイエイ", - "meaning": "elite, best, pick, cream of the crop" - }, - { - "example": "体外受精", - "reading": "タイガイジュセイ", - "meaning": "in vitro fertilization, in vitro fertilisation, IVF" - }, - { - "example": "受精", - "reading": "ジュセイ", - "meaning": "fertilization, fertilisation, impregnation, pollination, insemination" - }, - { - "example": "精霊", - "reading": "ショウリョウ", - "meaning": "spirit of the deceased" - }, - { - "example": "精進", - "reading": "ショウジン", - "meaning": "concentration, diligence, devotion, asceticism, zeal in one's quest for enlightenment, adherence to a vegetarian diet" - }, - { - "example": "無精", - "reading": "ブショウ", - "meaning": "indolence, laziness, sloth" - }, - { - "example": "水晶", - "reading": "スイショウ", - "meaning": "(rock) crystal, high purity quartz" - } - ], - "kunyomiExamples": [ - { - "example": "精げる", - "reading": "しらげる", - "meaning": "to polish (rice), to refine, to purify" - }, - { - "example": "詳しい", - "reading": "くわしい", - "meaning": "detailed, full, accurate, knowing very well, well-acquainted, well-informed" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "二", - "亠", - "土", - "月", - "米", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31934_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07cbe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7cbe.gif", - "uri": "http://jisho.org/search/%E7%B2%BE%23kanji" - }, - { - "query": "製", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "488", - "strokeCount": 14, - "meaning": "made in..., manufacture", - "kunyomi": [], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "製", - "reading": "セイ", - "meaning": "-made, make" - }, - { - "example": "製鋼", - "reading": "セイコウ", - "meaning": "steel manufacture" - }, - { - "example": "縫製", - "reading": "ホウセイ", - "meaning": "sewing (by machine)" - }, - { - "example": "既製", - "reading": "キセイ", - "meaning": "ready-made, off the shelf" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "刈", - "巾", - "牛", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35069_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88fd.gif", - "uri": "http://jisho.org/search/%E8%A3%BD%23kanji" - }, - { - "query": "税", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "289", - "strokeCount": 12, - "meaning": "tax, duty", - "kunyomi": [], - "onyomi": [ - "ゼイ" - ], - "onyomiExamples": [ - { - "example": "税", - "reading": "ゼイ", - "meaning": "tax" - }, - { - "example": "税関", - "reading": "ゼイカン", - "meaning": "customs, customs house" - }, - { - "example": "地方税", - "reading": "チホウゼイ", - "meaning": "local tax, council tax" - }, - { - "example": "納税", - "reading": "ノウゼイ", - "meaning": "payment of taxes" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "儿", - "口", - "并", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31246_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a0e.gif", - "uri": "http://jisho.org/search/%E7%A8%8E%23kanji" - }, - { - "query": "責", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "598", - "strokeCount": 11, - "meaning": "blame, condemn, censure", - "kunyomi": [ - "せ.める" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "責", - "reading": "セキ", - "meaning": "responsibility, duty, obligation" - }, - { - "example": "責任", - "reading": "セキニン", - "meaning": "duty, responsibility (incl. supervision of staff), liability, onus" - }, - { - "example": "問責", - "reading": "モンセキ", - "meaning": "blame, censure, reproof, reprimand, rebuke" - }, - { - "example": "引責", - "reading": "インセキ", - "meaning": "taking responsibility" - } - ], - "kunyomiExamples": [ - { - "example": "責める", - "reading": "せめる", - "meaning": "to condemn, to blame, to criticize, to criticise, to reproach, to accuse, to urge, to press, to pester, to torture, to torment, to persecute, to break in (a horse)" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "二", - "亠", - "土", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36012_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cac.gif", - "uri": "http://jisho.org/search/%E8%B2%AC%23kanji" - }, - { - "query": "績", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "820", - "strokeCount": 17, - "meaning": "exploits, achievements, unreeling cocoons", - "kunyomi": [], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "戦績", - "reading": "センセキ", - "meaning": "war or military record, score, military achievements, results" - }, - { - "example": "紡績", - "reading": "ボウセキ", - "meaning": "spinning (textiles), spun yarn" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ハ", - "二", - "亠", - "土", - "小", - "幺", - "目", - "糸", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32318_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e3e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e3e.gif", - "uri": "http://jisho.org/search/%E7%B8%BE%23kanji" - }, - { - "query": "接", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "523", - "strokeCount": 11, - "meaning": "touch, contact, adjoin, piece together", - "kunyomi": [ - "つ.ぐ" - ], - "onyomi": [ - "セツ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "接続", - "reading": "セツゾク", - "meaning": "connection, attachment, union, join, joint, link, changing trains, conjunction" - }, - { - "example": "切断", - "reading": "セツダン", - "meaning": "cutting, severance, section, amputation, disconnection" - }, - { - "example": "溶接", - "reading": "ヨウセツ", - "meaning": "weld, welding" - }, - { - "example": "応接", - "reading": "オウセツ", - "meaning": "reception (e.g. of visitors), dealing with" - }, - { - "example": "接心", - "reading": "セッシン", - "meaning": "concentration, period of intensive zazen" - } - ], - "kunyomiExamples": [ - { - "example": "接ぐ", - "reading": "つぐ", - "meaning": "to join, to piece together, to set (bones), to graft (onto a tree)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "女", - "扎", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25509_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063a5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63a5.gif", - "uri": "http://jisho.org/search/%E6%8E%A5%23kanji" - }, - { - "query": "設", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "145", - "strokeCount": 11, - "meaning": "establishment, provision, prepare", - "kunyomi": [ - "もう.ける" - ], - "onyomi": [ - "セツ" - ], - "onyomiExamples": [ - { - "example": "設問", - "reading": "セツモン", - "meaning": "posing a question, question" - }, - { - "example": "設備", - "reading": "セツビ", - "meaning": "equipment, facilities, installation, accommodations, conveniences, arrangements" - }, - { - "example": "公設", - "reading": "コウセツ", - "meaning": "public (institution)" - }, - { - "example": "併設", - "reading": "ヘイセツ", - "meaning": "joint establishment (esp. schools of different levels or different courses of study), establishment as an annex (e.g. of a school), juxtaposition, placing side by side" - } - ], - "kunyomiExamples": [ - { - "example": "設ける", - "reading": "もうける", - "meaning": "to prepare, to provide, to set up, to establish, to organize, to lay down (rules), to make (an excuse)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "几", - "又", - "殳", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35373_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a2d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a2d.gif", - "uri": "http://jisho.org/search/%E8%A8%AD%23kanji" - }, - { - "query": "絶", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "784", - "strokeCount": 12, - "meaning": "discontinue, sever, cut off, abstain, interrupt, suppress, be beyond, without match, peerless, unparalleled", - "kunyomi": [ - "た.える", - "た.やす", - "た.つ" - ], - "onyomi": [ - "ゼツ" - ], - "onyomiExamples": [ - { - "example": "絶", - "reading": "ゼツ", - "meaning": "starting field which contains the November and/or December 20-point card" - }, - { - "example": "絶縁", - "reading": "ゼツエン", - "meaning": "breaking off relations, disconnection, insulation (esp. electrical), isolation" - }, - { - "example": "超絶", - "reading": "チョウゼツ", - "meaning": "transcendence, excellence, superiority" - }, - { - "example": "壮絶", - "reading": "ソウゼツ", - "meaning": "grand, heroic, sublime, fierce" - } - ], - "kunyomiExamples": [ - { - "example": "絶える", - "reading": "たえる", - "meaning": "to die out, to peter out, to become extinct, to cease, to be stopped, to be discontinued, to be cut off" - }, - { - "example": "絶えることなく", - "reading": "たえることなく", - "meaning": "unceasing, relentless" - }, - { - "example": "絶やす", - "reading": "たやす", - "meaning": "to exterminate, to eradicate, to wipe out, to put an end to, to let (fire) go out, to let die (e.g. flowers), to run out of" - }, - { - "example": "断つ", - "reading": "たつ", - "meaning": "to sever, to cut off, to suppress, to eradicate, to exterminate, to abstain (from), to give up" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "糸", - "色" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32118_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d76.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d76.gif", - "uri": "http://jisho.org/search/%E7%B5%B6%23kanji" - }, - { - "query": "祖", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1226", - "strokeCount": 9, - "meaning": "ancestor, pioneer, founder", - "kunyomi": [], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "祖", - "reading": "ソ", - "meaning": "ancestor, forefather, progenitor, originator, pioneer, inventor, founder, grandfather" - }, - { - "example": "祖国", - "reading": "ソコク", - "meaning": "motherland, fatherland, native country" - }, - { - "example": "元祖", - "reading": "ガンソ", - "meaning": "originator, pioneer, inventor, founder, progenitor, primogenitor, founder of a family line" - }, - { - "example": "教祖", - "reading": "キョウソ", - "meaning": "founder of a religious sect" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "一", - "目", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31062_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07956.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7956.gif", - "uri": "http://jisho.org/search/%E7%A5%96%23kanji" - }, - { - "query": "素", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "660", - "strokeCount": 10, - "meaning": "elementary, principle, naked, uncovered", - "kunyomi": [ - "もと" - ], - "onyomi": [ - "ソ", - "ス" - ], - "onyomiExamples": [ - { - "example": "素", - "reading": "ソ", - "meaning": "plain, white silk, prime" - }, - { - "example": "素案", - "reading": "ソアン", - "meaning": "rough plan, draft" - }, - { - "example": "栄養素", - "reading": "エイヨウソ", - "meaning": "nutrient" - }, - { - "example": "酵素", - "reading": "コウソ", - "meaning": "enzyme" - }, - { - "example": "素", - "reading": "ス", - "meaning": "one's nature, one's feelings, oneself, plain, unadorned, undecorated, unadulterated, au naturel, mere, poor, exceedingly" - }, - { - "example": "素顔", - "reading": "スガオ", - "meaning": "face with no make-up, unpainted face, true face (of a country, celebrity, etc.), real face, true picture, real nature, sober face, sobriety" - }, - { - "example": "空素", - "reading": "カラス", - "meaning": "dealt hand containing only 1-point cards (scoring combination)" - }, - { - "example": "鉤素", - "reading": "ハリス", - "meaning": "snell (fishing), leader, trace, cast" - } - ], - "kunyomiExamples": [ - { - "example": "元", - "reading": "もと", - "meaning": "origin, source, base, basis, foundation, root, cause, ingredient, material, (somebody's) side, (somebody's) location, original cost (or capital, principal, etc.), (plant) root, (tree) trunk, first section of a waka, counter for blades of grass, tree trunks, etc., and for falcons (in falconry), handle (chopsticks, brush, etc.), grip" - }, - { - "example": "元より", - "reading": "もとより", - "meaning": "from the beginning, from the first, all along, originally, of course" - }, - { - "example": "味の素", - "reading": "あじのもと", - "meaning": "Ajinomoto, brand name of monosodium glutamate (MSG)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "二", - "亠", - "土", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32032_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d20.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d20.gif", - "uri": "http://jisho.org/search/%E7%B4%A0%23kanji" - }, - { - "query": "総", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "129", - "strokeCount": 14, - "meaning": "general, whole, all, full, total", - "kunyomi": [ - "す.べて", - "すべ.て", - "ふさ" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "総", - "reading": "ソウ", - "meaning": "whole, all, general, gross, entire, overall" - }, - { - "example": "総当たり", - "reading": "ソウアタリ", - "meaning": "round robin, having no losing tickets (of a lottery), brute force (in cryptography), using all combinations" - }, - { - "example": "海総", - "reading": "カイソウ", - "meaning": "imperial navy order" - }, - { - "example": "全総", - "reading": "ゼンソウ", - "meaning": "Comprehensive National Development Plan (1962-)" - } - ], - "kunyomiExamples": [ - { - "example": "全て", - "reading": "すべて", - "meaning": "everything, all, the whole, entirely, completely, wholly, all" - }, - { - "example": "すべての道はローマに通ず", - "reading": "すべてのみちはローマにつうず", - "meaning": "all roads lead to Rome" - }, - { - "example": "全て", - "reading": "すべて", - "meaning": "everything, all, the whole, entirely, completely, wholly, all" - }, - { - "example": "すべての道はローマに通ず", - "reading": "すべてのみちはローマにつうず", - "meaning": "all roads lead to Rome" - }, - { - "example": "房", - "reading": "ふさ", - "meaning": "tuft (of hair, threads, etc.), fringe, tassel, bunch (of grapes, bananas, etc.), cluster (of flowers), segment (of a tangerine, etc.), section" - }, - { - "example": "房房", - "reading": "ふさふさ", - "meaning": "in tufts, tufty, bushy, thick, luxuriant" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ハ", - "厶", - "小", - "幺", - "心", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32207_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dcf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dcf.gif", - "uri": "http://jisho.org/search/%E7%B7%8F%23kanji" - }, - { - "query": "造", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "429", - "strokeCount": 10, - "meaning": "create, make, structure, physique", - "kunyomi": [ - "つく.る", - "つく.り", - "-づく.り" - ], - "onyomi": [ - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "造語", - "reading": "ゾウゴ", - "meaning": "coined word, coinage, neologism" - }, - { - "example": "造形", - "reading": "ゾウケイ", - "meaning": "molding, moulding, shaping, modelling (i.e. plastic arts), modeling" - }, - { - "example": "変造", - "reading": "ヘンゾウ", - "meaning": "alteration, defacement, debasement, falsification, forgery" - }, - { - "example": "捏造", - "reading": "ネツゾウ", - "meaning": "fabrication, forgery, falsehood, hoax" - } - ], - "kunyomiExamples": [ - { - "example": "作る", - "reading": "つくる", - "meaning": "to make, to produce, to manufacture, to build, to construct, to prepare (food), to brew (alcohol), to raise, to grow, to cultivate, to train, to till, to draw up (a document), to make out, to prepare, to write, to create (an artistic work, etc.), to compose, to coin (a phrase), to organize, to organise, to establish, to found, to have (a child), to make up (one's face, etc.), to fabricate (an excuse, etc.), to give a (false) appearance, to feign (a smile, etc.), to put on a show of emotion, to form (a line, etc.), to set (a record), to commit (a sin, etc.)" - }, - { - "example": "造り", - "reading": "つくり", - "meaning": "make-up, structure, physique" - }, - { - "example": "作り", - "reading": "つくり", - "meaning": "making, producing, manufacturing, building, construction, make, structure, appearance (attire, make-up, etc.), build, physique, sashimi, forced (smile, etc.)" - }, - { - "example": "塚造", - "reading": "つかつくり", - "meaning": "megapode (any bird of family Megapodiidae, incl. brush turkeys and mallee fowl), mound builder" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ノ", - "口", - "土", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36896_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09020.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9020.gif", - "uri": "http://jisho.org/search/%E9%80%A0%23kanji" - }, - { - "query": "像", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "856", - "strokeCount": 14, - "meaning": "statue, picture, image, figure, portrait", - "kunyomi": [], - "onyomi": [ - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "像", - "reading": "ゾウ", - "meaning": "image, figure, statue, picture, portrait, figure, form, shape, appearance, image" - }, - { - "example": "像主", - "reading": "ゾウシュ", - "meaning": "subject (of a portrait or bust), a person posing for a portrait or bust, (historically) patron, someone who commissions a Buddhist temple or work of art" - }, - { - "example": "実像", - "reading": "ジツゾウ", - "meaning": "real image, real form, real-life image, true picture, actual conditions, actual circumstances" - }, - { - "example": "将来像", - "reading": "ショウライゾウ", - "meaning": "vision of the future" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "勹", - "化", - "口", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20687_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050cf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50cf.gif", - "uri": "http://jisho.org/search/%E5%83%8F%23kanji" - }, - { - "query": "増", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "231", - "strokeCount": 14, - "meaning": "increase, add, augment, gain, promote", - "kunyomi": [ - "ま.す", - "ま.し", - "ふ.える", - "ふ.やす" - ], - "onyomi": [ - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "増", - "reading": "ゾウ", - "meaning": "increase" - }, - { - "example": "増員", - "reading": "ゾウイン", - "meaning": "increasing the number of staff, hiring more people" - }, - { - "example": "激増", - "reading": "ゲキゾウ", - "meaning": "sharp increase, sudden rise" - }, - { - "example": "累増", - "reading": "ルイゾウ", - "meaning": "successive or progressive increases, cumulative increase" - } - ], - "kunyomiExamples": [ - { - "example": "増す", - "reading": "ます", - "meaning": "to increase, to grow" - }, - { - "example": "益々", - "reading": "ますます", - "meaning": "increasingly, more and more, decreasingly (when declining), less and less" - }, - { - "example": "増し", - "reading": "まし", - "meaning": "better, preferable, less objectionable, least-worst, more, increase, extra, increase, growth" - }, - { - "example": "況して", - "reading": "まして", - "meaning": "still more, to say nothing of, not to mention, still less" - }, - { - "example": "増える", - "reading": "ふえる", - "meaning": "to increase, to multiply" - }, - { - "example": "増やす", - "reading": "ふやす", - "meaning": "to increase, to add to, to augment" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "并", - "日", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22679_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05897.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5897.gif", - "uri": "http://jisho.org/search/%E5%A2%97%23kanji" - }, - { - "query": "則", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "753", - "strokeCount": 9, - "meaning": "rule, follow, based on, model after", - "kunyomi": [ - "のっと.る" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "則", - "reading": "ソク", - "meaning": "counter for rules, rule, regulation" - }, - { - "example": "即する", - "reading": "ソクスル", - "meaning": "to conform to, to agree with, to be adapted to, to be based on" - }, - { - "example": "反則", - "reading": "ハンソク", - "meaning": "foul play (sport), breaking the rules, infringement, irregularity" - }, - { - "example": "正則", - "reading": "セイソク", - "meaning": "correct, proper, formal, regular, systematic, normal, invertible (matrix), holomorphic" - } - ], - "kunyomiExamples": [ - { - "example": "則る", - "reading": "のっとる", - "meaning": "to conform to, to be in accordance with, to follow (rule, tradition, example, etc.)" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ハ", - "刈", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21063_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05247.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5247.gif", - "uri": "http://jisho.org/search/%E5%89%87%23kanji" - }, - { - "query": "測", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "761", - "strokeCount": 12, - "meaning": "fathom, plan, scheme, measure", - "kunyomi": [ - "はか.る" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "測量", - "reading": "ソクリョウ", - "meaning": "measurement, surveying" - }, - { - "example": "測定", - "reading": "ソクテイ", - "meaning": "measurement" - }, - { - "example": "計測", - "reading": "ケイソク", - "meaning": "measuring, measurement" - }, - { - "example": "憶測", - "reading": "オクソク", - "meaning": "guess, speculation, supposition" - } - ], - "kunyomiExamples": [ - { - "example": "計る", - "reading": "はかる", - "meaning": "to measure, to weigh, to survey, to time (sound, gauge, estimate), to conjecture, to infer, to surmise" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "刈", - "汁", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28204_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e2c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e2c.gif", - "uri": "http://jisho.org/search/%E6%B8%AC%23kanji" - }, - { - "query": "属", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "912", - "strokeCount": 12, - "meaning": "belong, genus, subordinate official, affiliated", - "kunyomi": [ - "さかん", - "つく", - "やから" - ], - "onyomi": [ - "ゾク", - "ショク" - ], - "onyomiExamples": [ - { - "example": "属", - "reading": "ゾク", - "meaning": "genus, generic" - }, - { - "example": "属する", - "reading": "ゾクスル", - "meaning": "to belong to, to come under, to be affiliated with, to be subject to" - }, - { - "example": "非鉄金属", - "reading": "ヒテツキンゾク", - "meaning": "nonferrous metals" - }, - { - "example": "貴金属", - "reading": "キキンゾク", - "meaning": "precious metal" - }, - { - "example": "嘱託", - "reading": "ショクタク", - "meaning": "commission, entrusting with (work), part-time employee, temporary work" - }, - { - "example": "嘱望", - "reading": "ショクボウ", - "meaning": "(having great) expectation, pinning one's hopes on" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "ノ", - "尸", - "禹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23646_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c5e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c5e.gif", - "uri": "http://jisho.org/search/%E5%B1%9E%23kanji" - }, - { - "query": "率", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "383", - "strokeCount": 11, - "meaning": "ratio, rate, proportion, %, factor, lead, spearhead, command", - "kunyomi": [ - "ひき.いる" - ], - "onyomi": [ - "ソツ", - "リツ", - "シュツ" - ], - "onyomiExamples": [ - { - "example": "卒爾", - "reading": "ソツジ", - "meaning": "abrupt, sudden" - }, - { - "example": "卒然", - "reading": "ソツゼン", - "meaning": "sudden, unexpected, unannounced, abrupt" - }, - { - "example": "短慮軽率", - "reading": "タンリョケイソツ", - "meaning": "impulsive and imprudent, rash and unthinking" - }, - { - "example": "兜率", - "reading": "トソツ", - "meaning": "Tusita (heaven, pure land)" - }, - { - "example": "率", - "reading": "リツ", - "meaning": "rate, ratio, proportion, percentage" - }, - { - "example": "率を定める", - "reading": "リツヲサダメル", - "meaning": "to fix the rate" - }, - { - "example": "倍率", - "reading": "バイリツ", - "meaning": "magnification, leverage, amplification, scaling factor, scale factor, competitiveness rating (e.g. for university entrance), applicant-to-acceptance ratio" - }, - { - "example": "定率", - "reading": "テイリツ", - "meaning": "fixed rate" - } - ], - "kunyomiExamples": [ - { - "example": "率いる", - "reading": "ひきいる", - "meaning": "to lead, to spearhead (a group), to command (troops)" - } - ], - "radical": { - "symbol": "玄", - "meaning": "dark, profound" - }, - "parts": [ - "亠", - "冫", - "十", - "幺", - "玄" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29575_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07387.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7387.gif", - "uri": "http://jisho.org/search/%E7%8E%87%23kanji" - }, - { - "query": "損", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "807", - "strokeCount": 13, - "meaning": "damage, loss, disadvantage, hurt, injure", - "kunyomi": [ - "そこ.なう", - "そこな.う", - "-そこ.なう", - "そこ.ねる", - "-そこ.ねる" - ], - "onyomi": [ - "ソン" - ], - "onyomiExamples": [ - { - "example": "損", - "reading": "ソン", - "meaning": "loss, damage, harm, unprofitable, disadvantage, handicap, drawback, unfavorable" - }, - { - "example": "損益", - "reading": "ソンエキ", - "meaning": "profit and loss, advantage and disadvantage" - }, - { - "example": "毀損", - "reading": "キソン", - "meaning": "damage, injury, defamation, harm" - }, - { - "example": "海損", - "reading": "カイソン", - "meaning": "sea damage, average loss" - } - ], - "kunyomiExamples": [ - { - "example": "損なう", - "reading": "そこなう", - "meaning": "to harm, to hurt, to injure, to damage, to spoil, to mar, to fail to ..., to miss one's opportunity to ..." - }, - { - "example": "損なう", - "reading": "そこなう", - "meaning": "to harm, to hurt, to injure, to damage, to spoil, to mar, to fail to ..., to miss one's opportunity to ..." - }, - { - "example": "損ねる", - "reading": "そこねる", - "meaning": "to harm, to hurt, to injure, to wreck, to miss one's chance to (do something), to fail to (do what one ought to have done)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ハ", - "口", - "扎", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25613_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0640d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/640d.gif", - "uri": "http://jisho.org/search/%E6%90%8D%23kanji" - }, - { - "query": "貸", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N4", - "newspaperFrequencyRank": "995", - "strokeCount": 12, - "meaning": "lend", - "kunyomi": [ - "か.す", - "か.し-", - "かし-" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "貸与", - "reading": "タイヨ", - "meaning": "loan, lending" - }, - { - "example": "貸借", - "reading": "タイシャク", - "meaning": "loan, debit and credit, lending and borrowing" - }, - { - "example": "転貸", - "reading": "テンタイ", - "meaning": "subleasing" - }, - { - "example": "借貸", - "reading": "シャクタイ", - "meaning": "loan, lending and borrowing" - } - ], - "kunyomiExamples": [ - { - "example": "貸す", - "reading": "かす", - "meaning": "to lend, to loan, to rent out, to hire out" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "化", - "弋", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36024_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cb8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cb8.gif", - "uri": "http://jisho.org/search/%E8%B2%B8%23kanji" - }, - { - "query": "態", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "353", - "strokeCount": 14, - "meaning": "attitude, condition, figure, appearance, voice (of verbs)", - "kunyomi": [ - "わざ.と" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "態", - "reading": "タイ", - "meaning": "condition, figure, appearance, voice" - }, - { - "example": "態勢", - "reading": "タイセイ", - "meaning": "attitude, posture, preparedness, readiness" - }, - { - "example": "旧態", - "reading": "キュウタイ", - "meaning": "old state of affairs" - }, - { - "example": "動態", - "reading": "ドウタイ", - "meaning": "movement, dynamic state" - } - ], - "kunyomiExamples": [ - { - "example": "態と", - "reading": "わざと", - "meaning": "on purpose, deliberately, intentionally" - }, - { - "example": "態とらしい", - "reading": "わざとらしい", - "meaning": "unnatural, affected, studied, forced" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "匕", - "厶", - "心", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24907_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0614b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/614b.gif", - "uri": "http://jisho.org/search/%E6%85%8B%23kanji" - }, - { - "query": "団", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "213", - "strokeCount": 6, - "meaning": "group, association", - "kunyomi": [ - "かたまり", - "まる.い" - ], - "onyomi": [ - "ダン", - "トン" - ], - "onyomiExamples": [ - { - "example": "団", - "reading": "ダン", - "meaning": "body, group, party, company, troupe" - }, - { - "example": "団員", - "reading": "ダンイン", - "meaning": "group member" - }, - { - "example": "退団", - "reading": "タイダン", - "meaning": "leaving (a group, team, etc.)" - }, - { - "example": "営団", - "reading": "エイダン", - "meaning": "corporation, foundation" - }, - { - "example": "敷き布団", - "reading": "シキブトン", - "meaning": "futon (laid on the floor), (Japanese) mattress, underquilt, sleeping mat" - }, - { - "example": "水団", - "reading": "スイトン", - "meaning": "flour dumplings in soup" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "囗", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22243_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56e3.gif", - "uri": "http://jisho.org/search/%E5%9B%A3%23kanji" - }, - { - "query": "断", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "338", - "strokeCount": 11, - "meaning": "severance, decline, refuse, apologize, warn, dismiss, prohibit, decision, judgement, cutting", - "kunyomi": [ - "た.つ", - "ことわ.る", - "さだ.める" - ], - "onyomi": [ - "ダン" - ], - "onyomiExamples": [ - { - "example": "断", - "reading": "ダン", - "meaning": "decision, judgment, resolution" - }, - { - "example": "断言", - "reading": "ダンゲン", - "meaning": "assertion, declaration, affirmation" - }, - { - "example": "独断", - "reading": "ドクダン", - "meaning": "one's own judgement (judgment), decision made without consulting others, arbitrary decision, dogmatism" - }, - { - "example": "縦断", - "reading": "ジュウダン", - "meaning": "running through (north-south), cutting across, travelling across, cutting vertically, sectioning longitudinally" - } - ], - "kunyomiExamples": [ - { - "example": "断つ", - "reading": "たつ", - "meaning": "to sever, to cut off, to suppress, to eradicate, to exterminate, to abstain (from), to give up" - }, - { - "example": "断る", - "reading": "ことわる", - "meaning": "to refuse, to reject, to dismiss, to turn down, to decline, to inform, to give notice, to tell in advance, to ask leave, to excuse oneself (from)" - }, - { - "example": "断るまでもなく", - "reading": "ことわるまでもなく", - "meaning": "needless to say" - } - ], - "radical": { - "symbol": "斤", - "meaning": "axe" - }, - "parts": [ - "一", - "斤", - "米", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26029_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065ad.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65ad.gif", - "uri": "http://jisho.org/search/%E6%96%AD%23kanji" - }, - { - "query": "築", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "821", - "strokeCount": 16, - "meaning": "fabricate, build, construct", - "kunyomi": [ - "きず.く" - ], - "onyomi": [ - "チク" - ], - "onyomiExamples": [ - { - "example": "築", - "reading": "チク", - "meaning": "... years since construction, ... years old (of a building), built in ..." - }, - { - "example": "築城", - "reading": "チクジョウ", - "meaning": "castle construction, building a castle, fortification" - }, - { - "example": "本建築", - "reading": "ホンケンチク", - "meaning": "permanent construction" - }, - { - "example": "移築", - "reading": "イチク", - "meaning": "dismantling a (historic) building and reconstructing it elsewhere" - } - ], - "kunyomiExamples": [ - { - "example": "築く", - "reading": "きずく", - "meaning": "to build, to construct, to erect, to amass (e.g. fortune), to pile up" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "丶", - "几", - "工", - "木", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31689_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07bc9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7bc9.gif", - "uri": "http://jisho.org/search/%E7%AF%89%23kanji" - }, - { - "query": "貯", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1100", - "strokeCount": 12, - "meaning": "savings, store, lay in, keep, wear mustache", - "kunyomi": [ - "た.める", - "たくわ.える" - ], - "onyomi": [ - "チョ" - ], - "onyomiExamples": [ - { - "example": "貯水", - "reading": "チョスイ", - "meaning": "storage of water" - }, - { - "example": "貯金", - "reading": "チョキン", - "meaning": "putting money aside, savings, deposit (e.g. in a bank), accumulated surplus of wins, wins in the bank" - }, - { - "example": "郵貯", - "reading": "ユウチョ", - "meaning": "postal (post-office) savings (deposit)" - } - ], - "kunyomiExamples": [ - { - "example": "貯める", - "reading": "ためる", - "meaning": "to save up (money)" - }, - { - "example": "蓄える", - "reading": "たくわえる", - "meaning": "to store, to save up, to stock up on, to lay in stock, to set aside, to accumulate (e.g. knowledge), to build up (e.g. experience), to develop (e.g. one's skills), to grow (a beard, moustache, etc.), to wear" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "一", - "亅", - "宀", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36015_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08caf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8caf.gif", - "uri": "http://jisho.org/search/%E8%B2%AF%23kanji" - }, - { - "query": "張", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "403", - "strokeCount": 11, - "meaning": "lengthen, counter for bows & stringed instruments, stretch, spread, put up (tent)", - "kunyomi": [ - "は.る", - "-は.り", - "-ば.り" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "張", - "reading": "チョウ", - "meaning": "Chinese \"Extended Net\" constellation (one of the 28 mansions), counter for objects with stretched strings (i.e. bows, kotos), curtains, papers, etc." - }, - { - "example": "張本人", - "reading": "チョウホンニン", - "meaning": "originator, ringleader, perpetrator, main culprit, person responsible" - }, - { - "example": "海外出張", - "reading": "カイガイシュッチョウ", - "meaning": "overseas business trip" - }, - { - "example": "伸張", - "reading": "シンチョウ", - "meaning": "expansion, extension, elongation, stretching, uncompression" - } - ], - "kunyomiExamples": [ - { - "example": "張る", - "reading": "はる", - "meaning": "to stick, to paste, to affix, to stretch, to spread, to strain, to tighten, to put up (tent), to form (e.g. ice on a pond), to fill, to swell, to stick out, to put, to slap, to post (a link, etc. online), to be expensive, to keep a watch on, to be on the lookout, to become one tile away from completion, to span, to generate" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "弓", - "長" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24373_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f35.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f35.gif", - "uri": "http://jisho.org/search/%E5%BC%B5%23kanji" - }, - { - "query": "停", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "733", - "strokeCount": 11, - "meaning": "halt, stopping", - "kunyomi": [ - "と.める", - "と.まる" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "停車", - "reading": "テイシャ", - "meaning": "stopping (of a train, car, etc.), stop" - }, - { - "example": "停止", - "reading": "テイシ", - "meaning": "stoppage, coming to a stop, halt, standstill, ceasing (movement, activity, etc.), suspension (of operations), interruption (e.g. of electricity supply), cutting off, suspension (of payment, licence, etc.), (temporary) prohibition, ban, suspension of music, dance, etc. as a sign of mourning for a prominent person" - }, - { - "example": "解停", - "reading": "カイテイ", - "meaning": "release from suspension (of a newspaper, magazine, etc.) (Meiji period), removal of suspension" - }, - { - "example": "居中調停", - "reading": "キョチュウチョウテイ", - "meaning": "mediation" - } - ], - "kunyomiExamples": [ - { - "example": "止める", - "reading": "とめる", - "meaning": "to stop, to turn off, to park, to prevent, to suppress (a cough), to hold back (tears), to hold (one's breath), to relieve (pain), to stop (someone from doing something), to dissuade, to forbid, to prohibit, to notice, to be aware of, to concentrate on, to pay attention to, to remember, to bear in mind, to fix (in place), to fasten, to tack, to pin, to nail, to button, to staple, to detain, to keep in custody" - }, - { - "example": "止まる", - "reading": "とまる", - "meaning": "to stop (moving), to come to a stop, to stop (doing, working, being supplied), to come to a halt, to cease, to be stopped, to be suspended, to alight, to perch on" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "亅", - "亠", - "冖", - "化", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20572_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0505c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/505c.gif", - "uri": "http://jisho.org/search/%E5%81%9C%23kanji" - }, - { - "query": "提", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "254", - "strokeCount": 12, - "meaning": "propose, take along, carry in hand", - "kunyomi": [ - "さ.げる" - ], - "onyomi": [ - "テイ", - "チョウ", - "ダイ" - ], - "onyomiExamples": [ - { - "example": "提起", - "reading": "テイキ", - "meaning": "raising (a question), bringing up (a problem), instituting (a lawsuit), filing (a claim), submitting (a case), lifting up" - }, - { - "example": "提案", - "reading": "テイアン", - "meaning": "proposal, proposition, suggestion" - }, - { - "example": "大前提", - "reading": "ダイゼンテイ", - "meaning": "major premise (in a syllogism), important condition, basic premise, basic assumption, something that should be obvious to all, something that should not have to be argued, something that goes without mentioning" - }, - { - "example": "上提", - "reading": "ジョウテイ", - "meaning": "introducing (a bill), presentation, departure on a journey" - }, - { - "example": "提灯", - "reading": "チョウチン", - "meaning": "paper lantern, Chinese lantern, Japanese lantern" - }, - { - "example": "提灯鮟鱇", - "reading": "チョウチンアンコウ", - "meaning": "football fish (any fish of family Himantolophidae, esp. the Atlantic footballfish, Himantolophus groenlandicus)" - }, - { - "example": "提宇子", - "reading": "ダイウス", - "meaning": "God" - }, - { - "example": "提婆", - "reading": "ダイバ", - "meaning": "deva (being with god-like characteristics)" - }, - { - "example": "菩提", - "reading": "ボダイ", - "meaning": "bodhi, enlightenment, happiness in the next world" - }, - { - "example": "閻浮提", - "reading": "エンブダイ", - "meaning": "Jambudvipa, continent of the terrestrial world" - } - ], - "kunyomiExamples": [ - { - "example": "提げる", - "reading": "さげる", - "meaning": "to take along, to hold in the hand, to hang (e.g. from the shoulder or waist)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "日", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25552_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063d0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63d0.gif", - "uri": "http://jisho.org/search/%E6%8F%90%23kanji" - }, - { - "query": "程", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "514", - "strokeCount": 12, - "meaning": "extent, degree, law, formula, distance, limits, amount", - "kunyomi": [ - "ほど", - "-ほど" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "程度", - "reading": "テイド", - "meaning": "degree, amount, grade, standard, of the order of (following a number), about, approximately" - }, - { - "example": "程朱学", - "reading": "テイシュガク", - "meaning": "neo-Confucianism (based on the teaching of the Cheng brothers and Zhu Xi)" - }, - { - "example": "規程", - "reading": "キテイ", - "meaning": "official regulations, inner rules" - }, - { - "example": "修士課程", - "reading": "シュウシカテイ", - "meaning": "master's course" - } - ], - "kunyomiExamples": [ - { - "example": "程", - "reading": "ほど", - "meaning": "extent, degree, measure, limit, bounds, (span of) time, (a) distance, the state of, the status of, the condition of, about, around, approximately, or so, as much as ..., to the extent of ..., like ..., the more ... the more ..." - }, - { - "example": "程なく", - "reading": "ほどなく", - "meaning": "soon, before long, shortly thereafter" - }, - { - "example": "驚くほど", - "reading": "おどろくほど", - "meaning": "to a surprising degree, to a remarkable extent, surprisingly, astonishingly, amazingly, alarmingly" - }, - { - "example": "前ほど", - "reading": "まえほど", - "meaning": "to the previous extent, as much as previously, as much as one used to" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "口", - "王", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31243_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a0b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a0b.gif", - "uri": "http://jisho.org/search/%E7%A8%8B%23kanji" - }, - { - "query": "適", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "670", - "strokeCount": 14, - "meaning": "suitable, occasional, rare, qualified, capable", - "kunyomi": [ - "かな.う" - ], - "onyomi": [ - "テキ" - ], - "onyomiExamples": [ - { - "example": "的確", - "reading": "テキカク", - "meaning": "precise, accurate, appropriate, exactly the right" - }, - { - "example": "適応", - "reading": "テキオウ", - "meaning": "adaptation, accommodation, conformity" - }, - { - "example": "不適", - "reading": "フテキ", - "meaning": "inadequacy, inappropriateness, unfitness, impropriety" - }, - { - "example": "悠々自適", - "reading": "ユウユウジテキ", - "meaning": "living a life of leisure with dignity, living quietly and comfortably free from worldly cares, otium cum dignitate" - } - ], - "kunyomiExamples": [ - { - "example": "叶う", - "reading": "かなう", - "meaning": "to come true (of a wish, prayer, etc.), to be realized, to be fulfilled, to suit (e.g. a purpose), to meet (wishes, ideals, etc.), to conform to (standards, rules, etc.), to be consistent with, to match (implies competition), to rival, to bear (e.g. the heat)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "亠", - "冂", - "十", - "口", - "并", - "滴", - "立", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36969_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09069.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9069.gif", - "uri": "http://jisho.org/search/%E9%81%A9%23kanji" - }, - { - "query": "統", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "125", - "strokeCount": 12, - "meaning": "overall, relationship, ruling, governing", - "kunyomi": [ - "す.べる", - "ほび.る" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "統括", - "reading": "トウカツ", - "meaning": "unification, bringing together, generalization, control, supervision" - }, - { - "example": "統一", - "reading": "トウイツ", - "meaning": "unity, consolidation, uniformity, unification, compatible" - }, - { - "example": "総統", - "reading": "ソウトウ", - "meaning": "supreme ruler, generalissimo, president (of Taiwan), führer, fuehrer" - }, - { - "example": "継統", - "reading": "ケイトウ", - "meaning": "accession to the throne" - } - ], - "kunyomiExamples": [ - { - "example": "統べる", - "reading": "すべる", - "meaning": "to rule over, to govern, to command, to control, to integrate, to consolidate, to unite, to incorporate" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "亠", - "儿", - "厶", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32113_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d71.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d71.gif", - "uri": "http://jisho.org/search/%E7%B5%B1%23kanji" - }, - { - "query": "堂", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N4", - "newspaperFrequencyRank": "1010", - "strokeCount": 11, - "meaning": "public chamber, hall", - "kunyomi": [], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "堂", - "reading": "ドウ", - "meaning": "temple, shrine, chapel, hall, company, front room" - }, - { - "example": "堂々", - "reading": "ドウドウ", - "meaning": "magnificent, grand, impressive, dignified, majestic, imposing, stately, fair, square, open, unashamed, brazen, grandly, boldly, confidently, fairly, squarely, unreservedly, brazenly" - }, - { - "example": "殿堂", - "reading": "デンドウ", - "meaning": "palace, hall, shrine, temple, sanctuary, hall of fame" - }, - { - "example": "議事堂", - "reading": "ギジドウ", - "meaning": "assembly hall, parliament house, diet building, capitol, houses of parliament, congress hall" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "冖", - "口", - "土", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22530_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05802.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5802.gif", - "uri": "http://jisho.org/search/%E5%A0%82%23kanji" - }, - { - "query": "銅", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1505", - "strokeCount": 14, - "meaning": "copper", - "kunyomi": [ - "あかがね" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "銅", - "reading": "ドウ", - "meaning": "copper (Cu), bronze (medal)" - }, - { - "example": "銅像", - "reading": "ドウゾウ", - "meaning": "bronze statue" - }, - { - "example": "白銅", - "reading": "ハクドウ", - "meaning": "nickel and copper alloy" - }, - { - "example": "精銅", - "reading": "セイドウ", - "meaning": "refined copper" - } - ], - "kunyomiExamples": [ - { - "example": "銅", - "reading": "どう", - "meaning": "copper (Cu), bronze (medal)" - }, - { - "example": "銅酵母", - "reading": "あかがねこうぼ", - "meaning": "copper yeast, copper-enriched yeast" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "一", - "冂", - "口", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37509_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09285.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9285.gif", - "uri": "http://jisho.org/search/%E9%8A%85%23kanji" - }, - { - "query": "導", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "354", - "strokeCount": 15, - "meaning": "guidance, leading, conduct, usher", - "kunyomi": [ - "みちび.く" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "導入", - "reading": "ドウニュウ", - "meaning": "introduction, bringing in, leading in, installation" - }, - { - "example": "導火線", - "reading": "ドウカセン", - "meaning": "fuse" - }, - { - "example": "超伝導", - "reading": "チョウデンドウ", - "meaning": "superconductivity, super-conductivity" - }, - { - "example": "主導", - "reading": "シュドウ", - "meaning": "leadership, initiative, spearhead" - } - ], - "kunyomiExamples": [ - { - "example": "導く", - "reading": "みちびく", - "meaning": "to guide, to lead, to show the way, to conduct, to derive, to deduce" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "寸", - "并", - "自", - "込", - "首" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23566_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c0e.gif", - "uri": "http://jisho.org/search/%E5%B0%8E%23kanji" - }, - { - "query": "得", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "175", - "strokeCount": 11, - "meaning": "gain, get, find, earn, acquire, can, may, able to, profit, advantage, benefit", - "kunyomi": [ - "え.る", - "う.る" - ], - "onyomi": [ - "トク" - ], - "onyomiExamples": [ - { - "example": "得", - "reading": "トク", - "meaning": "profit, advantage, benefit, gain, rebirth in paradise, entering nirvana" - }, - { - "example": "得意", - "reading": "トクイ", - "meaning": "triumph, prosperity, pride, one's strong point, one's forte, one's specialty, frequent customer (client, etc.)" - }, - { - "example": "拾得", - "reading": "シュウトク", - "meaning": "finding (lost property), picking up" - }, - { - "example": "体得", - "reading": "タイトク", - "meaning": "mastery, learning through experience, realization, realisation, comprehension" - } - ], - "kunyomiExamples": [ - { - "example": "得る", - "reading": "える", - "meaning": "to get, to earn, to acquire, to procure, to gain, to secure, to attain, to obtain, to win, to understand, to comprehend, to receive something undesirable (e.g. a punishment), to get (ill), to be able to ..., can ..." - }, - { - "example": "得る", - "reading": "うる", - "meaning": "to be able to ..., can ..., to get, to acquire, to obtain, to procure, to earn, to win, to gain, to secure, to attain" - }, - { - "example": "得撫草", - "reading": "うるっぷそう", - "meaning": "weaselsnout (Lagotis glauca)" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "一", - "寸", - "彳", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24471_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f97.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f97.gif", - "uri": "http://jisho.org/search/%E5%BE%97%23kanji" - }, - { - "query": "毒", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1419", - "strokeCount": 8, - "meaning": "poison, virus, venom, germ, harm, injury, spite", - "kunyomi": [], - "onyomi": [ - "ドク" - ], - "onyomiExamples": [ - { - "example": "毒", - "reading": "ドク", - "meaning": "poison, toxicant, harm, evil influence, ill will, spite, malice, abusive language" - }, - { - "example": "毒ガス", - "reading": "ドクガス", - "meaning": "poison gas" - }, - { - "example": "消毒", - "reading": "ショウドク", - "meaning": "disinfection, sterilization, sterilisation" - }, - { - "example": "防毒", - "reading": "ボウドク", - "meaning": "gasproofing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "毋", - "forms": [ - "母", - "⺟" - ], - "meaning": "mother, do not" - }, - "parts": [ - "二", - "亠", - "土", - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27602_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bd2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bd2.gif", - "uri": "http://jisho.org/search/%E6%AF%92%23kanji" - }, - { - "query": "独", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "365", - "strokeCount": 9, - "meaning": "single, alone, spontaneously, Germany", - "kunyomi": [ - "ひと.り" - ], - "onyomi": [ - "ドク", - "トク" - ], - "onyomiExamples": [ - { - "example": "独", - "reading": "ドク", - "meaning": "Germany" - }, - { - "example": "独裁", - "reading": "ドクサイ", - "meaning": "dictatorship, despotism" - }, - { - "example": "東独", - "reading": "トウドク", - "meaning": "East Germany (1949-1990)" - }, - { - "example": "西独", - "reading": "セイドク", - "meaning": "West Germany (1949-1990)" - } - ], - "kunyomiExamples": [ - { - "example": "一人", - "reading": "ひとり", - "meaning": "one person, being alone, being by oneself, being single, being unmarried, by oneself, alone, just, only, simply" - }, - { - "example": "一人歩き", - "reading": "ひとりあるき", - "meaning": "taking on a life of its own (of a rumour, etc.), walking by oneself, talking a walk by oneself, walking unaided, being able to walk without help, standing on one's own feet, being independent, taking care of oneself" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "犯", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29420_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072ec.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72ec.gif", - "uri": "http://jisho.org/search/%E7%8B%AC%23kanji" - }, - { - "query": "任", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "217", - "strokeCount": 6, - "meaning": "responsibility, duty, term, entrust to, appoint", - "kunyomi": [ - "まか.せる", - "まか.す" - ], - "onyomi": [ - "ニン" - ], - "onyomiExamples": [ - { - "example": "任", - "reading": "ニン", - "meaning": "obligation, duty, charge, responsibility" - }, - { - "example": "任意", - "reading": "ニンイ", - "meaning": "optional, voluntary, arbitrary, random, discretionary, facultative, spontaneous, any, arbitrary" - }, - { - "example": "再任", - "reading": "サイニン", - "meaning": "reappointment" - }, - { - "example": "在任", - "reading": "ザイニン", - "meaning": "being in office" - } - ], - "kunyomiExamples": [ - { - "example": "任せる", - "reading": "まかせる", - "meaning": "to entrust (e.g. a task) to another, to leave to, to passively leave to someone else's facilities, to leave to take its natural course, to continue (something) in a natural fashion (without particular aim), to rely fully on one's (full strength, great ability, long time taken) to get something done" - }, - { - "example": "任す", - "reading": "まかす", - "meaning": "to entrust, to leave to a person" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "化", - "士", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20219_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04efb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4efb.gif", - "uri": "http://jisho.org/search/%E4%BB%BB%23kanji" - }, - { - "query": "燃", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "948", - "strokeCount": 16, - "meaning": "burn, blaze, glow", - "kunyomi": [ - "も.える", - "も.やす", - "も.す" - ], - "onyomi": [ - "ネン" - ], - "onyomiExamples": [ - { - "example": "燃費", - "reading": "ネンピ", - "meaning": "fuel consumption, gas mileage" - }, - { - "example": "燃焼", - "reading": "ネンショウ", - "meaning": "burning, combustion" - }, - { - "example": "不燃", - "reading": "フネン", - "meaning": "incombustibility" - }, - { - "example": "可燃", - "reading": "カネン", - "meaning": "inflammable, flammable, combustible, burnable" - } - ], - "kunyomiExamples": [ - { - "example": "燃える", - "reading": "もえる", - "meaning": "to burn, to get fired up" - }, - { - "example": "燃えるゴミ", - "reading": "もえるゴミ", - "meaning": "burnable garbage, burnable waste" - }, - { - "example": "燃やす", - "reading": "もやす", - "meaning": "to burn, to burn with (emotion, feeling), to be fired up" - }, - { - "example": "燃やす", - "reading": "もやす", - "meaning": "to burn, to burn with (emotion, feeling), to be fired up" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "夕", - "杰", - "火", - "犬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29123_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/071c3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/71c3.gif", - "uri": "http://jisho.org/search/%E7%87%83%23kanji" - }, - { - "query": "能", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "273", - "strokeCount": 10, - "meaning": "ability, talent, skill, capacity", - "kunyomi": [ - "よ.く", - "あた.う" - ], - "onyomi": [ - "ノウ" - ], - "onyomiExamples": [ - { - "example": "能", - "reading": "ノウ", - "meaning": "talent, gift, function, noh (theatre)" - }, - { - "example": "能楽", - "reading": "ノウガク", - "meaning": "noh play" - }, - { - "example": "有能", - "reading": "ユウノウ", - "meaning": "able, capable, competent, talented, efficient" - }, - { - "example": "芸能", - "reading": "ゲイノウ", - "meaning": "public entertainment, performing arts, accomplishments, attainments" - } - ], - "kunyomiExamples": [ - { - "example": "良く", - "reading": "よく", - "meaning": "nicely, properly, well, skillfully, skilfully, frequently, often, I'm glad that you ..., thank you for ..., (you have) quite the nerve to, I don't know how you can ..." - }, - { - "example": "良く良く", - "reading": "よくよく", - "meaning": "exceedingly, very" - }, - { - "example": "能う", - "reading": "あたう", - "meaning": "to be able (to do), to be capable (of doing)" - }, - { - "example": "能う限り", - "reading": "あたうかぎり", - "meaning": "as much as possible, as far as possible, to the best of one's abilities" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "匕", - "厶", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33021_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80fd.gif", - "uri": "http://jisho.org/search/%E8%83%BD%23kanji" - }, - { - "query": "破", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "590", - "strokeCount": 10, - "meaning": "rend, rip, tear, break, destroy, defeat, frustrate", - "kunyomi": [ - "やぶ.る", - "やぶ.れる", - "わ.れる" - ], - "onyomi": [ - "ハ" - ], - "onyomiExamples": [ - { - "example": "破", - "reading": "ハ", - "meaning": "(in gagaku or noh) middle section of a song" - }, - { - "example": "破壊", - "reading": "ハカイ", - "meaning": "destruction, disruption, (application) crash" - }, - { - "example": "大破", - "reading": "タイハ", - "meaning": "serious damage, drubbing" - }, - { - "example": "踏破", - "reading": "トウハ", - "meaning": "travelling on foot, traveling on foot, travelling all over" - } - ], - "kunyomiExamples": [ - { - "example": "破る", - "reading": "やぶる", - "meaning": "to tear, to rip, to break, to destroy, to break through (cordon, opponent's defense, etc.), to breach, to defeat, to beat, to break (e.g. silence), to disturb (e.g. peace), to shatter (e.g. dream), to disrupt, to spoil, to violate (e.g. rule), to break (e.g. promise), to infringe, to break (a record)" - }, - { - "example": "破れる", - "reading": "やぶれる", - "meaning": "to get torn, to tear, to rip, to break, to wear out, to be broken off (of negotiations, etc.), to break down, to collapse, to fall into ruin" - }, - { - "example": "割れる", - "reading": "われる", - "meaning": "to break, to be smashed, to split, to crack, to fissure, to be torn, to be divided (opinion, vote, etc.), to split (e.g. of a party), to come to light, to become clear, to be identified, to be revealed, to be distorted (of a sound), to be divisible (without a remainder), to go below a minimum" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "又", - "口", - "皮", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30772_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07834.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7834.gif", - "uri": "http://jisho.org/search/%E7%A0%B4%23kanji" - }, - { - "query": "犯", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "874", - "strokeCount": 5, - "meaning": "crime, sin, offense", - "kunyomi": [ - "おか.す" - ], - "onyomi": [ - "ハン", - "ボン" - ], - "onyomiExamples": [ - { - "example": "犯", - "reading": "ハン", - "meaning": "perpetrators of (some) crime, (some type of) crime" - }, - { - "example": "犯行", - "reading": "ハンコウ", - "meaning": "crime, criminal act, offence, offense" - }, - { - "example": "共犯", - "reading": "キョウハン", - "meaning": "complicity" - }, - { - "example": "防犯", - "reading": "ボウハン", - "meaning": "prevention of crime, security (device, camera, etc.)" - }, - { - "example": "違犯", - "reading": "イハン", - "meaning": "offense (against the law), offence, violation" - }, - { - "example": "重犯", - "reading": "ジュウハン", - "meaning": "felony, major offence, felon, old offender" - } - ], - "kunyomiExamples": [ - { - "example": "犯す", - "reading": "おかす", - "meaning": "to commit (e.g. crime), to perpetrate, to make (e.g. mistake), to break (e.g. rule), to violate, to transgress, to contravene, to rape, to violate, to ravish, to deflower" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "乙", - "卩", - "犯" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29359_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072af.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72af.gif", - "uri": "http://jisho.org/search/%E7%8A%AF%23kanji" - }, - { - "query": "判", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "197", - "strokeCount": 7, - "meaning": "judgement, signature, stamp, seal", - "kunyomi": [ - "わか.る" - ], - "onyomi": [ - "ハン", - "バン" - ], - "onyomiExamples": [ - { - "example": "判", - "reading": "ハン", - "meaning": "seal, stamp, monogram signature, judgment, judgement, size (of paper or books)" - }, - { - "example": "判決", - "reading": "ハンケツ", - "meaning": "judicial decision, judgement, judgment, sentence, decree" - }, - { - "example": "自己批判", - "reading": "ジコヒハン", - "meaning": "self-criticism" - }, - { - "example": "誤判", - "reading": "ゴハン", - "meaning": "misjudgement, misjudgment, erroneous judgement, miscarriage of justice" - }, - { - "example": "判", - "reading": "ハン", - "meaning": "seal, stamp, monogram signature, judgment, judgement, size (of paper or books)" - }, - { - "example": "司法裁判", - "reading": "シホウサイバン", - "meaning": "judicial trial" - }, - { - "example": "大判", - "reading": "オオバン", - "meaning": "large size (paper, book, etc.), ōban, large oval gold coin used in the Edo period" - } - ], - "kunyomiExamples": [ - { - "example": "分かる", - "reading": "わかる", - "meaning": "to understand, to comprehend, to grasp, to see, to get, to follow, to become clear, to be known, to be discovered, to be realized, to be realised, to be found out, I know!, I think so too!" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "二", - "刈", - "十", - "并", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21028_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05224.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5224.gif", - "uri": "http://jisho.org/search/%E5%88%A4%23kanji" - }, - { - "query": "版", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "802", - "strokeCount": 8, - "meaning": "printing block, printing plate, edition, impression, label", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "版", - "reading": "ハン", - "meaning": "edition, version, printing, impression, implementation (e.g. software), plate, block, cast, editions of a publication" - }, - { - "example": "版画", - "reading": "ハンガ", - "meaning": "woodcut, woodblock print, art print" - }, - { - "example": "図版", - "reading": "ズハン", - "meaning": "plate, illustration, figure" - }, - { - "example": "製版", - "reading": "セイハン", - "meaning": "plate-making (printing)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "片", - "meaning": "slice" - }, - "parts": [ - "厂", - "又", - "片" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29256_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07248.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7248.gif", - "uri": "http://jisho.org/search/%E7%89%88%23kanji" - }, - { - "query": "比", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "329", - "strokeCount": 4, - "meaning": "compare, race, ratio, Philippines", - "kunyomi": [ - "くら.べる" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "比", - "reading": "ヒ", - "meaning": "ratio, proportion, match, equal, explicit comparison (style of the Shi Jing), Philippines, in comparison with ..." - }, - { - "example": "比較", - "reading": "ヒカク", - "meaning": "comparison" - }, - { - "example": "口径比", - "reading": "コウケイヒ", - "meaning": "aperture ratio (inverse of the f-number), relative aperture" - }, - { - "example": "正比", - "reading": "セイヒ", - "meaning": "direct ratio" - } - ], - "kunyomiExamples": [ - { - "example": "比べる", - "reading": "くらべる", - "meaning": "to compare, to make a comparison, to compete, to vie" - } - ], - "radical": { - "symbol": "比", - "meaning": "compare, compete" - }, - "parts": [ - "比" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27604_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bd4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bd4.gif", - "uri": "http://jisho.org/search/%E6%AF%94%23kanji" - }, - { - "query": "肥", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1469", - "strokeCount": 8, - "meaning": "fertilizer, get fat, fertile, manure, pamper", - "kunyomi": [ - "こ.える", - "こえ", - "こ.やす", - "こ.やし", - "ふと.る" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "肥満", - "reading": "ヒマン", - "meaning": "corpulence, fatness, obesity" - }, - { - "example": "肥大", - "reading": "ヒダイ", - "meaning": "swelling, enlargement, becoming fat, hypertrophy" - }, - { - "example": "堆肥", - "reading": "タイヒ", - "meaning": "compost, manure" - }, - { - "example": "追肥", - "reading": "ツイヒ", - "meaning": "(adding) extra fertilizer or manure (fertiliser)" - } - ], - "kunyomiExamples": [ - { - "example": "肥える", - "reading": "こえる", - "meaning": "to grow fat, to gain weight, to put on weight, to grow fertile, to be refined (palate), to be discerning (eye, ear), to become rich, to become successful" - }, - { - "example": "肥", - "reading": "こえ", - "meaning": "manure, night soil, dung, fertiliser, fertilizer" - }, - { - "example": "肥える", - "reading": "こえる", - "meaning": "to grow fat, to gain weight, to put on weight, to grow fertile, to be refined (palate), to be discerning (eye, ear), to become rich, to become successful" - }, - { - "example": "肥やす", - "reading": "こやす", - "meaning": "to fertilize, to fertilise, to manure, to enrich" - }, - { - "example": "肥やし", - "reading": "こやし", - "meaning": "manure, night soil, dung, fertiliser, fertilizer, something that will help one develop in the future" - }, - { - "example": "肥やし桶", - "reading": "こやしおけ", - "meaning": "night soil pail" - }, - { - "example": "太る", - "reading": "ふとる", - "meaning": "to put on weight, to gain weight, to grow fat, to get stout" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "巴", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32933_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080a5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80a5.gif", - "uri": "http://jisho.org/search/%E8%82%A5%23kanji" - }, - { - "query": "非", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "472", - "strokeCount": 8, - "meaning": "un-, mistake, negative, injustice, non-", - "kunyomi": [ - "あら.ず" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "非", - "reading": "ヒ", - "meaning": "fault, error, mistake, going poorly, being disadvantageous, being unfavorable, un-, non-, an-" - }, - { - "example": "非行", - "reading": "ヒコウ", - "meaning": "delinquency, misconduct" - }, - { - "example": "是非是非", - "reading": "ゼヒゼヒ", - "meaning": "certainly, by all means" - }, - { - "example": "理非", - "reading": "リヒ", - "meaning": "right and wrong" - } - ], - "kunyomiExamples": [ - { - "example": "非ず", - "reading": "あらず", - "meaning": "it is not so, no, never mind" - }, - { - "example": "非ずんば", - "reading": "あらずんば", - "meaning": "if not" - } - ], - "radical": { - "symbol": "非", - "meaning": "wrong" - }, - "parts": [ - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38750_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0975e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/975e.gif", - "uri": "http://jisho.org/search/%E9%9D%9E%23kanji" - }, - { - "query": "費", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N3", - "newspaperFrequencyRank": "321", - "strokeCount": 12, - "meaning": "expense, cost, spend, consume, waste", - "kunyomi": [ - "つい.やす", - "つい.える" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "費", - "reading": "ヒ", - "meaning": "cost, expense" - }, - { - "example": "費用", - "reading": "ヒヨウ", - "meaning": "cost, expense" - }, - { - "example": "固定費", - "reading": "コテイヒ", - "meaning": "fixed cost, fixed expense" - }, - { - "example": "交際費", - "reading": "コウサイヒ", - "meaning": "entertainment expenses" - } - ], - "kunyomiExamples": [ - { - "example": "費やす", - "reading": "ついやす", - "meaning": "to spend, to expend, to consume, to waste, to squander, to throw away, to devote" - }, - { - "example": "費える", - "reading": "ついえる", - "meaning": "to be used up (e.g. one's savings), to dwindle away, to be wasted (time, effort, etc.)" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "弓", - "目", - "貝", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36027_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cbb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cbb.gif", - "uri": "http://jisho.org/search/%E8%B2%BB%23kanji" - }, - { - "query": "備", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "356", - "strokeCount": 12, - "meaning": "equip, provision, preparation", - "kunyomi": [ - "そな.える", - "そな.わる", - "つぶさ.に" - ], - "onyomi": [ - "ビ" - ], - "onyomiExamples": [ - { - "example": "備蓄", - "reading": "ビチク", - "meaning": "stockpile, reserves, storing, stocking up, laying in (supplies)" - }, - { - "example": "備考", - "reading": "ビコウ", - "meaning": "note (for reference), remarks, N.B." - }, - { - "example": "配備", - "reading": "ハイビ", - "meaning": "deployment, disposition, posting, stationing" - }, - { - "example": "無防備", - "reading": "ムボウビ", - "meaning": "defenseless, defenceless, unprotected, vulnerable" - } - ], - "kunyomiExamples": [ - { - "example": "備える", - "reading": "そなえる", - "meaning": "to furnish with, to equip with, to provide, to install, to prepare for, to make preparations for, to make provision for, to possess (all that is needed), to be endowed with, to be equipped with, to be born with, to have since birth" - }, - { - "example": "備わる", - "reading": "そなわる", - "meaning": "to be furnished with, to be provided with, to be equipped with, to be possessed of, to be endowed with, to be gifted with, to be among, to be one of" - }, - { - "example": "具に", - "reading": "つぶさに", - "meaning": "in detail, with great care, completely, fully" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "厂", - "用", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20633_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05099.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5099.gif", - "uri": "http://jisho.org/search/%E5%82%99%23kanji" - }, - { - "query": "評", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "454", - "strokeCount": 12, - "meaning": "evaluate, criticism, comment", - "kunyomi": [], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "評", - "reading": "ヒョウ", - "meaning": "criticism, commentary, review" - }, - { - "example": "評価", - "reading": "ヒョウカ", - "meaning": "valuation, appraisal, evaluation, assessment, estimation, rating, judging, appreciation, recognition, acknowledgement, rating highly, praising" - }, - { - "example": "総評", - "reading": "ソウヒョウ", - "meaning": "general comment, Sohyo (General Council of Trade Unions of Japan)" - }, - { - "example": "大好評", - "reading": "ダイコウヒョウ", - "meaning": "very highly commended, highly lauded, very well-received, very popular" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "二", - "并", - "言", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35413_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a55.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a55.gif", - "uri": "http://jisho.org/search/%E8%A9%95%23kanji" - }, - { - "query": "貧", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1211", - "strokeCount": 11, - "meaning": "poverty, poor", - "kunyomi": [ - "まず.しい" - ], - "onyomi": [ - "ヒン", - "ビン" - ], - "onyomiExamples": [ - { - "example": "貧", - "reading": "ヒン", - "meaning": "poverty, penury, want, need, insufficiency, shortage, deficiency" - }, - { - "example": "貧血", - "reading": "ヒンケツ", - "meaning": "anemia, anaemia" - }, - { - "example": "清貧", - "reading": "セイヒン", - "meaning": "honourable poverty, honorable poverty" - }, - { - "example": "極貧", - "reading": "ゴクヒン", - "meaning": "destitution" - }, - { - "example": "貧乏", - "reading": "ビンボウ", - "meaning": "poverty-stricken, destitute, poor, penurious" - }, - { - "example": "貧乏人", - "reading": "ビンボウニン", - "meaning": "poor person, pauper, the poor, the indigent" - } - ], - "kunyomiExamples": [ - { - "example": "貧しい", - "reading": "まずしい", - "meaning": "poor, needy, lacking (quantity and quality-wise), poor, scanty, skimpy, slight, inadequate" - }, - { - "example": "貧しい家", - "reading": "まずしいいえ", - "meaning": "poor family" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "刀", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36007_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ca7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ca7.gif", - "uri": "http://jisho.org/search/%E8%B2%A7%23kanji" - }, - { - "query": "布", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "877", - "strokeCount": 5, - "meaning": "linen, cloth, spread, distribute", - "kunyomi": [ - "ぬの", - "し.く", - "きれ" - ], - "onyomi": [ - "フ", - "ホ" - ], - "onyomiExamples": [ - { - "example": "布", - "reading": "ヌノ", - "meaning": "cloth, bujian (spade-shaped bronze coin of ancient China)" - }, - { - "example": "布教", - "reading": "フキョウ", - "meaning": "propagation (e.g. a religion), proselytizing, missionary work" - }, - { - "example": "麻布", - "reading": "アサヌノ", - "meaning": "hemp cloth, linen" - }, - { - "example": "公布", - "reading": "コウフ", - "meaning": "official proclamation, announcement, promulgation (e.g. of regulations)" - }, - { - "example": "布衣", - "reading": "ホイ", - "meaning": "linen kariginu, (during the Edo period) plain kariginu" - }, - { - "example": "布衣始", - "reading": "ホウイハジメ", - "meaning": "ceremony in which an abdicated emperor puts on informal court clothes (e.g. kariginu, eboshi)" - } - ], - "kunyomiExamples": [ - { - "example": "布", - "reading": "ぬの", - "meaning": "cloth, bujian (spade-shaped bronze coin of ancient China)" - }, - { - "example": "布地", - "reading": "ぬのじ", - "meaning": "cloth, fabric" - }, - { - "example": "麻布", - "reading": "あさぬの", - "meaning": "hemp cloth, linen" - }, - { - "example": "磨き布", - "reading": "みがきぬの", - "meaning": "polishing cloth" - }, - { - "example": "敷く", - "reading": "しく", - "meaning": "to spread out, to lay out, to take a position, to impose widely (e.g. over a city)" - }, - { - "example": "布地", - "reading": "ぬのじ", - "meaning": "cloth, fabric" - }, - { - "example": "ボロ切れ", - "reading": "ボロきれ", - "meaning": "old cloth, rag" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "ノ", - "一", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24067_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e03.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e03.gif", - "uri": "http://jisho.org/search/%E5%B8%83%23kanji" - }, - { - "query": "婦", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "671", - "strokeCount": 11, - "meaning": "lady, woman, wife, bride", - "kunyomi": [ - "よめ" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "婦", - "reading": "フ", - "meaning": "married woman, woman, lady" - }, - { - "example": "婦女暴行", - "reading": "フジョボウコウ", - "meaning": "sexual assault (of a woman), rape" - }, - { - "example": "保健婦", - "reading": "ホケンフ", - "meaning": "district health nurse, public health nurse" - }, - { - "example": "老婦", - "reading": "ロウフ", - "meaning": "old woman" - } - ], - "kunyomiExamples": [ - { - "example": "嫁", - "reading": "よめ", - "meaning": "wife, bride, (one's) daughter-in-law" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ヨ", - "冖", - "女", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23142_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a66.gif", - "uri": "http://jisho.org/search/%E5%A9%A6%23kanji" - }, - { - "query": "武", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "387", - "strokeCount": 8, - "meaning": "warrior, military, chivalry, arms", - "kunyomi": [ - "たけ", - "たけ.し" - ], - "onyomi": [ - "ブ", - "ム" - ], - "onyomiExamples": [ - { - "example": "武", - "reading": "ブ", - "meaning": "the art of war, martial arts, military arts, military force, the sword, valor, bravery, military officer, military man" - }, - { - "example": "武器", - "reading": "ブキ", - "meaning": "weapon, arms, ordnance, weapon (something used to gain an advantage), asset" - }, - { - "example": "文武", - "reading": "ブンブ", - "meaning": "literary and military arts, the pen and the sword" - }, - { - "example": "威武", - "reading": "イブ", - "meaning": "authority and force" - }, - { - "example": "武者", - "reading": "ムシャ", - "meaning": "warrior" - }, - { - "example": "武者修行", - "reading": "ムシャシュギョウ", - "meaning": "traveling about to gain skill in combat (travelling)" - }, - { - "example": "建武", - "reading": "ケンム", - "meaning": "Kenmu era (of unified Japan) (1334.1.29-1336.2.29), Kenmu era (of the Northern Court) (1336.2.29-1338.8.28)" - }, - { - "example": "玄武", - "reading": "ゲンブ", - "meaning": "Black Tortoise (god said to rule over the northern heavens), seven mansions (Chinese constellations) of the northern heavens" - } - ], - "kunyomiExamples": [ - { - "example": "武し", - "reading": "たけし", - "meaning": "brave" - }, - { - "example": "武し", - "reading": "たけし", - "meaning": "brave" - } - ], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "弋", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27494_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b66.gif", - "uri": "http://jisho.org/search/%E6%AD%A6%23kanji" - }, - { - "query": "復", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "438", - "strokeCount": 12, - "meaning": "restore, return to, revert, resume", - "kunyomi": [ - "また" - ], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "復旧", - "reading": "フッキュウ", - "meaning": "restoration, restitution, rehabilitation" - }, - { - "example": "復員", - "reading": "フクイン", - "meaning": "demobilization, demobilisation, repatriation" - }, - { - "example": "障害回復", - "reading": "ショウガイカイフク", - "meaning": "fault recovery" - }, - { - "example": "後退回復", - "reading": "コウタイカイフク", - "meaning": "backward (file) recovery" - } - ], - "kunyomiExamples": [ - { - "example": "又", - "reading": "また", - "meaning": "again, once more, once again, another time, some other time, also, too, as well, likewise, on the other hand, while, and, in addition, besides, moreover, furthermore, or, otherwise, really, how, (what, why) on earth, indirect" - }, - { - "example": "又々", - "reading": "またまた", - "meaning": "again (and again), once again, yet again, (there you go) again" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "夂", - "彳", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24489_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fa9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fa9.gif", - "uri": "http://jisho.org/search/%E5%BE%A9%23kanji" - }, - { - "query": "複", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "915", - "strokeCount": 14, - "meaning": "duplicate, double, compound, multiple", - "kunyomi": [], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "複", - "reading": "フク", - "meaning": "compound, composite, multiple, re-, bi-, doubles (tennis, badminton, etc.), place bet (in horse racing, etc.), show bet, bet that predicts a top 2 or top 3 finish (depending on number of horses, etc. in race)" - }, - { - "example": "複合", - "reading": "フクゴウ", - "meaning": "composite, combined, complex" - }, - { - "example": "重複", - "reading": "チョウフク", - "meaning": "duplication, repetition, overlapping, redundancy, restoration" - }, - { - "example": "遺伝子重複", - "reading": "イデンシジュウフク", - "meaning": "gene duplication" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "乞", - "初", - "夂", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35079_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08907.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8907.gif", - "uri": "http://jisho.org/search/%E8%A4%87%23kanji" - }, - { - "query": "仏", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "819", - "strokeCount": 4, - "meaning": "Buddha, the dead, France", - "kunyomi": [ - "ほとけ" - ], - "onyomi": [ - "ブツ", - "フツ" - ], - "onyomiExamples": [ - { - "example": "仏", - "reading": "ブツ", - "meaning": "Buddha, Buddhism" - }, - { - "example": "仏像", - "reading": "ブツゾウ", - "meaning": "statue of Buddha, image of Buddha, Buddhist statue, Buddhist image" - }, - { - "example": "石仏", - "reading": "セキブツ", - "meaning": "stone Buddhist image, unemotional person, taciturn person" - }, - { - "example": "成仏", - "reading": "ジョウブツ", - "meaning": "attaining Buddhahood, becoming a Buddha, entering Nirvana, going to heaven, resting in peace, dying (peacefully)" - }, - { - "example": "仏", - "reading": "フツ", - "meaning": "France, French language" - }, - { - "example": "仏語", - "reading": "フツゴ", - "meaning": "French (language)" - }, - { - "example": "渡仏", - "reading": "トフツ", - "meaning": "going to France" - }, - { - "example": "米仏", - "reading": "ベイフツ", - "meaning": "America and France, American-French" - } - ], - "kunyomiExamples": [ - { - "example": "仏", - "reading": "ほとけ", - "meaning": "Buddha, Shakyamuni, Buddhist image, figure of Buddha, the dead, dead person, departed soul, merciful person" - }, - { - "example": "仏顔", - "reading": "ほとけがお", - "meaning": "gentle face" - }, - { - "example": "神仏", - "reading": "しんぶつ", - "meaning": "gods and Buddha, Shinto and Buddhism" - }, - { - "example": "笑い仏", - "reading": "わらいほとけ", - "meaning": "smiling Buddha (statue), laughing Buddha" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "厶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20175_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ecf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ecf.gif", - "uri": "http://jisho.org/search/%E4%BB%8F%23kanji" - }, - { - "query": "粉", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1484", - "strokeCount": 10, - "meaning": "flour, powder, dust", - "kunyomi": [ - "デシメートル", - "こ", - "こな" - ], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "粉末", - "reading": "フンマツ", - "meaning": "fine powder" - }, - { - "example": "粉飾", - "reading": "フンショク", - "meaning": "embellishment (e.g. of a story), ornamentation, decoration, putting on makeup" - }, - { - "example": "米粉", - "reading": "コメコ", - "meaning": "rice flour" - }, - { - "example": "製粉", - "reading": "セイフン", - "meaning": "milling, grinding into flour" - } - ], - "kunyomiExamples": [ - { - "example": "粉", - "reading": "こな", - "meaning": "flour, meal, powder, dust" - }, - { - "example": "粉ミルク", - "reading": "こなミルク", - "meaning": "milk powder, baby formula" - }, - { - "example": "火の粉", - "reading": "ひのこ", - "meaning": "sparks" - }, - { - "example": "薄力粉", - "reading": "はくりきこ", - "meaning": "cake flour, pastry flour" - }, - { - "example": "粉", - "reading": "こな", - "meaning": "flour, meal, powder, dust" - }, - { - "example": "粉ミルク", - "reading": "こなミルク", - "meaning": "milk powder, baby formula" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "ハ", - "刀", - "并", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31881_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c89.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c89.gif", - "uri": "http://jisho.org/search/%E7%B2%89%23kanji" - }, - { - "query": "編", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "591", - "strokeCount": 15, - "meaning": "compilation, knit, plait, braid, twist, editing, completed poem, part of a book", - "kunyomi": [ - "あ.む", - "-あ.み" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "編", - "reading": "ヘン", - "meaning": "compilation (of a text), editing, volume (of a text), completed literary work" - }, - { - "example": "編者", - "reading": "ヘンシャ", - "meaning": "editor, compiler" - }, - { - "example": "再編", - "reading": "サイヘン", - "meaning": "reorganization, reorganisation, reshuffle" - }, - { - "example": "改編", - "reading": "カイヘン", - "meaning": "reorganization, reorganisation" - } - ], - "kunyomiExamples": [ - { - "example": "編む", - "reading": "あむ", - "meaning": "to knit, to plait, to braid, to compile (anthology, dictionary, etc.), to edit" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "一", - "冂", - "冊", - "小", - "尸", - "幺", - "廾", - "戸", - "糸", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32232_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07de8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7de8.gif", - "uri": "http://jisho.org/search/%E7%B7%A8%23kanji" - }, - { - "query": "弁", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "619", - "strokeCount": 5, - "meaning": "valve, petal, braid, speech, dialect, discrimination, dispose of, distinguish, conical cap", - "kunyomi": [ - "かんむり", - "わきま.える", - "わ.ける", - "はなびら", - "あらそ.う" - ], - "onyomi": [ - "ベン", - "ヘン" - ], - "onyomiExamples": [ - { - "example": "弁", - "reading": "ベン", - "meaning": "speech, tongue, talk, eloquence, dialect, brogue, accent, bento, Japanese box lunch, petal, valve, Oversight Department, division of the daijokan under the ritsuryo system responsible for controlling central and provincial governmental offices" - }, - { - "example": "弁解", - "reading": "ベンカイ", - "meaning": "explanation (e.g. for one's actions), excuse, justification, defense, defence" - }, - { - "example": "熱弁", - "reading": "ネツベン", - "meaning": "impassioned speech, fervent speech" - }, - { - "example": "強弁", - "reading": "キョウベン", - "meaning": "insisting (unreasonably), obstinate insistence" - } - ], - "kunyomiExamples": [ - { - "example": "弁える", - "reading": "わきまえる", - "meaning": "to discern (e.g. right from wrong), to discriminate, to distinguish, to know (manners, one's place, etc.), to understand, to bear in mind" - } - ], - "radical": { - "symbol": "廾", - "meaning": "two hands, twenty" - }, - "parts": [ - "厶", - "廾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24321_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f01.gif", - "uri": "http://jisho.org/search/%E5%BC%81%23kanji" - }, - { - "query": "保", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "146", - "strokeCount": 9, - "meaning": "protect, guarantee, keep, preserve, sustain, support", - "kunyomi": [ - "たも.つ" - ], - "onyomi": [ - "ホ", - "ホウ" - ], - "onyomiExamples": [ - { - "example": "保育", - "reading": "ホイク", - "meaning": "nursing, nurturing, rearing, lactation, suckling" - }, - { - "example": "保安", - "reading": "ホアン", - "meaning": "peace preservation, security, safety" - }, - { - "example": "留保", - "reading": "リュウホ", - "meaning": "reserving, withholding" - }, - { - "example": "生保", - "reading": "セイホ", - "meaning": "life insurance, livelihood protection, public assistance, welfare" - }, - { - "example": "保する", - "reading": "ホスル", - "meaning": "to guarantee" - }, - { - "example": "保安", - "reading": "ホウアン", - "meaning": "Hōan era (1120.4.10-1124.4.3), Hoan era" - }, - { - "example": "永保", - "reading": "エイホウ", - "meaning": "Eihō era (1081.2.10-1084.2.7), Eiho era" - }, - { - "example": "太保", - "reading": "タイホウ", - "meaning": "Grand Protector (lowest of the top three civil positions of the Zhou Dynasty), Minister of the Right (official in Nara and Heian periods)" - } - ], - "kunyomiExamples": [ - { - "example": "保つ", - "reading": "たもつ", - "meaning": "to keep, to preserve, to hold, to retain, to maintain, to sustain, to last, to endure, to keep well (food), to wear well, to be durable" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "口", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20445_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fdd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fdd.gif", - "uri": "http://jisho.org/search/%E4%BF%9D%23kanji" - }, - { - "query": "墓", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1337", - "strokeCount": 13, - "meaning": "grave, tomb", - "kunyomi": [ - "はか" - ], - "onyomi": [ - "ボ" - ], - "onyomiExamples": [ - { - "example": "墓石", - "reading": "ボセキ", - "meaning": "tombstone, gravestone" - }, - { - "example": "墓参り", - "reading": "ハカマイリ", - "meaning": "visit to a grave" - }, - { - "example": "陵墓", - "reading": "リョウボ", - "meaning": "imperial tomb, imperial mausoleum" - }, - { - "example": "周堤墓", - "reading": "シュウテイボ", - "meaning": "grave-site with circular embankment (Jomon period)" - } - ], - "kunyomiExamples": [ - { - "example": "墓", - "reading": "はか", - "meaning": "gravesite, tomb" - }, - { - "example": "墓石", - "reading": "ぼせき", - "meaning": "tombstone, gravestone" - }, - { - "example": "御墓", - "reading": "みはか", - "meaning": "imperial tomb" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "大", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22675_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05893.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5893.gif", - "uri": "http://jisho.org/search/%E5%A2%93%23kanji" - }, - { - "query": "報", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "167", - "strokeCount": 12, - "meaning": "report, news, reward, retribution", - "kunyomi": [ - "むく.いる" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "報", - "reading": "ホウ", - "meaning": "information, news, report, reward, retribution" - }, - { - "example": "報告", - "reading": "ホウコク", - "meaning": "report, information" - }, - { - "example": "会報", - "reading": "カイホウ", - "meaning": "bulletin (issued by a society), report, newsletter" - }, - { - "example": "注意報", - "reading": "チュウイホウ", - "meaning": "warning (e.g. for a storm), advisory" - } - ], - "kunyomiExamples": [ - { - "example": "報いる", - "reading": "むくいる", - "meaning": "to reward, to recompense, to repay, to retaliate, to get revenge" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "亠", - "十", - "卩", - "又", - "土", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22577_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05831.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5831.gif", - "uri": "http://jisho.org/search/%E5%A0%B1%23kanji" - }, - { - "query": "豊", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "762", - "strokeCount": 13, - "meaning": "bountiful, excellent, rich", - "kunyomi": [ - "ゆた.か", - "とよ" - ], - "onyomi": [ - "ホウ", - "ブ" - ], - "onyomiExamples": [ - { - "example": "豊富", - "reading": "ホウフ", - "meaning": "abundant, plentiful, rich, ample" - }, - { - "example": "豊作", - "reading": "ホウサク", - "meaning": "abundant harvest, bumper crop" - }, - { - "example": "両豊", - "reading": "リョウホウ", - "meaning": "Ryōhō (the two former provinces of Buzen and Bungo)" - }, - { - "example": "二豊", - "reading": "ニホウ", - "meaning": "Nihō (the two former provinces of Buzen and Bungo)" - }, - { - "example": "豊饒", - "reading": "ホウジョウ", - "meaning": "fertile, productive, fruitful" - }, - { - "example": "豊山派", - "reading": "ブザンハ", - "meaning": "Buzan sect (of Shingi Shingon Buddhism)" - } - ], - "kunyomiExamples": [ - { - "example": "豊か", - "reading": "ゆたか", - "meaning": "abundant, wealthy, plentiful, rich, affluent, very, extremely, full of, great" - }, - { - "example": "豊かの海", - "reading": "ゆたかのうみ", - "meaning": "Mare Fecunditatis (lunar mare), Sea of Fertility" - }, - { - "example": "豊葦原瑞穂国", - "reading": "とよあしはらのみずほのくに", - "meaning": "Japan" - }, - { - "example": "豊受大神宮", - "reading": "とようけだいじんぐう", - "meaning": "Toyouke Shrine (the outer shrine of Ise Shrine), Toyuke Shrine" - } - ], - "radical": { - "symbol": "豆", - "meaning": "bean" - }, - "parts": [ - "一", - "口", - "并", - "日", - "豆", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35914_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c4a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c4a.gif", - "uri": "http://jisho.org/search/%E8%B1%8A%23kanji" - }, - { - "query": "防", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "331", - "strokeCount": 7, - "meaning": "ward off, defend, protect, resist", - "kunyomi": [ - "ふせ.ぐ" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "防衛施設庁", - "reading": "ボウエイシセツチョウ", - "meaning": "(Japanese) Defense Facilities Administration Agency (Defence)" - }, - { - "example": "防衛", - "reading": "ボウエイ", - "meaning": "defense, defence, protection" - }, - { - "example": "砂防", - "reading": "サボウ", - "meaning": "erosion control" - }, - { - "example": "攻防", - "reading": "コウボウ", - "meaning": "offense and defense, offence and defence" - } - ], - "kunyomiExamples": [ - { - "example": "防ぐ", - "reading": "ふせぐ", - "meaning": "to defend against, to protect against, to prevent, to avert, to avoid" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "方", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38450_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09632.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9632.gif", - "uri": "http://jisho.org/search/%E9%98%B2%23kanji" - }, - { - "query": "貿", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "652", - "strokeCount": 12, - "meaning": "trade, exchange", - "kunyomi": [], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "貿易", - "reading": "ボウエキ", - "meaning": "trade (foreign)" - }, - { - "example": "貿易赤字", - "reading": "ボウエキアカジ", - "meaning": "trade deficit" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "刀", - "厶", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36031_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cbf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cbf.gif", - "uri": "http://jisho.org/search/%E8%B2%BF%23kanji" - }, - { - "query": "暴", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "692", - "strokeCount": 15, - "meaning": "outburst, rave, fret, force, violence, cruelty, outrage", - "kunyomi": [ - "あば.く", - "あば.れる" - ], - "onyomi": [ - "ボウ", - "バク" - ], - "onyomiExamples": [ - { - "example": "暴", - "reading": "ボウ", - "meaning": "violence, force" - }, - { - "example": "暴挙", - "reading": "ボウキョ", - "meaning": "violence, reckless action, (an) outrage" - }, - { - "example": "無謀", - "reading": "ムボウ", - "meaning": "reckless, thoughtless, rash, ill-advised, impulsive, mad (e.g. scheme)" - }, - { - "example": "凶暴", - "reading": "キョウボウ", - "meaning": "ferocious, brutal, atrocious, savage, barbarous" - }, - { - "example": "暴露", - "reading": "バクロ", - "meaning": "disclosure, exposure, revelation" - }, - { - "example": "暴露戦術", - "reading": "バクロセンジュツ", - "meaning": "exposure tactics, muckraking tactics" - } - ], - "kunyomiExamples": [ - { - "example": "暴く", - "reading": "あばく", - "meaning": "to disclose, to divulge, to expose, to open (and rob) a grave" - }, - { - "example": "暴れる", - "reading": "あばれる", - "meaning": "to act violently, to rage, to struggle, to be riotous" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ハ", - "一", - "二", - "井", - "日", - "水", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26292_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066b4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66b4.gif", - "uri": "http://jisho.org/search/%E6%9A%B4%23kanji" - }, - { - "query": "脈", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1477", - "strokeCount": 10, - "meaning": "vein, pulse, hope", - "kunyomi": [ - "すじ" - ], - "onyomi": [ - "ミャク" - ], - "onyomiExamples": [ - { - "example": "脈", - "reading": "ミャク", - "meaning": "pulse, vein, chain (of mountains, etc.), hope, thread (of an argument)" - }, - { - "example": "脈拍", - "reading": "ミャクハク", - "meaning": "pulse, pulse rate, pulsation, stroke of pulse" - }, - { - "example": "大動脈", - "reading": "ダイドウミャク", - "meaning": "aorta, important traffic route" - }, - { - "example": "動脈", - "reading": "ドウミャク", - "meaning": "artery" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "厂", - "斤", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33032_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08108.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8108.gif", - "uri": "http://jisho.org/search/%E8%84%88%23kanji" - }, - { - "query": "務", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "111", - "strokeCount": 11, - "meaning": "task, duties", - "kunyomi": [ - "つと.める" - ], - "onyomi": [ - "ム" - ], - "onyomiExamples": [ - { - "example": "務所", - "reading": "ムショ", - "meaning": "prison" - }, - { - "example": "ムショ上がり", - "reading": "ムショアガリ", - "meaning": "former prisoner" - }, - { - "example": "政務", - "reading": "セイム", - "meaning": "government affairs" - }, - { - "example": "外務", - "reading": "ガイム", - "meaning": "foreign affairs" - } - ], - "kunyomiExamples": [ - { - "example": "勤める", - "reading": "つとめる", - "meaning": "to work (for), to be employed (at), to serve (in), to serve (as), to act (as), to fill (the position of), to play the role (of), to conduct a religious service" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "夂", - "矛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21209_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052d9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52d9.gif", - "uri": "http://jisho.org/search/%E5%8B%99%23kanji" - }, - { - "query": "夢", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "943", - "strokeCount": 13, - "meaning": "dream, vision, illusion", - "kunyomi": [ - "ゆめ", - "ゆめ.みる", - "くら.い" - ], - "onyomi": [ - "ム", - "ボウ" - ], - "onyomiExamples": [ - { - "example": "夢中", - "reading": "ムチュウ", - "meaning": "absorbed in, immersed in, crazy about, obsessed with, devoted to, forgetting oneself, daze, trance, ecstasy, delirium, within a dream, while dreaming" - }, - { - "example": "夢想", - "reading": "ムソウ", - "meaning": "dream, vision, reverie" - }, - { - "example": "同床異夢", - "reading": "ドウショウイム", - "meaning": "cohabiting but living in different worlds" - }, - { - "example": "怪夢", - "reading": "カイム", - "meaning": "strange dream" - } - ], - "kunyomiExamples": [ - { - "example": "夢", - "reading": "ゆめ", - "meaning": "dream" - }, - { - "example": "夢にも", - "reading": "ゆめにも", - "meaning": "(not) in the slightest, (not) at all" - }, - { - "example": "初夢", - "reading": "はつゆめ", - "meaning": "first dream of the year" - }, - { - "example": "逆夢", - "reading": "さかゆめ", - "meaning": "a dream which is contradicted by reality" - }, - { - "example": "夢見る", - "reading": "ゆめみる", - "meaning": "to dream (of)" - } - ], - "radical": { - "symbol": "夕", - "meaning": "evening, sunset" - }, - "parts": [ - "冖", - "夕", - "艾", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22818_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05922.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5922.gif", - "uri": "http://jisho.org/search/%E5%A4%A2%23kanji" - }, - { - "query": "迷", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "942", - "strokeCount": 9, - "meaning": "astray, be perplexed, in doubt, lost, err, illusion", - "kunyomi": [ - "まよ.う" - ], - "onyomi": [ - "メイ" - ], - "onyomiExamples": [ - { - "example": "迷惑", - "reading": "メイワク", - "meaning": "trouble, bother, annoyance, nuisance, inconvenience, to be troubled (by), to be bothered (by), to be inconvenienced (by)" - }, - { - "example": "迷路", - "reading": "メイロ", - "meaning": "maze, labyrinth, inner ear" - }, - { - "example": "混迷", - "reading": "コンメイ", - "meaning": "turmoil, chaos, confusion" - }, - { - "example": "愛迷", - "reading": "アイメイ", - "meaning": "straying from love, falling out of love, lost love" - } - ], - "kunyomiExamples": [ - { - "example": "迷う", - "reading": "まよう", - "meaning": "to lose one's way, to get lost, to waver, to hesitate, to be of two minds over, to be puzzled, to be perplexed, to give into temptation, to lose control of oneself, to be charmed, to be infatuated, to be captivated, to be smitten, to turn in one's grave" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "米", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36855_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ff7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ff7.gif", - "uri": "http://jisho.org/search/%E8%BF%B7%23kanji" - }, - { - "query": "綿", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1495", - "strokeCount": 14, - "meaning": "cotton", - "kunyomi": [ - "わた" - ], - "onyomi": [ - "メン" - ], - "onyomiExamples": [ - { - "example": "綿", - "reading": "メン", - "meaning": "cotton" - }, - { - "example": "綿密", - "reading": "メンミツ", - "meaning": "minute, detailed, careful, scrupulous, thorough" - }, - { - "example": "石灰海綿", - "reading": "セッカイカイメン", - "meaning": "calcareous sponge (any sponge of class Calcarea)" - }, - { - "example": "六放海綿", - "reading": "ロッポウカイメン", - "meaning": "hexactinellid sponge, glass sponge (any sponge of class Hexactinellida)" - } - ], - "kunyomiExamples": [ - { - "example": "綿", - "reading": "わた", - "meaning": "cotton plant (Gossypium spp.), batting, wadding, padding" - }, - { - "example": "海神", - "reading": "かいじん", - "meaning": "sea god, Poseidon, Neptune, sea, ocean" - }, - { - "example": "結い綿", - "reading": "ゆいわた", - "meaning": "traditional hairstyle worn by unmarried women" - }, - { - "example": "中綿", - "reading": "なかわた", - "meaning": "padding (clothing or bedding), insulation, cotton wadding, stuffing (furniture)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "巾", - "幺", - "白", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32191_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dbf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dbf.gif", - "uri": "http://jisho.org/search/%E7%B6%BF%23kanji" - }, - { - "query": "輸", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "371", - "strokeCount": 16, - "meaning": "transport, send, be inferior", - "kunyomi": [], - "onyomi": [ - "ユ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "輸血", - "reading": "ユケツ", - "meaning": "blood transfusion" - }, - { - "example": "輸銀", - "reading": "ユギン", - "meaning": "import-export bank" - }, - { - "example": "禁輸", - "reading": "キンユ", - "meaning": "embargo" - }, - { - "example": "直輸", - "reading": "チョクユ", - "meaning": "direct import (export)" - }, - { - "example": "輸入", - "reading": "ユニュウ", - "meaning": "import, importation, introduction, afferent" - }, - { - "example": "輸出", - "reading": "ユシュツ", - "meaning": "export, exportation, efferent" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "一", - "个", - "刈", - "月", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36664_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f38.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f38.gif", - "uri": "http://jisho.org/search/%E8%BC%B8%23kanji" - }, - { - "query": "余", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "680", - "strokeCount": 7, - "meaning": "too much, myself, surplus, other, remainder", - "kunyomi": [ - "あま.る", - "あま.り", - "あま.す", - "あんま.り" - ], - "onyomi": [ - "ヨ" - ], - "onyomiExamples": [ - { - "example": "余", - "reading": "ヨ", - "meaning": "other, another, remaining, leftover, over, more than, I, me" - }, - { - "example": "余韻", - "reading": "ヨイン", - "meaning": "reverberation, swelling (of a hymn), trailing note, lingering memory, aftertaste, suggestiveness (of a book, poem, etc.)" - }, - { - "example": "残余", - "reading": "ザンヨ", - "meaning": "remainder, the rest, residue" - }, - { - "example": "窮余", - "reading": "キュウヨ", - "meaning": "extremity, desperation" - } - ], - "kunyomiExamples": [ - { - "example": "余る", - "reading": "あまる", - "meaning": "to remain, to be left over, to be in excess, to be too many" - }, - { - "example": "余り", - "reading": "あまり", - "meaning": "remainder, remnant, rest, balance, surplus, remains (of a meal), leftovers, (not) very, (not) much, too much, excessively, overly, extreme, great, severe, tremendous, terrible, more than, over" - }, - { - "example": "余りに", - "reading": "あまりに", - "meaning": "too much, excessively, too" - }, - { - "example": "余す", - "reading": "あます", - "meaning": "to save, to leave over, to spare" - }, - { - "example": "余すところなく", - "reading": "あますところなく", - "meaning": "fully, thoroughly" - }, - { - "example": "余り", - "reading": "あまり", - "meaning": "remainder, remnant, rest, balance, surplus, remains (of a meal), leftovers, (not) very, (not) much, too much, excessively, overly, extreme, great, severe, tremendous, terrible, more than, over" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "一", - "个", - "亅", - "二", - "小", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20313_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f59.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f59.gif", - "uri": "http://jisho.org/search/%E4%BD%99%23kanji" - }, - { - "query": "容", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "264", - "strokeCount": 10, - "meaning": "contain, form, looks", - "kunyomi": [ - "い.れる" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "形", - "reading": "カタチ", - "meaning": "form, shape, figure, visage" - }, - { - "example": "容易", - "reading": "ヨウイ", - "meaning": "easy, simple, plain" - }, - { - "example": "陣容", - "reading": "ジンヨウ", - "meaning": "battle formation, battle array, lineup (of a team, etc.), cast, staff, team structure" - }, - { - "example": "受容", - "reading": "ジュヨウ", - "meaning": "reception" - } - ], - "kunyomiExamples": [ - { - "example": "入れる", - "reading": "いれる", - "meaning": "to put in, to let in, to take in, to bring in, to insert, to install (e.g. software), to set (a jewel, etc.), to ink in (e.g. tattoo), to admit, to accept, to employ, to hire, to accept, to comply, to grant, to adopt (a policy, etc.), to take (advice, etc.), to listen to, to pay attention to, to include, to pay (one's rent, etc.), to cast (a vote), to make (tea, coffee, etc.), to turn on (a switch, etc.), to send (a fax), to call" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ハ", - "个", - "口", - "宀", - "穴", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23481_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bb9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bb9.gif", - "uri": "http://jisho.org/search/%E5%AE%B9%23kanji" - }, - { - "query": "略", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "774", - "strokeCount": 11, - "meaning": "abbreviation, omission, outline, shorten, capture, plunder", - "kunyomi": [ - "ほぼ", - "はぶ.く", - "おか.す", - "おさ.める", - "はかりごと", - "はか.る" - ], - "onyomi": [ - "リャク" - ], - "onyomiExamples": [ - { - "example": "略", - "reading": "リャク", - "meaning": "abbreviation, omission, outline, gist, plan, strategy, scheme" - }, - { - "example": "略式", - "reading": "リャクシキ", - "meaning": "informal, simplified" - }, - { - "example": "党略", - "reading": "トウリャク", - "meaning": "party politics (tactics)" - }, - { - "example": "攻略", - "reading": "コウリャク", - "meaning": "capture (of enemy territory), taking (by storm), conquest, attack, assault, defeating (an opponent), attacking (a problem) strategically" - } - ], - "kunyomiExamples": [ - { - "example": "略", - "reading": "ほぼ", - "meaning": "almost, roughly, approximately" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "口", - "夂", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30053_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07565.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7565.gif", - "uri": "http://jisho.org/search/%E7%95%A5%23kanji" - }, - { - "query": "留", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "731", - "strokeCount": 10, - "meaning": "detain, fasten, halt, stop", - "kunyomi": [ - "と.める", - "と.まる", - "とど.める", - "とど.まる", - "るうぶる" - ], - "onyomi": [ - "リュウ", - "ル" - ], - "onyomiExamples": [ - { - "example": "留", - "reading": "リュウ", - "meaning": "stationary" - }, - { - "example": "留学", - "reading": "リュウガク", - "meaning": "studying abroad" - }, - { - "example": "駐留", - "reading": "チュウリュウ", - "meaning": "stationing (e.g. of troops), garrison" - }, - { - "example": "在留", - "reading": "ザイリュウ", - "meaning": "residing (esp. abroad), staying, living" - }, - { - "example": "留", - "reading": "ルーブル", - "meaning": "ruble (Russian currency), rouble" - }, - { - "example": "留守番", - "reading": "ルスバン", - "meaning": "care-taking, house-sitting, house-watching, staying at home, caretaker, house-sitter" - }, - { - "example": "柳樽", - "reading": "ヤナギダル", - "meaning": "lacquered sake barrel (often used at weddings and other celebratory events)" - } - ], - "kunyomiExamples": [ - { - "example": "止める", - "reading": "とめる", - "meaning": "to stop, to turn off, to park, to prevent, to suppress (a cough), to hold back (tears), to hold (one's breath), to relieve (pain), to stop (someone from doing something), to dissuade, to forbid, to prohibit, to notice, to be aware of, to concentrate on, to pay attention to, to remember, to bear in mind, to fix (in place), to fasten, to tack, to pin, to nail, to button, to staple, to detain, to keep in custody" - }, - { - "example": "止まる", - "reading": "とまる", - "meaning": "to stop (moving), to come to a stop, to stop (doing, working, being supplied), to come to a halt, to cease, to be stopped, to be suspended, to alight, to perch on" - }, - { - "example": "留める", - "reading": "とどめる", - "meaning": "to stop, to stay (e.g. the night), to cease, to put an end to, to contain, to keep (in position, in place), to limit, to record (e.g. a fact), to retain" - }, - { - "example": "止まる", - "reading": "とどまる", - "meaning": "to remain, to abide, to stay (in the one place), to be limited to, to be confined to, to only account for" - }, - { - "example": "とどまるところを知らない", - "reading": "とどまるところをしらない", - "meaning": "knowing no bounds, showing no signs of stopping or slowing down" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "刀", - "厶", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30041_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07559.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7559.gif", - "uri": "http://jisho.org/search/%E7%95%99%23kanji" - }, - { - "query": "領", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "138", - "strokeCount": 14, - "meaning": "jurisdiction, dominion, territory, fief, reign", - "kunyomi": [ - "えり" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "領", - "reading": "リョウ", - "meaning": "territory (of country, feudal domain, etc.), counter for suits of clothing, sets of armor, etc." - }, - { - "example": "領域", - "reading": "リョウイキ", - "meaning": "area, domain, territory, field, range, region, regime" - }, - { - "example": "学習指導要領", - "reading": "ガクシュウシドウヨウリョウ", - "meaning": "government course (curriculum) guidelines" - }, - { - "example": "綱領", - "reading": "コウリョウ", - "meaning": "general plan, main points, summary, platform (e.g. for a campaign), mission statement" - } - ], - "kunyomiExamples": [ - { - "example": "襟", - "reading": "えり", - "meaning": "collar, lapel, neckband, neck, nape of the neck, scruff of the neck" - }, - { - "example": "襟足", - "reading": "えりあし", - "meaning": "hairline at nape of neck, nape of neck" - }, - { - "example": "盤領", - "reading": "まるえり", - "meaning": "round collar (of traditional Japanese clothing)" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "一", - "个", - "卩", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38936_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09818.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9818.gif", - "uri": "http://jisho.org/search/%E9%A0%98%23kanji" - }, - { - "query": "歴", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "632", - "strokeCount": 14, - "meaning": "curriculum, continuation, passage of time", - "kunyomi": [], - "onyomi": [ - "レキ", - "レッキ" - ], - "onyomiExamples": [ - { - "example": "歴", - "reading": "レキ", - "meaning": "history of, experience of" - }, - { - "example": "歴史", - "reading": "レキシ", - "meaning": "history" - }, - { - "example": "略歴", - "reading": "リャクレキ", - "meaning": "brief personal record, short curriculum vitae, short CV" - }, - { - "example": "来歴", - "reading": "ライレキ", - "meaning": "history, career" - }, - { - "example": "歴とした", - "reading": "レッキトシタ", - "meaning": "accepted, fully-fledged, clear, respectable" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "厂", - "广", - "木", - "止", - "麻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27508_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b74.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b74.gif", - "uri": "http://jisho.org/search/%E6%AD%B4%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/data/jisho/grade6.json b/lib/migrations/data/jisho/grade6.json deleted file mode 100644 index 17af31d..0000000 --- a/lib/migrations/data/jisho/grade6.json +++ /dev/null @@ -1,13410 +0,0 @@ -[ - { - "query": "胃", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1647", - "strokeCount": 9, - "meaning": "stomach, paunch, crop, craw", - "kunyomi": [], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "胃", - "reading": "イ", - "meaning": "stomach, Chinese \"stomach\" constellation (one of the 28 mansions)" - }, - { - "example": "胃腸", - "reading": "イチョウ", - "meaning": "stomach and intestines, gastrointestinal tract, digestive organs" - }, - { - "example": "しわ胃", - "reading": "シワイ", - "meaning": "abomasum" - }, - { - "example": "葉胃", - "reading": "ヨウイ", - "meaning": "omasum, psalterium, third compartment of the stomach in ruminants" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "月", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32963_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080c3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80c3.gif", - "uri": "http://jisho.org/search/%E8%83%83%23kanji" - }, - { - "query": "異", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "631", - "strokeCount": 11, - "meaning": "uncommon, different, queerness, strangeness, wonderful, curious, unusual", - "kunyomi": [ - "こと", - "こと.なる", - "け" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "異", - "reading": "イ", - "meaning": "difference (of opinion), strange, odd, unusual, different" - }, - { - "example": "異議", - "reading": "イギ", - "meaning": "objection, dissent, protest" - }, - { - "example": "天変地異", - "reading": "テンペンチイ", - "meaning": "natural disaster, cataclysm" - }, - { - "example": "小異", - "reading": "ショウイ", - "meaning": "minor differences" - } - ], - "kunyomiExamples": [ - { - "example": "異", - "reading": "こと", - "meaning": "difference (from one another), different thing, other, unusual, extraordinary" - }, - { - "example": "異なる", - "reading": "ことなる", - "meaning": "to differ, to vary, to disagree" - }, - { - "example": "異なる", - "reading": "ことなる", - "meaning": "to differ, to vary, to disagree" - }, - { - "example": "異", - "reading": "こと", - "meaning": "difference (from one another), different thing, other, unusual, extraordinary" - }, - { - "example": "異な", - "reading": "けな", - "meaning": "exceptional, praiseworthy, laudable" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "ハ", - "一", - "井", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30064_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07570.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7570.gif", - "uri": "http://jisho.org/search/%E7%95%B0%23kanji" - }, - { - "query": "遺", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "647", - "strokeCount": 15, - "meaning": "bequeath, leave behind, reserve", - "kunyomi": [ - "のこ.す" - ], - "onyomi": [ - "イ", - "ユイ" - ], - "onyomiExamples": [ - { - "example": "遺憾", - "reading": "イカン", - "meaning": "regrettable, unsatisfactory, deplorable, lamentable" - }, - { - "example": "遺影", - "reading": "イエイ", - "meaning": "portrait of deceased person" - }, - { - "example": "拾遺", - "reading": "シュウイ", - "meaning": "gleaning, gleanings" - }, - { - "example": "補遺", - "reading": "ホイ", - "meaning": "supplement, addendum, appendix" - }, - { - "example": "遺言", - "reading": "ユイゴン", - "meaning": "will, testament, last request" - }, - { - "example": "遺骸", - "reading": "イガイ", - "meaning": "remains, corpse, body" - } - ], - "kunyomiExamples": [ - { - "example": "遺す", - "reading": "のこす", - "meaning": "to leave (to someone, esp. after one's death), to bequeath" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ハ", - "一", - "口", - "目", - "貝", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36986_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0907a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/907a.gif", - "uri": "http://jisho.org/search/%E9%81%BA%23kanji" - }, - { - "query": "域", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "396", - "strokeCount": 11, - "meaning": "range, region, limits, stage, level", - "kunyomi": [], - "onyomi": [ - "イキ" - ], - "onyomiExamples": [ - { - "example": "域", - "reading": "イキ", - "meaning": "region, limits, stage, level" - }, - { - "example": "域外", - "reading": "イキガイ", - "meaning": "outside the area" - }, - { - "example": "空域", - "reading": "クウイキ", - "meaning": "airspace" - }, - { - "example": "聖域", - "reading": "セイイキ", - "meaning": "sacred precincts, sanctuary, consecrated ground, holy ground, issue that is regarded as being off-limits, matter that is not up for discussion" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "口", - "土", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22495_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057df.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57df.gif", - "uri": "http://jisho.org/search/%E5%9F%9F%23kanji" - }, - { - "query": "宇", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "883", - "strokeCount": 6, - "meaning": "eaves, roof, house, heaven", - "kunyomi": [], - "onyomi": [ - "ウ" - ], - "onyomiExamples": [ - { - "example": "宇", - "reading": "ウ", - "meaning": "counter for buildings, etc." - }, - { - "example": "宇宙", - "reading": "ウチュウ", - "meaning": "universe, cosmos, space" - }, - { - "example": "航宇", - "reading": "コウウ", - "meaning": "aerospace" - }, - { - "example": "堂宇", - "reading": "ドウウ", - "meaning": "edifice, temple, hall" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "亅", - "宀", - "干" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23431_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b87.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b87.gif", - "uri": "http://jisho.org/search/%E5%AE%87%23kanji" - }, - { - "query": "映", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N4", - "newspaperFrequencyRank": "404", - "strokeCount": 9, - "meaning": "reflect, reflection, projection", - "kunyomi": [ - "うつ.る", - "うつ.す", - "は.える", - "-ば.え" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "映画館", - "reading": "エイガカン", - "meaning": "movie theatre, movie theater, cinema" - }, - { - "example": "映画", - "reading": "エイガ", - "meaning": "movie, film" - }, - { - "example": "大映", - "reading": "ダイエイ", - "meaning": "Daiei Motion Picture Company" - }, - { - "example": "開映", - "reading": "カイエイ", - "meaning": "beginning of a screening (at a movie theatre), starting a screening" - } - ], - "kunyomiExamples": [ - { - "example": "映る", - "reading": "うつる", - "meaning": "to be reflected, to harmonize with (harmonise), to come out (photo), to be projected, to be displayed (on a screen)" - }, - { - "example": "映す", - "reading": "うつす", - "meaning": "to project, to reflect, to cast (shadow)" - }, - { - "example": "映える", - "reading": "はえる", - "meaning": "to shine, to glow, to look attractive, to look nice, to be set off (by)" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ノ", - "冖", - "大", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26144_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06620.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6620.gif", - "uri": "http://jisho.org/search/%E6%98%A0%23kanji" - }, - { - "query": "延", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "747", - "strokeCount": 8, - "meaning": "prolong, stretching", - "kunyomi": [ - "の.びる", - "の.べる", - "の.べ", - "の.ばす" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "延滞", - "reading": "エンタイ", - "meaning": "arrears, (being) overdue, delay (e.g. in payment), procrastination" - }, - { - "example": "延期", - "reading": "エンキ", - "meaning": "postponement, deferment, adjournment" - }, - { - "example": "熱延", - "reading": "ネツエン", - "meaning": "hot rolling" - }, - { - "example": "圧延", - "reading": "アツエン", - "meaning": "rolling, extending by applying pressure" - } - ], - "kunyomiExamples": [ - { - "example": "伸びる", - "reading": "のびる", - "meaning": "to stretch, to extend, to lengthen, to grow (of hair, height, grass, etc.), to straighten out, to be flattened, to become smooth, to spread (of paint, cream, etc.), to stretch out (e.g. of a hand), to extend, to lose elasticity, to become slack, to become soggy (e.g. noodles), to make progress, to develop, to expand, to increase, to improve, to be exhausted, to be groggy, to pass out, to collapse, to be prolonged (meeting, life span, etc.), to be extended (e.g. deadline), to lengthen (e.g. of the days), to be postponed, to be delayed, to be put off" - }, - { - "example": "延べる", - "reading": "のべる", - "meaning": "to lay out (a futon), to make (bed), to spread out, to stretch, to widen, to postpone, to extend" - }, - { - "example": "延べ", - "reading": "のべ", - "meaning": "futures, credit (buying), stretching, total (preceding counter, unit, etc.), aggregate, gross" - }, - { - "example": "延べ板", - "reading": "のべいた", - "meaning": "hammered-out plates" - }, - { - "example": "伸ばす", - "reading": "のばす", - "meaning": "to grow long (e.g. hair, nails), to lengthen, to extend, to stretch, to reach out, to hold out, to straighten, to smooth out, to spread evenly (dough, cream, etc.), to dilute, to thin out, to postpone, to prolong, to strengthen, to develop, to expand" - } - ], - "radical": { - "symbol": "廴", - "meaning": "long stride" - }, - "parts": [ - "一", - "廴", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24310_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ef6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ef6.gif", - "uri": "http://jisho.org/search/%E5%BB%B6%23kanji" - }, - { - "query": "沿", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1121", - "strokeCount": 8, - "meaning": "run alongside, follow along, run along, lie along", - "kunyomi": [ - "そ.う", - "-ぞ.い" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "沿海", - "reading": "エンカイ", - "meaning": "coast, shore, inshore, coastal waters" - }, - { - "example": "沿海州", - "reading": "エンカイシュウ", - "meaning": "(Russian) maritime provinces" - } - ], - "kunyomiExamples": [ - { - "example": "沿う", - "reading": "そう", - "meaning": "to run along, to run beside, to stick to (a line), to follow (a policy, plan, etc.), to act in accordance with, to align with, to meet (wishes, expectations, etc.), to satisfy, to comply with, to live up to" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "口", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27839_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cbf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cbf.gif", - "uri": "http://jisho.org/search/%E6%B2%BF%23kanji" - }, - { - "query": "恩", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1418", - "strokeCount": 10, - "meaning": "grace, kindness, goodness, favor, mercy, blessing, benefit", - "kunyomi": [], - "onyomi": [ - "オン" - ], - "onyomiExamples": [ - { - "example": "恩", - "reading": "オン", - "meaning": "favour, favor, obligation, debt of gratitude" - }, - { - "example": "恩返し", - "reading": "オンガエシ", - "meaning": "requital of a favour (favor), repayment (of an obligation, kindness, etc.)" - }, - { - "example": "迎恩", - "reading": "ゲイオン", - "meaning": "welcoming reception" - }, - { - "example": "聖恩", - "reading": "セイオン", - "meaning": "imperial blessings or favor (favour)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "囗", - "大", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24681_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06069.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6069.gif", - "uri": "http://jisho.org/search/%E6%81%A9%23kanji" - }, - { - "query": "我", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "829", - "strokeCount": 7, - "meaning": "ego, I, selfish, our, oneself", - "kunyomi": [ - "われ", - "わ", - "わ.が-", - "わが-" - ], - "onyomi": [ - "ガ" - ], - "onyomiExamples": [ - { - "example": "我", - "reading": "ガ", - "meaning": "obstinacy, atman, the self, the ego" - }, - { - "example": "我慢", - "reading": "ガマン", - "meaning": "endurance, patience, perseverance, bearing (with something), self-control, self-restraint" - }, - { - "example": "無我", - "reading": "ムガ", - "meaning": "selflessness, self-effacement, self-renunciation, anatta, anatman, doctrine that states that humans do not possess souls" - }, - { - "example": "小我", - "reading": "ショウガ", - "meaning": "the self, the ego" - } - ], - "kunyomiExamples": [ - { - "example": "我", - "reading": "われ", - "meaning": "I, me, oneself, you, prefix indicating familiarity or contempt" - }, - { - "example": "我々", - "reading": "われわれ", - "meaning": "we" - }, - { - "example": "人は人、我は我", - "reading": "ひとはひとわれはわれ", - "meaning": "live and let live, you do you and I'll do me, people are people; I am myself" - }, - { - "example": "我", - "reading": "われ", - "meaning": "I, me, oneself, you, prefix indicating familiarity or contempt" - }, - { - "example": "我が", - "reading": "わが", - "meaning": "my, our, one's own" - } - ], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "亅", - "戈", - "手" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25105_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06211.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6211.gif", - "uri": "http://jisho.org/search/%E6%88%91%23kanji" - }, - { - "query": "灰", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1717", - "strokeCount": 6, - "meaning": "ashes, puckery juice, cremate", - "kunyomi": [ - "はい" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "灰色", - "reading": "ハイイロ", - "meaning": "grey, gray, ashen" - }, - { - "example": "灰色植物門", - "reading": "カイショクショクブツモン", - "meaning": "Glaucophyta, phylum comprising the glaucophytes (a group of freshwater microscopic algae)" - }, - { - "example": "石灰", - "reading": "セッカイ", - "meaning": "lime, quicklime, caustic lime" - }, - { - "example": "生石灰", - "reading": "セイセッカイ", - "meaning": "quick lime" - } - ], - "kunyomiExamples": [ - { - "example": "灰", - "reading": "はい", - "meaning": "ash, ashes" - }, - { - "example": "灰色", - "reading": "はいいろ", - "meaning": "grey, gray, ashen" - }, - { - "example": "死の灰", - "reading": "しのはい", - "meaning": "lethal radioactive fallout, atomic dust" - }, - { - "example": "降灰", - "reading": "こうかい", - "meaning": "volcanic ash" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "厂", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28784_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07070.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7070.gif", - "uri": "http://jisho.org/search/%E7%81%B0%23kanji" - }, - { - "query": "拡", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "611", - "strokeCount": 8, - "meaning": "broaden, extend, expand, enlarge", - "kunyomi": [ - "ひろ.がる", - "ひろ.げる", - "ひろ.める" - ], - "onyomi": [ - "カク", - "コウ" - ], - "onyomiExamples": [ - { - "example": "拡充", - "reading": "カクジュウ", - "meaning": "expansion" - }, - { - "example": "拡散", - "reading": "カクサン", - "meaning": "scattering, diffusion, spread (e.g. signal across the spectrum)" - }, - { - "example": "軍拡", - "reading": "グンカク", - "meaning": "expansion of armaments" - } - ], - "kunyomiExamples": [ - { - "example": "広がる", - "reading": "ひろがる", - "meaning": "to spread (out), to extend, to stretch, to reach to, to get around, to fill (e.g. a space)" - }, - { - "example": "広げる", - "reading": "ひろげる", - "meaning": "to spread, to extend, to expand, to enlarge, to widen, to broaden, to unfold, to open, to unroll, to unwrap, to scatter about, to spread around, to make flourish, to cause to prosper" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "厶", - "广", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25313_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062e1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62e1.gif", - "uri": "http://jisho.org/search/%E6%8B%A1%23kanji" - }, - { - "query": "革", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "249", - "strokeCount": 9, - "meaning": "leather, skin, reform, become serious", - "kunyomi": [ - "かわ" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "革命", - "reading": "カクメイ", - "meaning": "revolution, 58th year of the sexagenary cycle (in Onmyōdō)" - }, - { - "example": "革新", - "reading": "カクシン", - "meaning": "reform, innovation" - }, - { - "example": "行革", - "reading": "ギョウカク", - "meaning": "administrative reform" - }, - { - "example": "農地改革", - "reading": "ノウチカイカク", - "meaning": "agrarian reform" - } - ], - "kunyomiExamples": [ - { - "example": "革", - "reading": "かわ", - "meaning": "leather" - }, - { - "example": "革靴", - "reading": "かわぐつ", - "meaning": "leather shoes, leather boots" - }, - { - "example": "藍革", - "reading": "あいかわ", - "meaning": "indigo-dyed leather" - }, - { - "example": "負い革", - "reading": "おいかわ", - "meaning": "sling (e.g. of a firearm)" - } - ], - "radical": { - "symbol": "革", - "meaning": "leather, rawhide" - }, - "parts": [ - "十", - "口", - "廾", - "革" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38761_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09769.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9769.gif", - "uri": "http://jisho.org/search/%E9%9D%A9%23kanji" - }, - { - "query": "閣", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "444", - "strokeCount": 14, - "meaning": "tower, tall building, palace", - "kunyomi": [], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "閣内", - "reading": "カクナイ", - "meaning": "(inside the) Cabinet" - }, - { - "example": "閣議", - "reading": "カクギ", - "meaning": "cabinet meeting" - }, - { - "example": "倒閣", - "reading": "トウカク", - "meaning": "overthrow of government" - }, - { - "example": "影の内閣", - "reading": "カゲノナイカク", - "meaning": "shadow cabinet" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "口", - "夂", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38307_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/095a3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/95a3.gif", - "uri": "http://jisho.org/search/%E9%96%A3%23kanji" - }, - { - "query": "割", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "318", - "strokeCount": 12, - "meaning": "proportion, comparatively, divide, cut, separate, split", - "kunyomi": [ - "わ.る", - "わり", - "わ.り", - "わ.れる", - "さ.く" - ], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "割愛", - "reading": "カツアイ", - "meaning": "omitting, leaving out, sparing, giving something up reluctantly" - }, - { - "example": "割譲", - "reading": "カツジョウ", - "meaning": "cession (of territory)" - }, - { - "example": "正割", - "reading": "セイカツ", - "meaning": "secant (trigonometric function)" - }, - { - "example": "等割", - "reading": "トウカツ", - "meaning": "equal cleavage (embryology)" - } - ], - "kunyomiExamples": [ - { - "example": "割る", - "reading": "わる", - "meaning": "to divide, to cut, to halve, to separate, to split, to rip, to break, to crack, to smash, to dilute, to fall below, to discount, to step over (a line, etc.)" - }, - { - "example": "割り", - "reading": "わり", - "meaning": "rate, ratio, proportion, percentage, profit, assignment, 10%, unit of ten percent, match, schedule of matches, diluted with (of drinks), mixed with" - }, - { - "example": "割合", - "reading": "わりあい", - "meaning": "rate, ratio, percentage, proportion, comparatively, contrary to expectations" - }, - { - "example": "学割", - "reading": "がくわり", - "meaning": "student discount" - }, - { - "example": "手合割", - "reading": "てあいわり", - "meaning": "handicap (go, shogi)" - }, - { - "example": "割り", - "reading": "わり", - "meaning": "rate, ratio, proportion, percentage, profit, assignment, 10%, unit of ten percent, match, schedule of matches, diluted with (of drinks), mixed with" - }, - { - "example": "割合", - "reading": "わりあい", - "meaning": "rate, ratio, percentage, proportion, comparatively, contrary to expectations" - }, - { - "example": "学割", - "reading": "がくわり", - "meaning": "student discount" - }, - { - "example": "手合割", - "reading": "てあいわり", - "meaning": "handicap (go, shogi)" - }, - { - "example": "割れる", - "reading": "われる", - "meaning": "to break, to be smashed, to split, to crack, to fissure, to be torn, to be divided (opinion, vote, etc.), to split (e.g. of a party), to come to light, to become clear, to be identified, to be revealed, to be distorted (of a sound), to be divisible (without a remainder), to go below a minimum" - }, - { - "example": "裂く", - "reading": "さく", - "meaning": "to tear, to rip up, to cut up, to cleave, to cut open (esp. the abdomen), to forcibly separate (e.g. two lovers), to spare (time, money, etc.), to use part of something, to have a tattoo in the corner of one's eye" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "二", - "亠", - "刈", - "口", - "土", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21106_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05272.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5272.gif", - "uri": "http://jisho.org/search/%E5%89%B2%23kanji" - }, - { - "query": "株", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "432", - "strokeCount": 10, - "meaning": "stocks, stump, shares, stock, counter for small plants", - "kunyomi": [ - "かぶ" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "株", - "reading": "シュ", - "meaning": "stump, counter for trees" - }, - { - "example": "雌雄異株", - "reading": "シユウイシュ", - "meaning": "dioecy, dioecism" - }, - { - "example": "雌雄同株", - "reading": "シユウドウシュ", - "meaning": "monoecy, monoecism" - } - ], - "kunyomiExamples": [ - { - "example": "株", - "reading": "かぶ", - "meaning": "stock, share, stump, root, rootstock, plant, stalk, strain (of bacteria, etc.), tradeable rank, goodwill, one's forte" - }, - { - "example": "株", - "reading": "かぶた", - "meaning": "stump, useless item" - }, - { - "example": "新株", - "reading": "しんかぶ", - "meaning": "newly issued stock or share, stock issue, share issue" - }, - { - "example": "仕手株", - "reading": "してかぶ", - "meaning": "speculative stock" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "牛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26666_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0682a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/682a.gif", - "uri": "http://jisho.org/search/%E6%A0%AA%23kanji" - }, - { - "query": "干", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1349", - "strokeCount": 3, - "meaning": "dry, parch, ebb, recede, interfere, intercede", - "kunyomi": [ - "ほ.す", - "ほ.し-", - "-ぼ.し", - "ひ.る" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "関与", - "reading": "カンヨ", - "meaning": "participation, taking part in, participating in, being concerned in" - }, - { - "example": "干渉", - "reading": "カンショウ", - "meaning": "interference, intervention, meddling" - }, - { - "example": "水干", - "reading": "スイカン", - "meaning": "everyday garment worn by nobles in ancient Japan, silk dried after having been washed in plain water and stretched out" - }, - { - "example": "十干", - "reading": "ジッカン", - "meaning": "the 10 calendar signs" - } - ], - "kunyomiExamples": [ - { - "example": "干す", - "reading": "ほす", - "meaning": "to air, to dry, to desiccate, to drain (off), to drink up, to deprive of a role, job, etc." - }, - { - "example": "干る", - "reading": "ひる", - "meaning": "to dry" - } - ], - "radical": { - "symbol": "干", - "meaning": "pestle" - }, - "parts": [ - "一", - "十", - "干" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e72.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e72.gif", - "uri": "http://jisho.org/search/%E5%B9%B2%23kanji" - }, - { - "query": "巻", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "944", - "strokeCount": 9, - "meaning": "scroll, volume, book, part, roll up, wind up, tie, coil, counter for texts (or book scrolls)", - "kunyomi": [ - "ま.く", - "まき", - "ま.き" - ], - "onyomi": [ - "カン", - "ケン" - ], - "onyomiExamples": [ - { - "example": "巻", - "reading": "カン", - "meaning": "volume (of book), reel (of film), scroll (of books or paintings), roll (paper, etc.)" - }, - { - "example": "巻末", - "reading": "カンマツ", - "meaning": "end of a book" - }, - { - "example": "圧巻", - "reading": "アッカン", - "meaning": "highlight, best part, stunning, incredible, superb" - }, - { - "example": "通巻", - "reading": "ツウカン", - "meaning": "consecutive number of (or total) volumes" - }, - { - "example": "巻雲", - "reading": "ケンウン", - "meaning": "cirrus (cloud)" - }, - { - "example": "巻纓", - "reading": "ケンエイ", - "meaning": "rolled tail (of a traditional Japanese hat), looped tail" - }, - { - "example": "席巻", - "reading": "セッケン", - "meaning": "sweeping conquest, sweeping over, conquering, invading" - } - ], - "kunyomiExamples": [ - { - "example": "巻く", - "reading": "まく", - "meaning": "to wind, to coil, to roll, to wear (e.g. turban, scarf), to envelope, to shroud, to outflank, to skirt, to link (verse), to move ahead (three hours, etc.), to move up" - }, - { - "example": "巻", - "reading": "まき", - "meaning": "roll (e.g. of cloth), winding (e.g. watch), volume (of book), speeding up, heel (of a Japanese sandal)" - }, - { - "example": "巻き返し", - "reading": "まきかえし", - "meaning": "rally, recovery, rollback, rewind" - }, - { - "example": "絵巻", - "reading": "えまき", - "meaning": "picture scroll" - }, - { - "example": "鉢巻", - "reading": "はちまき", - "meaning": "headband" - }, - { - "example": "巻", - "reading": "まき", - "meaning": "roll (e.g. of cloth), winding (e.g. watch), volume (of book), speeding up, heel (of a Japanese sandal)" - }, - { - "example": "巻き返し", - "reading": "まきかえし", - "meaning": "rally, recovery, rollback, rewind" - }, - { - "example": "絵巻", - "reading": "えまき", - "meaning": "picture scroll" - }, - { - "example": "鉢巻", - "reading": "はちまき", - "meaning": "headband" - } - ], - "radical": { - "symbol": "己", - "forms": [ - "巳", - "已", - "㔾" - ], - "meaning": "oneself" - }, - "parts": [ - "二", - "大", - "已", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24059_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05dfb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5dfb.gif", - "uri": "http://jisho.org/search/%E5%B7%BB%23kanji" - }, - { - "query": "看", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1060", - "strokeCount": 9, - "meaning": "watch over, see", - "kunyomi": [ - "み.る" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "看護", - "reading": "カンゴ", - "meaning": "nursing, (army) nurse" - }, - { - "example": "看過", - "reading": "カンカ", - "meaning": "overlooking, turning a blind eye" - }, - { - "example": "立て看", - "reading": "タテカン", - "meaning": "standing signboard, billboard, hoarding" - }, - { - "example": "オペ看", - "reading": "オペカン", - "meaning": "operating room nurse" - } - ], - "kunyomiExamples": [ - { - "example": "看る", - "reading": "みる", - "meaning": "to look after (often medically), to take care of" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "ノ", - "一", - "二", - "手", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0770b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/770b.gif", - "uri": "http://jisho.org/search/%E7%9C%8B%23kanji" - }, - { - "query": "簡", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "983", - "strokeCount": 18, - "meaning": "simplicity, brevity", - "kunyomi": [ - "えら.ぶ", - "ふだ" - ], - "onyomi": [ - "カン", - "ケン" - ], - "onyomiExamples": [ - { - "example": "簡", - "reading": "カン", - "meaning": "simplicity, brevity, letter, note, correspondence, bamboo writing strip (in ancient China)" - }, - { - "example": "簡易", - "reading": "カンイ", - "meaning": "simplicity, convenience, easiness, quasi-" - }, - { - "example": "書簡", - "reading": "ショカン", - "meaning": "letter, note, epistle, correspondence" - }, - { - "example": "来簡", - "reading": "ライカン", - "meaning": "correspondence, received letter" - }, - { - "example": "不料簡", - "reading": "フリョウケン", - "meaning": "indiscretion, bad idea, thoughtlessness, indiscreetness" - } - ], - "kunyomiExamples": [ - { - "example": "札", - "reading": "ふだ", - "meaning": "ticket, token, check, receipt, label, tag, sign, card, plate, playing card, charm, talisman, slip of paper posted on shrine pillars by pilgrims" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "日", - "竹", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31777_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c21.gif", - "uri": "http://jisho.org/search/%E7%B0%A1%23kanji" - }, - { - "query": "危", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "606", - "strokeCount": 6, - "meaning": "dangerous, fear, uneasy", - "kunyomi": [ - "あぶ.ない", - "あや.うい", - "あや.ぶむ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "危", - "reading": "キ", - "meaning": "danger, Chinese \"rooftop\" constellation (one of the 28 mansions)" - }, - { - "example": "危害", - "reading": "キガイ", - "meaning": "injury, harm, danger" - }, - { - "example": "安危", - "reading": "アンキ", - "meaning": "fate, safety, welfare" - } - ], - "kunyomiExamples": [ - { - "example": "危ない", - "reading": "あぶない", - "meaning": "dangerous, risky, hazardous, perilous, precarious, in danger, in jeopardy, critical, grave, at risk, uncertain, unreliable, insecure, unsteady, doubtful, close (call), narrow (escape)" - }, - { - "example": "危ない橋を渡る", - "reading": "あぶないはしをわたる", - "meaning": "to tread on thin ice, to go out on a limb, to walk a tightrope, to take risks, to cross a dangerous bridge" - }, - { - "example": "危うい", - "reading": "あやうい", - "meaning": "dangerous, in danger, facing imminent danger, precarious (situation), perilous (state, balance, etc.), in doubt, in jeopardy, uncertain, insecure, concerning, worrying" - }, - { - "example": "危ぶむ", - "reading": "あやぶむ", - "meaning": "to fear, to doubt, to have misgivings about, to worry about, to be anxious about, to be apprehensive about" - } - ], - "radical": { - "symbol": "卩", - "meaning": "kneel" - }, - "parts": [ - "勹", - "卩", - "厂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21361_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05371.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5371.gif", - "uri": "http://jisho.org/search/%E5%8D%B1%23kanji" - }, - { - "query": "机", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1671", - "strokeCount": 6, - "meaning": "desk, table", - "kunyomi": [ - "つくえ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "机上", - "reading": "キジョウ", - "meaning": "on the desk, theoretical, academic, armchair (e.g. plan), desktop, paper, not yet implemented" - }, - { - "example": "机下", - "reading": "キカ", - "meaning": "word of respect added to the addressee's name on a letter, under the desk" - }, - { - "example": "明窓浄机", - "reading": "メイソウジョウキ", - "meaning": "dustless desk by a well-lit window, well-lit and clean study conducive to learning" - } - ], - "kunyomiExamples": [ - { - "example": "机", - "reading": "つくえ", - "meaning": "desk" - }, - { - "example": "机に向かう", - "reading": "つくえにむかう", - "meaning": "to sit at a desk (to study), to set to work on revision, homework, etc." - }, - { - "example": "片袖机", - "reading": "かたそでづくえ", - "meaning": "desk with a tier of drawers on one side" - }, - { - "example": "八足の机", - "reading": "やつあしのつくえ", - "meaning": "eight-legged table (used as a stand for religious offerings, etc.)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "几", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26426_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0673a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/673a.gif", - "uri": "http://jisho.org/search/%E6%9C%BA%23kanji" - }, - { - "query": "揮", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "946", - "strokeCount": 12, - "meaning": "brandish, wave, wag, swing, shake", - "kunyomi": [ - "ふる.う" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "揮発", - "reading": "キハツ", - "meaning": "volatilization, volatilisation" - }, - { - "example": "揮毫", - "reading": "キゴウ", - "meaning": "writing (esp. commissioned calligraphy), drawing, painting" - }, - { - "example": "総指揮", - "reading": "ソウシキ", - "meaning": "supreme command, direction over all" - }, - { - "example": "陣頭指揮", - "reading": "ジントウシキ", - "meaning": "taking command of a corps in a battle, command exercised by the leader of a group" - } - ], - "kunyomiExamples": [ - { - "example": "振るう", - "reading": "ふるう", - "meaning": "to swing, to wield (physically), to exert, to exercise (e.g. power, ability), to exhibit, to display, to wield (metaphorically), to flourish, to prosper, to thrive" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "冖", - "扎", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25582_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063ee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63ee.gif", - "uri": "http://jisho.org/search/%E6%8F%AE%23kanji" - }, - { - "query": "貴", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "970", - "strokeCount": 12, - "meaning": "precious, value, prize, esteem, honor", - "kunyomi": [ - "たっと.い", - "とうと.い", - "たっと.ぶ", - "とうと.ぶ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "貴", - "reading": "キ", - "meaning": "your, indicates high rank or status, indicates love and respect (usu. for an older person)" - }, - { - "example": "貴金属", - "reading": "キキンゾク", - "meaning": "precious metal" - }, - { - "example": "騰貴", - "reading": "トウキ", - "meaning": "rise (in price or value), appreciation, advance" - }, - { - "example": "富貴", - "reading": "フウキ", - "meaning": "riches and honours (honors), wealth and rank" - } - ], - "kunyomiExamples": [ - { - "example": "尊い", - "reading": "とうとい", - "meaning": "precious, valuable, priceless, noble, exalted, sacred" - }, - { - "example": "貴い家柄", - "reading": "たっといいえがら", - "meaning": "noble birth" - }, - { - "example": "尊い", - "reading": "とうとい", - "meaning": "precious, valuable, priceless, noble, exalted, sacred" - }, - { - "example": "貴ぶ", - "reading": "とうとぶ", - "meaning": "to value, to prize, to esteem, to respect" - }, - { - "example": "貴ぶ", - "reading": "とうとぶ", - "meaning": "to value, to prize, to esteem, to respect" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "一", - "口", - "目", - "貝", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36020_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cb4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cb4.gif", - "uri": "http://jisho.org/search/%E8%B2%B4%23kanji" - }, - { - "query": "疑", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "283", - "strokeCount": 14, - "meaning": "doubt, distrust, be suspicious, question", - "kunyomi": [ - "うたが.う" - ], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "疑", - "reading": "ギ", - "meaning": "doubt, distrust, suspicion (of)" - }, - { - "example": "疑義", - "reading": "ギギ", - "meaning": "doubt" - }, - { - "example": "質疑", - "reading": "シツギ", - "meaning": "question, interpellation" - }, - { - "example": "懐疑", - "reading": "カイギ", - "meaning": "doubt, skepticism, scepticism, disbelief" - } - ], - "kunyomiExamples": [ - { - "example": "疑う", - "reading": "うたがう", - "meaning": "to doubt, to distrust, to be suspicious of, to suspect" - } - ], - "radical": { - "symbol": "疋", - "forms": [ - "⺪" - ], - "meaning": "bolt of cloth" - }, - "parts": [ - "マ", - "乞", - "匕", - "疋", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30097_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07591.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7591.gif", - "uri": "http://jisho.org/search/%E7%96%91%23kanji" - }, - { - "query": "吸", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1054", - "strokeCount": 6, - "meaning": "suck, imbibe, inhale, sip", - "kunyomi": [ - "す.う" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "吸収", - "reading": "キュウシュウ", - "meaning": "absorption, suction, attraction" - }, - { - "example": "吸血鬼", - "reading": "キュウケツキ", - "meaning": "vampire, bloodsucker" - }, - { - "example": "腹式呼吸", - "reading": "フクシキコキュウ", - "meaning": "diaphragmatic breathing, abdominal breathing" - }, - { - "example": "外呼吸", - "reading": "ガイコキュウ", - "meaning": "external respiration" - } - ], - "kunyomiExamples": [ - { - "example": "吸う", - "reading": "すう", - "meaning": "to smoke, to breathe in, to inhale, to suck, to sip, to slurp, to absorb, to soak up, to kiss" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "及", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21560_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05438.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5438.gif", - "uri": "http://jisho.org/search/%E5%90%B8%23kanji" - }, - { - "query": "供", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "313", - "strokeCount": 8, - "meaning": "submit, offer, present, serve (meal), accompany", - "kunyomi": [ - "そな.える", - "とも", - "-ども" - ], - "onyomi": [ - "キョウ", - "ク", - "クウ", - "グ" - ], - "onyomiExamples": [ - { - "example": "供述", - "reading": "キョウジュツ", - "meaning": "affidavit, deposition, testimony" - }, - { - "example": "供給", - "reading": "キョウキュウ", - "meaning": "supply, provision" - }, - { - "example": "情報提供", - "reading": "ジョウホウテイキョウ", - "meaning": "provision of information" - }, - { - "example": "臓器提供", - "reading": "ゾウキテイキョウ", - "meaning": "organ donation" - }, - { - "example": "供養", - "reading": "クヨウ", - "meaning": "memorial service for the dead, holding a service" - }, - { - "example": "供物", - "reading": "クモツ", - "meaning": "offering (e.g. to the gods), votive offering" - }, - { - "example": "節句", - "reading": "セック", - "meaning": "seasonal festival" - }, - { - "example": "初節供", - "reading": "ハツゼック", - "meaning": "baby's first annual festival" - }, - { - "example": "供花", - "reading": "キョウカ", - "meaning": "offering of flowers (at shrine, grave, etc.), floral tribute" - }, - { - "example": "人身御供", - "reading": "ヒトミゴクウ", - "meaning": "human sacrifice, victim" - }, - { - "example": "供御", - "reading": "クゴ", - "meaning": "emperor's meal" - }, - { - "example": "供祭", - "reading": "グサイ", - "meaning": "offerings, offerings and worship" - }, - { - "example": "内供", - "reading": "ナイグ", - "meaning": "inner offerer (any of the 10 high-ranking monks serving at the inner offering hall)" - }, - { - "example": "応供", - "reading": "オウグ", - "meaning": "arhat (meritorious person, esp. an epithet of Buddha)" - } - ], - "kunyomiExamples": [ - { - "example": "供える", - "reading": "そなえる", - "meaning": "to offer, to sacrifice, to dedicate" - }, - { - "example": "供", - "reading": "とも", - "meaning": "companion, follower, attendant, retinue" - }, - { - "example": "共に", - "reading": "ともに", - "meaning": "together, jointly, at the same time, with, as ..., including, along with, both" - }, - { - "example": "酒のお供", - "reading": "さけのおとも", - "meaning": "appetizer or snack served with drinks, accompaniment to an (alcoholic) drink" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "一", - "二", - "化", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20379_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f9b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f9b.gif", - "uri": "http://jisho.org/search/%E4%BE%9B%23kanji" - }, - { - "query": "胸", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1144", - "strokeCount": 10, - "meaning": "bosom, breast, chest, heart, feelings", - "kunyomi": [ - "むね", - "むな-" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "胸部", - "reading": "キョウブ", - "meaning": "chest, breast" - }, - { - "example": "胸中", - "reading": "キョウチュウ", - "meaning": "one's heart, one's mind, one's intentions" - }, - { - "example": "豊胸", - "reading": "ホウキョウ", - "meaning": "full breasts, ample breasts, breast enlargement" - }, - { - "example": "膿胸", - "reading": "ノウキョウ", - "meaning": "pyothorax" - } - ], - "kunyomiExamples": [ - { - "example": "胸", - "reading": "むね", - "meaning": "chest, breast, breasts, bosom, bust, heart, lungs, stomach, heart, mind, feelings" - }, - { - "example": "胸赤鶸", - "reading": "むねあかひわ", - "meaning": "Eurasian linnet (Carduelis cannabina)" - }, - { - "example": "鳩胸", - "reading": "はとむね", - "meaning": "pigeon chest (Pectus carinatum, deformity of the chest, protruding ribs and sternum), pigeon breast, woman with big breasts" - }, - { - "example": "左胸", - "reading": "ひだりむね", - "meaning": "left breast, left side of the chest" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "ノ", - "丶", - "凵", - "勹", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33016_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80f8.gif", - "uri": "http://jisho.org/search/%E8%83%B8%23kanji" - }, - { - "query": "郷", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1077", - "strokeCount": 11, - "meaning": "home town, village, native place, district", - "kunyomi": [ - "さと" - ], - "onyomi": [ - "キョウ", - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "郷", - "reading": "キョウ", - "meaning": "hometown, rural township (of China)" - }, - { - "example": "郷愁", - "reading": "キョウシュウ", - "meaning": "nostalgia, homesickness" - }, - { - "example": "同郷", - "reading": "ドウキョウ", - "meaning": "same village, same town, same province" - }, - { - "example": "理想郷", - "reading": "リソウキョウ", - "meaning": "ideal land, earthly paradise, Utopia, Arcadia" - }, - { - "example": "郷", - "reading": "ゴウ", - "meaning": "countryside, country, 50-home township (comprised of 2-3 neighbourhoods)" - }, - { - "example": "郷学", - "reading": "ゴウガク", - "meaning": "village school (esp. in Edo-era Japan, and ancient Korea and China)" - }, - { - "example": "水郷", - "reading": "スイゴウ", - "meaning": "beautiful riverside location, lakeside district, canal district" - }, - { - "example": "大西郷", - "reading": "ダイサイゴウ", - "meaning": "the Great Saigo" - } - ], - "kunyomiExamples": [ - { - "example": "里", - "reading": "さと", - "meaning": "village, hamlet, countryside, country, home (of one's parents, etc.), hometown, one's origins, one's upbringing, one's past" - }, - { - "example": "無何有の郷", - "reading": "むかうのさと", - "meaning": "utopia, (natural) paradise" - }, - { - "example": "第二の故郷", - "reading": "だいにのこきょう", - "meaning": "one's second home, home away from home" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "幺", - "艮", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37111_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090f7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90f7.gif", - "uri": "http://jisho.org/search/%E9%83%B7%23kanji" - }, - { - "query": "勤", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "830", - "strokeCount": 12, - "meaning": "diligence, become employed, serve", - "kunyomi": [ - "つと.める", - "-づと.め", - "つと.まる", - "いそ.しむ" - ], - "onyomi": [ - "キン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "勤勉", - "reading": "キンベン", - "meaning": "diligent, industrious" - }, - { - "example": "勤続", - "reading": "キンゾク", - "meaning": "continuous service" - }, - { - "example": "非常勤", - "reading": "ヒジョウキン", - "meaning": "part-time work" - }, - { - "example": "常勤", - "reading": "ジョウキン", - "meaning": "full-time employment" - }, - { - "example": "勤行", - "reading": "ゴンギョウ", - "meaning": "religious service" - }, - { - "example": "勤行時報係", - "reading": "ゴンギョウジホウガカリ", - "meaning": "muezzin" - } - ], - "kunyomiExamples": [ - { - "example": "勤める", - "reading": "つとめる", - "meaning": "to work (for), to be employed (at), to serve (in), to serve (as), to act (as), to fill (the position of), to play the role (of), to conduct a religious service" - }, - { - "example": "勤まる", - "reading": "つとまる", - "meaning": "to be fit for, to be equal to, to function properly" - }, - { - "example": "勤しむ", - "reading": "いそしむ", - "meaning": "to work hard at, to devote oneself to, to be diligent in" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "一", - "二", - "力", - "口", - "土", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21220_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052e4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52e4.gif", - "uri": "http://jisho.org/search/%E5%8B%A4%23kanji" - }, - { - "query": "筋", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "744", - "strokeCount": 12, - "meaning": "muscle, sinew, tendon, fiber, plot, plan, descent", - "kunyomi": [ - "すじ" - ], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "筋", - "reading": "キン", - "meaning": "muscle" - }, - { - "example": "筋肉", - "reading": "キンニク", - "meaning": "muscle" - }, - { - "example": "心筋", - "reading": "シンキン", - "meaning": "heart muscle, myocardium" - }, - { - "example": "鉄筋", - "reading": "テッキン", - "meaning": "rebar, (iron) reinforcing bar, reinforcing steel, reinforced concrete" - } - ], - "kunyomiExamples": [ - { - "example": "筋", - "reading": "すじ", - "meaning": "muscle, tendon, sinew, vein, artery, fiber, fibre, string, line, stripe, streak, reason, logic, plot, storyline, lineage, descent, school (e.g. of scholarship or arts), aptitude, talent, source (of information, etc.), circle, channel, well-informed person (in a transaction), logical move (in go, shogi, etc.), ninth vertical line, seam on a helmet, gristly fish paste (made of muscle, tendons, skin, etc.), social position, status, on (a river, road, etc.), along, counter for long thin things, counter for roads or blocks when giving directions, (Edo period) counter for hundreds of mon (obsolete unit of currency)" - }, - { - "example": "筋書き", - "reading": "すじがき", - "meaning": "synopsis, outline, plot" - }, - { - "example": "粗筋", - "reading": "あらすじ", - "meaning": "outline, summary, argument" - }, - { - "example": "売れ筋", - "reading": "うれすじ", - "meaning": "popular line (of products), best-selling line, hot sellers" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "力", - "月", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31563_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b4b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b4b.gif", - "uri": "http://jisho.org/search/%E7%AD%8B%23kanji" - }, - { - "query": "系", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "567", - "strokeCount": 7, - "meaning": "lineage, system", - "kunyomi": [], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "系", - "reading": "ケイ", - "meaning": "system, lineage, group, corollary, system (range of strata that correspond to a particular time period), (taxonomical) series" - }, - { - "example": "系統", - "reading": "ケイトウ", - "meaning": "system, lineage, ancestry, family line, group (e.g. of colors) (colours), family (e.g. of languages), party, school (of thought), close (evolutionary) relationship, a population sharing a common ancestor (in genetics), strain (e.g. bacterial)" - }, - { - "example": "日系", - "reading": "ニッケイ", - "meaning": "(of) Japanese descent, non-Japanese of Japanese descent, nikkeijin, company, etc. set up with Japanese capital, company managed by Japanese or non-Japanese of Japanese descent" - }, - { - "example": "水系", - "reading": "スイケイ", - "meaning": "water system, river system, drainage system" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ノ", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31995_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07cfb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7cfb.gif", - "uri": "http://jisho.org/search/%E7%B3%BB%23kanji" - }, - { - "query": "敬", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1078", - "strokeCount": 12, - "meaning": "awe, respect, honor, revere", - "kunyomi": [ - "うやま.う" - ], - "onyomi": [ - "ケイ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "敬", - "reading": "ケイ", - "meaning": "reverence, respect" - }, - { - "example": "敬意", - "reading": "ケイイ", - "meaning": "respect, honour, honor" - }, - { - "example": "失敬", - "reading": "シッケイ", - "meaning": "rudeness, impoliteness, disrespect, impertinence, leaving, going (on one's way), saying goodbye, taking without permission, stealing, pinching, pilfering, My apologies, I must be going now, So long" - }, - { - "example": "愛敬", - "reading": "アイギョウ", - "meaning": "love and respect" - }, - { - "example": "ご愛嬌", - "reading": "ゴアイキョウ", - "meaning": "entertainment, amusement, fun" - }, - { - "example": "男は度胸女は愛敬", - "reading": "オトコハドキョウオンナハアイキョウ", - "meaning": "men should be brave, women should be affable" - } - ], - "kunyomiExamples": [ - { - "example": "敬う", - "reading": "うやまう", - "meaning": "to show respect for, to revere, to honour, to honor, to worship, to hold in esteem" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "勹", - "口", - "攵", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25964_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0656c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/656c.gif", - "uri": "http://jisho.org/search/%E6%95%AC%23kanji" - }, - { - "query": "警", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "366", - "strokeCount": 19, - "meaning": "admonish, commandment", - "kunyomi": [ - "いまし.める" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "警官", - "reading": "ケイカン", - "meaning": "police officer, policeman, constable" - }, - { - "example": "警戒", - "reading": "ケイカイ", - "meaning": "vigilance, caution, alertness, precaution, being on guard" - }, - { - "example": "県警", - "reading": "ケンケイ", - "meaning": "prefectural police" - }, - { - "example": "府警", - "reading": "フケイ", - "meaning": "prefectural police" - } - ], - "kunyomiExamples": [ - { - "example": "戒める", - "reading": "いましめる", - "meaning": "to warn against, to caution against, to admonish, to scold, to rebuke, to prohibit, to forbid, to ban, to be cautious, to detest, to loathe, to punish" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "乞", - "勹", - "口", - "夂", - "攵", - "艾", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35686_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b66.gif", - "uri": "http://jisho.org/search/%E8%AD%A6%23kanji" - }, - { - "query": "劇", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "662", - "strokeCount": 15, - "meaning": "drama, play", - "kunyomi": [], - "onyomi": [ - "ゲキ" - ], - "onyomiExamples": [ - { - "example": "劇", - "reading": "ゲキ", - "meaning": "drama, play, powerful drug" - }, - { - "example": "劇画", - "reading": "ゲキガ", - "meaning": "comic strip with dramatic story" - }, - { - "example": "新劇", - "reading": "シンゲキ", - "meaning": "school of western-inspired Japanese drama which developed towards the end of the Meiji period, shingeki, new-drama (movement)" - }, - { - "example": "京劇", - "reading": "キョウゲキ", - "meaning": "classical Chinese opera" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "匕", - "卜", - "厂", - "虍", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21127_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05287.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5287.gif", - "uri": "http://jisho.org/search/%E5%8A%87%23kanji" - }, - { - "query": "激", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "560", - "strokeCount": 16, - "meaning": "violent, get excited, enraged, chafe, incite", - "kunyomi": [ - "はげ.しい" - ], - "onyomi": [ - "ゲキ" - ], - "onyomiExamples": [ - { - "example": "激", - "reading": "ゲキ", - "meaning": "extremely, terrifically, super" - }, - { - "example": "激化", - "reading": "ゲキカ", - "meaning": "intensification, aggravation" - }, - { - "example": "憤激", - "reading": "フンゲキ", - "meaning": "fury" - }, - { - "example": "矯激", - "reading": "キョウゲキ", - "meaning": "radical, extreme, eccentric" - } - ], - "kunyomiExamples": [ - { - "example": "激しい", - "reading": "はげしい", - "meaning": "violent, furious, tempestuous, extreme, intense, fierce, strong, fervent, vehement, incessant, relentless, precipitous, steep" - }, - { - "example": "激しい競争", - "reading": "はげしいきょうそう", - "meaning": "intense competition, hot competition" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "乞", - "攵", - "方", - "汁", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28608_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06fc0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6fc0.gif", - "uri": "http://jisho.org/search/%E6%BF%80%23kanji" - }, - { - "query": "穴", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1366", - "strokeCount": 5, - "meaning": "hole, aperture, slit, cave, den", - "kunyomi": [ - "あな" - ], - "onyomi": [ - "ケツ" - ], - "onyomiExamples": [ - { - "example": "穴", - "reading": "ケツ", - "meaning": "ass, arse, buttocks, rear, end, acupuncture point, hole, notch" - }, - { - "example": "穴隙", - "reading": "ケツゲキ", - "meaning": "crevice, aperture" - }, - { - "example": "横穴", - "reading": "ヨコアナ", - "meaning": "cave, tunnel, tunnel tomb (Kofun period)" - }, - { - "example": "経穴", - "reading": "ケイケツ", - "meaning": "acupuncture point" - } - ], - "kunyomiExamples": [ - { - "example": "穴", - "reading": "あな", - "meaning": "hole, opening, perforation, pit, hollow, hole (in the ground, etc.), burrow, den, lair, holt, hole, deficit, shortage, missing person (in a team, meeting, etc.), vacancy, opening, flaw, well-kept secret place, upset victory (with a large payoff), pit (of a theater), hiding place, hideout, underbelly (of society, etc.)" - }, - { - "example": "穴埋め", - "reading": "あなうめ", - "meaning": "filling (up) a hole, filling in (for a gap, vacancy, etc.), stopgap, filler (e.g. article), making up (for a loss, damage, etc.), covering (a deficit), compensation, cloze deletion (test format)" - }, - { - "example": "風穴", - "reading": "かざあな", - "meaning": "air hole, windhole, ventilator" - }, - { - "example": "横穴", - "reading": "よこあな", - "meaning": "cave, tunnel, tunnel tomb (Kofun period)" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "ハ", - "儿", - "宀", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31348_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a74.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a74.gif", - "uri": "http://jisho.org/search/%E7%A9%B4%23kanji" - }, - { - "query": "券", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "583", - "strokeCount": 8, - "meaning": "ticket", - "kunyomi": [], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "券", - "reading": "ケン", - "meaning": "ticket, coupon, bond, certificate" - }, - { - "example": "券売機", - "reading": "ケンバイキ", - "meaning": "ticket machine, ticket-vending machine" - }, - { - "example": "有価証券", - "reading": "ユウカショウケン", - "meaning": "marketable securities, stocks and bonds" - }, - { - "example": "旅行券", - "reading": "リョコウケン", - "meaning": "travel voucher, travel coupon" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "一", - "二", - "人", - "刀", - "大", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21048_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05238.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5238.gif", - "uri": "http://jisho.org/search/%E5%88%B8%23kanji" - }, - { - "query": "絹", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1916", - "strokeCount": 13, - "meaning": "silk", - "kunyomi": [ - "きぬ" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "絹糸", - "reading": "ケンシ", - "meaning": "silk thread" - }, - { - "example": "絹布", - "reading": "ケンプ", - "meaning": "silk, silk cloth" - }, - { - "example": "正絹", - "reading": "ショウケン", - "meaning": "pure silk" - }, - { - "example": "素絹", - "reading": "ソケン", - "meaning": "coarse silk" - } - ], - "kunyomiExamples": [ - { - "example": "絹", - "reading": "きぬ", - "meaning": "silk" - }, - { - "example": "絹糸", - "reading": "けんし", - "meaning": "silk thread" - }, - { - "example": "白絹", - "reading": "しらぎぬ", - "meaning": "white silk" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "口", - "小", - "幺", - "月", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32121_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d79.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d79.gif", - "uri": "http://jisho.org/search/%E7%B5%B9%23kanji" - }, - { - "query": "権", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "156", - "strokeCount": 15, - "meaning": "authority, power, rights", - "kunyomi": [ - "おもり", - "かり", - "はか.る" - ], - "onyomi": [ - "ケン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "権", - "reading": "ケン", - "meaning": "right (to do something), authority, power" - }, - { - "example": "権威", - "reading": "ケンイ", - "meaning": "authority, power, influence" - }, - { - "example": "抵当権", - "reading": "テイトウケン", - "meaning": "mortgage, right of pledge, lien" - }, - { - "example": "参政権", - "reading": "サンセイケン", - "meaning": "suffrage, franchise" - }, - { - "example": "権化", - "reading": "ゴンゲ", - "meaning": "incarnation (of Buddha or bodhisattva), avatar, embodiment (as in \"embodiment of evil\"), incarnation, personification" - }, - { - "example": "権現", - "reading": "ゴンゲン", - "meaning": "manifestation of a Buddha (or bodhisattva, etc.) in the form of a Shinto kami" - } - ], - "kunyomiExamples": [ - { - "example": "仮殿", - "reading": "かりどの", - "meaning": "temporary shrine (houses the object in which the deity resides when main shrine is under repairs)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "乞", - "木", - "矢", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27177_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a29.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a29.gif", - "uri": "http://jisho.org/search/%E6%A8%A9%23kanji" - }, - { - "query": "憲", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "551", - "strokeCount": 16, - "meaning": "constitution, law", - "kunyomi": [], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "憲章", - "reading": "ケンショウ", - "meaning": "charter" - }, - { - "example": "憲政", - "reading": "ケンセイ", - "meaning": "constitutional government" - }, - { - "example": "違憲", - "reading": "イケン", - "meaning": "unconstitutionality" - }, - { - "example": "改憲", - "reading": "カイケン", - "meaning": "constitutional change, revising the constitution" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "二", - "亠", - "土", - "宀", - "心", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25010_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61b2.gif", - "uri": "http://jisho.org/search/%E6%86%B2%23kanji" - }, - { - "query": "源", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "738", - "strokeCount": 13, - "meaning": "source, origin", - "kunyomi": [ - "みなもと" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "源", - "reading": "ゲン", - "meaning": "source, origin" - }, - { - "example": "源氏", - "reading": "ゲンジ", - "meaning": "Genji (the character in the Genji Monogatari), the Minamoto family" - }, - { - "example": "震源", - "reading": "シンゲン", - "meaning": "hypocentre (of an earthquake), hypocenter" - }, - { - "example": "財源", - "reading": "ザイゲン", - "meaning": "source of funds, resources, finances" - } - ], - "kunyomiExamples": [ - { - "example": "源", - "reading": "みなもと", - "meaning": "source (of a river), fountainhead, source, origin, root" - }, - { - "example": "河の源", - "reading": "かわのみなもと", - "meaning": "fountainhead" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "厂", - "小", - "汁", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28304_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e90.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e90.gif", - "uri": "http://jisho.org/search/%E6%BA%90%23kanji" - }, - { - "query": "厳", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "638", - "strokeCount": 17, - "meaning": "stern, strictness, severity, rigidity", - "kunyomi": [ - "おごそ.か", - "きび.しい", - "いか.めしい", - "いつくし" - ], - "onyomi": [ - "ゲン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "厳", - "reading": "ゲン", - "meaning": "strict, stern" - }, - { - "example": "厳格", - "reading": "ゲンカク", - "meaning": "strict, severe, stern, rigid, rigorous, tough" - }, - { - "example": "謹厳", - "reading": "キンゲン", - "meaning": "stern, grave, solemn, sobersided" - }, - { - "example": "冷厳", - "reading": "レイゲン", - "meaning": "grim, stern, stark, heartless" - }, - { - "example": "華厳", - "reading": "ケゴン", - "meaning": "avatamsa (flower adornment, as a metaphor for becoming a buddha), Avatamska sutra, Kegon (sect of Buddhism)" - }, - { - "example": "荘厳", - "reading": "ショウゴン", - "meaning": "adorning (a Buddhist statue)" - } - ], - "kunyomiExamples": [ - { - "example": "厳か", - "reading": "おごそか", - "meaning": "solemn (ceremony, atmosphere, etc.), austere, grave, majestic, dignified, stately, impressive" - }, - { - "example": "厳しい", - "reading": "きびしい", - "meaning": "severe, strict, rigid, unsparing, relentless, hard (to do), difficult, tricky, intense (e.g. cold), harsh (weather), inclement" - }, - { - "example": "厳しい暑さ", - "reading": "きびしいあつさ", - "meaning": "intense heat" - }, - { - "example": "厳めしい", - "reading": "いかめしい", - "meaning": "stern, grave, austere, imposing, dignified, formidable, solemn, majestic, strict (e.g. security), severe, firm, rigid, rigorous" - } - ], - "radical": { - "symbol": "厂", - "meaning": "cliff" - }, - "parts": [ - "乞", - "厂", - "尚", - "攵", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21427_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053b3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53b3.gif", - "uri": "http://jisho.org/search/%E5%8E%B3%23kanji" - }, - { - "query": "己", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1098", - "strokeCount": 3, - "meaning": "self", - "kunyomi": [ - "おのれ", - "つちのと", - "な" - ], - "onyomi": [ - "コ", - "キ" - ], - "onyomiExamples": [ - { - "example": "非自己", - "reading": "ヒジコ", - "meaning": "nonself, not self" - }, - { - "example": "一己", - "reading": "イッコ", - "meaning": "personal, private, oneself" - }, - { - "example": "己", - "reading": "キ", - "meaning": "6th in rank, sixth sign of the Chinese calendar" - }, - { - "example": "己亥", - "reading": "ツチノトイ", - "meaning": "Earth Boar (36th year of the sexagenary cycle, e.g. 1959, 2019, 2079)" - }, - { - "example": "克己", - "reading": "コッキ", - "meaning": "self denial, self control" - }, - { - "example": "親戚知己", - "reading": "シンセキチキ", - "meaning": "relatives and acquaintances" - } - ], - "kunyomiExamples": [ - { - "example": "己", - "reading": "おのれ", - "meaning": "oneself (itself, etc.), I, me, you, by oneself (itself, etc.), interjection expressing anger or chagrin" - }, - { - "example": "己達せんと欲して人を達せしむ", - "reading": "おのれたっせんとほっしてひとをたっせしむ", - "meaning": "if you wish to succeed yourself, first help others to succeed" - }, - { - "example": "己", - "reading": "き", - "meaning": "6th in rank, sixth sign of the Chinese calendar" - }, - { - "example": "己亥", - "reading": "つちのとい", - "meaning": "Earth Boar (36th year of the sexagenary cycle, e.g. 1959, 2019, 2079)" - }, - { - "example": "己", - "reading": "な", - "meaning": "I, you" - }, - { - "example": "汝等", - "reading": "うぬら", - "meaning": "ye, you, me, I, us, we" - } - ], - "radical": { - "symbol": "己", - "forms": [ - "巳", - "已", - "㔾" - ], - "meaning": "oneself" - }, - "parts": [ - "已" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24049_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05df1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5df1.gif", - "uri": "http://jisho.org/search/%E5%B7%B1%23kanji" - }, - { - "query": "呼", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "498", - "strokeCount": 8, - "meaning": "call, call out to, invite", - "kunyomi": [ - "よ.ぶ" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "呼吸", - "reading": "コキュウ", - "meaning": "breathing, respiration, knack, trick, secret (of doing something), harmony, balance, synchronization, accord, short interval, short pause" - }, - { - "example": "呼応", - "reading": "コオウ", - "meaning": "hailing each other, acting in concert, responding (to), sympathizing (with), agreement, concord" - }, - { - "example": "連呼", - "reading": "レンコ", - "meaning": "calling repeatedly (e.g. someone's name), pronouncing successively (usu. repeating a syllable with voicing, as in \"tsuzuku\")" - }, - { - "example": "点呼", - "reading": "テンコ", - "meaning": "roll-call, muster" - } - ], - "kunyomiExamples": [ - { - "example": "呼ぶ", - "reading": "よぶ", - "meaning": "to call out (to), to call, to invoke, to summon (a doctor, etc.), to invite, to designate, to name, to brand, to garner (support, etc.), to gather, to take as one's wife" - }, - { - "example": "呼子鳥", - "reading": "よぶこどり", - "meaning": "calling bird (esp. a cuckoo)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "亅", - "口", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21628_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0547c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/547c.gif", - "uri": "http://jisho.org/search/%E5%91%BC%23kanji" - }, - { - "query": "誤", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1150", - "strokeCount": 14, - "meaning": "mistake, err, do wrong, mislead", - "kunyomi": [ - "あやま.る", - "-あやま.る" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "誤", - "reading": "ゴ", - "meaning": "mistake, error" - }, - { - "example": "誤解", - "reading": "ゴカイ", - "meaning": "misunderstanding" - }, - { - "example": "時代錯誤", - "reading": "ジダイサクゴ", - "meaning": "anachronism" - }, - { - "example": "錯誤", - "reading": "サクゴ", - "meaning": "mistake, error, discrepancy, discrepancy between one's actions and intentions" - } - ], - "kunyomiExamples": [ - { - "example": "誤る", - "reading": "あやまる", - "meaning": "to make a mistake (in), to commit an error, to do incorrectly, to err, to be wrong, to be incorrect, to be false, to be mistaken, to mislead, to misguide, to lead astray" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ハ", - "口", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35492_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08aa4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8aa4.gif", - "uri": "http://jisho.org/search/%E8%AA%A4%23kanji" - }, - { - "query": "后", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1583", - "strokeCount": 6, - "meaning": "empress, queen, after, behind, back, later", - "kunyomi": [ - "きさき" - ], - "onyomi": [ - "コウ", - "ゴ" - ], - "onyomiExamples": [ - { - "example": "后宮", - "reading": "コウグウ", - "meaning": "empress's palace, queen's palace, empress, queen" - }, - { - "example": "皇妃", - "reading": "コウヒ", - "meaning": "empress, queen" - }, - { - "example": "皇太后", - "reading": "コウタイゴウ", - "meaning": "Queen Mother, Empress Dowager" - }, - { - "example": "太后", - "reading": "タイコウ", - "meaning": "empress dowager, queen mother" - }, - { - "example": "後", - "reading": "ゴ", - "meaning": "after" - } - ], - "kunyomiExamples": [ - { - "example": "后", - "reading": "きさき", - "meaning": "empress, queen" - }, - { - "example": "后町", - "reading": "きさきまち", - "meaning": "women's pavilion (of the inner Heian palace)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "一", - "亅", - "厂", - "口", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21518_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0540e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/540e.gif", - "uri": "http://jisho.org/search/%E5%90%8E%23kanji" - }, - { - "query": "孝", - "found": true, - "taughtIn": "grade 6", - "newspaperFrequencyRank": "1030", - "strokeCount": 7, - "meaning": "filial piety, child's respect", - "kunyomi": [], - "onyomi": [ - "コウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "孝", - "reading": "コウ", - "meaning": "filial piety" - }, - { - "example": "孝行", - "reading": "コウコウ", - "meaning": "filial piety, showing devotion (to someone)" - }, - { - "example": "親不孝", - "reading": "オヤフコウ", - "meaning": "lack of filial piety, disobedience to one's parents" - }, - { - "example": "不孝", - "reading": "フコウ", - "meaning": "undutifulness to one's parents, lack of filial piety, (the crime of) cursing one's parents, disowning one's child" - }, - { - "example": "孝", - "reading": "コウ", - "meaning": "filial piety" - }, - { - "example": "不孝", - "reading": "フコウ", - "meaning": "undutifulness to one's parents, lack of filial piety, (the crime of) cursing one's parents, disowning one's child" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "子", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23389_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b5d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b5d.gif", - "uri": "http://jisho.org/search/%E5%AD%9D%23kanji" - }, - { - "query": "皇", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "721", - "strokeCount": 9, - "meaning": "emperor", - "kunyomi": [], - "onyomi": [ - "コウ", - "オウ" - ], - "onyomiExamples": [ - { - "example": "皇后", - "reading": "コウゴウ", - "meaning": "(Japanese) empress, queen" - }, - { - "example": "皇居", - "reading": "コウキョ", - "meaning": "Imperial Palace (of Japan), imperial residence" - }, - { - "example": "倉皇", - "reading": "ソウコウ", - "meaning": "hurry, bustle" - }, - { - "example": "教皇", - "reading": "キョウコウ", - "meaning": "Pope" - }, - { - "example": "皇帝", - "reading": "コウテイ", - "meaning": "emperor" - }, - { - "example": "皇子", - "reading": "オウジ", - "meaning": "imperial prince" - }, - { - "example": "法皇", - "reading": "ホウオウ", - "meaning": "cloistered emperor, ex-emperor who has become a monk" - }, - { - "example": "太上法皇", - "reading": "ダイジョウホウオウ", - "meaning": "cloistered emperor, ex-emperor who has become a monk" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "白", - "meaning": "white" - }, - "parts": [ - "王", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30343_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07687.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7687.gif", - "uri": "http://jisho.org/search/%E7%9A%87%23kanji" - }, - { - "query": "紅", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1299", - "strokeCount": 9, - "meaning": "crimson, deep red", - "kunyomi": [ - "べに", - "くれない", - "あか.い" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "紅", - "reading": "クレナイ", - "meaning": "deep red, crimson, rouge, lipstick" - }, - { - "example": "紅茶", - "reading": "コウチャ", - "meaning": "black tea" - }, - { - "example": "深紅", - "reading": "シンク", - "meaning": "deep crimson" - }, - { - "example": "退紅", - "reading": "タイコウ", - "meaning": "pink, light red" - }, - { - "example": "紅", - "reading": "クレナイ", - "meaning": "deep red, crimson, rouge, lipstick" - }, - { - "example": "紅色", - "reading": "コウショク", - "meaning": "red (color, colour)" - }, - { - "example": "深紅", - "reading": "シンク", - "meaning": "deep crimson" - } - ], - "kunyomiExamples": [ - { - "example": "紅", - "reading": "くれない", - "meaning": "deep red, crimson, rouge, lipstick" - }, - { - "example": "紅色", - "reading": "こうしょく", - "meaning": "red (color, colour)" - }, - { - "example": "棒紅", - "reading": "ぼうべに", - "meaning": "lipstick" - }, - { - "example": "愛敬紅", - "reading": "あいきょうべに", - "meaning": "lipstick that actors put on their earlobes, cheeks and corners of eyes, lipstick discreetly put on the earlobes or the corners of the eyes (by women)" - }, - { - "example": "紅", - "reading": "くれない", - "meaning": "deep red, crimson, rouge, lipstick" - }, - { - "example": "紅色", - "reading": "こうしょく", - "meaning": "red (color, colour)" - }, - { - "example": "中紅", - "reading": "なかくれない", - "meaning": "medium crimson" - }, - { - "example": "薄紅", - "reading": "うすべに", - "meaning": "light pink, light crimson" - }, - { - "example": "赤い", - "reading": "あかい", - "meaning": "red, crimson, scarlet, vermilion, vermillion, Red, communist, beautiful" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "工", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32005_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d05.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d05.gif", - "uri": "http://jisho.org/search/%E7%B4%85%23kanji" - }, - { - "query": "降", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "596", - "strokeCount": 10, - "meaning": "descend, precipitate, fall, surrender", - "kunyomi": [ - "お.りる", - "お.ろす", - "ふ.る", - "ふ.り", - "くだ.る", - "くだ.す" - ], - "onyomi": [ - "コウ", - "ゴ" - ], - "onyomiExamples": [ - { - "example": "降格", - "reading": "コウカク", - "meaning": "demotion" - }, - { - "example": "降雨", - "reading": "コウウ", - "meaning": "rainfall, rain" - }, - { - "example": "乗降", - "reading": "ジョウコウ", - "meaning": "getting on and off, embarking and disembarking" - }, - { - "example": "投降", - "reading": "トウコウ", - "meaning": "surrender" - }, - { - "example": "降三世明王", - "reading": "ゴウザンゼミョウオウ", - "meaning": "Trailokyavijaya Vidya-raja, conqueror of the three worlds" - }, - { - "example": "降誕会", - "reading": "ゴウタンエ", - "meaning": "Buddha's Birthday (8th day of the 4th lunar month), service (held on April 8) celebrating the birth of the Buddha." - } - ], - "kunyomiExamples": [ - { - "example": "降りる", - "reading": "おりる", - "meaning": "to descend (e.g. a mountain), to go down, to come down, to alight (e.g. from bus), to get off, to disembark, to dismount, to step down, to retire, to give up, to quit, to fold, to be granted, to be issued, to be given, to form (of frost, dew, mist, etc.), to be passed (from the body; e.g. of a roundworm)" - }, - { - "example": "下ろす", - "reading": "おろす", - "meaning": "to take down, to bring down, to lower (a hand, flag, shutter, etc.), to drop (an anchor, curtain, etc.), to let down (hair), to launch (a boat), to drop off (a passenger), to let off, to unload (goods, a truck, etc.), to offload, to discharge, to withdraw (money), to use for the first time, to wear for the first time, to cut off, to fillet (fish), to grate (e.g. radish), to prune (branches), to remove (someone from a position), to oust, to drop, to clear (the table), to remove (offerings from an alter), to pass down (e.g. old clothes), to hand down, to expel from the body (e.g. worms), to abort (a fetus), to invoke (a spirit), to call down" - }, - { - "example": "降る", - "reading": "ふる", - "meaning": "to fall (of rain, snow, ash, etc.), to come down, to form (of frost), to beam down (of sunlight or moonlight), to pour in, to visit (of luck, misfortune, etc.), to come, to arrive" - }, - { - "example": "降り", - "reading": "ふり", - "meaning": "rainfall, snowfall, alighting, descending" - }, - { - "example": "降りしきる", - "reading": "ふりしきる", - "meaning": "to fall incessantly (rain, snow, etc.), to downpour" - }, - { - "example": "下る", - "reading": "くだる", - "meaning": "to descend, to go down, to come down, to be handed down (of an order, judgment, etc.), to pass (of time), to surrender, to capitulate, to be less than, to be inferior to, to have the runs, to have diarrhea, to pass (in stool), to be discharged from the body, to depreciate oneself, to be humble" - }, - { - "example": "下す", - "reading": "くだす", - "meaning": "to make a decision, to draw a conclusion, to give a judgement, to hand down a verdict, to pass a sentence, to give an order, to let go down, to lower, to do oneself, to do by oneself, to beat, to defeat, to have loose bowels, to have diarrhea, to pass (in stool), to discharge from the body, to do in one go, to do to the end without stopping" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "十", - "夂", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38477_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0964d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/964d.gif", - "uri": "http://jisho.org/search/%E9%99%8D%23kanji" - }, - { - "query": "鋼", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1246", - "strokeCount": 16, - "meaning": "steel", - "kunyomi": [ - "はがね" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "鋼", - "reading": "ハガネ", - "meaning": "steel" - }, - { - "example": "鋼材", - "reading": "コウザイ", - "meaning": "steel material" - }, - { - "example": "粗鋼", - "reading": "ソコウ", - "meaning": "crude steel" - }, - { - "example": "製鋼", - "reading": "セイコウ", - "meaning": "steel manufacture" - } - ], - "kunyomiExamples": [ - { - "example": "鋼", - "reading": "はがね", - "meaning": "steel" - }, - { - "example": "鋼色", - "reading": "はがねいろ", - "meaning": "steel blue" - }, - { - "example": "玉鋼", - "reading": "たまはがね", - "meaning": "steel made from iron sand or black sand (used in sword blades)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "冂", - "山", - "岡", - "并", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37628_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/092fc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/92fc.gif", - "uri": "http://jisho.org/search/%E9%8B%BC%23kanji" - }, - { - "query": "刻", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "866", - "strokeCount": 8, - "meaning": "engrave, cut fine, chop, hash, mince, time, carving", - "kunyomi": [ - "きざ.む", - "きざ.み" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "刻", - "reading": "コク", - "meaning": "period of time (usu. a period of approx. two hours corresponding to one of the signs of the Chinese zodiac), carving, engraving, cutting, mincing, victory, strictness, cruelty" - }, - { - "example": "刻々", - "reading": "コッコク", - "meaning": "moment by moment, hour by hour" - }, - { - "example": "復刻", - "reading": "フッコク", - "meaning": "republication, reissue, reprinting, reproduction" - }, - { - "example": "刻一刻", - "reading": "コクイッコク", - "meaning": "moment by moment, hour by hour" - } - ], - "kunyomiExamples": [ - { - "example": "刻む", - "reading": "きざむ", - "meaning": "to mince, to cut fine, to chop up, to hash, to shred, to carve, to engrave, to chisel, to notch, to tick away (time), to beat out (e.g. rhythm), to record the passing moments, to etch (into one's mind), to remember distinctly, to have tattooed, to torment" - }, - { - "example": "刻み", - "reading": "きざみ", - "meaning": "shredded tobacco, notch, nick" - }, - { - "example": "刻み足", - "reading": "きざみあし", - "meaning": "mincing steps" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ノ", - "丶", - "亠", - "人", - "刈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21051_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0523b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/523b.gif", - "uri": "http://jisho.org/search/%E5%88%BB%23kanji" - }, - { - "query": "穀", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1744", - "strokeCount": 14, - "meaning": "cereals, grain", - "kunyomi": [], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "穀物", - "reading": "コクモツ", - "meaning": "grain, cereal, corn" - }, - { - "example": "穀倉", - "reading": "コクソウ", - "meaning": "granary" - }, - { - "example": "米穀", - "reading": "ベイコク", - "meaning": "rice" - }, - { - "example": "雑穀", - "reading": "ザッコク", - "meaning": "assorted grains, cereals, millet" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "冖", - "几", - "又", - "士", - "殳", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31296_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a40.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a40.gif", - "uri": "http://jisho.org/search/%E7%A9%80%23kanji" - }, - { - "query": "骨", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "936", - "strokeCount": 10, - "meaning": "skeleton, bone, remains, frame", - "kunyomi": [ - "ほね" - ], - "onyomi": [ - "コツ" - ], - "onyomiExamples": [ - { - "example": "骨", - "reading": "コツ", - "meaning": "knack, skill, trick, secret, know-how, the ropes, hang, bone, skeleton, cremated remains (esp. the bones), ashes" - }, - { - "example": "骨髄", - "reading": "コツズイ", - "meaning": "bone marrow, medulla, true spirit, one's mind" - }, - { - "example": "白骨", - "reading": "ハッコツ", - "meaning": "white (bleached) bone, skeleton" - }, - { - "example": "鉄骨", - "reading": "テッコツ", - "meaning": "steel frame, steel beam, steel girder" - } - ], - "kunyomiExamples": [ - { - "example": "骨", - "reading": "ほね", - "meaning": "bone, frame, outline, core, backbone, spirit, fortitude, laborious, troublesome, difficult" - }, - { - "example": "骨抜き", - "reading": "ほねぬき", - "meaning": "boning (fish or meat), deboning, watering down (a plan, bill, etc.), dilution, emasculation, taking the backbone out of, weakening" - }, - { - "example": "河骨", - "reading": "こうほね", - "meaning": "Japanese spatterdock (species of water lily, Nuphar japonica)" - }, - { - "example": "水母の骨", - "reading": "くらげのほね", - "meaning": "something that one would not expect to exist, something exceedingly rare, jellyfish bones" - } - ], - "radical": { - "symbol": "骨", - "meaning": "bone" - }, - "parts": [ - "冂", - "冖", - "月", - "骨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39592_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09aa8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9aa8.gif", - "uri": "http://jisho.org/search/%E9%AA%A8%23kanji" - }, - { - "query": "困", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "843", - "strokeCount": 7, - "meaning": "quandary, become distressed, annoyed", - "kunyomi": [ - "こま.る" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "困惑", - "reading": "コンワク", - "meaning": "bewilderment, perplexity, embarrassment, discomfiture, bafflement" - }, - { - "example": "困難", - "reading": "コンナン", - "meaning": "difficulty, hardship, trouble, distress, infeasibility, inability (to carry out)" - }, - { - "example": "絶対貧困", - "reading": "ゼッタイヒンコン", - "meaning": "absolute poverty" - }, - { - "example": "絶対的貧困", - "reading": "ゼッタイテキヒンコン", - "meaning": "absolute poverty" - } - ], - "kunyomiExamples": [ - { - "example": "困る", - "reading": "こまる", - "meaning": "to be troubled, to have difficulty, to be in a fix, to be at a loss, to be stumped, to be embarrassed, to be bothered, to be inconvenienced, to be annoyed, to be badly off, to be hard up, to be in straitened circumstances" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "囗", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22256_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056f0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56f0.gif", - "uri": "http://jisho.org/search/%E5%9B%B0%23kanji" - }, - { - "query": "砂", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1146", - "strokeCount": 9, - "meaning": "sand", - "kunyomi": [ - "すな" - ], - "onyomi": [ - "サ", - "シャ" - ], - "onyomiExamples": [ - { - "example": "砂漠", - "reading": "サバク", - "meaning": "desert" - }, - { - "example": "砂糖", - "reading": "サトウ", - "meaning": "sugar" - }, - { - "example": "土砂", - "reading": "ドシャ", - "meaning": "sediment, earth and sand" - }, - { - "example": "流砂", - "reading": "リュウシャ", - "meaning": "quicksand" - }, - { - "example": "砂岩", - "reading": "サガン", - "meaning": "sandstone" - }, - { - "example": "砂丘", - "reading": "サキュウ", - "meaning": "sand dune, sand hill" - }, - { - "example": "土砂", - "reading": "ドシャ", - "meaning": "sediment, earth and sand" - }, - { - "example": "流砂", - "reading": "リュウシャ", - "meaning": "quicksand" - } - ], - "kunyomiExamples": [ - { - "example": "砂", - "reading": "すな", - "meaning": "sand, grit" - }, - { - "example": "砂浜", - "reading": "すなはま", - "meaning": "sandy beach" - }, - { - "example": "鳴き砂", - "reading": "なきすな", - "meaning": "singing sand (which produces sound when stepped on), whistling sand, squeaking sand, barking sand" - }, - { - "example": "猫砂", - "reading": "ねこすな", - "meaning": "cat litter, kitty litter" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "ノ", - "口", - "小", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30722_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07802.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7802.gif", - "uri": "http://jisho.org/search/%E7%A0%82%23kanji" - }, - { - "query": "座", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "588", - "strokeCount": 10, - "meaning": "squat, seat, cushion, gathering, sit", - "kunyomi": [ - "すわ.る" - ], - "onyomi": [ - "ザ" - ], - "onyomiExamples": [ - { - "example": "座", - "reading": "ザ", - "meaning": "seat, place, position, status, gathering, party, company, atmosphere (of a gathering), stand, pedestal, platform, (historical) trade guild, attaches to the names of constellations, attaches to the names of theatres, cinemas and theatrical troupes, counter for theatres, deities, Buddhist images, tall mountains, and satokagura songs" - }, - { - "example": "座敷", - "reading": "ザシキ", - "meaning": "tatami room, tatami mat room, formal Japanese room, dinner party in a tatami room (esp. when a geisha or maiko attends)" - }, - { - "example": "連座", - "reading": "レンザ", - "meaning": "implication (in a crime), involvement, sitting in a row (in the same seat)" - }, - { - "example": "胡座", - "reading": "アグラ", - "meaning": "sitting cross-legged (i.e. Indian style)" - } - ], - "kunyomiExamples": [ - { - "example": "座る", - "reading": "すわる", - "meaning": "to sit, to squat, to assume (a position), to hold steady, to hold still" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "人", - "土", - "广", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24231_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ea7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ea7.gif", - "uri": "http://jisho.org/search/%E5%BA%A7%23kanji" - }, - { - "query": "済", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "168", - "strokeCount": 11, - "meaning": "settle (debt, etc.), relieve (burden), finish, come to an end, excusable, need not", - "kunyomi": [ - "す.む", - "-ず.み", - "-ずみ", - "す.まない", - "す.ます", - "-す.ます", - "すく.う", - "な.す", - "わたし", - "わた.る" - ], - "onyomi": [ - "サイ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "済州", - "reading": "チェジュ", - "meaning": "Jeju (special self-governing province and island in South Korea)" - }, - { - "example": "済世", - "reading": "サイセイ", - "meaning": "saving the world, promoting national welfare" - }, - { - "example": "決済", - "reading": "ケッサイ", - "meaning": "settlement, payment of account" - }, - { - "example": "弁済", - "reading": "ベンサイ", - "meaning": "repayment, settlement (of a debt), paying off, reimbursement (of expenses)" - }, - { - "example": "済世", - "reading": "サイセイ", - "meaning": "saving the world, promoting national welfare" - }, - { - "example": "済美", - "reading": "セイビ", - "meaning": "achieving virtue" - } - ], - "kunyomiExamples": [ - { - "example": "済む", - "reading": "すむ", - "meaning": "to finish, to end, to be completed, to merely result in something less severe than expected, to feel at ease, to feel unease or guilt for troubling someone, to be sorry" - }, - { - "example": "済まない", - "reading": "すまない", - "meaning": "inexcusable, unjustifiable, unpardonable, sorry, remorseful, apologetic, conscience-stricken, contrite, excuse me, (I'm) sorry, thank you" - }, - { - "example": "済ます", - "reading": "すます", - "meaning": "to finish, to get it over with, to conclude, to settle, to pay back, to get along (without something), to make do with (without)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "廾", - "文", - "斉", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28168_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e08.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e08.gif", - "uri": "http://jisho.org/search/%E6%B8%88%23kanji" - }, - { - "query": "裁", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "297", - "strokeCount": 12, - "meaning": "tailor, judge, decision, cut out (pattern)", - "kunyomi": [ - "た.つ", - "さば.く" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "裁", - "reading": "サイ", - "meaning": "judge" - }, - { - "example": "裁決", - "reading": "サイケツ", - "meaning": "decision, ruling, judgement, judgment" - }, - { - "example": "家裁", - "reading": "カサイ", - "meaning": "family court" - }, - { - "example": "高裁", - "reading": "コウサイ", - "meaning": "High Court" - } - ], - "kunyomiExamples": [ - { - "example": "裁つ", - "reading": "たつ", - "meaning": "to cut (cloth)" - }, - { - "example": "裁く", - "reading": "さばく", - "meaning": "to judge, to decide, to sit in judgement, to try" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "厶", - "土", - "戈", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35009_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088c1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88c1.gif", - "uri": "http://jisho.org/search/%E8%A3%81%23kanji" - }, - { - "query": "策", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "209", - "strokeCount": 12, - "meaning": "scheme, plan, policy, step, means", - "kunyomi": [], - "onyomi": [ - "サク" - ], - "onyomiExamples": [ - { - "example": "策", - "reading": "サク", - "meaning": "plan, policy, means, measure, stratagem, scheme, fifth principle of the Eight Principles of Yong, right upward flick" - }, - { - "example": "作戦", - "reading": "サクセン", - "meaning": "tactics, strategy, military operation, naval operation" - }, - { - "example": "施策", - "reading": "シサク", - "meaning": "policy, measure" - }, - { - "example": "国策", - "reading": "コクサク", - "meaning": "national policy" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "ハ", - "乞", - "亅", - "冂", - "巾", - "木", - "竹", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31574_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b56.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b56.gif", - "uri": "http://jisho.org/search/%E7%AD%96%23kanji" - }, - { - "query": "冊", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1313", - "strokeCount": 5, - "meaning": "tome, counter for books, volume", - "kunyomi": [ - "ふみ" - ], - "onyomi": [ - "サツ", - "サク" - ], - "onyomiExamples": [ - { - "example": "冊", - "reading": "サツ", - "meaning": "counter for books, volume" - }, - { - "example": "別冊", - "reading": "ベッサツ", - "meaning": "separate volume, extra issue, supplement, additional volume, supplementary volume" - }, - { - "example": "合冊", - "reading": "ガッサツ", - "meaning": "collection in one volume" - }, - { - "example": "冊", - "reading": "サク", - "meaning": "imperial edict to confer nobility titles (in ancient China)" - }, - { - "example": "冊封", - "reading": "サクホウ", - "meaning": "bestowing peerage by imperial edict (in ancient China), document bestowing peerage" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "冂", - "meaning": "open country" - }, - "parts": [ - "一", - "亅", - "冂", - "冊", - "廾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20874_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0518a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/518a.gif", - "uri": "http://jisho.org/search/%E5%86%8A%23kanji" - }, - { - "query": "蚕", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2272", - "strokeCount": 10, - "meaning": "silkworm", - "kunyomi": [ - "かいこ", - "こ" - ], - "onyomi": [ - "サン", - "テン" - ], - "onyomiExamples": [ - { - "example": "蚕糸", - "reading": "サンシ", - "meaning": "silk thread, silk yarn" - }, - { - "example": "蚕業", - "reading": "サンギョウ", - "meaning": "sericulture" - }, - { - "example": "養蚕", - "reading": "ヨウサン", - "meaning": "sericulture, silkworm culture, silkworm raising" - }, - { - "example": "秋蚕", - "reading": "シュウサン", - "meaning": "autumn silkworms, fall silkworms" - } - ], - "kunyomiExamples": [ - { - "example": "蚕", - "reading": "かいこ", - "meaning": "silkworm (Bombyx mori)" - }, - { - "example": "蚕蛾", - "reading": "かいこが", - "meaning": "silkworm moth, silk moth (Bombyx mori)" - }, - { - "example": "三眠蚕", - "reading": "さんみんかいこ", - "meaning": "three-molt silkworm" - }, - { - "example": "蚕糞", - "reading": "こくそ", - "meaning": "silkworm droppings" - }, - { - "example": "蚕玉", - "reading": "こだま", - "meaning": "guardian deity of silkworms" - }, - { - "example": "三眠蚕", - "reading": "さんみんかいこ", - "meaning": "three-molt silkworm" - }, - { - "example": "桑蚕", - "reading": "くわこ", - "meaning": "wild silkworm moth (Bombyx mandarina)" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "一", - "二", - "大", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34453_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08695.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8695.gif", - "uri": "http://jisho.org/search/%E8%9A%95%23kanji" - }, - { - "query": "至", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "996", - "strokeCount": 6, - "meaning": "climax, arrive, proceed, reach, attain, result in", - "kunyomi": [ - "いた.る" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "至", - "reading": "シ", - "meaning": "to ..." - }, - { - "example": "至上", - "reading": "シジョウ", - "meaning": "supremacy" - }, - { - "example": "必至", - "reading": "ヒッシ", - "meaning": "inevitable, necessary, foregone, brinkmate (inevitable checkmate)" - }, - { - "example": "夏至", - "reading": "ゲシ", - "meaning": "summer solstice" - } - ], - "kunyomiExamples": [ - { - "example": "至る", - "reading": "いたる", - "meaning": "to arrive at (e.g. a decision), to reach (a stage), to attain, to lead to (a place), to get to, in the extreme case of, to come, to arrive, to result in" - }, - { - "example": "至る所", - "reading": "いたるところ", - "meaning": "everywhere, all over, throughout" - } - ], - "radical": { - "symbol": "至", - "meaning": "arrive" - }, - "parts": [ - "一", - "厶", - "土", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33267_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81f3.gif", - "uri": "http://jisho.org/search/%E8%87%B3%23kanji" - }, - { - "query": "私", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N4", - "newspaperFrequencyRank": "242", - "strokeCount": 7, - "meaning": "private, I, me", - "kunyomi": [ - "わたくし", - "わたし" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "私", - "reading": "シ", - "meaning": "private affairs, personal matter" - }, - { - "example": "私案", - "reading": "シアン", - "meaning": "private plan, one's own plan" - }, - { - "example": "無私", - "reading": "ムシ", - "meaning": "unselfish, selfless, disinterested" - }, - { - "example": "滅私", - "reading": "メッシ", - "meaning": "selflessness, being unselfish" - } - ], - "kunyomiExamples": [ - { - "example": "私", - "reading": "わたくし", - "meaning": "I, me, personal (affairs, etc.), private, selfishness, partiality, secrecy, confidentiality" - }, - { - "example": "私立", - "reading": "しりつ", - "meaning": "private (establishment)" - }, - { - "example": "不肖私", - "reading": "ふしょうわたくし", - "meaning": "I, me" - }, - { - "example": "私", - "reading": "わたし", - "meaning": "I, me" - }, - { - "example": "私たち", - "reading": "わたしたち", - "meaning": "we, us" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "厶", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31169_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079c1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79c1.gif", - "uri": "http://jisho.org/search/%E7%A7%81%23kanji" - }, - { - "query": "姿", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "441", - "strokeCount": 9, - "meaning": "figure, form, shape", - "kunyomi": [ - "すがた" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "姿勢", - "reading": "シセイ", - "meaning": "posture, pose, position, stance, carriage (of the body), attitude, approach, stance" - }, - { - "example": "姿勢制御", - "reading": "シセイセイギョ", - "meaning": "attitude control" - }, - { - "example": "雄姿", - "reading": "ユウシ", - "meaning": "majestic figure, imposing figure, impressive appearance, magnificent appearance" - }, - { - "example": "英姿", - "reading": "エイシ", - "meaning": "gallant figure, impressive figure, noble appearance" - } - ], - "kunyomiExamples": [ - { - "example": "姿", - "reading": "すがた", - "meaning": "figure, form, shape, appearance, dress, guise, state, condition, picture, image, form (of a waka), dressed in ..., wearing ..." - }, - { - "example": "姿絵", - "reading": "すがたえ", - "meaning": "portrait" - }, - { - "example": "晴れ姿", - "reading": "はれすがた", - "meaning": "appearing in one's finest clothes, appearing in one's hour of triumph" - }, - { - "example": "舞姿", - "reading": "まいすがた", - "meaning": "dancing figure, one's appearance when dancing, dancing posture" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "冫", - "女", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23039_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059ff.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59ff.gif", - "uri": "http://jisho.org/search/%E5%A7%BF%23kanji" - }, - { - "query": "視", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "362", - "strokeCount": 11, - "meaning": "inspection, regard as, see, look at", - "kunyomi": [ - "み.る" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "視", - "reading": "シ", - "meaning": "viewing as ..., seeing as ..., treating as ..., regarding as ..." - }, - { - "example": "視界", - "reading": "シカイ", - "meaning": "field of vision, visibility, view, visual field, (one's) ken" - }, - { - "example": "検視", - "reading": "ケンシ", - "meaning": "autopsy, inquest, investigation of death" - }, - { - "example": "警視", - "reading": "ケイシ", - "meaning": "police superintendent" - } - ], - "kunyomiExamples": [ - { - "example": "見る", - "reading": "みる", - "meaning": "to see, to look, to watch, to view, to observe, to examine, to look over, to assess, to check, to judge, to look after, to attend to, to take care of, to keep an eye on, to experience, to meet with (misfortune, success, etc.), to try ..., to have a go at ..., to give ... a try, to see (that) ..., to find (that) ..." - } - ], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "礼", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35222_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08996.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8996.gif", - "uri": "http://jisho.org/search/%E8%A6%96%23kanji" - }, - { - "query": "詞", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1636", - "strokeCount": 12, - "meaning": "part of speech, words, poetry", - "kunyomi": [ - "ことば" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "詞", - "reading": "シ", - "meaning": "words, writing, lyrics, ci (form of Chinese poetry), independent word" - }, - { - "example": "詞華集", - "reading": "シカシュウ", - "meaning": "anthology (of poems), florilegium" - }, - { - "example": "作詞", - "reading": "サクシ", - "meaning": "(writing) song lyrics" - }, - { - "example": "固有名詞", - "reading": "コユウメイシ", - "meaning": "proper noun" - } - ], - "kunyomiExamples": [ - { - "example": "言葉", - "reading": "ことば", - "meaning": "language, dialect, word, words, phrase, term, expression, remark, speech, (manner of) speaking, learning to speak, language acquisition" - }, - { - "example": "詞書き", - "reading": "ことばがき", - "meaning": "foreword to a collection of poems, preface, explanatory notes, captions" - }, - { - "example": "枕詞", - "reading": "まくらことば", - "meaning": "pillow word (decorative word used prefixally in classical Japanese literature), preface, introduction" - }, - { - "example": "花言葉", - "reading": "はなことば", - "meaning": "language of flowers, floriography, flower symbolism, e.g. red roses mean love" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "亅", - "口", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35422_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a5e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a5e.gif", - "uri": "http://jisho.org/search/%E8%A9%9E%23kanji" - }, - { - "query": "誌", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "851", - "strokeCount": 14, - "meaning": "document, records", - "kunyomi": [], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "誌", - "reading": "シ", - "meaning": "magazine" - }, - { - "example": "記す", - "reading": "シルス", - "meaning": "to write down, to note, to jot down, to remember" - }, - { - "example": "風物詩", - "reading": "フウブツシ", - "meaning": "thing that reminds one of a particular season, poem about natural scenery, poem about a particular season" - }, - { - "example": "日誌", - "reading": "ニッシ", - "meaning": "journal, log" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "士", - "心", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35468_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a8c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a8c.gif", - "uri": "http://jisho.org/search/%E8%AA%8C%23kanji" - }, - { - "query": "磁", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1686", - "strokeCount": 14, - "meaning": "magnet, porcelain", - "kunyomi": [], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "磁石", - "reading": "ジシャク", - "meaning": "magnet, compass" - }, - { - "example": "磁気", - "reading": "ジキ", - "meaning": "magnetism" - }, - { - "example": "電磁", - "reading": "デンジ", - "meaning": "electromagnetic" - }, - { - "example": "陶磁", - "reading": "トウジ", - "meaning": "clay" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "一", - "口", - "并", - "幺", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30913_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/078c1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/78c1.gif", - "uri": "http://jisho.org/search/%E7%A3%81%23kanji" - }, - { - "query": "射", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "937", - "strokeCount": 10, - "meaning": "shoot, shine into, onto, archery", - "kunyomi": [ - "い.る", - "さ.す", - "う.つ" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "射", - "reading": "シャ", - "meaning": "archery, mapping, map, morphism, arrow" - }, - { - "example": "射撃", - "reading": "シャゲキ", - "meaning": "firing, shooting, fire, gunshot, marksmanship" - }, - { - "example": "照射", - "reading": "ショウシャ", - "meaning": "irradiation, radiation, beaming, exposure (to light), illumination" - }, - { - "example": "投射", - "reading": "トウシャ", - "meaning": "projection" - } - ], - "kunyomiExamples": [ - { - "example": "射る", - "reading": "いる", - "meaning": "to shoot (arrow, bolt, dart)" - }, - { - "example": "射す", - "reading": "さす", - "meaning": "to shine" - }, - { - "example": "撃つ", - "reading": "うつ", - "meaning": "to shoot (at), to attack, to defeat, to destroy, to avenge" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "寸", - "身" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23556_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c04.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c04.gif", - "uri": "http://jisho.org/search/%E5%B0%84%23kanji" - }, - { - "query": "捨", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1266", - "strokeCount": 11, - "meaning": "discard, throw away, abandon, resign, reject, sacrifice", - "kunyomi": [ - "す.てる" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "捨", - "reading": "シャ", - "meaning": "equanimity, upeksa, upekkha" - }, - { - "example": "捨象", - "reading": "シャショウ", - "meaning": "abstraction" - }, - { - "example": "取捨", - "reading": "シュシャ", - "meaning": "adoption or rejection, selection, choice, option" - }, - { - "example": "用捨", - "reading": "ヨウシャ", - "meaning": "adoption or rejection, choice, separating the needed from the unneeded" - } - ], - "kunyomiExamples": [ - { - "example": "捨てる", - "reading": "すてる", - "meaning": "to throw away, to cast away, to dump, to discard, to abandon, to desert, to leave, to give up, to resign" - }, - { - "example": "捨てる神あれば拾う神あり", - "reading": "すてるかみあればひろうかみあり", - "meaning": "when one door is shut, another is open, the world is as kind as it is cruel" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "个", - "口", - "土", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25448_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06368.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6368.gif", - "uri": "http://jisho.org/search/%E6%8D%A8%23kanji" - }, - { - "query": "尺", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1940", - "strokeCount": 4, - "meaning": "shaku, Japanese foot, measure, scale, rule", - "kunyomi": [], - "onyomi": [ - "シャク" - ], - "onyomiExamples": [ - { - "example": "尺", - "reading": "シャク", - "meaning": "shaku (unit of distance approximately equal to 30.3 cm), rule, measure, scale, length" - }, - { - "example": "尺度", - "reading": "シャクド", - "meaning": "gauge, standard, measure, criterion, index, length, size, (measuring) rule, scale" - }, - { - "example": "大尺", - "reading": "ダイシャク", - "meaning": "large shaku (approx. 35.6cm)" - }, - { - "example": "対数尺", - "reading": "タイスウシャク", - "meaning": "log rule" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "丶", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23610_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c3a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c3a.gif", - "uri": "http://jisho.org/search/%E5%B0%BA%23kanji" - }, - { - "query": "若", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "458", - "strokeCount": 8, - "meaning": "young, if, perhaps, possibly, low number, immature", - "kunyomi": [ - "わか.い", - "わか-", - "も.しくわ", - "も.し", - "も.しくは", - "ごと.し" - ], - "onyomi": [ - "ジャク", - "ニャク", - "ニャ" - ], - "onyomiExamples": [ - { - "example": "若年", - "reading": "ジャクネン", - "meaning": "youth" - }, - { - "example": "若僧", - "reading": "ニャクソウ", - "meaning": "young monk, boy monk" - }, - { - "example": "老若", - "reading": "ロウニャク", - "meaning": "young and old, all ages" - }, - { - "example": "瞠若", - "reading": "ドウジャク", - "meaning": "being dumbfounded" - }, - { - "example": "若僧", - "reading": "ニャクソウ", - "meaning": "young monk, boy monk" - }, - { - "example": "若道", - "reading": "ニャクドウ", - "meaning": "homosexuality, pederasty" - }, - { - "example": "老若", - "reading": "ロウニャク", - "meaning": "young and old, all ages" - }, - { - "example": "若僧", - "reading": "ニャクソウ", - "meaning": "young monk, boy monk" - }, - { - "example": "若道", - "reading": "ニャクドウ", - "meaning": "homosexuality, pederasty" - }, - { - "example": "般若", - "reading": "ハンニャ", - "meaning": "prajna, wisdom required to attain enlightenment, noh mask of a grinning, horned demoness (represents a woman's rage and jealousy), family crest designed after the Hannya noh mask, dreadful face (esp. of a woman driven mad by jealousy), terrifying facial expression" - }, - { - "example": "阿蘭若", - "reading": "アランニャ", - "meaning": "isolated place, hermitage" - } - ], - "kunyomiExamples": [ - { - "example": "若い", - "reading": "わかい", - "meaning": "young, youthful, immature, green, low (number), small" - }, - { - "example": "若い頃", - "reading": "わかいころ", - "meaning": "one's youth, early life, one's early days, one's early years" - }, - { - "example": "若し", - "reading": "もし", - "meaning": "if, in case, supposing" - }, - { - "example": "若しかしたら", - "reading": "もしかしたら", - "meaning": "perhaps, maybe, perchance, by some chance, by any chance" - }, - { - "example": "若しくは", - "reading": "もしくは", - "meaning": "or, otherwise" - }, - { - "example": "如し", - "reading": "ごとし", - "meaning": "like, as if, the same as" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "一", - "口", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33509_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082e5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82e5.gif", - "uri": "http://jisho.org/search/%E8%8B%A5%23kanji" - }, - { - "query": "樹", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "988", - "strokeCount": 16, - "meaning": "timber, trees, wood, establish, set up", - "kunyomi": [ - "き" - ], - "onyomi": [ - "ジュ" - ], - "onyomiExamples": [ - { - "example": "樹木", - "reading": "ジュモク", - "meaning": "tree, trees and shrubs" - }, - { - "example": "樹脂", - "reading": "ジュシ", - "meaning": "resin, rosin" - }, - { - "example": "植樹", - "reading": "ショクジュ", - "meaning": "tree-planting" - }, - { - "example": "広葉樹", - "reading": "コウヨウジュ", - "meaning": "broadleaf tree" - } - ], - "kunyomiExamples": [ - { - "example": "木", - "reading": "き", - "meaning": "tree, shrub, bush, wood, timber" - }, - { - "example": "木々", - "reading": "きぎ", - "meaning": "(many) trees, every tree, all kinds of trees" - }, - { - "example": "一樹", - "reading": "いちじゅ", - "meaning": "one tree, a tree" - }, - { - "example": "楷の木", - "reading": "かいのき", - "meaning": "Chinese pistache (Pistacia chinensis)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "口", - "土", - "寸", - "并", - "木", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27193_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a39.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a39.gif", - "uri": "http://jisho.org/search/%E6%A8%B9%23kanji" - }, - { - "query": "収", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "337", - "strokeCount": 4, - "meaning": "income, obtain, reap, pay, supply, store", - "kunyomi": [ - "おさ.める", - "おさ.まる" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "収穫", - "reading": "シュウカク", - "meaning": "harvest, crop, ingathering, fruits (of one's labors), gain, result, returns" - }, - { - "example": "収益", - "reading": "シュウエキ", - "meaning": "earnings, proceeds, returns, revenue" - }, - { - "example": "徴収", - "reading": "チョウシュウ", - "meaning": "collection (of fees, taxes, etc.), levy" - }, - { - "example": "増収", - "reading": "ゾウシュウ", - "meaning": "increase in yield" - } - ], - "kunyomiExamples": [ - { - "example": "収める", - "reading": "おさめる", - "meaning": "to dedicate, to make an offering, to pay (fees), to supply, to store, to finish, to bring to a close, to restore (something to its place), to achieve (e.g. a result)" - }, - { - "example": "収まる", - "reading": "おさまる", - "meaning": "to fit into (a box, frame, category, etc.), to be contained within, to fall within (e.g. a budget), to settle down (into), to be installed (in one's rightful place), to be returned (to one's original position), to settle into (one's position), to take up (a post), to occupy (a role), to be delivered, to be paid (e.g. taxes), to be settled (dispute, conflict, etc.), to be sorted, to subside (e.g. wind), to calm down, to abate, to be satisfied (e.g. with an answer), to consent, to agree" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "又", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21454_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053ce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53ce.gif", - "uri": "http://jisho.org/search/%E5%8F%8E%23kanji" - }, - { - "query": "宗", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "997", - "strokeCount": 8, - "meaning": "religion, sect, denomination, main point, origin, essence", - "kunyomi": [ - "むね" - ], - "onyomi": [ - "シュウ", - "ソウ" - ], - "onyomiExamples": [ - { - "example": "宗", - "reading": "シュウ", - "meaning": "sect, denomination, tenets (of a religious sect)" - }, - { - "example": "宗教", - "reading": "シュウキョウ", - "meaning": "religion, religious affiliation, belief, faith, creed, religious activity" - }, - { - "example": "浄土真宗", - "reading": "ジョウドシンシュウ", - "meaning": "Jōdo Shinshū (offshoot of the Jōdo sect), True Pure Land School" - }, - { - "example": "浄土宗", - "reading": "ジョウドシュウ", - "meaning": "Pure Land sect (of Buddhism), Jodo (sect)" - }, - { - "example": "宗", - "reading": "ソウ", - "meaning": "origin, source, virtuous ancestor" - }, - { - "example": "宗家", - "reading": "ソウケ", - "meaning": "head of family, originator" - }, - { - "example": "大宗", - "reading": "タイソウ", - "meaning": "leading figure, foundation" - }, - { - "example": "皇宗", - "reading": "コウソウ", - "meaning": "imperial ancestors" - } - ], - "kunyomiExamples": [ - { - "example": "旨", - "reading": "むね", - "meaning": "principle, aim, main purpose, central part, pillar, purport, gist, drift, meaning, instructions, orders, intention, wishes" - }, - { - "example": "正宗", - "reading": "まさむね", - "meaning": "famous sword, sword blade by Masamune, sake, Japanese rice wine, brand of sake from Nada region during Tenpō era (1830-1844)" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "二", - "宀", - "小", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23447_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b97.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b97.gif", - "uri": "http://jisho.org/search/%E5%AE%97%23kanji" - }, - { - "query": "就", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "624", - "strokeCount": 12, - "meaning": "concerning, settle, take position, depart, study, per", - "kunyomi": [ - "つ.く", - "つ.ける" - ], - "onyomi": [ - "シュウ", - "ジュ" - ], - "onyomiExamples": [ - { - "example": "就業", - "reading": "シュウギョウ", - "meaning": "employment, starting work" - }, - { - "example": "就学", - "reading": "シュウガク", - "meaning": "entering school, school attendance" - }, - { - "example": "去就", - "reading": "キョシュウ", - "meaning": "leaving or staying, (one's) course of action, (one's) position, (one's) attitude" - }, - { - "example": "進退去就", - "reading": "シンタイキョシュウ", - "meaning": "one's course of action, deciding what to do with oneself, whether staying in the present position or leaving it" - }, - { - "example": "本懐成就", - "reading": "ホンカイジョウジュ", - "meaning": "realization of a great ambition, attainment of one's most cherished desire, one's earnest prayer being answered" - }, - { - "example": "不空成就", - "reading": "フクウジョウジュ", - "meaning": "Amoghasiddhi, Infallible Magic (a dhyani-Buddha)" - } - ], - "kunyomiExamples": [ - { - "example": "就く", - "reading": "つく", - "meaning": "to take (seat, position, course, office, etc.), to assume, to be hired, to be employed, to ascend (the throne), to accede, to start (on a journey), to commence, to depart, to study (under teacher), to be an apprentice" - }, - { - "example": "就ける", - "reading": "つける", - "meaning": "to install (a king, emperor, etc.), to appoint (to a post), to promote, to assign (to study under)" - } - ], - "radical": { - "symbol": "尢", - "forms": [ - "尣" - ], - "meaning": "lame" - }, - "parts": [ - "丶", - "亠", - "口", - "小", - "尢", - "尤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23601_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c31.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c31.gif", - "uri": "http://jisho.org/search/%E5%B0%B1%23kanji" - }, - { - "query": "衆", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "450", - "strokeCount": 12, - "meaning": "masses, great numbers, multitude, populace", - "kunyomi": [ - "おお.い" - ], - "onyomi": [ - "シュウ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "衆", - "reading": "シュウ", - "meaning": "great numbers (of people), numerical superiority, masses, people, folk, clique, bunch" - }, - { - "example": "衆院", - "reading": "シュウイン", - "meaning": "House of Representatives (lower house of the National Diet of Japan)" - }, - { - "example": "若い衆", - "reading": "ワカイシュ", - "meaning": "young man, youth, lad, servant boy, young shopboy" - }, - { - "example": "全会衆", - "reading": "ゼンカイシュウ", - "meaning": "the whole assembly, the whole congregation" - }, - { - "example": "衆", - "reading": "シュウ", - "meaning": "great numbers (of people), numerical superiority, masses, people, folk, clique, bunch" - }, - { - "example": "衆院", - "reading": "シュウイン", - "meaning": "House of Representatives (lower house of the National Diet of Japan)" - }, - { - "example": "若い衆", - "reading": "ワカイシュ", - "meaning": "young man, youth, lad, servant boy, young shopboy" - }, - { - "example": "僧衆", - "reading": "ソウシュウ", - "meaning": "large number of priests" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "血", - "meaning": "blood" - }, - "parts": [ - "皿", - "糸", - "血" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34886_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08846.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8846.gif", - "uri": "http://jisho.org/search/%E8%A1%86%23kanji" - }, - { - "query": "従", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "601", - "strokeCount": 10, - "meaning": "accompany, obey, submit to, comply, follow, secondary, incidental, subordinate", - "kunyomi": [ - "したが.う", - "したが.える", - "より" - ], - "onyomi": [ - "ジュウ", - "ショウ", - "ジュ" - ], - "onyomiExamples": [ - { - "example": "従", - "reading": "ジュウ", - "meaning": "subordinate, secondary, junior, incidental" - }, - { - "example": "従業員", - "reading": "ジュウギョウイン", - "meaning": "employee, worker" - }, - { - "example": "専従", - "reading": "センジュウ", - "meaning": "working exclusively for, working full-time (for)" - }, - { - "example": "侍従", - "reading": "ジジュウ", - "meaning": "chamberlain" - }, - { - "example": "従容", - "reading": "ショウヨウ", - "meaning": "calm, composed, tranquil" - }, - { - "example": "従容自若", - "reading": "ショウヨウジジャク", - "meaning": "having presence of mind, imperturbable, calm and self-possessed, with serenity" - }, - { - "example": "追従", - "reading": "ツイショウ", - "meaning": "flattery, sycophancy, adulation" - }, - { - "example": "阿諛追従", - "reading": "アユツイショウ", - "meaning": "excessive flattery, adulation" - }, - { - "example": "従", - "reading": "ジュ", - "meaning": "lesser (of equal court ranks), lower, junior" - }, - { - "example": "従", - "reading": "ジュウ", - "meaning": "subordinate, secondary, junior, incidental" - } - ], - "kunyomiExamples": [ - { - "example": "従う", - "reading": "したがう", - "meaning": "to obey (an order, law, etc.), to abide by (a rule, custom, etc.), to follow, to observe, to conform to, to yield to, to follow (a person), to accompany, to go with, to go alongside (e.g. a river), to follow (e.g. a sign), to serve (as), to engage in (work)" - }, - { - "example": "従える", - "reading": "したがえる", - "meaning": "to be accompanied by, to be attended by, to take along (someone), to conquer, to subjugate, to subdue" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "并", - "彳", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24467_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f93.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f93.gif", - "uri": "http://jisho.org/search/%E5%BE%93%23kanji" - }, - { - "query": "縦", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1258", - "strokeCount": 16, - "meaning": "vertical, length, height, self-indulgent, wayward", - "kunyomi": [ - "たて" - ], - "onyomi": [ - "ジュウ" - ], - "onyomiExamples": [ - { - "example": "縦断", - "reading": "ジュウダン", - "meaning": "running through (north-south), cutting across, travelling across, cutting vertically, sectioning longitudinally" - }, - { - "example": "縦横", - "reading": "ジュウオウ", - "meaning": "length and width, length and breadth, lengthwise and crosswise, longitude and latitude, vertical and horizontal, four cardinal points, every direction, as one wishes, as one pleases, at will, warp and weft, warp and woof" - }, - { - "example": "無線操縦", - "reading": "ムセンソウジュウ", - "meaning": "radio-controlled (plane)" - }, - { - "example": "自動操縦", - "reading": "ジドウソウジュウ", - "meaning": "automatic pilot, autopilot, automatic control" - } - ], - "kunyomiExamples": [ - { - "example": "縦", - "reading": "たて", - "meaning": "the vertical, height, front-to-back, length, north-to-south, vertical (relationship), hierarchy, (weaving) warp" - }, - { - "example": "縦横", - "reading": "じゅうおう", - "meaning": "length and width, length and breadth, lengthwise and crosswise, longitude and latitude, vertical and horizontal, four cardinal points, every direction, as one wishes, as one pleases, at will, warp and weft, warp and woof" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "并", - "幺", - "彳", - "疋", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32294_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e26.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e26.gif", - "uri": "http://jisho.org/search/%E7%B8%A6%23kanji" - }, - { - "query": "縮", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "909", - "strokeCount": 17, - "meaning": "shrink, contract, shrivel, wrinkle, reduce", - "kunyomi": [ - "ちぢ.む", - "ちぢ.まる", - "ちぢ.める", - "ちぢ.れる", - "ちぢ.らす" - ], - "onyomi": [ - "シュク" - ], - "onyomiExamples": [ - { - "example": "縮", - "reading": "シュク", - "meaning": "wearing armour (armor), counter for suits of armour" - }, - { - "example": "縮小", - "reading": "シュクショウ", - "meaning": "reduction, curtailment" - }, - { - "example": "凝縮", - "reading": "ギョウシュク", - "meaning": "condensation (of ideas, emotions, etc.), condensation (of a vapour or gas)" - }, - { - "example": "濃縮", - "reading": "ノウシュク", - "meaning": "concentration (e.g. of a solution), enrichment, condensation" - } - ], - "kunyomiExamples": [ - { - "example": "縮む", - "reading": "ちぢむ", - "meaning": "to shrink, to contract, to diminish (in size)" - }, - { - "example": "縮まる", - "reading": "ちぢまる", - "meaning": "to shorten, to narrow, to close, to shrink" - }, - { - "example": "縮める", - "reading": "ちぢめる", - "meaning": "to shorten, to reduce, to condense, to shrink, to crumple (fabric), to wrinkle, to make (one's body) smaller, to draw in (one's legs), to duck (one's head)" - }, - { - "example": "縮れる", - "reading": "ちぢれる", - "meaning": "to be wavy, to be curled, to be frizzled" - }, - { - "example": "縮らす", - "reading": "ちぢらす", - "meaning": "to curl, to crimp" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "化", - "宀", - "小", - "幺", - "白", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32302_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e2e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e2e.gif", - "uri": "http://jisho.org/search/%E7%B8%AE%23kanji" - }, - { - "query": "熟", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1415", - "strokeCount": 15, - "meaning": "mellow, ripen, mature, acquire skill", - "kunyomi": [ - "う.れる" - ], - "onyomi": [ - "ジュク" - ], - "onyomiExamples": [ - { - "example": "熟練", - "reading": "ジュクレン", - "meaning": "skill, dexterity, proficiency" - }, - { - "example": "熟知", - "reading": "ジュクチ", - "meaning": "being familiar with, having a thorough knowledge of, being well-informed about" - }, - { - "example": "半熟", - "reading": "ハンジュク", - "meaning": "half-cooked, half-done, soft-boiled, half-ripe, unripe" - }, - { - "example": "完熟", - "reading": "カンジュク", - "meaning": "full ripeness, full maturity" - } - ], - "kunyomiExamples": [ - { - "example": "熟れる", - "reading": "うれる", - "meaning": "to ripen (fruit, grain, etc.), to become ripe" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "丶", - "九", - "亠", - "口", - "子", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29087_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0719f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/719f.gif", - "uri": "http://jisho.org/search/%E7%86%9F%23kanji" - }, - { - "query": "純", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1044", - "strokeCount": 10, - "meaning": "genuine, purity, innocence, net (profit)", - "kunyomi": [], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "純", - "reading": "ジュン", - "meaning": "innocent, chaste, naive, pure, unmixed, genuine, unalloyed" - }, - { - "example": "純益", - "reading": "ジュンエキ", - "meaning": "clear profit, net income, net profit" - }, - { - "example": "清純", - "reading": "セイジュン", - "meaning": "purity, innocence" - }, - { - "example": "芳醇", - "reading": "ホウジュン", - "meaning": "mellow (flavor or fragrance, esp. alcohol), rich, full-bodied, superior" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "屯", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32020_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d14.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d14.gif", - "uri": "http://jisho.org/search/%E7%B4%94%23kanji" - }, - { - "query": "処", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "547", - "strokeCount": 5, - "meaning": "dispose, manage, deal with, sentence, condemn, act, behave, place", - "kunyomi": [ - "ところ", - "-こ", - "お.る" - ], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "処刑", - "reading": "ショケイ", - "meaning": "execution" - }, - { - "example": "処遇", - "reading": "ショグウ", - "meaning": "treatment (of a person), dealing with" - }, - { - "example": "随所", - "reading": "ズイショ", - "meaning": "everywhere, at every turn" - }, - { - "example": "一所", - "reading": "イッショ", - "meaning": "one place, the same place, one person, together" - } - ], - "kunyomiExamples": [ - { - "example": "所", - "reading": "ところ", - "meaning": "place, spot, scene, site, address, district, area, locality, one's house, point, aspect, side, facet, passage (in text), part, space, room, thing, matter, whereupon, as a result, about to, on the verge of, was just doing, was in the process of doing, have just done, just finished doing" - }, - { - "example": "所々", - "reading": "ところどころ", - "meaning": "here and there, some parts (of something), several places" - }, - { - "example": "一所", - "reading": "いっしょ", - "meaning": "one place, the same place, one person, together" - }, - { - "example": "候処", - "reading": "そうろうところ", - "meaning": "just, but" - } - ], - "radical": { - "symbol": "几", - "meaning": "table" - }, - "parts": [ - "几", - "夂", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20966_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051e6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51e6.gif", - "uri": "http://jisho.org/search/%E5%87%A6%23kanji" - }, - { - "query": "署", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "725", - "strokeCount": 13, - "meaning": "signature, govt office, police station", - "kunyomi": [], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "署", - "reading": "ショ", - "meaning": "station (esp. a police station), office (e.g. tax office)" - }, - { - "example": "署員", - "reading": "ショイン", - "meaning": "staff member, station employee, official" - }, - { - "example": "支署", - "reading": "シショ", - "meaning": "substation" - }, - { - "example": "副署", - "reading": "フクショ", - "meaning": "countersignature" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "日", - "老", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32626_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f72.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f72.gif", - "uri": "http://jisho.org/search/%E7%BD%B2%23kanji" - }, - { - "query": "諸", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "658", - "strokeCount": 15, - "meaning": "various, many, several, together", - "kunyomi": [ - "もろ" - ], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "諸", - "reading": "ショ", - "meaning": "various, many, several" - }, - { - "example": "諸君", - "reading": "ショクン", - "meaning": "you (people), gentlemen, ladies and gentlemen, my friends, everyone" - } - ], - "kunyomiExamples": [ - { - "example": "諸", - "reading": "もろ", - "meaning": "both, many, various, all, together" - }, - { - "example": "諸刃", - "reading": "もろは", - "meaning": "double-edged, double-edged blade" - }, - { - "example": "その他もろもろ", - "reading": "そのたもろもろ", - "meaning": "and various other things, and many others, and all the rest, and so on and so forth" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "日", - "老", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35576_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08af8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8af8.gif", - "uri": "http://jisho.org/search/%E8%AB%B8%23kanji" - }, - { - "query": "除", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "594", - "strokeCount": 10, - "meaning": "exclude, division (x/3), remove, abolish, cancel, except", - "kunyomi": [ - "のぞ.く", - "-よ.け" - ], - "onyomi": [ - "ジョ", - "ジ" - ], - "onyomiExamples": [ - { - "example": "除", - "reading": "ジョ", - "meaning": "division" - }, - { - "example": "除外", - "reading": "ジョガイ", - "meaning": "exception, exclusion" - }, - { - "example": "切除", - "reading": "セツジョ", - "meaning": "cut off, cut out, ablation, resection, surgical removal" - }, - { - "example": "防除", - "reading": "ボウジョ", - "meaning": "prevention (of plant disease and insect damage), (pest) control, extermination (of harmful insects), protection (against natural disasters)" - }, - { - "example": "除", - "reading": "ジョ", - "meaning": "division" - }, - { - "example": "除外", - "reading": "ジョガイ", - "meaning": "exception, exclusion" - }, - { - "example": "分解掃除", - "reading": "ブンカイソウジ", - "meaning": "overhaul, taking apart and cleaning" - }, - { - "example": "掃き掃除", - "reading": "ハキソウジ", - "meaning": "sweeping and cleaning" - } - ], - "kunyomiExamples": [ - { - "example": "除く", - "reading": "のぞく", - "meaning": "to remove, to eliminate, to eradicate, to exclude, to except" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "一", - "个", - "示", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38500_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09664.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9664.gif", - "uri": "http://jisho.org/search/%E9%99%A4%23kanji" - }, - { - "query": "承", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "775", - "strokeCount": 8, - "meaning": "acquiesce, hear, listen to, be informed, receive", - "kunyomi": [ - "うけたまわ.る", - "う.ける" - ], - "onyomi": [ - "ショウ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "承", - "reading": "ショウ", - "meaning": "second line of a four-line Chinese poem" - }, - { - "example": "承諾", - "reading": "ショウダク", - "meaning": "consent, approval, acceptance, agreement, compliance" - }, - { - "example": "伝承", - "reading": "デンショウ", - "meaning": "handing down (information), legend, tradition, folklore, transmission" - }, - { - "example": "永承", - "reading": "エイショウ", - "meaning": "Eishō era (1046.4.14-1053.1.11)" - }, - { - "example": "承安", - "reading": "ショウアン", - "meaning": "Shōan era (1171.4.21-1175.7.28), Jōan era" - }, - { - "example": "承応", - "reading": "ショウオウ", - "meaning": "Shōō era (1652.9.18-1655.4.13), Jōō era" - } - ], - "kunyomiExamples": [ - { - "example": "承る", - "reading": "うけたまわる", - "meaning": "to hear, to be told, to know, to receive (order), to undertake, to comply, to take (a reservation, etc.)" - }, - { - "example": "受ける", - "reading": "うける", - "meaning": "to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "亅", - "二", - "手" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25215_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0627f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/627f.gif", - "uri": "http://jisho.org/search/%E6%89%BF%23kanji" - }, - { - "query": "将", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "634", - "strokeCount": 10, - "meaning": "leader, commander, general, admiral, or, and again, soon, from now on, just about", - "kunyomi": [ - "まさ.に", - "はた", - "まさ", - "ひきい.る", - "もって" - ], - "onyomi": [ - "ショウ", - "ソウ" - ], - "onyomiExamples": [ - { - "example": "将", - "reading": "ショウ", - "meaning": "commander, general, leader" - }, - { - "example": "将棋", - "reading": "ショウギ", - "meaning": "shogi, Japanese chess" - }, - { - "example": "少将", - "reading": "ショウショウ", - "meaning": "major general, rear admiral, air commodore" - }, - { - "example": "王将", - "reading": "オウショウ", - "meaning": "king (of the senior player)" - } - ], - "kunyomiExamples": [ - { - "example": "正に", - "reading": "まさに", - "meaning": "exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally" - }, - { - "example": "将", - "reading": "はた", - "meaning": "or, otherwise, furthermore, also, perhaps, by some chance, possibly, that being said, be that as it may, however, but, not to mention, needless to say, as expected, sure enough, really, at all" - }, - { - "example": "将又", - "reading": "はたまた", - "meaning": "or" - }, - { - "example": "正に", - "reading": "まさに", - "meaning": "exactly, surely, certainly, just, right then, just then, at that moment, just (about to), on the verge (of doing or happening), duly, naturally" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "寸", - "爪", - "爿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23558_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c06.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c06.gif", - "uri": "http://jisho.org/search/%E5%B0%86%23kanji" - }, - { - "query": "傷", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "845", - "strokeCount": 13, - "meaning": "wound, hurt, injure, impair, pain, injury, cut, gash, scar, weak point", - "kunyomi": [ - "きず", - "いた.む", - "いた.める" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "傷跡", - "reading": "キズアト", - "meaning": "scar" - }, - { - "example": "傷害", - "reading": "ショウガイ", - "meaning": "wound, injury, accident, casualty, assault, inflicting bodily injury" - }, - { - "example": "殺傷", - "reading": "サッショウ", - "meaning": "killing and wounding, bloodshed" - }, - { - "example": "脳挫傷", - "reading": "ノウザショウ", - "meaning": "cerebral contusion" - } - ], - "kunyomiExamples": [ - { - "example": "傷", - "reading": "きず", - "meaning": "wound, injury, cut, gash, bruise, scratch, scrape, scar, chip, crack, scratch, nick, flaw, defect, weakness, weak point, stain (on one's reputation), disgrace, dishonor, dishonour, (emotional) hurt, hurt feelings" - }, - { - "example": "傷跡", - "reading": "きずあと", - "meaning": "scar" - }, - { - "example": "無傷", - "reading": "むきず", - "meaning": "unhurt, uninjured, unwounded, unscathed, unharmed, flawless (e.g. gem), unblemished, undamaged, perfect (condition), spotless (e.g. reputation), faultless (e.g. performance), perfect (record), without failure, without defeat" - }, - { - "example": "古傷", - "reading": "ふるきず", - "meaning": "old wound, scar, old unpleasant incident, past misdeed" - }, - { - "example": "痛む", - "reading": "いたむ", - "meaning": "to hurt, to ache, to feel a pain, to be injured, to be spoiled (e.g. food), to be damaged" - }, - { - "example": "痛める", - "reading": "いためる", - "meaning": "to hurt, to injure, to cause pain, to harm, to damage, to spoil, to worry, to bother, to be grieved over, to afflict, to cause financial loss, to hurt one's pocket" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "勹", - "勿", - "化", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20663_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050b7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50b7.gif", - "uri": "http://jisho.org/search/%E5%82%B7%23kanji" - }, - { - "query": "障", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "742", - "strokeCount": 14, - "meaning": "hinder, hurt, harm", - "kunyomi": [ - "さわ.る" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "障害者", - "reading": "ショウガイシャ", - "meaning": "disabled person, handicapped person, person with a (physical or mental) disability" - }, - { - "example": "障害", - "reading": "ショウガイ", - "meaning": "obstacle, impediment, hindrance, difficulty, barrier, handicap, impairment, disability, disorder, malfunction" - }, - { - "example": "安全保障", - "reading": "アンゼンホショウ", - "meaning": "security guarantee (e.g. military security, network security, etc.)" - }, - { - "example": "囲障", - "reading": "イショウ", - "meaning": "fence (esp. between buildings)" - } - ], - "kunyomiExamples": [ - { - "example": "障る", - "reading": "さわる", - "meaning": "to be harmful to, to hinder, to interfere with, to irritate" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "十", - "日", - "立", - "阡", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38556_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0969c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/969c.gif", - "uri": "http://jisho.org/search/%E9%9A%9C%23kanji" - }, - { - "query": "蒸", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1552", - "strokeCount": 13, - "meaning": "steam, heat, sultry, foment, get musty", - "kunyomi": [ - "む.す", - "む.れる", - "む.らす" - ], - "onyomi": [ - "ジョウ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "蒸気", - "reading": "ジョウキ", - "meaning": "steam, vapour, vapor, steamboat, steam locomotive" - }, - { - "example": "蒸発", - "reading": "ジョウハツ", - "meaning": "evaporation, disappearance (of people intentionally concealing their whereabouts), unexplained disappearance" - }, - { - "example": "燻蒸", - "reading": "クンジョウ", - "meaning": "fumigation, smoking (out)" - }, - { - "example": "蒸籠", - "reading": "セイロ", - "meaning": "bamboo steamer, steaming basket, wooden frame holder with reed base used to steam food over a pot, soba served on a small wickerwork tray, wickerwork tray (for serving soba)" - }, - { - "example": "せいろ蒸し", - "reading": "セイロムシ", - "meaning": "steaming (of food) using a bamboo steamer" - } - ], - "kunyomiExamples": [ - { - "example": "蒸す", - "reading": "むす", - "meaning": "to steam (food, towel, etc.), to be hot and humid, to be sultry" - }, - { - "example": "蒸れる", - "reading": "むれる", - "meaning": "to be stuffy, to moulder, to molder" - }, - { - "example": "蒸らす", - "reading": "むらす", - "meaning": "to cook by steam" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "一", - "亅", - "杰", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33976_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/084b8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/84b8.gif", - "uri": "http://jisho.org/search/%E8%92%B8%23kanji" - }, - { - "query": "針", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "505", - "strokeCount": 10, - "meaning": "needle, pin, staple, stinger", - "kunyomi": [ - "はり" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "鍼灸", - "reading": "シンキュウ", - "meaning": "acupuncture and moxibustion" - }, - { - "example": "針葉樹", - "reading": "シンヨウジュ", - "meaning": "conifer, needle-leaved tree" - }, - { - "example": "指針", - "reading": "シシン", - "meaning": "needle (compass, gauge, etc.), hand (clock), indicator, pointer, index, guiding principle, guideline, guide" - }, - { - "example": "検針", - "reading": "ケンシン", - "meaning": "inspection of a meter, reading a meter, needle detection (in garments, etc.), needle inspection" - } - ], - "kunyomiExamples": [ - { - "example": "針", - "reading": "はり", - "meaning": "needle, pin, hook, stinger, thorn, hand (e.g. clock, etc.), pointer, staple (for a stapler), needlework, sewing, malice, counter for stitches" - }, - { - "example": "針金", - "reading": "はりがね", - "meaning": "wire" - }, - { - "example": "無外傷性針", - "reading": "むがいしょうせいはり", - "meaning": "atraumatic needle" - }, - { - "example": "お針", - "reading": "おはり", - "meaning": "needlework, sewing, seamstress" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "十", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37341_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091dd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91dd.gif", - "uri": "http://jisho.org/search/%E9%87%9D%23kanji" - }, - { - "query": "仁", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1332", - "strokeCount": 4, - "meaning": "humanity, virtue, benevolence, charity, man, kernel", - "kunyomi": [], - "onyomi": [ - "ジン", - "ニ", - "ニン" - ], - "onyomiExamples": [ - { - "example": "仁", - "reading": "ジン", - "meaning": "benevolence (esp. as a virtue of Confucianism), consideration, compassion, humanity, charity, human, kernel, nucleolus" - }, - { - "example": "任侠", - "reading": "ニンキョウ", - "meaning": "chivalry, generosity, heroism, chivalrous spirit, helping the weak and fighting the strong" - }, - { - "example": "同仁", - "reading": "ドウジン", - "meaning": "universal benevolence" - }, - { - "example": "一視同人", - "reading": "イッシドウジン", - "meaning": "loving every human being with impartiality, universal brotherhood, universal benevolence" - }, - { - "example": "仁", - "reading": "ジン", - "meaning": "benevolence (esp. as a virtue of Confucianism), consideration, compassion, humanity, charity, human, kernel, nucleolus" - }, - { - "example": "仁王", - "reading": "ニオウ", - "meaning": "two Deva kings, guardian gods of Buddhism who stand at the entrance of a Buddhist temple" - }, - { - "example": "亜麻仁", - "reading": "アマニ", - "meaning": "flaxseed, linseed" - }, - { - "example": "仁", - "reading": "ジン", - "meaning": "benevolence (esp. as a virtue of Confucianism), consideration, compassion, humanity, charity, human, kernel, nucleolus" - }, - { - "example": "任侠", - "reading": "ニンキョウ", - "meaning": "chivalry, generosity, heroism, chivalrous spirit, helping the weak and fighting the strong" - }, - { - "example": "永仁", - "reading": "エイニン", - "meaning": "Einin era (1293.8.5-1299.4.25)" - }, - { - "example": "応仁", - "reading": "オウニン", - "meaning": "Ōnin era (1467.3.5-1469.4.28)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "二", - "化" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20161_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ec1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ec1.gif", - "uri": "http://jisho.org/search/%E4%BB%81%23kanji" - }, - { - "query": "垂", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1720", - "strokeCount": 8, - "meaning": "droop, suspend, hang, slouch", - "kunyomi": [ - "た.れる", - "た.らす", - "た.れ", - "-た.れ", - "なんなんと.す" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "垂直", - "reading": "スイチョク", - "meaning": "vertical, perpendicular" - }, - { - "example": "垂纓", - "reading": "スイエイ", - "meaning": "hanging tail (of a traditional Japanese hat), drooping tail" - }, - { - "example": "口蓋垂", - "reading": "コウガイスイ", - "meaning": "uvula" - }, - { - "example": "虫垂", - "reading": "チュウスイ", - "meaning": "(vermiform) appendix" - } - ], - "kunyomiExamples": [ - { - "example": "垂れる", - "reading": "たれる", - "meaning": "to hang, to droop, to dangle, to sag, to lower, to pull down, to leave behind (at death), to give, to confer, to drip, to ooze, to trickle, to drop" - }, - { - "example": "垂らす", - "reading": "たらす", - "meaning": "to dribble, to spill, to suspend, to hang down, to slouch, to dangle" - }, - { - "example": "垂れ", - "reading": "たれ", - "meaning": "sauce (esp. soy or mirin-based dipping sauce), hanging, something hanging (flap, lappet, etc.), (kendo) loin guard, kanji radical enclosing the top-left corner of a character, -ass, -head" - }, - { - "example": "垂れ幕", - "reading": "たれまく", - "meaning": "hanging banner, hanging screen, curtain" - }, - { - "example": "垂んとす", - "reading": "なりなんとす", - "meaning": "to close in on (30 years of age, etc.), to approach, to get close to" - }, - { - "example": "垂んとする", - "reading": "なんなんとする", - "meaning": "to close in on (30 years of age, etc.), to approach, to get close to" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "一", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22402_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05782.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5782.gif", - "uri": "http://jisho.org/search/%E5%9E%82%23kanji" - }, - { - "query": "推", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "507", - "strokeCount": 11, - "meaning": "conjecture, infer, guess, suppose, support, push (for)", - "kunyomi": [ - "お.す" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "推計", - "reading": "スイケイ", - "meaning": "estimate, estimation" - }, - { - "example": "推移", - "reading": "スイイ", - "meaning": "transition, change, progress, development, shift, passing (of time)" - }, - { - "example": "類推", - "reading": "ルイスイ", - "meaning": "analogy, analogical reasoning, analogical inference, analogy" - }, - { - "example": "邪推", - "reading": "ジャスイ", - "meaning": "distrust, unjust suspicion" - } - ], - "kunyomiExamples": [ - { - "example": "推す", - "reading": "おす", - "meaning": "to recommend, to endorse (e.g. a candidate), to nominate, to support, to back, to infer (from), to deduce, to gather, to conjecture, to surmise, to think (something) through, to ponder deeply" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25512_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063a8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63a8.gif", - "uri": "http://jisho.org/search/%E6%8E%A8%23kanji" - }, - { - "query": "寸", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1669", - "strokeCount": 3, - "meaning": "measurement, tenth of a shaku, a little, small", - "kunyomi": [], - "onyomi": [ - "スン" - ], - "onyomiExamples": [ - { - "example": "寸", - "reading": "スン", - "meaning": "sun (approx. 3.03 cm), length, measurement, shortness, tininess" - }, - { - "example": "寸前", - "reading": "スンゼン", - "meaning": "just before, on the verge of, on the brink of, just in front of, just ahead of" - }, - { - "example": "原寸", - "reading": "ゲンスン", - "meaning": "actual size, full size" - }, - { - "example": "外寸", - "reading": "ガイスン", - "meaning": "external dimensions, outer size" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23544_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bf8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bf8.gif", - "uri": "http://jisho.org/search/%E5%AF%B8%23kanji" - }, - { - "query": "盛", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "712", - "strokeCount": 11, - "meaning": "boom, prosper, copulate", - "kunyomi": [ - "も.る", - "さか.る", - "さか.ん" - ], - "onyomi": [ - "セイ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "盛大", - "reading": "セイダイ", - "meaning": "grand, magnificent, lavish, large scale, prosperous, thriving, lively, forceful, powerful, vigorous" - }, - { - "example": "盛況", - "reading": "セイキョウ", - "meaning": "success, prosperity, boom" - }, - { - "example": "隆盛", - "reading": "リュウセイ", - "meaning": "prosperity, flourishing, thriving" - }, - { - "example": "士気旺盛", - "reading": "シキオウセイ", - "meaning": "morale being very high, heightened fighting spirit" - }, - { - "example": "盛者", - "reading": "ショウジャ", - "meaning": "prosperous person, powerful person" - }, - { - "example": "盛者必衰", - "reading": "ジョウシャヒッスイ", - "meaning": "even the prosperous inevitably decay, sic transit gloria mundi, all that's fair must fade" - }, - { - "example": "強盛", - "reading": "キョウセイ", - "meaning": "might, mighty" - }, - { - "example": "熾盛", - "reading": "シジョウ", - "meaning": "vigor (like leaping flames), liveliness" - } - ], - "kunyomiExamples": [ - { - "example": "盛る", - "reading": "もる", - "meaning": "to serve (in a bowl, on a plate, etc.), to dish out, to dish up, to fill (a bowl) with, to pile up, to heap up, to fill up, to stack up, to administer (medicine, poison), to dose out, to prescribe, to put into (e.g. information in a report, meaning in a statement), to mark out (e.g. scale), to graduate (e.g. thermometer), to exaggerate, to apply heavy makeup" - }, - { - "example": "盛る", - "reading": "さかる", - "meaning": "to prosper, to flourish, to copulate (animals)" - }, - { - "example": "盛ん", - "reading": "さかん", - "meaning": "prosperous, flourishing, thriving, successful, popular, widespread, active, lively, energetic, vigorous, brisk, strong, enthusiastic, eager, hearty, frequent, repeated" - }, - { - "example": "盛んな歓迎", - "reading": "さかんなかんげい", - "meaning": "cordial reception" - } - ], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "ノ", - "戈", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30427_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76db.gif", - "uri": "http://jisho.org/search/%E7%9B%9B%23kanji" - }, - { - "query": "聖", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1165", - "strokeCount": 13, - "meaning": "holy, saint, sage, master, priest", - "kunyomi": [ - "ひじり" - ], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "聖", - "reading": "セイ", - "meaning": "Saint, St., S., sacred, holy, pure" - }, - { - "example": "聖域", - "reading": "セイイキ", - "meaning": "sacred precincts, sanctuary, consecrated ground, holy ground, issue that is regarded as being off-limits, matter that is not up for discussion" - }, - { - "example": "棋聖", - "reading": "キセイ", - "meaning": "great master of go, great master of shogi" - }, - { - "example": "亜聖", - "reading": "アセイ", - "meaning": "sage of the second order" - }, - { - "example": "精霊", - "reading": "ショウリョウ", - "meaning": "spirit of the deceased" - }, - { - "example": "聖者", - "reading": "セイジャ", - "meaning": "saint" - }, - { - "example": "大聖", - "reading": "ダイショウ", - "meaning": "Buddha, high-ranked bodhisattva" - }, - { - "example": "仏餉", - "reading": "ブッショウ", - "meaning": "rice offered to Buddha" - } - ], - "kunyomiExamples": [ - { - "example": "聖", - "reading": "ひじり", - "meaning": "highly virtuous monk, monk, Buddhist solitary, Buddhist missionary, saint (i.e. a virtuous person), emperor, master, expert" - }, - { - "example": "聖柄", - "reading": "ひじりづか", - "meaning": "sword hilt shaped similar to the handle of a vajra, plain, wooden sword hilt (as opposed to those wrapped in sharkskin)" - }, - { - "example": "高野聖", - "reading": "こうやひじり", - "meaning": "Mount Kōya missionary (usu. low-ranking monk), Lethocerus deyrollei (species of giant water bug)" - } - ], - "radical": { - "symbol": "耳", - "meaning": "ear" - }, - "parts": [ - "口", - "王", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32854_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08056.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8056.gif", - "uri": "http://jisho.org/search/%E8%81%96%23kanji" - }, - { - "query": "誠", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1128", - "strokeCount": 13, - "meaning": "sincerity, admonish, warn, prohibit, truth, fidelity", - "kunyomi": [ - "まこと" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "誠実", - "reading": "セイジツ", - "meaning": "sincere, honest, faithful" - }, - { - "example": "誠意", - "reading": "セイイ", - "meaning": "sincerity, good faith" - }, - { - "example": "至誠", - "reading": "シセイ", - "meaning": "sincerity, devotion" - }, - { - "example": "赤誠", - "reading": "セキセイ", - "meaning": "sincerity, true heart, devotion" - } - ], - "kunyomiExamples": [ - { - "example": "誠", - "reading": "まこと", - "meaning": "truth, reality, sincerity, honesty, integrity, fidelity, that's right" - }, - { - "example": "誠に", - "reading": "まことに", - "meaning": "indeed, really, absolutely, truly, actually, very, quite" - }, - { - "example": "嘘から出たまこと", - "reading": "うそからでたまこと", - "meaning": "something intended as a lie or joke which (by chance) ends up being true, lie turned truth" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "戈", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35488_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08aa0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8aa0.gif", - "uri": "http://jisho.org/search/%E8%AA%A0%23kanji" - }, - { - "query": "舌", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1830", - "strokeCount": 6, - "meaning": "tongue, reed, clapper", - "kunyomi": [ - "した" - ], - "onyomi": [ - "ゼツ" - ], - "onyomiExamples": [ - { - "example": "舌圧子", - "reading": "ゼツアツシ", - "meaning": "tongue depressor" - }, - { - "example": "舌咽神経", - "reading": "ゼツインシンケイ", - "meaning": "glossopharyngeal nerve" - }, - { - "example": "饒舌", - "reading": "ジョウゼツ", - "meaning": "talkativeness, garrulity, loquacity" - }, - { - "example": "後舌", - "reading": "コウゼツ", - "meaning": "rear part of the tongue" - } - ], - "kunyomiExamples": [ - { - "example": "舌", - "reading": "した", - "meaning": "tongue, tongue-like object, clapper (of a bell), talon (of a lock)" - }, - { - "example": "舌打ち", - "reading": "したうち", - "meaning": "smacking lips, clicking tongue, tut-tut" - }, - { - "example": "貧乏舌", - "reading": "びんぼうじた", - "meaning": "being unable to discern good food from bad, poor person's taste (in food), unsophisticated palate" - }, - { - "example": "悪舌", - "reading": "あくぜつ", - "meaning": "evil tongue, gossip" - } - ], - "radical": { - "symbol": "舌", - "meaning": "tongue" - }, - "parts": [ - "口", - "舌" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33292_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0820c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/820c.gif", - "uri": "http://jisho.org/search/%E8%88%8C%23kanji" - }, - { - "query": "宣", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "695", - "strokeCount": 9, - "meaning": "proclaim, say, announce", - "kunyomi": [ - "のたま.う" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "宣", - "reading": "セン", - "meaning": "imperial order, imperial decree" - }, - { - "example": "宣教師", - "reading": "センキョウシ", - "meaning": "missionary" - }, - { - "example": "託宣", - "reading": "タクセン", - "meaning": "oracle" - }, - { - "example": "街宣", - "reading": "ガイセン", - "meaning": "carrying out (political) propaganda activity on the streets" - } - ], - "kunyomiExamples": [ - { - "example": "宣ふ", - "reading": "のたまう", - "meaning": "to say" - }, - { - "example": "宣う", - "reading": "のたまう", - "meaning": "to say, to be pleased to say" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "一", - "宀", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23459_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ba3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ba3.gif", - "uri": "http://jisho.org/search/%E5%AE%A3%23kanji" - }, - { - "query": "専", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "506", - "strokeCount": 9, - "meaning": "specialty, exclusive, mainly, solely", - "kunyomi": [ - "もっぱ.ら" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "専", - "reading": "セン", - "meaning": "having a fetish for ..., specializing in ..., majoring in ..., first, foremost, number one priority, doing as one pleases, acting selfishly, fired brick" - }, - { - "example": "専業", - "reading": "センギョウ", - "meaning": "special occupation, principal occupation, specialty, monopoly" - }, - { - "example": "住専", - "reading": "ジュウセン", - "meaning": "housing-loan corporation" - }, - { - "example": "高専", - "reading": "コウセン", - "meaning": "technical college, higher schools and colleges" - } - ], - "kunyomiExamples": [ - { - "example": "専ら", - "reading": "もっぱら", - "meaning": "wholly, solely, entirely, exclusively, devotedly, fixedly, principally, mostly, chiefly, mainly" - }, - { - "example": "専らにする", - "reading": "もっぱらにする", - "meaning": "devote oneself to, to do as one pleases, to act selfishly" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "十", - "寸", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23554_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c02.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c02.gif", - "uri": "http://jisho.org/search/%E5%B0%82%23kanji" - }, - { - "query": "泉", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1086", - "strokeCount": 9, - "meaning": "spring, fountain", - "kunyomi": [ - "いずみ" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "泉水", - "reading": "センスイ", - "meaning": "garden pond, miniature lake, fountain" - }, - { - "example": "泉下", - "reading": "センカ", - "meaning": "Hades, the hereafter" - }, - { - "example": "源泉", - "reading": "ゲンセン", - "meaning": "source (of a spring, etc.), source (of payment, energy, knowledge, etc.), origin, wellspring" - }, - { - "example": "天然温泉", - "reading": "テンネンオンセン", - "meaning": "natural hot spring" - } - ], - "kunyomiExamples": [ - { - "example": "泉", - "reading": "いずみ", - "meaning": "spring, fountain" - }, - { - "example": "泉熱", - "reading": "いずみねつ", - "meaning": "Izumi fever (resembles scarlet fever)" - }, - { - "example": "知識の泉", - "reading": "ちしきのいずみ", - "meaning": "source of knowledge" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "水", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27849_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cc9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cc9.gif", - "uri": "http://jisho.org/search/%E6%B3%89%23kanji" - }, - { - "query": "洗", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1168", - "strokeCount": 9, - "meaning": "wash, inquire into, probe", - "kunyomi": [ - "あら.う" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "洗", - "reading": "セン", - "meaning": "washing machine (laundry)" - }, - { - "example": "洗剤", - "reading": "センザイ", - "meaning": "detergent, cleanser, cleaning agent, washing material" - }, - { - "example": "水洗", - "reading": "スイセン", - "meaning": "washing with water, rinsing, flushing" - }, - { - "example": "杯洗", - "reading": "ハイセン", - "meaning": "small vessel or bowl in which sake cups are rinsed" - } - ], - "kunyomiExamples": [ - { - "example": "洗う", - "reading": "あらう", - "meaning": "to wash, to cleanse, to rinse, to inquire into, to investigate, to purify (one's heart), to lave (e.g. shore), to wash over (e.g. deck), to sweep" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "儿", - "土", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27927_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d17.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d17.gif", - "uri": "http://jisho.org/search/%E6%B4%97%23kanji" - }, - { - "query": "染", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "837", - "strokeCount": 9, - "meaning": "dye, color, paint, stain, print", - "kunyomi": [ - "そ.める", - "そ.まる", - "し.みる", - "し.み" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "染色体", - "reading": "センショクタイ", - "meaning": "chromosome" - }, - { - "example": "染色", - "reading": "センショク", - "meaning": "dyeing, staining, dyed colour (color)" - }, - { - "example": "媒染", - "reading": "バイセン", - "meaning": "color fixing, colour fixing, mordantizing" - }, - { - "example": "複合汚染", - "reading": "フクゴウオセン", - "meaning": "multiple contamination" - } - ], - "kunyomiExamples": [ - { - "example": "染める", - "reading": "そめる", - "meaning": "to dye, to colour, to color" - }, - { - "example": "染まる", - "reading": "そまる", - "meaning": "to be dyed, to be tainted, to be infected, to be stained, to be steeped" - }, - { - "example": "染みる", - "reading": "しみる", - "meaning": "to pierce, to penetrate, to soak in, to permeate, to sting (wound or sensitive area, etc.), to smart, to twinge, to be infected (with vice), to be steeped (with prejudice), to be influenced, to feel keenly, to make a deep impression" - }, - { - "example": "染み", - "reading": "しみ", - "meaning": "stain, spot, smudge, blot, smear, blotch, spot (on one's skin, e.g. chloasma, liver spot), blemish, discoloration, freckle" - }, - { - "example": "染みる", - "reading": "しみる", - "meaning": "to pierce, to penetrate, to soak in, to permeate, to sting (wound or sensitive area, etc.), to smart, to twinge, to be infected (with vice), to be steeped (with prejudice), to be influenced, to feel keenly, to make a deep impression" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "九", - "木", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26579_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067d3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67d3.gif", - "uri": "http://jisho.org/search/%E6%9F%93%23kanji" - }, - { - "query": "銭", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1008", - "strokeCount": 14, - "meaning": "coin, .01 yen, money", - "kunyomi": [ - "ぜに", - "すき" - ], - "onyomi": [ - "セン", - "ゼン" - ], - "onyomiExamples": [ - { - "example": "銭", - "reading": "セン", - "meaning": "hundredth of a yen, coin made of non-precious materials, one-thousandth of a kan (as a unit of currency), one-thousandth of a kan (as a unit of mass)" - }, - { - "example": "銭湯", - "reading": "セントウ", - "meaning": "public bath, bathhouse" - }, - { - "example": "間銭", - "reading": "アイセン", - "meaning": "handling fee, commission" - }, - { - "example": "追い銭", - "reading": "オイセン", - "meaning": "money paid in addition" - } - ], - "kunyomiExamples": [ - { - "example": "銭", - "reading": "ぜに", - "meaning": "round coin with a (square) hole in the center, coin made of non-precious materials, money" - }, - { - "example": "銭葵", - "reading": "ぜにあおい", - "meaning": "common mallow (Malva sylvestris var. mauritiana)" - }, - { - "example": "身銭", - "reading": "みぜに", - "meaning": "one's own money" - }, - { - "example": "日銭", - "reading": "ひぜに", - "meaning": "daily income in cash, money paid by daily installments, money paid by daily instalments" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "二", - "戈", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37549_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/092ad.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/92ad.gif", - "uri": "http://jisho.org/search/%E9%8A%AD%23kanji" - }, - { - "query": "善", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "765", - "strokeCount": 12, - "meaning": "virtuous, good, goodness", - "kunyomi": [ - "よ.い", - "い.い", - "よ.く", - "よし.とする" - ], - "onyomi": [ - "ゼン" - ], - "onyomiExamples": [ - { - "example": "善", - "reading": "ゼン", - "meaning": "good, goodness, right, virtue" - }, - { - "example": "善意", - "reading": "ゼンイ", - "meaning": "virtuous mind, good intentions, good will, positive mindset, bona fides, good faith" - }, - { - "example": "親善", - "reading": "シンゼン", - "meaning": "friendship, goodwill, friendly relations, amity" - }, - { - "example": "独善", - "reading": "ドクゼン", - "meaning": "self-righteousness, self-justified" - } - ], - "kunyomiExamples": [ - { - "example": "良い", - "reading": "よい", - "meaning": "good, excellent, fine, nice, pleasant, agreeable, sufficient, enough, ready, prepared, profitable (deal, business offer, etc.), beneficial, OK, all right, fine, no problem" - }, - { - "example": "善い行い", - "reading": "よいおこない", - "meaning": "good deed" - }, - { - "example": "いい事", - "reading": "いいこと", - "meaning": "good thing, nice thing, good excuse, good grounds, good opportunity, interjection used to impress an idea or to urge a response" - }, - { - "example": "良く", - "reading": "よく", - "meaning": "nicely, properly, well, skillfully, skilfully, frequently, often, I'm glad that you ..., thank you for ..., (you have) quite the nerve to, I don't know how you can ..." - }, - { - "example": "善くも", - "reading": "よくも", - "meaning": "how dare ..., how could ..." - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21892_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05584.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5584.gif", - "uri": "http://jisho.org/search/%E5%96%84%23kanji" - }, - { - "query": "奏", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1067", - "strokeCount": 9, - "meaning": "play music, speak to a ruler, complete", - "kunyomi": [ - "かな.でる" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "奏", - "reading": "ソウ", - "meaning": "report to the emperor" - }, - { - "example": "奏功", - "reading": "ソウコウ", - "meaning": "success, achievement, fruition" - }, - { - "example": "合奏", - "reading": "ガッソウ", - "meaning": "ensemble (e.g. orchestra, chamber group, etc.), concert" - }, - { - "example": "四重奏", - "reading": "シジュウソウ", - "meaning": "instrumental quartet" - } - ], - "kunyomiExamples": [ - { - "example": "奏でる", - "reading": "かなでる", - "meaning": "to play an instrument (esp. string instruments), to dance" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "一", - "二", - "人", - "大", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22863_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0594f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/594f.gif", - "uri": "http://jisho.org/search/%E5%A5%8F%23kanji" - }, - { - "query": "窓", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1186", - "strokeCount": 11, - "meaning": "window, pane", - "kunyomi": [ - "まど", - "てんまど", - "けむだし" - ], - "onyomi": [ - "ソウ", - "ス" - ], - "onyomiExamples": [ - { - "example": "窓外", - "reading": "ソウガイ", - "meaning": "outside a window" - }, - { - "example": "窓間壁", - "reading": "ソウカンヘキ", - "meaning": "pier" - }, - { - "example": "同窓", - "reading": "ドウソウ", - "meaning": "being a graduate of the same school, person who went to the same school, fellow alumnus" - }, - { - "example": "車窓", - "reading": "シャソウ", - "meaning": "train window, car window" - } - ], - "kunyomiExamples": [ - { - "example": "窓", - "reading": "まど", - "meaning": "window" - }, - { - "example": "窓口", - "reading": "まどぐち", - "meaning": "counter, window, teller window, ticket window, contact person, point of contact" - }, - { - "example": "引違い窓", - "reading": "ひきちがいまど", - "meaning": "double sliding window" - }, - { - "example": "鎧窓", - "reading": "よろいまど", - "meaning": "louvered window" - }, - { - "example": "回転窓", - "reading": "かいてんまど", - "meaning": "pivoted window" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "厶", - "宀", - "心", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31379_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a93.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a93.gif", - "uri": "http://jisho.org/search/%E7%AA%93%23kanji" - }, - { - "query": "創", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "741", - "strokeCount": 12, - "meaning": "genesis, wound, injury, hurt, start, originate", - "kunyomi": [ - "つく.る", - "はじ.める", - "きず", - "けず.しける" - ], - "onyomi": [ - "ソウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "創価学会", - "reading": "ソウカガッカイ", - "meaning": "Soka Gakkai (lay organization, based on Nichiren Buddhism) (organisation)" - }, - { - "example": "創意", - "reading": "ソウイ", - "meaning": "original idea, originality" - }, - { - "example": "独創", - "reading": "ドクソウ", - "meaning": "originality" - }, - { - "example": "草創", - "reading": "ソウソウ", - "meaning": "beginning, inauguration" - } - ], - "kunyomiExamples": [ - { - "example": "作る", - "reading": "つくる", - "meaning": "to make, to produce, to manufacture, to build, to construct, to prepare (food), to brew (alcohol), to raise, to grow, to cultivate, to train, to till, to draw up (a document), to make out, to prepare, to write, to create (an artistic work, etc.), to compose, to coin (a phrase), to organize, to organise, to establish, to found, to have (a child), to make up (one's face, etc.), to fabricate (an excuse, etc.), to give a (false) appearance, to feign (a smile, etc.), to put on a show of emotion, to form (a line, etc.), to set (a record), to commit (a sin, etc.)" - }, - { - "example": "始める", - "reading": "はじめる", - "meaning": "to start, to begin, to commence, to initiate, to originate, to start up (a business, society, etc.), to open (e.g. a store), to establish, to start ..., to begin to ..." - }, - { - "example": "傷", - "reading": "きず", - "meaning": "wound, injury, cut, gash, bruise, scratch, scrape, scar, chip, crack, scratch, nick, flaw, defect, weakness, weak point, stain (on one's reputation), disgrace, dishonor, dishonour, (emotional) hurt, hurt feelings" - }, - { - "example": "古傷", - "reading": "ふるきず", - "meaning": "old wound, scar, old unpleasant incident, past misdeed" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "一", - "个", - "刈", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21109_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05275.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5275.gif", - "uri": "http://jisho.org/search/%E5%89%B5%23kanji" - }, - { - "query": "装", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "657", - "strokeCount": 12, - "meaning": "attire, dress, pretend, disguise, profess", - "kunyomi": [ - "よそお.う", - "よそお.い" - ], - "onyomi": [ - "ソウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "装", - "reading": "ソウ", - "meaning": "clothing, dressing, binding (of a book)" - }, - { - "example": "装甲", - "reading": "ソウコウ", - "meaning": "armoring, armouring, armor, armour" - }, - { - "example": "新装", - "reading": "シンソウ", - "meaning": "redecoration, remodelling, remodeling, refurbishment" - }, - { - "example": "偽装", - "reading": "ギソウ", - "meaning": "camouflage, disguise, pretense, feigning, masquerade" - }, - { - "example": "装束", - "reading": "ショウゾク", - "meaning": "costume, dress, attire, interior decoration, landscaping, furnishing, ornament" - }, - { - "example": "装束能", - "reading": "ショウゾクノウ", - "meaning": "formal noh performed in full costume" - }, - { - "example": "舞台衣装", - "reading": "ブタイイショウ", - "meaning": "(theatrical) costumes" - }, - { - "example": "婚礼衣装", - "reading": "コンレイイショウ", - "meaning": "wedding clothes" - } - ], - "kunyomiExamples": [ - { - "example": "装う", - "reading": "よそおう", - "meaning": "to dress (oneself in), to attire oneself in, to adorn, to decorate, to pretend, to feign, to affect, to disguise oneself as" - }, - { - "example": "装い", - "reading": "よそおい", - "meaning": "dress, outfit, equipment, makeup, adornment, guise, get-up" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "士", - "爿", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35013_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88c5.gif", - "uri": "http://jisho.org/search/%E8%A3%85%23kanji" - }, - { - "query": "層", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "801", - "strokeCount": 14, - "meaning": "stratum, social class, layer, story, floor", - "kunyomi": [], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "層", - "reading": "ソウ", - "meaning": "layer, stratum, seam, bed, class, stratum, bracket, group, sheaf, counter for stories (of a building)" - }, - { - "example": "層群", - "reading": "ソウグン", - "meaning": "(geol) group" - }, - { - "example": "重層", - "reading": "ジュウソウ", - "meaning": "multistoried, multilayered" - }, - { - "example": "高層", - "reading": "コウソウ", - "meaning": "high-rise (building), multistory, multistoried, tall, high (altitude), upper (atmosphere, air current, etc.)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "尸", - "并", - "日", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23652_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c64.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c64.gif", - "uri": "http://jisho.org/search/%E5%B1%A4%23kanji" - }, - { - "query": "操", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1016", - "strokeCount": 16, - "meaning": "maneuver, manipulate, operate, steer, chastity, virginity, fidelity", - "kunyomi": [ - "みさお", - "あやつ.る" - ], - "onyomi": [ - "ソウ", - "サン" - ], - "onyomiExamples": [ - { - "example": "操", - "reading": "ミサオ", - "meaning": "fidelity, honour, honor, constancy, chastity (of a woman), faithfulness (e.g. to one's husband)" - }, - { - "example": "操業", - "reading": "ソウギョウ", - "meaning": "operation (of a machine, factory, fishing boat, etc.), work" - }, - { - "example": "柔軟体操", - "reading": "ジュウナンタイソウ", - "meaning": "calisthenics" - }, - { - "example": "器械体操", - "reading": "キカイタイソウ", - "meaning": "apparatus gymnastics, artistic gymnastics" - } - ], - "kunyomiExamples": [ - { - "example": "操", - "reading": "みさお", - "meaning": "fidelity, honour, honor, constancy, chastity (of a woman), faithfulness (e.g. to one's husband)" - }, - { - "example": "操を守る", - "reading": "みさおをまもる", - "meaning": "to adhere to one's principles, to preserve one's chastity" - }, - { - "example": "操る", - "reading": "あやつる", - "meaning": "to operate (e.g. a machine), to handle, to manage, to control, to maneuver, to steer, to have a good command of (a language), to play proficiently (of a musical instrument), to work (a puppet), to pull the strings of a puppet, to manipulate (a person, public opinion, etc.), to pull the strings, to control from the shadows, to mastermind" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "口", - "品", - "扎", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25805_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64cd.gif", - "uri": "http://jisho.org/search/%E6%93%8D%23kanji" - }, - { - "query": "蔵", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "468", - "strokeCount": 15, - "meaning": "storehouse, hide, own, have, possess", - "kunyomi": [ - "くら", - "おさ.める", - "かく.れる" - ], - "onyomi": [ - "ゾウ", - "ソウ" - ], - "onyomiExamples": [ - { - "example": "蔵", - "reading": "ゾウ", - "meaning": "possession, ownership, Tibet, Tibetan people" - }, - { - "example": "蔵書", - "reading": "ゾウショ", - "meaning": "collection of books, (personal) library" - }, - { - "example": "地蔵", - "reading": "ジゾウ", - "meaning": "Kshitigarbha (bodhisattva who looks over children, travellers and the underworld), Ksitigarbha, Jizō" - }, - { - "example": "内蔵", - "reading": "ナイゾウ", - "meaning": "internal (e.g. disk), built-in, equipped (with)" - }, - { - "example": "秘蔵", - "reading": "ヒゾウ", - "meaning": "treasuring, cherishing, prizing, holding dear" - } - ], - "kunyomiExamples": [ - { - "example": "蔵", - "reading": "くら", - "meaning": "warehouse, storehouse, cellar, magazine, granary, godown, depository, treasury, elevator" - }, - { - "example": "蔵元", - "reading": "くらもと", - "meaning": "brewery (sake, soy), brewer, warehouse overseer" - }, - { - "example": "大蔵", - "reading": "おおくら", - "meaning": "Ministry of Finance" - }, - { - "example": "お蔵", - "reading": "おくら", - "meaning": "shelving (a play, movie, etc.), closing down, cancelling, canceling, shelf (i.e. \"on the shelf\"), rice storehouse of the Edo shogunate" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "厂", - "戈", - "臣", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34101_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08535.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8535.gif", - "uri": "http://jisho.org/search/%E8%94%B5%23kanji" - }, - { - "query": "臓", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "991", - "strokeCount": 19, - "meaning": "entrails, viscera, bowels", - "kunyomi": [ - "はらわた" - ], - "onyomi": [ - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "臓", - "reading": "ゾウ", - "meaning": "viscera, bowels" - }, - { - "example": "臓器", - "reading": "ゾウキ", - "meaning": "internal organs, viscera, intestines" - }, - { - "example": "膵臓", - "reading": "スイゾウ", - "meaning": "pancreas" - }, - { - "example": "肺臓", - "reading": "ハイゾウ", - "meaning": "lungs" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "ノ", - "厂", - "戈", - "月", - "臣", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33235_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081d3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81d3.gif", - "uri": "http://jisho.org/search/%E8%87%93%23kanji" - }, - { - "query": "存", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "577", - "strokeCount": 6, - "meaning": "exist, suppose, be aware of, believe, feel", - "kunyomi": [ - "ながら.える", - "あ.る", - "たも.つ", - "と.う" - ], - "onyomi": [ - "ソン", - "ゾン" - ], - "onyomiExamples": [ - { - "example": "存続", - "reading": "ソンゾク", - "meaning": "duration, continuance, survival, persistence, retention" - }, - { - "example": "存在", - "reading": "ソンザイ", - "meaning": "existence, being" - }, - { - "example": "残存", - "reading": "ザンソン", - "meaning": "survival, remaining, being extant, being left" - }, - { - "example": "共存", - "reading": "キョウゾン", - "meaning": "coexistence" - }, - { - "example": "存分", - "reading": "ゾンブン", - "meaning": "to one's heart's content, as much as one wants" - }, - { - "example": "存じる", - "reading": "ゾンジル", - "meaning": "to think, feel, consider, know, etc." - }, - { - "example": "温存", - "reading": "オンゾン", - "meaning": "preservation, retainment, keeping" - }, - { - "example": "共存", - "reading": "キョウゾン", - "meaning": "coexistence" - } - ], - "kunyomiExamples": [ - { - "example": "永らえる", - "reading": "ながらえる", - "meaning": "to have a long life, to live a long time" - } - ], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "ノ", - "一", - "子", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23384_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b58.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b58.gif", - "uri": "http://jisho.org/search/%E5%AD%98%23kanji" - }, - { - "query": "尊", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1181", - "strokeCount": 12, - "meaning": "revered, valuable, precious, noble, exalted", - "kunyomi": [ - "たっと.い", - "とうと.い", - "たっと.ぶ", - "とうと.ぶ" - ], - "onyomi": [ - "ソン" - ], - "onyomiExamples": [ - { - "example": "尊", - "reading": "ソン", - "meaning": "zun (ancient Chinese wine vessel, usu. made of bronze), honorific prefix referring to the listener, counter for buddhas" - }, - { - "example": "尊敬", - "reading": "ソンケイ", - "meaning": "respect, esteem, reverence, honour, honor" - }, - { - "example": "自尊", - "reading": "ジソン", - "meaning": "self-respect, esteem, self-importance, pride" - }, - { - "example": "至尊", - "reading": "シソン", - "meaning": "extreme reverence, deeply revered person, the Emperor" - } - ], - "kunyomiExamples": [ - { - "example": "尊い", - "reading": "とうとい", - "meaning": "precious, valuable, priceless, noble, exalted, sacred" - }, - { - "example": "尊い油", - "reading": "たっといあぶら", - "meaning": "anointing oil" - }, - { - "example": "尊い", - "reading": "とうとい", - "meaning": "precious, valuable, priceless, noble, exalted, sacred" - }, - { - "example": "尊い油", - "reading": "たっといあぶら", - "meaning": "anointing oil" - }, - { - "example": "貴ぶ", - "reading": "とうとぶ", - "meaning": "to value, to prize, to esteem, to respect" - }, - { - "example": "貴ぶ", - "reading": "とうとぶ", - "meaning": "to value, to prize, to esteem, to respect" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "寸", - "并", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23562_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c0a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c0a.gif", - "uri": "http://jisho.org/search/%E5%B0%8A%23kanji" - }, - { - "query": "退", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N3", - "newspaperFrequencyRank": "424", - "strokeCount": 9, - "meaning": "retreat, withdraw, retire, resign, repel, expel, reject", - "kunyomi": [ - "しりぞ.く", - "しりぞ.ける", - "ひ.く", - "の.く", - "の.ける", - "ど.く" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "退役", - "reading": "タイエキ", - "meaning": "retiring from military service" - }, - { - "example": "退院", - "reading": "タイイン", - "meaning": "leaving hospital, discharge from hospital" - }, - { - "example": "進退", - "reading": "シンタイ", - "meaning": "advance or retreat, moving forwards or backwards, movement, course of action, behaviour, conduct, attitude, remaining in one's post or resigning, staying or leaving" - }, - { - "example": "勇退", - "reading": "ユウタイ", - "meaning": "bowing out, retiring voluntarily" - } - ], - "kunyomiExamples": [ - { - "example": "退く", - "reading": "しりぞく", - "meaning": "to step back, to move back, to retreat, to withdraw (from the presence of a superior), to leave, to exit, to resign, to retire, to quit, to concede" - }, - { - "example": "退ける", - "reading": "しりぞける", - "meaning": "to repel, to drive away, to repulse, to reject" - }, - { - "example": "退く", - "reading": "ひく", - "meaning": "to move back, to draw back, to recede, to lessen, to subside, to ebb, to go down (e.g. of swelling), to resign, to retire, to quit" - }, - { - "example": "退く", - "reading": "どく", - "meaning": "to step aside, to move (i.e. out of the way), to make way, to resign, to retire, to quit, to secede" - }, - { - "example": "退ける", - "reading": "のける", - "meaning": "to put something out of the way, to move (something, someone) aside, to remove, to exclude, to take away, to set aside, to keep apart, to remove (someone) from the group, to shun, to do well despite difficulties, to accomplish despite adversity, to do resolutely, to do boldly" - }, - { - "example": "退く", - "reading": "どく", - "meaning": "to step aside, to move (i.e. out of the way), to make way, to resign, to retire, to quit, to secede" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "艮", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36864_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09000.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9000.gif", - "uri": "http://jisho.org/search/%E9%80%80%23kanji" - }, - { - "query": "宅", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "357", - "strokeCount": 6, - "meaning": "home, house, residence, our house, my husband", - "kunyomi": [], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "宅", - "reading": "タク", - "meaning": "house, home, one's house, one's home, one's husband" - }, - { - "example": "宅地", - "reading": "タクチ", - "meaning": "building lot, residential land" - }, - { - "example": "社宅", - "reading": "シャタク", - "meaning": "company housing, housing provided by one's company" - }, - { - "example": "家宅", - "reading": "カタク", - "meaning": "domicile, premises" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ノ", - "一", - "乙", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23429_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b85.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b85.gif", - "uri": "http://jisho.org/search/%E5%AE%85%23kanji" - }, - { - "query": "担", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "422", - "strokeCount": 8, - "meaning": "shouldering, carry, raise, bear", - "kunyomi": [ - "かつ.ぐ", - "にな.う" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "担当者", - "reading": "タントウシャ", - "meaning": "person in charge (of an area of work), person responsible, contact (person)" - }, - { - "example": "担当", - "reading": "タントウ", - "meaning": "being in charge (of an area of responsibility), being responsible (for a work role, etc.)" - }, - { - "example": "巴基斯担", - "reading": "パキスタン", - "meaning": "Pakistan" - }, - { - "example": "同担", - "reading": "ドウタン", - "meaning": "someone who supports the same member (of an idol group, etc.) as oneself" - } - ], - "kunyomiExamples": [ - { - "example": "担ぐ", - "reading": "かつぐ", - "meaning": "to shoulder, to carry on one's shoulder, to nominate for a position, to choose as a representative, to take (someone) for a ride, to deceive, to take in, to be caught up in superstition" - }, - { - "example": "担う", - "reading": "になう", - "meaning": "to carry on one's shoulder, to shoulder, to bear, to bear (burden, responsibility, etc.), to take upon oneself" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "扎", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25285_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62c5.gif", - "uri": "http://jisho.org/search/%E6%8B%85%23kanji" - }, - { - "query": "探", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "930", - "strokeCount": 11, - "meaning": "grope, search, look for", - "kunyomi": [ - "さぐ.る", - "さが.す" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "探検", - "reading": "タンケン", - "meaning": "exploration, expedition" - }, - { - "example": "探求", - "reading": "タンキュウ", - "meaning": "search, quest, pursuit" - }, - { - "example": "内探", - "reading": "ナイタン", - "meaning": "private inquiry, private enquiry, secret investigation" - }, - { - "example": "独探", - "reading": "ドクタン", - "meaning": "German spy" - } - ], - "kunyomiExamples": [ - { - "example": "探る", - "reading": "さぐる", - "meaning": "to feel around for, to fumble for, to grope for, to search for, to look for, to investigate, to probe into, to spy on, to sound out, to explore (parts unknown), to enjoy (natural beauty)" - }, - { - "example": "探す", - "reading": "さがす", - "meaning": "to search for, to look for, to hunt for, to seek, to search (a house, pocket, etc.), to search through, to rummage in (e.g. a drawer), to fish around" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "儿", - "冖", - "扎", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25506_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063a2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63a2.gif", - "uri": "http://jisho.org/search/%E6%8E%A2%23kanji" - }, - { - "query": "誕", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1024", - "strokeCount": 15, - "meaning": "nativity, be born, declension, lie, be arbitrary", - "kunyomi": [], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "誕生", - "reading": "タンジョウ", - "meaning": "birth, creation, formation" - }, - { - "example": "誕生日", - "reading": "タンジョウビ", - "meaning": "birthday" - }, - { - "example": "生誕", - "reading": "セイタン", - "meaning": "birth, nativity" - }, - { - "example": "再誕", - "reading": "サイタン", - "meaning": "resurrection (of a company or school, etc.)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "廴", - "止", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35477_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a95.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a95.gif", - "uri": "http://jisho.org/search/%E8%AA%95%23kanji" - }, - { - "query": "段", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "479", - "strokeCount": 9, - "meaning": "grade, steps, stairs", - "kunyomi": [], - "onyomi": [ - "ダン", - "タン" - ], - "onyomiExamples": [ - { - "example": "段", - "reading": "ダン", - "meaning": "step, stair, (flight of) steps, (row of) stitches, columns (of print), grade, rank, level, counter for breaks in written language (or speech, etc.), dan, senior rank in martial arts, go, shogi, etc." - }, - { - "example": "段階", - "reading": "ダンカイ", - "meaning": "grade, level, stage, class, phase, steps, order, gradation" - }, - { - "example": "特段", - "reading": "トクダン", - "meaning": "special" - }, - { - "example": "中段", - "reading": "チュウダン", - "meaning": "half-way up a slope or stairway, landing, center of three (horizontal) columns (of print) (centre)" - }, - { - "example": "反", - "reading": "タン", - "meaning": "variable measure of fabric (28.8 cm in width), for kimonos: at least 10 m in length, for haori: at least 7.27 m in length, for other clothes: at least 6.06 m in length, 300 tsubo (991.74 meters square, 0.24506 acres), six ken (10.91 m)" - }, - { - "example": "反物", - "reading": "タンモノ", - "meaning": "fabric, cloth, textiles, drapery, dry-goods, piece goods, measure of kimono material" - }, - { - "example": "減反", - "reading": "ゲンタン", - "meaning": "reduction (of crop size), reduction of acreage (under cultivation)" - }, - { - "example": "一反", - "reading": "イッタン", - "meaning": "one-tenth hectare" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "殳", - "meaning": "weapon, lance" - }, - "parts": [ - "ノ", - "一", - "几", - "又", - "殳", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27573_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bb5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bb5.gif", - "uri": "http://jisho.org/search/%E6%AE%B5%23kanji" - }, - { - "query": "暖", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1371", - "strokeCount": 13, - "meaning": "warmth", - "kunyomi": [ - "あたた.か", - "あたた.かい", - "あたた.まる", - "あたた.める" - ], - "onyomi": [ - "ダン", - "ノン" - ], - "onyomiExamples": [ - { - "example": "暖", - "reading": "ダン", - "meaning": "warming, warmth" - }, - { - "example": "暖冬", - "reading": "ダントウ", - "meaning": "mild winter, warm winter" - }, - { - "example": "寒暖", - "reading": "カンダン", - "meaning": "cold and heat, (degree of) temperature" - }, - { - "example": "床暖", - "reading": "ユカダン", - "meaning": "underfloor heating" - }, - { - "example": "呑気", - "reading": "ノンキ", - "meaning": "carefree, optimistic, careless, reckless, heedless, happy-go-lucky, easygoing, thoughtless" - }, - { - "example": "暖簾", - "reading": "ノレン", - "meaning": "(short) curtain hung at shop entrance, split curtain used to divide spaces in a house, reputation (of a store), good name, credit, goodwill" - } - ], - "kunyomiExamples": [ - { - "example": "暖か", - "reading": "あたたか", - "meaning": "warm, mild, genial" - }, - { - "example": "暖かい", - "reading": "あたたかい", - "meaning": "warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money" - }, - { - "example": "暖かい", - "reading": "あたたかい", - "meaning": "warm, mild, (pleasantly) hot, considerate, kind, genial, warm (of a colour), mellow, having enough money" - }, - { - "example": "暖かい色", - "reading": "あたたかいいろ", - "meaning": "warm color, warm colour" - }, - { - "example": "温まる", - "reading": "あたたまる", - "meaning": "to warm oneself, to sun oneself, to warm up, to get warm" - }, - { - "example": "温める", - "reading": "あたためる", - "meaning": "to warm, to heat" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ノ", - "一", - "又", - "日", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26262_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06696.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6696.gif", - "uri": "http://jisho.org/search/%E6%9A%96%23kanji" - }, - { - "query": "値", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "518", - "strokeCount": 10, - "meaning": "price, cost, value", - "kunyomi": [ - "ね", - "あたい" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "値", - "reading": "チ", - "meaning": "level, value" - }, - { - "example": "値域", - "reading": "チイキ", - "meaning": "range (of a function or relation)" - }, - { - "example": "経験値", - "reading": "ケイケンチ", - "meaning": "amount of experience, experience point (in video games, etc.), exp, XP" - }, - { - "example": "閾値", - "reading": "イキチ", - "meaning": "threshold (amount, dose, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "値", - "reading": "ね", - "meaning": "price, cost, value, worth, merit" - }, - { - "example": "値上がり", - "reading": "ねあがり", - "meaning": "price advance, increase in value" - }, - { - "example": "安値", - "reading": "やすね", - "meaning": "low price" - }, - { - "example": "底値", - "reading": "そこね", - "meaning": "bottom price" - }, - { - "example": "値", - "reading": "あたい", - "meaning": "price, cost, value, worth, merit, value" - }, - { - "example": "値する", - "reading": "あたいする", - "meaning": "to be worth, to be worthy of, to deserve, to merit" - }, - { - "example": "最初の値", - "reading": "さいしょのあたい", - "meaning": "initial value" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "化", - "十", - "目", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20516_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05024.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5024.gif", - "uri": "http://jisho.org/search/%E5%80%A4%23kanji" - }, - { - "query": "宙", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1005", - "strokeCount": 8, - "meaning": "mid-air, air, space, sky, memorization, interval of time", - "kunyomi": [], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "宙", - "reading": "チュウ", - "meaning": "space, air, midair, (from) memory, (by) heart" - }, - { - "example": "宙返り", - "reading": "チュウガエリ", - "meaning": "somersault, looping-the-loop" - }, - { - "example": "小宇宙", - "reading": "ショウウチュウ", - "meaning": "microcosmos, microcosm" - }, - { - "example": "大宇宙", - "reading": "ダイウチュウ", - "meaning": "macrocosmos, macrocosm, the universe, the cosmos" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23449_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b99.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b99.gif", - "uri": "http://jisho.org/search/%E5%AE%99%23kanji" - }, - { - "query": "忠", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1113", - "strokeCount": 8, - "meaning": "loyalty, fidelity, faithfulness", - "kunyomi": [], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "忠", - "reading": "チュウ", - "meaning": "loyalty, devotion, fidelity, faithfulness, inspector of the Imperial Prosecuting and Investigating Office (ritsuryo system)" - }, - { - "example": "忠臣", - "reading": "チュウシン", - "meaning": "loyal retainer, loyal subject" - }, - { - "example": "誠忠", - "reading": "セイチュウ", - "meaning": "loyalty" - }, - { - "example": "不忠", - "reading": "フチュウ", - "meaning": "disloyalty, infidelity" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "口", - "心", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24544_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fe0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fe0.gif", - "uri": "http://jisho.org/search/%E5%BF%A0%23kanji" - }, - { - "query": "著", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "849", - "strokeCount": 11, - "meaning": "renowned, publish, write, remarkable, phenomenal, put on, don, wear, arrival, finish (race), counter for suits of clothing, literary work", - "kunyomi": [ - "あらわ.す", - "いちじる.しい" - ], - "onyomi": [ - "チョ", - "チャク" - ], - "onyomiExamples": [ - { - "example": "著", - "reading": "チョ", - "meaning": "work, book, (a book) by, obvious, striking" - }, - { - "example": "著作", - "reading": "チョサク", - "meaning": "writing, book" - }, - { - "example": "近著", - "reading": "キンチョ", - "meaning": "recent work" - }, - { - "example": "共著", - "reading": "キョウチョ", - "meaning": "joint authorship, co-authorship, collaboration, joint work" - }, - { - "example": "着する", - "reading": "チャクスル", - "meaning": "to arrive, to reach, to adhere, to insist on, to put on, to wear" - } - ], - "kunyomiExamples": [ - { - "example": "著す", - "reading": "あらわす", - "meaning": "to write, to publish" - }, - { - "example": "著しい", - "reading": "いちじるしい", - "meaning": "striking, remarkable, considerable" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "日", - "老", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33879_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08457.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8457.gif", - "uri": "http://jisho.org/search/%E8%91%97%23kanji" - }, - { - "query": "庁", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "793", - "strokeCount": 5, - "meaning": "government office", - "kunyomi": [ - "やくしょ" - ], - "onyomi": [ - "チョウ", - "テイ" - ], - "onyomiExamples": [ - { - "example": "庁", - "reading": "チョウ", - "meaning": "government office, agency, board" - }, - { - "example": "庁舎", - "reading": "チョウシャ", - "meaning": "government office building" - }, - { - "example": "国税庁", - "reading": "コクゼイチョウ", - "meaning": "National Tax Agency (Japan)" - }, - { - "example": "政庁", - "reading": "セイチョウ", - "meaning": "government office" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "一", - "亅", - "广" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24193_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e81.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e81.gif", - "uri": "http://jisho.org/search/%E5%BA%81%23kanji" - }, - { - "query": "頂", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1350", - "strokeCount": 11, - "meaning": "place on the head, receive, top of head, top, summit, peak", - "kunyomi": [ - "いただ.く", - "いただき" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "頂点", - "reading": "チョウテン", - "meaning": "top, summit, vertex" - }, - { - "example": "頂上", - "reading": "チョウジョウ", - "meaning": "top, summit, peak" - }, - { - "example": "頭頂", - "reading": "トウチョウ", - "meaning": "top of the head, vertex, parietal" - }, - { - "example": "茎頂", - "reading": "ケイチョウ", - "meaning": "tip of a stem (of a plant)" - } - ], - "kunyomiExamples": [ - { - "example": "頂く", - "reading": "いただく", - "meaning": "to receive, to get, to accept, to take, to buy, to eat, to drink, to be crowned with, to wear (on one's head), to have (on top), to have (as one's leader), to live under (a ruler), to install (a president), to get somebody to do something" - }, - { - "example": "頂", - "reading": "いただき", - "meaning": "crown (of head), summit (of mountain), spire, easy win for one, something received" - }, - { - "example": "頂きます", - "reading": "いただきます", - "meaning": "thank you (for the meal just served), I receive (this meal)" - }, - { - "example": "山の頂", - "reading": "やまのいただき", - "meaning": "mountain top, summit, peak" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "一", - "亅", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38914_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09802.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9802.gif", - "uri": "http://jisho.org/search/%E9%A0%82%23kanji" - }, - { - "query": "腸", - "found": true, - "taughtIn": "grade 4", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1807", - "strokeCount": 13, - "meaning": "intestines, guts, bowels, viscera", - "kunyomi": [ - "はらわた", - "わた" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "腸", - "reading": "チョウ", - "meaning": "guts, bowels, intestines" - }, - { - "example": "腸炎", - "reading": "チョウエン", - "meaning": "enteritis" - }, - { - "example": "大腸", - "reading": "ダイチョウ", - "meaning": "large intestine, large bowel, colon" - }, - { - "example": "胃腸", - "reading": "イチョウ", - "meaning": "stomach and intestines, gastrointestinal tract, digestive organs" - } - ], - "kunyomiExamples": [ - { - "example": "腸", - "reading": "ちょう", - "meaning": "guts, bowels, intestines" - }, - { - "example": "はらわたが煮えくり返る", - "reading": "はらわたがにえくりかえる", - "meaning": "to be furious, to seethe with anger, to have one's blood boiling" - }, - { - "example": "腸", - "reading": "ちょう", - "meaning": "guts, bowels, intestines" - }, - { - "example": "腸香", - "reading": "わたか", - "meaning": "wataka (Ischikauia steenackeri) (freshwater fish of the carp family)" - }, - { - "example": "大腸", - "reading": "だいちょう", - "meaning": "large intestine, large bowel, colon" - }, - { - "example": "背わた", - "reading": "せわた", - "meaning": "vein of a shrimp (prawn), digestive tract of a shrimp, sand vein" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "一", - "勿", - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33144_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08178.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8178.gif", - "uri": "http://jisho.org/search/%E8%85%B8%23kanji" - }, - { - "query": "潮", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1231", - "strokeCount": 15, - "meaning": "tide, salt water, opportunity", - "kunyomi": [ - "しお", - "うしお" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "潮流", - "reading": "チョウリュウ", - "meaning": "tide, tidal current, tendency, drift, trend" - }, - { - "example": "潮位", - "reading": "チョウイ", - "meaning": "tide level" - }, - { - "example": "思潮", - "reading": "シチョウ", - "meaning": "trend of thought" - }, - { - "example": "退潮", - "reading": "タイチョウ", - "meaning": "ebb tide, waning fortunes" - } - ], - "kunyomiExamples": [ - { - "example": "潮", - "reading": "しお", - "meaning": "tide, current, sea water, opportunity, chance, thin soup of fish or shellfish boiled in seawater" - }, - { - "example": "潮風", - "reading": "しおかぜ", - "meaning": "salty sea breeze, salt wind" - }, - { - "example": "黒潮", - "reading": "くろしお", - "meaning": "Kuroshio Current, Japan Current" - }, - { - "example": "赤潮", - "reading": "あかしお", - "meaning": "red tide" - }, - { - "example": "潮", - "reading": "しお", - "meaning": "tide, current, sea water, opportunity, chance, thin soup of fish or shellfish boiled in seawater" - }, - { - "example": "潮汁", - "reading": "うしおじる", - "meaning": "thin soup of fish or shellfish boiled in seawater" - }, - { - "example": "夕潮", - "reading": "ゆうしお", - "meaning": "evening tide" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "十", - "日", - "月", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28526_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f6e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f6e.gif", - "uri": "http://jisho.org/search/%E6%BD%AE%23kanji" - }, - { - "query": "賃", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "961", - "strokeCount": 13, - "meaning": "fare, fee, hire, rent, wages, charge", - "kunyomi": [], - "onyomi": [ - "チン" - ], - "onyomiExamples": [ - { - "example": "賃", - "reading": "チン", - "meaning": "hire (charge), rent, charge, fare, fee, freight, wages, payment" - }, - { - "example": "賃上げ", - "reading": "チンアゲ", - "meaning": "wage increase, pay rise" - }, - { - "example": "労賃", - "reading": "ロウチン", - "meaning": "wages" - }, - { - "example": "工賃", - "reading": "コウチン", - "meaning": "wages, pay" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "化", - "王", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36035_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cc3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cc3.gif", - "uri": "http://jisho.org/search/%E8%B3%83%23kanji" - }, - { - "query": "痛", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "903", - "strokeCount": 12, - "meaning": "pain, hurt, damage, bruise", - "kunyomi": [ - "いた.い", - "いた.む", - "いた.ましい", - "いた.める" - ], - "onyomi": [ - "ツウ" - ], - "onyomiExamples": [ - { - "example": "痛", - "reading": "ツウ", - "meaning": "pain, ache, -algia" - }, - { - "example": "痛感", - "reading": "ツウカン", - "meaning": "feeling keenly, fully realizing" - }, - { - "example": "悲痛", - "reading": "ヒツウ", - "meaning": "grief, sorrow, extreme sadness, heartbreak" - }, - { - "example": "沈痛", - "reading": "チンツウ", - "meaning": "grave, sad, mournful, sorrowful, pensive" - } - ], - "kunyomiExamples": [ - { - "example": "痛い", - "reading": "いたい", - "meaning": "painful, sore, cringy, embarrassing, exceeding" - }, - { - "example": "痛々しい", - "reading": "いたいたしい", - "meaning": "pitiful, pathetic, painful to look at" - }, - { - "example": "痛む", - "reading": "いたむ", - "meaning": "to hurt, to ache, to feel a pain, to be injured, to be spoiled (e.g. food), to be damaged" - }, - { - "example": "痛ましい", - "reading": "いたましい", - "meaning": "pitiful, heartbreaking, heartrending, touching, tragic, sad, hurtful" - }, - { - "example": "痛める", - "reading": "いためる", - "meaning": "to hurt, to injure, to cause pain, to harm, to damage, to spoil, to worry, to bother, to be grieved over, to afflict, to cause financial loss, to hurt one's pocket" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "マ", - "用", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30171_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75db.gif", - "uri": "http://jisho.org/search/%E7%97%9B%23kanji" - }, - { - "query": "敵", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1205", - "strokeCount": 15, - "meaning": "enemy, foe, opponent", - "kunyomi": [ - "かたき", - "あだ", - "かな.う" - ], - "onyomi": [ - "テキ" - ], - "onyomiExamples": [ - { - "example": "敵", - "reading": "テキ", - "meaning": "opponent, rival, adversary, menace, danger, threat, enemy" - }, - { - "example": "敵意", - "reading": "テキイ", - "meaning": "hostility, animosity, enmity" - }, - { - "example": "強敵", - "reading": "キョウテキ", - "meaning": "formidable enemy, strong enemy, tough enemy" - }, - { - "example": "無敵", - "reading": "ムテキ", - "meaning": "invincible, unrivaled, unrivalled, matchless, unbeatable, undefeatable" - } - ], - "kunyomiExamples": [ - { - "example": "敵", - "reading": "かたき", - "meaning": "rival, opponent, adversary, competitor, enemy (esp. one with which there is longstanding enmity), foe, revenge, spouse" - }, - { - "example": "敵討ち", - "reading": "かたきうち", - "meaning": "vengeance, revenge, retaliation" - }, - { - "example": "目の敵", - "reading": "めのかたき", - "meaning": "enemy" - }, - { - "example": "仇を討つ", - "reading": "かたきをうつ", - "meaning": "to avenge (somebody) by striking down their killer" - }, - { - "example": "叶う", - "reading": "かなう", - "meaning": "to come true (of a wish, prayer, etc.), to be realized, to be fulfilled, to suit (e.g. a purpose), to meet (wishes, ideals, etc.), to conform to (standards, rules, etc.), to be consistent with, to match (implies competition), to rival, to bear (e.g. the heat)" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "亠", - "冂", - "十", - "口", - "并", - "攵", - "滴", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25973_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06575.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6575.gif", - "uri": "http://jisho.org/search/%E6%95%B5%23kanji" - }, - { - "query": "展", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "352", - "strokeCount": 10, - "meaning": "unfold, expand", - "kunyomi": [], - "onyomi": [ - "テン" - ], - "onyomiExamples": [ - { - "example": "展", - "reading": "テン", - "meaning": "exhibition, exhibit" - }, - { - "example": "展開", - "reading": "テンカイ", - "meaning": "development, evolution, progression, unfolding, (plot) twist, expansion, spreading out, extending, deployment, building up, expansion (of an algebraic expression), development (of a three-dimensional shape), extraction (of compressed data), decompression, unpacking" - }, - { - "example": "個展", - "reading": "コテン", - "meaning": "solo exhibition, one-man exhibition, one-woman exhibition" - }, - { - "example": "巡回展", - "reading": "ジュンカイテン", - "meaning": "roadshow, touring exhibition, travelling exhibition" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "一", - "二", - "尸", - "衣", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23637_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c55.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c55.gif", - "uri": "http://jisho.org/search/%E5%B1%95%23kanji" - }, - { - "query": "討", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "528", - "strokeCount": 10, - "meaning": "chastise, attack, defeat, destroy, conquer", - "kunyomi": [ - "う.つ" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "討論", - "reading": "トウロン", - "meaning": "debate, discussion" - }, - { - "example": "討議", - "reading": "トウギ", - "meaning": "debate, discussion" - }, - { - "example": "征討", - "reading": "セイトウ", - "meaning": "subjugation, conquest" - }, - { - "example": "追討", - "reading": "ツイトウ", - "meaning": "tracking down and killing, punitive expedition" - } - ], - "kunyomiExamples": [ - { - "example": "撃つ", - "reading": "うつ", - "meaning": "to shoot (at), to attack, to defeat, to destroy, to avenge" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "寸", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35342_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a0e.gif", - "uri": "http://jisho.org/search/%E8%A8%8E%23kanji" - }, - { - "query": "党", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "39", - "strokeCount": 10, - "meaning": "party, faction, clique", - "kunyomi": [ - "なかま", - "むら" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "党", - "reading": "トウ", - "meaning": "party (political), person who is fond of, fan of" - }, - { - "example": "党員", - "reading": "トウイン", - "meaning": "party member" - }, - { - "example": "両党", - "reading": "リョウトウ", - "meaning": "both political parties" - }, - { - "example": "同党", - "reading": "ドウトウ", - "meaning": "the same political party" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "儿", - "冖", - "口", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20826_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0515a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/515a.gif", - "uri": "http://jisho.org/search/%E5%85%9A%23kanji" - }, - { - "query": "糖", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1471", - "strokeCount": 16, - "meaning": "sugar", - "kunyomi": [], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "糖", - "reading": "トウ", - "meaning": "sugar" - }, - { - "example": "糖尿病", - "reading": "トウニョウビョウ", - "meaning": "diabetes, diabetes mellitus" - }, - { - "example": "黒砂糖", - "reading": "クロザトウ", - "meaning": "(unrefined) brown sugar, muscovado" - }, - { - "example": "製糖", - "reading": "セイトウ", - "meaning": "sugar manufacture" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "口", - "广", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31958_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07cd6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7cd6.gif", - "uri": "http://jisho.org/search/%E7%B3%96%23kanji" - }, - { - "query": "届", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "939", - "strokeCount": 8, - "meaning": "deliver, reach, arrive, report, notify, forward", - "kunyomi": [ - "とど.ける", - "-とど.け", - "とど.く" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "届ける", - "reading": "とどける", - "meaning": "to deliver, to forward, to send, to report, to notify, to file notice (to the authorities), to give notice, to register" - }, - { - "example": "届く", - "reading": "とどく", - "meaning": "to reach, to touch, to get to, to carry (of sound), to be delivered, to arrive, to be attentive, to be scrupulous, to be thorough, to be realized (of a desire), to be fulfilled, to get through (to someone), to be appreciated, to make an impression" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "尸", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23626_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c4a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c4a.gif", - "uri": "http://jisho.org/search/%E5%B1%8A%23kanji" - }, - { - "query": "難", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "330", - "strokeCount": 18, - "meaning": "difficult, impossible, trouble, accident, defect", - "kunyomi": [ - "かた.い", - "-がた.い", - "むずか.しい", - "むづか.しい", - "むつか.しい", - "-にく.い" - ], - "onyomi": [ - "ナン" - ], - "onyomiExamples": [ - { - "example": "難", - "reading": "ナン", - "meaning": "difficulty, trouble, hardship, accident, disaster, danger, fault, defect, criticism" - }, - { - "example": "難解", - "reading": "ナンカイ", - "meaning": "difficult to understand, unintelligible, abstruse" - }, - { - "example": "至難", - "reading": "シナン", - "meaning": "most difficult, next to impossible" - }, - { - "example": "海難", - "reading": "カイナン", - "meaning": "accident at sea, sea disaster, shipwreck" - } - ], - "kunyomiExamples": [ - { - "example": "難い", - "reading": "かたい", - "meaning": "difficult, hard" - }, - { - "example": "難しい", - "reading": "むずかしい", - "meaning": "difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky" - }, - { - "example": "難しい顔をする", - "reading": "むずかしいかおをする", - "meaning": "to look displeased, to frown, to scowl, to look grave, to look serious" - }, - { - "example": "難しい", - "reading": "むずかしい", - "meaning": "difficult, hard, troublesome, complicated, serious (disease, problem, etc.), impossible, unfeasible, fussy, particular, fastidious, hard to please, displeased, gloomy, glum, sullen, serious (look), dirty, unclean, filthy, detestable, unpleasant, uncomfortable, creepy, spooky" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "二", - "亠", - "口", - "大", - "艾", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38627_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96e3.gif", - "uri": "http://jisho.org/search/%E9%9B%A3%23kanji" - }, - { - "query": "乳", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1289", - "strokeCount": 8, - "meaning": "milk, breasts", - "kunyomi": [ - "ちち", - "ち" - ], - "onyomi": [ - "ニュウ" - ], - "onyomiExamples": [ - { - "example": "乳製品", - "reading": "ニュウセイヒン", - "meaning": "dairy products" - }, - { - "example": "乳児", - "reading": "ニュウジ", - "meaning": "infant (below 1 year old), suckling baby" - }, - { - "example": "豆乳", - "reading": "トウニュウ", - "meaning": "soy milk" - }, - { - "example": "生乳", - "reading": "セイニュウ", - "meaning": "raw milk" - } - ], - "kunyomiExamples": [ - { - "example": "乳", - "reading": "ちち", - "meaning": "milk, breast, loop, decorative bump (on a hanging bell)" - }, - { - "example": "乳首", - "reading": "ちくび", - "meaning": "nipple, teat" - }, - { - "example": "無い乳", - "reading": "ないちち", - "meaning": "very small breasts" - }, - { - "example": "貰い乳", - "reading": "もらいぢち", - "meaning": "having one's baby nursed by another woman, wet-nursing, breast milk received from another woman" - }, - { - "example": "乳", - "reading": "ちち", - "meaning": "milk, breast, loop, decorative bump (on a hanging bell)" - }, - { - "example": "乳房", - "reading": "ちぶさ", - "meaning": "breast, udder" - }, - { - "example": "無い乳", - "reading": "ないちち", - "meaning": "very small breasts" - }, - { - "example": "貰い乳", - "reading": "もらいぢち", - "meaning": "having one's baby nursed by another woman, wet-nursing, breast milk received from another woman" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "乙", - "子", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20083_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e73.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e73.gif", - "uri": "http://jisho.org/search/%E4%B9%B3%23kanji" - }, - { - "query": "認", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "198", - "strokeCount": 14, - "meaning": "acknowledge, witness, discern, recognize, appreciate, believe", - "kunyomi": [ - "みと.める", - "したた.める" - ], - "onyomi": [ - "ニン" - ], - "onyomiExamples": [ - { - "example": "認識", - "reading": "ニンシキ", - "meaning": "recognition, awareness, perception, understanding, knowledge, cognition, cognizance, cognisance" - }, - { - "example": "認可", - "reading": "ニンカ", - "meaning": "approval, license, licence, permission" - }, - { - "example": "公認", - "reading": "コウニン", - "meaning": "official recognition, authorization, authorisation, licence, license, accreditation" - }, - { - "example": "追認", - "reading": "ツイニン", - "meaning": "ratification, confirmation" - } - ], - "kunyomiExamples": [ - { - "example": "認める", - "reading": "みとめる", - "meaning": "to recognize, to recognise, to observe, to notice, to deem, to judge, to assess, to approve, to deem acceptable, to allow, to admit, to accept, to confess (to a charge), to watch steadily, to observe carefully, to renown, to give renown to, to appreciate, to acknowledge" - }, - { - "example": "認める", - "reading": "したためる", - "meaning": "to write (e.g. a letter), to draw up (a document), to take down (e.g. notes), to have (lunch, dinner, etc.), to eat" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "丶", - "刀", - "心", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35469_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a8d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a8d.gif", - "uri": "http://jisho.org/search/%E8%AA%8D%23kanji" - }, - { - "query": "納", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "987", - "strokeCount": 10, - "meaning": "settlement, obtain, reap, pay, supply, store", - "kunyomi": [ - "おさ.める", - "-おさ.める", - "おさ.まる" - ], - "onyomi": [ - "ノウ", - "ナッ", - "ナ", - "ナン", - "トウ" - ], - "onyomiExamples": [ - { - "example": "納税", - "reading": "ノウゼイ", - "meaning": "payment of taxes" - }, - { - "example": "納金", - "reading": "ノウキン", - "meaning": "payment" - }, - { - "example": "未納", - "reading": "ミノウ", - "meaning": "payment default, overdue on a payment" - }, - { - "example": "上納", - "reading": "ジョウノウ", - "meaning": "payment to the government" - }, - { - "example": "納得", - "reading": "ナットク", - "meaning": "consent, assent, agreement, understanding, comprehension, grasp" - }, - { - "example": "納豆", - "reading": "ナットウ", - "meaning": "natto (fermented soybeans)" - }, - { - "example": "納得", - "reading": "ナットク", - "meaning": "consent, assent, agreement, understanding, comprehension, grasp" - }, - { - "example": "納豆", - "reading": "ナットウ", - "meaning": "natto (fermented soybeans)" - }, - { - "example": "納戸", - "reading": "ナンド", - "meaning": "storage room, storeroom, closet, grayish blue" - }, - { - "example": "納戸色", - "reading": "ナンドイロ", - "meaning": "grayish blue, greyish blue" - }, - { - "example": "出納", - "reading": "スイトウ", - "meaning": "receipts and expenditure (disbursements)" - } - ], - "kunyomiExamples": [ - { - "example": "収める", - "reading": "おさめる", - "meaning": "to dedicate, to make an offering, to pay (fees), to supply, to store, to finish, to bring to a close, to restore (something to its place), to achieve (e.g. a result)" - }, - { - "example": "収まる", - "reading": "おさまる", - "meaning": "to fit into (a box, frame, category, etc.), to be contained within, to fall within (e.g. a budget), to settle down (into), to be installed (in one's rightful place), to be returned (to one's original position), to settle into (one's position), to take up (a post), to occupy (a role), to be delivered, to be paid (e.g. taxes), to be settled (dispute, conflict, etc.), to be sorted, to subside (e.g. wind), to calm down, to abate, to be satisfied (e.g. with an answer), to consent, to agree" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "人", - "冂", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32013_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d0d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d0d.gif", - "uri": "http://jisho.org/search/%E7%B4%8D%23kanji" - }, - { - "query": "脳", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "459", - "strokeCount": 11, - "meaning": "brain, memory", - "kunyomi": [ - "のうずる" - ], - "onyomi": [ - "ノウ", - "ドウ" - ], - "onyomiExamples": [ - { - "example": "脳", - "reading": "ノウ", - "meaning": "brain, brains, mind" - }, - { - "example": "脳死", - "reading": "ノウシ", - "meaning": "brain death" - }, - { - "example": "大脳", - "reading": "ダイノウ", - "meaning": "cerebrum" - }, - { - "example": "洗脳", - "reading": "センノウ", - "meaning": "brainwashing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "凵", - "尚", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33075_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08133.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8133.gif", - "uri": "http://jisho.org/search/%E8%84%B3%23kanji" - }, - { - "query": "派", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "164", - "strokeCount": 9, - "meaning": "faction, group, party, clique, sect, school", - "kunyomi": [], - "onyomi": [ - "ハ" - ], - "onyomiExamples": [ - { - "example": "派", - "reading": "ハ", - "meaning": "clique, group, coterie, (political) faction, wing, party, camp, school, sect, denomination" - }, - { - "example": "派遣", - "reading": "ハケン", - "meaning": "dispatch, despatch, deployment, temporary employee (esp. from an agency), temporary worker, agency temp" - }, - { - "example": "硬派", - "reading": "コウハ", - "meaning": "hard-liners, diehards, hawks, (young) man with traditionally masculine interests, tough boy, man's man, hard news, reporter who covers political and economic affairs, strait-laced type (with respect to relationships), bullish traders" - }, - { - "example": "右派", - "reading": "ウハ", - "meaning": "right wing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "厂", - "斤", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27966_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d3e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d3e.gif", - "uri": "http://jisho.org/search/%E6%B4%BE%23kanji" - }, - { - "query": "拝", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1443", - "strokeCount": 8, - "meaning": "worship, adore, pray to", - "kunyomi": [ - "おが.む", - "おろが.む" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "拝", - "reading": "ハイ", - "meaning": "bowing one's head (in respect or worship), worship, respectfully yours" - }, - { - "example": "拝啓", - "reading": "ハイケイ", - "meaning": "Dear (so and so), Dear Sir, Dear Madam, To Whom It May Concern" - }, - { - "example": "再拝", - "reading": "サイハイ", - "meaning": "bowing twice, worshipping again, Yours sincerely, Yours truly, Sincerely yours" - }, - { - "example": "頓首再拝", - "reading": "トンシュサイハイ", - "meaning": "respectfully yours" - } - ], - "kunyomiExamples": [ - { - "example": "拝む", - "reading": "おがむ", - "meaning": "to assume the posture of praying, to press the palms and fingers of both hands together, to do reverence (e.g. before a statue of the Buddha), to pay one's respects, to beg, to make a supplication, to see (something or someone of high status)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "干", - "扎", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25309_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062dd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62dd.gif", - "uri": "http://jisho.org/search/%E6%8B%9D%23kanji" - }, - { - "query": "背", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "696", - "strokeCount": 9, - "meaning": "stature, height, back, behind, disobey, defy, go back on, rebel", - "kunyomi": [ - "せ", - "せい", - "そむ.く", - "そむ.ける" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "背後", - "reading": "ハイゴ", - "meaning": "back, rear, background, behind the scenes" - }, - { - "example": "背景", - "reading": "ハイケイ", - "meaning": "background, scenery, backdrop, setting, background (of an incident, situation, etc.), circumstances, context, backing, support (from behind the scenes)" - }, - { - "example": "違背", - "reading": "イハイ", - "meaning": "violation, transgression" - }, - { - "example": "向背", - "reading": "コウハイ", - "meaning": "one's attitude, state of affairs" - } - ], - "kunyomiExamples": [ - { - "example": "背", - "reading": "せ", - "meaning": "back, spine, reverse, rear side, height, stature, ridge (of a mountain)" - }, - { - "example": "背", - "reading": "せい", - "meaning": "height, stature" - }, - { - "example": "膝皿貝", - "reading": "ひざらがい", - "meaning": "chiton (any marine mollusk of the class Polyplacophora), sea cradle, Japanese chiton (Acanthopleura japonica)" - }, - { - "example": "傴僂", - "reading": "せむし", - "meaning": "hunchback, humpback, crookback" - }, - { - "example": "背", - "reading": "せい", - "meaning": "height, stature" - }, - { - "example": "背丈", - "reading": "せたけ", - "meaning": "stature, height" - }, - { - "example": "背く", - "reading": "そむく", - "meaning": "to run counter to, to go against, to disobey, to infringe" - }, - { - "example": "背ける", - "reading": "そむける", - "meaning": "to turn (one's face) away, to avert (one's eyes)" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "匕", - "月", - "爿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32972_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080cc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80cc.gif", - "uri": "http://jisho.org/search/%E8%83%8C%23kanji" - }, - { - "query": "肺", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1387", - "strokeCount": 9, - "meaning": "lungs", - "kunyomi": [], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "肺", - "reading": "ハイ", - "meaning": "lung" - }, - { - "example": "肺炎", - "reading": "ハイエン", - "meaning": "pneumonia" - }, - { - "example": "珪肺", - "reading": "ケイハイ", - "meaning": "silicosis" - }, - { - "example": "人工肺", - "reading": "ジンコウハイ", - "meaning": "artificial lung" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "亠", - "巾", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32954_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080ba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80ba.gif", - "uri": "http://jisho.org/search/%E8%82%BA%23kanji" - }, - { - "query": "俳", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1137", - "strokeCount": 10, - "meaning": "haiku, actor", - "kunyomi": [], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "俳人", - "reading": "ハイジン", - "meaning": "haiku poet" - }, - { - "example": "俳句", - "reading": "ハイク", - "meaning": "haiku, 17-mora poem, usu. in 3 lines of 5, 7 and 5 morae" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20467_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ff3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ff3.gif", - "uri": "http://jisho.org/search/%E4%BF%B3%23kanji" - }, - { - "query": "班", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1592", - "strokeCount": 10, - "meaning": "squad, corps, unit, group", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "班", - "reading": "ハン", - "meaning": "group, party, team, squad, section" - }, - { - "example": "班員", - "reading": "ハンイン", - "meaning": "member of a group" - }, - { - "example": "首班", - "reading": "シュハン", - "meaning": "head, leader, prime minister" - }, - { - "example": "取材班", - "reading": "シュザイハン", - "meaning": "data collecting party, news crew" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "刀", - "厂", - "土", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29677_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/073ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/73ed.gif", - "uri": "http://jisho.org/search/%E7%8F%AD%23kanji" - }, - { - "query": "晩", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1424", - "strokeCount": 12, - "meaning": "nightfall, night", - "kunyomi": [], - "onyomi": [ - "バン" - ], - "onyomiExamples": [ - { - "example": "晩", - "reading": "バン", - "meaning": "evening, night, dinner, evening meal, counter for nights" - }, - { - "example": "晩婚", - "reading": "バンコン", - "meaning": "late marriage" - }, - { - "example": "歳晩", - "reading": "サイバン", - "meaning": "year's end" - }, - { - "example": "お晩", - "reading": "オバン", - "meaning": "evening, good evening" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "儿", - "免", - "勹", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26217_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06669.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6669.gif", - "uri": "http://jisho.org/search/%E6%99%A9%23kanji" - }, - { - "query": "否", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "561", - "strokeCount": 7, - "meaning": "negate, no, noes, refuse, decline, deny", - "kunyomi": [ - "いな", - "いや" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "否", - "reading": "ヒ", - "meaning": "no, the noes" - }, - { - "example": "否決", - "reading": "ヒケツ", - "meaning": "rejection, negation, voting down" - }, - { - "example": "当否", - "reading": "トウヒ", - "meaning": "propriety, right or wrong, justice" - }, - { - "example": "採否", - "reading": "サイヒ", - "meaning": "adoption or rejection" - } - ], - "kunyomiExamples": [ - { - "example": "否", - "reading": "いいえ", - "meaning": "no, nay, well, er, why, you're welcome, not at all, don't mention it" - }, - { - "example": "否む", - "reading": "いなむ", - "meaning": "to refuse, to decline, to deny" - }, - { - "example": "否", - "reading": "いいえ", - "meaning": "no, nay, well, er, why, you're welcome, not at all, don't mention it" - }, - { - "example": "否々", - "reading": "いやいや", - "meaning": "no!, no no!, no, not at all" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "一", - "丶", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21542_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05426.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5426.gif", - "uri": "http://jisho.org/search/%E5%90%A6%23kanji" - }, - { - "query": "批", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "568", - "strokeCount": 7, - "meaning": "criticism, strike", - "kunyomi": [], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "非難", - "reading": "ヒナン", - "meaning": "criticism, blame, censure, attack, reproach" - }, - { - "example": "批准", - "reading": "ヒジュン", - "meaning": "ratification" - }, - { - "example": "高批", - "reading": "コウヒ", - "meaning": "your valued criticism" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "比" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25209_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06279.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6279.gif", - "uri": "http://jisho.org/search/%E6%89%B9%23kanji" - }, - { - "query": "秘", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "862", - "strokeCount": 10, - "meaning": "secret, conceal", - "kunyomi": [ - "ひ.める", - "ひそ.か", - "かく.す" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "秘", - "reading": "ヒ", - "meaning": "secret, mystery" - }, - { - "example": "秘書", - "reading": "ヒショ", - "meaning": "(private) secretary, treasured book, secret book" - }, - { - "example": "部外秘", - "reading": "ブガイヒ", - "meaning": "restricted to the department" - }, - { - "example": "社外秘", - "reading": "シャガイヒ", - "meaning": "company secret" - } - ], - "kunyomiExamples": [ - { - "example": "秘める", - "reading": "ひめる", - "meaning": "to hide, to keep to oneself" - }, - { - "example": "密か", - "reading": "ひそか", - "meaning": "secret, private, surreptitious" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ノ", - "丶", - "心", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31192_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079d8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79d8.gif", - "uri": "http://jisho.org/search/%E7%A7%98%23kanji" - }, - { - "query": "俵", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1481", - "strokeCount": 10, - "meaning": "bag, bale, sack, counter for bags", - "kunyomi": [ - "たわら" - ], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "俵", - "reading": "タワラ", - "meaning": "straw bag, sack, bale, counter for sacks (of rice, potatoes, coal, etc.)" - }, - { - "example": "俵数", - "reading": "ヒョウスウ", - "meaning": "number of straw bags" - }, - { - "example": "土俵", - "reading": "ドヒョウ", - "meaning": "(wrestling) ring, forum (e.g. for discussion), sandbag, gabion" - }, - { - "example": "初土俵", - "reading": "ハツドヒョウ", - "meaning": "first tournament for a wrestler" - } - ], - "kunyomiExamples": [ - { - "example": "俵", - "reading": "たわら", - "meaning": "straw bag, sack, bale, counter for sacks (of rice, potatoes, coal, etc.)" - }, - { - "example": "俵編", - "reading": "たわらあみ", - "meaning": "making bags out of this year's straw (during autumn)" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "二", - "亠", - "化", - "土", - "士", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20469_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ff5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ff5.gif", - "uri": "http://jisho.org/search/%E4%BF%B5%23kanji" - }, - { - "query": "腹", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1286", - "strokeCount": 13, - "meaning": "abdomen, belly, stomach", - "kunyomi": [ - "はら" - ], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "腹痛", - "reading": "フクツウ", - "meaning": "stomach ache, abdominal pain" - }, - { - "example": "腹心", - "reading": "フクシン", - "meaning": "one's confidant, trusted friend, trusted retainer" - }, - { - "example": "私腹", - "reading": "シフク", - "meaning": "one's own profits, one's own pockets" - }, - { - "example": "開腹", - "reading": "カイフク", - "meaning": "making a surgical incision in the abdomen" - } - ], - "kunyomiExamples": [ - { - "example": "腹", - "reading": "はら", - "meaning": "abdomen, belly, stomach, womb, one's mind, one's real intentions, one's true motive, courage, nerve, willpower, generosity, magnanimity, feelings, emotions, wide middle part, bulging part, inside, interior, inner part, anti-node, counter for hard roe, counter for containers with bulging middles (pots, vases, etc.)" - }, - { - "example": "腹痛", - "reading": "ふくつう", - "meaning": "stomach ache, abdominal pain" - }, - { - "example": "業腹", - "reading": "ごうはら", - "meaning": "spite, resentment" - }, - { - "example": "赤腹", - "reading": "あかはら", - "meaning": "brown-headed thrush (Turdus chrysolaus), Japanese dace (Tribolodon hakonensis), Japanese fire belly newt (Cynops pyrrhogaster), dysentery" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "夂", - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33145_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08179.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8179.gif", - "uri": "http://jisho.org/search/%E8%85%B9%23kanji" - }, - { - "query": "奮", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1521", - "strokeCount": 16, - "meaning": "stirred up, be invigorated, flourish", - "kunyomi": [ - "ふる.う" - ], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "奮闘", - "reading": "フントウ", - "meaning": "hard struggle, strenuous effort" - }, - { - "example": "奮起", - "reading": "フンキ", - "meaning": "stirring, rousing oneself" - }, - { - "example": "性的興奮", - "reading": "セイテキコウフン", - "meaning": "sexual arousal, sexual excitation" - } - ], - "kunyomiExamples": [ - { - "example": "奮う", - "reading": "ふるう", - "meaning": "to muster (e.g. one's courage), to call forth, to rouse up, to be enlivened, to be invigorated" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "大", - "田", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22894_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0596e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/596e.gif", - "uri": "http://jisho.org/search/%E5%A5%AE%23kanji" - }, - { - "query": "並", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "599", - "strokeCount": 8, - "meaning": "row, and, besides, as well as, line up, rank with, rival, equal", - "kunyomi": [ - "な.み", - "なみ", - "なら.べる", - "なら.ぶ", - "なら.びに" - ], - "onyomi": [ - "ヘイ", - "ホウ" - ], - "onyomiExamples": [ - { - "example": "併用", - "reading": "ヘイヨウ", - "meaning": "using together (jointly), used at the same time" - }, - { - "example": "並行", - "reading": "ヘイコウ", - "meaning": "going side-by-side, going abreast, running concurrently, occurring at the same time, keeping pace with" - } - ], - "kunyomiExamples": [ - { - "example": "並", - "reading": "なみ", - "meaning": "average, medium, common, ordinary, mid-grade (item), regular grade, same level as, equal to, equivalent to, on par with, each (e.g. month), every, row of (teeth, houses, etc.), line of" - }, - { - "example": "並木", - "reading": "なみき", - "meaning": "roadside tree, row of trees" - }, - { - "example": "軒並み", - "reading": "のきなみ", - "meaning": "row of houses, every house, each house, every door, all, totally, altogether, across the board" - }, - { - "example": "毛並み", - "reading": "けなみ", - "meaning": "coat (of hair or fur), lie of (dog's) hair, type, sort, lineage, breeding" - }, - { - "example": "並", - "reading": "なみ", - "meaning": "average, medium, common, ordinary, mid-grade (item), regular grade, same level as, equal to, equivalent to, on par with, each (e.g. month), every, row of (teeth, houses, etc.), line of" - }, - { - "example": "並木", - "reading": "なみき", - "meaning": "roadside tree, row of trees" - }, - { - "example": "軒並み", - "reading": "のきなみ", - "meaning": "row of houses, every house, each house, every door, all, totally, altogether, across the board" - }, - { - "example": "毛並み", - "reading": "けなみ", - "meaning": "coat (of hair or fur), lie of (dog's) hair, type, sort, lineage, breeding" - }, - { - "example": "並べる", - "reading": "ならべる", - "meaning": "to line up, to set up, to arrange in a line, to enumerate, to itemize, to be equal (to), to compare well (with), to be as good (as)" - }, - { - "example": "並ぶ", - "reading": "ならぶ", - "meaning": "to line up, to stand in a line, to rival, to match, to equal" - }, - { - "example": "並びに", - "reading": "ならびに", - "meaning": "and (also), both ... and, as well as" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "二", - "并", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20006_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e26.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e26.gif", - "uri": "http://jisho.org/search/%E4%B8%A6%23kanji" - }, - { - "query": "陛", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1429", - "strokeCount": 10, - "meaning": "highness, steps (of throne)", - "kunyomi": [], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "陛下", - "reading": "ヘイカ", - "meaning": "Your Majesty, His Majesty, Her Majesty" - }, - { - "example": "陛衛", - "reading": "ヘイエイ", - "meaning": "Imperial guard" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "土", - "比", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38491_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0965b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/965b.gif", - "uri": "http://jisho.org/search/%E9%99%9B%23kanji" - }, - { - "query": "閉", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "951", - "strokeCount": 11, - "meaning": "closed, shut", - "kunyomi": [ - "と.じる", - "と.ざす", - "し.める", - "し.まる", - "た.てる" - ], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "閉鎖", - "reading": "ヘイサ", - "meaning": "closing, closure, shutdown, lockout" - }, - { - "example": "閉会", - "reading": "ヘイカイ", - "meaning": "closure (of a ceremony, event, meeting, etc.)" - }, - { - "example": "開閉", - "reading": "カイヘイ", - "meaning": "opening and shutting" - }, - { - "example": "幽閉", - "reading": "ユウヘイ", - "meaning": "confinement, imprisonment, incarceration" - } - ], - "kunyomiExamples": [ - { - "example": "閉じる", - "reading": "とじる", - "meaning": "to close (e.g. book, eyes, meeting, etc.), to shut" - }, - { - "example": "閉ざす", - "reading": "とざす", - "meaning": "to shut, to close, to fasten, to lock, to block (a street, entrance, etc.), to shut in (with snow, ice, etc.), to shut off, to cut off, to cover (e.g. in darkness), to consume (with negative feelings), to fill (e.g. with sadness), to bury (e.g. in grief)" - }, - { - "example": "閉める", - "reading": "しめる", - "meaning": "to close, to shut" - }, - { - "example": "閉まる", - "reading": "しまる", - "meaning": "to be shut, to close, to be closed, to be firm (of a body, face, etc.), to be well-knit, to be locked, to tighten, to be tightened, to become sober, to become tense" - }, - { - "example": "閉てる", - "reading": "たてる", - "meaning": "to shut, to close" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "ノ", - "一", - "亅", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38281_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09589.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9589.gif", - "uri": "http://jisho.org/search/%E9%96%89%23kanji" - }, - { - "query": "片", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1076", - "strokeCount": 4, - "meaning": "one-sided, leaf, sheet, right-side kata radical (no. 91)", - "kunyomi": [ - "かた-", - "かた" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "片", - "reading": "ヘン", - "meaning": "counter for scraps, fragments, petals, etc." - }, - { - "example": "片時", - "reading": "カタトキ", - "meaning": "moment, instant" - }, - { - "example": "紙片", - "reading": "シヘン", - "meaning": "piece (scrap, bit, strip) of paper" - }, - { - "example": "砕片", - "reading": "サイヘン", - "meaning": "debris" - } - ], - "kunyomiExamples": [ - { - "example": "片", - "reading": "かた", - "meaning": "one (of a pair), incomplete, imperfect, fragmentary, few, little, off-centre, remote, side, problem, question, matters" - }, - { - "example": "片側", - "reading": "かたがわ", - "meaning": "one side" - } - ], - "radical": { - "symbol": "片", - "meaning": "slice" - }, - "parts": [ - "片" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29255_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07247.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7247.gif", - "uri": "http://jisho.org/search/%E7%89%87%23kanji" - }, - { - "query": "補", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "332", - "strokeCount": 12, - "meaning": "supplement, supply, make good, offset, compensate, assistant, learner", - "kunyomi": [ - "おぎな.う" - ], - "onyomi": [ - "ホ" - ], - "onyomiExamples": [ - { - "example": "補", - "reading": "ホ", - "meaning": "assistant ..., probationary ..." - }, - { - "example": "補完", - "reading": "ホカン", - "meaning": "complementation, supplementation, completion" - }, - { - "example": "増補", - "reading": "ゾウホ", - "meaning": "extending (e.g. a book), augmenting, enlarging, supplementing" - }, - { - "example": "追補", - "reading": "ツイホ", - "meaning": "supplement, appendix, addendum" - } - ], - "kunyomiExamples": [ - { - "example": "補う", - "reading": "おぎなう", - "meaning": "to supplement, to make up for, to compensate for, to cover (a shortage, loss, etc.), to fill (e.g. a vacancy)" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "丶", - "初", - "十", - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35036_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088dc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88dc.gif", - "uri": "http://jisho.org/search/%E8%A3%9C%23kanji" - }, - { - "query": "暮", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "978", - "strokeCount": 14, - "meaning": "evening, twilight, season's end, livelihood, make a living, spend time", - "kunyomi": [ - "く.れる", - "く.らす" - ], - "onyomi": [ - "ボ" - ], - "onyomiExamples": [ - { - "example": "暮雨", - "reading": "ボウ", - "meaning": "evening rain" - }, - { - "example": "暮雲", - "reading": "ボウン", - "meaning": "twilight clouds" - }, - { - "example": "歳暮", - "reading": "セイボ", - "meaning": "year-end gift, end of the year, year end" - }, - { - "example": "朝々暮々", - "reading": "チョウチョウボボ", - "meaning": "every morning and evening" - } - ], - "kunyomiExamples": [ - { - "example": "暮れる", - "reading": "くれる", - "meaning": "to get dark, to grow dark, to end (of a day, year, season, etc.), to come to an end, to close, to be sunk in (e.g. despair), to be lost in (e.g. thought), to be overcome with" - }, - { - "example": "暮らす", - "reading": "くらす", - "meaning": "to live, to get along, to spend (time)" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "大", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26286_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066ae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66ae.gif", - "uri": "http://jisho.org/search/%E6%9A%AE%23kanji" - }, - { - "query": "宝", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1139", - "strokeCount": 8, - "meaning": "treasure, wealth, valuables", - "kunyomi": [ - "たから" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "宝飾", - "reading": "ホウショク", - "meaning": "jewels and ornaments, jewelry, jewellery" - }, - { - "example": "宝庫", - "reading": "ホウコ", - "meaning": "treasury, treasure house, storehouse, repository, treasure trove, rich source (of)" - }, - { - "example": "人間国宝", - "reading": "ニンゲンコクホウ", - "meaning": "living national treasure" - }, - { - "example": "至宝", - "reading": "シホウ", - "meaning": "greatest treasure, most valuable asset, pride (of)" - } - ], - "kunyomiExamples": [ - { - "example": "宝", - "reading": "たから", - "meaning": "treasure" - }, - { - "example": "宝くじ", - "reading": "たからくじ", - "meaning": "lottery, lottery ticket" - }, - { - "example": "お宝", - "reading": "おたから", - "meaning": "treasure, picture of a treasure ship, money, cash" - }, - { - "example": "正直は一生の宝", - "reading": "しょうじきはいっしょうのたから", - "meaning": "honesty is the best policy" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "丶", - "宀", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23453_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b9d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b9d.gif", - "uri": "http://jisho.org/search/%E5%AE%9D%23kanji" - }, - { - "query": "訪", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "372", - "strokeCount": 11, - "meaning": "call on, visit, look up, offer sympathy", - "kunyomi": [ - "おとず.れる", - "たず.ねる", - "と.う" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "訪中", - "reading": "ホウチュウ", - "meaning": "visit to China" - }, - { - "example": "訪欧", - "reading": "ホウオウ", - "meaning": "visit to Europe, visiting Europe" - }, - { - "example": "歴訪", - "reading": "レキホウ", - "meaning": "round of calls, tour of visitation" - }, - { - "example": "採訪", - "reading": "サイホウ", - "meaning": "research visit, visit to collect data (esp. historical, folklore, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "訪れる", - "reading": "おとずれる", - "meaning": "to visit, to call on, to arrive, to come, to appear" - }, - { - "example": "訪ねる", - "reading": "たずねる", - "meaning": "to visit, to call on, to pay a visit to" - }, - { - "example": "問う", - "reading": "とう", - "meaning": "to ask, to inquire, to blame (someone) for, to accuse of, to pursue (question of responsibility), to charge with, to care about, to regard as important, to call into question, to doubt, to question" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "方", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35370_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a2a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a2a.gif", - "uri": "http://jisho.org/search/%E8%A8%AA%23kanji" - }, - { - "query": "亡", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "661", - "strokeCount": 3, - "meaning": "deceased, the late, dying, perish", - "kunyomi": [ - "な.い", - "な.き-", - "ほろ.びる", - "ほろ.ぶ", - "ほろ.ぼす" - ], - "onyomi": [ - "ボウ", - "モウ" - ], - "onyomiExamples": [ - { - "example": "亡", - "reading": "ボウ", - "meaning": "death, the late, the deceased" - }, - { - "example": "亡命", - "reading": "ボウメイ", - "meaning": "flight from one's country, seeking asylum, defection, emigration (for political reasons), (going into) exile, becoming a (political) refugee" - }, - { - "example": "存亡", - "reading": "ソンボウ", - "meaning": "life or death, existence, destiny" - }, - { - "example": "興亡", - "reading": "コウボウ", - "meaning": "rise and fall, ups and downs" - }, - { - "example": "亡者", - "reading": "モウジャ", - "meaning": "the dead, ghost, person who is obsessed (with money, power, etc.), person with a blind lust (for)" - }, - { - "example": "亡者船", - "reading": "モウジャブネ", - "meaning": "ship of the dead which appears if you go fishing the night of the Bon festival" - }, - { - "example": "焼亡", - "reading": "ショウボウ", - "meaning": "destruction by fire" - } - ], - "kunyomiExamples": [ - { - "example": "亡い", - "reading": "ない", - "meaning": "dead" - }, - { - "example": "滅びる", - "reading": "ほろびる", - "meaning": "to go to ruin, to go under, to fall, to be destroyed, to die out, to become extinct, to perish" - }, - { - "example": "滅ぶ", - "reading": "ほろぶ", - "meaning": "to be ruined, to go under, to perish, to be destroyed" - }, - { - "example": "滅ぼす", - "reading": "ほろぼす", - "meaning": "to destroy, to overthrow, to wreck, to ruin" - } - ], - "radical": { - "symbol": "亠", - "meaning": "lid" - }, - "parts": [ - "亠", - "亡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20129_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ea1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ea1.gif", - "uri": "http://jisho.org/search/%E4%BA%A1%23kanji" - }, - { - "query": "忘", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1129", - "strokeCount": 7, - "meaning": "forget", - "kunyomi": [ - "わす.れる" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "忘年会", - "reading": "ボウネンカイ", - "meaning": "year-end party, \"forget-the-year\" party, bōnenkai" - }, - { - "example": "忘却", - "reading": "ボウキャク", - "meaning": "lapse of memory, forgetting completely, (consigning to) oblivion" - }, - { - "example": "両忘", - "reading": "リョウボウ", - "meaning": "detachment from dichotomies, detachment from objectivity and subjectivity" - }, - { - "example": "備忘", - "reading": "ビボウ", - "meaning": "reminder" - } - ], - "kunyomiExamples": [ - { - "example": "忘れる", - "reading": "わすれる", - "meaning": "to forget, to leave carelessly, to be forgetful of, to forget about, to forget (an article)" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "亠", - "亡", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24536_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fd8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fd8.gif", - "uri": "http://jisho.org/search/%E5%BF%98%23kanji" - }, - { - "query": "棒", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1455", - "strokeCount": 12, - "meaning": "rod, stick, cane, pole, club, line", - "kunyomi": [], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "棒", - "reading": "ボウ", - "meaning": "pole, rod, stick, baton, line, dash, spoken monotonously" - }, - { - "example": "棒状", - "reading": "ボウジョウ", - "meaning": "cylinder or rod-shaped" - }, - { - "example": "用心棒", - "reading": "ヨウジンボウ", - "meaning": "bodyguard, bouncer, guard, bar (e.g. on a door), bolt, stick or pole used for self-defence" - }, - { - "example": "指揮棒", - "reading": "シキボウ", - "meaning": "conductor's stick, conductor's baton" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "二", - "人", - "大", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26834_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068d2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68d2.gif", - "uri": "http://jisho.org/search/%E6%A3%92%23kanji" - }, - { - "query": "枚", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "911", - "strokeCount": 8, - "meaning": "sheet of..., counter for flat thin objects or sheets", - "kunyomi": [], - "onyomi": [ - "マイ", - "バイ" - ], - "onyomiExamples": [ - { - "example": "枚", - "reading": "マイ", - "meaning": "counter for flat objects (e.g. sheets of paper), counter for positions or roles, counter for food portions (now only gyōza and soba), counter for ranking level" - }, - { - "example": "枚数", - "reading": "マイスウ", - "meaning": "the number of flat things, win-loss difference which influences the ranking of wrestlers" - }, - { - "example": "パンツ一枚", - "reading": "パンツイチマイ", - "meaning": "(wearing) nothing but a pair of underpants" - }, - { - "example": "奇跡の一枚", - "reading": "キセキノイチマイ", - "meaning": "photo in which its subject looks much more attractive than their usual self" - }, - { - "example": "枚を銜む", - "reading": "バイヲフクム", - "meaning": "(of a horse) to be gagged" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "乞", - "攵", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26522_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0679a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/679a.gif", - "uri": "http://jisho.org/search/%E6%9E%9A%23kanji" - }, - { - "query": "幕", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "835", - "strokeCount": 13, - "meaning": "curtain, bunting, act of play", - "kunyomi": [ - "とばり" - ], - "onyomi": [ - "マク", - "バク" - ], - "onyomiExamples": [ - { - "example": "幕", - "reading": "マク", - "meaning": "curtain, bunting, act (in play)" - }, - { - "example": "幕開け", - "reading": "マクアケ", - "meaning": "the rise of the curtain, opening (of play), beginning (e.g. of an era), opening (festival, event, etc.)" - }, - { - "example": "入幕", - "reading": "ニュウマク", - "meaning": "advancing to the first grade" - }, - { - "example": "閉幕", - "reading": "ヘイマク", - "meaning": "falling of the curtain, coming to an end" - }, - { - "example": "幕末", - "reading": "バクマツ", - "meaning": "closing days of the Tokugawa shogunate, end of Edo era" - }, - { - "example": "幕府", - "reading": "バクフ", - "meaning": "bakufu, shogunate" - }, - { - "example": "帷幕", - "reading": "イバク", - "meaning": "curtain, field staff headquarters, secret meeting place" - }, - { - "example": "倒幕", - "reading": "トウバク", - "meaning": "overthrow of the shogunate" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "大", - "巾", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24149_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e55.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e55.gif", - "uri": "http://jisho.org/search/%E5%B9%95%23kanji" - }, - { - "query": "密", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "815", - "strokeCount": 11, - "meaning": "secrecy, density (pop), minuteness, carefulness", - "kunyomi": [ - "ひそ.か" - ], - "onyomi": [ - "ミツ" - ], - "onyomiExamples": [ - { - "example": "密", - "reading": "ミツ", - "meaning": "dense, thick, crowded, close (relationship), intimate, minute, fine, careful, secret, esoteric Buddhism, secret Buddhist teachings" - }, - { - "example": "密度", - "reading": "ミツド", - "meaning": "density" - }, - { - "example": "濃密", - "reading": "ノウミツ", - "meaning": "thick, dense, rich (as in taste or content), deep (colour), strong (smell, scent), crowded" - }, - { - "example": "細密", - "reading": "サイミツ", - "meaning": "detailed knowledge, finely detailed" - } - ], - "kunyomiExamples": [ - { - "example": "密か", - "reading": "ひそか", - "meaning": "secret, private, surreptitious" - }, - { - "example": "密か事", - "reading": "みそかごと", - "meaning": "secret, private matter, amorous affair, liaison" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ノ", - "丶", - "宀", - "山", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23494_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bc6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bc6.gif", - "uri": "http://jisho.org/search/%E5%AF%86%23kanji" - }, - { - "query": "盟", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "587", - "strokeCount": 13, - "meaning": "alliance, oath", - "kunyomi": [], - "onyomi": [ - "メイ" - ], - "onyomiExamples": [ - { - "example": "盟", - "reading": "メイ", - "meaning": "alliance, aimag, league, administrative subdivision in Mongolia and Inner Mongolia" - }, - { - "example": "盟主", - "reading": "メイシュ", - "meaning": "leader (of an alliance), leading power" - }, - { - "example": "期成同盟", - "reading": "キセイドウメイ", - "meaning": "association formed to carry out an objective" - }, - { - "example": "締盟", - "reading": "テイメイ", - "meaning": "forming an alliance, conclusion of a treaty of alliance" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "日", - "月", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30431_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076df.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76df.gif", - "uri": "http://jisho.org/search/%E7%9B%9F%23kanji" - }, - { - "query": "模", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "668", - "strokeCount": 14, - "meaning": "imitation, copy, mock", - "kunyomi": [], - "onyomi": [ - "モ", - "ボ" - ], - "onyomiExamples": [ - { - "example": "模型", - "reading": "モケイ", - "meaning": "model, dummy, maquette" - }, - { - "example": "模擬", - "reading": "モギ", - "meaning": "imitation" - }, - { - "example": "小規模", - "reading": "ショウキボ", - "meaning": "small scale" - }, - { - "example": "中規模", - "reading": "チュウキボ", - "meaning": "mid-range, mid-scale, mid-size" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "大", - "日", - "木", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27169_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06a21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6a21.gif", - "uri": "http://jisho.org/search/%E6%A8%A1%23kanji" - }, - { - "query": "訳", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1050", - "strokeCount": 11, - "meaning": "translate, reason, circumstance, case", - "kunyomi": [ - "わけ" - ], - "onyomi": [ - "ヤク" - ], - "onyomiExamples": [ - { - "example": "訳", - "reading": "ヤク", - "meaning": "translation, version (e.g. \"English version\")" - }, - { - "example": "訳者", - "reading": "ヤクシャ", - "meaning": "translator" - }, - { - "example": "点訳", - "reading": "テンヤク", - "meaning": "translating into Braille" - }, - { - "example": "名訳", - "reading": "メイヤク", - "meaning": "excellent translation, fine translation" - } - ], - "kunyomiExamples": [ - { - "example": "訳", - "reading": "わけ", - "meaning": "conclusion from reasoning, judgement or calculation based on something read or heard, reason, cause, meaning, circumstances, situation" - }, - { - "example": "訳がない", - "reading": "わけがない", - "meaning": "there is no way that ..., easy, simple" - }, - { - "example": "申し訳", - "reading": "もうしわけ", - "meaning": "apology, excuse" - }, - { - "example": "仕分け", - "reading": "しわけ", - "meaning": "classification, assortment, assortment journalizing (in bookkeeping)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "丶", - "尸", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35379_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a33.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a33.gif", - "uri": "http://jisho.org/search/%E8%A8%B3%23kanji" - }, - { - "query": "郵", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "917", - "strokeCount": 11, - "meaning": "mail, stagecoach stop", - "kunyomi": [], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "郵政省", - "reading": "ユウセイショウ", - "meaning": "(former) Ministry of Posts and Telecommunications (now Ministry of Internal Affairs and Communications)" - }, - { - "example": "郵政", - "reading": "ユウセイ", - "meaning": "postal system" - }, - { - "example": "電郵", - "reading": "デンユウ", - "meaning": "(an item of) electronic mail (e-mail), e-mail message, electronic mail (e-mail) service, electronic mail (e-mail) system" - }, - { - "example": "携帯電郵", - "reading": "ケイタイデンユウ", - "meaning": "email from a cell phone or mobile phone" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "ノ", - "一", - "邦", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37109_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090f5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90f5.gif", - "uri": "http://jisho.org/search/%E9%83%B5%23kanji" - }, - { - "query": "優", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "334", - "strokeCount": 17, - "meaning": "tenderness, excel, surpass, actor, superiority, gentleness", - "kunyomi": [ - "やさ.しい", - "すぐ.れる", - "まさ.る" - ], - "onyomi": [ - "ユウ", - "ウ" - ], - "onyomiExamples": [ - { - "example": "優", - "reading": "ユウ", - "meaning": "Excellent (grade), A, superiority, excellence, gentle, graceful, elegant, skillful" - }, - { - "example": "優位", - "reading": "ユウイ", - "meaning": "predominance, superiority, ascendancy, advantage, supremacy" - }, - { - "example": "声優", - "reading": "セイユウ", - "meaning": "voice actor or actress (radio, animation, etc.)" - }, - { - "example": "舞台俳優", - "reading": "ブタイハイユウ", - "meaning": "stage actor, stage actress" - }, - { - "example": "優曇華", - "reading": "ウドンゲ", - "meaning": "udumbara (mythical Indian plant often identified with the cluster fig, Ficus glomerata), something very rare (from the legend that it flowers once in 3000 years), Japanese fiber banana flower, green lacewing eggs" - }, - { - "example": "優婆夷", - "reading": "ウバイ", - "meaning": "upasika (devout female lay follower of Buddhism)" - }, - { - "example": "声優", - "reading": "セイユウ", - "meaning": "voice actor or actress (radio, animation, etc.)" - }, - { - "example": "舞台俳優", - "reading": "ブタイハイユウ", - "meaning": "stage actor, stage actress" - } - ], - "kunyomiExamples": [ - { - "example": "優しい", - "reading": "やさしい", - "meaning": "tender, kind, gentle, graceful, affectionate, amiable" - }, - { - "example": "優しい声", - "reading": "やさしいこえ", - "meaning": "soft voice" - }, - { - "example": "優れる", - "reading": "すぐれる", - "meaning": "to surpass, to outstrip, to excel" - }, - { - "example": "勝る", - "reading": "まさる", - "meaning": "to excel, to surpass, to exceed, to have an edge, to be superior, to outrival, to outweigh, to preponderate" - }, - { - "example": "優るとも劣らない", - "reading": "まさるともおとらない", - "meaning": "not at all inferior to, rival or surpass, compare favorably (with)" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "冖", - "化", - "夂", - "心", - "白", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20778_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0512a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/512a.gif", - "uri": "http://jisho.org/search/%E5%84%AA%23kanji" - }, - { - "query": "預", - "found": true, - "taughtIn": "grade 5", - "jlptLevel": "N2", - "newspaperFrequencyRank": "981", - "strokeCount": 13, - "meaning": "deposit, custody, leave with, entrust to", - "kunyomi": [ - "あず.ける", - "あず.かる" - ], - "onyomi": [ - "ヨ" - ], - "onyomiExamples": [ - { - "example": "預託", - "reading": "ヨタク", - "meaning": "depositing (of money, valuables, etc.), deposition" - }, - { - "example": "預金", - "reading": "ヨキン", - "meaning": "deposit, bank account" - } - ], - "kunyomiExamples": [ - { - "example": "預ける", - "reading": "あずける", - "meaning": "to leave (in someone's keeping), to put (in someone's care), to place (in someone's custody), to entrust (someone) with, to deposit, to put (someone) in charge of, to leave (a matter) in someone's hands, to let (someone) decide, to lean on, to put one's weight on" - }, - { - "example": "預かる", - "reading": "あずかる", - "meaning": "to look after, to take care of, to keep, to hold on to, to keep in custody, to be put in charge of, to be given responsibility for, to be entrusted with, to withhold (an announcement), to reserve (judgment), to leave undecided, to take upon oneself (to do), to settle (a matter) oneself" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "マ", - "一", - "亅", - "欠", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38928_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09810.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9810.gif", - "uri": "http://jisho.org/search/%E9%A0%90%23kanji" - }, - { - "query": "幼", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1227", - "strokeCount": 5, - "meaning": "infancy, childhood", - "kunyomi": [ - "おさな.い" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "幼", - "reading": "ヨウ", - "meaning": "infancy, childhood, infant, child" - }, - { - "example": "幼少", - "reading": "ヨウショウ", - "meaning": "infancy, childhood, tender age" - }, - { - "example": "長幼", - "reading": "チョウヨウ", - "meaning": "young and old" - }, - { - "example": "老幼", - "reading": "ロウヨウ", - "meaning": "old and young" - } - ], - "kunyomiExamples": [ - { - "example": "幼い", - "reading": "おさない", - "meaning": "very young, little, childish, immature" - }, - { - "example": "幼い頃", - "reading": "おさないころ", - "meaning": "when one was a very young child, very early in one's life" - } - ], - "radical": { - "symbol": "幺", - "meaning": "short, tiny" - }, - "parts": [ - "力", - "幺" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24188_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e7c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e7c.gif", - "uri": "http://jisho.org/search/%E5%B9%BC%23kanji" - }, - { - "query": "欲", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "902", - "strokeCount": 11, - "meaning": "longing, covetousness, greed, passion, desire, craving", - "kunyomi": [ - "ほっ.する", - "ほ.しい" - ], - "onyomi": [ - "ヨク" - ], - "onyomiExamples": [ - { - "example": "欲", - "reading": "ヨク", - "meaning": "greed, craving, desire, appetite, hunger, avarice, wants" - }, - { - "example": "欲望", - "reading": "ヨクボウ", - "meaning": "desire, appetite, lust" - }, - { - "example": "私欲", - "reading": "シヨク", - "meaning": "self-interest, selfish desire" - }, - { - "example": "勤労意欲", - "reading": "キンロウイヨク", - "meaning": "will to work" - } - ], - "kunyomiExamples": [ - { - "example": "欲する", - "reading": "ほっする", - "meaning": "to want, to desire" - }, - { - "example": "欲しい", - "reading": "ほしい", - "meaning": "wanted, wished for, in need of, desired, I want (you) to" - }, - { - "example": "欲しいだけ", - "reading": "ほしいだけ", - "meaning": "as much as one wants, as many as one wants, all that one wishes for" - } - ], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "ハ", - "个", - "口", - "欠", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27442_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b32.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b32.gif", - "uri": "http://jisho.org/search/%E6%AC%B2%23kanji" - }, - { - "query": "翌", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1070", - "strokeCount": 11, - "meaning": "the following, next", - "kunyomi": [], - "onyomi": [ - "ヨク" - ], - "onyomiExamples": [ - { - "example": "翌", - "reading": "ヨク", - "meaning": "the following, next" - }, - { - "example": "翌朝", - "reading": "ヨクアサ", - "meaning": "next morning" - }, - { - "example": "翌々", - "reading": "ヨクヨク", - "meaning": "the one after next" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "羽", - "meaning": "feather" - }, - "parts": [ - "冫", - "立", - "羽" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32716_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fcc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fcc.gif", - "uri": "http://jisho.org/search/%E7%BF%8C%23kanji" - }, - { - "query": "乱", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "755", - "strokeCount": 7, - "meaning": "riot, war, disorder, disturb", - "kunyomi": [ - "みだ.れる", - "みだ.る", - "みだ.す", - "みだ", - "おさ.める", - "わた.る" - ], - "onyomi": [ - "ラン", - "ロン" - ], - "onyomiExamples": [ - { - "example": "乱", - "reading": "ラン", - "meaning": "revolt, rebellion, war" - }, - { - "example": "乱獲", - "reading": "ランカク", - "meaning": "excessive fishing, overfishing, overhunting, excessive taking" - }, - { - "example": "動乱", - "reading": "ドウラン", - "meaning": "disturbance, agitation, commotion, upheaval, riot" - }, - { - "example": "騒乱", - "reading": "ソウラン", - "meaning": "disturbance, riot, mayhem" - }, - { - "example": "胡乱", - "reading": "ウロン", - "meaning": "suspicious-looking, fishy" - } - ], - "kunyomiExamples": [ - { - "example": "乱れる", - "reading": "みだれる", - "meaning": "to be disordered, to be disarranged, to be disarrayed, to be disheveled, to be dishevelled, to be discomposed, to be upset, to get confused, to be disturbed, to lapse into chaos (due to war, etc.)" - }, - { - "example": "乱す", - "reading": "みだす", - "meaning": "to throw into disorder, to disarrange, to disturb (order, peace, etc.), to corrupt (public morals), to dishevel (hair)" - }, - { - "example": "乱れる", - "reading": "みだれる", - "meaning": "to be disordered, to be disarranged, to be disarrayed, to be disheveled, to be dishevelled, to be discomposed, to be upset, to get confused, to be disturbed, to lapse into chaos (due to war, etc.)" - }, - { - "example": "乱れ", - "reading": "みだれ", - "meaning": "disorder, disturbance, unrest" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "乙", - "口", - "舌" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20081_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e71.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e71.gif", - "uri": "http://jisho.org/search/%E4%B9%B1%23kanji" - }, - { - "query": "卵", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1342", - "strokeCount": 7, - "meaning": "egg, ovum, spawn, roe", - "kunyomi": [ - "たまご" - ], - "onyomi": [ - "ラン" - ], - "onyomiExamples": [ - { - "example": "卵", - "reading": "ラン", - "meaning": "ovum, ovule, egg cell" - }, - { - "example": "卵子", - "reading": "ランシ", - "meaning": "ovum, ovule, egg cell" - }, - { - "example": "受精卵", - "reading": "ジュセイラン", - "meaning": "fertilized egg, fertilised egg" - }, - { - "example": "介卵", - "reading": "カイラン", - "meaning": "brooding" - } - ], - "kunyomiExamples": [ - { - "example": "卵", - "reading": "たまご", - "meaning": "eggs, egg, spawn, roe, (hen's) egg, (an expert) in the making, beginning, origin, infancy" - }, - { - "example": "卵形", - "reading": "らんけい", - "meaning": "oval shape, egg shape" - }, - { - "example": "乾燥卵", - "reading": "かんそうらん", - "meaning": "powdered eggs, dehydrated eggs, dried eggs" - }, - { - "example": "冷凍卵", - "reading": "れいとうらん", - "meaning": "frozen egg" - } - ], - "radical": { - "symbol": "卩", - "meaning": "kneel" - }, - "parts": [ - "ノ", - "丶", - "卜", - "卩" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21365_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05375.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5375.gif", - "uri": "http://jisho.org/search/%E5%8D%B5%23kanji" - }, - { - "query": "覧", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1510", - "strokeCount": 17, - "meaning": "perusal, see", - "kunyomi": [ - "み.る" - ], - "onyomi": [ - "ラン" - ], - "onyomiExamples": [ - { - "example": "一覧", - "reading": "イチラン", - "meaning": "look, glance, sight, inspection, summary, list, table, catalog, catalogue" - }, - { - "example": "遊覧", - "reading": "ユウラン", - "meaning": "sightseeing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "見", - "meaning": "see" - }, - "parts": [ - "ノ", - "乞", - "二", - "臣", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35239_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/089a7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/89a7.gif", - "uri": "http://jisho.org/search/%E8%A6%A7%23kanji" - }, - { - "query": "裏", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "812", - "strokeCount": 13, - "meaning": "back, amidst, in, reverse, inside, palm, sole, rear, lining, wrong side", - "kunyomi": [ - "うら" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "裏", - "reading": "リ", - "meaning": "in (e.g. secret), with (e.g. success)" - }, - { - "example": "裏面", - "reading": "リメン", - "meaning": "back, reverse, other side, inside, tails (of coins), background" - }, - { - "example": "内裏", - "reading": "ダイリ", - "meaning": "imperial palace, festival dolls representing the emperor and the empress" - }, - { - "example": "影裏", - "reading": "エイリ", - "meaning": "shade" - } - ], - "kunyomiExamples": [ - { - "example": "裏", - "reading": "うら", - "meaning": "opposite side, bottom, other side, side hidden from view, undersurface, reverse side, rear, back, behind, lining, inside, in the shadows, behind the scenes, offstage, behind (someone's) back, more (to something than meets the eye), hidden side (e.g. of one's personality), unknown circumstances, different side, proof, opposite (of a prediction, common sense, etc.), contrary, inverse (of a hypothesis, etc.), bottom (of an inning), last half (of an inning)" - }, - { - "example": "裏方", - "reading": "うらかた", - "meaning": "someone working behind-the-scenes, scene shifter, lady consort (to a high personage)" - }, - { - "example": "舞台裏", - "reading": "ぶたいうら", - "meaning": "offstage, backstage, behind the scenes" - }, - { - "example": "口裏", - "reading": "くちうら", - "meaning": "determining a speaker's true or hidden meaning, determining a speaker's intentions from his manner of speech, divining good or bad luck from listening to someone" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "衣", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35023_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088cf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88cf.gif", - "uri": "http://jisho.org/search/%E8%A3%8F%23kanji" - }, - { - "query": "律", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N2", - "newspaperFrequencyRank": "992", - "strokeCount": 9, - "meaning": "rhythm, law, regulation, gauge, control", - "kunyomi": [], - "onyomi": [ - "リツ", - "リチ", - "レツ" - ], - "onyomiExamples": [ - { - "example": "律", - "reading": "リツ", - "meaning": "law (esp. ancient East Asian criminal code), regulation, vinaya (rules for the monastic community), Ritsu (school of Buddhism), lushi (style of Chinese poem), (musical) pitch, six odd-numbered notes of the ancient chromatic scale, Japanese seven-tone gagaku scale, similar to Dorian mode (corresponding to: re, mi, fa, so, la, ti, do), (in traditional Eastern music) step (corresponding to a Western semitone)" - }, - { - "example": "律令", - "reading": "リツリョウ", - "meaning": "criminal, administrative and civil codes (forming the basis of ancient East Asian law; orig. Chinese), legal codes of the Nara and Heian eras based on Chinese models" - }, - { - "example": "一律", - "reading": "イチリツ", - "meaning": "uniform, even, across-the-board, equal" - }, - { - "example": "自律", - "reading": "ジリツ", - "meaning": "autonomy (philosophy), self-control" - }, - { - "example": "律儀", - "reading": "リチギ", - "meaning": "upright, honest, faithful, conscientious, sincere" - }, - { - "example": "律義者", - "reading": "リチギモノ", - "meaning": "honest person, conscientious person" - }, - { - "example": "呂律", - "reading": "ロレツ", - "meaning": "articulation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "彳", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24459_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f8b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f8b.gif", - "uri": "http://jisho.org/search/%E5%BE%8B%23kanji" - }, - { - "query": "臨", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "722", - "strokeCount": 18, - "meaning": "look to, face, meet, confront, attend, call on", - "kunyomi": [ - "のぞ.む" - ], - "onyomi": [ - "リン" - ], - "onyomiExamples": [ - { - "example": "臨界", - "reading": "リンカイ", - "meaning": "boundary, (nuclear) criticality, critical (mass, pressure, temperature, state, point, etc.)" - }, - { - "example": "臨海", - "reading": "リンカイ", - "meaning": "coastal, seaside, oceanfront, maritime" - }, - { - "example": "意臨", - "reading": "イリン", - "meaning": "copying calligraphy without sticking to the model (calligraphy), copying freely" - }, - { - "example": "形臨", - "reading": "ケイリン", - "meaning": "copying calligraphy from a model" - } - ], - "kunyomiExamples": [ - { - "example": "臨む", - "reading": "のぞむ", - "meaning": "to look out on, to overlook, to front onto, to face (a situation, crisis, etc.), to meet (e.g. death), to be confronted by, to deal with (an issue), to attend (e.g. a function), to appear (e.g. in court), to be present at, to take part in" - } - ], - "radical": { - "symbol": "臣", - "meaning": "minster, official" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "口", - "品", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33256_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081e8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81e8.gif", - "uri": "http://jisho.org/search/%E8%87%A8%23kanji" - }, - { - "query": "朗", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1374", - "strokeCount": 10, - "meaning": "melodious, clear, bright, serene, cheerful", - "kunyomi": [ - "ほが.らか", - "あき.らか" - ], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "朗報", - "reading": "ロウホウ", - "meaning": "good news" - }, - { - "example": "朗読", - "reading": "ロウドク", - "meaning": "reading aloud, recitation" - }, - { - "example": "晃朗", - "reading": "コウロウ", - "meaning": "bright and brilliant" - }, - { - "example": "融朗", - "reading": "ユウロウ", - "meaning": "brightness, clearness" - } - ], - "kunyomiExamples": [ - { - "example": "朗らか", - "reading": "ほがらか", - "meaning": "cheerful, merry, sunny, melodious, bright (sky, day, etc.), fine, clear" - } - ], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "月", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26391_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06717.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6717.gif", - "uri": "http://jisho.org/search/%E6%9C%97%23kanji" - }, - { - "query": "論", - "found": true, - "taughtIn": "grade 6", - "jlptLevel": "N3", - "newspaperFrequencyRank": "227", - "strokeCount": 15, - "meaning": "argument, discourse", - "kunyomi": [ - "あげつら.う" - ], - "onyomi": [ - "ロン" - ], - "onyomiExamples": [ - { - "example": "論", - "reading": "ロン", - "meaning": "argument, discussion, dispute, controversy, discourse, debate, theory (e.g. of evolution), doctrine, essay, treatise, comment" - }, - { - "example": "論客", - "reading": "ロンキャク", - "meaning": "controversialist" - }, - { - "example": "公論", - "reading": "コウロン", - "meaning": "public opinion, unbiased criticism, unbiassed criticism" - }, - { - "example": "対論", - "reading": "タイロン", - "meaning": "arguing face to face" - } - ], - "kunyomiExamples": [ - { - "example": "論う", - "reading": "あげつらう", - "meaning": "to discuss, to find fault with, to criticize, to criticise" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "个", - "冊", - "廾", - "言", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35542_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ad6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ad6.gif", - "uri": "http://jisho.org/search/%E8%AB%96%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/data/jisho/grade7.json b/lib/migrations/data/jisho/grade7.json deleted file mode 100644 index 4575657..0000000 --- a/lib/migrations/data/jisho/grade7.json +++ /dev/null @@ -1,70743 +0,0 @@ -[ - { - "query": "亜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1509", - "strokeCount": 7, - "meaning": "Asia, rank next, come after, -ous", - "kunyomi": [ - "つ.ぐ" - ], - "onyomi": [ - "ア" - ], - "onyomiExamples": [ - { - "example": "亜", - "reading": "ア", - "meaning": "sub-, -ous (indicating a low oxidation state), -ite, Asia, Argentina, Arabia, America, American person" - }, - { - "example": "亜鉛", - "reading": "アエン", - "meaning": "zinc (Zn)" - }, - { - "example": "東亜", - "reading": "トウア", - "meaning": "East Asia, the Orient" - }, - { - "example": "印度尼西亜", - "reading": "インドネシア", - "meaning": "Indonesia" - } - ], - "kunyomiExamples": [ - { - "example": "次ぐ", - "reading": "つぐ", - "meaning": "to rank next to, to come after" - } - ], - "radical": { - "symbol": "二", - "meaning": "two" - }, - "parts": [ - "一", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20124_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e9c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e9c.gif", - "uri": "http://jisho.org/search/%E4%BA%9C%23kanji" - }, - { - "query": "哀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1715", - "strokeCount": 9, - "meaning": "pathetic, grief, sorrow, pathos, pity, sympathize", - "kunyomi": [ - "あわ.れ", - "あわ.れむ", - "かな.しい" - ], - "onyomi": [ - "アイ" - ], - "onyomiExamples": [ - { - "example": "哀", - "reading": "アイ", - "meaning": "pity, sorrow, grief, misery" - }, - { - "example": "哀悼", - "reading": "アイトウ", - "meaning": "condolence, regret, tribute, sorrow, sympathy, lament" - }, - { - "example": "哀々", - "reading": "アイアイ", - "meaning": "deeply sad" - } - ], - "kunyomiExamples": [ - { - "example": "哀れ", - "reading": "あわれ", - "meaning": "pity, sorrow, grief, misery, compassion, pathos, pitiable, pitiful, pathetic, miserable, alack, alas" - }, - { - "example": "哀れむ", - "reading": "あわれむ", - "meaning": "to pity, to feel sympathy for, to sympathize with, to sympathise with, to commiserate with, to have mercy on, to enjoy the beauty of, to appreciate, to admire" - }, - { - "example": "哀れむ", - "reading": "あわれむ", - "meaning": "to pity, to feel sympathy for, to sympathize with, to sympathise with, to commiserate with, to have mercy on, to enjoy the beauty of, to appreciate, to admire" - }, - { - "example": "悲しい", - "reading": "かなしい", - "meaning": "sad, miserable, unhappy, sorrowful, sad, lamentable, deplorable, grievous" - }, - { - "example": "悲しいかな", - "reading": "かなしいかな", - "meaning": "sad to say, how sad, alas" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "亠", - "口", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21696_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054c0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54c0.gif", - "uri": "http://jisho.org/search/%E5%93%80%23kanji" - }, - { - "query": "挨", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2258", - "strokeCount": 10, - "meaning": "approach, draw near, push open", - "kunyomi": [ - "ひら.く" - ], - "onyomi": [ - "アイ" - ], - "onyomiExamples": [ - { - "example": "挨拶", - "reading": "アイサツ", - "meaning": "greeting, greetings, salutation, salute, polite set phrase used when meeting or parting from somebody, polite set phrase used to express apology, sympathy, congratulations, etc., speech (congratulatory or appreciative), address, reply, response, revenge, retaliation, a fine thing to say, dialoging (with another Zen practitioner to ascertain their level of enlightenment), relationship (between people), connection, intervention, mediation, mediator" - }, - { - "example": "挨拶代わり", - "reading": "アイサツガワリ", - "meaning": "substitute for a proper greeting (e.g. gift)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "乞", - "厶", - "扎", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25384_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06328.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6328.gif", - "uri": "http://jisho.org/search/%E6%8C%A8%23kanji" - }, - { - "query": "曖", - "found": true, - "taughtIn": "junior high", - "strokeCount": 17, - "meaning": "dark, not clear", - "kunyomi": [ - "くら.い" - ], - "onyomi": [ - "アイ" - ], - "onyomiExamples": [ - { - "example": "曖昧", - "reading": "アイマイ", - "meaning": "vague, ambiguous, unclear, fuzzy" - }, - { - "example": "曖々", - "reading": "アイアイ", - "meaning": "dim, faint, unclear" - }, - { - "example": "曖々", - "reading": "アイアイ", - "meaning": "dim, faint, unclear" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "冖", - "夂", - "心", - "日", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26326_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066d6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66d6.gif", - "uri": "http://jisho.org/search/%E6%9B%96%23kanji" - }, - { - "query": "握", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1003", - "strokeCount": 12, - "meaning": "grip, hold, mould sushi, bribe", - "kunyomi": [ - "にぎ.る" - ], - "onyomi": [ - "アク" - ], - "onyomiExamples": [ - { - "example": "握手", - "reading": "アクシュ", - "meaning": "handshake, reconciliation, joining hands, cooperation" - }, - { - "example": "握力", - "reading": "アクリョク", - "meaning": "grip (of hand), grip strength" - }, - { - "example": "一握", - "reading": "イチアク", - "meaning": "handful" - }, - { - "example": "動向把握", - "reading": "ドウコウハアク", - "meaning": "grasping the trend, firmly understanding how the situation is developing, getting a good sense of how things are changing" - } - ], - "kunyomiExamples": [ - { - "example": "握る", - "reading": "にぎる", - "meaning": "to clasp, to grasp, to grip, to clutch, to make (nigirizushi, rice ball, etc.), to form, to press into shape, to mold, to mould, to seize (power, etc.), to take hold of" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "厶", - "土", - "尸", - "扎", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25569_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063e1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63e1.gif", - "uri": "http://jisho.org/search/%E6%8F%A1%23kanji" - }, - { - "query": "扱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1057", - "strokeCount": 6, - "meaning": "handle, entertain, thresh, strip", - "kunyomi": [ - "あつか.い", - "あつか.う", - "あつか.る", - "こ.く" - ], - "onyomi": [ - "ソウ", - "キュウ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "扱い", - "reading": "あつかい", - "meaning": "treatment, service" - }, - { - "example": "扱い方", - "reading": "あつかいかた", - "meaning": "how to manage (e.g. case), how to handle (e.g. machine), way with (e.g. children, animal)" - }, - { - "example": "扱う", - "reading": "あつかう", - "meaning": "to deal with (a person), to treat, to handle, to take care of, to entertain, to deal with (a problem), to handle, to manage, to operate (e.g. a machine), to handle, to work, to deal in, to sell, to cover (a topic), to treat, to discuss, to take up, to treat A as B, to mediate (an argument), to be too much for one, to find unmanageable, to gossip" - }, - { - "example": "扱く", - "reading": "こく", - "meaning": "to thresh, to strip" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "及", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25201_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06271.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6271.gif", - "uri": "http://jisho.org/search/%E6%89%B1%23kanji" - }, - { - "query": "宛", - "found": true, - "taughtIn": "junior high", - "strokeCount": 8, - "meaning": "address, just like, fortunately", - "kunyomi": [ - "あ.てる", - "-あて", - "-づつ", - "あたか.も" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "宛然", - "reading": "エンゼン", - "meaning": "as if, the very thing itself" - }, - { - "example": "宛転", - "reading": "エンテン", - "meaning": "eloquent, fluent, smooth-spoken, sonorous, facile, silver-tongued, (of eyebrows) shapely" - } - ], - "kunyomiExamples": [ - { - "example": "宛てる", - "reading": "あてる", - "meaning": "to address" - }, - { - "example": "恰も", - "reading": "あたかも", - "meaning": "as if, as it were, as though, right then, just then, at that moment" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "卩", - "夕", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23451_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b9b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b9b.gif", - "uri": "http://jisho.org/search/%E5%AE%9B%23kanji" - }, - { - "query": "嵐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1910", - "strokeCount": 12, - "meaning": "storm, tempest", - "kunyomi": [ - "あらし" - ], - "onyomi": [ - "ラン" - ], - "onyomiExamples": [ - { - "example": "嵐気", - "reading": "ランキ", - "meaning": "mountain mist, mountain air" - }, - { - "example": "青嵐", - "reading": "アオアラシ", - "meaning": "wind blowing through fresh verdure, mountain air" - }, - { - "example": "翠嵐", - "reading": "スイラン", - "meaning": "the sense of being engulfed in a green, mountainous atmosphere" - } - ], - "kunyomiExamples": [ - { - "example": "嵐", - "reading": "あらし", - "meaning": "storm, tempest, uproar, hullabaloo, storm (e.g. of protest), winds (e.g. of change)" - }, - { - "example": "嵐の大洋", - "reading": "あらしのたいよう", - "meaning": "Oceanus Procellarum (lunar mare), Ocean of Storms" - }, - { - "example": "青嵐", - "reading": "あおあらし", - "meaning": "wind blowing through fresh verdure, mountain air" - }, - { - "example": "磁気嵐", - "reading": "じきあらし", - "meaning": "magnetic storm" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "山", - "風" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23888_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05d50.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5d50.gif", - "uri": "http://jisho.org/search/%E5%B5%90%23kanji" - }, - { - "query": "依", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "906", - "strokeCount": 8, - "meaning": "reliant, depend on, consequently, therefore, due to", - "kunyomi": [ - "よ.る" - ], - "onyomi": [ - "イ", - "エ" - ], - "onyomiExamples": [ - { - "example": "依然", - "reading": "イゼン", - "meaning": "still, as yet, as it has been" - }, - { - "example": "委嘱", - "reading": "イショク", - "meaning": "commissioning, entrusting (with), request, appointment (to a position)" - }, - { - "example": "依々", - "reading": "イイ", - "meaning": "affectionately attached, reluctant to part" - }, - { - "example": "憑依", - "reading": "ヒョウイ", - "meaning": "dependence, depending on, possession (by a spirit, etc.)" - }, - { - "example": "依蘭苔", - "reading": "エイランタイ", - "meaning": "Iceland moss (Cetraria islandica), Iceland lichen" - }, - { - "example": "依估", - "reading": "イコ", - "meaning": "unfairness" - }, - { - "example": "帰依", - "reading": "キエ", - "meaning": "becoming a devout believer, (religious) conversion" - } - ], - "kunyomiExamples": [ - { - "example": "因る", - "reading": "よる", - "meaning": "to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at" - }, - { - "example": "依ると", - "reading": "よると", - "meaning": "according to" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "亠", - "化", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20381_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f9d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f9d.gif", - "uri": "http://jisho.org/search/%E4%BE%9D%23kanji" - }, - { - "query": "威", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1103", - "strokeCount": 9, - "meaning": "intimidate, dignity, majesty, menace, threaten", - "kunyomi": [ - "おど.す", - "おど.し", - "おど.かす" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "威", - "reading": "イ", - "meaning": "power, authority, might, influence, dignity, majesty" - }, - { - "example": "威嚇", - "reading": "イカク", - "meaning": "threat, intimidation, menace" - }, - { - "example": "球威", - "reading": "キュウイ", - "meaning": "(pitcher's) stuff" - }, - { - "example": "国威", - "reading": "コクイ", - "meaning": "national prestige" - } - ], - "kunyomiExamples": [ - { - "example": "脅す", - "reading": "おどす", - "meaning": "to threaten, to menace, to frighten (into doing)" - }, - { - "example": "縅", - "reading": "おどし", - "meaning": "leather strap binding the plates of traditional Japanese armor (armour)" - }, - { - "example": "脅し", - "reading": "おどし", - "meaning": "threat, bird-scaring device (scarecrow, gun, etc.)" - }, - { - "example": "脅かす", - "reading": "おどかす", - "meaning": "to threaten, to menace, to intimidate, to startle, to frighten, to scare" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ノ", - "厂", - "女", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23041_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a01.gif", - "uri": "http://jisho.org/search/%E5%A8%81%23kanji" - }, - { - "query": "為", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "831", - "strokeCount": 9, - "meaning": "do, change, make, benefit, welfare, be of use, reach to, try, practice, cost, serve as, good, advantage, as a result of", - "kunyomi": [ - "ため", - "な.る", - "な.す", - "す.る", - "たり", - "つく.る", - "なり" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "為政者", - "reading": "イセイシャ", - "meaning": "statesman, administrator, politician, policymaker" - }, - { - "example": "為公会", - "reading": "イコウカイ", - "meaning": "Iko-kai (faction of the LDP)" - }, - { - "example": "人為", - "reading": "ジンイ", - "meaning": "human work, human agency, art, artificiality" - }, - { - "example": "営為", - "reading": "エイイ", - "meaning": "business, occupation" - } - ], - "kunyomiExamples": [ - { - "example": "為", - "reading": "ため", - "meaning": "good, advantage, benefit, welfare, sake, purpose, objective, aim, consequence, result, effect, affecting, regarding, concerning" - }, - { - "example": "為に", - "reading": "ために", - "meaning": "for, for the sake of, to one's advantage, in favor of, in favour of, on behalf of, because of, as a result of" - }, - { - "example": "外為", - "reading": "がいため", - "meaning": "foreign exchange" - }, - { - "example": "念のため", - "reading": "ねんのため", - "meaning": "(just) making sure, just to be sure, just in case, for caution's sake" - }, - { - "example": "成る", - "reading": "なる", - "meaning": "to become, to get, to grow, to be, to reach, to attain, to result in, to prove to be, to consist of, to be composed of, to succeed, to be complete, to change into, to be exchanged for, to play a role, to be promoted, to do ..." - }, - { - "example": "為す", - "reading": "なす", - "meaning": "to build up, to establish, to form, to become (a state), to accomplish, to achieve, to succeed in, to change into, to do, to perform, to intend to, to attempt, to try" - }, - { - "example": "為す術", - "reading": "なすすべ", - "meaning": "means, method, way" - }, - { - "example": "為る", - "reading": "する", - "meaning": "to do, to carry out, to perform, to cause to become, to make (into), to turn (into), to serve as, to act as, to work as, to wear (clothes, a facial expression, etc.), to judge as being, to view as being, to think of as, to treat as, to use as, to decide on, to choose, to be sensed (of a smell, noise, etc.), to be (in a state, condition, etc.), to be worth, to cost, to pass (of time), to elapse, to place, or raise, person A to a post or status B, to transform A to B, to make A into B, to exchange A for B, to make use of A for B, to view A as B, to handle A as if it were B, to feel A about B, verbalizing suffix (applies to nouns noted in this dictionary with the part of speech \"vs\"), creates a humble verb (after a noun prefixed with \"o\" or \"go\"), to be just about to, to be just starting to, to try to, to attempt to" - }, - { - "example": "成り", - "reading": "なり", - "meaning": "being promoted" - }, - { - "example": "なり手", - "reading": "なりて", - "meaning": "person willing to take on a role, willing candidate" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "ノ", - "ユ", - "丶", - "勹", - "并", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28858_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/070ba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/70ba.gif", - "uri": "http://jisho.org/search/%E7%82%BA%23kanji" - }, - { - "query": "畏", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2389", - "strokeCount": 9, - "meaning": "fear, majestic, graciously, be apprehensive", - "kunyomi": [ - "おそ.れる", - "かしこま.る", - "かしこ", - "かしこ.し" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "畏怖", - "reading": "イフ", - "meaning": "awe, fear, dread, fright" - }, - { - "example": "畏敬", - "reading": "イケイ", - "meaning": "reverence, awe, respect" - }, - { - "example": "敬畏", - "reading": "ケイイ", - "meaning": "awe, reverence, fear (e.g. of authority)" - }, - { - "example": "後生可畏", - "reading": "コウセイカイ", - "meaning": "the young should be regarded with respect" - } - ], - "kunyomiExamples": [ - { - "example": "恐れる", - "reading": "おそれる", - "meaning": "to fear, to be afraid of" - }, - { - "example": "畏まる", - "reading": "かしこまる", - "meaning": "to obey respectfully, to humble oneself, to sit straight (upright, respectfully, attentively)" - }, - { - "example": "畏", - "reading": "かしこ", - "meaning": "yours sincerely, respectfully yours" - }, - { - "example": "賢い", - "reading": "かしこい", - "meaning": "wise, clever, smart" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "一", - "田", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30031_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0754f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/754f.gif", - "uri": "http://jisho.org/search/%E7%95%8F%23kanji" - }, - { - "query": "尉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2007", - "strokeCount": 11, - "meaning": "military officer, jailer, old man, rank", - "kunyomi": [], - "onyomi": [ - "イ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "尉官", - "reading": "イカン", - "meaning": "officer below the rank of major, company officer" - }, - { - "example": "中尉", - "reading": "チュウイ", - "meaning": "first lieutenant, lieutenant junior grade" - }, - { - "example": "少尉", - "reading": "ショウイ", - "meaning": "second lieutenant, sublieutenant, ensign" - }, - { - "example": "尉", - "reading": "ジョウ", - "meaning": "inspector (third highest of the four administrative ranks of the ritsuryo system), (noh) old man, white ash (of charcoal)" - }, - { - "example": "尉鶲", - "reading": "ジョウビタキ", - "meaning": "Daurian redstart (Phoenicurus auroreus)" - }, - { - "example": "黒式尉", - "reading": "コクシキジョウ", - "meaning": "noh mask used for old man roles (usu. black)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "二", - "寸", - "小", - "尸", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23561_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c09.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c09.gif", - "uri": "http://jisho.org/search/%E5%B0%89%23kanji" - }, - { - "query": "萎", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "wither, droop, lame", - "kunyomi": [ - "な", - "しお.れる", - "しな.びる", - "しぼ.む", - "な.える" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "萎縮", - "reading": "イシュク", - "meaning": "withering, shrivelling, shrinking, atrophy, contraction" - }, - { - "example": "萎黄病", - "reading": "イオウビョウ", - "meaning": "chlorosis, greensickness" - }, - { - "example": "陰萎", - "reading": "インイ", - "meaning": "impotence (sexual), erectile impotence" - } - ], - "kunyomiExamples": [ - { - "example": "萎える", - "reading": "なえる", - "meaning": "to lose strength, to become weak, to disappear (of energy, drive, etc.), to wither, to droop, to wilt, to feel demotivated, to lose interest, to become disappointed" - }, - { - "example": "萎え落ち", - "reading": "なえおち", - "meaning": "disconnecting from an online game because one is losing" - }, - { - "example": "萎れる", - "reading": "しおれる", - "meaning": "to wither, to wilt, to droop, to fade, to be dejected, to be disheartened, to be depressed, to be crestfallen" - }, - { - "example": "萎びる", - "reading": "しなびる", - "meaning": "to shrivel (e.g. cut vegetables, skin), to wilt, to fade, to wither, to be wizened" - }, - { - "example": "萎む", - "reading": "しぼむ", - "meaning": "to wither (of flowers, dreams, etc.), to wilt, to droop, to shrivel, to fade (away), to sag, to deflate" - }, - { - "example": "萎える", - "reading": "なえる", - "meaning": "to lose strength, to become weak, to disappear (of energy, drive, etc.), to wither, to droop, to wilt, to feel demotivated, to lose interest, to become disappointed" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "女", - "禾", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33806_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0840e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/840e.gif", - "uri": "http://jisho.org/search/%E8%90%8E%23kanji" - }, - { - "query": "偉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1639", - "strokeCount": 12, - "meaning": "admirable, greatness, remarkable, conceited, famous, excellent", - "kunyomi": [ - "えら.い" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "偉", - "reading": "イ", - "meaning": "greatness" - }, - { - "example": "偉業", - "reading": "イギョウ", - "meaning": "great achievement, great feat, great work, great undertaking" - }, - { - "example": "魁偉", - "reading": "カイイ", - "meaning": "brawny, muscular, impressive, gigantic" - }, - { - "example": "容貌魁偉", - "reading": "ヨウボウカイイ", - "meaning": "(a man) having a commanding face and a powerful physique" - } - ], - "kunyomiExamples": [ - { - "example": "偉い", - "reading": "えらい", - "meaning": "great, excellent, admirable, remarkable, distinguished, important, celebrated, famous, eminent, very troublesome, awful, terrible, tiring, tough, very, extremely" - }, - { - "example": "偉いこっちゃ", - "reading": "えらいこっちゃ", - "meaning": "what are we going to do?, uh-oh, oh crap, what a mess, oh brother" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "口", - "韋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20553_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05049.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5049.gif", - "uri": "http://jisho.org/search/%E5%81%89%23kanji" - }, - { - "query": "椅", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2245", - "strokeCount": 12, - "meaning": "chair", - "kunyomi": [], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "椅子", - "reading": "イス", - "meaning": "chair, stool, post, office, position" - }, - { - "example": "倚子", - "reading": "イシ", - "meaning": "traditional square chair with armrests and a torii-shaped back (used by the emperor, etc. during ceremonies)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "亅", - "口", - "大", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26885_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06905.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6905.gif", - "uri": "http://jisho.org/search/%E6%A4%85%23kanji" - }, - { - "query": "彙", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "same kind, collect, classify, category, hedgehog", - "kunyomi": [ - "はりねずみ" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "彙", - "reading": "イ", - "meaning": "kind, sort, type" - }, - { - "example": "彙報", - "reading": "イホウ", - "meaning": "bulletin, collection of reports" - }, - { - "example": "理解語彙", - "reading": "リカイゴイ", - "meaning": "passive vocabulary" - }, - { - "example": "表現語彙", - "reading": "ヒョウゲンゴイ", - "meaning": "active vocabulary" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彐", - "forms": [ - "彑" - ], - "meaning": "pig snout" - }, - "parts": [ - "ヨ", - "冖", - "彑", - "木", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24409_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f59.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f59.gif", - "uri": "http://jisho.org/search/%E5%BD%99%23kanji" - }, - { - "query": "違", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "344", - "strokeCount": 13, - "meaning": "difference, differ", - "kunyomi": [ - "ちが.う", - "ちが.い", - "ちが.える", - "-ちが.える", - "たが.う", - "たが.える" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "違反", - "reading": "イハン", - "meaning": "violation, offense, offence, breach, transgression, infringement, contravention" - }, - { - "example": "違憲", - "reading": "イケン", - "meaning": "unconstitutionality" - }, - { - "example": "格段の相違", - "reading": "カクダンノソウイ", - "meaning": "marked difference" - }, - { - "example": "非違", - "reading": "ヒイ", - "meaning": "illegality, police and judicial chief (Heian and Kamakura periods)" - } - ], - "kunyomiExamples": [ - { - "example": "違う", - "reading": "ちがう", - "meaning": "to differ (from), to vary, to not be in the usual condition, to not match the correct (answer, etc.), to be different from promised, isn't it?, wasn't it?" - }, - { - "example": "違くて", - "reading": "ちがくて", - "meaning": "different (from), not the same (as)" - }, - { - "example": "違い", - "reading": "ちがい", - "meaning": "difference, distinction, discrepancy, mistake, error" - }, - { - "example": "違いない", - "reading": "ちがいない", - "meaning": "sure, no mistaking it, for certain, without doubt" - }, - { - "example": "違える", - "reading": "ちがえる", - "meaning": "to change, to alter, to mistake, to make a mistake, to fail to keep (e.g. one's promise), to sprain (a muscle), to dislocate (e.g. one's neck)" - }, - { - "example": "違う", - "reading": "たがう", - "meaning": "to differ, to be different, to run counter to, to change (into something out of the ordinary)" - }, - { - "example": "違える", - "reading": "たがえる", - "meaning": "to change, to alter, to run counter to, to go against, to break (one's word), to make a mistake (in), to err" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "口", - "込", - "韋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36949_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09055.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9055.gif", - "uri": "http://jisho.org/search/%E9%81%95%23kanji" - }, - { - "query": "維", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "643", - "strokeCount": 14, - "meaning": "fiber, tie, rope", - "kunyomi": [], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "維持", - "reading": "イジ", - "meaning": "maintenance, preservation, improvement" - }, - { - "example": "維新", - "reading": "イシン", - "meaning": "reformation, revolution, renewal, Meiji Restoration" - }, - { - "example": "化学繊維", - "reading": "カガクセンイ", - "meaning": "synthetic fiber, synthetic fibre, chemical fiber, chemical fibre" - }, - { - "example": "合成繊維", - "reading": "ゴウセイセンイ", - "meaning": "synthetic fibre, synthetic fiber" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "糸", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32173_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dad.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dad.gif", - "uri": "http://jisho.org/search/%E7%B6%AD%23kanji" - }, - { - "query": "慰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1158", - "strokeCount": 15, - "meaning": "consolation, amusement, seduce, cheer, make sport of, comfort, console", - "kunyomi": [ - "なぐさ.める", - "なぐさ.む" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "慰謝", - "reading": "イシャ", - "meaning": "consolation" - }, - { - "example": "慰安", - "reading": "イアン", - "meaning": "solace, relaxation" - }, - { - "example": "弔意", - "reading": "チョウイ", - "meaning": "condolence, sympathy, mourning" - }, - { - "example": "少慰", - "reading": "ショウイ", - "meaning": "ensign (navy), second lieutenant (marine and army)" - } - ], - "kunyomiExamples": [ - { - "example": "慰める", - "reading": "なぐさめる", - "meaning": "to comfort, to console, to amuse" - }, - { - "example": "慰む", - "reading": "なぐさむ", - "meaning": "to feel comforted, to be in good spirits, to feel better, to forget one's worries, to trifle with, to fool around with" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "二", - "寸", - "小", - "尸", - "心", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24944_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06170.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6170.gif", - "uri": "http://jisho.org/search/%E6%85%B0%23kanji" - }, - { - "query": "緯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1430", - "strokeCount": 16, - "meaning": "horizontal, woof, left & right, (parallels of) latitude, prediction", - "kunyomi": [ - "よこいと", - "ぬき" - ], - "onyomi": [ - "イ" - ], - "onyomiExamples": [ - { - "example": "横糸", - "reading": "ヨコイト", - "meaning": "weft, woof (crosswise threads on a loom)" - }, - { - "example": "緯度", - "reading": "イド", - "meaning": "latitude (nav.)" - }, - { - "example": "北緯", - "reading": "ホクイ", - "meaning": "north latitude" - }, - { - "example": "南緯", - "reading": "ナンイ", - "meaning": "southern latitude" - } - ], - "kunyomiExamples": [ - { - "example": "横糸", - "reading": "よこいと", - "meaning": "weft, woof (crosswise threads on a loom)" - }, - { - "example": "横糸", - "reading": "よこいと", - "meaning": "weft, woof (crosswise threads on a loom)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "口", - "小", - "幺", - "糸", - "韋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32239_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07def.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7def.gif", - "uri": "http://jisho.org/search/%E7%B7%AF%23kanji" - }, - { - "query": "壱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2351", - "strokeCount": 7, - "meaning": "one (in documents)", - "kunyomi": [ - "ひとつ" - ], - "onyomi": [ - "イチ", - "イツ" - ], - "onyomiExamples": [ - { - "example": "一", - "reading": "イチ", - "meaning": "one, best, first, foremost, beginning, start, a (single), one (of many), ace (playing card), bottom string (on a shamisen, etc.)" - }, - { - "example": "壱越調", - "reading": "イチコツチョウ", - "meaning": "ichikotsu mode (one of the six main gagaku modes)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "士", - "meaning": "scholar, bachelor" - }, - "parts": [ - "冖", - "匕", - "士" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22769_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058f1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58f1.gif", - "uri": "http://jisho.org/search/%E5%A3%B1%23kanji" - }, - { - "query": "逸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1524", - "strokeCount": 11, - "meaning": "deviate, idleness, leisure, miss the mark, evade, elude, parry, diverge", - "kunyomi": [ - "そ.れる", - "そ.らす", - "はぐ.れる" - ], - "onyomi": [ - "イツ" - ], - "onyomiExamples": [ - { - "example": "逸脱", - "reading": "イツダツ", - "meaning": "deviation, departure, omission" - }, - { - "example": "逸材", - "reading": "イツザイ", - "meaning": "outstanding talent, person of exceptional talent, gifted person" - }, - { - "example": "捕逸", - "reading": "ホイツ", - "meaning": "passed ball, catcher missing a ball" - }, - { - "example": "秀逸", - "reading": "シュウイツ", - "meaning": "excellent, superb, first-rate" - } - ], - "kunyomiExamples": [ - { - "example": "逸れる", - "reading": "それる", - "meaning": "to turn away, to bear off, to veer away, to swerve from, to miss (e.g. a target), to deviate (e.g. of a conversation), to digress, to go astray, to wander" - }, - { - "example": "逸らす", - "reading": "そらす", - "meaning": "to turn away (one's eyes, face, etc.), to avert, to divert (e.g. one's attention), to evade (e.g. a question), to change (e.g. the subject), to displease, to annoy, to offend, to upset, to miss (the target, ball, etc.)" - }, - { - "example": "逸れる", - "reading": "はぐれる", - "meaning": "to lose sight of (one's companions), to stray from, to miss (one's chance to ...)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ノ", - "儿", - "免", - "勹", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36920_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09038.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9038.gif", - "uri": "http://jisho.org/search/%E9%80%B8%23kanji" - }, - { - "query": "芋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2418", - "strokeCount": 6, - "meaning": "potato", - "kunyomi": [ - "いも" - ], - "onyomi": [ - "ウ" - ], - "onyomiExamples": [ - { - "example": "海芋", - "reading": "カイウ", - "meaning": "calla (Zantedcschia aethiopica)" - }, - { - "example": "阿蘭陀海芋", - "reading": "オランダカイウ", - "meaning": "calla lily (Zantedeschia aethiopica)" - } - ], - "kunyomiExamples": [ - { - "example": "芋", - "reading": "いも", - "meaning": "tuber, taro, potato, yam, yokel, bumpkin, dud, worthless thing" - }, - { - "example": "芋片喰", - "reading": "いもかたばみ", - "meaning": "jointed woodsorrel (Oxalis articulata)" - }, - { - "example": "焼き芋", - "reading": "やきいも", - "meaning": "roasted sweet potato, baked sweet potato" - }, - { - "example": "唐芋", - "reading": "とういも", - "meaning": "sweet potato (Ipomoea batatas)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "一", - "干", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33419_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0828b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/828b.gif", - "uri": "http://jisho.org/search/%E8%8A%8B%23kanji" - }, - { - "query": "咽", - "found": true, - "taughtIn": "junior high", - "strokeCount": 9, - "meaning": "throat, choked, smothered, stuffy", - "kunyomi": [ - "むせ.ぶ", - "むせ.る", - "のど", - "の.む" - ], - "onyomi": [ - "イン", - "エン", - "エツ" - ], - "onyomiExamples": [ - { - "example": "咽喉", - "reading": "インコウ", - "meaning": "throat" - }, - { - "example": "咽喉頭異常感症", - "reading": "インコウトウイジョウカンショウ", - "meaning": "globus pharyngis, lump in one's throat, pharyngolaryngeal paresthesia" - }, - { - "example": "嚥下", - "reading": "エンゲ", - "meaning": "swallowing, deglutition" - }, - { - "example": "哀咽", - "reading": "アイエツ", - "meaning": "being choked with tears" - }, - { - "example": "嗚咽", - "reading": "オエツ", - "meaning": "sobbing, weeping, fit of crying" - } - ], - "kunyomiExamples": [ - { - "example": "咽ぶ", - "reading": "むせぶ", - "meaning": "to be choked, to be stifled, to be smothered" - }, - { - "example": "噎せる", - "reading": "むせる", - "meaning": "to choke, to be choked by, to be stifled by" - }, - { - "example": "喉", - "reading": "のど", - "meaning": "throat, singing voice" - }, - { - "example": "喉から手が出る", - "reading": "のどからてがでる", - "meaning": "to want something desperately, to want something (so badly one can taste it)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "囗", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21693_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054bd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54bd.gif", - "uri": "http://jisho.org/search/%E5%92%BD%23kanji" - }, - { - "query": "姻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1985", - "strokeCount": 9, - "meaning": "matrimony, marry", - "kunyomi": [], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "姻戚", - "reading": "インセキ", - "meaning": "relative by marriage, affinity" - }, - { - "example": "姻戚関係", - "reading": "インセキカンケイ", - "meaning": "relation by marriage" - }, - { - "example": "婚姻", - "reading": "コンイン", - "meaning": "marriage, matrimony" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "囗", - "大", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23035_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059fb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59fb.gif", - "uri": "http://jisho.org/search/%E5%A7%BB%23kanji" - }, - { - "query": "淫", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "lewdness, licentiousness", - "kunyomi": [ - "ひた.す", - "ほしいまま", - "みだ.ら", - "みだ.れる", - "みだり" - ], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "淫", - "reading": "イン", - "meaning": "licentiousness" - }, - { - "example": "淫愛", - "reading": "インアイ", - "meaning": "dirty love, sordid love" - }, - { - "example": "売淫", - "reading": "バイイン", - "meaning": "prostitution" - }, - { - "example": "口淫", - "reading": "コウイン", - "meaning": "oral sex, fellatio, cunnilingus" - } - ], - "kunyomiExamples": [ - { - "example": "淫ら", - "reading": "みだら", - "meaning": "obscene, indecent, lewd, bawdy, loose, improper, dirty" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "士", - "汁", - "爪", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28139_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06deb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6deb.gif", - "uri": "http://jisho.org/search/%E6%B7%AB%23kanji" - }, - { - "query": "陰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1393", - "strokeCount": 11, - "meaning": "shade, yin, negative, sex organs, secret, shadow", - "kunyomi": [ - "かげ", - "かげ.る" - ], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "陰", - "reading": "イン", - "meaning": "(the) negative (e.g. pole), yin (in Chinese divination), hidden place, unseen part, private location" - }, - { - "example": "女神", - "reading": "メガミ", - "meaning": "goddess, female deity" - }, - { - "example": "山陰", - "reading": "ヤマカゲ", - "meaning": "place in the shade of a mountain, shelter of the mountains, mountain recess" - }, - { - "example": "外陰", - "reading": "ガイイン", - "meaning": "vulva, pudenda" - } - ], - "kunyomiExamples": [ - { - "example": "陰", - "reading": "かげ", - "meaning": "shade, shadow, behind (something), other side, back, background, behind the scenes, behind someone's back, gloom (in someone's expression, nature, etc.), darkness" - }, - { - "example": "陰口", - "reading": "かげぐち", - "meaning": "malicious gossip, backbiting, speaking ill behind someone's back" - }, - { - "example": "山陰", - "reading": "やまかげ", - "meaning": "place in the shade of a mountain, shelter of the mountains, mountain recess" - }, - { - "example": "物陰", - "reading": "ものかげ", - "meaning": "place hidden from view, cover, shelter, hiding place" - }, - { - "example": "陰る", - "reading": "かげる", - "meaning": "to darken, to get dark, to be clouded, to be hidden (behind clouds)" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "一", - "个", - "二", - "厶", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38512_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09670.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9670.gif", - "uri": "http://jisho.org/search/%E9%99%B0%23kanji" - }, - { - "query": "隠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1089", - "strokeCount": 14, - "meaning": "conceal, hide, cover", - "kunyomi": [ - "かく.す", - "かく.し", - "かく.れる", - "かか.す", - "よ.る" - ], - "onyomi": [ - "イン", - "オン" - ], - "onyomiExamples": [ - { - "example": "隠滅", - "reading": "インメツ", - "meaning": "destruction (esp. of evidence), spoliation, suppression, hiding, concealment" - }, - { - "example": "陰謀", - "reading": "インボウ", - "meaning": "plot, intrigue, scheme, conspiracy, agreement between two or more people to commit an unlawful act" - }, - { - "example": "退隠", - "reading": "タイイン", - "meaning": "retirement (from an official position)" - }, - { - "example": "大隠", - "reading": "タイイン", - "meaning": "enlightened hermit" - }, - { - "example": "隠密", - "reading": "オンミツ", - "meaning": "secret, clandestine, covert, spy (for a daimyo, shogun, etc.), secret agent" - }, - { - "example": "隠形", - "reading": "オンギョウ", - "meaning": "invisibility (through magic)" - } - ], - "kunyomiExamples": [ - { - "example": "隠す", - "reading": "かくす", - "meaning": "to hide, to conceal" - }, - { - "example": "隠し", - "reading": "かくし", - "meaning": "hiding, concealing, being hidden, being concealed, pocket" - }, - { - "example": "隠し引き出し", - "reading": "かくしひきだし", - "meaning": "secret drawer, hidden drawer" - }, - { - "example": "釘隠", - "reading": "くぎかくし", - "meaning": "nail hider, nailhead cover, decorative object which conceals the head of a nail" - }, - { - "example": "雉隠", - "reading": "きじかくし", - "meaning": "Asparagus schoberioides" - }, - { - "example": "隠れる", - "reading": "かくれる", - "meaning": "to hide, to be hidden, to conceal oneself, to disappear" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "ノ", - "ヨ", - "尚", - "心", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38560_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096a0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96a0.gif", - "uri": "http://jisho.org/search/%E9%9A%A0%23kanji" - }, - { - "query": "韻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2148", - "strokeCount": 19, - "meaning": "rhyme, elegance, tone", - "kunyomi": [], - "onyomi": [ - "イン" - ], - "onyomiExamples": [ - { - "example": "韻", - "reading": "イン", - "meaning": "rhyme, rhyme (of a Chinese character), rime" - }, - { - "example": "韻律", - "reading": "インリツ", - "meaning": "metre (of a poem), meter, rhythm, prosody" - }, - { - "example": "哀韻", - "reading": "アイイン", - "meaning": "sad tone (of music, words, etc.)" - }, - { - "example": "類韻", - "reading": "ルイイン", - "meaning": "assonance" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "音", - "meaning": "sound" - }, - "parts": [ - "ハ", - "口", - "日", - "目", - "立", - "貝", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38907_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/097fb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/97fb.gif", - "uri": "http://jisho.org/search/%E9%9F%BB%23kanji" - }, - { - "query": "唄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2051", - "strokeCount": 10, - "meaning": "song, ballad", - "kunyomi": [ - "うた", - "うた.う" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "貝葉", - "reading": "バイヨウ", - "meaning": "palm-leaf manuscript" - }, - { - "example": "梵唄", - "reading": "ボンバイ", - "meaning": "song in praise of Buddhas virtues" - } - ], - "kunyomiExamples": [ - { - "example": "歌", - "reading": "うた", - "meaning": "song, classical Japanese poetry (esp. tanka), modern poetry" - }, - { - "example": "歌う", - "reading": "うたう", - "meaning": "to sing, to sing (one's praises in a poem, etc.), to compose a poem, to recite a poem" - }, - { - "example": "長唄", - "reading": "ながうた", - "meaning": "long epic song with shamisen accompaniment (developed in Edo in the early 17th century)" - }, - { - "example": "紡ぎ歌", - "reading": "つむぎうた", - "meaning": "spinning song" - }, - { - "example": "歌う", - "reading": "うたう", - "meaning": "to sing, to sing (one's praises in a poem, etc.), to compose a poem, to recite a poem" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ハ", - "口", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21764_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05504.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5504.gif", - "uri": "http://jisho.org/search/%E5%94%84%23kanji" - }, - { - "query": "鬱", - "found": true, - "taughtIn": "junior high", - "strokeCount": 29, - "meaning": "gloom, depression, melancholy, luxuriant", - "kunyomi": [ - "うっ.する", - "ふさ.ぐ", - "しげ.る" - ], - "onyomi": [ - "ウツ" - ], - "onyomiExamples": [ - { - "example": "鬱", - "reading": "ウツ", - "meaning": "depression, low spirits, luxuriant (of vegetation)" - }, - { - "example": "うつ病", - "reading": "ウツビョウ", - "meaning": "depression" - }, - { - "example": "蓊鬱", - "reading": "オウウツ", - "meaning": "overgrown, exuberant, lush" - }, - { - "example": "抗うつ", - "reading": "コウウツ", - "meaning": "antidepressant" - } - ], - "kunyomiExamples": [ - { - "example": "鬱ぐ", - "reading": "ふさぐ", - "meaning": "to feel depressed, to be in low spirits, to mope" - } - ], - "radical": { - "symbol": "鬯", - "meaning": "herbs, sacrificial wine" - }, - "parts": [ - "冖", - "凵", - "匕", - "彡", - "木", - "缶", - "鬯" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39729_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09b31.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9b31.gif", - "uri": "http://jisho.org/search/%E9%AC%B1%23kanji" - }, - { - "query": "畝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2327", - "strokeCount": 10, - "meaning": "furrow, thirty tsubo, ridge, rib", - "kunyomi": [ - "せ", - "うね" - ], - "onyomi": [ - "ボウ", - "ホ", - "モ", - "ム" - ], - "onyomiExamples": [ - { - "example": "畝", - "reading": "ホ", - "meaning": "mu (Chinese measure of land area, formerly approx. 600 m.sq., currently approx. 667 m.sq.)" - }, - { - "example": "壟畝", - "reading": "ロウホ", - "meaning": "ridges of and paths between fields, countryside, civilian" - } - ], - "kunyomiExamples": [ - { - "example": "畝", - "reading": "せ", - "meaning": "se (Japanese unit of area equal to 30 tsubo, approx. 99.174 m.sq.)" - }, - { - "example": "畝", - "reading": "うね", - "meaning": "ridge (in field), row of raised earth when planting crops, rib (cloth, mountains, sea), cord (e.g. corduroy)" - }, - { - "example": "畝り", - "reading": "うねり", - "meaning": "undulation, winding, meandering, swell (of waves), surge, billow, roller" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "久", - "亠", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30045_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0755d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/755d.gif", - "uri": "http://jisho.org/search/%E7%95%9D%23kanji" - }, - { - "query": "浦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "977", - "strokeCount": 10, - "meaning": "bay, creek, inlet, gulf, beach, seacoast", - "kunyomi": [ - "うら" - ], - "onyomi": [ - "ホ" - ], - "onyomiExamples": [ - { - "example": "海浦", - "reading": "カイホ", - "meaning": "seaside" - }, - { - "example": "曲浦", - "reading": "キョクホ", - "meaning": "winding coast (beach)" - } - ], - "kunyomiExamples": [ - { - "example": "浦", - "reading": "うら", - "meaning": "inlet, seashore, beach" - }, - { - "example": "浦内笛鯛", - "reading": "うらうちふえだい", - "meaning": "Papuan black snapper (Lutjanus goldiei)" - }, - { - "example": "津々浦々", - "reading": "つつうらうら", - "meaning": "all over the country, throughout the land, every nook and cranny of the land" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "十", - "汁", - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28006_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d66.gif", - "uri": "http://jisho.org/search/%E6%B5%A6%23kanji" - }, - { - "query": "詠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2000", - "strokeCount": 12, - "meaning": "recitation, poem, song, composing", - "kunyomi": [ - "よ.む", - "うた.う" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "詠", - "reading": "エイ", - "meaning": "recitation (of a poem), chanting, singing, composition (of a poem), composed poem" - }, - { - "example": "詠歌", - "reading": "エイカ", - "meaning": "poem (esp. tanka), song, composition of a poem or song, pilgrim's song, pilgrim's hymn, singing a poem or song in a loud voice" - }, - { - "example": "朗詠", - "reading": "ロウエイ", - "meaning": "recitation (of Japanese or Chinese poem)" - }, - { - "example": "遺詠", - "reading": "イエイ", - "meaning": "posthumous song or poem" - } - ], - "kunyomiExamples": [ - { - "example": "詠む", - "reading": "よむ", - "meaning": "to compose (a Japanese poem), to write, to use as the theme of a poem, to recite (e.g. a poem), to chant, to intone" - }, - { - "example": "歌う", - "reading": "うたう", - "meaning": "to sing, to sing (one's praises in a poem, etc.), to compose a poem, to recite a poem" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "丶", - "水", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35424_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a60.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a60.gif", - "uri": "http://jisho.org/search/%E8%A9%A0%23kanji" - }, - { - "query": "影", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "464", - "strokeCount": 15, - "meaning": "shadow, silhouette, phantom", - "kunyomi": [ - "かげ" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "影響", - "reading": "エイキョウ", - "meaning": "influence, effect, to influence, to affect, to have an influence on, to impact, to have an effect on" - }, - { - "example": "影響力", - "reading": "エイキョウリョク", - "meaning": "influence, clout, leverage" - }, - { - "example": "遺影", - "reading": "イエイ", - "meaning": "portrait of deceased person" - }, - { - "example": "投影", - "reading": "トウエイ", - "meaning": "projection" - } - ], - "kunyomiExamples": [ - { - "example": "影", - "reading": "かげ", - "meaning": "shadow, silhouette, figure, shape, reflection, image, ominous sign, light (stars, moon), trace, shadow (of one's former self)" - }, - { - "example": "陰口", - "reading": "かげぐち", - "meaning": "malicious gossip, backbiting, speaking ill behind someone's back" - }, - { - "example": "夕影", - "reading": "ゆうかげ", - "meaning": "light of the setting sun, figure lit by the evening sun" - }, - { - "example": "月影", - "reading": "げつえい", - "meaning": "moonlight, moon, moonbeams" - } - ], - "radical": { - "symbol": "彡", - "meaning": "bristle, beard" - }, - "parts": [ - "亠", - "口", - "小", - "彡", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24433_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f71.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f71.gif", - "uri": "http://jisho.org/search/%E5%BD%B1%23kanji" - }, - { - "query": "鋭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1395", - "strokeCount": 15, - "meaning": "pointed, sharpness, edge, weapon, sharp, violent", - "kunyomi": [ - "するど.い" - ], - "onyomi": [ - "エイ" - ], - "onyomiExamples": [ - { - "example": "鋭", - "reading": "エイ", - "meaning": "sharpness, sharp weapon, blade, fine soldier" - }, - { - "example": "鋭意", - "reading": "エイイ", - "meaning": "eagerly, earnestly, assiduously, diligently, wholeheartedly" - }, - { - "example": "精鋭", - "reading": "セイエイ", - "meaning": "elite, best, pick, cream of the crop" - }, - { - "example": "気鋭", - "reading": "キエイ", - "meaning": "spirited, energetic" - } - ], - "kunyomiExamples": [ - { - "example": "鋭い", - "reading": "するどい", - "meaning": "sharp (blade), pointed, sharp (pain), stabbing, cutting (remark), stinging, pointed (question or look), screeching (noise), perceptive, keen, quick (mind), astute, shrewd, discerning, nimble, agile, quick" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "个", - "儿", - "口", - "并", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37613_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/092ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/92ed.gif", - "uri": "http://jisho.org/search/%E9%8B%AD%23kanji" - }, - { - "query": "疫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1661", - "strokeCount": 9, - "meaning": "epidemic", - "kunyomi": [], - "onyomi": [ - "エキ", - "ヤク" - ], - "onyomiExamples": [ - { - "example": "疫病", - "reading": "エキビョウ", - "meaning": "epidemic, plague, pestilence" - }, - { - "example": "疫学", - "reading": "エキガク", - "meaning": "epidemiology, the study of epidemics" - }, - { - "example": "検疫", - "reading": "ケンエキ", - "meaning": "quarantine, medical inspection" - }, - { - "example": "防疫", - "reading": "ボウエキ", - "meaning": "communicable disease control (e.g. by quarantine, disinfection, etc.), prevention of epidemics" - }, - { - "example": "疫病", - "reading": "エキビョウ", - "meaning": "epidemic, plague, pestilence" - }, - { - "example": "疫神", - "reading": "エキジン", - "meaning": "god who spreads infectious diseases, god of pestilence" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "几", - "又", - "殳", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30123_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075ab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75ab.gif", - "uri": "http://jisho.org/search/%E7%96%AB%23kanji" - }, - { - "query": "悦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1762", - "strokeCount": 10, - "meaning": "ecstasy, joy, rapture", - "kunyomi": [ - "よろこ.ぶ", - "よろこ.ばす" - ], - "onyomi": [ - "エツ" - ], - "onyomiExamples": [ - { - "example": "悦", - "reading": "エツ", - "meaning": "self-satisfaction, rejoicing" - }, - { - "example": "悦に入る", - "reading": "エツニイル", - "meaning": "to be pleased, to gloat, to glow with self-satisfaction" - }, - { - "example": "満悦", - "reading": "マンエツ", - "meaning": "great delight, great satisfaction, rapture" - }, - { - "example": "怡悦", - "reading": "イエツ", - "meaning": "rejoicing" - } - ], - "kunyomiExamples": [ - { - "example": "喜ぶ", - "reading": "よろこぶ", - "meaning": "to be delighted, to be glad, to be pleased, to congratulate, to gratefully accept" - }, - { - "example": "喜ばす", - "reading": "よろこばす", - "meaning": "to delight, to give pleasure" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "儿", - "口", - "并", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24742_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060a6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60a6.gif", - "uri": "http://jisho.org/search/%E6%82%A6%23kanji" - }, - { - "query": "越", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "897", - "strokeCount": 12, - "meaning": "surpass, cross over, move to, exceed, Vietnam", - "kunyomi": [ - "こ.す", - "-こ.す", - "-ご.し", - "こ.える", - "-ご.え" - ], - "onyomi": [ - "エツ", - "オツ" - ], - "onyomiExamples": [ - { - "example": "越", - "reading": "エツ", - "meaning": "Yue, kingdom in ancient China (6th C-334 BCE), Vietnam" - }, - { - "example": "越南", - "reading": "エツナン", - "meaning": "Vietnam" - }, - { - "example": "上越", - "reading": "ジョウエツ", - "meaning": "area on Japan Sea side of Japan, including Niigata" - }, - { - "example": "自己超越", - "reading": "ジコチョウエツ", - "meaning": "self-transcendence" - }, - { - "example": "越年", - "reading": "エツネン", - "meaning": "seeing the old year out, greeting the New Year, passing the winter, hibernation, playing past the usual 12 rounds in one game" - }, - { - "example": "越年蝶", - "reading": "オツネンチョウ", - "meaning": "eastern pale clouded yellow (butterfly, Colias erate)" - }, - { - "example": "檀越", - "reading": "ダンオツ", - "meaning": "alms-giver, person who donates to a monk or a temple, dana-pati" - } - ], - "kunyomiExamples": [ - { - "example": "越す", - "reading": "こす", - "meaning": "to cross over (e.g. mountain), to go across, to get over (e.g. hardship), to pass time (e.g. a winter), to surpass, to be better than, to exceed, to move house, to go, to come" - }, - { - "example": "越える", - "reading": "こえる", - "meaning": "to cross over, to cross, to pass through, to pass over (out of), to go beyond, to go past, to exceed, to surpass, to be more (than)" - } - ], - "radical": { - "symbol": "走", - "forms": [ - "赱" - ], - "meaning": "run" - }, - "parts": [ - "土", - "戈", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36234_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d8a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d8a.gif", - "uri": "http://jisho.org/search/%E8%B6%8A%23kanji" - }, - { - "query": "謁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 15, - "meaning": "audience, audience (with king)", - "kunyomi": [], - "onyomi": [ - "エツ" - ], - "onyomiExamples": [ - { - "example": "謁", - "reading": "エツ", - "meaning": "audience (with a superior, e.g. nobility), visiting card, name card" - }, - { - "example": "謁を賜わる", - "reading": "エツヲタマワル", - "meaning": "to be granted an audience" - }, - { - "example": "請謁", - "reading": "セイエツ", - "meaning": "beseeching, requesting (an audience)" - }, - { - "example": "内謁", - "reading": "ナイエツ", - "meaning": "private audience" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "勹", - "匕", - "日", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35585_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b01.gif", - "uri": "http://jisho.org/search/%E8%AC%81%23kanji" - }, - { - "query": "閲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1855", - "strokeCount": 15, - "meaning": "review, inspection, revision", - "kunyomi": [ - "けみ.する" - ], - "onyomi": [ - "エツ" - ], - "onyomiExamples": [ - { - "example": "閲", - "reading": "エツ", - "meaning": "inspection (esp. of a document), stamp of approval (for a document)" - }, - { - "example": "閲覧", - "reading": "エツラン", - "meaning": "inspection, reading, perusal, browsing (the web)" - }, - { - "example": "観閲", - "reading": "カンエツ", - "meaning": "inspection (of troops)" - }, - { - "example": "内閲", - "reading": "ナイエツ", - "meaning": "private perusal" - } - ], - "kunyomiExamples": [ - { - "example": "閲する", - "reading": "えっする", - "meaning": "to inspect, to examine, to check, to elapse, to pass (time)" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "儿", - "口", - "并", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38322_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/095b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/95b2.gif", - "uri": "http://jisho.org/search/%E9%96%B2%23kanji" - }, - { - "query": "炎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1242", - "strokeCount": 8, - "meaning": "inflammation, flame, blaze", - "kunyomi": [ - "ほのお" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "炎", - "reading": "エン", - "meaning": "-itis (indicating an inflammatory disease)" - }, - { - "example": "炎症", - "reading": "エンショウ", - "meaning": "inflammation, irritation" - }, - { - "example": "脳炎", - "reading": "ノウエン", - "meaning": "brain inflammation, encephalitis, cerebritis" - }, - { - "example": "胃炎", - "reading": "イエン", - "meaning": "gastritis, gastric catarrh" - } - ], - "kunyomiExamples": [ - { - "example": "炎", - "reading": "ほのお", - "meaning": "flame, blaze, flames (of intense emotion, e.g. love, jealousy, anger), passion" - }, - { - "example": "炎検出器", - "reading": "ほのおけんしゅつき", - "meaning": "flame detector" - }, - { - "example": "瞋恚の炎", - "reading": "しんいのほのお", - "meaning": "intense antipathy (like a blazing fire), flames of rage" - }, - { - "example": "嫉妬の炎", - "reading": "しっとのほのお", - "meaning": "flames of jealousy" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28814_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0708e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/708e.gif", - "uri": "http://jisho.org/search/%E7%82%8E%23kanji" - }, - { - "query": "怨", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2137", - "strokeCount": 9, - "meaning": "grudge, show resentment, be jealous", - "kunyomi": [ - "うら.む", - "うらみ", - "うら.めしい" - ], - "onyomi": [ - "エン", - "オン", - "ウン" - ], - "onyomiExamples": [ - { - "example": "恨み言", - "reading": "ウラミゴト", - "meaning": "grudge, complaint, reproach" - }, - { - "example": "怨恨", - "reading": "エンコン", - "meaning": "enmity, grudge" - }, - { - "example": "旧怨", - "reading": "キュウエン", - "meaning": "old grudge" - }, - { - "example": "宿怨", - "reading": "シュクエン", - "meaning": "old grudge, old score" - }, - { - "example": "怨霊", - "reading": "オンリョウ", - "meaning": "revengeful ghost, apparition" - }, - { - "example": "怨念", - "reading": "オンネン", - "meaning": "deep-seated grudge, hatred" - } - ], - "kunyomiExamples": [ - { - "example": "恨む", - "reading": "うらむ", - "meaning": "to bear a grudge against, to resent, to blame, to curse, to feel bitter towards" - }, - { - "example": "恨み", - "reading": "うらみ", - "meaning": "resentment, grudge, malice, bitterness, matter for regret, regret" - }, - { - "example": "恨み言", - "reading": "うらみごと", - "meaning": "grudge, complaint, reproach" - }, - { - "example": "恨めしい", - "reading": "うらめしい", - "meaning": "reproachful, hateful, bitter" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "卩", - "夕", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24616_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06028.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6028.gif", - "uri": "http://jisho.org/search/%E6%80%A8%23kanji" - }, - { - "query": "宴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1675", - "strokeCount": 10, - "meaning": "banquet, feast, party", - "kunyomi": [ - "うたげ" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "宴", - "reading": "ウタゲ", - "meaning": "party, banquet, feast" - }, - { - "example": "宴会", - "reading": "エンカイ", - "meaning": "party, banquet, reception, feast, dinner" - }, - { - "example": "饗宴", - "reading": "キョウエン", - "meaning": "feast, banquet" - }, - { - "example": "開宴", - "reading": "カイエン", - "meaning": "opening of a banquet, opening of a wedding reception" - } - ], - "kunyomiExamples": [ - { - "example": "宴", - "reading": "うたげ", - "meaning": "party, banquet, feast" - }, - { - "example": "花見の宴", - "reading": "はなみのうたげ", - "meaning": "cherry blossom viewing party" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "女", - "宀", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23476_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bb4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bb4.gif", - "uri": "http://jisho.org/search/%E5%AE%B4%23kanji" - }, - { - "query": "援", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "312", - "strokeCount": 12, - "meaning": "abet, help, save", - "kunyomi": [], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "援助", - "reading": "エンジョ", - "meaning": "assistance, aid, support" - }, - { - "example": "援護", - "reading": "エンゴ", - "meaning": "covering, protection, backing, relief" - }, - { - "example": "来援", - "reading": "ライエン", - "meaning": "assistance, support" - }, - { - "example": "義捐", - "reading": "ギエン", - "meaning": "alms, donation (esp. disaster relief or charity), contribution" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "一", - "又", - "扎", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25588_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063f4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63f4.gif", - "uri": "http://jisho.org/search/%E6%8F%B4%23kanji" - }, - { - "query": "煙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1290", - "strokeCount": 13, - "meaning": "smoke", - "kunyomi": [ - "けむ.る", - "けむり", - "けむ.い" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "煙突", - "reading": "エントツ", - "meaning": "chimney, smokestack, funnel (of a ship), stovepipe, carrying a passenger without turning on the taximeter" - }, - { - "example": "煙草", - "reading": "タバコ", - "meaning": "tobacco, cigarette, cigaret, cigar, tobacco plant (Nicotiana tabacum)" - }, - { - "example": "噴煙", - "reading": "フンエン", - "meaning": "(eruption of) smoke" - }, - { - "example": "黒煙", - "reading": "コクエン", - "meaning": "black smoke" - } - ], - "kunyomiExamples": [ - { - "example": "煙る", - "reading": "けむる", - "meaning": "to smoke (e.g. fire), to billow smoke, to smoulder, to smolder, to be hazy, to look dim" - }, - { - "example": "煙", - "reading": "けむり", - "meaning": "smoke, fumes" - }, - { - "example": "煙草", - "reading": "たばこ", - "meaning": "tobacco, cigarette, cigaret, cigar, tobacco plant (Nicotiana tabacum)" - }, - { - "example": "黒煙", - "reading": "こくえん", - "meaning": "black smoke" - }, - { - "example": "砂煙", - "reading": "すなけむり", - "meaning": "cloud of sand (dust, etc.)" - }, - { - "example": "煙い", - "reading": "けむい", - "meaning": "smoky" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "土", - "火", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29017_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07159.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7159.gif", - "uri": "http://jisho.org/search/%E7%85%99%23kanji" - }, - { - "query": "猿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1772", - "strokeCount": 13, - "meaning": "monkey", - "kunyomi": [ - "さる" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "猿人", - "reading": "エンジン", - "meaning": "ape man" - }, - { - "example": "猿害", - "reading": "エンガイ", - "meaning": "damages inflicted by monkeys (on crops, etc.)" - }, - { - "example": "人類猿", - "reading": "ジンルイエン", - "meaning": "anthropoid ape" - }, - { - "example": "孤猿", - "reading": "コエン", - "meaning": "lone monkey, stray monkey" - } - ], - "kunyomiExamples": [ - { - "example": "猿", - "reading": "さる", - "meaning": "monkey (esp. the Japanese macaque, Macaca fuscata), ape, non-human primate, sly person, idiot, hick, sliding wooden bolt (for holding a door or window shut), clasp used to control the height of a pot-hook, bathhouse prostitute" - }, - { - "example": "猿尾", - "reading": "さるお", - "meaning": "backside part of the shamisen's neck where it meets the body" - }, - { - "example": "木から落ちた猿", - "reading": "きからおちたさる", - "meaning": "person who has lost something they used to rely on, a monkey fallen from the tree" - }, - { - "example": "真猿", - "reading": "まさる", - "meaning": "monkey (esp. the Japanese macaque, Macaca fuscata)" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "口", - "土", - "犯", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29503_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0733f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/733f.gif", - "uri": "http://jisho.org/search/%E7%8C%BF%23kanji" - }, - { - "query": "鉛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1710", - "strokeCount": 13, - "meaning": "lead", - "kunyomi": [ - "なまり" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "鉛筆", - "reading": "エンピツ", - "meaning": "pencil" - }, - { - "example": "鉛管", - "reading": "エンカン", - "meaning": "lead pipe" - }, - { - "example": "黒鉛", - "reading": "コクエン", - "meaning": "graphite" - }, - { - "example": "硫化亜鉛", - "reading": "リュウカアエン", - "meaning": "zinc sulfide (ZnS) (sulphide)" - } - ], - "kunyomiExamples": [ - { - "example": "鉛", - "reading": "なまり", - "meaning": "lead (Pb)" - }, - { - "example": "鉛色", - "reading": "なまりいろ", - "meaning": "lead colour, lead color" - }, - { - "example": "アジ化鉛", - "reading": "アジかなまり", - "meaning": "lead azide" - }, - { - "example": "酢酸鉛", - "reading": "さくさんなまり", - "meaning": "lead acetate (i.e. plumbic acetate, plumbous acetate)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ハ", - "口", - "并", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37467_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0925b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/925b.gif", - "uri": "http://jisho.org/search/%E9%89%9B%23kanji" - }, - { - "query": "縁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1291", - "strokeCount": 15, - "meaning": "affinity, relation, connection, edge, border, verge, brink", - "kunyomi": [ - "ふち", - "ふちど.る", - "ゆかり", - "よすが", - "へり", - "えにし" - ], - "onyomi": [ - "エン", - "-ネン" - ], - "onyomiExamples": [ - { - "example": "縁", - "reading": "エン", - "meaning": "fate, destiny (esp. as a mysterious force that binds two people together), relationship (e.g. between two people), bond, link, connection, family ties, affinity, opportunity, chance (to meet someone and start a relationship), pratyaya (indirect conditions, as opposed to direct causes), narrow open-air veranda" - }, - { - "example": "縁起", - "reading": "エンギ", - "meaning": "omen, sign of luck, origin, history, causation, dependent arising, doctrine that everything has a cause and there is nothing that arises out of nothing" - }, - { - "example": "遠縁", - "reading": "トオエン", - "meaning": "distant relative" - }, - { - "example": "内縁", - "reading": "ナイエン", - "meaning": "de facto marriage, common-law marriage" - } - ], - "kunyomiExamples": [ - { - "example": "縁", - "reading": "ふち", - "meaning": "rim, brim, edge, brink" - }, - { - "example": "縁石", - "reading": "えんせき", - "meaning": "curb (stone), kerb" - }, - { - "example": "盆の縁", - "reading": "ぼんのふち", - "meaning": "edge of a tray" - }, - { - "example": "縁取る", - "reading": "ふちどる", - "meaning": "to (add a) border or fringe" - }, - { - "example": "縁", - "reading": "ゆかり", - "meaning": "connection (to a person, place, etc.), relation, affinity" - }, - { - "example": "縁の色", - "reading": "ゆかりのいろ", - "meaning": "violet" - }, - { - "example": "縁", - "reading": "よすが", - "meaning": "something to rely on, aid, clue, way, means, someone to rely on, relative, reminder, memento" - }, - { - "example": "縁", - "reading": "へり", - "meaning": "edge (of a river, woods, etc.), shoulder (of a road), rim, brim, hem, margin, fringe, selvage, fabric border (of a tatami mat, etc.), edging" - }, - { - "example": "縁石", - "reading": "えんせき", - "meaning": "curb (stone), kerb" - }, - { - "example": "縁", - "reading": "えん", - "meaning": "fate, destiny (esp. as a mysterious force that binds two people together), relationship (e.g. between two people), bond, link, connection, family ties, affinity, opportunity, chance (to meet someone and start a relationship), pratyaya (indirect conditions, as opposed to direct causes), narrow open-air veranda" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ヨ", - "小", - "幺", - "糸", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32257_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e01.gif", - "uri": "http://jisho.org/search/%E7%B8%81%23kanji" - }, - { - "query": "艶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2207", - "strokeCount": 19, - "meaning": "glossy, luster, glaze, polish, charm, colorful, captivating", - "kunyomi": [ - "つや", - "なま.めかしい", - "あで.やか", - "つや.めく", - "なま.めく" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "艶", - "reading": "エン", - "meaning": "charming, fascinating, voluptuous" - }, - { - "example": "演歌", - "reading": "エンカ", - "meaning": "enka, traditional-style Japanese popular ballad, troubadour" - }, - { - "example": "妖艶", - "reading": "ヨウエン", - "meaning": "fascinating, voluptuous, bewitching, captivating" - }, - { - "example": "凄艶", - "reading": "セイエン", - "meaning": "weirdly beautiful" - } - ], - "kunyomiExamples": [ - { - "example": "艶", - "reading": "つや", - "meaning": "gloss, luster, lustre, shine, sheen, polish, mellowness (of a voice), youthfulness (e.g. of skin), interest, appeal, charm, color, colour, feeling, romance, love, sexiness" - }, - { - "example": "艶々", - "reading": "つやつや", - "meaning": "glossy, bright, slick" - }, - { - "example": "艶々", - "reading": "つやつや", - "meaning": "glossy, bright, slick" - }, - { - "example": "艶かしい", - "reading": "なまめかしい", - "meaning": "charming, captivating, bewitching, seductive, coquettish" - }, - { - "example": "艶やか", - "reading": "あでやか", - "meaning": "glamorous, charming, beguiling, bewitching, beautiful, fascinatingly elegant" - }, - { - "example": "艶めく", - "reading": "つやめく", - "meaning": "(for an object) to be shiny, to be glossy, (for a woman) to be alluring, to look sexy" - }, - { - "example": "艶めく", - "reading": "なまめく", - "meaning": "to brim over with feminine charm, to look captivating (of a woman), to be sexy, to be seductive, to be enticing, to look young and fresh, to be elegant, to look refined, to have a calm and composed appearance" - } - ], - "radical": { - "symbol": "色", - "meaning": "colour, prettiness" - }, - "parts": [ - "勹", - "口", - "并", - "日", - "色", - "豆", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33398_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08276.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8276.gif", - "uri": "http://jisho.org/search/%E8%89%B6%23kanji" - }, - { - "query": "汚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "908", - "strokeCount": 6, - "meaning": "dirty, pollute, disgrace, rape, defile", - "kunyomi": [ - "けが.す", - "けが.れる", - "けが.らわしい", - "よご.す", - "よご.れる", - "きたな.い" - ], - "onyomi": [ - "オ" - ], - "onyomiExamples": [ - { - "example": "汚水", - "reading": "オスイ", - "meaning": "filthy water, sewage" - }, - { - "example": "汚職", - "reading": "オショク", - "meaning": "corruption" - }, - { - "example": "防汚", - "reading": "ボウオ", - "meaning": "antifouling, stain resistance, stain-proofing, anti-soiling" - }, - { - "example": "貪汚", - "reading": "タンオ", - "meaning": "greed, corruption" - } - ], - "kunyomiExamples": [ - { - "example": "汚す", - "reading": "よごす", - "meaning": "to pollute, to contaminate, to soil, to make dirty, to stain, to disgrace, to dishonour, to dishonor, to defile" - }, - { - "example": "汚れる", - "reading": "けがれる", - "meaning": "to be violated, to be corrupted, to be polluted, to be stained" - }, - { - "example": "汚らわしい", - "reading": "けがらわしい", - "meaning": "filthy, unfair, dirty, untouchable, disgusting, nasty, foul, odious, repulsive" - }, - { - "example": "汚す", - "reading": "よごす", - "meaning": "to pollute, to contaminate, to soil, to make dirty, to stain, to disgrace, to dishonour, to dishonor, to defile" - }, - { - "example": "汚れる", - "reading": "よごれる", - "meaning": "to get dirty, to become dirty, to become sullied, to become corrupted, to lose one's chastity" - }, - { - "example": "汚い", - "reading": "きたない", - "meaning": "dirty, filthy, foul, unclean, disordered, messy, untidy, poor (e.g. handwriting), indecent (language, etc.), dirty, vulgar, coarse, dastardly, mean, base, underhanded, stingy, greedy" - }, - { - "example": "汚い手を使う", - "reading": "きたないてをつかう", - "meaning": "to play a dirty trick, to use underhanded methods, to hit below the belt, to play false" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "二", - "勹", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27738_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c5a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c5a.gif", - "uri": "http://jisho.org/search/%E6%B1%9A%23kanji" - }, - { - "query": "凹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2206", - "strokeCount": 5, - "meaning": "concave, hollow, sunken", - "kunyomi": [ - "くぼ.む", - "へこ.む", - "ぼこ" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "凹", - "reading": "オウ", - "meaning": "concave, hollow, sunken" - }, - { - "example": "凹凸", - "reading": "オウトツ", - "meaning": "unevenness, bumpiness, roughness, ruggedness, imbalance, inequality, unevenness, disparity" - }, - { - "example": "肋凹", - "reading": "ロクオウ", - "meaning": "costal fovea" - } - ], - "kunyomiExamples": [ - { - "example": "窪む", - "reading": "くぼむ", - "meaning": "to cave in, to become depressed, to sink" - }, - { - "example": "凹む", - "reading": "へこむ", - "meaning": "to be dented, to be indented, to yield, to give, to sink, to collapse, to cave in, to be beaten, to be overwhelmed, to yield, to give in, to give up, to be disheartened, to feel down, to feel depressed, to suffer a loss, to lose" - }, - { - "example": "穴ぼこ", - "reading": "あなぼこ", - "meaning": "hole, hollow, pothole (road, pavement, etc.)" - } - ], - "radical": { - "symbol": "凵", - "meaning": "container, open mouth" - }, - "parts": [ - "凵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20985_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051f9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51f9.gif", - "uri": "http://jisho.org/search/%E5%87%B9%23kanji" - }, - { - "query": "押", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "789", - "strokeCount": 8, - "meaning": "push, stop, check, subdue, attach, seize, weight, shove, press, seal, do in spite of", - "kunyomi": [ - "お.す", - "お.し-", - "お.っ-", - "お.さえる", - "おさ.える" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "押収", - "reading": "オウシュウ", - "meaning": "seizure, confiscation" - }, - { - "example": "押印", - "reading": "オウイン", - "meaning": "affixing one's seal" - }, - { - "example": "花押", - "reading": "カオウ", - "meaning": "written seal, stylized signature" - } - ], - "kunyomiExamples": [ - { - "example": "押す", - "reading": "おす", - "meaning": "to push, to press, to apply pressure from above, to press down, to stamp (i.e. a passport), to apply a seal, to affix (e.g. gold leaf), to press (someone for something), to urge, to compel, to influence, to overwhelm, to overpower, to repress, to push (events along), to advance (a plan), to do in spite of ..., to do even though ..., to force, to make sure, to be pressed for time, to advance troops, to attack, (of light) to be diffused across an entire surface" - }, - { - "example": "押忍", - "reading": "おっす", - "meaning": "hi!, yo!, hey man!, hey dude!" - }, - { - "example": "押さえる", - "reading": "おさえる", - "meaning": "to pin down, to hold down, to press down, to cover (esp. a part of one's body with one's hand), to clutch (a body part in pain), to press (a body part), to get a hold of, to obtain, to seize, to catch, to arrest, to grasp (a point), to comprehend, to quell, to subdue, to suppress, to repress, to hold back, to check, to curb, to contain" - }, - { - "example": "押さえる", - "reading": "おさえる", - "meaning": "to pin down, to hold down, to press down, to cover (esp. a part of one's body with one's hand), to clutch (a body part in pain), to press (a body part), to get a hold of, to obtain, to seize, to catch, to arrest, to grasp (a point), to comprehend, to quell, to subdue, to suppress, to repress, to hold back, to check, to curb, to contain" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25276_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062bc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62bc.gif", - "uri": "http://jisho.org/search/%E6%8A%BC%23kanji" - }, - { - "query": "旺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2342", - "strokeCount": 8, - "meaning": "flourishing, successful, beautiful, vigorous", - "kunyomi": [ - "かがや.き", - "うつくし.い", - "さかん" - ], - "onyomi": [ - "オウ", - "キョウ", - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "旺盛", - "reading": "オウセイ", - "meaning": "lively, vigorous, energetic, healthy, avid (e.g. desire), rich (e.g. imagination), full of (energy, appetite, curiosity, etc.), brimming with" - }, - { - "example": "旺然", - "reading": "オウゼン", - "meaning": "prosperous" - } - ], - "kunyomiExamples": [ - { - "example": "盛ん", - "reading": "さかん", - "meaning": "prosperous, flourishing, thriving, successful, popular, widespread, active, lively, energetic, vigorous, brisk, strong, enthusiastic, eager, hearty, frequent, repeated" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26106_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65fa.gif", - "uri": "http://jisho.org/search/%E6%97%BA%23kanji" - }, - { - "query": "欧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "421", - "strokeCount": 8, - "meaning": "Europe", - "kunyomi": [ - "うた.う", - "は.く" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "欧", - "reading": "オウ", - "meaning": "Europe" - }, - { - "example": "欧州", - "reading": "オウシュウ", - "meaning": "Europe" - }, - { - "example": "東欧", - "reading": "トウオウ", - "meaning": "Eastern Europe" - }, - { - "example": "西欧", - "reading": "セイオウ", - "meaning": "Western Europe, the West, the Occident, Europe" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "ノ", - "丶", - "匚", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27431_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b27.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b27.gif", - "uri": "http://jisho.org/search/%E6%AC%A7%23kanji" - }, - { - "query": "殴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1622", - "strokeCount": 8, - "meaning": "assault, hit, beat, thrash", - "kunyomi": [ - "なぐ.る" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "殴打", - "reading": "オウダ", - "meaning": "hit, strike, blow" - }, - { - "example": "殴殺", - "reading": "オウサツ", - "meaning": "beating to death, striking dead" - } - ], - "kunyomiExamples": [ - { - "example": "殴る", - "reading": "なぐる", - "meaning": "to strike, to hit, to beat, to punch" - }, - { - "example": "殴る蹴る", - "reading": "なぐるける", - "meaning": "punching and kicking" - } - ], - "radical": { - "symbol": "殳", - "meaning": "weapon, lance" - }, - "parts": [ - "ノ", - "丶", - "几", - "匚", - "又", - "殳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27572_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bb4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bb4.gif", - "uri": "http://jisho.org/search/%E6%AE%B4%23kanji" - }, - { - "query": "翁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2064", - "strokeCount": 10, - "meaning": "venerable old man", - "kunyomi": [ - "おきな" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "翁", - "reading": "オウ", - "meaning": "old man, venerable gentleman, venerable, old, father" - }, - { - "example": "翁媼", - "reading": "オウオウ", - "meaning": "old man and old woman, elderly man and elderly woman" - }, - { - "example": "阿翁", - "reading": "アオウ", - "meaning": "father-in-law (of a woman), grandfather" - }, - { - "example": "白頭翁", - "reading": "ハクトウオウ", - "meaning": "windflower, anemone, white-haired old man, grey starling (gray)" - } - ], - "kunyomiExamples": [ - { - "example": "翁", - "reading": "おう", - "meaning": "old man, venerable gentleman, venerable, old, father" - }, - { - "example": "翁恵比須", - "reading": "おきなえびす", - "meaning": "Beyrich's slit shell (species of sea snail, Pleurotomaria beyrichii)" - } - ], - "radical": { - "symbol": "羽", - "meaning": "feather" - }, - "parts": [ - "ハ", - "冫", - "厶", - "羽" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32705_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fc1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fc1.gif", - "uri": "http://jisho.org/search/%E7%BF%81%23kanji" - }, - { - "query": "奥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1018", - "strokeCount": 12, - "meaning": "heart, interior", - "kunyomi": [ - "おく", - "おく.まる", - "くま" - ], - "onyomi": [ - "オウ" - ], - "onyomiExamples": [ - { - "example": "奥地", - "reading": "オクチ", - "meaning": "interior, backwoods, hinterland, back regions" - }, - { - "example": "奥義", - "reading": "オウギ", - "meaning": "secret techniques (of an art or skill), inner mysteries, essence, quintessence, heart" - }, - { - "example": "最奥", - "reading": "サイオウ", - "meaning": "deep inside, innermost place" - }, - { - "example": "内奥", - "reading": "ナイオウ", - "meaning": "inner part, depths" - } - ], - "kunyomiExamples": [ - { - "example": "奥", - "reading": "おく", - "meaning": "inner part, inside, interior, depths (e.g. of a forest), back (of a house, drawer, etc.), bottom (e.g. of one's heart), recesses, heart" - }, - { - "example": "奥地", - "reading": "おくち", - "meaning": "interior, backwoods, hinterland, back regions" - }, - { - "example": "山奥", - "reading": "やまおく", - "meaning": "deep in the mountains, mountain recesses" - }, - { - "example": "大奥", - "reading": "おおおく", - "meaning": "inner palace (in Edo Castle), palace's ladies chambers, shogun's harem" - }, - { - "example": "奥まる", - "reading": "おくまる", - "meaning": "to lie deep in, to extend far back" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "冂", - "大", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22885_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05965.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5965.gif", - "uri": "http://jisho.org/search/%E5%A5%A5%23kanji" - }, - { - "query": "憶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1324", - "strokeCount": 16, - "meaning": "recollection, think, remember", - "kunyomi": [], - "onyomi": [ - "オク" - ], - "onyomiExamples": [ - { - "example": "憶測", - "reading": "オクソク", - "meaning": "guess, speculation, supposition" - }, - { - "example": "臆病", - "reading": "オクビョウ", - "meaning": "cowardly, timid, easily frightened" - }, - { - "example": "追憶", - "reading": "ツイオク", - "meaning": "recollection, reminiscence" - }, - { - "example": "バッファ記憶", - "reading": "バッファキオク", - "meaning": "buffer storage, buffer" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "忙", - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25014_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061b6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61b6.gif", - "uri": "http://jisho.org/search/%E6%86%B6%23kanji" - }, - { - "query": "臆", - "found": true, - "taughtIn": "junior high", - "strokeCount": 17, - "meaning": "timidity, heart, mind, fear, cowardly", - "kunyomi": [ - "むね", - "おくする" - ], - "onyomi": [ - "オク", - "ヨク" - ], - "onyomiExamples": [ - { - "example": "憶測", - "reading": "オクソク", - "meaning": "guess, speculation, supposition" - }, - { - "example": "臆病", - "reading": "オクビョウ", - "meaning": "cowardly, timid, easily frightened" - }, - { - "example": "剛臆", - "reading": "ゴウオク", - "meaning": "bravery and cowardice" - }, - { - "example": "胸臆", - "reading": "キョウオク", - "meaning": "one's inmost thoughts (feelings)" - } - ], - "kunyomiExamples": [ - { - "example": "臆する", - "reading": "おくする", - "meaning": "to be hesitant, to feel timid" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "心", - "日", - "月", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33222_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081c6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81c6.gif", - "uri": "http://jisho.org/search/%E8%87%86%23kanji" - }, - { - "query": "虞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 13, - "meaning": "fear, uneasiness, anxiety, concern, expectation, consideration", - "kunyomi": [ - "おそれ", - "おもんぱか.る", - "はか.る", - "うれ.える", - "あざむ.く", - "あやま.る", - "のぞ.む", - "たの.しむ" - ], - "onyomi": [ - "グ" - ], - "onyomiExamples": [ - { - "example": "虞犯", - "reading": "グハン", - "meaning": "likelihood of committing a crime, pre-delinquent" - }, - { - "example": "虞犯少年", - "reading": "グハンショウネン", - "meaning": "juvenile likely to commit a crime, juvenile with a criminal bent, pre-delinquent juvenile, status offender" - }, - { - "example": "憂虞", - "reading": "ユウグ", - "meaning": "anxiety, fear" - }, - { - "example": "不虞", - "reading": "フグ", - "meaning": "emergency" - } - ], - "kunyomiExamples": [ - { - "example": "恐れ", - "reading": "おそれ", - "meaning": "fear, horror, anxiety, concern, uneasiness, reverence" - }, - { - "example": "失敗の虞", - "reading": "しっぱいのおそれ", - "meaning": "risk of failure" - } - ], - "radical": { - "symbol": "虍", - "meaning": "tiger stripes" - }, - "parts": [ - "ハ", - "匕", - "卜", - "厂", - "口", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34398_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0865e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/865e.gif", - "uri": "http://jisho.org/search/%E8%99%9E%23kanji" - }, - { - "query": "乙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1841", - "strokeCount": 1, - "meaning": "the latter, duplicate, strange, witty, fishhook radical (no. 5)", - "kunyomi": [ - "おと-", - "きのと" - ], - "onyomi": [ - "オツ", - "イツ" - ], - "onyomiExamples": [ - { - "example": "乙", - "reading": "オツ", - "meaning": "second (party to an agreement), the B party (e.g. in a contract), the latter, defendant, stylish, chic, spicy, witty, tasty, romantic, strange, quaint, queer, thank you, good job, goodbye, goodnight" - }, - { - "example": "乙亥", - "reading": "キノトイ", - "meaning": "Wood Boar (12th year of the sexagenary cycle, e.g. 1935, 1995, 2055)" - }, - { - "example": "うp乙", - "reading": "ウプオツ", - "meaning": "thanks for uploading" - }, - { - "example": "甲と乙", - "reading": "コウトオツ", - "meaning": "the former and the latter, A and B" - }, - { - "example": "乙亥", - "reading": "キノトイ", - "meaning": "Wood Boar (12th year of the sexagenary cycle, e.g. 1935, 1995, 2055)" - }, - { - "example": "乙未", - "reading": "キノトヒツジ", - "meaning": "Wood Sheep (32nd year of the sexagenary cycle, e.g. 1955, 2015, 2075)" - }, - { - "example": "不一", - "reading": "フイツ", - "meaning": "Very sincerely yours, different" - } - ], - "kunyomiExamples": [ - { - "example": "乙", - "reading": "きのと", - "meaning": "second in rank, second sign of the Chinese calendar" - }, - { - "example": "乙亥", - "reading": "きのとい", - "meaning": "Wood Boar (12th year of the sexagenary cycle, e.g. 1935, 1995, 2055)" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "乙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20057_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e59.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e59.gif", - "uri": "http://jisho.org/search/%E4%B9%99%23kanji" - }, - { - "query": "俺", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1946", - "strokeCount": 10, - "meaning": "I, myself", - "kunyomi": [ - "おれ", - "われ" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "俺", - "reading": "おれ", - "meaning": "I, me" - }, - { - "example": "オレオレ詐欺", - "reading": "オレオレさぎ", - "meaning": "phone scam involving calls from pretended relatives in distress" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "乙", - "化", - "大", - "奄" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20474_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ffa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ffa.gif", - "uri": "http://jisho.org/search/%E4%BF%BA%23kanji" - }, - { - "query": "卸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1520", - "strokeCount": 9, - "meaning": "wholesale", - "kunyomi": [ - "おろ.す", - "おろし", - "おろ.し" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "卸下", - "reading": "シャガ", - "meaning": "cargo unloading" - } - ], - "kunyomiExamples": [ - { - "example": "卸す", - "reading": "おろす", - "meaning": "to sell wholesale, to grate (e.g. vegetables), to cut up fish" - }, - { - "example": "卸", - "reading": "おろし", - "meaning": "wholesale" - }, - { - "example": "下ろし", - "reading": "おろし", - "meaning": "dropping, unloading, removing, grated vegetables, fruit, etc., grater, using new tools (or clothes, etc.), new tools (or clothes, etc.)" - }, - { - "example": "仲卸", - "reading": "なかおろし", - "meaning": "intermediate wholesaler, middle trader, middleman, broker" - }, - { - "example": "貴金属卸", - "reading": "ききんぞくおろし", - "meaning": "wholesale (wholesaler) in precious metals" - }, - { - "example": "卸", - "reading": "おろし", - "meaning": "wholesale" - }, - { - "example": "下ろし", - "reading": "おろし", - "meaning": "dropping, unloading, removing, grated vegetables, fruit, etc., grater, using new tools (or clothes, etc.), new tools (or clothes, etc.)" - }, - { - "example": "仲卸", - "reading": "なかおろし", - "meaning": "intermediate wholesaler, middle trader, middleman, broker" - }, - { - "example": "貴金属卸", - "reading": "ききんぞくおろし", - "meaning": "wholesale (wholesaler) in precious metals" - } - ], - "radical": { - "symbol": "卩", - "meaning": "kneel" - }, - "parts": [ - "ノ", - "乞", - "卩", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21368_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05378.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5378.gif", - "uri": "http://jisho.org/search/%E5%8D%B8%23kanji" - }, - { - "query": "穏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1535", - "strokeCount": 16, - "meaning": "calm, quiet, moderation", - "kunyomi": [ - "おだ.やか" - ], - "onyomi": [ - "オン" - ], - "onyomiExamples": [ - { - "example": "穏健", - "reading": "オンケン", - "meaning": "quiet, dependable, uniform, (politically) moderate" - }, - { - "example": "温和", - "reading": "オンワ", - "meaning": "mild (climate), temperate, clement, pleasant, agreeable, gentle (nature, personality, etc.), mild, quiet, pleasant, moderate (statement, measure, etc.), mild, temperate" - }, - { - "example": "安穏", - "reading": "アンノン", - "meaning": "peace, quiet, tranquility, tranquillity" - }, - { - "example": "無事平穏", - "reading": "ブジヘイオン", - "meaning": "peace and quiet, safe and peaceful, tranquil and uneventful" - } - ], - "kunyomiExamples": [ - { - "example": "穏やか", - "reading": "おだやか", - "meaning": "calm, quiet, gentle, peaceful, mild, moderate, reasonable, amicable" - }, - { - "example": "穏やかに話す", - "reading": "おだやかにはなす", - "meaning": "to talk quietly" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ヨ", - "心", - "爪", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31311_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a4f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a4f.gif", - "uri": "http://jisho.org/search/%E7%A9%8F%23kanji" - }, - { - "query": "佳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1643", - "strokeCount": 8, - "meaning": "excellent, beautiful, good, pleasing, skilled", - "kunyomi": [], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "佳", - "reading": "カ", - "meaning": "beautiful, good, excellent" - }, - { - "example": "佳作", - "reading": "カサク", - "meaning": "good piece of work, honourable mention (honorable)" - }, - { - "example": "絶佳", - "reading": "ゼッカ", - "meaning": "superb (view, landscape)" - }, - { - "example": "風光絶佳", - "reading": "フウコウゼッカ", - "meaning": "scenic beauty" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20339_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f73.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f73.gif", - "uri": "http://jisho.org/search/%E4%BD%B3%23kanji" - }, - { - "query": "苛", - "found": true, - "taughtIn": "junior high", - "strokeCount": 8, - "meaning": "torment, scold, chastise", - "kunyomi": [ - "いじ.める", - "さいな.む", - "いらだ.つ", - "からい", - "こまかい" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "過酷", - "reading": "カコク", - "meaning": "severe, harsh, hard, cruel, rigorous" - }, - { - "example": "苛虐", - "reading": "カギャク", - "meaning": "cruel treatment" - } - ], - "kunyomiExamples": [ - { - "example": "苛める", - "reading": "いじめる", - "meaning": "to ill-treat, to bully, to torment, to pick on, to tease, to be cruel to, to persecute, to be tough on (e.g. one's body), to treat harshly" - }, - { - "example": "苛む", - "reading": "さいなむ", - "meaning": "to torment, to torture, to harass" - }, - { - "example": "苛立つ", - "reading": "いらだつ", - "meaning": "to be irritated, to get annoyed, to lose one's patience" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "一", - "亅", - "口", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33499_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82db.gif", - "uri": "http://jisho.org/search/%E8%8B%9B%23kanji" - }, - { - "query": "架", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1555", - "strokeCount": 9, - "meaning": "erect, frame, mount, support, shelf, construct", - "kunyomi": [ - "か.ける", - "か.かる" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "架", - "reading": "カ", - "meaning": "rack, mount, stand" - }, - { - "example": "架空", - "reading": "カクウ", - "meaning": "fictitious, imaginary, fanciful, fabricated, aerial, overhead" - }, - { - "example": "高架", - "reading": "コウカ", - "meaning": "elevated (structure), overhead" - }, - { - "example": "担架", - "reading": "タンカ", - "meaning": "stretcher, litter" - } - ], - "kunyomiExamples": [ - { - "example": "架ける", - "reading": "かける", - "meaning": "to suspend between two points, to build (a bridge, etc.), to put up on something (e.g. legs up on table)" - }, - { - "example": "架かる", - "reading": "かかる", - "meaning": "to span, to bridge, to cross, to straddle" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "力", - "口", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26550_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067b6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67b6.gif", - "uri": "http://jisho.org/search/%E6%9E%B6%23kanji" - }, - { - "query": "華", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1085", - "strokeCount": 10, - "meaning": "splendor, flower, petal, shine, luster, ostentatious, showy, gay, gorgeous", - "kunyomi": [ - "はな" - ], - "onyomi": [ - "カ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "華", - "reading": "カ", - "meaning": "flashiness, showiness, brilliance, splendor, bloom, flowers" - }, - { - "example": "華僑", - "reading": "カキョウ", - "meaning": "overseas Chinese" - }, - { - "example": "献花", - "reading": "ケンカ", - "meaning": "flower offering, floral tribute, laying flowers" - }, - { - "example": "精華", - "reading": "セイカ", - "meaning": "essence, quintessence, flower, glory" - }, - { - "example": "華厳", - "reading": "ケゴン", - "meaning": "avatamsa (flower adornment, as a metaphor for becoming a buddha), Avatamska sutra, Kegon (sect of Buddhism)" - }, - { - "example": "花かご", - "reading": "ハナカゴ", - "meaning": "flower basket, flower basket (or plate) used for flower-scattering rituals" - }, - { - "example": "法華", - "reading": "ホッケ", - "meaning": "Nichiren sect, Tendai sect, Lotus Sutra" - }, - { - "example": "天花", - "reading": "テンゲ", - "meaning": "flowers that bloom in the heavens, paper flowers scattered before the Buddha's image" - } - ], - "kunyomiExamples": [ - { - "example": "花", - "reading": "はな", - "meaning": "flower, blossom, bloom, petal, cherry blossom, beauty, blooming (esp. of cherry blossoms), ikebana, hanafuda, (the) best, glorious, lovely" - }, - { - "example": "華やか", - "reading": "はなやか", - "meaning": "showy, brilliant, gorgeous, florid, gay" - }, - { - "example": "武士道の華", - "reading": "ぶしどうのはな", - "meaning": "flower of chivalry (Bushido)" - }, - { - "example": "雪の花", - "reading": "ゆきのはな", - "meaning": "snowdrop (Galanthus spp.), snow falling like flower petals, snow on a tree resembling a flower, red snow" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "一", - "艾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33775_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/083ef.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/83ef.gif", - "uri": "http://jisho.org/search/%E8%8F%AF%23kanji" - }, - { - "query": "菓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1719", - "strokeCount": 11, - "meaning": "candy, cakes, fruit", - "kunyomi": [], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "菓", - "reading": "カ", - "meaning": "fruit, counter for fruit" - }, - { - "example": "菓子", - "reading": "カシ", - "meaning": "confectionery, sweets, candy, cake" - }, - { - "example": "製菓", - "reading": "セイカ", - "meaning": "confectionery production, baking (e.g. pastries, sweets), confectionery" - }, - { - "example": "聖菓", - "reading": "セイカ", - "meaning": "Christmas cake" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "木", - "田", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33747_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/083d3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/83d3.gif", - "uri": "http://jisho.org/search/%E8%8F%93%23kanji" - }, - { - "query": "渦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1789", - "strokeCount": 12, - "meaning": "whirlpool, eddy, vortex", - "kunyomi": [ - "うず" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "渦中", - "reading": "カチュウ", - "meaning": "vortex, maelstrom, whirlpool, (in the middle of a) scandal, controversy, quarrel, turmoil" - }, - { - "example": "渦状", - "reading": "カジョウ", - "meaning": "spiral" - }, - { - "example": "極渦", - "reading": "キョクウズ", - "meaning": "polar vortex, polar cell" - }, - { - "example": "戦渦", - "reading": "センカ", - "meaning": "chaos of war, war turmoil" - } - ], - "kunyomiExamples": [ - { - "example": "渦", - "reading": "うず", - "meaning": "whirlpool, swirl, eddy, vortex, maelstrom" - }, - { - "example": "渦巻き", - "reading": "うずまき", - "meaning": "whirlpool, eddy, coil" - }, - { - "example": "寒冷渦", - "reading": "かんれいうず", - "meaning": "cold vortex" - }, - { - "example": "極渦", - "reading": "きょくうず", - "meaning": "polar vortex, polar cell" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "冂", - "口", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28198_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e26.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e26.gif", - "uri": "http://jisho.org/search/%E6%B8%A6%23kanji" - }, - { - "query": "嫁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1581", - "strokeCount": 13, - "meaning": "marry into, bride", - "kunyomi": [ - "よめ", - "とつ.ぐ", - "い.く", - "ゆ.く" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "嫁す", - "reading": "カス", - "meaning": "to wed, to be married, to shift blame to someone else" - }, - { - "example": "嫁する", - "reading": "カスル", - "meaning": "to wed, to be married, to shift blame to someone else" - }, - { - "example": "責任転嫁", - "reading": "セキニンテンカ", - "meaning": "shift the responsibility (for something) on to (someone), pass the buck" - }, - { - "example": "再嫁", - "reading": "サイカ", - "meaning": "remarriage" - } - ], - "kunyomiExamples": [ - { - "example": "嫁", - "reading": "よめ", - "meaning": "wife, bride, (one's) daughter-in-law" - }, - { - "example": "嫁入り", - "reading": "よめいり", - "meaning": "marriage, wedding" - }, - { - "example": "新嫁", - "reading": "しんよめ", - "meaning": "newly-wed bride" - }, - { - "example": "弟嫁", - "reading": "おとうとよめ", - "meaning": "younger brother's wife" - }, - { - "example": "嫁ぐ", - "reading": "とつぐ", - "meaning": "to marry (of a woman), to become a bride, to marry into (a family), to have sexual intercourse" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "宀", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23233_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ac1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ac1.gif", - "uri": "http://jisho.org/search/%E5%AB%81%23kanji" - }, - { - "query": "暇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1386", - "strokeCount": 13, - "meaning": "spare time, rest, leisure, time, leave of absence", - "kunyomi": [ - "ひま", - "いとま" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "暇人", - "reading": "ヒマジン", - "meaning": "person with a lot of free time on their hands, person of leisure, idler, loafer" - }, - { - "example": "寸暇", - "reading": "スンカ", - "meaning": "moment's leisure, free minute" - }, - { - "example": "請暇", - "reading": "セイカ", - "meaning": "vacation request, request for leave of absence" - } - ], - "kunyomiExamples": [ - { - "example": "暇", - "reading": "ひま", - "meaning": "spare time, free time, leisure, time (e.g. time it takes to do something), time off, day off, vacation, holiday, leave, quitting (one's job), firing someone, divorcing (one's spouse), (being) inactive, (of one's business) slow, leaving, departing" - }, - { - "example": "暇つぶし", - "reading": "ひまつぶし", - "meaning": "waste of time, killing time" - }, - { - "example": "暇暇", - "reading": "ひまひま", - "meaning": "one's leisure hours" - }, - { - "example": "暇", - "reading": "ひま", - "meaning": "spare time, free time, leisure, time (e.g. time it takes to do something), time off, day off, vacation, holiday, leave, quitting (one's job), firing someone, divorcing (one's spouse), (being) inactive, (of one's business) slow, leaving, departing" - }, - { - "example": "暇乞い", - "reading": "いとまごい", - "meaning": "leave-taking, offering one's resignation, farewell visit" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "又", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26247_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06687.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6687.gif", - "uri": "http://jisho.org/search/%E6%9A%87%23kanji" - }, - { - "query": "禍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2010", - "strokeCount": 13, - "meaning": "calamity, misfortune, evil, curse", - "kunyomi": [ - "わざわい" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "禍", - "reading": "カ", - "meaning": "disaster, calamity, misfortune" - }, - { - "example": "禍根", - "reading": "カコン", - "meaning": "root of an evil, source of a problem, source of trouble, cause of misfortune" - }, - { - "example": "惨禍", - "reading": "サンカ", - "meaning": "calamity" - }, - { - "example": "災禍", - "reading": "サイカ", - "meaning": "disaster, accident, calamity, catastrophe" - } - ], - "kunyomiExamples": [ - { - "example": "災い", - "reading": "わざわい", - "meaning": "disaster, calamity, misfortune, trouble, woes" - }, - { - "example": "災い転じて福となす", - "reading": "わざわいてんじてふくとなす", - "meaning": "to turn misfortune into fortune (esp. through one's own efforts), to turn the potential disaster to one's advantage" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "冂", - "口", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31117_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0798d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/798d.gif", - "uri": "http://jisho.org/search/%E7%A6%8D%23kanji" - }, - { - "query": "靴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1561", - "strokeCount": 13, - "meaning": "shoes", - "kunyomi": [ - "くつ" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "靴帯", - "reading": "カタイ", - "meaning": "ankle strap (for fastening a shoe)" - }, - { - "example": "靴の沓", - "reading": "カノクツ", - "meaning": "black-lacquered cowhide boots with curved toes, metal buckles, and brocade tops (worn with ceremonial dress)" - }, - { - "example": "軍靴", - "reading": "グンカ", - "meaning": "military shoes, combat boots" - }, - { - "example": "製靴", - "reading": "セイカ", - "meaning": "shoe-making" - } - ], - "kunyomiExamples": [ - { - "example": "靴", - "reading": "くつ", - "meaning": "shoe, shoes, boots, footwear, footgear" - }, - { - "example": "靴下", - "reading": "くつした", - "meaning": "socks, sock, stockings, stocking" - }, - { - "example": "胴付長靴", - "reading": "どうつきながくつ", - "meaning": "waders (waterproof pants often fitted with boots, used mostly by fishermen)" - }, - { - "example": "厚底靴", - "reading": "あつぞこぐつ", - "meaning": "platform shoes, thick-soled shoes" - } - ], - "radical": { - "symbol": "革", - "meaning": "leather, rawhide" - }, - "parts": [ - "匕", - "化", - "革" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38772_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09774.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9774.gif", - "uri": "http://jisho.org/search/%E9%9D%B4%23kanji" - }, - { - "query": "寡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2035", - "strokeCount": 14, - "meaning": "widow, minority, few", - "kunyomi": [], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "寡", - "reading": "カ", - "meaning": "minority, small numbers, unmarried person, widow, widower" - }, - { - "example": "寡婦", - "reading": "カフ", - "meaning": "widow, divorced woman not remarried, unmarried woman" - }, - { - "example": "多寡", - "reading": "タカ", - "meaning": "degree (of something), greatness or smallness (of something), quantity, number, amount, size" - }, - { - "example": "鰥寡", - "reading": "カンカ", - "meaning": "widow and widower, lonely people" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ハ", - "一", - "刀", - "宀", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23521_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05be1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5be1.gif", - "uri": "http://jisho.org/search/%E5%AF%A1%23kanji" - }, - { - "query": "箇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 14, - "meaning": "counter for articles", - "kunyomi": [], - "onyomi": [ - "カ", - "コ" - ], - "onyomiExamples": [ - { - "example": "箇", - "reading": "カ", - "meaning": "counter for the ichi-ni-san counting system (usu. directly preceding the item being counted), a noun read using its on-yomi" - }, - { - "example": "箇所", - "reading": "カショ", - "meaning": "place, point, part, spot, area, passage, portion, counter for places, parts, passages, etc." - }, - { - "example": "個", - "reading": "コ", - "meaning": "counter for articles, counter for military units, individual" - }, - { - "example": "個々", - "reading": "ココ", - "meaning": "individual, one by one, separate, each" - }, - { - "example": "真箇", - "reading": "シンコ", - "meaning": "real, true" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "十", - "口", - "囗", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31623_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b87.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b87.gif", - "uri": "http://jisho.org/search/%E7%AE%87%23kanji" - }, - { - "query": "稼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1264", - "strokeCount": 15, - "meaning": "earnings, work, earn money", - "kunyomi": [ - "かせ.ぐ" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [ - { - "example": "稼働", - "reading": "カドウ", - "meaning": "operation (of machine), operating, running, working" - }, - { - "example": "稼ぎ", - "reading": "カセギ", - "meaning": "earnings" - } - ], - "kunyomiExamples": [ - { - "example": "稼ぐ", - "reading": "かせぐ", - "meaning": "to earn (income), to make (money), to score (points, victory), to gain (time), to play (for time), to work hard (at one's job), to labor, to labour, to toil" - }, - { - "example": "稼ぐに追いつく貧乏なし", - "reading": "かせぐにおいつくびんぼうなし", - "meaning": "poverty is a stranger to industry, diligence is the mother of good fortune" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "宀", - "禾", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31292_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a3c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a3c.gif", - "uri": "http://jisho.org/search/%E7%A8%BC%23kanji" - }, - { - "query": "蚊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2121", - "strokeCount": 10, - "meaning": "mosquito", - "kunyomi": [ - "か" - ], - "onyomi": [ - "ブン" - ], - "onyomiExamples": [ - { - "example": "蚊帳", - "reading": "カヤ", - "meaning": "mosquito net" - }, - { - "example": "夜鷹", - "reading": "ヨタカ", - "meaning": "grey nightjar (Caprimulgus indicus), nightjar (any bird of family Caprimulgidae), goatsucker, streetwalker, low class prostitute (Edo period), soba vendors who walk around at night, soba sold by these vendors" - }, - { - "example": "金蚊", - "reading": "カナブン", - "meaning": "drone beetle (scarabaeid beetle) (Rhomborrhina japonica)" - } - ], - "kunyomiExamples": [ - { - "example": "蚊", - "reading": "か", - "meaning": "mosquito" - }, - { - "example": "蚊帳", - "reading": "かや", - "meaning": "mosquito net" - }, - { - "example": "マラリア蚊", - "reading": "マラリアか", - "meaning": "malaria mosquito" - }, - { - "example": "家蚊", - "reading": "いえか", - "meaning": "house mosquito (genus Culex)" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "文", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34442_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0868a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/868a.gif", - "uri": "http://jisho.org/search/%E8%9A%8A%23kanji" - }, - { - "query": "牙", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2067", - "strokeCount": 5, - "meaning": "tusk, fang, tusk radical (no. 92)", - "kunyomi": [ - "きば", - "は" - ], - "onyomi": [ - "ガ", - "ゲ" - ], - "onyomiExamples": [ - { - "example": "牙城", - "reading": "ガジョウ", - "meaning": "stronghold (esp. of an enemy or opponent), inner citadel, bastion" - }, - { - "example": "牙関緊急", - "reading": "ガカンキンキュウ", - "meaning": "trismus, lockjaw" - }, - { - "example": "爪牙", - "reading": "ソウガ", - "meaning": "claws and fangs, claws and tusks, clutches, devious design, means of causing harm, weapon, pawn, stooge, cat's-paw, right-hand man" - }, - { - "example": "毒牙", - "reading": "ドクガ", - "meaning": "poison fang, sinister ways, crooked means, clutches, wily ways, dirty trick" - }, - { - "example": "牙", - "reading": "ゲ", - "meaning": "tooth, ivory" - }, - { - "example": "新象牙", - "reading": "シンゾウゲ", - "meaning": "ivory-like plastic (used for mahjong tiles, shogi pieces, etc.)" - }, - { - "example": "黒花狼牙", - "reading": "クロバナロウゲ", - "meaning": "purple marshlocks (Comarum palustre), swamp cinquefoil, marsh cinquefoil" - } - ], - "kunyomiExamples": [ - { - "example": "牙", - "reading": "きば", - "meaning": "tusk, fang" - }, - { - "example": "牙海蜷", - "reading": "きばうみにな", - "meaning": "mud creeper (Terebralia palustris)" - } - ], - "radical": { - "symbol": "牙", - "meaning": "fang" - }, - "parts": [ - "牙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29273_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07259.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7259.gif", - "uri": "http://jisho.org/search/%E7%89%99%23kanji" - }, - { - "query": "瓦", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1850", - "strokeCount": 5, - "meaning": "tile, gram", - "kunyomi": [ - "かわら", - "ぐらむ" - ], - "onyomi": [ - "ガ" - ], - "onyomiExamples": [ - { - "example": "瓦斯", - "reading": "ガス", - "meaning": "gas (state of matter, e.g. poison gas, natural gas), gasoline, gas, petrol, dense fog, thick fog, gas stove, gas cooker, gas range, flatulence, gas, wind, fart" - }, - { - "example": "瓦礫", - "reading": "ガレキ", - "meaning": "rubble, debris, wreckage" - }, - { - "example": "鞍橋", - "reading": "クラボネ", - "meaning": "saddle tree" - }, - { - "example": "舗装煉瓦", - "reading": "ホソウレンガ", - "meaning": "paving brick" - } - ], - "kunyomiExamples": [ - { - "example": "瓦", - "reading": "かわら", - "meaning": "roof tile" - }, - { - "example": "瓦状", - "reading": "かわらがさね", - "meaning": "imbricate, tegular, overlapping" - }, - { - "example": "瓦", - "reading": "グラム", - "meaning": "gram, gramme" - } - ], - "radical": { - "symbol": "瓦", - "meaning": "tile" - }, - "parts": [ - "一", - "瓦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29926_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/074e6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/74e6.gif", - "uri": "http://jisho.org/search/%E7%93%A6%23kanji" - }, - { - "query": "雅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1192", - "strokeCount": 13, - "meaning": "gracious, elegant, graceful, refined", - "kunyomi": [ - "みや.び" - ], - "onyomi": [ - "ガ" - ], - "onyomiExamples": [ - { - "example": "雅", - "reading": "ガ", - "meaning": "elegance, grace, festal song (genre of the Shi Jing)" - }, - { - "example": "雅致", - "reading": "ガチ", - "meaning": "artistry, good taste, elegance, grace" - }, - { - "example": "清雅", - "reading": "セイガ", - "meaning": "graceful, elegant" - }, - { - "example": "大雅", - "reading": "ダイガ", - "meaning": "major festal song (subgenre of the Shi Jing)" - } - ], - "kunyomiExamples": [ - { - "example": "雅", - "reading": "みやび", - "meaning": "refinement, elegance, grace" - }, - { - "example": "雅び男", - "reading": "みやびお", - "meaning": "elegant and refined man" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "牙", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38597_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96c5.gif", - "uri": "http://jisho.org/search/%E9%9B%85%23kanji" - }, - { - "query": "餓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1754", - "strokeCount": 15, - "meaning": "starve, hungry, thirst", - "kunyomi": [ - "う.える" - ], - "onyomi": [ - "ガ" - ], - "onyomiExamples": [ - { - "example": "餓死", - "reading": "ガシ", - "meaning": "(death from) starvation, starving to death" - }, - { - "example": "餓鬼", - "reading": "ガキ", - "meaning": "brat, kid, urchin, little devil, preta, hungry ghost" - } - ], - "kunyomiExamples": [ - { - "example": "飢える", - "reading": "うえる", - "meaning": "to starve, to be famished, to be hungry, to be starved of (e.g. love), to be thirsty for (e.g. knowledge), to be hungry for" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "亅", - "戈", - "手", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39187_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09913.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9913.gif", - "uri": "http://jisho.org/search/%E9%A4%93%23kanji" - }, - { - "query": "介", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "617", - "strokeCount": 4, - "meaning": "jammed in, shellfish, mediate, concern oneself with", - "kunyomi": [], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "介在", - "reading": "カイザイ", - "meaning": "existing (between), interposition, intervention, involvement" - }, - { - "example": "介護", - "reading": "カイゴ", - "meaning": "nursing, care, caregiving, caring" - }, - { - "example": "魚介", - "reading": "ギョカイ", - "meaning": "marine products, seafood, fish and shellfish" - }, - { - "example": "無媒介", - "reading": "ムバイカイ", - "meaning": "immediacy (in philosophy), directness" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "个" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20171_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ecb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ecb.gif", - "uri": "http://jisho.org/search/%E4%BB%8B%23kanji" - }, - { - "query": "戒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1062", - "strokeCount": 7, - "meaning": "commandment", - "kunyomi": [ - "いまし.める" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "戒", - "reading": "カイ", - "meaning": "admonition, commandment, sila (precept)" - }, - { - "example": "戒厳令", - "reading": "カイゲンレイ", - "meaning": "martial law" - }, - { - "example": "懲戒", - "reading": "チョウカイ", - "meaning": "discipline, punishment, reprimand" - }, - { - "example": "自戒", - "reading": "ジカイ", - "meaning": "self-admonition" - } - ], - "kunyomiExamples": [ - { - "example": "戒める", - "reading": "いましめる", - "meaning": "to warn against, to caution against, to admonish, to scold, to rebuke, to prohibit, to forbid, to ban, to be cautious, to detest, to loathe, to punish" - } - ], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "廾", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25106_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06212.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6212.gif", - "uri": "http://jisho.org/search/%E6%88%92%23kanji" - }, - { - "query": "怪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1634", - "strokeCount": 8, - "meaning": "suspicious, mystery, apparition", - "kunyomi": [ - "あや.しい", - "あや.しむ" - ], - "onyomi": [ - "カイ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "怪", - "reading": "カイ", - "meaning": "mystery, wonder" - }, - { - "example": "怪獣", - "reading": "カイジュウ", - "meaning": "monster" - }, - { - "example": "奇奇怪怪", - "reading": "キキカイカイ", - "meaning": "very strange, bizarre, weird, mysterious" - }, - { - "example": "夜道怪", - "reading": "ヤドウカイ", - "meaning": "folk monster who wanders at night injuring and kidnapping people" - }, - { - "example": "怪我", - "reading": "ケガ", - "meaning": "injury (to animate object), hurt" - }, - { - "example": "けが人", - "reading": "ケガニン", - "meaning": "wounded person, injured person" - }, - { - "example": "物怪", - "reading": "モッケ", - "meaning": "unexpected" - }, - { - "example": "物の怪", - "reading": "モノノケ", - "meaning": "(vengeful) ghost, specter, spectre" - } - ], - "kunyomiExamples": [ - { - "example": "怪しい", - "reading": "あやしい", - "meaning": "suspicious, dubious, questionable, dodgy, shady, fishy, doubtful, unsure, uncertain, unlikely, implausible, untrustworthy, unreliable, clumsy, awkward, shaky, poor, strange, weird, eerie, spooky, uncanny, ominous (e.g. weather), threatening, dangerous (e.g. financial situation), uncertain, suspicious (of a potential amorous relation), mysterious, bewitching, alluring, enticing, enchanting" - }, - { - "example": "怪しい手つきで", - "reading": "あやしいてつきで", - "meaning": "clumsily, with clumsy hands" - }, - { - "example": "怪しむ", - "reading": "あやしむ", - "meaning": "to suspect" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "又", - "土", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24618_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0602a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/602a.gif", - "uri": "http://jisho.org/search/%E6%80%AA%23kanji" - }, - { - "query": "拐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1498", - "strokeCount": 8, - "meaning": "kidnap, falsify", - "kunyomi": [], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "拐引", - "reading": "カイイン", - "meaning": "carrying off by deception, kidnap" - }, - { - "example": "拐取", - "reading": "カイシュ", - "meaning": "abducting (legal term)" - }, - { - "example": "デジタル誘拐", - "reading": "デジタルユウカイ", - "meaning": "digital kidnapping" - }, - { - "example": "狂言誘拐", - "reading": "キョウゲンユウカイ", - "meaning": "fake (staged) kidnapping" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "刀", - "口", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25296_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062d0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62d0.gif", - "uri": "http://jisho.org/search/%E6%8B%90%23kanji" - }, - { - "query": "悔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1460", - "strokeCount": 9, - "meaning": "repent, regret", - "kunyomi": [ - "く.いる", - "く.やむ", - "くや.しい" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "悔恨", - "reading": "カイコン", - "meaning": "regret, remorse, repentance, contrition" - }, - { - "example": "悔悟", - "reading": "カイゴ", - "meaning": "remorse, repentance" - }, - { - "example": "痛悔", - "reading": "ツウカイ", - "meaning": "contrition, extreme regret, contrition (in Catholicism)" - } - ], - "kunyomiExamples": [ - { - "example": "悔いる", - "reading": "くいる", - "meaning": "to regret" - }, - { - "example": "悔やむ", - "reading": "くやむ", - "meaning": "to mourn, to lament, to be sorry, to regret, to repent" - }, - { - "example": "悔しい", - "reading": "くやしい", - "meaning": "vexing, annoying, frustrating, regrettable, mortifying" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "忙", - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24724_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06094.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6094.gif", - "uri": "http://jisho.org/search/%E6%82%94%23kanji" - }, - { - "query": "皆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1267", - "strokeCount": 9, - "meaning": "all, everything", - "kunyomi": [ - "みな", - "みんな" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "皆無", - "reading": "カイム", - "meaning": "nonexistent, nil, none, nothing (at all), bugger-all" - }, - { - "example": "皆目", - "reading": "カイモク", - "meaning": "entirely, (not) at all" - }, - { - "example": "悉皆", - "reading": "シッカイ", - "meaning": "all" - } - ], - "kunyomiExamples": [ - { - "example": "皆", - "reading": "みんな", - "meaning": "everyone, everybody, all, everything, all" - }, - { - "example": "皆様", - "reading": "みなさま", - "meaning": "everyone" - }, - { - "example": "皆が皆", - "reading": "みんながみんな", - "meaning": "each and all, every single one, everybody" - }, - { - "example": "皆々", - "reading": "みなみな", - "meaning": "all, everyone, everybody, everything" - }, - { - "example": "皆", - "reading": "みんな", - "meaning": "everyone, everybody, all, everything, all" - }, - { - "example": "皆が皆", - "reading": "みんながみんな", - "meaning": "each and all, every single one, everybody" - }, - { - "example": "皆が皆", - "reading": "みんながみんな", - "meaning": "each and all, every single one, everybody" - } - ], - "radical": { - "symbol": "白", - "meaning": "white" - }, - "parts": [ - "比", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30342_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07686.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7686.gif", - "uri": "http://jisho.org/search/%E7%9A%86%23kanji" - }, - { - "query": "塊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1800", - "strokeCount": 13, - "meaning": "clod, lump, chunk, clot, mass", - "kunyomi": [ - "かたまり", - "つちくれ" - ], - "onyomi": [ - "カイ", - "ケ" - ], - "onyomiExamples": [ - { - "example": "塊茎", - "reading": "カイケイ", - "meaning": "tuber" - }, - { - "example": "塊鉱", - "reading": "カイコウ", - "meaning": "lump ore" - }, - { - "example": "団塊", - "reading": "ダンカイ", - "meaning": "mass, lump, clod, clump, nodule, baby boom generation (of 1947-1949), babyboomer (born between 1947-1949)" - }, - { - "example": "山塊", - "reading": "サンカイ", - "meaning": "mountain mass, massif" - } - ], - "kunyomiExamples": [ - { - "example": "塊", - "reading": "かたまり", - "meaning": "lump, mass, bundle, clump, clod, cluster, group, crowd, embodiment (of an idea, quality, feeling etc.), personification" - }, - { - "example": "塊肉", - "reading": "かたまりにく", - "meaning": "chunk of meat (e.g. for grilling), joint of meat" - }, - { - "example": "一塊", - "reading": "いっかい", - "meaning": "one lump, one group" - }, - { - "example": "拝金主義の塊", - "reading": "はいきんしゅぎのかたまり", - "meaning": "money-worshiper" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "儿", - "匕", - "厶", - "土", - "田", - "鬼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22602_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0584a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/584a.gif", - "uri": "http://jisho.org/search/%E5%A1%8A%23kanji" - }, - { - "query": "楷", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "square character style, correctness", - "kunyomi": [], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "楷", - "reading": "カイ", - "meaning": "regular script (of Chinese characters), square style, block style, standard style, Chinese pistache (Pistacia chinensis)" - }, - { - "example": "楷書", - "reading": "カイショ", - "meaning": "printed style (of writing Chinese characters), square style, block style, standard style" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "比", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26999_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06977.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6977.gif", - "uri": "http://jisho.org/search/%E6%A5%B7%23kanji" - }, - { - "query": "潰", - "found": true, - "taughtIn": "junior high", - "strokeCount": 15, - "meaning": "crush, smash, break, dissipate", - "kunyomi": [ - "つぶ.す", - "つぶ.れる", - "つい.える" - ], - "onyomi": [ - "カイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "壊滅", - "reading": "カイメツ", - "meaning": "destruction, annihilation, devastation, catastrophe" - }, - { - "example": "潰瘍", - "reading": "カイヨウ", - "meaning": "ulcer" - }, - { - "example": "全壊", - "reading": "ゼンカイ", - "meaning": "complete destruction" - }, - { - "example": "擂潰", - "reading": "ライカイ", - "meaning": "grinding" - } - ], - "kunyomiExamples": [ - { - "example": "潰す", - "reading": "つぶす", - "meaning": "to smash, to crush, to flatten, to shut down, to put out of business, to force (a company) to close up shop, to wreck, to break, to block, to thwart, to butcher, to slaughter, to kill (livestock, for food), to kill (time), to while away (the time), to use up (one's time), to waste (e.g. talents)" - }, - { - "example": "潰れる", - "reading": "つぶれる", - "meaning": "to be crushed, to be smashed, to be broken, to collapse, to become useless, to cease functioning, to be wasted (e.g. time), to go bankrupt, to go out of business, to fail" - }, - { - "example": "潰える", - "reading": "ついえる", - "meaning": "to fall apart, to collapse, to become useless, to be completely defeated (in battle), to be wiped out, to fall apart (one's body or health)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "一", - "十", - "口", - "汁", - "目", - "貝", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28528_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f70.gif", - "uri": "http://jisho.org/search/%E6%BD%B0%23kanji" - }, - { - "query": "壊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "727", - "strokeCount": 16, - "meaning": "demolition, break, destroy", - "kunyomi": [ - "こわ.す", - "こわ.れる", - "やぶ.る" - ], - "onyomi": [ - "カイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "壊滅", - "reading": "カイメツ", - "meaning": "destruction, annihilation, devastation, catastrophe" - }, - { - "example": "壊血病", - "reading": "カイケツビョウ", - "meaning": "scurvy" - }, - { - "example": "損壊", - "reading": "ソンカイ", - "meaning": "damage, destruction" - }, - { - "example": "全壊", - "reading": "ゼンカイ", - "meaning": "complete destruction" - }, - { - "example": "壊死", - "reading": "エシ", - "meaning": "necrosis" - }, - { - "example": "壊劫", - "reading": "エコウ", - "meaning": "the kalpa of destruction (the third aeon of the universe)" - }, - { - "example": "不壊", - "reading": "フエ", - "meaning": "indestructibility" - }, - { - "example": "金剛不壊", - "reading": "コンゴウフエ", - "meaning": "firm and solid, sturdy and indestructible, unshakable, adamantine" - } - ], - "kunyomiExamples": [ - { - "example": "壊す", - "reading": "こわす", - "meaning": "to break, to destroy, to demolish, to wreck, to ruin, to spoil, to damage, to break (a bill, etc.)" - }, - { - "example": "壊れる", - "reading": "こわれる", - "meaning": "to be broken, to break, to fall through, to come to nothing" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "亠", - "十", - "土", - "衣", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22730_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058ca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58ca.gif", - "uri": "http://jisho.org/search/%E5%A3%8A%23kanji" - }, - { - "query": "懐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1493", - "strokeCount": 16, - "meaning": "pocket, feelings, heart, yearn, miss someone, become attached to, bosom, breast", - "kunyomi": [ - "ふところ", - "なつ.かしい", - "なつ.かしむ", - "なつ.く", - "なつ.ける", - "なず.ける", - "いだ.く", - "おも.う" - ], - "onyomi": [ - "カイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "懐疑", - "reading": "カイギ", - "meaning": "doubt, skepticism, scepticism, disbelief" - }, - { - "example": "懐古", - "reading": "カイコ", - "meaning": "reminiscence, nostalgia, thinking fondly of the past, recalling the old days" - }, - { - "example": "述懐", - "reading": "ジュッカイ", - "meaning": "speaking about (one's thoughts, memories, etc.), relating (one's feelings, reminiscences, etc.), recollection, reminiscence" - }, - { - "example": "追懐", - "reading": "ツイカイ", - "meaning": "recollection, remembrance, reminiscence" - } - ], - "kunyomiExamples": [ - { - "example": "懐", - "reading": "ふところ", - "meaning": "inside the breast of one's clothing (esp. kimono), bosom, (breast) pocket, space between one's chest and outstretched arms, (one's) reach, heart (e.g. of a mountain), bosom (e.g. of nature), depths, inner part, mind, heart, inner thoughts, money (one is carrying), purse, pocketbook" - }, - { - "example": "懐刀", - "reading": "ふところがたな", - "meaning": "dagger, stiletto, confidant, right-hand man" - }, - { - "example": "苦しい懐", - "reading": "くるしいふところ", - "meaning": "tight budget" - }, - { - "example": "自然の懐", - "reading": "しぜんのふところ", - "meaning": "bosom of Nature" - }, - { - "example": "懐かしい", - "reading": "なつかしい", - "meaning": "dear (old), fondly-remembered, beloved, missed, nostalgic" - }, - { - "example": "懐かしむ", - "reading": "なつかしむ", - "meaning": "to yearn for (someone, something), to miss" - }, - { - "example": "懐く", - "reading": "なつく", - "meaning": "to become emotionally attached (to), to take (to)" - }, - { - "example": "懐ける", - "reading": "なつける", - "meaning": "to win over, to win another's heart" - }, - { - "example": "抱く", - "reading": "いだく", - "meaning": "to hold in one's arms (e.g. a baby), to embrace, to hug, to have (a thought or feeling), to hold, to harbour (suspicion, doubt, etc.), to harbor, to bear (a grudge, ill will, etc.), to entertain (hope, illusions, etc.), to cherish (e.g. an ambition)" - }, - { - "example": "思う", - "reading": "おもう", - "meaning": "to think, to consider, to believe, to reckon, to think (of doing), to plan (to do), to judge, to assess, to regard, to imagine, to suppose, to dream, to expect, to look forward to, to feel, to be (in a state of mind), to desire, to want, to recall, to remember" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "亠", - "十", - "忙", - "衣", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25040_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061d0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61d0.gif", - "uri": "http://jisho.org/search/%E6%87%90%23kanji" - }, - { - "query": "諧", - "found": true, - "taughtIn": "junior high", - "strokeCount": 16, - "meaning": "harmony", - "kunyomi": [ - "かな.う", - "やわ.らぐ" - ], - "onyomi": [ - "カイ" - ], - "onyomiExamples": [ - { - "example": "諧和", - "reading": "カイワ", - "meaning": "gentle mutual affection, harmony, harmony" - }, - { - "example": "諧謔", - "reading": "カイギャク", - "meaning": "joke, jest, banter" - }, - { - "example": "俳諧", - "reading": "ハイカイ", - "meaning": "haikai, collective name for haiku, haibun, haiga, senryū, etc., humorous or vulgar renga poetry" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "比", - "白", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35559_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ae7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ae7.gif", - "uri": "http://jisho.org/search/%E8%AB%A7%23kanji" - }, - { - "query": "劾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2085", - "strokeCount": 8, - "meaning": "censure, criminal investigation", - "kunyomi": [], - "onyomi": [ - "ガイ" - ], - "onyomiExamples": [ - { - "example": "劾奏", - "reading": "ガイソウ", - "meaning": "report of an official's offence to the emperor (offense)" - }, - { - "example": "弾劾", - "reading": "ダンガイ", - "meaning": "impeachment, denunciation, accusation, censure, arraignment" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "ノ", - "丶", - "亠", - "人", - "力" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21182_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052be.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52be.gif", - "uri": "http://jisho.org/search/%E5%8A%BE%23kanji" - }, - { - "query": "崖", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "cliff, bluff, precipice", - "kunyomi": [ - "がけ", - "きし", - "はて" - ], - "onyomi": [ - "ガイ", - "ゲ", - "ギ" - ], - "onyomiExamples": [ - { - "example": "崖下", - "reading": "ガイカ", - "meaning": "below a cliff" - }, - { - "example": "崖上", - "reading": "ガイジョウ", - "meaning": "cliff top" - }, - { - "example": "断層崖", - "reading": "ダンソウガイ", - "meaning": "fault scarp, fault escarpment" - }, - { - "example": "崎崖", - "reading": "キガイ", - "meaning": "steepness of a mountain" - } - ], - "kunyomiExamples": [ - { - "example": "崖", - "reading": "がけ", - "meaning": "cliff, precipice, precipice, brink of a dangerous situation" - }, - { - "example": "崖上", - "reading": "がいじょう", - "meaning": "cliff top" - }, - { - "example": "財政の崖", - "reading": "ざいせいのがけ", - "meaning": "fiscal cliff (e.g. potential 2013 US financial crisis), fiscal precipice" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "厂", - "土", - "山" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23830_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05d16.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5d16.gif", - "uri": "http://jisho.org/search/%E5%B4%96%23kanji" - }, - { - "query": "涯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1525", - "strokeCount": 11, - "meaning": "horizon, shore, limit, bound", - "kunyomi": [ - "はて" - ], - "onyomi": [ - "ガイ" - ], - "onyomiExamples": [ - { - "example": "際涯", - "reading": "サイガイ", - "meaning": "limits, boundary, end" - }, - { - "example": "水涯", - "reading": "スイガイ", - "meaning": "water's edge" - } - ], - "kunyomiExamples": [ - { - "example": "涯", - "reading": "はて", - "meaning": "horizon" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "厂", - "土", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28079_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06daf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6daf.gif", - "uri": "http://jisho.org/search/%E6%B6%AF%23kanji" - }, - { - "query": "慨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1875", - "strokeCount": 13, - "meaning": "rue, be sad, sigh, lament", - "kunyomi": [], - "onyomi": [ - "ガイ" - ], - "onyomiExamples": [ - { - "example": "慨する", - "reading": "ガイスル", - "meaning": "to regret, to deplore" - }, - { - "example": "慨世", - "reading": "ガイセイ", - "meaning": "deploring the course of public events" - }, - { - "example": "感慨", - "reading": "カンガイ", - "meaning": "deep emotion, strong feelings" - }, - { - "example": "気概", - "reading": "キガイ", - "meaning": "strong spirit, mettle, backbone, guts, fighting spirit" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "忙", - "牙", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24936_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06168.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6168.gif", - "uri": "http://jisho.org/search/%E6%85%A8%23kanji" - }, - { - "query": "蓋", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2388", - "strokeCount": 13, - "meaning": "cover, lid, flap", - "kunyomi": [ - "ふた", - "けだ.し", - "おお.う", - "かさ", - "かこう" - ], - "onyomi": [ - "ガイ", - "カイ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "蓋果", - "reading": "ガイカ", - "meaning": "pyxidium" - }, - { - "example": "蓋然", - "reading": "ガイゼン", - "meaning": "probability" - }, - { - "example": "鰓蓋", - "reading": "エラブタ", - "meaning": "gill cover, operculum" - }, - { - "example": "口蓋", - "reading": "コウガイ", - "meaning": "palate" - } - ], - "kunyomiExamples": [ - { - "example": "蓋", - "reading": "ふた", - "meaning": "cover, lid, cap" - }, - { - "example": "蓋開け", - "reading": "ふたあけ", - "meaning": "opening, beginning, commencement" - }, - { - "example": "臭い物に蓋", - "reading": "くさいものにふた", - "meaning": "looking the other way, hushing up a problem" - }, - { - "example": "給油口の蓋", - "reading": "きゅうゆこうのふた", - "meaning": "petrol cap" - }, - { - "example": "蓋し", - "reading": "けだし", - "meaning": "certainly, really, truly, indeed, possibly, maybe, perhaps, probably" - }, - { - "example": "覆う", - "reading": "おおう", - "meaning": "to cover, to hide, to conceal, to wrap, to disguise" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "厶", - "土", - "皿", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33995_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/084cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/84cb.gif", - "uri": "http://jisho.org/search/%E8%93%8B%23kanji" - }, - { - "query": "該", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1648", - "strokeCount": 13, - "meaning": "above-stated, the said, that specific", - "kunyomi": [], - "onyomi": [ - "ガイ" - ], - "onyomiExamples": [ - { - "example": "該", - "reading": "ガイ", - "meaning": "said, matter in question" - }, - { - "example": "該当", - "reading": "ガイトウ", - "meaning": "corresponding to, being applicable to, being relevant to, coming under, falling under, fulfilling (requirements), meeting (conditions), qualifying for" - }, - { - "example": "当該", - "reading": "トウガイ", - "meaning": "appropriate (e.g. authorities), concerned, relevant, said, aforementioned, competent, applicable, respective" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "丶", - "亠", - "人", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35442_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a72.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a72.gif", - "uri": "http://jisho.org/search/%E8%A9%B2%23kanji" - }, - { - "query": "概", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1335", - "strokeCount": 14, - "meaning": "outline, condition, approximation, generally", - "kunyomi": [ - "おおむ.ね" - ], - "onyomi": [ - "ガイ" - ], - "onyomiExamples": [ - { - "example": "概", - "reading": "ガイ", - "meaning": "appearance, look, aspect, strong spirit, mettle" - }, - { - "example": "概算", - "reading": "ガイサン", - "meaning": "approximation, rough estimate, ballpark figure" - }, - { - "example": "気概", - "reading": "キガイ", - "meaning": "strong spirit, mettle, backbone, guts, fighting spirit" - }, - { - "example": "梗概", - "reading": "コウガイ", - "meaning": "outline, summary, epitome" - } - ], - "kunyomiExamples": [ - { - "example": "概ね", - "reading": "おおむね", - "meaning": "in general, generally, mostly, roughly, largely, mainly, on the whole, by and large, gist, point, main idea" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "牙", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27010_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06982.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6982.gif", - "uri": "http://jisho.org/search/%E6%A6%82%23kanji" - }, - { - "query": "骸", - "found": true, - "taughtIn": "junior high", - "strokeCount": 16, - "meaning": "bone, body, corpse", - "kunyomi": [ - "むくろ" - ], - "onyomi": [ - "ガイ", - "カイ" - ], - "onyomiExamples": [ - { - "example": "骸骨", - "reading": "ガイコツ", - "meaning": "skeleton" - }, - { - "example": "骸炭", - "reading": "ガイタン", - "meaning": "coke (carbon fuel)" - }, - { - "example": "死骸", - "reading": "シガイ", - "meaning": "(dead) body, corpse, carcass, remains" - }, - { - "example": "形骸", - "reading": "ケイガイ", - "meaning": "ruin, wreck, mere skeleton, framework" - } - ], - "kunyomiExamples": [ - { - "example": "躯", - "reading": "むくろ", - "meaning": "(dead) body, corpse" - } - ], - "radical": { - "symbol": "骨", - "meaning": "bone" - }, - "parts": [ - "ノ", - "丶", - "亠", - "人", - "冂", - "冖", - "月", - "骨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39608_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ab8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ab8.gif", - "uri": "http://jisho.org/search/%E9%AA%B8%23kanji" - }, - { - "query": "垣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1539", - "strokeCount": 9, - "meaning": "hedge, fence, wall", - "kunyomi": [ - "かき" - ], - "onyomi": [ - "エン" - ], - "onyomiExamples": [ - { - "example": "垣牆", - "reading": "エンショウ", - "meaning": "hedge, fence" - }, - { - "example": "紫微垣", - "reading": "シビエン", - "meaning": "Purple Forbidden Enclosure (group of constellations in the northern sky associated with the emperor)" - } - ], - "kunyomiExamples": [ - { - "example": "垣", - "reading": "かき", - "meaning": "fence, hedge, barrier, wall, railing" - }, - { - "example": "垣根", - "reading": "かきね", - "meaning": "hedge, fence, border, limit" - }, - { - "example": "築垣", - "reading": "ついがき", - "meaning": "mud wall with a roof" - }, - { - "example": "岩垣", - "reading": "いわかき", - "meaning": "stone wall, natural stone wall" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "一", - "土", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22435_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057a3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57a3.gif", - "uri": "http://jisho.org/search/%E5%9E%A3%23kanji" - }, - { - "query": "柿", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1745", - "strokeCount": 9, - "meaning": "persimmon", - "kunyomi": [ - "かき" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "熟柿", - "reading": "ジュクシ", - "meaning": "ripe persimmon" - } - ], - "kunyomiExamples": [ - { - "example": "柿", - "reading": "かき", - "meaning": "kaki, Japanese persimmon (Diospyros kaki)" - }, - { - "example": "柿色", - "reading": "かきいろ", - "meaning": "reddish-brown, yellowish-brown" - }, - { - "example": "筆柿", - "reading": "ふでがき", - "meaning": "fudegaki (variety of sweet Japanese persimmon)" - }, - { - "example": "ピー柿", - "reading": "ピーかき", - "meaning": "mix of peanuts and spicy baked or fried mochi chips in the shape of kaki (Japanese persimmon) seeds" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "亠", - "冂", - "巾", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26623_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067ff.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67ff.gif", - "uri": "http://jisho.org/search/%E6%9F%BF%23kanji" - }, - { - "query": "核", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "475", - "strokeCount": 10, - "meaning": "nucleus, core, kernel", - "kunyomi": [], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "核", - "reading": "カク", - "meaning": "stone (of a fruit), pit, pip, core (of an organization, team, etc.), nucleus, heart, nuclear weapons, nucleus (of an atom), nucleus (of a cell), condensation nucleus, (planetary) core, ring (in a cyclic compound), kernel, core, nucleus (of a cultured pearl)" - }, - { - "example": "核家族", - "reading": "カクカゾク", - "meaning": "nuclear family" - }, - { - "example": "中核", - "reading": "チュウカク", - "meaning": "kernel, core, nucleus, center, centre" - }, - { - "example": "放射性同位核", - "reading": "ホウシャセイドウイカク", - "meaning": "radioisotope" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "丶", - "亠", - "人", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26680_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06838.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6838.gif", - "uri": "http://jisho.org/search/%E6%A0%B8%23kanji" - }, - { - "query": "殻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1892", - "strokeCount": 11, - "meaning": "husk, nut shell", - "kunyomi": [ - "から", - "がら" - ], - "onyomi": [ - "カク", - "コク", - "バイ" - ], - "onyomiExamples": [ - { - "example": "殻", - "reading": "カク", - "meaning": "shell (e.g. electron shell)" - }, - { - "example": "殻構造", - "reading": "カクコウゾウ", - "meaning": "shell structure" - }, - { - "example": "地殻", - "reading": "チカク", - "meaning": "(Earth's) crust" - }, - { - "example": "介殻", - "reading": "カイカク", - "meaning": "sea shell" - }, - { - "example": "枸橘", - "reading": "カラタチ", - "meaning": "trifoliate orange (Poncirus trifoliata), hardy orange" - }, - { - "example": "船殻", - "reading": "センコク", - "meaning": "hull" - } - ], - "kunyomiExamples": [ - { - "example": "殻", - "reading": "から", - "meaning": "shell, husk, hull, pod, chaff" - }, - { - "example": "殻竿", - "reading": "からざお", - "meaning": "flail (for threshing grain)" - }, - { - "example": "雪花菜", - "reading": "おから", - "meaning": "okara, soy pulp, tofu dregs, edible pulp separated from soybean milk in the production of tofu" - }, - { - "example": "もぬけの殻", - "reading": "もぬけのから", - "meaning": "completely empty (of a residence, etc.), vacant, deserted, body from which the soul has left, corpse, shed skin (of a snake, insect, etc.)" - }, - { - "example": "殻", - "reading": "がら", - "meaning": "chicken bones (e.g. for soup), chicken carcass, poor-quality coke (coal), left-overs, remnants" - }, - { - "example": "灰殻", - "reading": "はいがら", - "meaning": "ashes" - }, - { - "example": "燃え殻", - "reading": "もえがら", - "meaning": "embers, cinders, burnt residue, combustion residue" - } - ], - "radical": { - "symbol": "殳", - "meaning": "weapon, lance" - }, - "parts": [ - "冖", - "几", - "又", - "士", - "殳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27579_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bbb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bbb.gif", - "uri": "http://jisho.org/search/%E6%AE%BB%23kanji" - }, - { - "query": "郭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1670", - "strokeCount": 11, - "meaning": "enclosure, quarters, fortification, red-light district", - "kunyomi": [ - "くるわ" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "廓", - "reading": "クルワ", - "meaning": "district, quarter, enclosure, area enclosed by earthwork, red-light district, wide and empty" - }, - { - "example": "廓清", - "reading": "カクセイ", - "meaning": "purification, cleaning up, purging" - }, - { - "example": "外郭", - "reading": "ガイカク", - "meaning": "outer wall (e.g. castle), outer block (enclosure), outline, contour" - }, - { - "example": "遊郭", - "reading": "ユウカク", - "meaning": "(licensed) red light district" - } - ], - "kunyomiExamples": [ - { - "example": "廓", - "reading": "くるわ", - "meaning": "district, quarter, enclosure, area enclosed by earthwork, red-light district, wide and empty" - }, - { - "example": "郭言葉", - "reading": "くるわことば", - "meaning": "sociolect or secret language used by prostitutes in red-light districts (Edo period), vulgar words used by prostitutes (Edo period)" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "亅", - "亠", - "口", - "子", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37101_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90ed.gif", - "uri": "http://jisho.org/search/%E9%83%AD%23kanji" - }, - { - "query": "較", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1172", - "strokeCount": 13, - "meaning": "contrast, compare", - "kunyomi": [ - "くら.べる" - ], - "onyomi": [ - "カク", - "コウ" - ], - "onyomiExamples": [ - { - "example": "較差", - "reading": "カクサ", - "meaning": "range" - }, - { - "example": "較優位論", - "reading": "カクユウイロン", - "meaning": "theory of comparative advantage" - }, - { - "example": "国際比較", - "reading": "コクサイヒカク", - "meaning": "international comparison, country-by-country comparison" - }, - { - "example": "直接比較", - "reading": "チョクセツヒカク", - "meaning": "direct comparison" - }, - { - "example": "校正", - "reading": "コウセイ", - "meaning": "proofreading, correction of press, calibration" - }, - { - "example": "較量", - "reading": "コウリョウ", - "meaning": "comparison" - } - ], - "kunyomiExamples": [ - { - "example": "比べる", - "reading": "くらべる", - "meaning": "to compare, to make a comparison, to compete, to vie" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "亠", - "父", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36611_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f03.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f03.gif", - "uri": "http://jisho.org/search/%E8%BC%83%23kanji" - }, - { - "query": "隔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1382", - "strokeCount": 13, - "meaning": "isolate, alternate, distance, separate, gulf", - "kunyomi": [ - "へだ.てる", - "へだ.たる" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "隔", - "reading": "カク", - "meaning": "every other, second, alternate" - }, - { - "example": "隔月", - "reading": "カクゲツ", - "meaning": "every second month, every other month" - }, - { - "example": "遠隔", - "reading": "エンカク", - "meaning": "distant, remote, isolated" - }, - { - "example": "縦隔", - "reading": "ジュウカク", - "meaning": "mediastinum" - } - ], - "kunyomiExamples": [ - { - "example": "隔てる", - "reading": "へだてる", - "meaning": "to separate (by distance, time, etc.), to isolate, to partition, to divide, to interpose, to have between, to alienate, to estrange" - }, - { - "example": "隔たる", - "reading": "へだたる", - "meaning": "to be distant" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "一", - "儿", - "冂", - "口", - "阡", - "鬲" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38548_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09694.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9694.gif", - "uri": "http://jisho.org/search/%E9%9A%94%23kanji" - }, - { - "query": "獲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "964", - "strokeCount": 16, - "meaning": "seize, get, find, earn, acquire, can, may, able to", - "kunyomi": [ - "え.る" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "獲得", - "reading": "カクトク", - "meaning": "acquisition, possession" - }, - { - "example": "獲得形質", - "reading": "カクトクケイシツ", - "meaning": "acquired characteristics (as opposed to inherited)" - }, - { - "example": "乱獲", - "reading": "ランカク", - "meaning": "excessive fishing, overfishing, overhunting, excessive taking" - }, - { - "example": "収獲", - "reading": "シュウカク", - "meaning": "catch (fishing), bag (hunting), haul" - } - ], - "kunyomiExamples": [ - { - "example": "得る", - "reading": "える", - "meaning": "to get, to earn, to acquire, to procure, to gain, to secure, to attain, to obtain, to win, to understand, to comprehend, to receive something undesirable (e.g. a punishment), to get (ill), to be able to ..., can ..." - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "又", - "犯", - "艾", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29554_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07372.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7372.gif", - "uri": "http://jisho.org/search/%E7%8D%B2%23kanji" - }, - { - "query": "嚇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2141", - "strokeCount": 17, - "meaning": "menacing, dignity, majesty, threaten", - "kunyomi": [ - "おど.す" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "赫々", - "reading": "カクカク", - "meaning": "brilliant, bright, glorious" - }, - { - "example": "嚇す", - "reading": "カクス", - "meaning": "to threaten, to menace" - }, - { - "example": "威嚇", - "reading": "イカク", - "meaning": "threat, intimidation, menace" - }, - { - "example": "恐嚇", - "reading": "キョウカク", - "meaning": "intimidation, threat" - } - ], - "kunyomiExamples": [ - { - "example": "脅す", - "reading": "おどす", - "meaning": "to threaten, to menace, to frighten (into doing)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "土", - "赤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05687.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5687.gif", - "uri": "http://jisho.org/search/%E5%9A%87%23kanji" - }, - { - "query": "穫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1642", - "strokeCount": 18, - "meaning": "harvest, reap", - "kunyomi": [], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "規模に関する収穫", - "reading": "キボニカンスルシュウカク", - "meaning": "returns to scale" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "又", - "禾", - "艾", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31339_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a6b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a6b.gif", - "uri": "http://jisho.org/search/%E7%A9%AB%23kanji" - }, - { - "query": "岳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1334", - "strokeCount": 8, - "meaning": "point, peak, mountain", - "kunyomi": [ - "たけ" - ], - "onyomi": [ - "ガク" - ], - "onyomiExamples": [ - { - "example": "岳人", - "reading": "ガクジン", - "meaning": "alpinist, mountaineer" - }, - { - "example": "岳神", - "reading": "ガクジン", - "meaning": "mountain god" - }, - { - "example": "富岳", - "reading": "フガク", - "meaning": "Mount Fuji, Mt. Fuji" - } - ], - "kunyomiExamples": [ - { - "example": "岳", - "reading": "たけ", - "meaning": "peak, mountain" - }, - { - "example": "岳烏", - "reading": "だけがらす", - "meaning": "spotted nutcracker (Nucifraga caryocatactes)" - }, - { - "example": "御嶽", - "reading": "みたけ", - "meaning": "large, high mountain" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "一", - "山", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23731_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05cb3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5cb3.gif", - "uri": "http://jisho.org/search/%E5%B2%B3%23kanji" - }, - { - "query": "顎", - "found": true, - "taughtIn": "junior high", - "strokeCount": 18, - "meaning": "jaw, chin, gill", - "kunyomi": [ - "あご", - "あぎと" - ], - "onyomi": [ - "ガク" - ], - "onyomiExamples": [ - { - "example": "顎", - "reading": "アゴ", - "meaning": "jaw, chin, barb (of a fishhook)" - }, - { - "example": "顎関節", - "reading": "ガクカンセツ", - "meaning": "jaw joint, temporomandibular joint, TMJ" - }, - { - "example": "上顎", - "reading": "ウワアゴ", - "meaning": "upper jaw, palate" - }, - { - "example": "下顎", - "reading": "シタアゴ", - "meaning": "lower jaw, mandible" - } - ], - "kunyomiExamples": [ - { - "example": "顎", - "reading": "あご", - "meaning": "jaw, chin, barb (of a fishhook)" - }, - { - "example": "顎足付き", - "reading": "あごあしつき", - "meaning": "paid expenses (meals and transport)" - }, - { - "example": "二重顎", - "reading": "にじゅうあご", - "meaning": "double chin" - }, - { - "example": "下顎", - "reading": "したあご", - "meaning": "lower jaw, mandible" - }, - { - "example": "顎門", - "reading": "あぎと", - "meaning": "chin, jaw, gills, branchia" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "二", - "勹", - "口", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38990_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0984e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/984e.gif", - "uri": "http://jisho.org/search/%E9%A1%8E%23kanji" - }, - { - "query": "掛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1027", - "strokeCount": 11, - "meaning": "hang, suspend, depend, arrive at, tax, pour", - "kunyomi": [ - "か.ける", - "-か.ける", - "か.け", - "-か.け", - "-が.け", - "か.かる", - "-か.かる", - "-が.かる", - "か.かり", - "-が.かり", - "かかり", - "-がかり" - ], - "onyomi": [ - "カイ", - "ケイ" - ], - "onyomiExamples": [ - { - "example": "掛留", - "reading": "ケイリュウ", - "meaning": "music suspension" - } - ], - "kunyomiExamples": [ - { - "example": "掛ける", - "reading": "かける", - "meaning": "to hang up (e.g. a coat, a picture on the wall), to let hang, to suspend (from), to hoist (e.g. sail), to raise (e.g. flag), to put on (e.g. a blanket), to put on top of, to cover, to lay, to spread, to put on (glasses, etc.), to wear (a necklace, etc.), to make (a call), to spend (time, money), to expend, to use, to pour (liquid) onto, to sprinkle (powder or spices) onto, to splash, to throw (e.g. water) onto, to turn on (an engine, radio, etc.), to set (a dial, an alarm clock, etc.), to put on (a DVD, a song, etc.), to cause (somebody inconvenience, trouble, etc.), to burden (someone), to impose, to multiply (arithmetic operation), to secure (e.g. lock), to take a seat, to sit, to rest (something on something else), to support (something on something else), to bind, to wager, to bet, to risk, to stake, to gamble, to put an effect (spell, anaesthetic, etc.) on, to hold (a play, festival, etc.), to hold an emotion for (pity, hope, etc.), to argue (in court), to deliberate (in a meeting), to present (e.g. idea to a conference, etc.), to increase further, to catch (in a trap, etc.), to set atop, to erect (a makeshift building), to apply (insurance), to pun (on a word), to use (a word) as a pivot word, to play on words, to be partway doing ..., to begin (but not complete) ..., to be about to ..., to address (someone), to direct (something, to someone), to do (something, to someone)" - }, - { - "example": "掛け", - "reading": "かけ", - "meaning": "credit, money owed on an account, bill, hot noodles in broth, proportion (of wholesale price, as tenths of list price), in the midst of, rest, rack, hanger" - }, - { - "example": "掛け金", - "reading": "かけきん", - "meaning": "installment, instalment, premium, bill" - }, - { - "example": "打ち掛け", - "reading": "うちかけ", - "meaning": "women's bridal robe with trailing skirts worn over a kimono, ending play for the day, leaving a game unfinished (esp. Go)" - }, - { - "example": "足掛け", - "reading": "あしかけ", - "meaning": "leg trip (in sumo, judo, etc.), foothold, pedal, indicates a consecutive period of time incl. incomplete days, etc. at the ends" - }, - { - "example": "掛かる", - "reading": "かかる", - "meaning": "to take (a resource, e.g. time or money), to hang, to come into view, to arrive, to come under (a contract, a tax), to start (engines, motors), to attend, to deal with, to handle, to have started to, to be on the verge of, to overlap (e.g. information in a manual), to cover, to (come) at, to be fastened, to be covered (e.g. with dust, a table-cloth, etc.), to be caught in, to get a call, to depend on" - }, - { - "example": "掛かり", - "reading": "かかり", - "meaning": "starting, engaging, expenses, costs, attack (esp. a corner approach in the game of go), barb, charge, duty, person in charge, official, clerk" - }, - { - "example": "係長", - "reading": "かかりちょう", - "meaning": "subsection head, assistant manager, chief clerk" - }, - { - "example": "掛かり", - "reading": "かかり", - "meaning": "starting, engaging, expenses, costs, attack (esp. a corner approach in the game of go), barb, charge, duty, person in charge, official, clerk" - }, - { - "example": "係長", - "reading": "かかりちょう", - "meaning": "subsection head, assistant manager, chief clerk" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "卜", - "土", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25499_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0639b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/639b.gif", - "uri": "http://jisho.org/search/%E6%8E%9B%23kanji" - }, - { - "query": "括", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1026", - "strokeCount": 9, - "meaning": "fasten, tie up, arrest, constrict", - "kunyomi": [ - "くく.る" - ], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "括約筋", - "reading": "カツヤクキン", - "meaning": "sphincter, sphincter muscle, constrictor" - }, - { - "example": "総括", - "reading": "ソウカツ", - "meaning": "summarization, summary, generalization, review (by labour or political movements of past activities, results, etc.)" - }, - { - "example": "概括", - "reading": "ガイカツ", - "meaning": "summary, generalization, generalisation" - } - ], - "kunyomiExamples": [ - { - "example": "括る", - "reading": "くくる", - "meaning": "to tie up, to tie together, to bind, to bundle, to fasten, to hang (oneself), to summarize, to put (it all) together, to consolidate, to estimate, to expect, to tie-dye, to detain, to check, to restrain" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "十", - "口", - "扎", - "舌" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25324_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062ec.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62ec.gif", - "uri": "http://jisho.org/search/%E6%8B%AC%23kanji" - }, - { - "query": "喝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1858", - "strokeCount": 11, - "meaning": "hoarse, scold", - "kunyomi": [], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "喝", - "reading": "カツ", - "meaning": "exclamation used to scold practitioners (in Zen), scolding or threatening with a shout" - }, - { - "example": "カツ上げ", - "reading": "カツアゲ", - "meaning": "extortion, shakedown" - }, - { - "example": "恫喝", - "reading": "ドウカツ", - "meaning": "intimidation, threat, bluster" - }, - { - "example": "威喝", - "reading": "イカツ", - "meaning": "threatening" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "勹", - "匕", - "口", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21917_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0559d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/559d.gif", - "uri": "http://jisho.org/search/%E5%96%9D%23kanji" - }, - { - "query": "渇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1944", - "strokeCount": 11, - "meaning": "thirst, dry up, parch", - "kunyomi": [ - "かわ.く" - ], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "渇", - "reading": "カツ", - "meaning": "thirst" - }, - { - "example": "渇望", - "reading": "カツボウ", - "meaning": "craving, longing, thirsting" - }, - { - "example": "枯渇", - "reading": "コカツ", - "meaning": "drying up, running dry, running out, being exhausted, being drained" - }, - { - "example": "口渇", - "reading": "コウカツ", - "meaning": "thirst, dry mouth, -dipsia" - } - ], - "kunyomiExamples": [ - { - "example": "渇く", - "reading": "かわく", - "meaning": "to be thirsty, to feel thirsty, to thirst for, to crave" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "勹", - "匕", - "日", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28167_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e07.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e07.gif", - "uri": "http://jisho.org/search/%E6%B8%87%23kanji" - }, - { - "query": "葛", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1547", - "strokeCount": 11, - "meaning": "arrowroot, kudzu", - "kunyomi": [ - "つづら", - "くず" - ], - "onyomi": [ - "カツ", - "カチ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "葛", - "reading": "くず", - "meaning": "kudzu (Pueraria montana), Japanese arrowroot, Chinese moonseed (Sinomenium acutum)" - }, - { - "example": "葛籠", - "reading": "つづら", - "meaning": "wicker clothes hamper" - }, - { - "example": "熊葛", - "reading": "くまつづら", - "meaning": "common vervain (Verbena officinalis), common verbena" - }, - { - "example": "葛", - "reading": "くず", - "meaning": "kudzu (Pueraria montana), Japanese arrowroot, Chinese moonseed (Sinomenium acutum)" - }, - { - "example": "葛餡", - "reading": "くずあん", - "meaning": "kudzu sauce" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "勹", - "匕", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33883_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0845b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/845b.gif", - "uri": "http://jisho.org/search/%E8%91%9B%23kanji" - }, - { - "query": "滑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1238", - "strokeCount": 13, - "meaning": "slippery, slide, slip, fail exam", - "kunyomi": [ - "すべ.る", - "なめ.らか" - ], - "onyomi": [ - "カツ", - "コツ" - ], - "onyomiExamples": [ - { - "example": "滑落", - "reading": "カツラク", - "meaning": "slipping down, avalanche" - }, - { - "example": "滑液", - "reading": "カツエキ", - "meaning": "synovial fluid" - }, - { - "example": "平滑", - "reading": "ヘイカツ", - "meaning": "smooth, even, level, flat" - }, - { - "example": "粘滑", - "reading": "ネンカツ", - "meaning": "mucilaginous, demulcent" - } - ], - "kunyomiExamples": [ - { - "example": "滑る", - "reading": "すべる", - "meaning": "to glide, to slide (e.g. on skis), to slip, to fail (an examination), to bomb (when telling a joke), to drop, to go down, to come down, to fall (e.g. in status)" - }, - { - "example": "滑らか", - "reading": "なめらか", - "meaning": "smooth (of a surface), glassy, velvety, soft, smooth (of an action, proceedings, etc.), fluent (speech), fluid, trouble-free, continuously differentiable" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "冂", - "冖", - "月", - "汁", - "骨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28369_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ed1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ed1.gif", - "uri": "http://jisho.org/search/%E6%BB%91%23kanji" - }, - { - "query": "褐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2186", - "strokeCount": 13, - "meaning": "brown, woollen kimono", - "kunyomi": [], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "褐", - "reading": "カチ", - "meaning": "dark indigo (almost black), coarse cloth" - }, - { - "example": "褐色", - "reading": "カチイロ", - "meaning": "dark indigo (almost black)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "初", - "勹", - "匕", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35088_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08910.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8910.gif", - "uri": "http://jisho.org/search/%E8%A4%90%23kanji" - }, - { - "query": "轄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1771", - "strokeCount": 17, - "meaning": "control, wedge", - "kunyomi": [ - "くさび" - ], - "onyomi": [ - "カツ" - ], - "onyomiExamples": [ - { - "example": "直轄", - "reading": "チョッカツ", - "meaning": "direct control" - }, - { - "example": "車轄", - "reading": "シャカツ", - "meaning": "linchpin" - } - ], - "kunyomiExamples": [ - { - "example": "楔", - "reading": "くさび", - "meaning": "wedge, chock, linchpin, lynchpin, tie, bond" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "二", - "亠", - "口", - "土", - "宀", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36676_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f44.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f44.gif", - "uri": "http://jisho.org/search/%E8%BD%84%23kanji" - }, - { - "query": "且", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 5, - "meaning": "moreover, also, furthermore", - "kunyomi": [ - "か.つ" - ], - "onyomi": [ - "ショ", - "ソ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "仮初め", - "reading": "カリソメ", - "meaning": "temporary, transient, trifling, slight, negligent" - }, - { - "example": "暫且", - "reading": "ザンショ", - "meaning": "short while" - } - ], - "kunyomiExamples": [ - { - "example": "且つ", - "reading": "かつ", - "meaning": "and, moreover, besides, as well as, and on top of that, at the same time" - }, - { - "example": "且つ又", - "reading": "かつまた", - "meaning": "besides, furthermore, moreover" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19988_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e14.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e14.gif", - "uri": "http://jisho.org/search/%E4%B8%94%23kanji" - }, - { - "query": "釜", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1761", - "strokeCount": 10, - "meaning": "kettle, cauldron, iron pot", - "kunyomi": [ - "かま" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "釜山", - "reading": "プサン", - "meaning": "Busan (South Korea), Pusan" - }, - { - "example": "釜中の魚", - "reading": "フチュウノウオ", - "meaning": "fish in a pot about to be boiled, person who is blissfully unaware of deadly danger" - } - ], - "kunyomiExamples": [ - { - "example": "釜", - "reading": "かま", - "meaning": "iron pot, kettle" - }, - { - "example": "釜揚げうどん", - "reading": "かまあげうどん", - "meaning": "straight-from-the-pot udon, udon noodles pulled straight from the pot and served in the hot water used for boiling (traditionally without being soaked in cold water), eaten by dipping in sauce" - }, - { - "example": "御釜", - "reading": "おかま", - "meaning": "pot, volcanic crater, (one's) buttocks, male homosexual, effeminate man, male transvestite" - }, - { - "example": "一つ釜", - "reading": "ひとつかま", - "meaning": "one or the same pot, eating or living together" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ノ", - "一", - "丶", - "干", - "并", - "父", - "王", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37340_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091dc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91dc.gif", - "uri": "http://jisho.org/search/%E9%87%9C%23kanji" - }, - { - "query": "鎌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1587", - "strokeCount": 18, - "meaning": "sickle, scythe, trick", - "kunyomi": [ - "かま" - ], - "onyomi": [ - "レン", - "ケン" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "鎌", - "reading": "かま", - "meaning": "sickle, leading question, trick question, sickle-and-chain (weapon), spear with curved cross-blades, gooseneck tenon and mortise joint, noisiness, part of a fish around the gills" - }, - { - "example": "鎌倉", - "reading": "かまくら", - "meaning": "Kamakura (city)" - }, - { - "example": "大鎌", - "reading": "おおがま", - "meaning": "scythe" - }, - { - "example": "大脳鎌", - "reading": "だいのうかま", - "meaning": "falx cerebri, cerebral falx" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ノ", - "ハ", - "ヨ", - "丶", - "并", - "王", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37772_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0938c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/938c.gif", - "uri": "http://jisho.org/search/%E9%8E%8C%23kanji" - }, - { - "query": "刈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1738", - "strokeCount": 4, - "meaning": "reap, cut, clip, trim, prune", - "kunyomi": [ - "か.る" - ], - "onyomi": [ - "ガイ", - "カイ" - ], - "onyomiExamples": [ - { - "example": "刈除", - "reading": "ガイジョ", - "meaning": "removal, cut off, mowing" - }, - { - "example": "刈除", - "reading": "ガイジョ", - "meaning": "removal, cut off, mowing" - } - ], - "kunyomiExamples": [ - { - "example": "刈る", - "reading": "かる", - "meaning": "to cut (grass, hair, etc.), to mow, to clip, to trim, to prune, to shear, to reap, to harvest" - }, - { - "example": "刈萱", - "reading": "かるかや", - "meaning": "Themeda triandra var. japonica (variety of kangaroo grass), Cymbopogon tortilis var. goeringii (variety of grass closely related to lemongrass), thatching grass, thatching sedge" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21000_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05208.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5208.gif", - "uri": "http://jisho.org/search/%E5%88%88%23kanji" - }, - { - "query": "甘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1248", - "strokeCount": 5, - "meaning": "sweet, coax, pamper, be content, sugary", - "kunyomi": [ - "あま.い", - "あま.える", - "あま.やかす", - "うま.い" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "さつま芋", - "reading": "サツマイモ", - "meaning": "sweet potato (Ipomoea batatas)" - }, - { - "example": "甘言", - "reading": "カンゲン", - "meaning": "sweet words, smooth talk, cajolery, flattery, sycophancy" - } - ], - "kunyomiExamples": [ - { - "example": "甘い", - "reading": "あまい", - "meaning": "sweet-tasting, sweet, sugary, sugared, fragrant (smelling), sweet (music), lightly salted, light in salt, not spicy, naive, overly optimistic, soft on, generous, indulgent, easy-going, lenient, half-hearted, not finished properly, insufficient, not satisfactory, inadequate, loose, mild, tempting, enticing, luring" - }, - { - "example": "甘い顔をする", - "reading": "あまいかおをする", - "meaning": "to go easy on somebody, to be easygoing, to be lenient" - }, - { - "example": "甘える", - "reading": "あまえる", - "meaning": "to behave like a spoiled child, to fawn on, to take advantage of, to presume upon (e.g. another's benevolence), to depend on" - }, - { - "example": "甘やかす", - "reading": "あまやかす", - "meaning": "to pamper, to spoil" - }, - { - "example": "上手い", - "reading": "うまい", - "meaning": "skillful, skilful, clever, expert, wise, successful, delicious, appetizing, appetising, tasty, fortunate, splendid, promising" - }, - { - "example": "うまい話", - "reading": "うまいはなし", - "meaning": "too-good-to-be-true offers (e.g. scams and frauds), too-good-to-be-true stories" - } - ], - "radical": { - "symbol": "甘", - "meaning": "sweet" - }, - "parts": [ - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29976_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07518.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7518.gif", - "uri": "http://jisho.org/search/%E7%94%98%23kanji" - }, - { - "query": "汗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1502", - "strokeCount": 6, - "meaning": "sweat, perspire", - "kunyomi": [ - "あせ" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "汗", - "reading": "カン", - "meaning": "khan (medieval ruler of a Tatary tribe)" - }, - { - "example": "汗顔", - "reading": "カンガン", - "meaning": "ashamed" - }, - { - "example": "成吉思汗", - "reading": "ジンギスカン", - "meaning": "jingisukan, grilled mutton and vegetable dish, slotted dome cast iron grill (used for jingisukan)" - }, - { - "example": "大汗", - "reading": "タイカン", - "meaning": "Great Khan, Grand Khan" - } - ], - "kunyomiExamples": [ - { - "example": "汗", - "reading": "あせ", - "meaning": "sweat, perspiration, moisture, condensation, gulp, oops" - }, - { - "example": "汗だく", - "reading": "あせだく", - "meaning": "dripping with sweat, bathed in perspiration" - }, - { - "example": "滝汗", - "reading": "たきあせ", - "meaning": "profuse sweating" - }, - { - "example": "手汗", - "reading": "てあせ", - "meaning": "palm sweat" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "干", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27735_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c57.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c57.gif", - "uri": "http://jisho.org/search/%E6%B1%97%23kanji" - }, - { - "query": "缶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1543", - "strokeCount": 6, - "meaning": "tin can, container, jar radical (no. 121)", - "kunyomi": [ - "かま" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "缶", - "reading": "カン", - "meaning": "can, tin, canned food" - }, - { - "example": "缶詰", - "reading": "カンヅメ", - "meaning": "canned food, tinned food, confining someone (e.g. so they can concentrate on work), being stuck in a confined space" - }, - { - "example": "ドラム缶", - "reading": "ドラムカン", - "meaning": "drum (e.g. oil, gasoline), metal barrel" - }, - { - "example": "開缶", - "reading": "カイカン", - "meaning": "opening a can" - } - ], - "kunyomiExamples": [ - { - "example": "缶", - "reading": "かま", - "meaning": "boiler" - } - ], - "radical": { - "symbol": "缶", - "meaning": "jar" - }, - "parts": [ - "凵", - "山", - "缶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32566_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f36.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f36.gif", - "uri": "http://jisho.org/search/%E7%BC%B6%23kanji" - }, - { - "query": "肝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1118", - "strokeCount": 7, - "meaning": "liver, pluck, nerve, chutzpah", - "kunyomi": [ - "きも" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "肝硬変", - "reading": "カンコウヘン", - "meaning": "cirrhosis of the liver" - }, - { - "example": "肝炎", - "reading": "カンエン", - "meaning": "hepatitis" - }, - { - "example": "肺肝", - "reading": "ハイカン", - "meaning": "lungs and livers, depths of one's heart, innermost heart" - }, - { - "example": "脂肪肝", - "reading": "シボウカン", - "meaning": "fatty liver" - } - ], - "kunyomiExamples": [ - { - "example": "肝", - "reading": "きも", - "meaning": "liver, innards, courage, spirit, pluck, guts, crux, essential point" - }, - { - "example": "肝いり", - "reading": "きもいり", - "meaning": "good offices, auspices, sponsorship, help, assistance, village official (during the Edo period)" - }, - { - "example": "群肝", - "reading": "むらぎも", - "meaning": "internal organs, entrails" - }, - { - "example": "あん肝", - "reading": "あんきも", - "meaning": "monkfish liver, goosefish liver" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "干", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32925_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0809d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/809d.gif", - "uri": "http://jisho.org/search/%E8%82%9D%23kanji" - }, - { - "query": "冠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1503", - "strokeCount": 9, - "meaning": "crown, best, peerless", - "kunyomi": [ - "かんむり" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "冠", - "reading": "カンムリ", - "meaning": "traditional cap worn by Shinto clergy and courtiers, crown, diadem, coronet, top kanji radical, first verse of a haikai, etc., best, peerless, first, name, title, named sponsorship of a program, event, team, etc." - }, - { - "example": "冠婚葬祭", - "reading": "カンコンソウサイ", - "meaning": "important ceremonial occasions in family relationships" - }, - { - "example": "宝冠", - "reading": "ホウカン", - "meaning": "diadem, jeweled crown" - }, - { - "example": "月桂冠", - "reading": "ゲッケイカン", - "meaning": "laurel wreath" - } - ], - "kunyomiExamples": [ - { - "example": "冠", - "reading": "かんむり", - "meaning": "traditional cap worn by Shinto clergy and courtiers, crown, diadem, coronet, top kanji radical, first verse of a haikai, etc., best, peerless, first, name, title, named sponsorship of a program, event, team, etc." - }, - { - "example": "冠海雀", - "reading": "かんむりうみすずめ", - "meaning": "Japanese murrelet (Synthliboramphus wumizusume), crested murrelet" - }, - { - "example": "初冠", - "reading": "ういこうぶり", - "meaning": "crowning a boy for the first time at a coming-of-age ceremony, noh cap with a rolled or drooping tail (indicative of nobility)" - }, - { - "example": "老冠", - "reading": "おいかんむり", - "meaning": "kanji \"old\" radical at top" - } - ], - "radical": { - "symbol": "冖", - "meaning": "cover" - }, - "parts": [ - "儿", - "元", - "冖", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20896_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051a0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51a0.gif", - "uri": "http://jisho.org/search/%E5%86%A0%23kanji" - }, - { - "query": "陥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1154", - "strokeCount": 10, - "meaning": "collapse, fall into, cave in, fall (castle), slide into", - "kunyomi": [ - "おちい.る", - "おとしい.れる" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "陥落", - "reading": "カンラク", - "meaning": "fall, sinking, surrender, capitulation" - }, - { - "example": "陥没", - "reading": "カンボツ", - "meaning": "cave-in, collapse, sinking, depression (e.g. of the skull), subsidence" - }, - { - "example": "擠陥", - "reading": "セイカン", - "meaning": "tempting into crime" - }, - { - "example": "注意欠陥", - "reading": "チュウイケッカン", - "meaning": "attention deficit" - } - ], - "kunyomiExamples": [ - { - "example": "陥る", - "reading": "おちいる", - "meaning": "to fall into (e.g. a hole), to fall into (chaos, depression, dilemma, illness, etc.), to fall into (a trap, etc.), to fall, to surrender, to capitulate" - }, - { - "example": "陥れる", - "reading": "おとしいれる", - "meaning": "to trap (into a difficult situation), to put (in a fix), to throw (e.g. into turmoil), to trick (into doing), to lure (into a trap), to frame (for a crime), to capture (a castle, fortress, etc.), to take, to reduce, to drop (something) into" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "勹", - "日", - "阡", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38501_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09665.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9665.gif", - "uri": "http://jisho.org/search/%E9%99%A5%23kanji" - }, - { - "query": "乾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1453", - "strokeCount": 11, - "meaning": "drought, dry, dessicate, drink up, heaven, emperor", - "kunyomi": [ - "かわ.く", - "かわ.かす", - "ほ.す", - "ひ.る", - "いぬい" - ], - "onyomi": [ - "カン", - "ケン" - ], - "onyomiExamples": [ - { - "example": "乾電池", - "reading": "カンデンチ", - "meaning": "dry cell, battery" - }, - { - "example": "乾燥", - "reading": "カンソウ", - "meaning": "dryness, aridity, drying (e.g. clothes), dehydration, desiccation, insipidity" - }, - { - "example": "速乾", - "reading": "ソッカン", - "meaning": "drying quickly" - }, - { - "example": "臘乾", - "reading": "ラカン", - "meaning": "Chinese smoked and salted ham" - }, - { - "example": "乾", - "reading": "ケン", - "meaning": "qian (one of the trigrams of the I Ching: heaven, northwest)" - }, - { - "example": "乾位", - "reading": "ケンイ", - "meaning": "northwest" - } - ], - "kunyomiExamples": [ - { - "example": "乾く", - "reading": "かわく", - "meaning": "to get dry" - }, - { - "example": "乾かす", - "reading": "かわかす", - "meaning": "to dry (clothes, etc.), to desiccate" - }, - { - "example": "干す", - "reading": "ほす", - "meaning": "to air, to dry, to desiccate, to drain (off), to drink up, to deprive of a role, job, etc." - }, - { - "example": "戌亥", - "reading": "いぬい", - "meaning": "northwest" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "ノ", - "一", - "乙", - "乞", - "人", - "十", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20094_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e7e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e7e.gif", - "uri": "http://jisho.org/search/%E4%B9%BE%23kanji" - }, - { - "query": "勘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1494", - "strokeCount": 11, - "meaning": "intuition, perception, check, compare, sixth sense", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "勘", - "reading": "カン", - "meaning": "perception, intuition, the sixth sense" - }, - { - "example": "勘案", - "reading": "カンアン", - "meaning": "taking into consideration, giving consideration (to)" - }, - { - "example": "勅勘", - "reading": "チョッカン", - "meaning": "the emperor's censure" - }, - { - "example": "山勘", - "reading": "ヤマカン", - "meaning": "guesswork, speculation, hunch" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "儿", - "力", - "匚", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21208_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052d8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52d8.gif", - "uri": "http://jisho.org/search/%E5%8B%98%23kanji" - }, - { - "query": "患", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "796", - "strokeCount": 11, - "meaning": "afflicted, disease, suffer from, be ill", - "kunyomi": [ - "わずら.う" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "患者", - "reading": "カンジャ", - "meaning": "patient" - }, - { - "example": "患部", - "reading": "カンブ", - "meaning": "affected part, diseased part, wound" - }, - { - "example": "疾患", - "reading": "シッカン", - "meaning": "disease, ailment, illness" - }, - { - "example": "病患", - "reading": "ビョウカン", - "meaning": "sickness, disease" - } - ], - "kunyomiExamples": [ - { - "example": "患う", - "reading": "わずらう", - "meaning": "to be ill, to suffer from, to worry about, to be concerned about, to have trouble doing ..., to be unable to ..., to fail to ..." - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "口", - "心", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24739_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060a3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60a3.gif", - "uri": "http://jisho.org/search/%E6%82%A3%23kanji" - }, - { - "query": "貫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1156", - "strokeCount": 11, - "meaning": "pierce, 8 1/3lbs, penetrate, brace", - "kunyomi": [ - "つらぬ.く", - "ぬ.く", - "ぬき" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "貫", - "reading": "カン", - "meaning": "kan (obs. unit of weight, approx. 3.75 kg, 8.3 lb), kan (obs. unit of currency, equiv. to 1000 mon in the Edo period; col. 10 mon in the Meiji period), counter for pieces of sushi, 10 points, 12 points" - }, - { - "example": "貫通", - "reading": "カンツウ", - "meaning": "piercing, penetrating, perforating, passing through, being well versed (in something)" - }, - { - "example": "終始一貫", - "reading": "シュウシイッカン", - "meaning": "consistently, unchangingly, throughout" - }, - { - "example": "縦貫", - "reading": "ジュウカン", - "meaning": "running through, traversal" - } - ], - "kunyomiExamples": [ - { - "example": "貫く", - "reading": "つらぬく", - "meaning": "to go through, to pierce, to penetrate, to run through (e.g. a river through a city), to pass through, to stick to (opinion, principles, etc.), to carry out, to persist with, to keep (e.g. faith), to maintain (e.g. independence)" - }, - { - "example": "貫", - "reading": "ぬき", - "meaning": "crosspiece (between pillars, etc.), penetrating tie beam" - }, - { - "example": "貫き通す", - "reading": "つらぬきとおす", - "meaning": "to go through, to pierce, to penetrate, to stick to (opinion, principles, etc.), to carry out, to persist with, to keep (e.g. faith), to maintain (e.g. independence)" - }, - { - "example": "吹き抜き", - "reading": "ふきぬき", - "meaning": "stairwell, atrium, streamer, pennant" - }, - { - "example": "指貫", - "reading": "さしぬき", - "meaning": "type of hakama worn in ancient times" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "毋", - "母", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36011_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cab.gif", - "uri": "http://jisho.org/search/%E8%B2%AB%23kanji" - }, - { - "query": "喚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1120", - "strokeCount": 12, - "meaning": "yell, cry, call, scream, summon", - "kunyomi": [ - "わめ.く" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "喚問", - "reading": "カンモン", - "meaning": "summons" - }, - { - "example": "喚起", - "reading": "カンキ", - "meaning": "arousal, excitation, awakening, evocation" - }, - { - "example": "叫喚", - "reading": "キョウカン", - "meaning": "shout, scream" - }, - { - "example": "阿鼻叫喚", - "reading": "アビキョウカン", - "meaning": "agonizing cries, pandemonium, two of Buddhism's hells" - } - ], - "kunyomiExamples": [ - { - "example": "喚く", - "reading": "わめく", - "meaning": "to shout, to cry, to scream, to clamour" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "儿", - "冂", - "勹", - "口", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21914_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0559a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/559a.gif", - "uri": "http://jisho.org/search/%E5%96%9A%23kanji" - }, - { - "query": "堪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1953", - "strokeCount": 12, - "meaning": "withstand, endure, support, resist", - "kunyomi": [ - "た.える", - "たま.る", - "こら.える", - "こた.える" - ], - "onyomi": [ - "カン", - "タン" - ], - "onyomiExamples": [ - { - "example": "堪忍袋", - "reading": "カンニンブクロ", - "meaning": "one's store of patience" - }, - { - "example": "堪忍", - "reading": "カンニン", - "meaning": "patience, patient endurance, forbearance, tolerance, forgiveness, pardon" - }, - { - "example": "不堪", - "reading": "フカン", - "meaning": "incompetence" - }, - { - "example": "堪能", - "reading": "タンノウ", - "meaning": "proficient, skillful, enjoying, satisfaction, satiation, having one's fill (of)" - }, - { - "example": "堪航能力", - "reading": "タンコウノウリョク", - "meaning": "seaworthiness" - } - ], - "kunyomiExamples": [ - { - "example": "耐える", - "reading": "たえる", - "meaning": "to bear, to stand, to endure, to put up with, to support, to withstand, to resist, to brave, to be fit for, to be equal to" - }, - { - "example": "堪る", - "reading": "たまる", - "meaning": "to bear, to endure" - }, - { - "example": "堪える", - "reading": "こらえる", - "meaning": "to bear, to stand, to endure, to put up with, to restrain, to control, to keep a check on, to forgive, to put up with, to pardon" - }, - { - "example": "堪える", - "reading": "こらえる", - "meaning": "to bear, to stand, to endure, to put up with, to restrain, to control, to keep a check on, to forgive, to put up with, to pardon" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "儿", - "匚", - "土", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22570_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0582a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/582a.gif", - "uri": "http://jisho.org/search/%E5%A0%AA%23kanji" - }, - { - "query": "換", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "687", - "strokeCount": 12, - "meaning": "interchange, period, change, convert, replace, renew", - "kunyomi": [ - "か.える", - "-か.える", - "か.わる" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "換金", - "reading": "カンキン", - "meaning": "realization (of goods into money), conversion (into money), liquidation" - }, - { - "example": "換気", - "reading": "カンキ", - "meaning": "ventilation" - }, - { - "example": "互換", - "reading": "ゴカン", - "meaning": "interchange, transposition, compatible (e.g. PC)" - }, - { - "example": "代換", - "reading": "ダイカン", - "meaning": "hypallage" - } - ], - "kunyomiExamples": [ - { - "example": "換える", - "reading": "かえる", - "meaning": "to replace, to exchange, to interchange, to substitute" - }, - { - "example": "替わる", - "reading": "かわる", - "meaning": "to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "儿", - "冂", - "勹", - "大", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25563_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63db.gif", - "uri": "http://jisho.org/search/%E6%8F%9B%23kanji" - }, - { - "query": "敢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1859", - "strokeCount": 12, - "meaning": "daring, brave, bold, sad, tragic, pitiful", - "kunyomi": [ - "あ.えて", - "あ.えない", - "あ.えず" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "敢闘", - "reading": "カントウ", - "meaning": "fighting bravely" - }, - { - "example": "敢行", - "reading": "カンコウ", - "meaning": "decisive action, going through with, daring to do, carrying out" - }, - { - "example": "勇猛果敢", - "reading": "ユウモウカカン", - "meaning": "daring and resolute, having dauntless courage" - }, - { - "example": "迅速果敢", - "reading": "ジンソクカカン", - "meaning": "quick and decisive, fast and daring, swift and resolute" - } - ], - "kunyomiExamples": [ - { - "example": "敢えて", - "reading": "あえて", - "meaning": "purposely (of something needless, unexpected or seemingly counterproductive, etc.), daringly (doing something), deliberately, intentionally, not necessarily, not particularly, not especially, definitely not" - }, - { - "example": "敢え無い", - "reading": "あえない", - "meaning": "tragic" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "攵", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25954_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06562.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6562.gif", - "uri": "http://jisho.org/search/%E6%95%A2%23kanji" - }, - { - "query": "棺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2161", - "strokeCount": 12, - "meaning": "coffin, casket", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "棺", - "reading": "カン", - "meaning": "coffin, casket" - }, - { - "example": "棺桶", - "reading": "カンオケ", - "meaning": "coffin, casket" - }, - { - "example": "石棺", - "reading": "セッカン", - "meaning": "sarcophagus, stone coffin" - }, - { - "example": "納棺", - "reading": "ノウカン", - "meaning": "placing of body in coffin" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "口", - "宀", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26874_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68fa.gif", - "uri": "http://jisho.org/search/%E6%A3%BA%23kanji" - }, - { - "query": "款", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1854", - "strokeCount": 12, - "meaning": "goodwill, article, section, friendship, collusion", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "款", - "reading": "カン", - "meaning": "title, heading, article, benevolence, friendly feeling" - }, - { - "example": "歓待", - "reading": "カンタイ", - "meaning": "warm welcome, friendly reception, hospitality, entertainment" - }, - { - "example": "約款", - "reading": "ヤッカン", - "meaning": "agreement, stipulation, article, clause" - }, - { - "example": "交歓", - "reading": "コウカン", - "meaning": "exchange of courtesies (cordialities), fraternization, fraternisation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "二", - "士", - "小", - "欠", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27454_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b3e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b3e.gif", - "uri": "http://jisho.org/search/%E6%AC%BE%23kanji" - }, - { - "query": "閑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1994", - "strokeCount": 12, - "meaning": "leisure", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "閑", - "reading": "カン", - "meaning": "spare time, free time, leisure" - }, - { - "example": "閑散", - "reading": "カンサン", - "meaning": "deserted (esp. store, market, town, streets), quiet, still, hushed, empty, inactive (business, trade, etc.), slack, flat, off-season, quiet, dull, idle, free, unoccupied" - }, - { - "example": "清閑", - "reading": "セイカン", - "meaning": "peaceful, quiet, tranquility, tranquillity" - }, - { - "example": "休閑", - "reading": "キュウカン", - "meaning": "fallowing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "木", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38289_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09591.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9591.gif", - "uri": "http://jisho.org/search/%E9%96%91%23kanji" - }, - { - "query": "勧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1068", - "strokeCount": 13, - "meaning": "persuade, recommend, advise, encourage, offer", - "kunyomi": [ - "すす.める" - ], - "onyomi": [ - "カン", - "ケン" - ], - "onyomiExamples": [ - { - "example": "勧奨", - "reading": "カンショウ", - "meaning": "encouragement, stimulation" - }, - { - "example": "勧告", - "reading": "カンコク", - "meaning": "advice, counsel, remonstrance, recommendation" - } - ], - "kunyomiExamples": [ - { - "example": "勧める", - "reading": "すすめる", - "meaning": "to recommend (someone to do), to advise, to encourage, to urge, to recommend (a book, someone for a position, etc.), to suggest, to offer (a drink, cigarette, seat, etc.)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "ノ", - "乞", - "力", - "矢", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21223_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052e7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52e7.gif", - "uri": "http://jisho.org/search/%E5%8B%A7%23kanji" - }, - { - "query": "寛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1377", - "strokeCount": 13, - "meaning": "tolerant, leniency, generosity, relax, feel at home, be at ease, broadminded", - "kunyomi": [ - "くつろ.ぐ", - "ひろ.い", - "ゆる.やか" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "寛", - "reading": "カン", - "meaning": "lenient, gentle" - }, - { - "example": "寛大", - "reading": "カンダイ", - "meaning": "tolerant, generous, lenient, broad-minded, magnanimous" - }, - { - "example": "長寛", - "reading": "チョウカン", - "meaning": "Chōkan era (1163.3.29-1165.6.5)" - }, - { - "example": "寛緩", - "reading": "カンカン", - "meaning": "looking cool and collect, with an air of perfect composure" - } - ], - "kunyomiExamples": [ - { - "example": "寛ぐ", - "reading": "くつろぐ", - "meaning": "to relax, to feel at home" - }, - { - "example": "寛い", - "reading": "ひろい", - "meaning": "broadminded" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "艾", - "見" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23515_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bdb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bdb.gif", - "uri": "http://jisho.org/search/%E5%AF%9B%23kanji" - }, - { - "query": "歓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1065", - "strokeCount": 15, - "meaning": "delight, joy", - "kunyomi": [ - "よろこ.ぶ" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "歓", - "reading": "カン", - "meaning": "joy, enjoyment, delight, pleasure" - }, - { - "example": "歓喜", - "reading": "カンキ", - "meaning": "delight, great joy" - }, - { - "example": "哀歓", - "reading": "アイカン", - "meaning": "joys and sorrows, happiness and sadness" - }, - { - "example": "交歓", - "reading": "コウカン", - "meaning": "exchange of courtesies (cordialities), fraternization, fraternisation" - } - ], - "kunyomiExamples": [ - { - "example": "喜ぶ", - "reading": "よろこぶ", - "meaning": "to be delighted, to be glad, to be pleased, to congratulate, to gratefully accept" - } - ], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "乞", - "欠", - "矢", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b53.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b53.gif", - "uri": "http://jisho.org/search/%E6%AD%93%23kanji" - }, - { - "query": "監", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "408", - "strokeCount": 15, - "meaning": "oversee, official, govt office, rule, administer", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "監獄", - "reading": "カンゴク", - "meaning": "prison" - }, - { - "example": "監禁", - "reading": "カンキン", - "meaning": "confinement" - }, - { - "example": "総監", - "reading": "ソウカン", - "meaning": "inspector general, commissioner" - }, - { - "example": "収監", - "reading": "シュウカン", - "meaning": "imprisonment" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "乞", - "二", - "皿", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30435_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76e3.gif", - "uri": "http://jisho.org/search/%E7%9B%A3%23kanji" - }, - { - "query": "緩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "933", - "strokeCount": 15, - "meaning": "slacken, loosen, relax, lessen, be moderate, ease", - "kunyomi": [ - "ゆる.い", - "ゆる.やか", - "ゆる.む", - "ゆる.める" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "緩和", - "reading": "カンワ", - "meaning": "relief, mitigation, alleviation, relaxation (of restrictions, tensions, etc.), easing, softening" - }, - { - "example": "緩急", - "reading": "カンキュウ", - "meaning": "pace, tempo, slow and fast, in case of emergency" - }, - { - "example": "弛緩", - "reading": "シカン", - "meaning": "relaxation (e.g. of muscles), becoming flaccid" - }, - { - "example": "軍紀弛緩", - "reading": "グンキチカン", - "meaning": "lack of (slackness in) military discipline, demoralization" - } - ], - "kunyomiExamples": [ - { - "example": "緩い", - "reading": "ゆるい", - "meaning": "loose, lenient, lax, gentle (curve, slope, etc.), slow, weak, soft, not firm, difficult, hard" - }, - { - "example": "緩やか", - "reading": "ゆるやか", - "meaning": "loose, slack, gentle (slope, curve), slow (speed), lenient, liberal, lax" - }, - { - "example": "緩やかに進む", - "reading": "ゆるやかにすすむ", - "meaning": "to proceed slowly" - }, - { - "example": "緩む", - "reading": "ゆるむ", - "meaning": "to become loose, to slacken (e.g. rope), to become less tense, to relax, to let one's guard down, to slacken (e.g. coldness, supervision), to become lax, to become softer (e.g. ground, facial expression), (of ice) to partially melt, to decrease (e.g. speed), (of a market price) to go down slightly" - }, - { - "example": "緩める", - "reading": "ゆるめる", - "meaning": "to loosen, to slacken, to relax (attention, efforts, etc.), to let down (one's guard), to relieve (tension), to relax (a rule), to ease (e.g. restrictions), to loosen (control), to reduce (speed), to slow down, to ease up, to make more gradual (of a slope)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ノ", - "一", - "又", - "小", - "幺", - "爪", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32233_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07de9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7de9.gif", - "uri": "http://jisho.org/search/%E7%B7%A9%23kanji" - }, - { - "query": "憾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1682", - "strokeCount": 16, - "meaning": "remorse, regret, be sorry", - "kunyomi": [ - "うら.む" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "憾む", - "reading": "うらむ", - "meaning": "to regret" - }, - { - "example": "恨むらくは", - "reading": "うらむらくは", - "meaning": "I regret that, I feel terrible but, I'm sorry but" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "口", - "心", - "忙", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25022_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061be.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61be.gif", - "uri": "http://jisho.org/search/%E6%86%BE%23kanji" - }, - { - "query": "還", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "910", - "strokeCount": 16, - "meaning": "send back, return", - "kunyomi": [ - "かえ.る" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "還付", - "reading": "カンプ", - "meaning": "return, restoration, refund, (duty) drawback" - }, - { - "example": "還元", - "reading": "カンゲン", - "meaning": "restoration, return, reduction, resolution, deoxidization, deoxidation" - }, - { - "example": "奪還", - "reading": "ダッカン", - "meaning": "recovery, rescue, recapture" - }, - { - "example": "送還", - "reading": "ソウカン", - "meaning": "sending home, repatriation, deportation" - } - ], - "kunyomiExamples": [ - { - "example": "帰る", - "reading": "かえる", - "meaning": "to return, to come home, to go home, to go back, to leave, to get home, to get to home plate" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "一", - "口", - "衣", - "買", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36996_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09084.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9084.gif", - "uri": "http://jisho.org/search/%E9%82%84%23kanji" - }, - { - "query": "環", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "409", - "strokeCount": 17, - "meaning": "ring, circle, link, wheel", - "kunyomi": [ - "わ" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "環", - "reading": "カン", - "meaning": "ring, band, rim, ring, circum-" - }, - { - "example": "環境", - "reading": "カンキョウ", - "meaning": "environment, circumstance" - }, - { - "example": "円環", - "reading": "エンカン", - "meaning": "circle, ring, torus" - }, - { - "example": "外環", - "reading": "ガイカン", - "meaning": "outer ring, outer loop" - } - ], - "kunyomiExamples": [ - { - "example": "輪", - "reading": "わ", - "meaning": "ring, circle, loop, hoop, wheel, circle (e.g. of friends)" - }, - { - "example": "浮き輪", - "reading": "うきわ", - "meaning": "swim ring, (rubber) swimming ring, life buoy, life belt, float" - }, - { - "example": "耳環", - "reading": "みみわ", - "meaning": "earring (non-pierced), helix" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "一", - "口", - "王", - "衣", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29872_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/074b0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/74b0.gif", - "uri": "http://jisho.org/search/%E7%92%B0%23kanji" - }, - { - "query": "韓", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "445", - "strokeCount": 18, - "meaning": "Korea", - "kunyomi": [ - "から", - "いげた" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "韓国", - "reading": "カンコク", - "meaning": "South Korea, Republic of Korea, Korean Empire (1897-1910)" - }, - { - "example": "韓国語", - "reading": "カンコクゴ", - "meaning": "Korean (language)" - }, - { - "example": "日韓", - "reading": "ニッカン", - "meaning": "Japan and South Korea, Japanese-Korean" - }, - { - "example": "在韓", - "reading": "ザイカン", - "meaning": "resident in South Korea, situated in South Korea" - } - ], - "kunyomiExamples": [ - { - "example": "唐", - "reading": "から", - "meaning": "China (sometimes also used in ref. to Korea or other foreign countries)" - }, - { - "example": "唐国", - "reading": "からくに", - "meaning": "China, Korea" - } - ], - "radical": { - "symbol": "韋", - "meaning": "tanned leather" - }, - "parts": [ - "十", - "口", - "日", - "韋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38867_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/097d3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/97d3.gif", - "uri": "http://jisho.org/search/%E9%9F%93%23kanji" - }, - { - "query": "艦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1363", - "strokeCount": 21, - "meaning": "warship", - "kunyomi": [], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "艦", - "reading": "カン", - "meaning": "warship" - }, - { - "example": "艦船", - "reading": "カンセン", - "meaning": "(ocean) vessels, warship" - }, - { - "example": "駆逐艦", - "reading": "クチクカン", - "meaning": "destroyer (ship)" - }, - { - "example": "巡洋艦", - "reading": "ジュンヨウカン", - "meaning": "cruiser" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "乞", - "二", - "皿", - "臣", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33382_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08266.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8266.gif", - "uri": "http://jisho.org/search/%E8%89%A6%23kanji" - }, - { - "query": "鑑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1391", - "strokeCount": 23, - "meaning": "specimen, take warning from, learn from", - "kunyomi": [ - "かんが.みる", - "かがみ" - ], - "onyomi": [ - "カン" - ], - "onyomiExamples": [ - { - "example": "鑑賞", - "reading": "カンショウ", - "meaning": "appreciation (of art, music, poetry, etc.)" - }, - { - "example": "監査", - "reading": "カンサ", - "meaning": "inspection, audit, judgement, judgment" - }, - { - "example": "印鑑", - "reading": "インカン", - "meaning": "stamp, seal" - }, - { - "example": "名鑑", - "reading": "メイカン", - "meaning": "directory, list" - } - ], - "kunyomiExamples": [ - { - "example": "鑑みる", - "reading": "かんがみる", - "meaning": "to take into account, to bear in mind, to consider, to learn from, to take warning from" - }, - { - "example": "鑑", - "reading": "かがみ", - "meaning": "model, pattern, paragon, exemplar" - }, - { - "example": "手鑑", - "reading": "てかがみ", - "meaning": "collection of handwriting (usu. old), model, example" - }, - { - "example": "武士の鑑", - "reading": "ぶしのかがみ", - "meaning": "paragon of knighthood" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "乞", - "二", - "皿", - "臣", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37969_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09451.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9451.gif", - "uri": "http://jisho.org/search/%E9%91%91%23kanji" - }, - { - "query": "含", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "466", - "strokeCount": 7, - "meaning": "contain, include, hold in the mouth, bear in mind, understand, cherish", - "kunyomi": [ - "ふく.む", - "ふく.める" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "含有", - "reading": "ガンユウ", - "meaning": "containing (an ingredient, mineral, etc.)" - }, - { - "example": "含蓄", - "reading": "ガンチク", - "meaning": "implication, significance, connotation, depth of meaning, complications of a problem" - }, - { - "example": "内含", - "reading": "ナイガン", - "meaning": "containing within (it), inclusion, (logical) implication, material conditional, material consequence" - } - ], - "kunyomiExamples": [ - { - "example": "含む", - "reading": "ふくむ", - "meaning": "to contain, to comprise, to have, to hold, to include, to embrace, to hold in the mouth, to bear in mind, to understand, to harbor (grudge, etc.), to harbour, to express (emotion, etc.), to imply" - }, - { - "example": "含むところがある", - "reading": "ふくむところがある", - "meaning": "to harbor ill feeling" - }, - { - "example": "含める", - "reading": "ふくめる", - "meaning": "to include (in a group or scope), to instruct, to make one understand, to include (a nuance), to put in (an implication), to put in (someone's) mouth, to permeate with flavor" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "个", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21547_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0542b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/542b.gif", - "uri": "http://jisho.org/search/%E5%90%AB%23kanji" - }, - { - "query": "玩", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2216", - "strokeCount": 8, - "meaning": "play, take pleasure in, trifle with, make sport of", - "kunyomi": [ - "もちあそ.ぶ", - "もてあそ.ぶ" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "玩具", - "reading": "オモチャ", - "meaning": "toy, plaything" - }, - { - "example": "玩具銃", - "reading": "ガングジュウ", - "meaning": "toy gun" - }, - { - "example": "賞玩", - "reading": "ショウガン", - "meaning": "appreciation, admiration, enjoyment" - }, - { - "example": "食玩", - "reading": "ショクガン", - "meaning": "small toy sold with food, premium" - } - ], - "kunyomiExamples": [ - { - "example": "弄ぶ", - "reading": "もてあそぶ", - "meaning": "to play with (a toy, one's hair, etc.), to fiddle with, to toy with (one's emotions, etc.), to trifle with, to do with something as one pleases, to appreciate" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "二", - "儿", - "元", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/073a9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/73a9.gif", - "uri": "http://jisho.org/search/%E7%8E%A9%23kanji" - }, - { - "query": "頑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1247", - "strokeCount": 13, - "meaning": "stubborn, foolish, firmly", - "kunyomi": [ - "かたく" - ], - "onyomi": [ - "ガン" - ], - "onyomiExamples": [ - { - "example": "頑張って", - "reading": "ガンバッテ", - "meaning": "do your best, go for it, hang in there, keep at it" - }, - { - "example": "頑固", - "reading": "ガンコ", - "meaning": "stubborn, obstinate, pigheaded" - } - ], - "kunyomiExamples": [ - { - "example": "頑な", - "reading": "かたくな", - "meaning": "obstinate, stubborn, mulish, die-hard, bigoted" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "二", - "儿", - "元", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38929_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09811.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9811.gif", - "uri": "http://jisho.org/search/%E9%A0%91%23kanji" - }, - { - "query": "企", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "278", - "strokeCount": 6, - "meaning": "undertake, scheme, design, attempt, plan", - "kunyomi": [ - "くわだ.てる", - "たくら.む" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "企画室", - "reading": "キカクシツ", - "meaning": "planning office" - }, - { - "example": "企画", - "reading": "キカク", - "meaning": "planning, project, plan, design" - }, - { - "example": "投企", - "reading": "トウキ", - "meaning": "projection, project, philosophical concept introduced by Heidegger (Entwurf)" - }, - { - "example": "発起", - "reading": "ホッキ", - "meaning": "proposal, promotion, spiritual awakening, resolution" - } - ], - "kunyomiExamples": [ - { - "example": "企てる", - "reading": "くわだてる", - "meaning": "to plan, to plot, to propose, to design, to intend, to contemplate, to attempt (e.g. suicide, murder), to undertake (e.g. business), to stand on tip-toes" - }, - { - "example": "企む", - "reading": "たくらむ", - "meaning": "to scheme, to plan, to play a trick, to invent, to conspire, to frame up" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "个", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20225_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f01.gif", - "uri": "http://jisho.org/search/%E4%BC%81%23kanji" - }, - { - "query": "伎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 6, - "meaning": "deed, skill", - "kunyomi": [ - "わざ", - "わざおぎ" - ], - "onyomi": [ - "ギ", - "キ" - ], - "onyomiExamples": [ - { - "example": "技", - "reading": "ワザ", - "meaning": "technique, art, skill, move" - }, - { - "example": "技能", - "reading": "ギノウ", - "meaning": "technical skill, ability, capacity" - }, - { - "example": "雑技", - "reading": "ザツギ", - "meaning": "performing arts, acrobatics" - }, - { - "example": "地歌舞伎", - "reading": "ジカブキ", - "meaning": "amateur kabuki performed at local festivals" - }, - { - "example": "上方歌舞伎", - "reading": "カミガタカブキ", - "meaning": "kabuki in the style of Kyoto or Osaka" - } - ], - "kunyomiExamples": [ - { - "example": "技", - "reading": "わざ", - "meaning": "technique, art, skill, move" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "十", - "又", - "支" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20238_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f0e.gif", - "uri": "http://jisho.org/search/%E4%BC%8E%23kanji" - }, - { - "query": "忌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1882", - "strokeCount": 7, - "meaning": "mourning, abhor, detestable, death anniversary", - "kunyomi": [ - "い.む", - "い.み", - "い.まわしい" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "忌", - "reading": "キ", - "meaning": "mourning, mourning period, anniversary of one's death" - }, - { - "example": "忌避", - "reading": "キヒ", - "meaning": "evasion, avoidance, shirking, recusation (of a judge), taking exception (to a judge), challenge" - }, - { - "example": "回忌", - "reading": "カイキ", - "meaning": "death anniversary" - }, - { - "example": "七回忌", - "reading": "シチカイキ", - "meaning": "sixth anniversary of a death" - } - ], - "kunyomiExamples": [ - { - "example": "忌む", - "reading": "いむ", - "meaning": "to avoid, to refrain from, to shun, to detest" - }, - { - "example": "忌むべき", - "reading": "いむべき", - "meaning": "abominable, detestable" - }, - { - "example": "忌み", - "reading": "いみ", - "meaning": "mourning, abstinence, taboo, religious purification, pure, holy" - }, - { - "example": "忌み明け", - "reading": "いみあけ", - "meaning": "end of mourning" - }, - { - "example": "子忌み", - "reading": "ねいみ", - "meaning": "collecting herbs and pulling out young pine trees by the roots (annual event held on the first day of the Rat of the New Year)" - }, - { - "example": "物忌み", - "reading": "ものいみ", - "meaning": "fasting, abstinence, confinement to one's house on an unlucky day" - }, - { - "example": "忌まわしい", - "reading": "いまわしい", - "meaning": "unpleasant, disagreeable, abominable, disgusting, unsavory, unlucky, inauspicious, ominous" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "已", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24524_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fcc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fcc.gif", - "uri": "http://jisho.org/search/%E5%BF%8C%23kanji" - }, - { - "query": "奇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1367", - "strokeCount": 8, - "meaning": "strange, strangeness, curiosity", - "kunyomi": [ - "く.しき", - "あや.しい", - "くし", - "めずら.しい" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "奇", - "reading": "キ", - "meaning": "strange, unconventional, eccentric, novel, odd, odd number" - }, - { - "example": "奇異", - "reading": "キイ", - "meaning": "odd, strange, queer, peculiar" - }, - { - "example": "物好き", - "reading": "モノズキ", - "meaning": "(idle) curiosity, fancifulness, whimsy, (having) strange tastes" - }, - { - "example": "怪奇", - "reading": "カイキ", - "meaning": "bizarre, strange, weird, mysterious, grotesque" - } - ], - "kunyomiExamples": [ - { - "example": "奇しき", - "reading": "くしき", - "meaning": "strange, mysterious, queer" - }, - { - "example": "奇しき", - "reading": "くしき", - "meaning": "strange, mysterious, queer" - }, - { - "example": "奇しくも", - "reading": "くしくも", - "meaning": "strangely, oddly, miraculously, mysteriously" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "一", - "亅", - "口", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22855_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05947.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5947.gif", - "uri": "http://jisho.org/search/%E5%A5%87%23kanji" - }, - { - "query": "祈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1462", - "strokeCount": 8, - "meaning": "pray, wish", - "kunyomi": [ - "いの.る" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "祈念", - "reading": "キネン", - "meaning": "prayer" - }, - { - "example": "祈願", - "reading": "キガン", - "meaning": "prayer (for something), supplication" - } - ], - "kunyomiExamples": [ - { - "example": "祈る", - "reading": "いのる", - "meaning": "to pray, to wish" - } - ], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "斤", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31048_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07948.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7948.gif", - "uri": "http://jisho.org/search/%E7%A5%88%23kanji" - }, - { - "query": "軌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1480", - "strokeCount": 9, - "meaning": "rut, wheel, track, model, way of doing", - "kunyomi": [], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "軌", - "reading": "キ", - "meaning": "rut, wheel track, distance between two wheels, gauge" - }, - { - "example": "軌跡", - "reading": "キセキ", - "meaning": "tire track, traces of a person or thing, path one has taken, locus" - }, - { - "example": "広軌", - "reading": "コウキ", - "meaning": "broad gauge" - }, - { - "example": "狭軌", - "reading": "キョウキ", - "meaning": "narrow gauge" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "九", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36556_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ecc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ecc.gif", - "uri": "http://jisho.org/search/%E8%BB%8C%23kanji" - }, - { - "query": "既", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1081", - "strokeCount": 10, - "meaning": "previously, already, long ago", - "kunyomi": [ - "すで.に" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "既成", - "reading": "キセイ", - "meaning": "established, existing, accomplished, accepted, completed" - }, - { - "example": "既婚", - "reading": "キコン", - "meaning": "married" - }, - { - "example": "皆既", - "reading": "カイキ", - "meaning": "total eclipse, totality" - } - ], - "kunyomiExamples": [ - { - "example": "既に", - "reading": "すでに", - "meaning": "already, too late" - }, - { - "example": "既にして", - "reading": "すでにして", - "meaning": "in the meantime, meanwhile" - } - ], - "radical": { - "symbol": "无", - "meaning": "perish" - }, - "parts": [ - "牙", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26082_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065e2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65e2.gif", - "uri": "http://jisho.org/search/%E6%97%A2%23kanji" - }, - { - "query": "飢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1659", - "strokeCount": 10, - "meaning": "hungry, starve", - "kunyomi": [ - "う.える" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "飢餓", - "reading": "キガ", - "meaning": "starvation, famine, hunger" - }, - { - "example": "飢饉", - "reading": "キキン", - "meaning": "famine, crop failure, chronic shortage (e.g. of water)" - } - ], - "kunyomiExamples": [ - { - "example": "飢える", - "reading": "うえる", - "meaning": "to starve, to be famished, to be hungry, to be starved of (e.g. love), to be thirsty for (e.g. knowledge), to be hungry for" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "几", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39138_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098e2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98e2.gif", - "uri": "http://jisho.org/search/%E9%A3%A2%23kanji" - }, - { - "query": "鬼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1557", - "strokeCount": 10, - "meaning": "ghost, devil", - "kunyomi": [ - "おに", - "おに-" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "鬼", - "reading": "オニ", - "meaning": "ogre, demon, oni, spirit of a deceased person, ogre-like person (i.e. fierce, relentless, merciless, etc.), it (in a game of tag, hide-and-seek, etc.), Chinese \"ghost\" constellation (one of the 28 mansions), very, extremely, super-" - }, - { - "example": "鬼神", - "reading": "キシン", - "meaning": "fierce god" - }, - { - "example": "債鬼", - "reading": "サイキ", - "meaning": "cruel creditor, bill collector" - }, - { - "example": "窮鬼", - "reading": "キュウキ", - "meaning": "god of poverty, vengeful spirit" - } - ], - "kunyomiExamples": [ - { - "example": "鬼", - "reading": "おに", - "meaning": "ogre, demon, oni, spirit of a deceased person, ogre-like person (i.e. fierce, relentless, merciless, etc.), it (in a game of tag, hide-and-seek, etc.), Chinese \"ghost\" constellation (one of the 28 mansions), very, extremely, super-" - }, - { - "example": "鬼神", - "reading": "きしん", - "meaning": "fierce god" - }, - { - "example": "青鬼", - "reading": "あおおに", - "meaning": "(horned) blue demon, blue ogre" - }, - { - "example": "赤鬼", - "reading": "あかおに", - "meaning": "red-horned demon, red ogre" - } - ], - "radical": { - "symbol": "鬼", - "meaning": "ghost, demon" - }, - "parts": [ - "儿", - "匕", - "厶", - "田", - "鬼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39740_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09b3c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9b3c.gif", - "uri": "http://jisho.org/search/%E9%AC%BC%23kanji" - }, - { - "query": "亀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1353", - "strokeCount": 11, - "meaning": "tortoise, turtle", - "kunyomi": [ - "かめ" - ], - "onyomi": [ - "キ", - "キュウ", - "キン" - ], - "onyomiExamples": [ - { - "example": "亀裂", - "reading": "キレツ", - "meaning": "crack, crevice, fissure, chap, rift" - }, - { - "example": "亀甲", - "reading": "キッコウ", - "meaning": "tortoise shell" - }, - { - "example": "霊亀", - "reading": "レイキ", - "meaning": "mysterious turtle (an omen of good luck), Reiki era (715.9.2-717.11.17)" - }, - { - "example": "宝亀", - "reading": "ホウキ", - "meaning": "Hōki era (770.10.1-781.1.1)" - } - ], - "kunyomiExamples": [ - { - "example": "亀", - "reading": "かめ", - "meaning": "tortoise, turtle, heavy drinker, turtle crest, turtle mon" - }, - { - "example": "亀綾", - "reading": "かめあや", - "meaning": "high-quality glossy white habutai silk, raw silk twill fabric with fine diamond pattern" - }, - { - "example": "お亀", - "reading": "おかめ", - "meaning": "homely woman (esp. one with a small low nose, high flat forehead, and bulging cheeks), plain woman, soba in soup with slices of boiled fish paste, shiitake mushrooms, greens, seaweed, etc." - }, - { - "example": "出歯亀", - "reading": "でばかめ", - "meaning": "voyeur, Peeping Tom" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "乙", - "亀", - "勹", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20096_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e80.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e80.gif", - "uri": "http://jisho.org/search/%E4%BA%80%23kanji" - }, - { - "query": "幾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1725", - "strokeCount": 12, - "meaning": "how many, how much, how far, how long, some, several", - "kunyomi": [ - "いく-", - "いく.つ", - "いく.ら" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "幾何学", - "reading": "キカガク", - "meaning": "geometry" - }, - { - "example": "幾何", - "reading": "キカ", - "meaning": "geometry" - }, - { - "example": "沃度丁幾", - "reading": "ヨウドチンキ", - "meaning": "tincture of iodine" - }, - { - "example": "庶幾", - "reading": "ショキ", - "meaning": "desire, hope" - } - ], - "kunyomiExamples": [ - { - "example": "幾つ", - "reading": "いくつ", - "meaning": "how many?, how old?" - }, - { - "example": "幾つか", - "reading": "いくつか", - "meaning": "(a) few, some, several" - }, - { - "example": "幾ら", - "reading": "いくら", - "meaning": "how much, something over, and something, -odd, however (much), no matter how" - }, - { - "example": "幾らか", - "reading": "いくらか", - "meaning": "some, (a) little, somewhat, to some extent, in part" - } - ], - "radical": { - "symbol": "幺", - "meaning": "short, tiny" - }, - "parts": [ - "ノ", - "丶", - "幺", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24190_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e7e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e7e.gif", - "uri": "http://jisho.org/search/%E5%B9%BE%23kanji" - }, - { - "query": "棋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1311", - "strokeCount": 12, - "meaning": "chess piece, Japanese chess, shogi", - "kunyomi": [ - "ご" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "棋士", - "reading": "キシ", - "meaning": "professional shogi player, professional go player" - }, - { - "example": "棋院", - "reading": "キイン", - "meaning": "go institution, go club, go hall" - } - ], - "kunyomiExamples": [ - { - "example": "碁", - "reading": "ご", - "meaning": "go, board game of capturing territory" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ハ", - "木", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26827_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68cb.gif", - "uri": "http://jisho.org/search/%E6%A3%8B%23kanji" - }, - { - "query": "棄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "901", - "strokeCount": 13, - "meaning": "abandon, throw away, discard, resign, reject, sacrifice", - "kunyomi": [ - "す.てる" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "棄権", - "reading": "キケン", - "meaning": "abstention (from voting), renunciation (of a right), withdrawal (from a contest)" - }, - { - "example": "棄却", - "reading": "キキャク", - "meaning": "rejection, dismissal, turning down, abandoning, renunciation" - }, - { - "example": "投棄", - "reading": "トウキ", - "meaning": "abandonment, giving up, throwing away, disposal, dumping" - }, - { - "example": "遺棄", - "reading": "イキ", - "meaning": "abandonment, desertion" - } - ], - "kunyomiExamples": [ - { - "example": "捨てる", - "reading": "すてる", - "meaning": "to throw away, to cast away, to dump, to discard, to abandon, to desert, to leave, to give up, to resign" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "亠", - "凵", - "厶", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26820_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068c4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68c4.gif", - "uri": "http://jisho.org/search/%E6%A3%84%23kanji" - }, - { - "query": "毀", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "break, destroy, censure, be chipped, be scratched, be broken, be ruined", - "kunyomi": [ - "こぼ.つ", - "こわ.す", - "こぼ.れる", - "こわ.れる", - "そし.る", - "やぶ.る" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "毀損", - "reading": "キソン", - "meaning": "damage, injury, defamation, harm" - }, - { - "example": "毀壊", - "reading": "キカイ", - "meaning": "breaking, demolishing, smashing, destroying, wrecking, being broken, being ruined, being destroyed, being worn out" - }, - { - "example": "焼毀", - "reading": "ショウキ", - "meaning": "completely destroying by fire" - }, - { - "example": "誹毀", - "reading": "ヒキ", - "meaning": "defamation, libel, calumny, slander" - } - ], - "kunyomiExamples": [ - { - "example": "毀つ", - "reading": "こぼつ", - "meaning": "to destroy, to break, to damage" - }, - { - "example": "壊す", - "reading": "こわす", - "meaning": "to break, to destroy, to demolish, to wreck, to ruin, to spoil, to damage, to break (a bill, etc.)" - }, - { - "example": "毀れる", - "reading": "こぼれる", - "meaning": "to be chipped, to be nicked" - }, - { - "example": "壊れる", - "reading": "こわれる", - "meaning": "to be broken, to break, to fall through, to come to nothing" - } - ], - "radical": { - "symbol": "殳", - "meaning": "weapon, lance" - }, - "parts": [ - "几", - "又", - "土", - "殳", - "臼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27584_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bc0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bc0.gif", - "uri": "http://jisho.org/search/%E6%AF%80%23kanji" - }, - { - "query": "畿", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1683", - "strokeCount": 15, - "meaning": "capital, suburbs of capital", - "kunyomi": [ - "みやこ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "畿内", - "reading": "キナイ", - "meaning": "territories in the vicinity of the capital and under direct imperial rule, (in Japanese history) the five kuni in the immediate vicinity of Kyoto" - }, - { - "example": "京畿", - "reading": "ケイキ", - "meaning": "territories in the vicinity of Kyoto, territories in the vicinity of the imperial palace" - }, - { - "example": "五畿", - "reading": "ゴキ", - "meaning": "the Five Home Provinces (Yamato, Yamashiro, Settsu, Kawachi, and Izumi)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "ノ", - "丶", - "幺", - "戈", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30079_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0757f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/757f.gif", - "uri": "http://jisho.org/search/%E7%95%BF%23kanji" - }, - { - "query": "輝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1259", - "strokeCount": 15, - "meaning": "radiance, shine, sparkle, gleam, twinkle", - "kunyomi": [ - "かがや.く" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "輝度", - "reading": "キド", - "meaning": "brightness, clearness, luminance" - }, - { - "example": "輝安鉱", - "reading": "キアンコウ", - "meaning": "stibnite (mineral), antimonite" - }, - { - "example": "光輝", - "reading": "コウキ", - "meaning": "brightness, splendour, splendor" - }, - { - "example": "輝輝", - "reading": "キキ", - "meaning": "brilliance" - } - ], - "kunyomiExamples": [ - { - "example": "輝く", - "reading": "かがやく", - "meaning": "to shine, to glitter, to sparkle" - }, - { - "example": "輝く女性", - "reading": "かがやくじょせい", - "meaning": "women who excel, women in prominent positions" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "一", - "儿", - "冖", - "尚", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36637_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f1d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f1d.gif", - "uri": "http://jisho.org/search/%E8%BC%9D%23kanji" - }, - { - "query": "騎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1696", - "strokeCount": 18, - "meaning": "equestrian, riding on horses, counter for equestrians", - "kunyomi": [], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "騎", - "reading": "キ", - "meaning": "counter for horsemen" - }, - { - "example": "騎士", - "reading": "キシ", - "meaning": "samurai on horseback, (medieval) knight" - }, - { - "example": "一騎", - "reading": "イッキ", - "meaning": "one horseman" - }, - { - "example": "顔騎", - "reading": "ガンキ", - "meaning": "facesitting (sex act)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "一", - "亅", - "口", - "大", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39438_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09a0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9a0e.gif", - "uri": "http://jisho.org/search/%E9%A8%8E%23kanji" - }, - { - "query": "宜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1766", - "strokeCount": 8, - "meaning": "best regards, good", - "kunyomi": [ - "よろ.しい", - "よろ.しく" - ], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "宜陽殿", - "reading": "ギヨウデン", - "meaning": "pavilion housing imperial treasures and historical artifacts (in Heian Palace)" - }, - { - "example": "時宜", - "reading": "ジギ", - "meaning": "right time, appropriate time, season's greetings" - }, - { - "example": "友誼", - "reading": "ユウギ", - "meaning": "friendship, friendly relations, fellowship" - } - ], - "kunyomiExamples": [ - { - "example": "宜しい", - "reading": "よろしい", - "meaning": "good, OK, all right, fine, very well, will do, may, can" - }, - { - "example": "宜しく", - "reading": "よろしく", - "meaning": "well, properly, suitably, best regards, please remember me, please treat me favorably (favourably), please take care of, please do, just like ..., as though one were ..., by all means, of course" - }, - { - "example": "よろしくお願いいたします", - "reading": "よろしくおねがいいたします", - "meaning": "please remember me, please help me, please treat me well, I look forward to working with you, please do, please take care of" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "一", - "宀", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23452_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b9c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b9c.gif", - "uri": "http://jisho.org/search/%E5%AE%9C%23kanji" - }, - { - "query": "偽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1171", - "strokeCount": 11, - "meaning": "falsehood, lie, deceive, pretend, counterfeit, forgery", - "kunyomi": [ - "いつわ.る", - "にせ", - "いつわ.り" - ], - "onyomi": [ - "ギ", - "カ" - ], - "onyomiExamples": [ - { - "example": "偽", - "reading": "ギ", - "meaning": "falseness (logic), falsehood" - }, - { - "example": "偽証", - "reading": "ギショウ", - "meaning": "false evidence, perjury, false testimony" - }, - { - "example": "真偽", - "reading": "シンギ", - "meaning": "truth or falsehood, genuineness, authenticity, veracity" - }, - { - "example": "詐偽", - "reading": "サギ", - "meaning": "lie, untruth, prevarication" - } - ], - "kunyomiExamples": [ - { - "example": "偽る", - "reading": "いつわる", - "meaning": "to lie, to cheat, to pretend, to feign, to falsify, to trick, to deceive" - }, - { - "example": "偽", - "reading": "にせ", - "meaning": "imitation, fake, phony, counterfeit, forged, bogus, sham, pseudo-" - }, - { - "example": "偽物", - "reading": "にせもの", - "meaning": "spurious article, forgery, counterfeit, imitation, sham" - }, - { - "example": "偽り", - "reading": "いつわり", - "meaning": "lie, falsehood, fiction, fabrication" - }, - { - "example": "偽り語る", - "reading": "いつわりかたる", - "meaning": "to speak falsely" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "ユ", - "丶", - "勹", - "化", - "并", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20605_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0507d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/507d.gif", - "uri": "http://jisho.org/search/%E5%81%BD%23kanji" - }, - { - "query": "欺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1541", - "strokeCount": 12, - "meaning": "deceit, cheat, delude", - "kunyomi": [ - "あざむ.く" - ], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "欺瞞", - "reading": "ギマン", - "meaning": "deception, deceit" - }, - { - "example": "欺詐", - "reading": "ギサ", - "meaning": "fraud, fraudulence, dupery, hoax" - }, - { - "example": "ナイジェリア詐欺", - "reading": "ナイジェリアサギ", - "meaning": "Nigerian fraud, 419 fraud" - }, - { - "example": "架空請求詐欺", - "reading": "カクウセイキュウサギ", - "meaning": "fraud based on demanding payment for false claims or non-existent bills" - } - ], - "kunyomiExamples": [ - { - "example": "欺く", - "reading": "あざむく", - "meaning": "to deceive, to delude, to trick, to fool, to be as ... as ... (e.g. \"as bright as day\", \"as beautiful as a rose\")" - } - ], - "radical": { - "symbol": "欠", - "meaning": "lack, yawn" - }, - "parts": [ - "ハ", - "欠", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27450_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b3a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b3a.gif", - "uri": "http://jisho.org/search/%E6%AC%BA%23kanji" - }, - { - "query": "儀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "739", - "strokeCount": 15, - "meaning": "ceremony, rule, affair, case, a matter", - "kunyomi": [], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "儀", - "reading": "ギ", - "meaning": "ceremony, matter, affair, with regard to, as for, as concerns" - }, - { - "example": "儀式", - "reading": "ギシキ", - "meaning": "ceremony, rite, ritual, service" - }, - { - "example": "奥義", - "reading": "オウギ", - "meaning": "secret techniques (of an art or skill), inner mysteries, essence, quintessence, heart" - }, - { - "example": "祭儀", - "reading": "サイギ", - "meaning": "rites, ritual" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "亅", - "化", - "并", - "戈", - "手", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20736_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05100.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5100.gif", - "uri": "http://jisho.org/search/%E5%84%80%23kanji" - }, - { - "query": "戯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1880", - "strokeCount": 15, - "meaning": "frolic, play, sport", - "kunyomi": [ - "たわむ.れる", - "ざ.れる", - "じゃ.れる" - ], - "onyomi": [ - "ギ", - "ゲ" - ], - "onyomiExamples": [ - { - "example": "冗談", - "reading": "ジョウダン", - "meaning": "jest, joke, funny story" - }, - { - "example": "戯曲", - "reading": "ギキョク", - "meaning": "drama, play, Chinese opera" - }, - { - "example": "遊戯", - "reading": "ユウギ", - "meaning": "game, play, sports" - }, - { - "example": "性戯", - "reading": "セイギ", - "meaning": "sex act, sexual play" - }, - { - "example": "冗談", - "reading": "ジョウダン", - "meaning": "jest, joke, funny story" - }, - { - "example": "戯作", - "reading": "ゲサク", - "meaning": "cheap literature, writing for amusement, light literature popular in the late Edo period" - } - ], - "kunyomiExamples": [ - { - "example": "戯れる", - "reading": "たわむれる", - "meaning": "to be playful, to gambol, to be amused (with something), to play, to sport, to frolic, to joke, to flirt with" - }, - { - "example": "戯れる", - "reading": "たわむれる", - "meaning": "to be playful, to gambol, to be amused (with something), to play, to sport, to frolic, to joke, to flirt with" - }, - { - "example": "戯れる", - "reading": "たわむれる", - "meaning": "to be playful, to gambol, to be amused (with something), to play, to sport, to frolic, to joke, to flirt with" - } - ], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "匕", - "卜", - "厂", - "戈", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25135_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0622f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/622f.gif", - "uri": "http://jisho.org/search/%E6%88%AF%23kanji" - }, - { - "query": "擬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1990", - "strokeCount": 17, - "meaning": "mimic, aim (a gun) at, nominate, imitate", - "kunyomi": [ - "まが.い", - "もど.き" - ], - "onyomi": [ - "ギ" - ], - "onyomiExamples": [ - { - "example": "擬", - "reading": "ギ", - "meaning": "pseudo-, quasi-" - }, - { - "example": "疑似", - "reading": "ギジ", - "meaning": "pseudo, quasi, false, para-, mock, sham, suspected (case, e.g. of disease)" - } - ], - "kunyomiExamples": [ - { - "example": "紛い", - "reading": "まがい", - "meaning": "imitation, sham, -like" - }, - { - "example": "紛い物", - "reading": "まがいもの", - "meaning": "imitation, fake, sham" - }, - { - "example": "擬き", - "reading": "もどき", - "meaning": "-like, pseudo-, mock ..., imitation ..., in the style of ..., comical character who mocks or apes the main character (in Japanese performing arts), criticism, censure" - }, - { - "example": "銀竜草擬", - "reading": "ぎんりょうそうもどき", - "meaning": "Indian pipe (Monotropa uniflora)" - }, - { - "example": "太平洋赤坊擬", - "reading": "たいへいようあかぼうもどき", - "meaning": "Longman's beaked whale (Indopacetus pacificus), Indo-Pacific beaked whale, tropical bottlenose whale" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "マ", - "乞", - "匕", - "扎", - "疋", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25836_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064ec.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64ec.gif", - "uri": "http://jisho.org/search/%E6%93%AC%23kanji" - }, - { - "query": "犠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1189", - "strokeCount": 17, - "meaning": "sacrifice", - "kunyomi": [ - "いけにえ" - ], - "onyomi": [ - "ギ", - "キ" - ], - "onyomiExamples": [ - { - "example": "犠牲者", - "reading": "ギセイシャ", - "meaning": "victim" - }, - { - "example": "犠牲", - "reading": "ギセイ", - "meaning": "sacrifice, victim, scapegoat, sacrifice (to the gods)" - }, - { - "example": "供犠", - "reading": "クギ", - "meaning": "sacrifice, sacrificial animal" - } - ], - "kunyomiExamples": [ - { - "example": "生贄", - "reading": "いけにえ", - "meaning": "sacrifice (to the gods), victim, scapegoat" - } - ], - "radical": { - "symbol": "牛", - "forms": [ - "牜" - ], - "meaning": "cow" - }, - "parts": [ - "一", - "亅", - "并", - "戈", - "手", - "牛", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29344_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072a0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72a0.gif", - "uri": "http://jisho.org/search/%E7%8A%A0%23kanji" - }, - { - "query": "菊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1287", - "strokeCount": 11, - "meaning": "chrysanthemum", - "kunyomi": [], - "onyomi": [ - "キク" - ], - "onyomiExamples": [ - { - "example": "菊", - "reading": "キク", - "meaning": "chrysanthemum (Chrysanthemum morifolium)" - }, - { - "example": "菊花", - "reading": "キッカ", - "meaning": "chrysanthemum flower" - }, - { - "example": "一菊", - "reading": "イッキク", - "meaning": "one scoop (of water)" - }, - { - "example": "斧琴菊", - "reading": "ヨキコトキク", - "meaning": "dyeing pattern with a yoki, koto bridge and a chrysanthemum" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "勹", - "米", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33738_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/083ca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/83ca.gif", - "uri": "http://jisho.org/search/%E8%8F%8A%23kanji" - }, - { - "query": "吉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "711", - "strokeCount": 6, - "meaning": "good luck, joy, congratulations", - "kunyomi": [ - "よし" - ], - "onyomi": [ - "キチ", - "キツ" - ], - "onyomiExamples": [ - { - "example": "吉", - "reading": "キチ", - "meaning": "good fortune (esp. omikuji fortune-telling result), good luck, auspiciousness, unspecified day of the month (used to obscure the date a letter, invitation, etc. was written)" - }, - { - "example": "吉祥天", - "reading": "キッショウテン", - "meaning": "Sri-mahadevi (consort of Vaishravana)" - }, - { - "example": "大吉", - "reading": "ダイキチ", - "meaning": "excellent luck" - }, - { - "example": "小吉", - "reading": "ショウキチ", - "meaning": "slightly good luck (as a fortune telling result)" - }, - { - "example": "吉", - "reading": "キチ", - "meaning": "good fortune (esp. omikuji fortune-telling result), good luck, auspiciousness, unspecified day of the month (used to obscure the date a letter, invitation, etc. was written)" - }, - { - "example": "吉事", - "reading": "キチジ", - "meaning": "auspicious event" - }, - { - "example": "嘉吉", - "reading": "カキツ", - "meaning": "Kakitsu era (1441.2.17-1444.2.5)" - }, - { - "example": "勿吉", - "reading": "モッキツ", - "meaning": "Mohe (one of the Tungusic-speaking tribes)" - } - ], - "kunyomiExamples": [ - { - "example": "吉川神道", - "reading": "よしかわしんとう", - "meaning": "Yoshikawa Shinto (Confucianist form of Shinto, stripped of Buddhist influence)" - }, - { - "example": "吉牛", - "reading": "よしぎゅう", - "meaning": "Yoshinoya gyudon (beef on rice)" - }, - { - "example": "土吉", - "reading": "つちよし", - "meaning": "earth form of \"good luck\" character" - }, - { - "example": "豊臣秀吉", - "reading": "とよとみひでよし", - "meaning": "Toyotomi Hideyoshi" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "士" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21513_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05409.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5409.gif", - "uri": "http://jisho.org/search/%E5%90%89%23kanji" - }, - { - "query": "喫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1347", - "strokeCount": 12, - "meaning": "consume, eat, drink, smoke, receive (a blow)", - "kunyomi": [ - "の.む" - ], - "onyomi": [ - "キツ" - ], - "onyomiExamples": [ - { - "example": "喫煙", - "reading": "キツエン", - "meaning": "smoking" - }, - { - "example": "喫飲", - "reading": "キツイン", - "meaning": "eating and drinking" - }, - { - "example": "漫喫", - "reading": "マンキツ", - "meaning": "manga cafe, coffee shop with a manga library (usu. has Internet facilities and charges by the hour)" - } - ], - "kunyomiExamples": [ - { - "example": "喫む", - "reading": "のむ", - "meaning": "to smoke (tobacco)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "二", - "亠", - "刀", - "口", - "土", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21931_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/055ab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/55ab.gif", - "uri": "http://jisho.org/search/%E5%96%AB%23kanji" - }, - { - "query": "詰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1020", - "strokeCount": 13, - "meaning": "packed, close, pressed, reprove, rebuke, blame", - "kunyomi": [ - "つ.める", - "つ.め", - "-づ.め", - "つ.まる", - "つ.む" - ], - "onyomi": [ - "キツ", - "キチ" - ], - "onyomiExamples": [ - { - "example": "詰問", - "reading": "キツモン", - "meaning": "cross-examination, close questioning, demanding an explanation" - }, - { - "example": "難詰", - "reading": "ナンキツ", - "meaning": "reprimand" - }, - { - "example": "面詰", - "reading": "メンキツ", - "meaning": "reprimanding (a person) personally, personal reproof" - } - ], - "kunyomiExamples": [ - { - "example": "詰める", - "reading": "つめる", - "meaning": "to stuff into, to jam, to cram, to pack, to fill, to plug, to stop up, to shorten, to move closer together, to reduce (spending), to conserve, to focus intently on, to strain oneself to do, to go through thoroughly, to work out (details), to bring to a conclusion, to wind up, to be on duty, to be stationed, to corner (esp. an opponent's king in shogi), to trap, to checkmate, to cut off (one's finger as an act of apology), to catch (one's finger in a door, etc.), to do non-stop, to do continuously, to keep doing (without a break), to do completely, to do thoroughly, to force someone into a difficult situation by ..." - }, - { - "example": "詰め", - "reading": "つめ", - "meaning": "stuffing, packing, end (esp. the foot of a bridge), lowest-ranking guest at tea ceremony, tea master, endgame (esp. in shogi or used figuratively), sweet eel sauce, middle-aged woman, appointment to a particular workplace, using as the sole ground of judgement (judgment), continuing, keep doing for period of time" - }, - { - "example": "詰める", - "reading": "つめる", - "meaning": "to stuff into, to jam, to cram, to pack, to fill, to plug, to stop up, to shorten, to move closer together, to reduce (spending), to conserve, to focus intently on, to strain oneself to do, to go through thoroughly, to work out (details), to bring to a conclusion, to wind up, to be on duty, to be stationed, to corner (esp. an opponent's king in shogi), to trap, to checkmate, to cut off (one's finger as an act of apology), to catch (one's finger in a door, etc.), to do non-stop, to do continuously, to keep doing (without a break), to do completely, to do thoroughly, to force someone into a difficult situation by ..." - }, - { - "example": "お詰め", - "reading": "おつめ", - "meaning": "lowest-ranking guest at tea ceremony, tea master" - }, - { - "example": "詰まる", - "reading": "つまる", - "meaning": "to be packed (with), to be full (space, schedule, etc.), to be blocked (road, pipe, nose, etc.), to be clogged, to be plugged up, to shorten (width, interval, etc.), to shrink (shirt, word form, etc.), to narrow, to be at a loss, to be hard pressed, to end up, to be settled, to become a geminate consonant, to hit the ball near the handle of the bat" - }, - { - "example": "詰まるところ", - "reading": "つまるところ", - "meaning": "in short, in brief, to sum up, ultimately, in the end, in the long run, when all is said and done, what it all comes down to, when you get right down to it" - }, - { - "example": "詰む", - "reading": "つむ", - "meaning": "to become fine (of fabric), to be checkmated, to be hard pressed, to be at a loss, to reach the limits" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "口", - "士", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35440_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a70.gif", - "uri": "http://jisho.org/search/%E8%A9%B0%23kanji" - }, - { - "query": "却", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "959", - "strokeCount": 7, - "meaning": "instead, on the contrary, rather, step back, withdraw, retreat", - "kunyomi": [ - "かえ.って", - "しりぞ.く", - "しりぞ.ける" - ], - "onyomi": [ - "キャク" - ], - "onyomiExamples": [ - { - "example": "焼却", - "reading": "ショウキャク", - "meaning": "incineration, destroy by fire" - }, - { - "example": "償却", - "reading": "ショウキャク", - "meaning": "repayment, redemption, depreciation, amortization, amortisation" - } - ], - "kunyomiExamples": [ - { - "example": "却って", - "reading": "かえって", - "meaning": "on the contrary, rather, all the more, instead" - }, - { - "example": "退ける", - "reading": "しりぞける", - "meaning": "to repel, to drive away, to repulse, to reject" - } - ], - "radical": { - "symbol": "卩", - "meaning": "kneel" - }, - "parts": [ - "卩", - "厶", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21364_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05374.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5374.gif", - "uri": "http://jisho.org/search/%E5%8D%B4%23kanji" - }, - { - "query": "脚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1228", - "strokeCount": 11, - "meaning": "skids, leg, undercarriage, lower part, base", - "kunyomi": [ - "あし" - ], - "onyomi": [ - "キャク", - "キャ", - "カク" - ], - "onyomiExamples": [ - { - "example": "脚", - "reading": "キャク", - "meaning": "counter for chairs or seats" - }, - { - "example": "脚本", - "reading": "キャクホン", - "meaning": "script, screenplay, scenario" - }, - { - "example": "立脚", - "reading": "リッキャク", - "meaning": "being based on" - }, - { - "example": "橋脚", - "reading": "キョウキャク", - "meaning": "bridge pier, pontoon bridge" - }, - { - "example": "脚", - "reading": "キャク", - "meaning": "counter for chairs or seats" - }, - { - "example": "脚本", - "reading": "キャクホン", - "meaning": "script, screenplay, scenario" - }, - { - "example": "脚病", - "reading": "カクビョウ", - "meaning": "beriberi" - } - ], - "kunyomiExamples": [ - { - "example": "足", - "reading": "あし", - "meaning": "foot, paw, arm (of an octopus, squid, etc.), leg, gait, pace, bottom structural component (i.e. radical) of a kanji, means of transportation, money, coin" - }, - { - "example": "脚がある", - "reading": "あしがある", - "meaning": "to have legs, to be able to get around, to be a good runner" - }, - { - "example": "舞脚", - "reading": "まいあし", - "meaning": "kanji \"dancing legs\" radical (radical 136)" - }, - { - "example": "二十脚", - "reading": "にじゅうあし", - "meaning": "kanji \"twenty legs\" radical (radical 55)" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "卩", - "厶", - "土", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33050_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0811a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/811a.gif", - "uri": "http://jisho.org/search/%E8%84%9A%23kanji" - }, - { - "query": "虐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1464", - "strokeCount": 9, - "meaning": "tyrannize, oppress", - "kunyomi": [ - "しいた.げる" - ], - "onyomi": [ - "ギャク" - ], - "onyomiExamples": [ - { - "example": "虐待", - "reading": "ギャクタイ", - "meaning": "abuse, ill-treatment, maltreatment, mistreatment, cruelty" - }, - { - "example": "虐殺", - "reading": "ギャクサツ", - "meaning": "slaughter, massacre" - }, - { - "example": "自虐", - "reading": "ジギャク", - "meaning": "self-torture, masochism, inflicting damage to oneself" - }, - { - "example": "凌虐", - "reading": "リョウギャク", - "meaning": "humiliation, indignity, affront, assault" - } - ], - "kunyomiExamples": [ - { - "example": "虐げる", - "reading": "しいたげる", - "meaning": "to oppress, to persecute, to tyrannize" - } - ], - "radical": { - "symbol": "虍", - "meaning": "tiger stripes" - }, - "parts": [ - "匕", - "匚", - "卜", - "厂", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34384_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08650.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8650.gif", - "uri": "http://jisho.org/search/%E8%99%90%23kanji" - }, - { - "query": "及", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "544", - "strokeCount": 3, - "meaning": "reach out, exert, exercise, cause", - "kunyomi": [ - "およ.ぶ", - "およ.び", - "および", - "およ.ぼす" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "及第", - "reading": "キュウダイ", - "meaning": "passing (an examination), making the grade" - }, - { - "example": "及第者", - "reading": "キュウダイシャ", - "meaning": "successful examinee" - }, - { - "example": "波及", - "reading": "ハキュウ", - "meaning": "spread, extension, influence, aftereffect, ripple" - }, - { - "example": "責任追及", - "reading": "セキニンツイキュウ", - "meaning": "pursuing liability, finding out who is at fault, trying to pin the blame on someone" - } - ], - "kunyomiExamples": [ - { - "example": "及ぶ", - "reading": "およぶ", - "meaning": "to reach, to amount to, to befall, to happen to, to extend, to go on (for, until), to be up to the task, to come up to, to compare with, to be a match (for), to commit (a crime), to require (to do)" - }, - { - "example": "及び", - "reading": "および", - "meaning": "and, as well as" - }, - { - "example": "及び腰", - "reading": "およびごし", - "meaning": "bent back, indecisive attitude, timidity, lack of nerve" - }, - { - "example": "及び", - "reading": "および", - "meaning": "and, as well as" - }, - { - "example": "及び腰", - "reading": "およびごし", - "meaning": "bent back, indecisive attitude, timidity, lack of nerve" - }, - { - "example": "及ぼす", - "reading": "およぼす", - "meaning": "to exert (influence), to exercise, to cause (e.g. damage), to do (e.g. harm), to bring about (e.g. benefits), to extend, to have an effect (on)" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "ノ", - "丶", - "乃", - "及" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21450_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053ca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53ca.gif", - "uri": "http://jisho.org/search/%E5%8F%8A%23kanji" - }, - { - "query": "丘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1405", - "strokeCount": 5, - "meaning": "hill, knoll", - "kunyomi": [ - "おか" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "丘陵", - "reading": "キュウリョウ", - "meaning": "hill" - }, - { - "example": "丘疹", - "reading": "キュウシン", - "meaning": "pimple, papule" - }, - { - "example": "墳丘", - "reading": "フンキュウ", - "meaning": "tumulus, grave mound" - }, - { - "example": "砂丘", - "reading": "サキュウ", - "meaning": "sand dune, sand hill" - } - ], - "kunyomiExamples": [ - { - "example": "丘", - "reading": "おか", - "meaning": "hill, height, knoll, rising ground, bonus points awarded to the winner at the end of a game" - }, - { - "example": "岡辺", - "reading": "おかべ", - "meaning": "vicinity of a hill" - }, - { - "example": "小高い丘", - "reading": "こだかいおか", - "meaning": "small hill, low hill, hillock" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19992_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e18.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e18.gif", - "uri": "http://jisho.org/search/%E4%B8%98%23kanji" - }, - { - "query": "朽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1891", - "strokeCount": 6, - "meaning": "decay, rot, remain in seclusion", - "kunyomi": [ - "く.ちる" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "朽壊", - "reading": "キュウカイ", - "meaning": "rotting and crumbling" - }, - { - "example": "朽廃", - "reading": "キュウハイ", - "meaning": "decay, dilapidation (ruin)" - }, - { - "example": "腐朽", - "reading": "フキュウ", - "meaning": "deterioration, rot" - }, - { - "example": "永垂不朽", - "reading": "エイスイフキュウ", - "meaning": "one's fame or achievements being passed down eternally" - } - ], - "kunyomiExamples": [ - { - "example": "朽ちる", - "reading": "くちる", - "meaning": "to rot, to decay, to die in obscurity, to be forgotten with time" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "勹", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26429_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0673d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/673d.gif", - "uri": "http://jisho.org/search/%E6%9C%BD%23kanji" - }, - { - "query": "臼", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2048", - "strokeCount": 6, - "meaning": "mortar", - "kunyomi": [ - "うす", - "うすづ.く" - ], - "onyomi": [ - "キュウ", - "グ" - ], - "onyomiExamples": [ - { - "example": "臼蓋", - "reading": "キュウガイ", - "meaning": "acetabular roof" - }, - { - "example": "臼蓋形成不全", - "reading": "キュウガイケイセイフゼン", - "meaning": "acetabular dysplasia" - }, - { - "example": "亜脱臼", - "reading": "アダッキュウ", - "meaning": "subluxation" - }, - { - "example": "頸椎脱臼", - "reading": "ケイツイダッキュウ", - "meaning": "cervical dislocation" - } - ], - "kunyomiExamples": [ - { - "example": "臼", - "reading": "うす", - "meaning": "millstone, mortar" - }, - { - "example": "臼茸", - "reading": "うすたけ", - "meaning": "shaggy chanterelle (Turbinellus floccosus), scaly chanterelle, woolly chanterelle" - }, - { - "example": "提宇子", - "reading": "だいうす", - "meaning": "God" - }, - { - "example": "搗き臼", - "reading": "つきうす", - "meaning": "mortar (for pounding rice)" - }, - { - "example": "臼搗く", - "reading": "うすづく", - "meaning": "to pound (rice, etc.)" - } - ], - "radical": { - "symbol": "臼", - "meaning": "mortar" - }, - "parts": [ - "臼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33276_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081fc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81fc.gif", - "uri": "http://jisho.org/search/%E8%87%BC%23kanji" - }, - { - "query": "糾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1820", - "strokeCount": 9, - "meaning": "twist, ask, investigate, verify", - "kunyomi": [ - "ただ.す" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "糾合", - "reading": "キュウゴウ", - "meaning": "rally, muster" - }, - { - "example": "糾弾", - "reading": "キュウダン", - "meaning": "censure, denunciation, (verbal) attack, blaming" - }, - { - "example": "紛糾", - "reading": "フンキュウ", - "meaning": "complication, confusion, disorder" - } - ], - "kunyomiExamples": [ - { - "example": "糺す", - "reading": "ただす", - "meaning": "to ascertain, to confirm, to verify, to make sure of" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "十", - "小", - "幺", - "糸", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31998_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07cfe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7cfe.gif", - "uri": "http://jisho.org/search/%E7%B3%BE%23kanji" - }, - { - "query": "嗅", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2480", - "strokeCount": 13, - "meaning": "smell, sniff, scent", - "kunyomi": [ - "か.ぐ" - ], - "onyomi": [ - "キュウ" - ], - "onyomiExamples": [ - { - "example": "嗅覚", - "reading": "キュウカク", - "meaning": "sense of smell, olfaction" - }, - { - "example": "嗅覚受容神経", - "reading": "キュウカクジュヨウシンケイ", - "meaning": "olfactory receptor neuron" - } - ], - "kunyomiExamples": [ - { - "example": "嗅ぐ", - "reading": "かぐ", - "meaning": "to sniff, to smell" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "大", - "犬", - "目", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21957_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/055c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/55c5.gif", - "uri": "http://jisho.org/search/%E5%97%85%23kanji" - }, - { - "query": "窮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1756", - "strokeCount": 15, - "meaning": "hard up, destitute, suffer, perplexed, cornered", - "kunyomi": [ - "きわ.める", - "きわ.まる", - "きわ.まり", - "きわ.み" - ], - "onyomi": [ - "キュウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "窮屈", - "reading": "キュウクツ", - "meaning": "narrow, tight, cramped, formal, stiff, strict, ceremonious, rigid, constrained, uncomfortable, tight (e.g. finances)" - }, - { - "example": "究極", - "reading": "キュウキョク", - "meaning": "ultimate, final, last, eventual" - }, - { - "example": "無窮", - "reading": "ムキュウ", - "meaning": "eternity, infinitude, immortality" - }, - { - "example": "天壌無窮", - "reading": "テンジョウムキュウ", - "meaning": "as eternal as heaven and earth" - } - ], - "kunyomiExamples": [ - { - "example": "極める", - "reading": "きわめる", - "meaning": "to carry to extremes, to go to the end of something, to investigate thoroughly, to master" - }, - { - "example": "極まる", - "reading": "きわまる", - "meaning": "to reach an extreme, to reach a limit, to terminate, to come to an end, extremely, to be stuck, to be in a dilemma, to be at a loss, to be decided, to be settled" - }, - { - "example": "極まり", - "reading": "きわまり", - "meaning": "extremity, end, bound, limit" - }, - { - "example": "極まりない", - "reading": "きわまりない", - "meaning": "extremely, in the extreme, knows no bounds (e.g. rudeness), unparalleled, boundless (e.g. universe, ocean), limitless" - }, - { - "example": "極み", - "reading": "きわみ", - "meaning": "height, acme, extremity, peak, end, limit" - }, - { - "example": "窮みなき", - "reading": "きわみなき", - "meaning": "without limit, endless" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "宀", - "弓", - "穴", - "身" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31406_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07aae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7aae.gif", - "uri": "http://jisho.org/search/%E7%AA%AE%23kanji" - }, - { - "query": "巨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "892", - "strokeCount": 5, - "meaning": "gigantic, big, large, great", - "kunyomi": [], - "onyomi": [ - "キョ" - ], - "onyomiExamples": [ - { - "example": "巨匠", - "reading": "キョショウ", - "meaning": "master, masterhand, maestro" - }, - { - "example": "巨額", - "reading": "キョガク", - "meaning": "huge sum (esp. of money), enormous sum, massive amount" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "工", - "meaning": "work" - }, - "parts": [ - "匚", - "巨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24040_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05de8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5de8.gif", - "uri": "http://jisho.org/search/%E5%B7%A8%23kanji" - }, - { - "query": "拒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "863", - "strokeCount": 8, - "meaning": "repel, refuse, reject, decline", - "kunyomi": [ - "こば.む" - ], - "onyomi": [ - "キョ", - "ゴ" - ], - "onyomiExamples": [ - { - "example": "拒否", - "reading": "キョヒ", - "meaning": "refusal, rejection, denial, veto" - }, - { - "example": "拒絶反応", - "reading": "キョゼツハンノウ", - "meaning": "(organ) rejection, unthinking dismissal, strong reaction (against)" - }, - { - "example": "抗拒", - "reading": "コウキョ", - "meaning": "resistance, opposition" - }, - { - "example": "着拒", - "reading": "チャッキョ", - "meaning": "blocking communications (from a phone number or an e-mail address)" - } - ], - "kunyomiExamples": [ - { - "example": "拒む", - "reading": "こばむ", - "meaning": "to refuse, to reject, to decline, to prevent (from doing), to deny (e.g. access), to block" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "匚", - "巨", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25298_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062d2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62d2.gif", - "uri": "http://jisho.org/search/%E6%8B%92%23kanji" - }, - { - "query": "拠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "858", - "strokeCount": 8, - "meaning": "foothold, based on, follow, therefore", - "kunyomi": [ - "よ.る" - ], - "onyomi": [ - "キョ", - "コ" - ], - "onyomiExamples": [ - { - "example": "拠点", - "reading": "キョテン", - "meaning": "position, location, base, point, site" - }, - { - "example": "拠出", - "reading": "キョシュツ", - "meaning": "donation, contribution" - }, - { - "example": "急遽", - "reading": "キュウキョ", - "meaning": "hurriedly, in a hurry, in haste, sudden" - }, - { - "example": "群雄割拠", - "reading": "グンユウカッキョ", - "meaning": "rivalry of local warlords, a number of powerful (talented, influential) persons standing by themselves in a given field" - }, - { - "example": "有罪証拠", - "reading": "ユウザイショウコ", - "meaning": "corpus delicti" - }, - { - "example": "事例証拠", - "reading": "ジレイショウコ", - "meaning": "anecdotal evidence" - } - ], - "kunyomiExamples": [ - { - "example": "因る", - "reading": "よる", - "meaning": "to be due to, to be caused by, to depend on, to turn on, to be based on, to come from, to be based at (a location, an organization), to be headquartered at" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "几", - "夂", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25312_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062e0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62e0.gif", - "uri": "http://jisho.org/search/%E6%8B%A0%23kanji" - }, - { - "query": "虚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1454", - "strokeCount": 11, - "meaning": "void, emptiness, unpreparedness, crack, fissure, untruth", - "kunyomi": [ - "むな.しい", - "うつ.ろ" - ], - "onyomi": [ - "キョ", - "コ" - ], - "onyomiExamples": [ - { - "example": "虚", - "reading": "キョ", - "meaning": "unpreparedness, falsehood, Chinese \"Emptiness\" constellation (one of the 28 mansions)" - }, - { - "example": "虚偽", - "reading": "キョギ", - "meaning": "falsehood, untruth, lie, misinformation, fallacy (logic)" - }, - { - "example": "盈虚", - "reading": "エイキョ", - "meaning": "waxing and waning of the moon, phase of the moon, rising and falling (of fortune)" - }, - { - "example": "太虚", - "reading": "タイキョ", - "meaning": "the sky, the universe, taixu (the great vacuity, in Chinese philosophy, the primordial substance that gives rise to qi)" - }, - { - "example": "虚偽", - "reading": "キョギ", - "meaning": "falsehood, untruth, lie, misinformation, fallacy (logic)" - }, - { - "example": "虚空", - "reading": "コクウ", - "meaning": "empty space, empty sky" - } - ], - "kunyomiExamples": [ - { - "example": "虚しい", - "reading": "むなしい", - "meaning": "empty, void, vacant, vain, fruitless, futile, ineffective, lifeless" - }, - { - "example": "虚ろ", - "reading": "うつろ", - "meaning": "cavity, hollow, void, hollow (voice, smile, etc.), blank (eyes, look, etc.), vacant (expression, stare, etc.), empty (words, heart, etc.)" - }, - { - "example": "虚ろな表情", - "reading": "うつろなひょうじょう", - "meaning": "vacant expression (on one's face), blank expression" - } - ], - "radical": { - "symbol": "虍", - "meaning": "tiger stripes" - }, - "parts": [ - "一", - "匕", - "卜", - "厂", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34394_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0865a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/865a.gif", - "uri": "http://jisho.org/search/%E8%99%9A%23kanji" - }, - { - "query": "距", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1191", - "strokeCount": 12, - "meaning": "long-distance, spur, fetlock", - "kunyomi": [ - "へだ.たる", - "けづめ" - ], - "onyomi": [ - "キョ" - ], - "onyomiExamples": [ - { - "example": "距", - "reading": "キョ", - "meaning": "tubular nectary, spur" - }, - { - "example": "距離", - "reading": "キョリ", - "meaning": "distance, range" - }, - { - "example": "緯距", - "reading": "イキョ", - "meaning": "latitude" - }, - { - "example": "経距", - "reading": "ケイキョ", - "meaning": "departure (surveying, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "隔たる", - "reading": "へだたる", - "meaning": "to be distant" - }, - { - "example": "蹴爪", - "reading": "けづめ", - "meaning": "fetlock (horse, etc.), spur (chicken, etc.), cockspur, dewclaw (dog, etc.)" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "匚", - "口", - "巨", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36317_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ddd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ddd.gif", - "uri": "http://jisho.org/search/%E8%B7%9D%23kanji" - }, - { - "query": "御", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1087", - "strokeCount": 12, - "meaning": "honorable, manipulate, govern", - "kunyomi": [ - "おん-", - "お-", - "み-" - ], - "onyomi": [ - "ギョ", - "ゴ" - ], - "onyomiExamples": [ - { - "example": "御", - "reading": "ギョ", - "meaning": "honorific affix, honorific prefix" - }, - { - "example": "御苑", - "reading": "ギョエン", - "meaning": "imperial garden" - }, - { - "example": "自動制御", - "reading": "ジドウセイギョ", - "meaning": "automatic control" - }, - { - "example": "構成制御", - "reading": "コウセイセイギョ", - "meaning": "configuration control" - }, - { - "example": "御", - "reading": "ゴ", - "meaning": "honorific/polite/humble prefix, honorific suffix" - }, - { - "example": "御所", - "reading": "ゴショ", - "meaning": "imperial palace (esp. Kyoto Imperial Palace), imperial residence, residence of a shogun, minister, etc., emperor, ex-emperor, empress, imperial prince, shogun, minister" - }, - { - "example": "甥御", - "reading": "オイゴ", - "meaning": "(another person's) nephew" - }, - { - "example": "大御", - "reading": "オオイゴ", - "meaning": "older lady" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "ノ", - "乞", - "卩", - "彳", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24481_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fa1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fa1.gif", - "uri": "http://jisho.org/search/%E5%BE%A1%23kanji" - }, - { - "query": "凶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1673", - "strokeCount": 4, - "meaning": "villain, evil, bad luck, disaster", - "kunyomi": [], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "凶", - "reading": "キョウ", - "meaning": "bad luck, bad fortune, evil, wickedness" - }, - { - "example": "凶悪", - "reading": "キョウアク", - "meaning": "atrocious, fiendish, brutal, villainous" - }, - { - "example": "元凶", - "reading": "ゲンキョウ", - "meaning": "ringleader, main culprit, main cause, source" - }, - { - "example": "大凶", - "reading": "ダイキョウ", - "meaning": "terrible luck, very bad luck" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "凵", - "meaning": "container, open mouth" - }, - "parts": [ - "ノ", - "丶", - "凵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20982_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051f6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51f6.gif", - "uri": "http://jisho.org/search/%E5%87%B6%23kanji" - }, - { - "query": "叫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1426", - "strokeCount": 6, - "meaning": "shout, exclaim, yell", - "kunyomi": [ - "さけ.ぶ" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "叫喚", - "reading": "キョウカン", - "meaning": "shout, scream" - }, - { - "example": "叫号", - "reading": "キョウゴウ", - "meaning": "crying aloud" - }, - { - "example": "哀叫", - "reading": "アイキョウ", - "meaning": "crying loudly with sadness" - } - ], - "kunyomiExamples": [ - { - "example": "叫ぶ", - "reading": "さけぶ", - "meaning": "to shout, to cry, to scream, to shriek, to yell, to exclaim, to clamor (for or against), to clamour (for or against)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "十", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21483_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053eb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53eb.gif", - "uri": "http://jisho.org/search/%E5%8F%AB%23kanji" - }, - { - "query": "狂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1425", - "strokeCount": 7, - "meaning": "lunatic, insane, crazy, confuse", - "kunyomi": [ - "くる.う", - "くる.おしい", - "くるお.しい" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "狂", - "reading": "キョウ", - "meaning": "(some type of) enthusiast, somebody possessed of a (certain kind of) mental abnormality" - }, - { - "example": "狂気", - "reading": "キョウキ", - "meaning": "madness, insanity" - }, - { - "example": "粋狂", - "reading": "スイキョウ", - "meaning": "whim, vagary, capriciousness, eccentricity" - }, - { - "example": "誇大妄想狂", - "reading": "コダイモウソウキョウ", - "meaning": "megalomania" - } - ], - "kunyomiExamples": [ - { - "example": "狂う", - "reading": "くるう", - "meaning": "to go mad, to lose one's mind, to go crazy, to go insane, to get out of order, to go amiss, to malfunction, to become imprecise, to go wrong (of a plan or expectation, etc.), to fall through, to get mixed up, to go crazy (over someone or something), to get enthusiastic, to go wild" - }, - { - "example": "狂おしい", - "reading": "くるおしい", - "meaning": "mad (with grief, love, etc.), crazy, out of one's mind, on the verge of insanity" - }, - { - "example": "狂おしい", - "reading": "くるおしい", - "meaning": "mad (with grief, love, etc.), crazy, out of one's mind, on the verge of insanity" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "犯", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29378_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072c2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72c2.gif", - "uri": "http://jisho.org/search/%E7%8B%82%23kanji" - }, - { - "query": "享", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1893", - "strokeCount": 8, - "meaning": "enjoy, receive, undergo, answer (phone), take, get, catch", - "kunyomi": [ - "う.ける" - ], - "onyomi": [ - "キョウ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "享受", - "reading": "キョウジュ", - "meaning": "reception, acceptance, enjoyment, being given" - }, - { - "example": "饗宴", - "reading": "キョウエン", - "meaning": "feast, banquet" - }, - { - "example": "永享", - "reading": "エイキョウ", - "meaning": "Eikyō era (1429.9.5-1441.2.17)" - }, - { - "example": "貞享", - "reading": "ジョウキョウ", - "meaning": "Jōkyō era (1684.2.21-1688.9.30)" - } - ], - "kunyomiExamples": [ - { - "example": "受ける", - "reading": "うける", - "meaning": "to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well" - } - ], - "radical": { - "symbol": "亠", - "meaning": "lid" - }, - "parts": [ - "亠", - "口", - "子" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20139_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04eab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4eab.gif", - "uri": "http://jisho.org/search/%E4%BA%AB%23kanji" - }, - { - "query": "況", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "490", - "strokeCount": 8, - "meaning": "condition, situation", - "kunyomi": [ - "まし.て", - "いわ.んや", - "おもむき" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "実況", - "reading": "ジッキョウ", - "meaning": "actual state (of things), real state, actual condition, real condition, actual scene, live, on-the-scene, reporting live, live coverage, live broadcasting, Let's Play" - }, - { - "example": "市況", - "reading": "シキョウ", - "meaning": "market conditions" - } - ], - "kunyomiExamples": [ - { - "example": "況して", - "reading": "まして", - "meaning": "still more, to say nothing of, not to mention, still less" - }, - { - "example": "況してや", - "reading": "ましてや", - "meaning": "much less, to say nothing of" - }, - { - "example": "況んや", - "reading": "いわんや", - "meaning": "much more, not to mention, not to speak of, to say nothing of, let alone" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "儿", - "口", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27841_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cc1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cc1.gif", - "uri": "http://jisho.org/search/%E6%B3%81%23kanji" - }, - { - "query": "峡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1833", - "strokeCount": 9, - "meaning": "gorge, ravine", - "kunyomi": [ - "はざま" - ], - "onyomi": [ - "キョウ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "峡谷", - "reading": "キョウコク", - "meaning": "gorge, ravine, canyon, glen" - }, - { - "example": "峡間", - "reading": "キョウカン", - "meaning": "between the mountains" - }, - { - "example": "イギリス海峡", - "reading": "イギリスカイキョウ", - "meaning": "English Channel" - }, - { - "example": "魔の海峡", - "reading": "マノカイキョウ", - "meaning": "dangerous strait" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "二", - "亠", - "人", - "大", - "山", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23777_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ce1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ce1.gif", - "uri": "http://jisho.org/search/%E5%B3%A1%23kanji" - }, - { - "query": "挟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1870", - "strokeCount": 9, - "meaning": "pinch, between", - "kunyomi": [ - "はさ.む", - "はさ.まる", - "わきばさ.む", - "さしはさ.む" - ], - "onyomi": [ - "キョウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "挟殺", - "reading": "キョウサツ", - "meaning": "rundown" - }, - { - "example": "挟瞼器", - "reading": "キョウケンキ", - "meaning": "entropion forceps" - } - ], - "kunyomiExamples": [ - { - "example": "挟む", - "reading": "はさむ", - "meaning": "to hold between (e.g. one's fingers, chopsticks), to grip (from both sides), to put between, to sandwich between, to insert, to interpose, to catch (e.g. a finger in a door), to trap, to pinch, to insert (e.g. a break into proceedings), to interpose (e.g. an objection), to interject, to throw in (e.g. a joke), to be on either side of (a road, table, etc.), to have between each other, to be across (a street, river, etc.), to harbour (feelings), to cast (e.g. doubt)" - }, - { - "example": "挟まる", - "reading": "はさまる", - "meaning": "to get between, to be caught in" - }, - { - "example": "差し挟む", - "reading": "さしはさむ", - "meaning": "to insert, to interrupt, to slip in a word, to harbor (e.g. doubts), to harbour, to entertain (e.g. a theory)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "丶", - "二", - "亠", - "人", - "大", - "并", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25375_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0631f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/631f.gif", - "uri": "http://jisho.org/search/%E6%8C%9F%23kanji" - }, - { - "query": "狭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1346", - "strokeCount": 9, - "meaning": "cramped, narrow, contract, tight", - "kunyomi": [ - "せま.い", - "せば.める", - "せば.まる", - "さ" - ], - "onyomi": [ - "キョウ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "狭心症", - "reading": "キョウシンショウ", - "meaning": "heart attack, angina pectoris" - }, - { - "example": "狭義", - "reading": "キョウギ", - "meaning": "narrow sense (e.g. of a word)" - }, - { - "example": "偏狭", - "reading": "ヘンキョウ", - "meaning": "narrow-mindedness, intolerance, illiberality, narrowness" - }, - { - "example": "広狭", - "reading": "コウキョウ", - "meaning": "width, width and narrowness" - } - ], - "kunyomiExamples": [ - { - "example": "狭い", - "reading": "せまい", - "meaning": "narrow, confined, small, cramped, limited, narrow-minded, confining" - }, - { - "example": "狭める", - "reading": "せばめる", - "meaning": "to narrow, to reduce, to contract" - }, - { - "example": "狭まる", - "reading": "せばまる", - "meaning": "to narrow, to contract" - }, - { - "example": "狭", - "reading": "さ", - "meaning": "narrow, thin" - }, - { - "example": "狭霧", - "reading": "さぎり", - "meaning": "mist, fog" - }, - { - "example": "若狭", - "reading": "わかさ", - "meaning": "Wakasa (former province located in the south of present-day Fukui Prefecture)" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "丶", - "二", - "亠", - "人", - "大", - "并", - "犯" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29421_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72ed.gif", - "uri": "http://jisho.org/search/%E7%8B%AD%23kanji" - }, - { - "query": "恐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "878", - "strokeCount": 10, - "meaning": "fear, dread, awe", - "kunyomi": [ - "おそ.れる", - "おそ.る", - "おそ.ろしい", - "こわ.い", - "こわ.がる" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "恐慌", - "reading": "キョウコウ", - "meaning": "panic, scare, consternation" - }, - { - "example": "恐喝", - "reading": "キョウカツ", - "meaning": "blackmail, extortion, threat (to extort money)" - }, - { - "example": "戦々恐々", - "reading": "センセンキョウキョウ", - "meaning": "trembling with fear, filled with trepidation" - }, - { - "example": "最恐", - "reading": "サイキョウ", - "meaning": "scariest, most frightening" - } - ], - "kunyomiExamples": [ - { - "example": "恐れる", - "reading": "おそれる", - "meaning": "to fear, to be afraid of" - }, - { - "example": "恐る", - "reading": "おそる", - "meaning": "to fear, to be afraid" - }, - { - "example": "恐る恐る", - "reading": "おそるおそる", - "meaning": "fearfully, timidly, nervously, cautiously, gingerly" - }, - { - "example": "恐ろしい", - "reading": "おそろしい", - "meaning": "terrible, dreadful, terrifying, frightening, surprising, startling, tremendous, amazing" - }, - { - "example": "恐ろしい思いをする", - "reading": "おそろしいおもいをする", - "meaning": "to find oneself fearful, to have an awful time" - }, - { - "example": "怖い", - "reading": "こわい", - "meaning": "scary, frightening, eerie, dreadful" - }, - { - "example": "怖いもの見たさ", - "reading": "こわいものみたさ", - "meaning": "curiosity of fear, urge to look at something frightening, wanting to take a peek at something unpleasant" - }, - { - "example": "怖がる", - "reading": "こわがる", - "meaning": "to be afraid of, to fear, to dread, to be nervous (about), to be shy (of)" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "丶", - "几", - "工", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24656_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06050.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6050.gif", - "uri": "http://jisho.org/search/%E6%81%90%23kanji" - }, - { - "query": "恭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1737", - "strokeCount": 10, - "meaning": "respect, reverent", - "kunyomi": [ - "うやうや.しい" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "恐悦", - "reading": "キョウエツ", - "meaning": "delight" - }, - { - "example": "恭賀", - "reading": "キョウガ", - "meaning": "respectful congratulations" - }, - { - "example": "允恭", - "reading": "インキョウ", - "meaning": "courtesy, sincerity" - } - ], - "kunyomiExamples": [ - { - "example": "恭しい", - "reading": "うやうやしい", - "meaning": "polite, respectful, reverent" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ハ", - "井", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24685_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0606d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/606d.gif", - "uri": "http://jisho.org/search/%E6%81%AD%23kanji" - }, - { - "query": "脅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1183", - "strokeCount": 10, - "meaning": "threaten, coerce", - "kunyomi": [ - "おびや.かす", - "おど.す", - "おど.かす" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "脅迫", - "reading": "キョウハク", - "meaning": "threat, menace, coercion, terrorism" - }, - { - "example": "脅威", - "reading": "キョウイ", - "meaning": "threat, menace" - } - ], - "kunyomiExamples": [ - { - "example": "脅かす", - "reading": "おびやかす", - "meaning": "to intimidate, to frighten, to scare, to threaten (e.g. peace), to jeopardize, to endanger, to imperil" - }, - { - "example": "脅す", - "reading": "おどす", - "meaning": "to threaten, to menace, to frighten (into doing)" - }, - { - "example": "脅かす", - "reading": "おどかす", - "meaning": "to threaten, to menace, to intimidate, to startle, to frighten, to scare" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "力", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33029_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08105.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8105.gif", - "uri": "http://jisho.org/search/%E8%84%85%23kanji" - }, - { - "query": "矯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2105", - "strokeCount": 17, - "meaning": "rectify, straighten, correct, reform, cure, control, pretend, falsify", - "kunyomi": [ - "た.める" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "矯正", - "reading": "キョウセイ", - "meaning": "correction (of fault, defect, flaw, etc.), remedy, rectification, redress, reform" - }, - { - "example": "矯角殺牛", - "reading": "キョウカクサツギュウ", - "meaning": "trying to straighten the horns of a bull, and killing it in the process, trying to correct a small defect and ruining the whole thing, the cure is worse than the disease" - }, - { - "example": "奇矯", - "reading": "キキョウ", - "meaning": "eccentric" - } - ], - "kunyomiExamples": [ - { - "example": "矯める", - "reading": "ためる", - "meaning": "to straighten, to correct, to cure, to falsify" - } - ], - "radical": { - "symbol": "矢", - "meaning": "arrow" - }, - "parts": [ - "ノ", - "乞", - "冂", - "口", - "大", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30703_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077ef.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77ef.gif", - "uri": "http://jisho.org/search/%E7%9F%AF%23kanji" - }, - { - "query": "響", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "502", - "strokeCount": 20, - "meaning": "echo, sound, resound, ring, vibrate", - "kunyomi": [ - "ひび.く" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "響岩", - "reading": "キョウガン", - "meaning": "phonolite, clinkstone" - }, - { - "example": "響笛", - "reading": "キョウテキ", - "meaning": "vibrating pipe" - }, - { - "example": "交響", - "reading": "コウキョウ", - "meaning": "reverberation" - }, - { - "example": "好影響", - "reading": "コウエイキョウ", - "meaning": "favorable influence, favourable influence" - } - ], - "kunyomiExamples": [ - { - "example": "響く", - "reading": "ひびく", - "meaning": "to resound, to be heard far away, to reverberate, to shake, to vibrate, to come (home), to remain (with someone), to have an effect, to make an impression" - } - ], - "radical": { - "symbol": "音", - "meaning": "sound" - }, - "parts": [ - "幺", - "日", - "立", - "艮", - "邦", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38911_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/097ff.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/97ff.gif", - "uri": "http://jisho.org/search/%E9%9F%BF%23kanji" - }, - { - "query": "驚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1141", - "strokeCount": 22, - "meaning": "wonder, be surprised, frightened, amazed", - "kunyomi": [ - "おどろ.く", - "おどろ.かす" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "驚異", - "reading": "キョウイ", - "meaning": "wonder, miracle, amazement, prodigy" - }, - { - "example": "驚愕", - "reading": "キョウガク", - "meaning": "astonishment, amazement, surprise, fright, shock" - }, - { - "example": "一驚", - "reading": "イッキョウ", - "meaning": "surprise, amazement" - }, - { - "example": "吃驚", - "reading": "キッキョウ", - "meaning": "surprise" - } - ], - "kunyomiExamples": [ - { - "example": "驚く", - "reading": "おどろく", - "meaning": "to be surprised, to be astonished" - }, - { - "example": "驚くほど", - "reading": "おどろくほど", - "meaning": "to a surprising degree, to a remarkable extent, surprisingly, astonishingly, amazingly, alarmingly" - }, - { - "example": "驚かす", - "reading": "おどろかす", - "meaning": "to surprise, to frighten, to create a stir" - } - ], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "乞", - "勹", - "口", - "夂", - "攵", - "杰", - "艾", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39514_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09a5a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9a5a.gif", - "uri": "http://jisho.org/search/%E9%A9%9A%23kanji" - }, - { - "query": "仰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1573", - "strokeCount": 6, - "meaning": "face-up, look up, depend, seek, respect, rever, drink, take", - "kunyomi": [ - "あお.ぐ", - "おお.せ", - "お.っしゃる", - "おっしゃ.る" - ], - "onyomi": [ - "ギョウ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "仰天", - "reading": "ギョウテン", - "meaning": "being amazed, being horrified, being taken aback" - }, - { - "example": "仰角", - "reading": "ギョウカク", - "meaning": "angle of elevation" - }, - { - "example": "大仰", - "reading": "オオギョウ", - "meaning": "exaggeration" - }, - { - "example": "景仰", - "reading": "ケイコウ", - "meaning": "adoration, admiration, reverence" - }, - { - "example": "景仰", - "reading": "ケイコウ", - "meaning": "adoration, admiration, reverence" - }, - { - "example": "欽仰", - "reading": "キンギョウ", - "meaning": "reverence, adoration, veneration" - } - ], - "kunyomiExamples": [ - { - "example": "仰ぐ", - "reading": "あおぐ", - "meaning": "to look up (at), to look up to, to respect, to revere, to ask for (e.g. guidance), to seek, to turn to (someone) for, to depend on, to rely on, to gulp down, to quaff, to drink" - }, - { - "example": "仰せ", - "reading": "おおせ", - "meaning": "order (from one's superior), command, what you say, (someone's) words" - }, - { - "example": "仰せ言", - "reading": "おおせごと", - "meaning": "statement, order" - }, - { - "example": "仰る", - "reading": "おっしゃる", - "meaning": "to say, to speak, to tell, to talk" - }, - { - "example": "おっしゃる通り", - "reading": "おっしゃるとおり", - "meaning": "I agree with you, it is as (someone) says" - }, - { - "example": "仰る", - "reading": "おっしゃる", - "meaning": "to say, to speak, to tell, to talk" - }, - { - "example": "おっしゃる通り", - "reading": "おっしゃるとおり", - "meaning": "I agree with you, it is as (someone) says" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "卩" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20208_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ef0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ef0.gif", - "uri": "http://jisho.org/search/%E4%BB%B0%23kanji" - }, - { - "query": "暁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1924", - "strokeCount": 12, - "meaning": "daybreak, dawn, in the event", - "kunyomi": [ - "あかつき", - "さと.る" - ], - "onyomi": [ - "ギョウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "暁星", - "reading": "ギョウセイ", - "meaning": "morning star, Venus, rarity" - }, - { - "example": "暁鴉", - "reading": "ギョウア", - "meaning": "crow cawing in the morning, crows crying in the morning" - }, - { - "example": "早暁", - "reading": "ソウギョウ", - "meaning": "daybreak, dawn" - }, - { - "example": "通暁", - "reading": "ツウギョウ", - "meaning": "well versed, thorough knowledge" - }, - { - "example": "寒暁", - "reading": "カンギョウ", - "meaning": "cold winter dawn" - } - ], - "kunyomiExamples": [ - { - "example": "暁", - "reading": "あかつき", - "meaning": "dawn, daybreak, event (e.g. \"in the event of ...\"), occasion, occurrence" - }, - { - "example": "暁起き", - "reading": "あかつきおき", - "meaning": "waking up just before daybreak" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "儿", - "十", - "廾", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26241_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06681.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6681.gif", - "uri": "http://jisho.org/search/%E6%9A%81%23kanji" - }, - { - "query": "凝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1712", - "strokeCount": 16, - "meaning": "congeal, freeze, stiff, be absorbed in", - "kunyomi": [ - "こ.る", - "こ.らす", - "こご.らす", - "こご.らせる", - "こご.る" - ], - "onyomi": [ - "ギョウ" - ], - "onyomiExamples": [ - { - "example": "凝縮", - "reading": "ギョウシュク", - "meaning": "condensation (of ideas, emotions, etc.), condensation (of a vapour or gas)" - }, - { - "example": "凝固", - "reading": "ギョウコ", - "meaning": "coagulation, freezing, solidification" - } - ], - "kunyomiExamples": [ - { - "example": "凝る", - "reading": "こる", - "meaning": "to become stiff (of muscles), to get absorbed in, to develop a passion for, to devote oneself to, to become obsessed with, to get hooked on, to be elaborate, to be intricate, to be exquisite, to be particular about, to pay great attention to" - }, - { - "example": "凝らす", - "reading": "こらす", - "meaning": "to concentrate, to devote, to apply, to strain, to rack" - }, - { - "example": "凝らす", - "reading": "こごらす", - "meaning": "to freeze, to congeal, to concentrate one's attention on, to devote oneself to something, to ponder, to meditate" - }, - { - "example": "凝らせる", - "reading": "こごらせる", - "meaning": "to freeze, to congeal" - }, - { - "example": "凝る", - "reading": "こごる", - "meaning": "to congeal, to freeze" - } - ], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "マ", - "乞", - "冫", - "匕", - "疋", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20957_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051dd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51dd.gif", - "uri": "http://jisho.org/search/%E5%87%9D%23kanji" - }, - { - "query": "巾", - "found": true, - "taughtIn": "junior high", - "strokeCount": 3, - "meaning": "towel, hanging scroll, width, cloth radical (no. 50)", - "kunyomi": [ - "おお.い", - "ちきり", - "きれ" - ], - "onyomi": [ - "キン", - "フク" - ], - "onyomiExamples": [ - { - "example": "巾", - "reading": "キン", - "meaning": "napkin, cloth" - }, - { - "example": "巾単", - "reading": "キンタン", - "meaning": "unipotent" - }, - { - "example": "三角巾", - "reading": "サンカクキン", - "meaning": "triangular bandage, sling, triangular kerchief, bandana, bandanna" - }, - { - "example": "防災頭巾", - "reading": "ボウサイズキン", - "meaning": "disaster hood, protective hood worn during earthquakes and other disasters (e.g. to protect from falling objects)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "冂", - "巾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24062_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05dfe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5dfe.gif", - "uri": "http://jisho.org/search/%E5%B7%BE%23kanji" - }, - { - "query": "斤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 4, - "meaning": "axe, 1.32 lb, catty, counter for loaves of bread, axe radical (no. 69)", - "kunyomi": [], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "斤", - "reading": "キン", - "meaning": "kin, catty, traditional unit of weight, 600g, pound (unit of weight), loaf (of bread)" - }, - { - "example": "斤量", - "reading": "キンリョウ", - "meaning": "weight" - }, - { - "example": "英斤", - "reading": "エイキン", - "meaning": "pound (unit of weight)" - }, - { - "example": "一斤", - "reading": "イッキン", - "meaning": "1 kin (approx. 0.6kg), 1 loaf of bread" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "斤", - "meaning": "axe" - }, - "parts": [ - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26020_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065a4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65a4.gif", - "uri": "http://jisho.org/search/%E6%96%A4%23kanji" - }, - { - "query": "菌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1586", - "strokeCount": 11, - "meaning": "germ, fungus, bacteria", - "kunyomi": [], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "菌", - "reading": "キン", - "meaning": "fungus, germ, bacterium, bacillus" - }, - { - "example": "菌類", - "reading": "キンルイ", - "meaning": "fungus, fungi" - }, - { - "example": "球菌", - "reading": "キュウキン", - "meaning": "coccus" - }, - { - "example": "抗菌", - "reading": "コウキン", - "meaning": "antibacterial, antimicrobial" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "囗", - "禾", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33740_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/083cc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/83cc.gif", - "uri": "http://jisho.org/search/%E8%8F%8C%23kanji" - }, - { - "query": "琴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1591", - "strokeCount": 12, - "meaning": "harp, koto", - "kunyomi": [ - "こと" - ], - "onyomi": [ - "キン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "琴", - "reading": "キン", - "meaning": "qin (7-stringed Chinese zither), guqin" - }, - { - "example": "琴曲", - "reading": "キンキョク", - "meaning": "koto music" - }, - { - "example": "奚琴", - "reading": "ケイキン", - "meaning": "xiqin (2-stringed Chinese musical instrument)" - }, - { - "example": "携琴", - "reading": "ケイキン", - "meaning": "sihu (4-stringed Chinese musical instrument played with a bow)" - }, - { - "example": "和琴", - "reading": "ワゴン", - "meaning": "wagon, yamatogoto, six-stringed native Japanese zither" - } - ], - "kunyomiExamples": [ - { - "example": "琴", - "reading": "こと", - "meaning": "koto (13-stringed Japanese zither), stringed instrument, zheng (Chinese zither), guzheng" - }, - { - "example": "琴座", - "reading": "ことざ", - "meaning": "Lyra (constellation), the Lyre" - }, - { - "example": "箏の琴", - "reading": "そうのこと", - "meaning": "koto" - }, - { - "example": "琵琶の琴", - "reading": "びわのこと", - "meaning": "biwa (4 or 5-stringed Oriental lute)" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "一", - "个", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29748_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07434.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7434.gif", - "uri": "http://jisho.org/search/%E7%90%B4%23kanji" - }, - { - "query": "僅", - "found": true, - "taughtIn": "junior high", - "strokeCount": 12, - "meaning": "a wee bit", - "kunyomi": [ - "わず.か" - ], - "onyomi": [ - "キン", - "ゴン" - ], - "onyomiExamples": [ - { - "example": "僅々", - "reading": "キンキン", - "meaning": "only, just, merely, no more than" - }, - { - "example": "僅差", - "reading": "キンサ", - "meaning": "narrow margin, slim margin" - }, - { - "example": "僅々", - "reading": "キンキン", - "meaning": "only, just, merely, no more than" - } - ], - "kunyomiExamples": [ - { - "example": "僅か", - "reading": "わずか", - "meaning": "(a) little, (a) few, slight, small (amount), trifling, meagre, meager, only, just, merely" - }, - { - "example": "僅かしか", - "reading": "わずかしか", - "meaning": "(nothing) but a little" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "二", - "化", - "口", - "土", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20677_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50c5.gif", - "uri": "http://jisho.org/search/%E5%83%85%23kanji" - }, - { - "query": "緊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "677", - "strokeCount": 15, - "meaning": "tense, solid, hard, reliable, tight", - "kunyomi": [ - "し.める", - "し.まる" - ], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "緊縮", - "reading": "キンシュク", - "meaning": "shrinkage, contraction, economy, retrenchment" - }, - { - "example": "緊急", - "reading": "キンキュウ", - "meaning": "urgency, emergency" - }, - { - "example": "喫緊", - "reading": "キッキン", - "meaning": "urgent, pressing, exigent" - } - ], - "kunyomiExamples": [ - { - "example": "緊める", - "reading": "しめる", - "meaning": "to be strict with" - }, - { - "example": "閉まる", - "reading": "しまる", - "meaning": "to be shut, to close, to be closed, to be firm (of a body, face, etc.), to be well-knit, to be locked, to tighten, to be tightened, to become sober, to become tense" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "又", - "小", - "幺", - "糸", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32202_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dca.gif", - "uri": "http://jisho.org/search/%E7%B7%8A%23kanji" - }, - { - "query": "錦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1440", - "strokeCount": 16, - "meaning": "brocade, fine dress, honors", - "kunyomi": [ - "にしき" - ], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "錦華鳥", - "reading": "キンカチョウ", - "meaning": "zebra finch (Taeniopygia guttata)" - }, - { - "example": "錦旗", - "reading": "キンキ", - "meaning": "pennant, gold-brocade flag" - }, - { - "example": "蜀錦", - "reading": "ショッキン", - "meaning": "type of brocade" - } - ], - "kunyomiExamples": [ - { - "example": "錦", - "reading": "にしき", - "meaning": "brocade, fine dress, fine clothes" - }, - { - "example": "錦絵", - "reading": "にしきえ", - "meaning": "nishiki-e, multi-colour woodblock print" - }, - { - "example": "蜀江の錦", - "reading": "しょっこうのにしき", - "meaning": "type of red brocade originally from the ancient Chinese country of Shu and passed on in Japan, type of brocade made in Sichuan during the Ming period" - }, - { - "example": "綾錦", - "reading": "あやにしき", - "meaning": "twill damask and brocade" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "巾", - "白", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37670_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09326.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9326.gif", - "uri": "http://jisho.org/search/%E9%8C%A6%23kanji" - }, - { - "query": "謹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2068", - "strokeCount": 17, - "meaning": "discreet, reverently, humbly", - "kunyomi": [ - "つつし.む" - ], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "謹慎", - "reading": "キンシン", - "meaning": "self restraint, moderating one's behaviour, penitence, discipline, confinement to one's home, house arrest" - }, - { - "example": "謹賀新年", - "reading": "キンガシンネン", - "meaning": "Happy New Year" - }, - { - "example": "細謹", - "reading": "サイキン", - "meaning": "slight flaw" - } - ], - "kunyomiExamples": [ - { - "example": "慎む", - "reading": "つつしむ", - "meaning": "to be careful, to be discreet, to do in moderation, to refrain (from overdoing), to abstain, to be reverent, to be purified, to be chaste" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "二", - "口", - "土", - "艾", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35641_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b39.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b39.gif", - "uri": "http://jisho.org/search/%E8%AC%B9%23kanji" - }, - { - "query": "襟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2030", - "strokeCount": 18, - "meaning": "collar, neck, lapel, one's inner feelings", - "kunyomi": [ - "えり" - ], - "onyomi": [ - "キン" - ], - "onyomiExamples": [ - { - "example": "襟懐", - "reading": "キンカイ", - "meaning": "(one's) inner thoughts, feelings" - }, - { - "example": "襟度", - "reading": "キンド", - "meaning": "magnanimity, generosity, welcoming personality" - }, - { - "example": "胸襟", - "reading": "キョウキン", - "meaning": "one's heart" - }, - { - "example": "開襟", - "reading": "カイキン", - "meaning": "unbuttoning a collar, opening up (one's heart), open-necked shirt" - } - ], - "kunyomiExamples": [ - { - "example": "襟", - "reading": "えり", - "meaning": "collar, lapel, neckband, neck, nape of the neck, scruff of the neck" - }, - { - "example": "襟巻き", - "reading": "えりまき", - "meaning": "muffler (often fur), scarf, comforter" - }, - { - "example": "台襟", - "reading": "だいえり", - "meaning": "neckband (of a shirt)" - }, - { - "example": "掛け襟", - "reading": "かけえり", - "meaning": "protective collar on kimono or bed clothes" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "二", - "初", - "小", - "木", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35167_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0895f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/895f.gif", - "uri": "http://jisho.org/search/%E8%A5%9F%23kanji" - }, - { - "query": "吟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1956", - "strokeCount": 7, - "meaning": "versify, singing, recital", - "kunyomi": [], - "onyomi": [ - "ギン" - ], - "onyomiExamples": [ - { - "example": "吟", - "reading": "ギン", - "meaning": "recitation (of a poem), chanting, singing, composition (of a poem), composed poem, classical Chinese poetry form, stress of sound in noh song" - }, - { - "example": "吟味", - "reading": "ギンミ", - "meaning": "close examination, careful investigation, close inspection, careful selection, inquiry, enquiry, scrutiny, testing, investigation of a crime, inquiry into someone's guilt, winner (of the most rounds, i.e. a full game), reciting and appreciating traditional poetry" - }, - { - "example": "愛吟", - "reading": "アイギン", - "meaning": "favourite poem or song, favorite poem or song, lover of poetry and song" - }, - { - "example": "詠吟", - "reading": "エイギン", - "meaning": "reciting poetry" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "个", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21535_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0541f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/541f.gif", - "uri": "http://jisho.org/search/%E5%90%9F%23kanji" - }, - { - "query": "駆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1033", - "strokeCount": 14, - "meaning": "drive, run, gallop, advance, inspire, impel", - "kunyomi": [ - "か.ける", - "か.る" - ], - "onyomi": [ - "ク" - ], - "onyomiExamples": [ - { - "example": "駆使", - "reading": "クシ", - "meaning": "using freely, making full use of, having a good command of, working (someone) hard, driving (someone) on" - }, - { - "example": "駆除", - "reading": "クジョ", - "meaning": "extermination (esp. pests), expulsion, destruction" - }, - { - "example": "先駆", - "reading": "センク", - "meaning": "forerunner, precursor, pioneer, leader, outrider, outriding" - }, - { - "example": "疾駆", - "reading": "シック", - "meaning": "riding fast, driving a horse fast" - } - ], - "kunyomiExamples": [ - { - "example": "翔る", - "reading": "かける", - "meaning": "to soar, to fly, to run, to dash" - }, - { - "example": "駆ける", - "reading": "かける", - "meaning": "to run, to dash, to race, to gallop (on horseback), to canter, to advance (against one's enemy), to charge (on horseback)" - }, - { - "example": "駆る", - "reading": "かる", - "meaning": "to spur on, to urge forward, to impel, to drive at high speed (e.g. a car)" - } - ], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "ノ", - "丶", - "匚", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39366_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/099c6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/99c6.gif", - "uri": "http://jisho.org/search/%E9%A7%86%23kanji" - }, - { - "query": "惧", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2097", - "strokeCount": 11, - "meaning": "fear, be afraid of, dread", - "kunyomi": [ - "おそ.れる" - ], - "onyomi": [ - "ク", - "グ" - ], - "onyomiExamples": [ - { - "example": "疑懼", - "reading": "ギク", - "meaning": "apprehension, uneasiness" - }, - { - "example": "絶滅危惧", - "reading": "ゼツメツキグ", - "meaning": "threatened (species), endangered" - }, - { - "example": "準絶滅危惧", - "reading": "ジュンゼツメツキグ", - "meaning": "near-threatened (species)" - } - ], - "kunyomiExamples": [ - { - "example": "恐れる", - "reading": "おそれる", - "meaning": "to fear, to be afraid of" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ハ", - "忙", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24807_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060e7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60e7.gif", - "uri": "http://jisho.org/search/%E6%83%A7%23kanji" - }, - { - "query": "愚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1551", - "strokeCount": 13, - "meaning": "foolish, folly, absurdity, stupid", - "kunyomi": [ - "おろ.か" - ], - "onyomi": [ - "グ" - ], - "onyomiExamples": [ - { - "example": "愚", - "reading": "グ", - "meaning": "foolishness, silliness, stupidity, folly, I, me" - }, - { - "example": "愚痴", - "reading": "グチ", - "meaning": "idle complaint, grumble, moha (ignorance, folly)" - }, - { - "example": "軽愚", - "reading": "ケイグ", - "meaning": "moronity, moron" - }, - { - "example": "大愚", - "reading": "タイグ", - "meaning": "great folly or fool" - } - ], - "kunyomiExamples": [ - { - "example": "愚か", - "reading": "おろか", - "meaning": "foolish, stupid" - }, - { - "example": "愚かしい", - "reading": "おろかしい", - "meaning": "foolish, stupid" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "冂", - "厶", - "心", - "田", - "禹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24858_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0611a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/611a.gif", - "uri": "http://jisho.org/search/%E6%84%9A%23kanji" - }, - { - "query": "偶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1602", - "strokeCount": 11, - "meaning": "accidentally, even number, couple, man & wife, same kind", - "kunyomi": [ - "たま" - ], - "onyomi": [ - "グウ" - ], - "onyomiExamples": [ - { - "example": "偶", - "reading": "グウ", - "meaning": "even number, even, spouse, mate" - }, - { - "example": "偶然", - "reading": "グウゼン", - "meaning": "coincidence, chance, accident, fortuity, by chance, unexpectedly, accidentally, contingency (philosophy)" - }, - { - "example": "土偶", - "reading": "ドグウ", - "meaning": "earthen figure, clay figure, dogū, clay figurines from the late Jōmon period" - }, - { - "example": "配偶", - "reading": "ハイグウ", - "meaning": "combination, spouse, husband or wife, partner, married couple, husband and wife" - } - ], - "kunyomiExamples": [ - { - "example": "偶", - "reading": "たま", - "meaning": "occasional, infrequent, rare" - }, - { - "example": "偶々", - "reading": "たまたま", - "meaning": "occasionally, once in a while, seldom, casually, unexpectedly, accidentally, by chance" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "冂", - "化", - "厶", - "田", - "禹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20598_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05076.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5076.gif", - "uri": "http://jisho.org/search/%E5%81%B6%23kanji" - }, - { - "query": "遇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1343", - "strokeCount": 12, - "meaning": "meet, encounter, interview, treat, entertain, receive, deal with", - "kunyomi": [ - "あ.う" - ], - "onyomi": [ - "グウ" - ], - "onyomiExamples": [ - { - "example": "遇す", - "reading": "グウス", - "meaning": "to entertain, to treat" - }, - { - "example": "遇する", - "reading": "グウスル", - "meaning": "to entertain, to treat" - }, - { - "example": "最優遇", - "reading": "サイユウグウ", - "meaning": "most favourable treatment, most favorable treatment, very warm reception" - }, - { - "example": "優遇", - "reading": "ユウグウ", - "meaning": "favorable treatment, favourable treatment, hospitality, warm reception, good treatment, hearty welcome" - } - ], - "kunyomiExamples": [ - { - "example": "会う", - "reading": "あう", - "meaning": "to meet, to encounter, to see, to have an accident, to have a bad experience" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "冂", - "厶", - "田", - "禹", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36935_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09047.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9047.gif", - "uri": "http://jisho.org/search/%E9%81%87%23kanji" - }, - { - "query": "隅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1601", - "strokeCount": 12, - "meaning": "corner, nook", - "kunyomi": [ - "すみ" - ], - "onyomi": [ - "グウ" - ], - "onyomiExamples": [ - { - "example": "一隅", - "reading": "イチグウ", - "meaning": "corner, nook" - }, - { - "example": "四隅", - "reading": "ヨスミ", - "meaning": "four corners, four ordinal directions" - } - ], - "kunyomiExamples": [ - { - "example": "隅", - "reading": "すみ", - "meaning": "corner, nook, recess, downstage right (on a noh stage)" - }, - { - "example": "隅々", - "reading": "すみずみ", - "meaning": "every corner, every nook and cranny, all the ins and outs" - }, - { - "example": "四隅", - "reading": "よすみ", - "meaning": "four corners, four ordinal directions" - }, - { - "example": "一隅", - "reading": "いちぐう", - "meaning": "corner, nook" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "冂", - "厶", - "日", - "田", - "禹", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38533_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09685.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9685.gif", - "uri": "http://jisho.org/search/%E9%9A%85%23kanji" - }, - { - "query": "串", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2139", - "strokeCount": 7, - "meaning": "spit, skewer", - "kunyomi": [ - "くし", - "つらぬ.く" - ], - "onyomi": [ - "カン", - "ケン", - "セン" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "串", - "reading": "くし", - "meaning": "spit, skewer, proxy (computer server)" - }, - { - "example": "串揚げ", - "reading": "くしあげ", - "meaning": "kushiage, deep-fried skewered meat and vegetables" - }, - { - "example": "牛串", - "reading": "ぎゅうくし", - "meaning": "skewered beef" - }, - { - "example": "横串", - "reading": "よこくし", - "meaning": "crossing boundaries (structural, organizational, etc.)" - } - ], - "radical": { - "symbol": "丨", - "meaning": "line" - }, - "parts": [ - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20018_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e32.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e32.gif", - "uri": "http://jisho.org/search/%E4%B8%B2%23kanji" - }, - { - "query": "屈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1434", - "strokeCount": 8, - "meaning": "yield, bend, flinch, submit", - "kunyomi": [ - "かが.む", - "かが.める" - ], - "onyomi": [ - "クツ" - ], - "onyomiExamples": [ - { - "example": "屈辱", - "reading": "クツジョク", - "meaning": "disgrace, humiliation" - }, - { - "example": "屈従", - "reading": "クツジュウ", - "meaning": "servile submission, subservience" - }, - { - "example": "背屈", - "reading": "ハイクツ", - "meaning": "dorsiflexion, dorsal flexion" - }, - { - "example": "後屈", - "reading": "コウクツ", - "meaning": "retroflexion" - } - ], - "kunyomiExamples": [ - { - "example": "屈む", - "reading": "かがむ", - "meaning": "to stoop, to lean over, to bend forward, to bend down, to crouch, to squat" - }, - { - "example": "屈める", - "reading": "かがめる", - "meaning": "to stoop, to bend (e.g. one's knees)" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "尸", - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23624_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c48.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c48.gif", - "uri": "http://jisho.org/search/%E5%B1%88%23kanji" - }, - { - "query": "掘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1257", - "strokeCount": 11, - "meaning": "dig, delve, excavate", - "kunyomi": [ - "ほ.る" - ], - "onyomi": [ - "クツ" - ], - "onyomiExamples": [ - { - "example": "盗掘", - "reading": "トウクツ", - "meaning": "illegal digging, illegal mining, grave robbing, tomb robbing" - }, - { - "example": "探掘", - "reading": "タンクツ", - "meaning": "exploratory excavation, prospecting" - } - ], - "kunyomiExamples": [ - { - "example": "掘る", - "reading": "ほる", - "meaning": "to dig, to excavate, to hollow, to delve into, to dig up (e.g. vegetables), (for two men) to have anal sex" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "尸", - "山", - "扎", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25496_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06398.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6398.gif", - "uri": "http://jisho.org/search/%E6%8E%98%23kanji" - }, - { - "query": "窟", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "cavern", - "kunyomi": [ - "いわや", - "いはや", - "あな" - ], - "onyomi": [ - "クツ", - "コツ" - ], - "onyomiExamples": [ - { - "example": "巣窟", - "reading": "ソウクツ", - "meaning": "den, haunt, hangout, nest, lair" - }, - { - "example": "私娼窟", - "reading": "シショウクツ", - "meaning": "brothel, house of ill repute, red-light district" - } - ], - "kunyomiExamples": [ - { - "example": "岩屋", - "reading": "いわや", - "meaning": "cavern, grotto" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "宀", - "尸", - "山", - "穴", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31391_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a9f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a9f.gif", - "uri": "http://jisho.org/search/%E7%AA%9F%23kanji" - }, - { - "query": "繰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "872", - "strokeCount": 19, - "meaning": "winding, reel, spin, turn (pages), look up, refer to", - "kunyomi": [ - "く.る" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "繰糸", - "reading": "ソウシ", - "meaning": "reeling (silk)" - }, - { - "example": "繰糸機", - "reading": "ソウシキ", - "meaning": "silk reeling machine" - } - ], - "kunyomiExamples": [ - { - "example": "繰る", - "reading": "くる", - "meaning": "to reel, to wind, to spin (thread), to turn (pages), to flip through (a book), to leaf through (a book), to consult (a dictionary), to refer to (an encyclopedia), to count (e.g. the days), to open one-by-one, to close one-by-one (e.g. shutters)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "口", - "品", - "小", - "幺", - "木", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32368_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e70.gif", - "uri": "http://jisho.org/search/%E7%B9%B0%23kanji" - }, - { - "query": "勲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1513", - "strokeCount": 15, - "meaning": "meritorious deed, merit", - "kunyomi": [ - "いさお" - ], - "onyomi": [ - "クン" - ], - "onyomiExamples": [ - { - "example": "勲", - "reading": "クン", - "meaning": "merit (esp. order of merit)" - }, - { - "example": "勲章", - "reading": "クンショウ", - "meaning": "decoration, order, medal" - }, - { - "example": "叙勲", - "reading": "ジョクン", - "meaning": "conferring of decorations" - }, - { - "example": "殊勲", - "reading": "シュクン", - "meaning": "distinguished services, meritorious deeds" - } - ], - "kunyomiExamples": [ - { - "example": "勲", - "reading": "いさお", - "meaning": "distinguished service, meritorious service" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "ノ", - "一", - "力", - "日", - "杰", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21234_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52f2.gif", - "uri": "http://jisho.org/search/%E5%8B%B2%23kanji" - }, - { - "query": "薫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1849", - "strokeCount": 16, - "meaning": "send forth fragrance, fragrant, be scented, smoke (tobacco)", - "kunyomi": [ - "かお.る" - ], - "onyomi": [ - "クン" - ], - "onyomiExamples": [ - { - "example": "薫", - "reading": "クン", - "meaning": "pleasant smell, aroma, fragrance, scent, pleasant-smelling vegetation" - }, - { - "example": "燻蒸", - "reading": "クンジョウ", - "meaning": "fumigation, smoking (out)" - }, - { - "example": "余薫", - "reading": "ヨクン", - "meaning": "lingering odor, lingering odour" - } - ], - "kunyomiExamples": [ - { - "example": "香る", - "reading": "かおる", - "meaning": "to smell sweet, to be fragrant" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "一", - "日", - "杰", - "艾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34219_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085ab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85ab.gif", - "uri": "http://jisho.org/search/%E8%96%AB%23kanji" - }, - { - "query": "刑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "864", - "strokeCount": 6, - "meaning": "punish, penalty, sentence, punishment", - "kunyomi": [], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "刑", - "reading": "ケイ", - "meaning": "penalty, sentence, punishment" - }, - { - "example": "刑事", - "reading": "ケイジ", - "meaning": "(police) detective, criminal matter" - }, - { - "example": "量刑", - "reading": "リョウケイ", - "meaning": "judge's sentence, assessment of a case" - }, - { - "example": "求刑", - "reading": "キュウケイ", - "meaning": "recommended sentence, prosecution's demand for punishment" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ノ", - "一", - "二", - "刈", - "廾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21009_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05211.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5211.gif", - "uri": "http://jisho.org/search/%E5%88%91%23kanji" - }, - { - "query": "茎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2013", - "strokeCount": 8, - "meaning": "stalk, stem", - "kunyomi": [ - "くき" - ], - "onyomi": [ - "ケイ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "茎頂", - "reading": "ケイチョウ", - "meaning": "tip of a stem (of a plant)" - }, - { - "example": "茎葉", - "reading": "ケイヨウ", - "meaning": "stems and leaves" - }, - { - "example": "塊茎", - "reading": "カイケイ", - "meaning": "tuber" - }, - { - "example": "包茎", - "reading": "ホウケイ", - "meaning": "phimosis" - }, - { - "example": "包茎", - "reading": "ホウケイ", - "meaning": "phimosis" - }, - { - "example": "陰茎", - "reading": "インケイ", - "meaning": "penis" - } - ], - "kunyomiExamples": [ - { - "example": "茎", - "reading": "くき", - "meaning": "stalk, stem" - }, - { - "example": "茎茶", - "reading": "くきちゃ", - "meaning": "twig tea, stem tea, kukicha, tea made from twigs pruned from the tea plant during its dormant season" - }, - { - "example": "一茎", - "reading": "ひとくき", - "meaning": "one stem" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "又", - "土", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33550_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0830e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/830e.gif", - "uri": "http://jisho.org/search/%E8%8C%8E%23kanji" - }, - { - "query": "契", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "898", - "strokeCount": 9, - "meaning": "pledge, promise, vow", - "kunyomi": [ - "ちぎ.る" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "契約", - "reading": "ケイヤク", - "meaning": "contract, compact, agreement" - }, - { - "example": "契機", - "reading": "ケイキ", - "meaning": "opportunity, chance, trigger, cause" - }, - { - "example": "幽契", - "reading": "ユウケイ", - "meaning": "secret promise made to the gods" - }, - { - "example": "黙契", - "reading": "モッケイ", - "meaning": "implicit agreement, tacit understanding" - } - ], - "kunyomiExamples": [ - { - "example": "契る", - "reading": "ちぎる", - "meaning": "to pledge, to vow, to promise, to swear, to have sexual intercourse (esp. between husband and wife), to share a bed" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "二", - "亠", - "刀", - "土", - "大" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22865_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05951.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5951.gif", - "uri": "http://jisho.org/search/%E5%A5%91%23kanji" - }, - { - "query": "恵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "925", - "strokeCount": 10, - "meaning": "favor, blessing, grace, kindness", - "kunyomi": [ - "めぐ.む", - "めぐ.み" - ], - "onyomi": [ - "ケイ", - "エ" - ], - "onyomiExamples": [ - { - "example": "恵雨", - "reading": "ケイウ", - "meaning": "welcome rain" - }, - { - "example": "恵存", - "reading": "ケイソン", - "meaning": "message appended to a note accompanying a gift, requesting the recipient to keep the gift at hand" - }, - { - "example": "互恵", - "reading": "ゴケイ", - "meaning": "reciprocity, mutual benefit" - }, - { - "example": "慈恵", - "reading": "ジケイ", - "meaning": "mercy and love" - }, - { - "example": "恵", - "reading": "エ", - "meaning": "wisdom, enlightenment, prajñā (one of the three divisions of the noble eightfold path), wisdom" - }, - { - "example": "恵比寿", - "reading": "エビス", - "meaning": "Ebisu, god of fishing and commerce" - }, - { - "example": "悪知恵", - "reading": "ワルヂエ", - "meaning": "craft, cunning, guile, serpentine wisdom" - }, - { - "example": "付け知恵", - "reading": "ツケヂエ", - "meaning": "hint, suggestion" - } - ], - "kunyomiExamples": [ - { - "example": "恵む", - "reading": "めぐむ", - "meaning": "to bless, to show mercy to, to give (money, etc.)" - }, - { - "example": "恵み", - "reading": "めぐみ", - "meaning": "blessing, grace" - }, - { - "example": "恵みの雨", - "reading": "めぐみのあめ", - "meaning": "welcome rain, merciful rain, blessed rain, rain after a long dry period" - }, - { - "example": "天の恵み", - "reading": "てんのめぐみ", - "meaning": "God's gift, God's blessing, grace of God, godsend" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "心", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24693_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06075.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6075.gif", - "uri": "http://jisho.org/search/%E6%81%B5%23kanji" - }, - { - "query": "啓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1403", - "strokeCount": 11, - "meaning": "disclose, open, say", - "kunyomi": [ - "ひら.く", - "さと.す" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "啓発", - "reading": "ケイハツ", - "meaning": "enlightenment, development, edification, public awareness, illumination, education, inspiration" - }, - { - "example": "啓蒙", - "reading": "ケイモウ", - "meaning": "enlightenment, instruction" - }, - { - "example": "拝啓", - "reading": "ハイケイ", - "meaning": "Dear (so and so), Dear Sir, Dear Madam, To Whom It May Concern" - }, - { - "example": "敬啓", - "reading": "ケイケイ", - "meaning": "salutation at the end of a formal letter" - } - ], - "kunyomiExamples": [ - { - "example": "啓く", - "reading": "ひらく", - "meaning": "to enlighten, to edify" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "乞", - "口", - "尸", - "戸", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21843_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05553.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5553.gif", - "uri": "http://jisho.org/search/%E5%95%93%23kanji" - }, - { - "query": "掲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "899", - "strokeCount": 11, - "meaning": "put up (a notice), put up, hoist, display, hang out, publish, describe", - "kunyomi": [ - "かか.げる" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "掲示", - "reading": "ケイジ", - "meaning": "notice, bulletin, post, posting, placard" - }, - { - "example": "掲載", - "reading": "ケイサイ", - "meaning": "publication (e.g. of an article in a newspaper), carrying (e.g. a story), running (e.g. a serial), insertion (e.g. of an advertisement), printing, posting (e.g. on the web)" - }, - { - "example": "再掲", - "reading": "サイケイ", - "meaning": "redisplaying, republishing, reproduction, reprint, repost" - }, - { - "example": "上掲", - "reading": "ジョウケイ", - "meaning": "the above-mentioned" - } - ], - "kunyomiExamples": [ - { - "example": "掲げる", - "reading": "かかげる", - "meaning": "to put up (a notice, sign, etc.), to hang out (e.g. a banner), to fly (e.g. a flag), to hoist, to raise, to display, to hold up high, to raise overhead, to tout (a principle, plan, etc.), to herald, to hold up (an ideal), to parade (e.g. a slogan), to publish, to print, to carry (e.g. an article), to tuck up (e.g. sleeves), to roll up, to stoke (a fire), to fan (a flame)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "勹", - "匕", - "扎", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25522_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63b2.gif", - "uri": "http://jisho.org/search/%E6%8E%B2%23kanji" - }, - { - "query": "渓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2063", - "strokeCount": 11, - "meaning": "mountain stream, valley", - "kunyomi": [ - "たに", - "たにがわ" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "渓谷", - "reading": "ケイコク", - "meaning": "valley (with a river running through it), gorge, ravine, canyon" - }, - { - "example": "渓流", - "reading": "ケイリュウ", - "meaning": "mountain stream, mountain torrent" - }, - { - "example": "雪渓", - "reading": "セッケイ", - "meaning": "snowy valley" - }, - { - "example": "猊鼻渓", - "reading": "ゲイビケイ", - "meaning": "Geibi Gorge (Ichinoseki, Iwate)" - } - ], - "kunyomiExamples": [ - { - "example": "谷", - "reading": "たに", - "meaning": "valley" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "二", - "人", - "土", - "大", - "汁", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28179_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e13.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e13.gif", - "uri": "http://jisho.org/search/%E6%B8%93%23kanji" - }, - { - "query": "蛍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2031", - "strokeCount": 11, - "meaning": "lightning-bug, firefly", - "kunyomi": [ - "ほたる" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "蛍光灯", - "reading": "ケイコウトウ", - "meaning": "fluorescent lamp, fluorescent light, person who is slow to react, someone slow on the uptake" - }, - { - "example": "蛍光", - "reading": "ケイコウ", - "meaning": "fluorescence" - } - ], - "kunyomiExamples": [ - { - "example": "蛍", - "reading": "ほたる", - "meaning": "firefly (Luciola cruciata), lightning bug, glowworm" - }, - { - "example": "蛍藺", - "reading": "ほたるい", - "meaning": "Scirpus hotarui (species of bulrush)" - }, - { - "example": "海蛍", - "reading": "うみほたる", - "meaning": "sea firefly (Vargula hilgendorfii), seed shrimp" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "冖", - "尚", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34509_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/086cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/86cd.gif", - "uri": "http://jisho.org/search/%E8%9B%8D%23kanji" - }, - { - "query": "傾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "938", - "strokeCount": 13, - "meaning": "lean, incline, tilt, trend, wane, sink, ruin, bias", - "kunyomi": [ - "かたむ.く", - "かたむ.ける", - "かたぶ.く", - "かた.げる", - "かし.げる" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "傾斜", - "reading": "ケイシャ", - "meaning": "inclination, slant, slope, bevel, list, dip, tilt, lean" - }, - { - "example": "傾向", - "reading": "ケイコウ", - "meaning": "tendency, trend, inclination" - }, - { - "example": "前傾", - "reading": "ゼンケイ", - "meaning": "forward inclination (of the body), bending forward, anteversion" - }, - { - "example": "右傾", - "reading": "ウケイ", - "meaning": "leaning to the right, turning rightist, being on the (political) right" - } - ], - "kunyomiExamples": [ - { - "example": "傾く", - "reading": "かたむく", - "meaning": "to incline toward, to slant, to lurch, to heel over, to be disposed to, to trend toward, to be prone to, to go down (sun), to wane, to sink, to decline" - }, - { - "example": "傾ける", - "reading": "かたむける", - "meaning": "to incline, to lean, to tip, to tilt, to slant, to bend, to list, to devote oneself to, to concentrate on, to pour one's energy into, to ruin, to squander, to empty, to drink (alcohol)" - }, - { - "example": "傾く", - "reading": "かたむく", - "meaning": "to incline toward, to slant, to lurch, to heel over, to be disposed to, to trend toward, to be prone to, to go down (sun), to wane, to sink, to decline" - }, - { - "example": "傾げる", - "reading": "かしげる", - "meaning": "to tilt (esp. head), to lean, to incline, to slant" - }, - { - "example": "傾げる", - "reading": "かしげる", - "meaning": "to tilt (esp. head), to lean, to incline, to slant" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "匕", - "化", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20670_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050be.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50be.gif", - "uri": "http://jisho.org/search/%E5%82%BE%23kanji" - }, - { - "query": "携", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1017", - "strokeCount": 13, - "meaning": "portable, carry (in hand), armed with, bring along", - "kunyomi": [ - "たずさ.える", - "たずさ.わる" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "携帯", - "reading": "ケイタイ", - "meaning": "carrying (on one's person or in the hand), mobile phone, cell phone" - }, - { - "example": "携帯ストラップ", - "reading": "ケイタイストラップ", - "meaning": "straps for mobile phone" - }, - { - "example": "連携", - "reading": "レンケイ", - "meaning": "cooperation, coordination, link" - }, - { - "example": "戦略的提携", - "reading": "センリャクテキテイケイ", - "meaning": "strategic partnership" - } - ], - "kunyomiExamples": [ - { - "example": "携える", - "reading": "たずさえる", - "meaning": "to carry in one's hand, to carry with one, to have on one's person, to bear, to take along (someone), to take (someone) with one, to be accompanied by" - }, - { - "example": "携わる", - "reading": "たずさわる", - "meaning": "to engage in, to participate in, to take part in, to be involved in" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "乃", - "扎", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25658_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0643a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/643a.gif", - "uri": "http://jisho.org/search/%E6%90%BA%23kanji" - }, - { - "query": "継", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "743", - "strokeCount": 13, - "meaning": "inherit, succeed, continue, patch, graft (tree)", - "kunyomi": [ - "つ.ぐ", - "まま-" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "継続", - "reading": "ケイゾク", - "meaning": "continuation" - }, - { - "example": "継承", - "reading": "ケイショウ", - "meaning": "inheritance, succession, accession, share-alike" - }, - { - "example": "後継", - "reading": "コウケイ", - "meaning": "succession, successor" - }, - { - "example": "承継", - "reading": "ショウケイ", - "meaning": "succession, accession, inheritance" - } - ], - "kunyomiExamples": [ - { - "example": "継ぐ", - "reading": "つぐ", - "meaning": "to succeed (a person, to a position, etc.), to inherit, to take over, to follow, to patch (clothes), to mend, to repair, to add (e.g. charcoal to the fire), to replenish with, to feed with, to follow up with (e.g. remarks), to gather (one's breath)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "米", - "糸", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32153_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d99.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d99.gif", - "uri": "http://jisho.org/search/%E7%B6%99%23kanji" - }, - { - "query": "詣", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "visit a temple, arrive, attain", - "kunyomi": [ - "けい.する", - "まい.る", - "いた.る", - "もう.でる" - ], - "onyomi": [ - "ケイ", - "ゲイ" - ], - "onyomiExamples": [ - { - "example": "参詣", - "reading": "サンケイ", - "meaning": "visit to a temple or shrine, worship, pilgrimage" - }, - { - "example": "造詣", - "reading": "ゾウケイ", - "meaning": "deep knowledge, attainments, scholarship" - } - ], - "kunyomiExamples": [ - { - "example": "参る", - "reading": "まいる", - "meaning": "to go, to come, to call, to be defeated, to collapse, to die, to be annoyed, to be nonplussed, to be madly in love, to visit (shrine, grave)" - }, - { - "example": "詣でる", - "reading": "もうでる", - "meaning": "to make a pilgrimage" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "匕", - "日", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35427_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a63.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a63.gif", - "uri": "http://jisho.org/search/%E8%A9%A3%23kanji" - }, - { - "query": "慶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1300", - "strokeCount": 15, - "meaning": "jubilation, congratulate, rejoice, be happy", - "kunyomi": [ - "よろこ.び" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "慶事", - "reading": "ケイジ", - "meaning": "happy event, auspicious event, matter for congratulation" - }, - { - "example": "慶祝", - "reading": "ケイシュク", - "meaning": "congratulation, celebration" - }, - { - "example": "弁慶", - "reading": "ベンケイ", - "meaning": "strong person, person putting on a brave front, bamboo tube with holes drilled in it (used as a stand for kitchen utensils, fans, etc.), checks, plaid, checked pattern" - }, - { - "example": "大慶", - "reading": "タイケイ", - "meaning": "great joy" - } - ], - "kunyomiExamples": [ - { - "example": "喜び", - "reading": "よろこび", - "meaning": "joy, delight, rapture, pleasure, gratification, rejoicing, congratulations, felicitations" - }, - { - "example": "喜び事", - "reading": "よろこびごと", - "meaning": "auspicious event, celebration" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "冖", - "夂", - "广", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24950_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06176.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6176.gif", - "uri": "http://jisho.org/search/%E6%85%B6%23kanji" - }, - { - "query": "憬", - "found": true, - "taughtIn": "junior high", - "strokeCount": 15, - "meaning": "yearn for, aspire to, admire", - "kunyomi": [ - "あこが.れる" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "憧憬", - "reading": "ドウケイ", - "meaning": "longing, yearning, aspiration, adoration" - } - ], - "kunyomiExamples": [ - { - "example": "憧れる", - "reading": "あこがれる", - "meaning": "to long for, to yearn after, to admire, to be attracted by" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "亠", - "口", - "小", - "忙", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25004_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61ac.gif", - "uri": "http://jisho.org/search/%E6%86%AC%23kanji" - }, - { - "query": "稽", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2372", - "strokeCount": 15, - "meaning": "think, consider", - "kunyomi": [ - "かんが.える", - "とど.める" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "稽古", - "reading": "ケイコ", - "meaning": "practice, practising, training, study" - }, - { - "example": "稽古着", - "reading": "ケイコギ", - "meaning": "training clothes (judo, kendo, etc.), practice suit" - }, - { - "example": "無稽", - "reading": "ムケイ", - "meaning": "unsupported, unfounded, nonsense" - } - ], - "kunyomiExamples": [ - { - "example": "考える", - "reading": "かんがえる", - "meaning": "to think (about, of), to think over, to ponder, to contemplate, to reflect (on), to meditate (on), to consider, to bear in mind, to allow for, to take into consideration, to think (that), to believe, to hold (a view), to judge, to conclude, to suspect, to intend (to do), to think of (doing), to plan, to predict, to anticipate, to expect, to imagine, to come up with, to think up, to contrive, to devise, to consider (as), to regard (as), to look on (as), to take, to view" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "匕", - "尤", - "日", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31293_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a3d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a3d.gif", - "uri": "http://jisho.org/search/%E7%A8%BD%23kanji" - }, - { - "query": "憩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1731", - "strokeCount": 16, - "meaning": "recess, rest, relax, repose", - "kunyomi": [ - "いこ.い", - "いこ.う" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "憩室", - "reading": "ケイシツ", - "meaning": "diverticulum" - }, - { - "example": "憩室炎", - "reading": "ケイシツエン", - "meaning": "diverticulitis" - }, - { - "example": "一服休憩", - "reading": "イップクキュウケイ", - "meaning": "tea (coffee, cigarette) break" - }, - { - "example": "小憩", - "reading": "ショウケイ", - "meaning": "short break, breather, brief recess, rest" - } - ], - "kunyomiExamples": [ - { - "example": "憩い", - "reading": "いこい", - "meaning": "rest, relaxation" - }, - { - "example": "憩いの場", - "reading": "いこいのば", - "meaning": "place for relaxation and refreshment" - }, - { - "example": "憩う", - "reading": "いこう", - "meaning": "to rest, to relax, to repose" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "口", - "心", - "目", - "自", - "舌" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25001_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061a9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61a9.gif", - "uri": "http://jisho.org/search/%E6%86%A9%23kanji" - }, - { - "query": "鶏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1901", - "strokeCount": 19, - "meaning": "chicken", - "kunyomi": [ - "にわとり", - "とり" - ], - "onyomi": [ - "ケイ" - ], - "onyomiExamples": [ - { - "example": "鶏肉", - "reading": "トリニク", - "meaning": "chicken meat, fowl, poultry, bird meat" - }, - { - "example": "鶏卵", - "reading": "ケイラン", - "meaning": "hen's egg" - }, - { - "example": "養鶏", - "reading": "ヨウケイ", - "meaning": "poultry raising, poultry farming, chicken farming" - }, - { - "example": "成鶏", - "reading": "セイケイ", - "meaning": "adult chicken, mature fowl" - } - ], - "kunyomiExamples": [ - { - "example": "鶏", - "reading": "にわとり", - "meaning": "chicken (Gallus gallus domesticus), domestic chicken, chicken meat" - }, - { - "example": "鶏小屋", - "reading": "にわとりごや", - "meaning": "henhouse, chicken coop" - }, - { - "example": "鳥", - "reading": "とり", - "meaning": "bird, bird meat (esp. chicken meat), fowl, poultry" - }, - { - "example": "鶏", - "reading": "にわとり", - "meaning": "chicken (Gallus gallus domesticus), domestic chicken, chicken meat" - }, - { - "example": "花鶏", - "reading": "あとり", - "meaning": "brambling (bird) (Fringilla montifringilla)" - }, - { - "example": "頭青花鶏", - "reading": "ずあおあとり", - "meaning": "chaffinch (Fringilla coelebs)" - } - ], - "radical": { - "symbol": "鳥", - "meaning": "bird" - }, - "parts": [ - "二", - "人", - "土", - "大", - "杰", - "爪", - "鳥" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40335_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09d8f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9d8f.gif", - "uri": "http://jisho.org/search/%E9%B6%8F%23kanji" - }, - { - "query": "迎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "625", - "strokeCount": 7, - "meaning": "welcome, meet, greet", - "kunyomi": [ - "むか.える" - ], - "onyomi": [ - "ゲイ" - ], - "onyomiExamples": [ - { - "example": "迎賓館", - "reading": "ゲイヒンカン", - "meaning": "reception hall (esp. for visiting state dignitaries), guest house, State Guest House (esp. Akasaka palace, also guest house in Kyoto)" - }, - { - "example": "迎撃", - "reading": "ゲイゲキ", - "meaning": "intercept, interception, counter-attack" - }, - { - "example": "奉迎", - "reading": "ホウゲイ", - "meaning": "welcome" - }, - { - "example": "盛んな歓迎", - "reading": "サカンナカンゲイ", - "meaning": "cordial reception" - } - ], - "kunyomiExamples": [ - { - "example": "迎える", - "reading": "むかえる", - "meaning": "to go out to meet, to receive, to welcome, to greet, to salute, to hail, to reach, to approach, to enter (a phase, era, etc.), to accept (e.g. as a member of a group or family), to call for, to summon, to invite, to approach (a certain time, a point in one's life, etc.)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "卩", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36814_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fce.gif", - "uri": "http://jisho.org/search/%E8%BF%8E%23kanji" - }, - { - "query": "鯨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1486", - "strokeCount": 19, - "meaning": "whale", - "kunyomi": [ - "くじら" - ], - "onyomi": [ - "ゲイ" - ], - "onyomiExamples": [ - { - "example": "鯨肉", - "reading": "ゲイニク", - "meaning": "whale meat" - }, - { - "example": "鯨飲", - "reading": "ゲイイン", - "meaning": "drinking hard, drinking like a fish" - }, - { - "example": "白鯨", - "reading": "ハクゲイ", - "meaning": "white whale, Moby Dick" - }, - { - "example": "反捕鯨", - "reading": "ハンホゲイ", - "meaning": "opposition to whaling, anti-whaling" - } - ], - "kunyomiExamples": [ - { - "example": "鯨", - "reading": "くじら", - "meaning": "whale (Cetacea spp.)" - }, - { - "example": "鯨肉", - "reading": "げいにく", - "meaning": "whale meat" - }, - { - "example": "タスマニア鯨", - "reading": "タスマニアくじら", - "meaning": "Shepherd's beaked whale (Tasmacetus shepherdi)" - }, - { - "example": "五島鯨", - "reading": "ごとうくじら", - "meaning": "larger whales of family Delphinidae (esp. the pilot whale or blackfish)" - } - ], - "radical": { - "symbol": "魚", - "meaning": "fish" - }, - "parts": [ - "亠", - "口", - "小", - "杰", - "田", - "魚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39912_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09be8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9be8.gif", - "uri": "http://jisho.org/search/%E9%AF%A8%23kanji" - }, - { - "query": "隙", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "crevice, fissure, discord, opportunity, leisure", - "kunyomi": [ - "すき", - "す.く", - "す.かす", - "ひま" - ], - "onyomi": [ - "ゲキ", - "キャク", - "ケキ" - ], - "onyomiExamples": [ - { - "example": "隙", - "reading": "スキ", - "meaning": "gap, space, break, interlude, interval, chink (in one's armor, armour), chance, opportunity, weak spot, breach (of a relationship between people)" - }, - { - "example": "細隙", - "reading": "サイゲキ", - "meaning": "slit, interstice, narrow aperture" - }, - { - "example": "空隙", - "reading": "クウゲキ", - "meaning": "vacant space, aperture, gap, opening" - } - ], - "kunyomiExamples": [ - { - "example": "隙", - "reading": "すき", - "meaning": "gap, space, break, interlude, interval, chink (in one's armor, armour), chance, opportunity, weak spot, breach (of a relationship between people)" - }, - { - "example": "隙間", - "reading": "すきま", - "meaning": "crevice, crack, gap, opening, clearance, spare moment, interval, break, pause, spare time, chink (in one's armor, armour), unpreparedness, carelessness" - }, - { - "example": "隙", - "reading": "すき", - "meaning": "gap, space, break, interlude, interval, chink (in one's armor, armour), chance, opportunity, weak spot, breach (of a relationship between people)" - }, - { - "example": "暇人", - "reading": "ひまじん", - "meaning": "person with a lot of free time on their hands, person of leisure, idler, loafer" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "小", - "日", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38553_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09699.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9699.gif", - "uri": "http://jisho.org/search/%E9%9A%99%23kanji" - }, - { - "query": "撃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "473", - "strokeCount": 15, - "meaning": "beat, attack, defeat, conquer", - "kunyomi": [ - "う.つ" - ], - "onyomi": [ - "ゲキ" - ], - "onyomiExamples": [ - { - "example": "撃墜", - "reading": "ゲキツイ", - "meaning": "shooting down (aircraft)" - }, - { - "example": "撃沈", - "reading": "ゲキチン", - "meaning": "sending a ship to the bottom, sinking (a ship), to sink a ship" - }, - { - "example": "銃撃", - "reading": "ジュウゲキ", - "meaning": "shooting, gunning (down)" - }, - { - "example": "追撃", - "reading": "ツイゲキ", - "meaning": "pursuit (of a fleeing enemy), chase" - } - ], - "kunyomiExamples": [ - { - "example": "撃つ", - "reading": "うつ", - "meaning": "to shoot (at), to attack, to defeat, to destroy, to avenge" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "几", - "又", - "手", - "殳", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25731_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06483.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6483.gif", - "uri": "http://jisho.org/search/%E6%92%83%23kanji" - }, - { - "query": "桁", - "found": true, - "taughtIn": "junior high", - "strokeCount": 10, - "meaning": "beam, girder, spar, unit or column (accounting)", - "kunyomi": [ - "けた" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "桁端", - "reading": "コウタン", - "meaning": "yardarm" - }, - { - "example": "衣桁", - "reading": "イコウ", - "meaning": "clothes rack" - } - ], - "kunyomiExamples": [ - { - "example": "桁", - "reading": "けた", - "meaning": "column, beam, girder, crossbeam, spar, yard, digit, decade, order of magnitude" - }, - { - "example": "桁上り", - "reading": "けたあがり", - "meaning": "carry (of digit, bit, etc.)" - }, - { - "example": "有効桁", - "reading": "ゆうこうけた", - "meaning": "significant digit" - }, - { - "example": "五桁", - "reading": "ごけた", - "meaning": "five-digit number, \"ten thousands\" column" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "彳", - "木", - "行" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26689_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06841.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6841.gif", - "uri": "http://jisho.org/search/%E6%A1%81%23kanji" - }, - { - "query": "傑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1926", - "strokeCount": 13, - "meaning": "greatness, excellence", - "kunyomi": [ - "すぐ.れる" - ], - "onyomi": [ - "ケツ" - ], - "onyomiExamples": [ - { - "example": "傑", - "reading": "ケツ", - "meaning": "the top (e.g. top ten), the best" - }, - { - "example": "傑人", - "reading": "ケツジン", - "meaning": "outstanding person" - }, - { - "example": "豪傑", - "reading": "ゴウケツ", - "meaning": "hero, great man" - }, - { - "example": "英傑", - "reading": "エイケツ", - "meaning": "great man, hero, master mind" - } - ], - "kunyomiExamples": [ - { - "example": "優れる", - "reading": "すぐれる", - "meaning": "to surpass, to outstrip, to excel" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "夕", - "木", - "舛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20625_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05091.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5091.gif", - "uri": "http://jisho.org/search/%E5%82%91%23kanji" - }, - { - "query": "肩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1215", - "strokeCount": 8, - "meaning": "shoulder", - "kunyomi": [ - "かた" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "肩高", - "reading": "ケンコウ", - "meaning": "withers (height from ground to shoulder blades in animals)" - }, - { - "example": "肩甲骨", - "reading": "ケンコウコツ", - "meaning": "shoulder blade, scapula" - }, - { - "example": "路肩", - "reading": "ロカタ", - "meaning": "shoulder (of a road), berm" - }, - { - "example": "強肩", - "reading": "キョウケン", - "meaning": "strong throwing arm" - } - ], - "kunyomiExamples": [ - { - "example": "肩", - "reading": "かた", - "meaning": "shoulder" - }, - { - "example": "肩書き", - "reading": "かたがき", - "meaning": "title (e.g. Doctor, Professor, Lord), job title, position (in a company), degree, status, rank" - }, - { - "example": "路肩", - "reading": "ろかた", - "meaning": "shoulder (of a road), berm" - }, - { - "example": "相肩", - "reading": "あいかた", - "meaning": "partner, someone who shares one's load" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "一", - "尸", - "戸", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32937_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080a9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80a9.gif", - "uri": "http://jisho.org/search/%E8%82%A9%23kanji" - }, - { - "query": "倹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2479", - "strokeCount": 10, - "meaning": "frugal, economy, thrifty", - "kunyomi": [ - "つま.しい", - "つづまやか" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "倹", - "reading": "ケン", - "meaning": "economizing, thriftiness, prudence, frugality" - }, - { - "example": "倹約", - "reading": "ケンヤク", - "meaning": "thrift, economy, frugality" - }, - { - "example": "恭倹", - "reading": "キョウケン", - "meaning": "respectfulness and modesty, deference" - }, - { - "example": "節倹", - "reading": "セッケン", - "meaning": "economy, thrift" - } - ], - "kunyomiExamples": [ - { - "example": "倹しい", - "reading": "つましい", - "meaning": "thrifty, frugal, economical" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "个", - "人", - "化", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20537_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05039.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5039.gif", - "uri": "http://jisho.org/search/%E5%80%B9%23kanji" - }, - { - "query": "兼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1164", - "strokeCount": 10, - "meaning": "concurrently, and, beforehand, in advance", - "kunyomi": [ - "か.ねる", - "-か.ねる" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "兼", - "reading": "ケン", - "meaning": "cum (e.g. bedroom-cum-study), holding both roles (e.g. Prime Minister and Minister of Foreign Affairs), and, in addition, concurrently, at the same time" - }, - { - "example": "兼任", - "reading": "ケンニン", - "meaning": "serving concurrently as, holding the additional post of" - } - ], - "kunyomiExamples": [ - { - "example": "兼ねる", - "reading": "かねる", - "meaning": "to be unable to, to find difficult (unpleasant, awkward, painful) to do, to serve two or more functions or roles simultaneously, to contain (or combine) two or more features, to work in two or more jobs simultaneously (positions, etc.), to do alongside, to hesitate to do something (out of consideration for others), to think of the future (as well as the present)" - } - ], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "ハ", - "ヨ", - "一", - "并", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20860_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0517c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/517c.gif", - "uri": "http://jisho.org/search/%E5%85%BC%23kanji" - }, - { - "query": "剣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1305", - "strokeCount": 10, - "meaning": "sabre, sword, blade, clock hand", - "kunyomi": [ - "つるぎ" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "剣", - "reading": "ケン", - "meaning": "sword (esp. a large, double-edged one), blade, bayonet, swordsmanship, stinger, ovipositor, dart" - }, - { - "example": "剣士", - "reading": "ケンシ", - "meaning": "swordsman, swordswoman, fencer" - }, - { - "example": "銃剣", - "reading": "ジュウケン", - "meaning": "bayonet, guns and swords" - }, - { - "example": "刀剣", - "reading": "トウケン", - "meaning": "sword, dagger, knife, bayonet" - } - ], - "kunyomiExamples": [ - { - "example": "剣", - "reading": "けん", - "meaning": "sword (esp. a large, double-edged one), blade, bayonet, swordsmanship, stinger, ovipositor, dart" - }, - { - "example": "剣の山", - "reading": "つるぎのやま", - "meaning": "mountain of swords, mountain in hell covered in swords (with their tips pointing upward)" - }, - { - "example": "月の剣", - "reading": "つきのつるぎ", - "meaning": "new moon, crescent moon" - }, - { - "example": "草薙の剣", - "reading": "くさなぎのつるぎ", - "meaning": "Kusanagi no Tsurugi (alternate name for Ama-no-Murakumo no Tsurugi; the sword of the Imperial regalia), grass-mowing sword" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "个", - "人", - "刈", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21091_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05263.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5263.gif", - "uri": "http://jisho.org/search/%E5%89%A3%23kanji" - }, - { - "query": "拳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1935", - "strokeCount": 10, - "meaning": "fist", - "kunyomi": [ - "こぶし" - ], - "onyomi": [ - "ケン", - "ゲン" - ], - "onyomiExamples": [ - { - "example": "拳", - "reading": "ケン", - "meaning": "hand game (e.g. rock, paper, scissors)" - }, - { - "example": "拳銃", - "reading": "ケンジュウ", - "meaning": "pistol, handgun, revolver" - }, - { - "example": "形意拳", - "reading": "ケイイケン", - "meaning": "shape-of-the-mind fist, Hsing I Chuan" - }, - { - "example": "五形拳", - "reading": "ゴケイケン", - "meaning": "Wu Xing Fist, Five Form Fist (Dragon, Snake, Tiger, Crane, Leopard)" - }, - { - "example": "拳骨", - "reading": "ゲンコツ", - "meaning": "(clenched) fist, knuckles" - }, - { - "example": "拳固", - "reading": "ゲンコ", - "meaning": "fist" - } - ], - "kunyomiExamples": [ - { - "example": "拳", - "reading": "こぶし", - "meaning": "fist" - }, - { - "example": "こぶし大", - "reading": "こぶしだい", - "meaning": "fist-sized" - }, - { - "example": "力拳", - "reading": "ちからこぶし", - "meaning": "clenched fist" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "二", - "大", - "并", - "手" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25331_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62f3.gif", - "uri": "http://jisho.org/search/%E6%8B%B3%23kanji" - }, - { - "query": "軒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1416", - "strokeCount": 10, - "meaning": "flats, counter for houses, eaves", - "kunyomi": [ - "のき" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "軒", - "reading": "ケン", - "meaning": "counter for buildings (esp. houses), suffix for a pen name, stage name, etc." - }, - { - "example": "軒昂", - "reading": "ケンコウ", - "meaning": "high-spirited, being in high spirits" - }, - { - "example": "一軒一軒", - "reading": "イッケンイッケン", - "meaning": "house to house, door to door" - } - ], - "kunyomiExamples": [ - { - "example": "軒", - "reading": "のき", - "meaning": "eaves, narrow aisle surrounding the core of a temple building" - }, - { - "example": "軒並み", - "reading": "のきなみ", - "meaning": "row of houses, every house, each house, every door, all, totally, altogether, across the board" - }, - { - "example": "傍軒", - "reading": "そばのき", - "meaning": "barge course" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "干", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36562_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ed2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ed2.gif", - "uri": "http://jisho.org/search/%E8%BB%92%23kanji" - }, - { - "query": "圏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1216", - "strokeCount": 12, - "meaning": "sphere, circle, radius, range", - "kunyomi": [ - "かこ.い" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "圏", - "reading": "ケン", - "meaning": "sphere, circle, range, area, zone, bloc, category" - }, - { - "example": "圏内", - "reading": "ケンナイ", - "meaning": "(being) within range (radio, commuting, etc.), (being) within the sphere (e.g. of influence)" - }, - { - "example": "成層圏", - "reading": "セイソウケン", - "meaning": "stratosphere" - }, - { - "example": "勢力圏", - "reading": "セイリョクケン", - "meaning": "sphere of influence" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "一", - "二", - "人", - "囗", - "大", - "已", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22287_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0570f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/570f.gif", - "uri": "http://jisho.org/search/%E5%9C%8F%23kanji" - }, - { - "query": "堅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1049", - "strokeCount": 12, - "meaning": "strict, hard, solid, tough, tight, reliable", - "kunyomi": [ - "かた.い", - "-がた.い" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "堅", - "reading": "ケン", - "meaning": "strength, solidity, firmness, armour, armor" - }, - { - "example": "堅持", - "reading": "ケンジ", - "meaning": "holding on to, sticking to" - }, - { - "example": "中堅", - "reading": "チュウケン", - "meaning": "nucleus, backbone, mainstay, key figure, medium-level, mid-level, middle-ranking, midsize, main body (of troops), crack troops, select troops, center field, centre field, center fielder, centre fielder, athlete competing in the middle-number match in a team competition, i.e. second in 3-on-3, third in 5-on-5 (kendo, judo, etc.)" - }, - { - "example": "米利堅", - "reading": "メリケン", - "meaning": "America, American, fist" - } - ], - "kunyomiExamples": [ - { - "example": "硬い", - "reading": "かたい", - "meaning": "hard, solid, tough, stiff, tight, wooden, unpolished (e.g. writing), strong, firm (not viscous or easily moved), safe, steady, honest, steadfast, obstinate, stubborn, bookish, formal, stuffy" - }, - { - "example": "堅い商売", - "reading": "かたいしょうばい", - "meaning": "sound business" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "又", - "土", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22533_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05805.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5805.gif", - "uri": "http://jisho.org/search/%E5%A0%85%23kanji" - }, - { - "query": "嫌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1207", - "strokeCount": 13, - "meaning": "dislike, detest, hate", - "kunyomi": [ - "きら.う", - "きら.い", - "いや" - ], - "onyomi": [ - "ケン", - "ゲン" - ], - "onyomiExamples": [ - { - "example": "嫌気", - "reading": "イヤキ", - "meaning": "dislike, disgust, disinclination, tired of" - }, - { - "example": "嫌悪", - "reading": "ケンオ", - "meaning": "disgust, hate, repugnance, loathing" - }, - { - "example": "酒機嫌", - "reading": "サカキゲン", - "meaning": "one's mood when drinking alcohol" - }, - { - "example": "屠蘇機嫌", - "reading": "トソキゲン", - "meaning": "feeling a little drunk with the New Year's sake" - } - ], - "kunyomiExamples": [ - { - "example": "嫌う", - "reading": "きらう", - "meaning": "to hate, to dislike, to loathe" - }, - { - "example": "嫌い", - "reading": "きらい", - "meaning": "disliked, hated, disagreeable, tendency, smack (of), touch (of), distinction, discrimination" - }, - { - "example": "嫌いがある", - "reading": "きらいがある", - "meaning": "to have a tendency to, to be liable to, to have a touch of, to have a smack of" - }, - { - "example": "嫌", - "reading": "いや", - "meaning": "disagreeable, detestable, unpleasant, reluctant" - }, - { - "example": "嫌がらせ", - "reading": "いやがらせ", - "meaning": "harassment, pestering" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ハ", - "ヨ", - "女", - "并", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23244_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05acc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5acc.gif", - "uri": "http://jisho.org/search/%E5%AB%8C%23kanji" - }, - { - "query": "献", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "637", - "strokeCount": 13, - "meaning": "offering, counter for drinks, present, offer", - "kunyomi": [ - "たてまつ.る" - ], - "onyomi": [ - "ケン", - "コン" - ], - "onyomiExamples": [ - { - "example": "献金", - "reading": "ケンキン", - "meaning": "donation, contribution, offering" - }, - { - "example": "献花", - "reading": "ケンカ", - "meaning": "flower offering, floral tribute, laying flowers" - }, - { - "example": "社会貢献", - "reading": "シャカイコウケン", - "meaning": "contribution to society" - }, - { - "example": "奉献", - "reading": "ホウケン", - "meaning": "dedication, presentation, consecration, offer (to a shrine)" - }, - { - "example": "献立", - "reading": "コンダテ", - "meaning": "menu, bill of fare, program, programme, schedule" - }, - { - "example": "献立表", - "reading": "コンダテヒョウ", - "meaning": "menu, list of meals (e.g. for the week)" - }, - { - "example": "九献", - "reading": "クコン", - "meaning": "three-times-three exchange of nuptial cups, sake (secret language of court ladies), rice wine" - }, - { - "example": "一献", - "reading": "イッコン", - "meaning": "one cup (of sake), (going out for, treating someone to) a drink, small drinking party" - } - ], - "kunyomiExamples": [ - { - "example": "奉る", - "reading": "たてまつる", - "meaning": "to offer, to present, to set someone up in a high position, to revere at a distance, to do respectfully" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "冂", - "十", - "干", - "并", - "犬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29486_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0732e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/732e.gif", - "uri": "http://jisho.org/search/%E7%8C%AE%23kanji" - }, - { - "query": "遣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "664", - "strokeCount": 13, - "meaning": "dispatch, despatch, send, give, donate, do, undertake", - "kunyomi": [ - "つか.う", - "-つか.い", - "-づか.い", - "つか.わす", - "や.る" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "遣唐使", - "reading": "ケントウシ", - "meaning": "envoy to Tang China" - }, - { - "example": "遣外", - "reading": "ケンガイ", - "meaning": "dispatched abroad, despatched abroad" - }, - { - "example": "先遣", - "reading": "センケン", - "meaning": "sending ahead" - }, - { - "example": "差遣", - "reading": "サケン", - "meaning": "dispatch, despatch, sending" - } - ], - "kunyomiExamples": [ - { - "example": "使う", - "reading": "つかう", - "meaning": "to use (a thing, method, etc.), to make use of, to put to use, to use (a person, animal, puppet, etc.), to employ, to handle, to manage, to manipulate, to use (time, money, etc.), to spend, to consume, to use (language), to speak" - }, - { - "example": "遣わす", - "reading": "つかわす", - "meaning": "to send, to dispatch, to despatch, to bestow (favour, etc.), to grant (e.g. pardon)" - }, - { - "example": "遣る", - "reading": "やる", - "meaning": "to do, to undertake, to perform, to play (a game), to study, to send, to dispatch, to despatch, to put, to move, to turn (one's head, glance, etc.), to give (esp. to someone of equal or lower status), to let have, to present, to bestow, to confer, to make (a vehicle) go faster, to run (a business), to keep, to be engaged in, to practice (law, medicine, etc.), to practise, to have (food, drink, etc.), to eat, to drink, to smoke, to hold (a performance), to perform, to show, to ease (one's mind), to harm, to injure, to kill, to have sex with, to live, to get by, to get along, to do ... completely, to do ... broadly, to do ... to a great distance, to do ... for (someone of equal or lower status), to do ... to (sometimes with negative nuance), to make active efforts to ..." - }, - { - "example": "やる方ない", - "reading": "やるかたない", - "meaning": "unable to clear away one's ill feeling, not able to do anything (about...)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "一", - "口", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36963_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09063.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9063.gif", - "uri": "http://jisho.org/search/%E9%81%A3%23kanji" - }, - { - "query": "賢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1159", - "strokeCount": 16, - "meaning": "intelligent, wise, wisdom, cleverness", - "kunyomi": [ - "かしこ.い" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "賢", - "reading": "ケン", - "meaning": "intelligence, genius, scholarship, virtue" - }, - { - "example": "賢人", - "reading": "ケンジン", - "meaning": "wise person, virtuous person, sage, unrefined sake" - }, - { - "example": "遺賢", - "reading": "イケン", - "meaning": "able men left out of office" - }, - { - "example": "聖賢", - "reading": "セイケン", - "meaning": "saints and sages" - } - ], - "kunyomiExamples": [ - { - "example": "賢い", - "reading": "かしこい", - "meaning": "wise, clever, smart" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "又", - "目", - "臣", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ce2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ce2.gif", - "uri": "http://jisho.org/search/%E8%B3%A2%23kanji" - }, - { - "query": "謙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1582", - "strokeCount": 17, - "meaning": "self-effacing, humble oneself, condescend, be modest", - "kunyomi": [ - "へりくだ.る" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "謙虚", - "reading": "ケンキョ", - "meaning": "modest, humble" - }, - { - "example": "謙遜", - "reading": "ケンソン", - "meaning": "modesty, humility, being humble" - }, - { - "example": "恭謙", - "reading": "キョウケン", - "meaning": "modesty, humility" - } - ], - "kunyomiExamples": [ - { - "example": "謙る", - "reading": "へりくだる", - "meaning": "to deprecate oneself and praise the listener, to abase oneself" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ハ", - "ヨ", - "并", - "言", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b19.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b19.gif", - "uri": "http://jisho.org/search/%E8%AC%99%23kanji" - }, - { - "query": "鍵", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2029", - "strokeCount": 17, - "meaning": "key", - "kunyomi": [ - "かぎ" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "鍵", - "reading": "ケン", - "meaning": "key (of a piano, etc.)" - }, - { - "example": "鍵盤", - "reading": "ケンバン", - "meaning": "keyboard (piano, computer, etc.)" - }, - { - "example": "打鍵", - "reading": "ダケン", - "meaning": "keystroke" - }, - { - "example": "黒鍵", - "reading": "コッケン", - "meaning": "black key (on a piano, organ, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "鍵", - "reading": "かぎ", - "meaning": "key, lock, key (to a problem), clue" - }, - { - "example": "鍵垢", - "reading": "かぎあか", - "meaning": "private account (esp. on Twitter), account on a social networking service that can only be viewed by approved followers" - }, - { - "example": "公開鍵", - "reading": "こうかいかぎ", - "meaning": "public key" - }, - { - "example": "暗号鍵", - "reading": "あんごうかぎ", - "meaning": "cryptographic key, encryption key" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "廴", - "聿", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37749_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09375.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9375.gif", - "uri": "http://jisho.org/search/%E9%8D%B5%23kanji" - }, - { - "query": "繭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2495", - "strokeCount": 18, - "meaning": "cocoon", - "kunyomi": [ - "まゆ", - "きぬ" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "絹糸", - "reading": "ケンシ", - "meaning": "silk thread" - }, - { - "example": "繭価", - "reading": "マユカ", - "meaning": "price of a cocoon" - }, - { - "example": "黄繭", - "reading": "コウケン", - "meaning": "yellow cocoon" - }, - { - "example": "収繭", - "reading": "シュウケン", - "meaning": "cocoon crop" - } - ], - "kunyomiExamples": [ - { - "example": "繭", - "reading": "まゆ", - "meaning": "cocoon" - }, - { - "example": "繭価", - "reading": "まゆか", - "meaning": "price of a cocoon" - }, - { - "example": "黄繭", - "reading": "こうけん", - "meaning": "yellow cocoon" - }, - { - "example": "屑繭", - "reading": "くずまゆ", - "meaning": "waste cocoon (silk), bad cocoon, damaged cocoon" - }, - { - "example": "絹糸", - "reading": "けんし", - "meaning": "silk thread" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "冂", - "小", - "幺", - "糸", - "艾", - "虫", - "風" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32365_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e6d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e6d.gif", - "uri": "http://jisho.org/search/%E7%B9%AD%23kanji" - }, - { - "query": "顕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1536", - "strokeCount": 18, - "meaning": "appear, existing", - "kunyomi": [ - "あきらか", - "あらわ.れる" - ], - "onyomi": [ - "ケン" - ], - "onyomiExamples": [ - { - "example": "顕", - "reading": "ケン", - "meaning": "exposure, clarity, exoteric Buddhism, public Buddhist teachings" - }, - { - "example": "顕在", - "reading": "ケンザイ", - "meaning": "being actual (as opposed to hidden or latent), being apparent, being obvious, being tangible, being revealed" - }, - { - "example": "貴顕", - "reading": "キケン", - "meaning": "distinguished person" - }, - { - "example": "丕顕", - "reading": "ヒケン", - "meaning": "great and brilliant, splendid" - } - ], - "kunyomiExamples": [ - { - "example": "明らか", - "reading": "あきらか", - "meaning": "clear, obvious, evident, plain, definite, bright, light" - }, - { - "example": "現れる", - "reading": "あらわれる", - "meaning": "to appear, to come in sight, to become visible, to come out, to embody, to materialize, to materialise, to be expressed (e.g. emotions), to become apparent (e.g. trends, effects)" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "日", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38997_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09855.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9855.gif", - "uri": "http://jisho.org/search/%E9%A1%95%23kanji" - }, - { - "query": "懸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "889", - "strokeCount": 20, - "meaning": "state of suspension, hang, depend, consult, distant, far apart", - "kunyomi": [ - "か.ける", - "か.かる" - ], - "onyomi": [ - "ケン", - "ケ" - ], - "onyomiExamples": [ - { - "example": "懸賞", - "reading": "ケンショウ", - "meaning": "offering a prize, prize competition, prize, reward" - }, - { - "example": "懸案", - "reading": "ケンアン", - "meaning": "pending question, unresolved problem" - }, - { - "example": "倒懸", - "reading": "トウケン", - "meaning": "hanging (someone) upside down" - }, - { - "example": "懸案", - "reading": "ケンアン", - "meaning": "pending question, unresolved problem" - }, - { - "example": "懸念", - "reading": "ケネン", - "meaning": "worry, fear, anxiety, concern" - }, - { - "example": "手掛け", - "reading": "テカケ", - "meaning": "handle, mistress, kept woman, concubine" - }, - { - "example": "首懸", - "reading": "コウガケ", - "meaning": "leather strap put across a horse's neck" - } - ], - "kunyomiExamples": [ - { - "example": "掛ける", - "reading": "かける", - "meaning": "to hang up (e.g. a coat, a picture on the wall), to let hang, to suspend (from), to hoist (e.g. sail), to raise (e.g. flag), to put on (e.g. a blanket), to put on top of, to cover, to lay, to spread, to put on (glasses, etc.), to wear (a necklace, etc.), to make (a call), to spend (time, money), to expend, to use, to pour (liquid) onto, to sprinkle (powder or spices) onto, to splash, to throw (e.g. water) onto, to turn on (an engine, radio, etc.), to set (a dial, an alarm clock, etc.), to put on (a DVD, a song, etc.), to cause (somebody inconvenience, trouble, etc.), to burden (someone), to impose, to multiply (arithmetic operation), to secure (e.g. lock), to take a seat, to sit, to rest (something on something else), to support (something on something else), to bind, to wager, to bet, to risk, to stake, to gamble, to put an effect (spell, anaesthetic, etc.) on, to hold (a play, festival, etc.), to hold an emotion for (pity, hope, etc.), to argue (in court), to deliberate (in a meeting), to present (e.g. idea to a conference, etc.), to increase further, to catch (in a trap, etc.), to set atop, to erect (a makeshift building), to apply (insurance), to pun (on a word), to use (a word) as a pivot word, to play on words, to be partway doing ..., to begin (but not complete) ..., to be about to ..., to address (someone), to direct (something, to someone), to do (something, to someone)" - }, - { - "example": "掛かる", - "reading": "かかる", - "meaning": "to take (a resource, e.g. time or money), to hang, to come into view, to arrive, to come under (a contract, a tax), to start (engines, motors), to attend, to deal with, to handle, to have started to, to be on the verge of, to overlap (e.g. information in a manual), to cover, to (come) at, to be fastened, to be covered (e.g. with dust, a table-cloth, etc.), to be caught in, to get a call, to depend on" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "小", - "幺", - "心", - "目", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25080_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61f8.gif", - "uri": "http://jisho.org/search/%E6%87%B8%23kanji" - }, - { - "query": "幻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1564", - "strokeCount": 4, - "meaning": "phantasm, vision, dream, illusion, apparition", - "kunyomi": [ - "まぼろし" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "幻想", - "reading": "ゲンソウ", - "meaning": "fantasy, illusion, vision, dream" - }, - { - "example": "幻覚", - "reading": "ゲンカク", - "meaning": "hallucination, illusion" - }, - { - "example": "変幻", - "reading": "ヘンゲン", - "meaning": "transformation" - }, - { - "example": "夢幻", - "reading": "ムゲン", - "meaning": "dreams, fantasy, visions" - } - ], - "kunyomiExamples": [ - { - "example": "幻", - "reading": "まぼろし", - "meaning": "phantom, vision, illusion, dream, apparition" - }, - { - "example": "幻を追う", - "reading": "まぼろしをおう", - "meaning": "to pursue an illusion, to pursue a fantasy, to pursue phantoms" - }, - { - "example": "夢幻", - "reading": "むげん", - "meaning": "dreams, fantasy, visions" - } - ], - "radical": { - "symbol": "幺", - "meaning": "short, tiny" - }, - "parts": [ - "幺" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24187_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e7b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e7b.gif", - "uri": "http://jisho.org/search/%E5%B9%BB%23kanji" - }, - { - "query": "玄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1409", - "strokeCount": 5, - "meaning": "mysterious, occultness, black, deep, profound", - "kunyomi": [ - "くろ", - "くろ.い" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "玄米", - "reading": "ゲンマイ", - "meaning": "unpolished rice, unmilled rice, brown rice" - }, - { - "example": "玄関", - "reading": "ゲンカン", - "meaning": "entrance, front door, entryway, entranceway, entry hall, vestibule, porch, foyer, mud room" - }, - { - "example": "幽玄", - "reading": "ユウゲン", - "meaning": "mysterious profundity, quiet beauty, the subtle and profound, yūgen" - } - ], - "kunyomiExamples": [ - { - "example": "玄人", - "reading": "くろうと", - "meaning": "expert, professional, master, connoisseur, woman in the nightlife business, demimondaine, geisha and prostitutes" - }, - { - "example": "玄人気質", - "reading": "くろうとかたぎ", - "meaning": "professionalism, the temperament of a professional" - } - ], - "radical": { - "symbol": "玄", - "meaning": "dark, profound" - }, - "parts": [ - "亠", - "幺", - "玄" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29572_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07384.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7384.gif", - "uri": "http://jisho.org/search/%E7%8E%84%23kanji" - }, - { - "query": "弦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1773", - "strokeCount": 8, - "meaning": "bowstring, chord, hypotenuse", - "kunyomi": [ - "つる" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "弦", - "reading": "ゲン", - "meaning": "bowstring, string (of a shamisen, etc.), stringed instrument, chord, hypotenuse" - }, - { - "example": "弦楽", - "reading": "ゲンガク", - "meaning": "music for strings, string music" - }, - { - "example": "三絃", - "reading": "サンゲン", - "meaning": "shamisen, samisen, sanxian (Chinese lute), three string instruments (in gagaku; biwa, wagon and sou), three-stringed instrument" - }, - { - "example": "移弦", - "reading": "イゲン", - "meaning": "string-crossing (violin, cello, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "弦", - "reading": "つる", - "meaning": "bowstring, string (of shamisen, guitar, violin, etc.), bail (arched pot handle), diagonal levelling wire across the top of a masu" - }, - { - "example": "弦音", - "reading": "つるおと", - "meaning": "sound of vibrating bowstring" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "亠", - "幺", - "弓", - "玄" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24358_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f26.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f26.gif", - "uri": "http://jisho.org/search/%E5%BC%A6%23kanji" - }, - { - "query": "舷", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "gunwale", - "kunyomi": [ - "ふなばた", - "ふなべり" - ], - "onyomi": [ - "ゲン" - ], - "onyomiExamples": [ - { - "example": "舷", - "reading": "ゲン", - "meaning": "side of a boat, gunwale" - }, - { - "example": "舷窓", - "reading": "ゲンソウ", - "meaning": "porthole" - }, - { - "example": "左舷", - "reading": "サゲン", - "meaning": "port (left side of vessel)" - }, - { - "example": "右舷", - "reading": "ウゲン", - "meaning": "starboard" - } - ], - "kunyomiExamples": [ - { - "example": "船端", - "reading": "ふなばた", - "meaning": "side of a boat, gunwale" - }, - { - "example": "船縁", - "reading": "ふなべり", - "meaning": "side of a boat, gunwale" - } - ], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "亠", - "幺", - "玄", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33335_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08237.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8237.gif", - "uri": "http://jisho.org/search/%E8%88%B7%23kanji" - }, - { - "query": "股", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2212", - "strokeCount": 8, - "meaning": "thigh, crotch", - "kunyomi": [ - "また", - "もも" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "股間", - "reading": "コカン", - "meaning": "nether region, between the legs, groin, crotch" - }, - { - "example": "股関節", - "reading": "コカンセツ", - "meaning": "hip joint, coxa" - }, - { - "example": "控股", - "reading": "コウコ", - "meaning": "holdings, holding company" - }, - { - "example": "四股", - "reading": "シコ", - "meaning": "wrestler's ceremonial leg raising and stomping" - } - ], - "kunyomiExamples": [ - { - "example": "股", - "reading": "また", - "meaning": "crotch, crutch, groin, thigh, fork (in a tree, road, river, etc.), tines (of a fork)" - }, - { - "example": "跨る", - "reading": "またがる", - "meaning": "to straddle, to sit astride, to mount, to extend over, to spread over, to span, to extend into" - }, - { - "example": "小股", - "reading": "こまた", - "meaning": "short steps, mincing stride, crotch, groin, thigh" - }, - { - "example": "外小股", - "reading": "そとこまた", - "meaning": "over-thigh scooping body drop" - }, - { - "example": "股", - "reading": "もも", - "meaning": "thigh, femoral" - }, - { - "example": "股白蝙蝠", - "reading": "ももじろこうもり", - "meaning": "big-footed myotis (Myotis macrodactylus), eastern long-fingered bat, Japanese large-footed bat" - }, - { - "example": "太もも", - "reading": "ふともも", - "meaning": "thigh, buttocks, arse, ass, butt" - }, - { - "example": "外股", - "reading": "そともも", - "meaning": "outer thigh" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "几", - "又", - "月", - "殳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32929_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080a1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80a1.gif", - "uri": "http://jisho.org/search/%E8%82%A1%23kanji" - }, - { - "query": "虎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1653", - "strokeCount": 8, - "meaning": "tiger, drunkard", - "kunyomi": [ - "とら" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "虎列剌", - "reading": "コレラ", - "meaning": "cholera" - }, - { - "example": "虎疫", - "reading": "コエキ", - "meaning": "cholera" - }, - { - "example": "猛虎", - "reading": "モウコ", - "meaning": "fierce tiger, ferocious tiger, Hanshin Tigers (baseball team)" - }, - { - "example": "竜虎", - "reading": "リュウコ", - "meaning": "dragon and tiger, two mighty rivals" - } - ], - "kunyomiExamples": [ - { - "example": "虎", - "reading": "とら", - "meaning": "tiger (Panthera tigris), drunkard, drunk, sot" - }, - { - "example": "虎葦毛", - "reading": "とらあしげ", - "meaning": "dapple gray (horse coat color), dapple grey" - }, - { - "example": "大虎", - "reading": "おおとら", - "meaning": "big tiger, drinker, staggering drunkard" - }, - { - "example": "小虎", - "reading": "ことら", - "meaning": "small tiger, light drinker, occasional drinker" - } - ], - "radical": { - "symbol": "虍", - "meaning": "tiger stripes" - }, - "parts": [ - "儿", - "匕", - "卜", - "厂", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34382_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0864e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/864e.gif", - "uri": "http://jisho.org/search/%E8%99%8E%23kanji" - }, - { - "query": "孤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1239", - "strokeCount": 9, - "meaning": "orphan, alone", - "kunyomi": [], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "孤", - "reading": "コ", - "meaning": "being alone, solitude, loneliness, orphan" - }, - { - "example": "孤児", - "reading": "コジ", - "meaning": "orphan, person without friends" - }, - { - "example": "遺孤", - "reading": "イコ", - "meaning": "orphan" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "子", - "瓜" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23396_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b64.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b64.gif", - "uri": "http://jisho.org/search/%E5%AD%A4%23kanji" - }, - { - "query": "弧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2371", - "strokeCount": 9, - "meaning": "arc, arch, bow", - "kunyomi": [], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "弧", - "reading": "コ", - "meaning": "arc" - }, - { - "example": "弧影悄然", - "reading": "コエイショウゼン", - "meaning": "lonely and crestfallen, a lonely and heavy-hearted figure" - }, - { - "example": "円弧", - "reading": "エンコ", - "meaning": "arc" - }, - { - "example": "励弧", - "reading": "レイコ", - "meaning": "excitation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "弓", - "瓜" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24359_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f27.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f27.gif", - "uri": "http://jisho.org/search/%E5%BC%A7%23kanji" - }, - { - "query": "枯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1749", - "strokeCount": 9, - "meaning": "wither, die, dry up, be seasoned", - "kunyomi": [ - "か.れる", - "か.らす" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "枯死", - "reading": "コシ", - "meaning": "withering, dying" - }, - { - "example": "枯渇", - "reading": "コカツ", - "meaning": "drying up, running dry, running out, being exhausted, being drained" - }, - { - "example": "栄枯", - "reading": "エイコ", - "meaning": "vicissitudes, ups and downs" - }, - { - "example": "蒼古", - "reading": "ソウコ", - "meaning": "old-fashioned and tasteful" - } - ], - "kunyomiExamples": [ - { - "example": "枯れる", - "reading": "かれる", - "meaning": "to wither (of a plant), to be blasted, to die, to mature (of one's personality, abilities, etc.)" - }, - { - "example": "枯らす", - "reading": "からす", - "meaning": "to let dry, to kill (vegetation), to season (lumber)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "十", - "口", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26543_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067af.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67af.gif", - "uri": "http://jisho.org/search/%E6%9E%AF%23kanji" - }, - { - "query": "雇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "975", - "strokeCount": 12, - "meaning": "employ, hire", - "kunyomi": [ - "やと.う" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "雇用", - "reading": "コヨウ", - "meaning": "employment (long term), hire" - }, - { - "example": "雇い主", - "reading": "ヤトイヌシ", - "meaning": "employer" - }, - { - "example": "不当解雇", - "reading": "フトウカイコ", - "meaning": "unfair dismissal, wrongful dismissal, unfair termination" - }, - { - "example": "整理解雇", - "reading": "セイリカイコ", - "meaning": "restructuring termination (of employment), dismissal due to economic conditions" - } - ], - "kunyomiExamples": [ - { - "example": "雇う", - "reading": "やとう", - "meaning": "to employ, to hire, to charter" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "一", - "尸", - "戸", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38599_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96c7.gif", - "uri": "http://jisho.org/search/%E9%9B%87%23kanji" - }, - { - "query": "誇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1272", - "strokeCount": 13, - "meaning": "boast, be proud, pride, triumphantly", - "kunyomi": [ - "ほこ.る" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "誇張", - "reading": "コチョウ", - "meaning": "exaggeration" - }, - { - "example": "誇大", - "reading": "コダイ", - "meaning": "exaggeration, hyperbole" - } - ], - "kunyomiExamples": [ - { - "example": "誇る", - "reading": "ほこる", - "meaning": "to boast of, to be proud of, to take pride in" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "二", - "勹", - "大", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35463_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a87.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a87.gif", - "uri": "http://jisho.org/search/%E8%AA%87%23kanji" - }, - { - "query": "鼓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1795", - "strokeCount": 13, - "meaning": "drum, beat, rouse, muster", - "kunyomi": [ - "つづみ" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "鼓舞", - "reading": "コブ", - "meaning": "encouragement, inspiration, rousing, stirring up, raising (e.g. morale)" - }, - { - "example": "鼓動", - "reading": "コドウ", - "meaning": "beat, palpitation, pulsation, throbbing" - }, - { - "example": "大太鼓", - "reading": "オオダイコ", - "meaning": "large drum, bass drum" - }, - { - "example": "御太鼓", - "reading": "オタイコ", - "meaning": "very common way of tying a woman's kimono sash" - } - ], - "kunyomiExamples": [ - { - "example": "鼓", - "reading": "つづみ", - "meaning": "hand drum" - }, - { - "example": "舌鼓", - "reading": "したつづみ", - "meaning": "smacking one's lips" - }, - { - "example": "大鼓", - "reading": "おおつづみ", - "meaning": "large hand drum" - } - ], - "radical": { - "symbol": "鼓", - "meaning": "drum" - }, - "parts": [ - "十", - "又", - "口", - "士", - "并", - "支", - "豆", - "鼓" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40723_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09f13.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9f13.gif", - "uri": "http://jisho.org/search/%E9%BC%93%23kanji" - }, - { - "query": "錮", - "found": true, - "taughtIn": "junior high", - "strokeCount": 16, - "meaning": "confinement, to tie", - "kunyomi": [ - "ふさ.ぐ" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "軽禁錮", - "reading": "ケイキンコ", - "meaning": "minor imprisonment, imprisonment without hard labor (hard labour)" - }, - { - "example": "重禁錮", - "reading": "ジュウキンコ", - "meaning": "major imprisonment, imprisonment with hard labor (hard labour)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "十", - "口", - "囗", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37678_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0932e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/932e.gif", - "uri": "http://jisho.org/search/%E9%8C%AE%23kanji" - }, - { - "query": "顧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1058", - "strokeCount": 21, - "meaning": "look back, review, examine oneself, turn around", - "kunyomi": [ - "かえり.みる" - ], - "onyomi": [ - "コ" - ], - "onyomiExamples": [ - { - "example": "顧問", - "reading": "コモン", - "meaning": "adviser, advisor, consultant" - }, - { - "example": "顧客", - "reading": "コキャク", - "meaning": "customer, client, patron" - }, - { - "example": "一顧", - "reading": "イッコ", - "meaning": "(take no) notice of" - }, - { - "example": "後顧", - "reading": "コウコ", - "meaning": "looking back, worry, anxiety" - } - ], - "kunyomiExamples": [ - { - "example": "顧みる", - "reading": "かえりみる", - "meaning": "to look back on (the past), to reflect on, to reminisce about, to look behind (at), to turn round (and look), to look over one's shoulder, to consider, to concern oneself about, to take notice of, to pay attention to, to take into consideration" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "一", - "尸", - "戸", - "目", - "貝", - "隹", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39015_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09867.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9867.gif", - "uri": "http://jisho.org/search/%E9%A1%A7%23kanji" - }, - { - "query": "互", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "914", - "strokeCount": 4, - "meaning": "mutually, reciprocally, together", - "kunyomi": [ - "たが.い", - "かたみ.に" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "互換", - "reading": "ゴカン", - "meaning": "interchange, transposition, compatible (e.g. PC)" - }, - { - "example": "互角", - "reading": "ゴカク", - "meaning": "equal (in ability), even, evenly matched, well-matched, on par (with)" - } - ], - "kunyomiExamples": [ - { - "example": "互い", - "reading": "たがい", - "meaning": "each other, one another" - }, - { - "example": "互いに", - "reading": "たがいに", - "meaning": "mutually, with each other, reciprocally, together" - }, - { - "example": "互に", - "reading": "かたみに", - "meaning": "mutually, reciprocally, together" - } - ], - "radical": { - "symbol": "二", - "meaning": "two" - }, - "parts": [ - "ヨ", - "一", - "彑" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20114_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e92.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e92.gif", - "uri": "http://jisho.org/search/%E4%BA%92%23kanji" - }, - { - "query": "呉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1729", - "strokeCount": 7, - "meaning": "give, do something for, kingdom of Wu", - "kunyomi": [ - "く.れる", - "くれ" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "呉", - "reading": "ゴ", - "meaning": "Wu, region in China, south of the lower Yangtze, Wu, Southern Wu, kingdom in China during the Five Dynasties and Ten Kingdoms era (902 CE-937 CE), Wu, Eastern Wu, Sun Wu, kingdom in China during the Three Kingdoms era (222 CE-280 CE), Wu, kingdom in China during the Spring and Autumn era (11th C-473 BCE)" - }, - { - "example": "豆汁", - "reading": "ゴ", - "meaning": "go, soy beans soaked and mashed to a creamy paste (ingredient of tofu and soy milk)" - }, - { - "example": "藍子", - "reading": "アイゴ", - "meaning": "mottled spinefoot (Siganus fuscescens, species of Western Pacific rabbitfish), dusky rabbitfish, sandy spinefoot" - } - ], - "kunyomiExamples": [ - { - "example": "呉れる", - "reading": "くれる", - "meaning": "to give, to let (one) have, to give, to do for one, to take the trouble to do, to do to someone's disadvantage" - }, - { - "example": "呉れる", - "reading": "くれる", - "meaning": "to give, to let (one) have, to give, to do for one, to take the trouble to do, to do to someone's disadvantage" - }, - { - "example": "呉れ呉れも", - "reading": "くれぐれも", - "meaning": "sincerely, earnestly, repeatedly, over and over, again and again" - }, - { - "example": "何くれ", - "reading": "なにくれ", - "meaning": "in various ways" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ハ", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21577_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05449.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5449.gif", - "uri": "http://jisho.org/search/%E5%91%89%23kanji" - }, - { - "query": "娯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1827", - "strokeCount": 10, - "meaning": "recreation, pleasure", - "kunyomi": [], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "娯楽", - "reading": "ゴラク", - "meaning": "pleasure, amusement" - }, - { - "example": "娯遊", - "reading": "ゴユウ", - "meaning": "amusement, pleasure, recreation, leisure" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ハ", - "口", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23087_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a2f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a2f.gif", - "uri": "http://jisho.org/search/%E5%A8%AF%23kanji" - }, - { - "query": "悟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1411", - "strokeCount": 10, - "meaning": "enlightenment, perceive, discern, realize, understand", - "kunyomi": [ - "さと.る" - ], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "悟性", - "reading": "ゴセイ", - "meaning": "wisdom, understanding" - }, - { - "example": "悟道", - "reading": "ゴドウ", - "meaning": "(the path of spiritual) enlightenment" - }, - { - "example": "大悟", - "reading": "タイゴ", - "meaning": "enlightenment, great wisdom" - }, - { - "example": "穎悟", - "reading": "エイゴ", - "meaning": "intelligent, shrewd" - } - ], - "kunyomiExamples": [ - { - "example": "悟る", - "reading": "さとる", - "meaning": "to perceive, to sense, to discern, to understand, to comprehend, to realize, to attain enlightenment" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "五", - "口", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24735_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0609f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/609f.gif", - "uri": "http://jisho.org/search/%E6%82%9F%23kanji" - }, - { - "query": "碁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1609", - "strokeCount": 13, - "meaning": "Go", - "kunyomi": [], - "onyomi": [ - "ゴ" - ], - "onyomiExamples": [ - { - "example": "碁", - "reading": "ゴ", - "meaning": "go, board game of capturing territory" - }, - { - "example": "碁会所", - "reading": "ゴカイジョ", - "meaning": "commercial go-playing parlour (parlor)" - }, - { - "example": "囲碁", - "reading": "イゴ", - "meaning": "go, board game of capturing territory" - }, - { - "example": "相碁", - "reading": "アイゴ", - "meaning": "Go played by two equally skilled players" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "ハ", - "一", - "口", - "甘", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30849_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07881.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7881.gif", - "uri": "http://jisho.org/search/%E7%A2%81%23kanji" - }, - { - "query": "勾", - "found": true, - "taughtIn": "junior high", - "strokeCount": 4, - "meaning": "be bent, slope, capture", - "kunyomi": [ - "かぎ", - "ま.がる" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "勾配", - "reading": "コウバイ", - "meaning": "slope, incline, gradient, grade, pitch, slope (of a linear function), gradient (vector calculus)" - }, - { - "example": "勾引", - "reading": "コウイン", - "meaning": "arrest, custody, seduction, abduction" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "勹", - "meaning": "wrap, embrace" - }, - "parts": [ - "勹", - "厶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21246_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052fe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52fe.gif", - "uri": "http://jisho.org/search/%E5%8B%BE%23kanji" - }, - { - "query": "孔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2052", - "strokeCount": 4, - "meaning": "cavity, hole, slit, very, great, exceedingly", - "kunyomi": [ - "あな" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "孔子", - "reading": "コウシ", - "meaning": "Confucius" - }, - { - "example": "孔隙率", - "reading": "コウゲキリツ", - "meaning": "porosity" - }, - { - "example": "瞳孔", - "reading": "ドウコウ", - "meaning": "pupil (of the eye)" - }, - { - "example": "鰓孔", - "reading": "エラアナ", - "meaning": "gill slit, pharyngeal slit" - }, - { - "example": "孔雀", - "reading": "クジャク", - "meaning": "peafowl (incl. the male peacock, female peahen, and young peachick)" - }, - { - "example": "孔子", - "reading": "コウシ", - "meaning": "Confucius" - } - ], - "kunyomiExamples": [ - { - "example": "穴", - "reading": "あな", - "meaning": "hole, opening, perforation, pit, hollow, hole (in the ground, etc.), burrow, den, lair, holt, hole, deficit, shortage, missing person (in a team, meeting, etc.), vacancy, opening, flaw, well-kept secret place, upset victory (with a large payoff), pit (of a theater), hiding place, hideout, underbelly (of society, etc.)" - }, - { - "example": "巣穴", - "reading": "すあな", - "meaning": "nesting hole, burrow, den" - }, - { - "example": "鰓孔", - "reading": "えらあな", - "meaning": "gill slit, pharyngeal slit" - } - ], - "radical": { - "symbol": "子", - "meaning": "child, seed" - }, - "parts": [ - "乙", - "子" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23380_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b54.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b54.gif", - "uri": "http://jisho.org/search/%E5%AD%94%23kanji" - }, - { - "query": "巧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1537", - "strokeCount": 5, - "meaning": "adroit, skilled, ingenuity", - "kunyomi": [ - "たく.み", - "たく.む", - "うま.い" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "巧", - "reading": "コウ", - "meaning": "skilfulness, skillfulness, cleverness" - }, - { - "example": "巧妙", - "reading": "コウミョウ", - "meaning": "ingenious, skillful, clever, deft" - }, - { - "example": "不精巧", - "reading": "フセイコウ", - "meaning": "clumsy, bungling" - }, - { - "example": "大巧", - "reading": "タイコウ", - "meaning": "great talent" - } - ], - "kunyomiExamples": [ - { - "example": "巧み", - "reading": "たくみ", - "meaning": "skillful, adroit, dexterous, masterful, clever, ingenious, cunning" - }, - { - "example": "巧む", - "reading": "たくむ", - "meaning": "to devise, to plot, to plan" - }, - { - "example": "上手い", - "reading": "うまい", - "meaning": "skillful, skilful, clever, expert, wise, successful, delicious, appetizing, appetising, tasty, fortunate, splendid, promising" - } - ], - "radical": { - "symbol": "工", - "meaning": "work" - }, - "parts": [ - "一", - "勹", - "工" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24039_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05de7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5de7.gif", - "uri": "http://jisho.org/search/%E5%B7%A7%23kanji" - }, - { - "query": "甲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1073", - "strokeCount": 5, - "meaning": "armor, high (voice), A grade, first class, former, instep, carapace", - "kunyomi": [ - "きのえ" - ], - "onyomi": [ - "コウ", - "カン" - ], - "onyomiExamples": [ - { - "example": "甲", - "reading": "コウ", - "meaning": "carapace, shell, 1st in rank, grade A, instep, back of hand, the A party (e.g. in a contract), the first party, plaintiff (label in legal documents)" - }, - { - "example": "甲状腺", - "reading": "コウジョウセン", - "meaning": "thyroid gland" - }, - { - "example": "装甲", - "reading": "ソウコウ", - "meaning": "armoring, armouring, armor, armour" - }, - { - "example": "亀甲", - "reading": "キッコウ", - "meaning": "tortoise shell" - }, - { - "example": "甲", - "reading": "カン", - "meaning": "treble range (in Japanese music), high note" - }, - { - "example": "甲板", - "reading": "カンパン", - "meaning": "deck (of a ship)" - } - ], - "kunyomiExamples": [ - { - "example": "甲", - "reading": "きのえ", - "meaning": "first sign of the Chinese calendar" - }, - { - "example": "甲戌", - "reading": "きのえいぬ", - "meaning": "Wood Dog (11th year of the sexagenary cycle, e.g. 1934, 1994, 2054)" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30002_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07532.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7532.gif", - "uri": "http://jisho.org/search/%E7%94%B2%23kanji" - }, - { - "query": "江", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "704", - "strokeCount": 6, - "meaning": "creek, inlet, bay", - "kunyomi": [ - "え" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "江", - "reading": "コウ", - "meaning": "large river (esp. the Yangtze), Lake Biwa" - }, - { - "example": "江上", - "reading": "コウジョウ", - "meaning": "(on the) bank of a large river" - }, - { - "example": "長江", - "reading": "チョウコウ", - "meaning": "Yangtze River, Changjiang River" - }, - { - "example": "揚子江", - "reading": "ヨウスコウ", - "meaning": "Yangtze River (in China)" - } - ], - "kunyomiExamples": [ - { - "example": "江", - "reading": "え", - "meaning": "inlet, bay" - }, - { - "example": "縁", - "reading": "えん", - "meaning": "fate, destiny (esp. as a mysterious force that binds two people together), relationship (e.g. between two people), bond, link, connection, family ties, affinity, opportunity, chance (to meet someone and start a relationship), pratyaya (indirect conditions, as opposed to direct causes), narrow open-air veranda" - }, - { - "example": "堀江", - "reading": "ほりえ", - "meaning": "canal" - }, - { - "example": "松江", - "reading": "まつえ", - "meaning": "Matsue (city in Shimane)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "工", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27743_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c5f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c5f.gif", - "uri": "http://jisho.org/search/%E6%B1%9F%23kanji" - }, - { - "query": "坑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2040", - "strokeCount": 7, - "meaning": "pit, hole", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "坑", - "reading": "コウ", - "meaning": "pit (esp. of a mine)" - }, - { - "example": "坑口", - "reading": "コウコウ", - "meaning": "pithead, minehead" - }, - { - "example": "廃坑", - "reading": "ハイコウ", - "meaning": "abandoned mine, disused mine" - }, - { - "example": "開坑", - "reading": "カイコウ", - "meaning": "opening of mine" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "亠", - "几", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22353_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05751.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5751.gif", - "uri": "http://jisho.org/search/%E5%9D%91%23kanji" - }, - { - "query": "抗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "666", - "strokeCount": 7, - "meaning": "confront, resist, defy, oppose", - "kunyomi": [ - "あらが.う" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "抗", - "reading": "コウ", - "meaning": "anti-" - }, - { - "example": "抗菌", - "reading": "コウキン", - "meaning": "antibacterial, antimicrobial" - }, - { - "example": "拮抗", - "reading": "キッコウ", - "meaning": "rivalry (between two equally strong sides), struggle for supremacy, competing (with), vying (with), contending (with), being an equal match (for), rising and falling (of a bird)" - }, - { - "example": "無抵抗", - "reading": "ムテイコウ", - "meaning": "nonresistance" - } - ], - "kunyomiExamples": [ - { - "example": "抗う", - "reading": "あらがう", - "meaning": "to go against, to fight against, to oppose, to resist, to deny" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "亠", - "几", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25239_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06297.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6297.gif", - "uri": "http://jisho.org/search/%E6%8A%97%23kanji" - }, - { - "query": "攻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "532", - "strokeCount": 7, - "meaning": "aggression, attack, criticize, polish", - "kunyomi": [ - "せ.める" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "攻守", - "reading": "コウシュ", - "meaning": "offense and defense, offence and defence, batting and fielding" - }, - { - "example": "攻撃", - "reading": "コウゲキ", - "meaning": "attack, assault, raid, onslaught, offensive, criticism, censure, denunciation, condemnation" - }, - { - "example": "速攻", - "reading": "ソッコウ", - "meaning": "swift attack, quick attack, fast break, right away, without delay, immediately" - }, - { - "example": "猛攻", - "reading": "モウコウ", - "meaning": "fierce attack" - } - ], - "kunyomiExamples": [ - { - "example": "攻める", - "reading": "せめる", - "meaning": "to attack, to assault, to assail" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "工", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25915_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0653b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/653b.gif", - "uri": "http://jisho.org/search/%E6%94%BB%23kanji" - }, - { - "query": "更", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "861", - "strokeCount": 7, - "meaning": "grow late, night watch, sit up late, of course, renew, renovate, again, more and more, further", - "kunyomi": [ - "さら", - "さら.に", - "ふ.ける", - "ふ.かす" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "更", - "reading": "コウ", - "meaning": "one-fifth of the night (approx. 2 hours)" - }, - { - "example": "更改", - "reading": "コウカイ", - "meaning": "renewal, extension, revision" - }, - { - "example": "中更", - "reading": "チュウコウ", - "meaning": "middle watch, 12 midnight-2am" - }, - { - "example": "五更", - "reading": "ゴコウ", - "meaning": "the five night watches, fifth watch of the night (approx. 3am to 5am)" - } - ], - "kunyomiExamples": [ - { - "example": "新", - "reading": "さら", - "meaning": "new, unused, new, obvious, natural" - }, - { - "example": "更に", - "reading": "さらに", - "meaning": "furthermore, again, after all, more and more, moreover, even more" - }, - { - "example": "殊更", - "reading": "ことさら", - "meaning": "intentionally, deliberately, designedly, on purpose, especially, particularly" - }, - { - "example": "更々", - "reading": "さらさら", - "meaning": "(not) at all, (not) in the least, (none) whatsoever" - }, - { - "example": "更に", - "reading": "さらに", - "meaning": "furthermore, again, after all, more and more, moreover, even more" - }, - { - "example": "さらに困ったことに", - "reading": "さらにこまったことに", - "meaning": "to make matters worse" - }, - { - "example": "更ける", - "reading": "ふける", - "meaning": "to get late, to advance, to wear on" - }, - { - "example": "更かす", - "reading": "ふかす", - "meaning": "to sit up late" - } - ], - "radical": { - "symbol": "曰", - "meaning": "say" - }, - "parts": [ - "ノ", - "一", - "日", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26356_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066f4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66f4.gif", - "uri": "http://jisho.org/search/%E6%9B%B4%23kanji" - }, - { - "query": "拘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1336", - "strokeCount": 8, - "meaning": "arrest, seize, concerned, adhere to, despite", - "kunyomi": [ - "かか.わる" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "拘束", - "reading": "コウソク", - "meaning": "restriction, restraint, binding, constraint" - }, - { - "example": "拘禁", - "reading": "コウキン", - "meaning": "detention, custody, confinement, internment" - } - ], - "kunyomiExamples": [ - { - "example": "関わる", - "reading": "かかわる", - "meaning": "to be affected, to be influenced, to be concerned with, to have to do with, to stick to (opinions)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "勹", - "口", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25304_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062d8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62d8.gif", - "uri": "http://jisho.org/search/%E6%8B%98%23kanji" - }, - { - "query": "肯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1813", - "strokeCount": 8, - "meaning": "agreement, consent, comply with", - "kunyomi": [ - "がえんじ.る" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "肯定", - "reading": "コウテイ", - "meaning": "affirmation, affirmative (logic)" - }, - { - "example": "肯綮", - "reading": "コウケイ", - "meaning": "the essential point" - }, - { - "example": "首肯", - "reading": "シュコウ", - "meaning": "assent, consent" - } - ], - "kunyomiExamples": [ - { - "example": "肯んじる", - "reading": "がえんじる", - "meaning": "to consent, to allow, to accept, to agree" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "月", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32943_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080af.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80af.gif", - "uri": "http://jisho.org/search/%E8%82%AF%23kanji" - }, - { - "query": "侯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2363", - "strokeCount": 9, - "meaning": "marquis, lord, daimyo", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "侯", - "reading": "コウ", - "meaning": "marquis, lord, daimyo" - }, - { - "example": "侯爵", - "reading": "コウシャク", - "meaning": "marquis, marquess" - }, - { - "example": "王侯", - "reading": "オウコウ", - "meaning": "king and princes, noble rank" - }, - { - "example": "仙台侯", - "reading": "センダイコウ", - "meaning": "Lord of Sendai" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ユ", - "乞", - "化", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20399_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04faf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4faf.gif", - "uri": "http://jisho.org/search/%E4%BE%AF%23kanji" - }, - { - "query": "恒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1314", - "strokeCount": 9, - "meaning": "constancy, always", - "kunyomi": [ - "つね", - "つねに" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "恒常", - "reading": "コウジョウ", - "meaning": "constancy, permanence" - }, - { - "example": "恒久", - "reading": "コウキュウ", - "meaning": "permanence, perpetuity" - } - ], - "kunyomiExamples": [ - { - "example": "常", - "reading": "つね", - "meaning": "usual state of things" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "忙", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24658_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06052.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6052.gif", - "uri": "http://jisho.org/search/%E6%81%92%23kanji" - }, - { - "query": "洪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1778", - "strokeCount": 9, - "meaning": "deluge, flood, vast", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "洪", - "reading": "コウ", - "meaning": "Hungary" - }, - { - "example": "洪水", - "reading": "コウズイ", - "meaning": "flood, flooding" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "一", - "二", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27946_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d2a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d2a.gif", - "uri": "http://jisho.org/search/%E6%B4%AA%23kanji" - }, - { - "query": "荒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1099", - "strokeCount": 9, - "meaning": "laid waste, rough, rude, wild", - "kunyomi": [ - "あら.い", - "あら-", - "あ.れる", - "あ.らす", - "-あ.らし", - "すさ.む" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "荒廃", - "reading": "コウハイ", - "meaning": "ruin, destruction, devastation, waste, decay" - }, - { - "example": "荒野", - "reading": "コウヤ", - "meaning": "wasteland, wilderness, deserted land, prairie, vast plain, wilds, desert, wild land" - }, - { - "example": "破天荒", - "reading": "ハテンコウ", - "meaning": "unheard-of, unprecedented" - }, - { - "example": "救荒", - "reading": "キュウコウ", - "meaning": "famine relief" - } - ], - "kunyomiExamples": [ - { - "example": "荒い", - "reading": "あらい", - "meaning": "rough, wild, violent, rude, coarse, harsh, fierce, heavy (e.g. breathing), immoderate, extravagant, reckless" - }, - { - "example": "荒石", - "reading": "あらいし", - "meaning": "unprocessed stone, rubble" - }, - { - "example": "荒れる", - "reading": "あれる", - "meaning": "to be stormy, to be rough, to be rough (of skin), to be chapped, to be ruined, to fall into ruin, to be in a bad temper, to lose one's temper" - }, - { - "example": "荒らす", - "reading": "あらす", - "meaning": "to lay waste, to devastate, to damage, to invade, to break into, to troll (e.g. web forums), to spam" - }, - { - "example": "粗筋", - "reading": "あらすじ", - "meaning": "outline, summary, argument" - }, - { - "example": "荒む", - "reading": "すさむ", - "meaning": "to grow wild, to run to waste, to become degenerate, to become rough (of art, craft, etc.), to lose refinement, to deteriorate (of skill), to intensify (of wind, rain, etc.), to become more severe" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "亡", - "川", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33618_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08352.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8352.gif", - "uri": "http://jisho.org/search/%E8%8D%92%23kanji" - }, - { - "query": "郊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1304", - "strokeCount": 9, - "meaning": "outskirts, suburbs, rural area", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "郊外", - "reading": "コウガイ", - "meaning": "suburb, residential area on the outskirt of a city, commuter belt" - }, - { - "example": "郊外化", - "reading": "コウガイカ", - "meaning": "suburbanization" - }, - { - "example": "南郊", - "reading": "ナンコウ", - "meaning": "southern suburbs" - }, - { - "example": "北郊", - "reading": "ホッコウ", - "meaning": "northern suburbs" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "亠", - "父", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090ca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90ca.gif", - "uri": "http://jisho.org/search/%E9%83%8A%23kanji" - }, - { - "query": "貢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "956", - "strokeCount": 10, - "meaning": "tribute, support, finance", - "kunyomi": [ - "みつ.ぐ" - ], - "onyomi": [ - "コウ", - "ク" - ], - "onyomiExamples": [ - { - "example": "貢", - "reading": "コウ", - "meaning": "tribute" - }, - { - "example": "貢献", - "reading": "コウケン", - "meaning": "contribution (furthering a goal or cause), services (to a cause)" - }, - { - "example": "朝貢", - "reading": "チョウコウ", - "meaning": "bringing tribute" - }, - { - "example": "幣貢", - "reading": "ヘイコウ", - "meaning": "offering, tribute" - } - ], - "kunyomiExamples": [ - { - "example": "貢ぐ", - "reading": "みつぐ", - "meaning": "to support (someone) financially, to finance, to supply (money), to give (in support), to present (money or gifts) to a monarch (feudal lord, etc.)" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "工", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36002_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ca2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ca2.gif", - "uri": "http://jisho.org/search/%E8%B2%A2%23kanji" - }, - { - "query": "控", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1000", - "strokeCount": 11, - "meaning": "withdraw, draw in, hold back, refrain from, be moderate", - "kunyomi": [ - "ひか.える", - "ひか.え" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "控訴", - "reading": "コウソ", - "meaning": "appeal to a higher court, intermediate appeal" - }, - { - "example": "控除", - "reading": "コウジョ", - "meaning": "subtraction, deduction (e.g. tax), subsidy" - } - ], - "kunyomiExamples": [ - { - "example": "控える", - "reading": "ひかえる", - "meaning": "to be temperate in, to refrain, to abstain, to hold back, to restrain oneself from excessive ..., to make notes, to jot down (e.g. phone number), to be in preparation for, to be in waiting for, to be soon, to be in the offing, to be in a close relationship (e.g. as a backer, etc.)" - }, - { - "example": "控え", - "reading": "ひかえ", - "meaning": "reserve, spare, backup, note, memorandum, duplicate, copy, stub (of a ticket, etc.), waiting one's turn" - }, - { - "example": "控え室", - "reading": "ひかえしつ", - "meaning": "waiting room, anteroom, antechamber, green room" - }, - { - "example": "お客様控え", - "reading": "おきゃくさまひかえ", - "meaning": "customer copy (of a receipt, etc.)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "儿", - "宀", - "工", - "扎", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25511_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063a7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63a7.gif", - "uri": "http://jisho.org/search/%E6%8E%A7%23kanji" - }, - { - "query": "梗", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "for the most part, close up, flower stem", - "kunyomi": [ - "ふさぐ", - "やまにれ", - "おおむね" - ], - "onyomi": [ - "コウ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "梗塞", - "reading": "コウソク", - "meaning": "stoppage, tightness, block, infarction (e.g. cardiac)" - }, - { - "example": "梗概", - "reading": "コウガイ", - "meaning": "outline, summary, epitome" - }, - { - "example": "花梗", - "reading": "カコウ", - "meaning": "flower stalk, peduncle" - }, - { - "example": "小花梗", - "reading": "ショウカコウ", - "meaning": "pedicel" - }, - { - "example": "桔梗", - "reading": "キキョウ", - "meaning": "Chinese bellflower (Platycodon grandiflorus)" - }, - { - "example": "捻じ桔梗", - "reading": "ネジキキョウ", - "meaning": "Chinese bellflower (slightly screwed)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "一", - "日", - "木", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26775_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06897.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6897.gif", - "uri": "http://jisho.org/search/%E6%A2%97%23kanji" - }, - { - "query": "喉", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2390", - "strokeCount": 12, - "meaning": "throat, voice", - "kunyomi": [ - "のど" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "喉", - "reading": "コン", - "meaning": "fish, counter for fish" - }, - { - "example": "喉頭", - "reading": "コウトウ", - "meaning": "larynx" - }, - { - "example": "咽喉", - "reading": "インコウ", - "meaning": "throat" - }, - { - "example": "耳鼻咽喉", - "reading": "ジビインコウ", - "meaning": "ear, nose, and throat" - } - ], - "kunyomiExamples": [ - { - "example": "喉", - "reading": "のど", - "meaning": "throat, singing voice" - }, - { - "example": "喉赤蜂鳥", - "reading": "のどあかはちどり", - "meaning": "ruby-throated hummingbird (Archilochus colubris)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "乞", - "化", - "口", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21897_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05589.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5589.gif", - "uri": "http://jisho.org/search/%E5%96%89%23kanji" - }, - { - "query": "慌", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1826", - "strokeCount": 12, - "meaning": "disconcerted, be confused, lose one's head", - "kunyomi": [ - "あわ.てる", - "あわ.ただしい" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "世界恐慌", - "reading": "セカイキョウコウ", - "meaning": "worldwide financial crisis, global depression" - }, - { - "example": "世界大恐慌", - "reading": "セカイダイキョウコウ", - "meaning": "the Great Depression" - } - ], - "kunyomiExamples": [ - { - "example": "慌てる", - "reading": "あわてる", - "meaning": "to become confused (disconcerted, disorganized, disorganised), to be flustered, to panic, to hurry, to rush, to hasten" - }, - { - "example": "慌てる乞食はもらいが少ない", - "reading": "あわてるこじきはもらいがすくない", - "meaning": "slow and steady wins the race, there is luck in the last helping" - }, - { - "example": "慌ただしい", - "reading": "あわただしい", - "meaning": "busy, hurried, confused, flurried" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "亡", - "川", - "忙", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24908_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0614c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/614c.gif", - "uri": "http://jisho.org/search/%E6%85%8C%23kanji" - }, - { - "query": "硬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1101", - "strokeCount": 12, - "meaning": "stiff, hard", - "kunyomi": [ - "かた.い" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "硬", - "reading": "コウ", - "meaning": "hardness" - }, - { - "example": "硬貨", - "reading": "コウカ", - "meaning": "coin, hard currency" - }, - { - "example": "生硬", - "reading": "セイコウ", - "meaning": "crude, immature, unpolished" - }, - { - "example": "超硬", - "reading": "チョウコウ", - "meaning": "cemented carbide, superhard, ultrahard" - } - ], - "kunyomiExamples": [ - { - "example": "硬い", - "reading": "かたい", - "meaning": "hard, solid, tough, stiff, tight, wooden, unpolished (e.g. writing), strong, firm (not viscous or easily moved), safe, steady, honest, steadfast, obstinate, stubborn, bookish, formal, stuffy" - }, - { - "example": "かたいことは言いっこなし", - "reading": "かたいことはいいっこなし", - "meaning": "let's put formalities aside, let's not speak so stiffly" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "ノ", - "一", - "口", - "日", - "田", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30828_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0786c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/786c.gif", - "uri": "http://jisho.org/search/%E7%A1%AC%23kanji" - }, - { - "query": "絞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1288", - "strokeCount": 12, - "meaning": "strangle, constrict, wring", - "kunyomi": [ - "しぼ.る", - "し.める", - "し.まる" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "絞", - "reading": "コウ", - "meaning": "death by hanging (punishment in the ritsuryō system)" - }, - { - "example": "絞殺", - "reading": "コウサツ", - "meaning": "strangulation, strangling" - } - ], - "kunyomiExamples": [ - { - "example": "絞る", - "reading": "しぼる", - "meaning": "to wring (towel, rag), to squeeze, to squeeze (fruit to extract juice), to press, to extract, to milk, to express milk, to rack (one's brains), to strain (one's voice), to extort, to exploit, to chew out, to reprimand severely, to rake over the coals, to give a sound scolding, to tell someone off, to scold, to rebuke, to drill into, to train, to narrow down (one's focus), to whittle down, to gather up (curtain, etc.), to tighten (drawstring), to stop down (lens), to turn down (e.g. radio), to bend (bow), to draw, to hold down, to constrict, to immobilize" - }, - { - "example": "絞める", - "reading": "しめる", - "meaning": "to strangle, to constrict" - }, - { - "example": "絞まる", - "reading": "しまる", - "meaning": "to be strangled, to be constricted" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "亠", - "小", - "幺", - "父", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32094_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d5e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d5e.gif", - "uri": "http://jisho.org/search/%E7%B5%9E%23kanji" - }, - { - "query": "項", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "884", - "strokeCount": 12, - "meaning": "paragraph, nape of neck, clause, item, term (expression)", - "kunyomi": [ - "うなじ" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "項", - "reading": "コウ", - "meaning": "clause, paragraph, item, argument, term (of an equation), nape (of the neck)" - }, - { - "example": "項目", - "reading": "コウモク", - "meaning": "item, heading, category, clause, headword (in a dictionary, encyclopedia, etc.), entry" - }, - { - "example": "要項", - "reading": "ヨウコウ", - "meaning": "important points, main points" - }, - { - "example": "別項", - "reading": "ベッコウ", - "meaning": "special heading, separate paragraph" - } - ], - "kunyomiExamples": [ - { - "example": "項", - "reading": "うなじ", - "meaning": "nape (of the neck), nucha" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "工", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38917_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09805.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9805.gif", - "uri": "http://jisho.org/search/%E9%A0%85%23kanji" - }, - { - "query": "溝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1736", - "strokeCount": 13, - "meaning": "gutter, ditch, sewer, drain, 10**32", - "kunyomi": [ - "みぞ" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "溝", - "reading": "コウ", - "meaning": "10^32, hundred nonillion" - }, - { - "example": "溝渠", - "reading": "コウキョ", - "meaning": "ditch, sewer, canal" - }, - { - "example": "排水溝", - "reading": "ハイスイコウ", - "meaning": "drainage, gutter, ditch" - }, - { - "example": "海溝", - "reading": "カイコウ", - "meaning": "ocean trench, deep" - } - ], - "kunyomiExamples": [ - { - "example": "溝", - "reading": "みぞ", - "meaning": "ditch, drain, gutter, trench, groove, tread, gap (between people, countries, etc.), gulf" - }, - { - "example": "溝隠", - "reading": "みぞかくし", - "meaning": "Chinese lobelia (Lobelia chinensis)" - }, - { - "example": "押さえ溝", - "reading": "おさえみぞ", - "meaning": "groove in the body of wooden plane which holds the blade" - }, - { - "example": "逃げ溝", - "reading": "にげみぞ", - "meaning": "clearance groove, under cut" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "冂", - "十", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28317_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e9d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e9d.gif", - "uri": "http://jisho.org/search/%E6%BA%9D%23kanji" - }, - { - "query": "綱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1053", - "strokeCount": 14, - "meaning": "hawser, class (genus), rope, cord, cable", - "kunyomi": [ - "つな" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "綱", - "reading": "コウ", - "meaning": "class" - }, - { - "example": "綱領", - "reading": "コウリョウ", - "meaning": "general plan, main points, summary, platform (e.g. for a campaign), mission statement" - }, - { - "example": "要綱", - "reading": "ヨウコウ", - "meaning": "main principle, gist, general plan, guidelines, outline" - }, - { - "example": "大綱", - "reading": "タイコウ", - "meaning": "fundamental principles, main lines, outline, summary, general features" - } - ], - "kunyomiExamples": [ - { - "example": "綱", - "reading": "つな", - "meaning": "rope, cord, line, grand champion's braided belt" - }, - { - "example": "綱引き", - "reading": "つなひき", - "meaning": "tug of war (orig. a form of divination to predict whether the year will be favourable or unfavourable), forward puller (of a rickshaw)" - }, - { - "example": "命の綱", - "reading": "いのちのつな", - "meaning": "the thread of life" - }, - { - "example": "望みの綱", - "reading": "のぞみのつな", - "meaning": "one's last hope, one's only hope, the last hope" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "一", - "冂", - "小", - "山", - "岡", - "并", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32177_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07db1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7db1.gif", - "uri": "http://jisho.org/search/%E7%B6%B1%23kanji" - }, - { - "query": "酵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1862", - "strokeCount": 14, - "meaning": "fermentation", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "酵素", - "reading": "コウソ", - "meaning": "enzyme" - }, - { - "example": "酵母", - "reading": "コウボ", - "meaning": "yeast, leaven" - }, - { - "example": "並行複発酵", - "reading": "ヘイコウフクハッコウ", - "meaning": "multiple parallel fermentation (esp. in sake brewing)" - }, - { - "example": "アルコール発酵", - "reading": "アルコールハッコウ", - "meaning": "alcohol fermentation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "子", - "老", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37237_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09175.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9175.gif", - "uri": "http://jisho.org/search/%E9%85%B5%23kanji" - }, - { - "query": "稿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1400", - "strokeCount": 15, - "meaning": "draft, copy, manuscript, straw", - "kunyomi": [ - "わら", - "したがき" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "稿", - "reading": "コウ", - "meaning": "manuscript, version, draft" - }, - { - "example": "稿料", - "reading": "コウリョウ", - "meaning": "manuscript fee, payment for a piece of writing" - }, - { - "example": "送稿", - "reading": "ソウコウ", - "meaning": "document transmission" - }, - { - "example": "遺稿", - "reading": "イコウ", - "meaning": "posthumous manuscripts" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "亠", - "冂", - "口", - "禾", - "高" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31295_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a3f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a3f.gif", - "uri": "http://jisho.org/search/%E7%A8%BF%23kanji" - }, - { - "query": "衡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1847", - "strokeCount": 16, - "meaning": "equilibrium, measuring rod, scale", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "衡器", - "reading": "コウキ", - "meaning": "scale, balance, weighing machine" - }, - { - "example": "衡平", - "reading": "コウヘイ", - "meaning": "balance, equity" - }, - { - "example": "拡大均衡", - "reading": "カクダイキンコウ", - "meaning": "an expanded or expanding equilibrium" - }, - { - "example": "合従連衡", - "reading": "ガッショウレンコウ", - "meaning": "alliance (of the Six Kingdoms against the Qin dynasty, and of individual Kingdoms with the Qin dynasty), (tactic of) making and breaking alliances (to benefit oneself as the occasion demands), resorting to alliances as a diplomatic expedient" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "行", - "meaning": "go, do" - }, - "parts": [ - "勹", - "大", - "彳", - "田", - "行" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34913_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08861.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8861.gif", - "uri": "http://jisho.org/search/%E8%A1%A1%23kanji" - }, - { - "query": "購", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "945", - "strokeCount": 17, - "meaning": "subscription, buy", - "kunyomi": [], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "購入", - "reading": "コウニュウ", - "meaning": "purchase, buy" - }, - { - "example": "購読", - "reading": "コウドク", - "meaning": "buying and reading (book, magazine, etc.), subscribing (incl. free subscriptions), taking (e.g. newspaper)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "一", - "冂", - "十", - "目", - "貝", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36092_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cfc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cfc.gif", - "uri": "http://jisho.org/search/%E8%B3%BC%23kanji" - }, - { - "query": "乞", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2478", - "strokeCount": 3, - "meaning": "beg, invite, ask", - "kunyomi": [ - "こ.う" - ], - "onyomi": [ - "コツ", - "キツ", - "キ", - "キケ", - "コチ" - ], - "onyomiExamples": [ - { - "example": "乞食", - "reading": "コジキ", - "meaning": "beggar, begging" - }, - { - "example": "乞丐", - "reading": "コツガイ", - "meaning": "beggar, bum" - }, - { - "example": "行乞", - "reading": "ギョウコツ", - "meaning": "going on an alms round (for food), going begging (for food), going to ask for alms of food, pindacara" - }, - { - "example": "乞巧奠", - "reading": "キッコウデン", - "meaning": "Festival to Plead for Skills (progenitor festival of Tanabata)" - }, - { - "example": "乞丐", - "reading": "コツガイ", - "meaning": "beggar, bum" - } - ], - "kunyomiExamples": [ - { - "example": "請う", - "reading": "こう", - "meaning": "to beg, to ask, to request, to invite" - }, - { - "example": "乞高評", - "reading": "こうこうひょう", - "meaning": "with the author's compliments" - } - ], - "radical": { - "symbol": "乛", - "forms": [ - "乙", - "⺄", - "乚" - ], - "meaning": "second" - }, - "parts": [ - "ノ", - "一", - "乙", - "乞", - "人" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20062_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e5e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e5e.gif", - "uri": "http://jisho.org/search/%E4%B9%9E%23kanji" - }, - { - "query": "拷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2057", - "strokeCount": 9, - "meaning": "torture, beat", - "kunyomi": [], - "onyomi": [ - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "拷問", - "reading": "ゴウモン", - "meaning": "torture" - }, - { - "example": "拷器", - "reading": "ゴウキ", - "meaning": "instruments of torture" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25335_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062f7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62f7.gif", - "uri": "http://jisho.org/search/%E6%8B%B7%23kanji" - }, - { - "query": "剛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1576", - "strokeCount": 10, - "meaning": "sturdy, strength", - "kunyomi": [], - "onyomi": [ - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "剛", - "reading": "ゴウ", - "meaning": "strong, hard, manly" - }, - { - "example": "強情", - "reading": "ゴウジョウ", - "meaning": "obstinate, stubborn, headstrong" - }, - { - "example": "強豪", - "reading": "キョウゴウ", - "meaning": "overwhelming strength, extremely strong person, powerhouse, very strong player, very strong team" - }, - { - "example": "金剛", - "reading": "コンゴウ", - "meaning": "vajra (indestructible substance), diamond, adamantine, thunderbolt, Indra's weapon, Buddhist symbol of the indestructible truth" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "冂", - "刈", - "山", - "岡", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21083_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0525b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/525b.gif", - "uri": "http://jisho.org/search/%E5%89%9B%23kanji" - }, - { - "query": "傲", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "be proud", - "kunyomi": [ - "おご.る", - "あなど.る" - ], - "onyomi": [ - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "傲慢", - "reading": "ゴウマン", - "meaning": "haughty, arrogant, insolent, proud, overbearing" - }, - { - "example": "傲岸", - "reading": "ゴウガン", - "meaning": "haughty, arrogant, supercilious" - }, - { - "example": "驕傲", - "reading": "キョウゴウ", - "meaning": "pride, arrogance" - }, - { - "example": "倨傲", - "reading": "キョゴウ", - "meaning": "pride, arrogance" - } - ], - "kunyomiExamples": [ - { - "example": "奢る", - "reading": "おごる", - "meaning": "to give (someone) a treat, to be extravagant, to live luxuriously, to be proud, to be haughty" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "乞", - "二", - "亠", - "化", - "土", - "攵", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20658_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50b2.gif", - "uri": "http://jisho.org/search/%E5%82%B2%23kanji" - }, - { - "query": "豪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1104", - "strokeCount": 14, - "meaning": "overpowering, great, powerful, excelling, Australia", - "kunyomi": [ - "えら.い" - ], - "onyomi": [ - "ゴウ" - ], - "onyomiExamples": [ - { - "example": "豪", - "reading": "ゴウ", - "meaning": "Australia" - }, - { - "example": "剛", - "reading": "ゴウ", - "meaning": "strong, hard, manly" - }, - { - "example": "強豪", - "reading": "キョウゴウ", - "meaning": "overwhelming strength, extremely strong person, powerhouse, very strong player, very strong team" - }, - { - "example": "古豪", - "reading": "コゴウ", - "meaning": "veteran, old-timer, man of experience" - } - ], - "kunyomiExamples": [ - { - "example": "偉い", - "reading": "えらい", - "meaning": "great, excellent, admirable, remarkable, distinguished, important, celebrated, famous, eminent, very troublesome, awful, terrible, tiring, tough, very, extremely" - } - ], - "radical": { - "symbol": "豕", - "meaning": "pig" - }, - "parts": [ - "亠", - "冖", - "口", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35946_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c6a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c6a.gif", - "uri": "http://jisho.org/search/%E8%B1%AA%23kanji" - }, - { - "query": "克", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1333", - "strokeCount": 7, - "meaning": "overcome, kindly, skillfully", - "kunyomi": [ - "か.つ" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "克明", - "reading": "コクメイ", - "meaning": "detailed, scrupulous, careful, minute, faithful, elaborate, diligent, honest, upright, sincere" - }, - { - "example": "克服", - "reading": "コクフク", - "meaning": "conquest (of a difficulty, illness, handicap, etc.), overcoming, bringing under control, subjugation, victory over" - }, - { - "example": "相克", - "reading": "ソウコク", - "meaning": "rivalry" - }, - { - "example": "超克", - "reading": "チョウコク", - "meaning": "overcoming, conquering, surmounting, getting over" - } - ], - "kunyomiExamples": [ - { - "example": "勝つ", - "reading": "かつ", - "meaning": "to win, to gain victory" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "儿", - "十", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20811_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0514b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/514b.gif", - "uri": "http://jisho.org/search/%E5%85%8B%23kanji" - }, - { - "query": "酷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1596", - "strokeCount": 14, - "meaning": "cruel, severe, atrocious, unjust", - "kunyomi": [ - "ひど.い" - ], - "onyomi": [ - "コク" - ], - "onyomiExamples": [ - { - "example": "酷", - "reading": "コク", - "meaning": "severe, harsh, stringent, rigorous, strict, unfair" - }, - { - "example": "酷似", - "reading": "コクジ", - "meaning": "resembling closely, being strikingly similar, bearing a strong likeness" - }, - { - "example": "残忍冷酷", - "reading": "ザンニンレイコク", - "meaning": "atrocious and cold-blooded, cruel, brutal, merciless" - }, - { - "example": "厳酷", - "reading": "ゲンコク", - "meaning": "severity, rigor, rigour" - } - ], - "kunyomiExamples": [ - { - "example": "酷い", - "reading": "ひどい", - "meaning": "cruel, heartless, hard, harsh, severe, violent, intense, strong, heavy, extreme, very bad, terrible, awful, excessive, exorbitant, unreasonable, outrageous, unfair, unjust" - }, - { - "example": "ひどい風邪", - "reading": "ひどいかぜ", - "meaning": "bad cold" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "ノ", - "口", - "土", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37239_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09177.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9177.gif", - "uri": "http://jisho.org/search/%E9%85%B7%23kanji" - }, - { - "query": "獄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1529", - "strokeCount": 14, - "meaning": "prison, jail", - "kunyomi": [], - "onyomi": [ - "ゴク" - ], - "onyomiExamples": [ - { - "example": "獄", - "reading": "ゴク", - "meaning": "jail, gaol, prison" - }, - { - "example": "獄中", - "reading": "ゴクチュウ", - "meaning": "during imprisonment, while in jail" - }, - { - "example": "監獄", - "reading": "カンゴク", - "meaning": "prison" - }, - { - "example": "疑獄", - "reading": "ギゴク", - "meaning": "bribery scandal, graft case" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "犬", - "犯", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29508_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07344.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7344.gif", - "uri": "http://jisho.org/search/%E7%8D%84%23kanji" - }, - { - "query": "駒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1452", - "strokeCount": 15, - "meaning": "pony, horse, colt", - "kunyomi": [ - "こま" - ], - "onyomi": [ - "ク" - ], - "onyomiExamples": [ - { - "example": "産駒", - "reading": "サンク", - "meaning": "horse offspring" - } - ], - "kunyomiExamples": [ - { - "example": "駒", - "reading": "こま", - "meaning": "piece (in shogi, chess, etc.), horse, foal, bridge (of a violin, etc.)" - }, - { - "example": "小間板", - "reading": "こまいた", - "meaning": "cutting guide board for noodles" - }, - { - "example": "1コマ", - "reading": "ひとコマ", - "meaning": "one scene, one frame, one shot, one exposure, one cell, one panel (comic)" - }, - { - "example": "将棋の駒", - "reading": "しょうぎのこま", - "meaning": "shogi piece" - } - ], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "勹", - "口", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39378_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/099d2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/99d2.gif", - "uri": "http://jisho.org/search/%E9%A7%92%23kanji" - }, - { - "query": "込", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "675", - "strokeCount": 5, - "meaning": "crowded, mixture, in bulk, included, (kokuji)", - "kunyomi": [ - "-こ.む", - "こ.む", - "こ.み", - "-こ.み", - "こ.める" - ], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "込む", - "reading": "こむ", - "meaning": "to be crowded, to be packed, to be complex, to go into, to put into, to remain (seated), to be plunged into (silence), to do thoroughly, to do intently, to continue in the same state" - }, - { - "example": "込み", - "reading": "こみ", - "meaning": "including, inclusive of, komi, extra points given to the white player as compensation for playing second (in go)" - }, - { - "example": "混み合う", - "reading": "こみあう", - "meaning": "to be crowded, to be packed, to be jammed" - }, - { - "example": "割り込み", - "reading": "わりこみ", - "meaning": "queue jumping, breaking into a line, muscling in on, wedging oneself in, interruption, sharing a theater box (theatre), interrupt" - }, - { - "example": "差し込み", - "reading": "さしこみ", - "meaning": "insertion, plug, (electrical) outlet, power point, spasm of pain, griping pain, (fit of) convulsions, stitch" - }, - { - "example": "込める", - "reading": "こめる", - "meaning": "to load (a gun, etc.), to charge, to put into (e.g. emotion, effort), to include (e.g. tax in a sales price), to hang over, to shroud, to enshroud, to envelop, to screen" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "入", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36796_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fbc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fbc.gif", - "uri": "http://jisho.org/search/%E8%BE%BC%23kanji" - }, - { - "query": "頃", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2015", - "strokeCount": 11, - "meaning": "time, about, toward", - "kunyomi": [ - "ころ", - "ごろ", - "しばら.く" - ], - "onyomi": [ - "ケイ", - "キョウ" - ], - "onyomiExamples": [ - { - "example": "頃", - "reading": "ケイ", - "meaning": "qing (Chinese unit of land area equal to 100 mu)" - }, - { - "example": "頃刻", - "reading": "ケイコク", - "meaning": "short period" - }, - { - "example": "万頃", - "reading": "バンケイ", - "meaning": "vast expanse" - } - ], - "kunyomiExamples": [ - { - "example": "頃", - "reading": "ころ", - "meaning": "(approximate) time, around, about, toward, suitable time (or condition), time of year, season" - }, - { - "example": "頃おい", - "reading": "ころおい", - "meaning": "time, period, days" - }, - { - "example": "幼い頃", - "reading": "おさないころ", - "meaning": "when one was a very young child, very early in one's life" - }, - { - "example": "間もない頃", - "reading": "まもないころ", - "meaning": "in the early period (of something), at the beginning" - }, - { - "example": "頃", - "reading": "ころ", - "meaning": "(approximate) time, around, about, toward, suitable time (or condition), time of year, season" - }, - { - "example": "今日この頃", - "reading": "きょうこのごろ", - "meaning": "these days, nowadays, recently" - }, - { - "example": "使い頃", - "reading": "つかいごろ", - "meaning": "handy" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "匕", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38915_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09803.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9803.gif", - "uri": "http://jisho.org/search/%E9%A0%83%23kanji" - }, - { - "query": "昆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1688", - "strokeCount": 8, - "meaning": "descendants, elder brother, insect", - "kunyomi": [], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "昆虫", - "reading": "コンチュウ", - "meaning": "insect, bug" - }, - { - "example": "昆布", - "reading": "コンブ", - "meaning": "kombu (usu. Saccharina japonica), konbu, kelp, any edible species from the family Laminariaceae" - }, - { - "example": "後昆", - "reading": "コウコン", - "meaning": "grandchildren, posterity" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "比" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26118_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06606.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6606.gif", - "uri": "http://jisho.org/search/%E6%98%86%23kanji" - }, - { - "query": "恨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1877", - "strokeCount": 9, - "meaning": "regret, bear a grudge, resentment, malice, hatred", - "kunyomi": [ - "うら.む", - "うら.めしい" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "恨事", - "reading": "コンジ", - "meaning": "regrettable matter" - }, - { - "example": "痛恨", - "reading": "ツウコン", - "meaning": "regretful, sorrowful, bitter, contrition" - }, - { - "example": "意趣遺恨", - "reading": "イシュイコン", - "meaning": "grudge, spite, malice, rancor" - } - ], - "kunyomiExamples": [ - { - "example": "恨む", - "reading": "うらむ", - "meaning": "to bear a grudge against, to resent, to blame, to curse, to feel bitter towards" - }, - { - "example": "憾む", - "reading": "うらむ", - "meaning": "to regret" - }, - { - "example": "恨めしい", - "reading": "うらめしい", - "meaning": "reproachful, hateful, bitter" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "忙", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24680_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06068.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6068.gif", - "uri": "http://jisho.org/search/%E6%81%A8%23kanji" - }, - { - "query": "婚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "767", - "strokeCount": 11, - "meaning": "marriage", - "kunyomi": [], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "婚約", - "reading": "コンヤク", - "meaning": "engagement, betrothal" - }, - { - "example": "婚姻", - "reading": "コンイン", - "meaning": "marriage, matrimony" - }, - { - "example": "初婚", - "reading": "ショコン", - "meaning": "first marriage" - }, - { - "example": "成婚", - "reading": "セイコン", - "meaning": "marriage, wedding" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "日", - "氏" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23130_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a5a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a5a.gif", - "uri": "http://jisho.org/search/%E5%A9%9A%23kanji" - }, - { - "query": "痕", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1958", - "strokeCount": 11, - "meaning": "mark, foot print", - "kunyomi": [ - "あと" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "痕", - "reading": "コン", - "meaning": "scar (e.g. from operation, injection), trace, mark (e.g. skid marks)" - }, - { - "example": "痕跡", - "reading": "コンセキ", - "meaning": "trace, vestige, mark, sign, evidence" - }, - { - "example": "弾痕", - "reading": "ダンコン", - "meaning": "bullet hole, bullet mark" - }, - { - "example": "聖痕", - "reading": "セイコン", - "meaning": "stigmata" - } - ], - "kunyomiExamples": [ - { - "example": "跡", - "reading": "あと", - "meaning": "trace, tracks, mark, sign, site, remains, ruins, scar" - }, - { - "example": "ニキビ跡", - "reading": "ニキビあと", - "meaning": "pockmark (caused by a pimple), acne scarring" - }, - { - "example": "爪跡", - "reading": "つめあと", - "meaning": "fingernail mark, scratch, scars (e.g. of war), traces (of damage), ravages, after-effects" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "疔", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30165_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075d5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75d5.gif", - "uri": "http://jisho.org/search/%E7%97%95%23kanji" - }, - { - "query": "紺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1825", - "strokeCount": 11, - "meaning": "dark blue, navy", - "kunyomi": [], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "紺", - "reading": "コン", - "meaning": "navy blue, deep blue" - }, - { - "example": "紺屋", - "reading": "コウヤ", - "meaning": "dyer" - }, - { - "example": "紫紺", - "reading": "シコン", - "meaning": "bluish purple" - }, - { - "example": "茄子紺", - "reading": "ナスコン", - "meaning": "dusky purple, dark purple, eggplant color" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "甘", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32058_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d3a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d3a.gif", - "uri": "http://jisho.org/search/%E7%B4%BA%23kanji" - }, - { - "query": "魂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1748", - "strokeCount": 14, - "meaning": "soul, spirit", - "kunyomi": [ - "たましい", - "たま" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "魂", - "reading": "コン", - "meaning": "Yang energy, spirit" - }, - { - "example": "魂胆", - "reading": "コンタン", - "meaning": "ulterior motive, plot, scheme, complicated circumstances, intricacies" - }, - { - "example": "鎮魂", - "reading": "チンコン", - "meaning": "repose of a soul, ceremony for the repose of a departed soul" - }, - { - "example": "入魂", - "reading": "ニュウコン", - "meaning": "putting one's heart and soul (into), giving one's all, breathing a soul into (e.g. a Buddhist statue), intimacy, familiarity" - } - ], - "kunyomiExamples": [ - { - "example": "魂", - "reading": "たましい", - "meaning": "soul, spirit" - }, - { - "example": "魂不死説", - "reading": "たましいふしせつ", - "meaning": "(theory of) the immortality of the soul" - }, - { - "example": "一寸の虫にも五分の魂", - "reading": "いっすんのむしにもごぶのたましい", - "meaning": "tread on a worm and it will turn, even a tiny bug will defend itself, even the weakest and smallest beings have their own wills, so do not make light of them" - }, - { - "example": "魂", - "reading": "たましい", - "meaning": "soul, spirit" - }, - { - "example": "魂送り", - "reading": "たまおくり", - "meaning": "sending off the spirits of the dead" - }, - { - "example": "稲魂", - "reading": "うかのみたま", - "meaning": "the god of foodstuffs (esp. of rice)" - }, - { - "example": "亡き魂", - "reading": "なきたま", - "meaning": "departed soul, spirit" - } - ], - "radical": { - "symbol": "鬼", - "meaning": "ghost, demon" - }, - "parts": [ - "二", - "儿", - "匕", - "厶", - "田", - "鬼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39746_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09b42.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9b42.gif", - "uri": "http://jisho.org/search/%E9%AD%82%23kanji" - }, - { - "query": "墾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 16, - "meaning": "ground-breaking, open up farmland", - "kunyomi": [ - "は.る", - "ひら.く" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "墾田", - "reading": "コンデン", - "meaning": "new rice field" - }, - { - "example": "未開墾", - "reading": "ミカイコン", - "meaning": "uncultivated" - }, - { - "example": "未墾", - "reading": "ミコン", - "meaning": "uncultivated, wild" - } - ], - "kunyomiExamples": [ - { - "example": "墾く", - "reading": "ひらく", - "meaning": "to cultivate (land), to clear (land)" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "爪", - "犯", - "艮", - "豸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22718_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058be.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58be.gif", - "uri": "http://jisho.org/search/%E5%A2%BE%23kanji" - }, - { - "query": "懇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1135", - "strokeCount": 17, - "meaning": "sociable, kind, courteous, hospitable, cordial", - "kunyomi": [ - "ねんご.ろ" - ], - "onyomi": [ - "コン" - ], - "onyomiExamples": [ - { - "example": "懇談", - "reading": "コンダン", - "meaning": "informal talk" - }, - { - "example": "懇親", - "reading": "コンシン", - "meaning": "friendship, intimacy" - }, - { - "example": "米懇", - "reading": "ベイコン", - "meaning": "Round Table Conference on Rice Price" - }, - { - "example": "昵懇", - "reading": "ジッコン", - "meaning": "intimacy, familiarity, closeness" - } - ], - "kunyomiExamples": [ - { - "example": "懇ろ", - "reading": "ねんごろ", - "meaning": "kind, courteous, hospitable, warmly respectful, intimate, becoming intimate, having an intimate relationship (sometimes esp. a homosexual relationship)" - }, - { - "example": "懇ろになる", - "reading": "ねんごろになる", - "meaning": "to become intimate with (e.g. a woman), to become acquainted" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "爪", - "犯", - "艮", - "豸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25031_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61c7.gif", - "uri": "http://jisho.org/search/%E6%87%87%23kanji" - }, - { - "query": "沙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1897", - "strokeCount": 7, - "meaning": "sand", - "kunyomi": [ - "すな", - "よなげる" - ], - "onyomi": [ - "サ", - "シャ" - ], - "onyomiExamples": [ - { - "example": "沙", - "reading": "シャ", - "meaning": "one hundred-millionth" - }, - { - "example": "砂漠", - "reading": "サバク", - "meaning": "desert" - }, - { - "example": "秋沙", - "reading": "アイサ", - "meaning": "merganser (any duck of genus Mergus)" - }, - { - "example": "海秋沙", - "reading": "ウミアイサ", - "meaning": "red-breasted merganser" - }, - { - "example": "沙", - "reading": "シャ", - "meaning": "one hundred-millionth" - }, - { - "example": "砂丘", - "reading": "サキュウ", - "meaning": "sand dune, sand hill" - }, - { - "example": "泥砂", - "reading": "デイサ", - "meaning": "mud and sand" - }, - { - "example": "恒河沙", - "reading": "ゴウガシャ", - "meaning": "10^52 (or 10^56), innumerable" - } - ], - "kunyomiExamples": [ - { - "example": "砂", - "reading": "すな", - "meaning": "sand, grit" - }, - { - "example": "砂子", - "reading": "すなご", - "meaning": "gold dust, silver dust, sand, grit" - }, - { - "example": "白砂", - "reading": "はくしゃ", - "meaning": "white sand" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "小", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27801_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c99.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c99.gif", - "uri": "http://jisho.org/search/%E6%B2%99%23kanji" - }, - { - "query": "唆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1278", - "strokeCount": 10, - "meaning": "tempt, seduce, instigate, promote", - "kunyomi": [ - "そそ.る", - "そそのか.す" - ], - "onyomi": [ - "サ" - ], - "onyomiExamples": [ - { - "example": "教唆", - "reading": "キョウサ", - "meaning": "instigation, incitement" - } - ], - "kunyomiExamples": [ - { - "example": "唆る", - "reading": "そそる", - "meaning": "to excite, to incite, to stimulate, to arouse, to tempt, to stir up" - }, - { - "example": "唆す", - "reading": "そそのかす", - "meaning": "to instigate, to tempt, to entice, to incite" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "儿", - "厶", - "口", - "夂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21766_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05506.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5506.gif", - "uri": "http://jisho.org/search/%E5%94%86%23kanji" - }, - { - "query": "詐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1511", - "strokeCount": 12, - "meaning": "lie, falsehood, deceive, pretend", - "kunyomi": [ - "いつわ.る" - ], - "onyomi": [ - "サ" - ], - "onyomiExamples": [ - { - "example": "詐欺", - "reading": "サギ", - "meaning": "fraud, swindle, graft, cheating, trick, scam" - }, - { - "example": "詐欺師", - "reading": "サギシ", - "meaning": "swindler, imposter, crook, cheater" - }, - { - "example": "欺詐", - "reading": "ギサ", - "meaning": "fraud, fraudulence, dupery, hoax" - }, - { - "example": "譎詐", - "reading": "キッサ", - "meaning": "falsehood, fabrication, dissimulation" - } - ], - "kunyomiExamples": [ - { - "example": "偽る", - "reading": "いつわる", - "meaning": "to lie, to cheat, to pretend, to feign, to falsify, to trick, to deceive" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "言", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35408_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a50.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a50.gif", - "uri": "http://jisho.org/search/%E8%A9%90%23kanji" - }, - { - "query": "鎖", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1250", - "strokeCount": 18, - "meaning": "chain, irons, connection", - "kunyomi": [ - "くさり", - "とざ.す" - ], - "onyomi": [ - "サ" - ], - "onyomiExamples": [ - { - "example": "閉ざす", - "reading": "トザス", - "meaning": "to shut, to close, to fasten, to lock, to block (a street, entrance, etc.), to shut in (with snow, ice, etc.), to shut off, to cut off, to cover (e.g. in darkness), to consume (with negative feelings), to fill (e.g. with sadness), to bury (e.g. in grief)" - }, - { - "example": "鎖国", - "reading": "サコク", - "meaning": "national isolation, closing the country (to foreigners), sakoku, policy of national isolation enacted by the Tokugawa shogunate" - }, - { - "example": "経済封鎖", - "reading": "ケイザイフウサ", - "meaning": "economic blockade, embargo" - }, - { - "example": "学級閉鎖", - "reading": "ガッキュウヘイサ", - "meaning": "temporary closing of classes" - } - ], - "kunyomiExamples": [ - { - "example": "鎖", - "reading": "くさり", - "meaning": "chain, chains" - }, - { - "example": "鎖編み", - "reading": "くさりあみ", - "meaning": "chain stitch" - }, - { - "example": "救命の鎖", - "reading": "きゅうめいのくさり", - "meaning": "chain of survival" - }, - { - "example": "人間の鎖", - "reading": "にんげんのくさり", - "meaning": "human chain (chain of people holding hands, usually in protest)" - }, - { - "example": "閉ざす", - "reading": "とざす", - "meaning": "to shut, to close, to fasten, to lock, to block (a street, entrance, etc.), to shut in (with snow, ice, etc.), to shut off, to cut off, to cover (e.g. in darkness), to consume (with negative feelings), to fill (e.g. with sadness), to bury (e.g. in grief)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ハ", - "尚", - "目", - "貝", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37782_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09396.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9396.gif", - "uri": "http://jisho.org/search/%E9%8E%96%23kanji" - }, - { - "query": "挫", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1869", - "strokeCount": 10, - "meaning": "crush, break, sprain, discourage", - "kunyomi": [ - "くじ.く", - "くじ.ける" - ], - "onyomi": [ - "ザ", - "サ" - ], - "onyomiExamples": [ - { - "example": "挫折", - "reading": "ザセツ", - "meaning": "setback, failure (e.g. plans, business), frustration, discouragement" - }, - { - "example": "挫傷", - "reading": "ザショウ", - "meaning": "sprain, wrench, bruise, contusion, fracture" - }, - { - "example": "頓挫", - "reading": "トンザ", - "meaning": "setback, deadlock, being at a standstill or impasse" - } - ], - "kunyomiExamples": [ - { - "example": "挫く", - "reading": "くじく", - "meaning": "to sprain, to twist, to dampen (enthusiasm), to discourage, to dishearten, to dispirit, to depress, to unnerve, to crush" - }, - { - "example": "挫ける", - "reading": "くじける", - "meaning": "to be disheartened, to lose heart, to be dispirited, to be crushed (emotionally), to be sprained, to be snapped, to be broken" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "人", - "土", - "扎", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25387_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0632b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/632b.gif", - "uri": "http://jisho.org/search/%E6%8C%AB%23kanji" - }, - { - "query": "采", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 8, - "meaning": "dice, form, appearance, take, gather, coloring", - "kunyomi": [ - "と.る", - "いろどり" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "采", - "reading": "サイ", - "meaning": "dice, die, baton (of command)" - }, - { - "example": "さいの目", - "reading": "サイノメ", - "meaning": "pip (spot on a die), small cube (esp. of food), die, dice" - }, - { - "example": "納采", - "reading": "ノウサイ", - "meaning": "betrothal gift" - }, - { - "example": "神采", - "reading": "シンサイ", - "meaning": "surpassing looks, exceptional appearance, mind and appearance" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "釆", - "meaning": "divide, distinguish, choose" - }, - "parts": [ - "木", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37319_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91c7.gif", - "uri": "http://jisho.org/search/%E9%87%87%23kanji" - }, - { - "query": "砕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1579", - "strokeCount": 9, - "meaning": "smash, break, crush, familiar, popular", - "kunyomi": [ - "くだ.く", - "くだ.ける" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "砕石", - "reading": "サイセキ", - "meaning": "crushed stone, macadam, crushing (rock)" - }, - { - "example": "砕岩機", - "reading": "サイガンキ", - "meaning": "rock crusher" - }, - { - "example": "破砕", - "reading": "ハサイ", - "meaning": "crushing (into pieces), smashing, cracking, breaking up" - }, - { - "example": "玉砕", - "reading": "ギョクサイ", - "meaning": "honourable defeat, honorable defeat, honourable death, honorable death, death without surrender, trying but being utterly beaten, being completely rejected when professing one's love" - } - ], - "kunyomiExamples": [ - { - "example": "砕く", - "reading": "くだく", - "meaning": "to break, to smash" - }, - { - "example": "砕ける", - "reading": "くだける", - "meaning": "to break (into pieces), to be broken, to be smashed, to collapse, to crumble, to decline, to cool (e.g. enthusiasm), to dampen (e.g. one's will to fight), to become less formal, to throw off reserve, to become affable, to become easy to understand (e.g. a story), to be worried" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "ノ", - "九", - "十", - "口", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30741_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07815.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7815.gif", - "uri": "http://jisho.org/search/%E7%A0%95%23kanji" - }, - { - "query": "宰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1597", - "strokeCount": 10, - "meaning": "superintend, manager, rule", - "kunyomi": [], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "宰相", - "reading": "サイショウ", - "meaning": "prime minister" - }, - { - "example": "宰領", - "reading": "サイリョウ", - "meaning": "supervision, superintendence, management, supervisor" - }, - { - "example": "厨宰", - "reading": "チュウサイ", - "meaning": "chef, head cook" - }, - { - "example": "冢宰", - "reading": "チョウサイ", - "meaning": "Minister of State (Zhou-dynasty China)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "十", - "宀", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23472_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bb0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bb0.gif", - "uri": "http://jisho.org/search/%E5%AE%B0%23kanji" - }, - { - "query": "栽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1496", - "strokeCount": 10, - "meaning": "plantation, planting", - "kunyomi": [], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "栽培", - "reading": "サイバイ", - "meaning": "cultivation" - }, - { - "example": "栽培家", - "reading": "サイバイカ", - "meaning": "grower, farmer" - }, - { - "example": "植栽", - "reading": "ショクサイ", - "meaning": "raising trees and plants" - }, - { - "example": "輪栽", - "reading": "リンサイ", - "meaning": "rotation of crops" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "土", - "戈", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26685_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0683d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/683d.gif", - "uri": "http://jisho.org/search/%E6%A0%BD%23kanji" - }, - { - "query": "彩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1251", - "strokeCount": 11, - "meaning": "coloring, paint, makeup", - "kunyomi": [ - "いろど.る" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "彩色", - "reading": "サイシキ", - "meaning": "colouring, coloring, colouration, coloration, painting" - }, - { - "example": "彩雲", - "reading": "サイウン", - "meaning": "glowing clouds" - }, - { - "example": "油彩", - "reading": "ユサイ", - "meaning": "oil painting" - }, - { - "example": "光彩", - "reading": "コウサイ", - "meaning": "brilliance, splendour, splendor, lustre, luster" - } - ], - "kunyomiExamples": [ - { - "example": "彩る", - "reading": "いろどる", - "meaning": "to colour, to color, to paint, to apply make-up, to decorate, to garnish, to adorn, to add flair" - } - ], - "radical": { - "symbol": "彡", - "meaning": "bristle, beard" - }, - "parts": [ - "彡", - "木", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24425_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f69.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f69.gif", - "uri": "http://jisho.org/search/%E5%BD%A9%23kanji" - }, - { - "query": "斎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1155", - "strokeCount": 11, - "meaning": "purification, Buddhist food, room, worship, avoid, alike", - "kunyomi": [ - "とき", - "つつし.む", - "ものいみ", - "い.む", - "いわ.う", - "いつ.く" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "斎場", - "reading": "サイジョウ", - "meaning": "funeral hall, ceremony site" - }, - { - "example": "斎戒", - "reading": "サイカイ", - "meaning": "purification" - }, - { - "example": "大斎", - "reading": "タイサイ", - "meaning": "Great Lent, Great Fast" - }, - { - "example": "小斎", - "reading": "ショウサイ", - "meaning": "abstinence (in Catholicism)" - } - ], - "kunyomiExamples": [ - { - "example": "斎", - "reading": "とき", - "meaning": "meals exchanged by parishioners and priests" - }, - { - "example": "忌む", - "reading": "いむ", - "meaning": "to avoid, to refrain from, to shun, to detest" - }, - { - "example": "祝う", - "reading": "いわう", - "meaning": "to celebrate, to congratulate, to observe (a festival), to present (a gift) in celebration, to drink in celebration, to wish for (a happy future, good fortune, etc.), to pray for" - }, - { - "example": "斎く", - "reading": "いつく", - "meaning": "to worship, to enshrine" - } - ], - "radical": { - "symbol": "文", - "meaning": "script, literature" - }, - "parts": [ - "ノ", - "二", - "小", - "廾", - "文", - "斉", - "示", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25998_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0658e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/658e.gif", - "uri": "http://jisho.org/search/%E6%96%8E%23kanji" - }, - { - "query": "債", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "728", - "strokeCount": 13, - "meaning": "bond, loan, debt", - "kunyomi": [], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "債", - "reading": "サイ", - "meaning": "debt, loan" - }, - { - "example": "債権", - "reading": "サイケン", - "meaning": "credit, claim" - }, - { - "example": "割引債", - "reading": "ワリビキサイ", - "meaning": "discount bond" - }, - { - "example": "起債", - "reading": "キサイ", - "meaning": "issuing of bonds" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "二", - "亠", - "化", - "土", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20661_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050b5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50b5.gif", - "uri": "http://jisho.org/search/%E5%82%B5%23kanji" - }, - { - "query": "催", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "536", - "strokeCount": 13, - "meaning": "sponsor, hold (a meeting), give (a dinner)", - "kunyomi": [ - "もよう.す", - "もよお.す" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "催涙", - "reading": "サイルイ", - "meaning": "lacrimator, dacryagogue, tear-inducing agent" - }, - { - "example": "催促", - "reading": "サイソク", - "meaning": "pressing, urging, demanding, demand" - }, - { - "example": "共催", - "reading": "キョウサイ", - "meaning": "joint sponsorship (of an event), cosponsorship, joint hosting" - }, - { - "example": "併催", - "reading": "ヘイサイ", - "meaning": "combining a pair of events, joint" - } - ], - "kunyomiExamples": [ - { - "example": "催す", - "reading": "もよおす", - "meaning": "to hold (an event), to give (a dinner, party, etc.), to feel (sensation, emotion, call of nature, etc.), to show signs of" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "山", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20652_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50ac.gif", - "uri": "http://jisho.org/search/%E5%82%AC%23kanji" - }, - { - "query": "塞", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "close, shut, cover, block, obstruct", - "kunyomi": [ - "ふさ.ぐ", - "とりで", - "み.ちる" - ], - "onyomi": [ - "ソク", - "サイ" - ], - "onyomiExamples": [ - { - "example": "塞源", - "reading": "ソクゲン", - "meaning": "blockage of a source" - }, - { - "example": "塞栓", - "reading": "ソクセン", - "meaning": "embolus, abnormal substance (i.e. air) circulating in the blood" - }, - { - "example": "梗塞", - "reading": "コウソク", - "meaning": "stoppage, tightness, block, infarction (e.g. cardiac)" - }, - { - "example": "閉塞", - "reading": "ヘイソク", - "meaning": "blockage, blockade, blocking up, stoppage, obstruction, occlusion" - }, - { - "example": "塞翁が馬", - "reading": "サイオウガウマ", - "meaning": "the future is unpredictable, inscrutable are the ways of heaven, the irony of fate" - }, - { - "example": "道祖神", - "reading": "ドウソジン", - "meaning": "traveler's guardian deity (traveller)" - }, - { - "example": "防塞", - "reading": "ボウサイ", - "meaning": "fort, defensive position" - }, - { - "example": "城塞", - "reading": "ジョウサイ", - "meaning": "fortress, stronghold, citadel" - } - ], - "kunyomiExamples": [ - { - "example": "塞ぐ", - "reading": "ふさぐ", - "meaning": "to stop up, to close up, to block (up), to plug up, to shut up, to cover (ears, eyes, etc.), to close (eyes, mouth), to stand in the way, to obstruct, to occupy, to fill up, to take up, to perform one's role, to do one's duty, to feel depressed, to be in low spirits, to mope" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ハ", - "一", - "土", - "宀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22622_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0585e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/585e.gif", - "uri": "http://jisho.org/search/%E5%A1%9E%23kanji" - }, - { - "query": "歳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "269", - "strokeCount": 13, - "meaning": "year-end, age, occasion, opportunity", - "kunyomi": [ - "とし", - "とせ", - "よわい" - ], - "onyomi": [ - "サイ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "歳", - "reading": "サイ", - "meaning": "-years-old" - }, - { - "example": "歳月", - "reading": "サイゲツ", - "meaning": "time, years" - }, - { - "example": "歳歳", - "reading": "サイサイ", - "meaning": "annual" - }, - { - "example": "年年歳歳", - "reading": "ネンネンサイサイ", - "meaning": "annually, every year, year in year out, from year to year" - }, - { - "example": "歳暮", - "reading": "セイボ", - "meaning": "year-end gift, end of the year, year end" - } - ], - "kunyomiExamples": [ - { - "example": "年", - "reading": "とし", - "meaning": "year, age, years, past one's prime, old age" - }, - { - "example": "歳月", - "reading": "さいげつ", - "meaning": "time, years" - }, - { - "example": "大年", - "reading": "おおとし", - "meaning": "New Year's Eve, December 31, Jupiter (planet)" - }, - { - "example": "年", - "reading": "とせ", - "meaning": "counter for years (following a number in the hito-futa-mi counting system)" - }, - { - "example": "万年", - "reading": "まんねん", - "meaning": "ten thousand years, eternity, perennial, perpetual" - }, - { - "example": "二十歳", - "reading": "はたとせ", - "meaning": "twenty years" - } - ], - "radical": { - "symbol": "止", - "meaning": "stop" - }, - "parts": [ - "ノ", - "小", - "戈", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27507_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b73.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b73.gif", - "uri": "http://jisho.org/search/%E6%AD%B3%23kanji" - }, - { - "query": "載", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "825", - "strokeCount": 13, - "meaning": "ride, board, get on, place, spread, 10**44, record, publish", - "kunyomi": [ - "の.せる", - "の.る" - ], - "onyomi": [ - "サイ" - ], - "onyomiExamples": [ - { - "example": "載", - "reading": "サイ", - "meaning": "10^44, hundred tredecillion" - }, - { - "example": "採録", - "reading": "サイロク", - "meaning": "recording, transcription" - }, - { - "example": "積載", - "reading": "セキサイ", - "meaning": "lading, loading, carrying" - }, - { - "example": "登載", - "reading": "トウサイ", - "meaning": "register, record, printing" - } - ], - "kunyomiExamples": [ - { - "example": "乗せる", - "reading": "のせる", - "meaning": "to place on (something), to give (someone) a ride, to give a lift, to pick up, to help on board, to load (luggage), to carry, to take on board, to send out (on the airwaves, etc.), to deceive, to take for a ride, to (sing) along with (musical accompaniment), to let (someone) take part, to excite (someone), to publish (an article), to run (an ad)" - }, - { - "example": "載る", - "reading": "のる", - "meaning": "to be placed on, to be set on, to be piled on, to be loaded on, to appear (in print), to be mentioned, to be recorded, to be reported, to be given" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "土", - "戈", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36617_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f09.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f09.gif", - "uri": "http://jisho.org/search/%E8%BC%89%23kanji" - }, - { - "query": "剤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1151", - "strokeCount": 10, - "meaning": "dose, medicine, drug", - "kunyomi": [ - "かる", - "けず.る" - ], - "onyomi": [ - "ザイ", - "スイ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "剤", - "reading": "ザイ", - "meaning": "medicine, agent, (chemical) substance, drug, dose" - }, - { - "example": "剤形", - "reading": "ザイケイ", - "meaning": "dosage form" - }, - { - "example": "薬剤", - "reading": "ヤクザイ", - "meaning": "medicine, drug, chemical" - }, - { - "example": "覚醒剤", - "reading": "カクセイザイ", - "meaning": "stimulant (e.g. psychoactive drugs like methamphetamine, ritalin, etc.)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ノ", - "刈", - "廾", - "文", - "斉", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21092_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05264.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5264.gif", - "uri": "http://jisho.org/search/%E5%89%A4%23kanji" - }, - { - "query": "削", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "814", - "strokeCount": 9, - "meaning": "plane, sharpen, whittle, pare, shave", - "kunyomi": [ - "けず.る", - "はつ.る", - "そ.ぐ" - ], - "onyomi": [ - "サク" - ], - "onyomiExamples": [ - { - "example": "削", - "reading": "サク", - "meaning": "plane, sharpen, whittle, pare, shave (leather), scrape off, crossout, reduce, curtail" - }, - { - "example": "削減", - "reading": "サクゲン", - "meaning": "cut, reduction, curtailment" - }, - { - "example": "掘削", - "reading": "クッサク", - "meaning": "digging out, excavation" - }, - { - "example": "開削", - "reading": "カイサク", - "meaning": "excavation, cutting, digging" - } - ], - "kunyomiExamples": [ - { - "example": "削る", - "reading": "けずる", - "meaning": "to shave (wood, leather, etc.), to sharpen (e.g. pencil), to plane, to whittle, to pare, to scrape off, to erode, to cut down (budget, expenses, staff, time, etc.), to curtail, to reduce, to delete, to erase, to remove, to cross out, to strike out" - }, - { - "example": "削る", - "reading": "はつる", - "meaning": "to shave off (esp. concrete), to take a percentage, to take a cut" - }, - { - "example": "削ぐ", - "reading": "そぐ", - "meaning": "to chip (off), to shave (off), to slice (off), to sharpen, to dampen (e.g. enthusiasm), to discourage, to weaken, to reduce" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "尚", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0524a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/524a.gif", - "uri": "http://jisho.org/search/%E5%89%8A%23kanji" - }, - { - "query": "柵", - "found": true, - "taughtIn": "junior high", - "strokeCount": 9, - "meaning": "stockade, fence, weir, entwine around", - "kunyomi": [ - "しがら.む", - "しがらみ", - "とりで", - "やらい" - ], - "onyomi": [ - "サク", - "サン" - ], - "onyomiExamples": [ - { - "example": "柵", - "reading": "サク", - "meaning": "fence, paling, railing, fortress" - }, - { - "example": "柵状組織", - "reading": "サクジョウソシキ", - "meaning": "palisade layer" - }, - { - "example": "馬防柵", - "reading": "バボウサク", - "meaning": "anti-cavalry palisade (Sengoku period)" - }, - { - "example": "電気柵", - "reading": "デンキサク", - "meaning": "electric fence" - } - ], - "kunyomiExamples": [ - { - "example": "柵", - "reading": "しがらみ", - "meaning": "weir, bonds, fetters, ties of obligation" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "亅", - "冂", - "冊", - "廾", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26613_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067f5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67f5.gif", - "uri": "http://jisho.org/search/%E6%9F%B5%23kanji" - }, - { - "query": "索", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1127", - "strokeCount": 10, - "meaning": "cord, rope, searching, inquiring", - "kunyomi": [], - "onyomi": [ - "サク" - ], - "onyomiExamples": [ - { - "example": "索", - "reading": "サク", - "meaning": "rope, cord" - }, - { - "example": "索引", - "reading": "サクイン", - "meaning": "index (in a book)" - }, - { - "example": "模索", - "reading": "モサク", - "meaning": "groping (for), fumbling around (for), searching (for an answer, solution, etc.), trying to find" - }, - { - "example": "神経索", - "reading": "シンケイサク", - "meaning": "nerve cord" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "冖", - "十", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32034_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d22.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d22.gif", - "uri": "http://jisho.org/search/%E7%B4%A2%23kanji" - }, - { - "query": "酢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1955", - "strokeCount": 12, - "meaning": "vinegar, sour, acid, tart", - "kunyomi": [ - "す" - ], - "onyomi": [ - "サク" - ], - "onyomiExamples": [ - { - "example": "酢酸", - "reading": "サクサン", - "meaning": "acetic acid" - }, - { - "example": "酢酸エチル", - "reading": "サクサンエチル", - "meaning": "ethyl acetate" - }, - { - "example": "木酢", - "reading": "モクサク", - "meaning": "wood vinegar, pyroligneous acid" - }, - { - "example": "鉛酢", - "reading": "エンサク", - "meaning": "Goulard's extract, subacetate of lead, vinegar of lead" - } - ], - "kunyomiExamples": [ - { - "example": "酢", - "reading": "す", - "meaning": "vinegar" - }, - { - "example": "酢の物", - "reading": "すのもの", - "meaning": "vinegared dish, pickled dish" - }, - { - "example": "合成酢", - "reading": "ごうせいす", - "meaning": "synthetic vinegar" - }, - { - "example": "醸造酢", - "reading": "じょうぞうす", - "meaning": "brewed vinegar" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "ノ", - "酉", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37218_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09162.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9162.gif", - "uri": "http://jisho.org/search/%E9%85%A2%23kanji" - }, - { - "query": "搾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2046", - "strokeCount": 13, - "meaning": "squeeze", - "kunyomi": [ - "しぼ.る" - ], - "onyomi": [ - "サク" - ], - "onyomiExamples": [ - { - "example": "搾取", - "reading": "サクシュ", - "meaning": "exploitation, bleeding dry, squeezing dry, milking (e.g. a cow's teat), extracting (a liquid) through squeezing" - }, - { - "example": "搾乳", - "reading": "サクニュウ", - "meaning": "milking (a cow)" - }, - { - "example": "圧搾", - "reading": "アッサク", - "meaning": "pressure, compression" - } - ], - "kunyomiExamples": [ - { - "example": "絞る", - "reading": "しぼる", - "meaning": "to wring (towel, rag), to squeeze, to squeeze (fruit to extract juice), to press, to extract, to milk, to express milk, to rack (one's brains), to strain (one's voice), to extort, to exploit, to chew out, to reprimand severely, to rake over the coals, to give a sound scolding, to tell someone off, to scold, to rebuke, to drill into, to train, to narrow down (one's focus), to whittle down, to gather up (curtain, etc.), to tighten (drawstring), to stop down (lens), to turn down (e.g. radio), to bend (bow), to draw, to hold down, to constrict, to immobilize" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "儿", - "宀", - "扎", - "穴", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25662_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0643e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/643e.gif", - "uri": "http://jisho.org/search/%E6%90%BE%23kanji" - }, - { - "query": "錯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1740", - "strokeCount": 16, - "meaning": "confused, mix, be in disorder", - "kunyomi": [], - "onyomi": [ - "サク", - "シャク" - ], - "onyomiExamples": [ - { - "example": "錯誤", - "reading": "サクゴ", - "meaning": "mistake, error, discrepancy, discrepancy between one's actions and intentions" - }, - { - "example": "錯綜", - "reading": "サクソウ", - "meaning": "complication, intricacy, involution, to become complicated, to get entangled" - }, - { - "example": "交錯", - "reading": "コウサク", - "meaning": "mixture, blending, complication, crossing, intersecting, interlacing" - }, - { - "example": "性倒錯", - "reading": "セイトウサク", - "meaning": "paraphilia, sexual deviancy" - }, - { - "example": "介錯", - "reading": "カイシャク", - "meaning": "beheading (as the ending to a seppuku), assistance, help" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "二", - "廾", - "日", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37679_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0932f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/932f.gif", - "uri": "http://jisho.org/search/%E9%8C%AF%23kanji" - }, - { - "query": "咲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1534", - "strokeCount": 9, - "meaning": "blossom, bloom", - "kunyomi": [ - "さ.く", - "-ざき" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "巧笑", - "reading": "コウショウ", - "meaning": "courteous laughter, forced laughter" - } - ], - "kunyomiExamples": [ - { - "example": "咲く", - "reading": "さく", - "meaning": "to bloom, to flower, to blossom, to open" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "二", - "人", - "口", - "大", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21682_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54b2.gif", - "uri": "http://jisho.org/search/%E5%92%B2%23kanji" - }, - { - "query": "刹", - "found": true, - "taughtIn": "junior high", - "strokeCount": 8, - "meaning": "temple", - "kunyomi": [], - "onyomi": [ - "セチ", - "セツ", - "サツ" - ], - "onyomiExamples": [ - { - "example": "刹", - "reading": "サツ", - "meaning": "temple (Buddhist), central pillar of a pagoda, kshetra (realm, country), ksetra" - }, - { - "example": "刹那", - "reading": "セツナ", - "meaning": "moment, instant, kshana, duration of a single mental event (about 1/75 second), shortest possible interval of time" - }, - { - "example": "十刹", - "reading": "ジッサツ", - "meaning": "ten important Rinzai temples, second in significance to the Kyoto Gozan" - }, - { - "example": "仏刹", - "reading": "ブッサツ", - "meaning": "Buddhist temple" - }, - { - "example": "刹", - "reading": "サツ", - "meaning": "temple (Buddhist), central pillar of a pagoda, kshetra (realm, country), ksetra" - }, - { - "example": "名刹", - "reading": "メイサツ", - "meaning": "famous temple" - }, - { - "example": "古刹", - "reading": "コサツ", - "meaning": "ancient temple" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ノ", - "丶", - "刈", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21049_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05239.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5239.gif", - "uri": "http://jisho.org/search/%E5%88%B9%23kanji" - }, - { - "query": "拶", - "found": true, - "taughtIn": "junior high", - "strokeCount": 9, - "meaning": "be imminent, draw close", - "kunyomi": [ - "せま.る" - ], - "onyomi": [ - "サツ" - ], - "onyomiExamples": [ - { - "example": "年頭挨拶", - "reading": "ネントウアイサツ", - "meaning": "New Year's greetings" - }, - { - "example": "ご挨拶", - "reading": "ゴアイサツ", - "meaning": "greeting, a fine thing to say" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "夕", - "巛", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25334_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062f6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62f6.gif", - "uri": "http://jisho.org/search/%E6%8B%B6%23kanji" - }, - { - "query": "撮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1023", - "strokeCount": 15, - "meaning": "snapshot, take pictures", - "kunyomi": [ - "と.る", - "つま.む", - "-ど.り" - ], - "onyomi": [ - "サツ" - ], - "onyomiExamples": [ - { - "example": "撮影", - "reading": "サツエイ", - "meaning": "photography (still or motion), photographing, filming, shooting, (video) recording" - }, - { - "example": "撮影会", - "reading": "サツエイカイ", - "meaning": "photography event, photo session, photo shoot" - }, - { - "example": "特撮", - "reading": "トクサツ", - "meaning": "special effects, SFX, tokusatsu (genre of live-action film or television drama that makes heavy use of special effects, e.g. Godzilla)" - }, - { - "example": "空撮", - "reading": "クウサツ", - "meaning": "aerial photography" - } - ], - "kunyomiExamples": [ - { - "example": "撮る", - "reading": "とる", - "meaning": "to take (a photo), to record (video, audio, etc.), to make (a film)" - }, - { - "example": "摘む", - "reading": "つまむ", - "meaning": "to pinch, to hold (between one's fingers), to pick up (with chopsticks, tweezers, etc.), to pick up and eat, to snack on, to pick out (the main point), to summarize, to sum up, to bewitch, to possess, to fascinate" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "又", - "扎", - "日", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25774_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064ae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64ae.gif", - "uri": "http://jisho.org/search/%E6%92%AE%23kanji" - }, - { - "query": "擦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1485", - "strokeCount": 17, - "meaning": "grate, rub, scratch, scrape, chafe, scour", - "kunyomi": [ - "す.る", - "す.れる", - "-ず.れ", - "こす.る", - "こす.れる" - ], - "onyomi": [ - "サツ" - ], - "onyomiExamples": [ - { - "example": "擦弦楽器", - "reading": "サツゲンガッキ", - "meaning": "bowed stringed instrument" - }, - { - "example": "塗擦", - "reading": "トサツ", - "meaning": "rubbing an ointment into the skin" - }, - { - "example": "冷水摩擦", - "reading": "レイスイマサツ", - "meaning": "rubdown with a wet towel, cold-water rubbing" - } - ], - "kunyomiExamples": [ - { - "example": "擦る", - "reading": "する", - "meaning": "to rub, to chafe, to strike (match), to file, to frost (glass), to lose (e.g. a match), to forfeit, to squander one's money (e.g. through gambling, Pachinko, etc.)" - }, - { - "example": "擦れる", - "reading": "すれる", - "meaning": "to rub, to chafe, to wear out, to become worn, to lose one's innocence, to become sly" - }, - { - "example": "擦る", - "reading": "こする", - "meaning": "to rub, to scrub, to scrape" - }, - { - "example": "擦れる", - "reading": "こすれる", - "meaning": "to be rubbed" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "二", - "宀", - "小", - "扎", - "癶", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25830_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064e6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64e6.gif", - "uri": "http://jisho.org/search/%E6%93%A6%23kanji" - }, - { - "query": "桟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2093", - "strokeCount": 10, - "meaning": "scaffold, cleat, frame, jetty, bolt (door)", - "kunyomi": [ - "かけはし" - ], - "onyomi": [ - "サン", - "セン" - ], - "onyomiExamples": [ - { - "example": "桟", - "reading": "サン", - "meaning": "frame (i.e. of a sliding door), crosspiece, bar, sliding wooden bolt (for holding a door or window shut), rung (of a ladder)" - }, - { - "example": "桟橋", - "reading": "サンバシ", - "meaning": "wharf, bridge, jetty, pier" - }, - { - "example": "障子の桟", - "reading": "ショウジノサン", - "meaning": "frame of a shoji (paper sliding-door)" - }, - { - "example": "窓の桟", - "reading": "マドノサン", - "meaning": "window frame, window sill" - } - ], - "kunyomiExamples": [ - { - "example": "懸け橋", - "reading": "かけはし", - "meaning": "suspension bridge, viaduct, temporary bridge, mediation, go-between" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "二", - "戈", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26719_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0685f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/685f.gif", - "uri": "http://jisho.org/search/%E6%A1%9F%23kanji" - }, - { - "query": "惨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1463", - "strokeCount": 11, - "meaning": "wretched, disaster, cruelty, harsh", - "kunyomi": [ - "みじ.め", - "いた.む", - "むご.い" - ], - "onyomi": [ - "サン", - "ザン" - ], - "onyomiExamples": [ - { - "example": "惨", - "reading": "サン", - "meaning": "appalling" - }, - { - "example": "惨事", - "reading": "サンジ", - "meaning": "disaster, tragedy, tragic incident, horrible accident" - }, - { - "example": "凄惨", - "reading": "セイサン", - "meaning": "ghastly, gruesome, appalling, lurid" - }, - { - "example": "陰惨", - "reading": "インサン", - "meaning": "sadness and gloom" - }, - { - "example": "残虐", - "reading": "ザンギャク", - "meaning": "cruel, brutal, savage, barbarous" - }, - { - "example": "残酷", - "reading": "ザンコク", - "meaning": "cruel, brutal, ruthless, merciless, inhuman" - }, - { - "example": "冷酷無惨", - "reading": "レイコクムザン", - "meaning": "cruel and heartless, merciless, implacable, cold-blooded" - } - ], - "kunyomiExamples": [ - { - "example": "惨め", - "reading": "みじめ", - "meaning": "miserable, wretched, unhappy, sad, pitiable" - }, - { - "example": "惨い", - "reading": "むごい", - "meaning": "cruel, merciless, pitiless, brutal, atrocious, inhuman, tragic, horrible, terrible, dreadful, miserable, ugly, horrifying" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "厶", - "彡", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24808_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060e8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60e8.gif", - "uri": "http://jisho.org/search/%E6%83%A8%23kanji" - }, - { - "query": "傘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1694", - "strokeCount": 12, - "meaning": "umbrella", - "kunyomi": [ - "かさ" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "傘下", - "reading": "サンカ", - "meaning": "affiliated with, under jurisdiction of, under the umbrella" - }, - { - "example": "傘形器官", - "reading": "サンケイキカン", - "meaning": "bot umbraculum" - }, - { - "example": "落下傘", - "reading": "ラッカサン", - "meaning": "parachute" - }, - { - "example": "開傘", - "reading": "カイサン", - "meaning": "opening of a parachute" - } - ], - "kunyomiExamples": [ - { - "example": "傘", - "reading": "かさ", - "meaning": "umbrella, parasol, something shaped like an umbrella or a conical hat, shade (of a lamp), mushroom cap, pileus" - }, - { - "example": "笠貝", - "reading": "かさがい", - "meaning": "limpet (esp. species Cellana mazatlandica)" - }, - { - "example": "核の傘", - "reading": "かくのかさ", - "meaning": "nuclear umbrella" - }, - { - "example": "から傘", - "reading": "からかさ", - "meaning": "paper umbrella, bamboo-and-paper umbrella parasol" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "个", - "人", - "十" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20632_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05098.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5098.gif", - "uri": "http://jisho.org/search/%E5%82%98%23kanji" - }, - { - "query": "斬", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2132", - "strokeCount": 11, - "meaning": "beheading, kill, murder", - "kunyomi": [ - "き.る" - ], - "onyomi": [ - "ザン", - "サン", - "セン", - "ゼン" - ], - "onyomiExamples": [ - { - "example": "斬", - "reading": "ザン", - "meaning": "beheading, decapitation" - }, - { - "example": "斬新", - "reading": "ザンシン", - "meaning": "novel, original, new, innovative" - } - ], - "kunyomiExamples": [ - { - "example": "斬る", - "reading": "きる", - "meaning": "to kill (a human) using a blade (sword, machete, knife, etc.), to slice (off), to lop (off), to cut (off)" - } - ], - "radical": { - "symbol": "斤", - "meaning": "axe" - }, - "parts": [ - "斤", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26028_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65ac.gif", - "uri": "http://jisho.org/search/%E6%96%AC%23kanji" - }, - { - "query": "暫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1112", - "strokeCount": 15, - "meaning": "temporarily, a while, moment, long time", - "kunyomi": [ - "しばら.く" - ], - "onyomi": [ - "ザン" - ], - "onyomiExamples": [ - { - "example": "暫定", - "reading": "ザンテイ", - "meaning": "provisional, temporary, tentative" - }, - { - "example": "暫且", - "reading": "ザンショ", - "meaning": "short while" - } - ], - "kunyomiExamples": [ - { - "example": "暫く", - "reading": "しばらく", - "meaning": "for a moment, for a minute, for a while, for some time, for the time being, for now, it's been a long time, long time no see" - }, - { - "example": "暫くして", - "reading": "しばらくして", - "meaning": "after a short time, presently" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "斤", - "日", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26283_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066ab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66ab.gif", - "uri": "http://jisho.org/search/%E6%9A%AB%23kanji" - }, - { - "query": "旨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1166", - "strokeCount": 6, - "meaning": "delicious, relish, show a liking for, purport, will, clever, expert", - "kunyomi": [ - "むね", - "うま.い" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "旨意", - "reading": "シイ", - "meaning": "intent, purpose, aim" - }, - { - "example": "旨趣", - "reading": "シシュ", - "meaning": "objective, purport, intent" - }, - { - "example": "本旨", - "reading": "ホンシ", - "meaning": "main object, principal object, true aim" - }, - { - "example": "宗旨", - "reading": "シュウシ", - "meaning": "tenets (of a religious sect), doctrines, (religious) sect, denomination, religion, faith, one's principles, one's tastes, one's preferences" - } - ], - "kunyomiExamples": [ - { - "example": "旨", - "reading": "むね", - "meaning": "principle, aim, main purpose, central part, pillar, purport, gist, drift, meaning, instructions, orders, intention, wishes" - }, - { - "example": "旨とする", - "reading": "むねとする", - "meaning": "to make it a principle to ..., to aim at doing" - }, - { - "example": "その旨", - "reading": "そのむね", - "meaning": "(words to) that effect" - }, - { - "example": "御旨", - "reading": "みむね", - "meaning": "God's will (in Christianity)" - }, - { - "example": "上手い", - "reading": "うまい", - "meaning": "skillful, skilful, clever, expert, wise, successful, delicious, appetizing, appetising, tasty, fortunate, splendid, promising" - }, - { - "example": "うまい汁", - "reading": "うまいしる", - "meaning": "the lion's share, the cream" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "匕", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26088_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065e8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65e8.gif", - "uri": "http://jisho.org/search/%E6%97%A8%23kanji" - }, - { - "query": "伺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "2209", - "strokeCount": 7, - "meaning": "pay respects, visit, ask, inquire, question, implore", - "kunyomi": [ - "うかが.う" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "伺候", - "reading": "シコウ", - "meaning": "waiting upon (someone)" - }, - { - "example": "経伺", - "reading": "ケイシ", - "meaning": "asking for instructions, consulting and obtaining approval" - }, - { - "example": "奉伺", - "reading": "ホウシ", - "meaning": "inquiring about (one's health)" - } - ], - "kunyomiExamples": [ - { - "example": "伺う", - "reading": "うかがう", - "meaning": "to ask, to inquire, to hear, to be told, to implore (a god for an oracle), to seek direction (from your superior), to visit, to speak to (a large crowd at a theatre, etc.)" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "亅", - "化", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20282_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f3a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f3a.gif", - "uri": "http://jisho.org/search/%E4%BC%BA%23kanji" - }, - { - "query": "刺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1031", - "strokeCount": 8, - "meaning": "thorn, pierce, stab, prick, sting, calling card", - "kunyomi": [ - "さ.す", - "さ.さる", - "さ.し", - "さし", - "とげ" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "刺", - "reading": "シ", - "meaning": "calling card" - }, - { - "example": "刺激", - "reading": "シゲキ", - "meaning": "stimulus, impetus, incentive, encouragement, motivation, provocation, excitement, thrill" - }, - { - "example": "牛刺", - "reading": "ギュウサシ", - "meaning": "sliced raw beef" - }, - { - "example": "肉刺し", - "reading": "ニクサシ", - "meaning": "fork" - } - ], - "kunyomiExamples": [ - { - "example": "刺す", - "reading": "さす", - "meaning": "to pierce, to stab, to prick, to stick, to thrust, to sting, to bite, to sew, to stitch, to embroider, to pole (a boat), to catch (with a limed pole), to put (a runner) out, to pick off" - }, - { - "example": "刺刀", - "reading": "さすが", - "meaning": "dagger" - }, - { - "example": "刺さる", - "reading": "ささる", - "meaning": "to stick into (of something with a sharp point), to prick, to pierce, to get stuck (in), to lodge (in)" - }, - { - "example": "刺し", - "reading": "さし", - "meaning": "grain thief, sharpened tube for testing rice in bags, sashimi (sliced raw fish), stabbing, piercing, pricking" - }, - { - "example": "刺身", - "reading": "さしみ", - "meaning": "sashimi (raw sliced fish, shellfish or crustaceans)" - }, - { - "example": "牛刺", - "reading": "ぎゅうさし", - "meaning": "sliced raw beef" - }, - { - "example": "肉刺し", - "reading": "にくさし", - "meaning": "fork" - }, - { - "example": "刺し", - "reading": "さし", - "meaning": "grain thief, sharpened tube for testing rice in bags, sashimi (sliced raw fish), stabbing, piercing, pricking" - }, - { - "example": "刺身", - "reading": "さしみ", - "meaning": "sashimi (raw sliced fish, shellfish or crustaceans)" - }, - { - "example": "牛刺", - "reading": "ぎゅうさし", - "meaning": "sliced raw beef" - }, - { - "example": "肉刺し", - "reading": "にくさし", - "meaning": "fork" - }, - { - "example": "刺", - "reading": "とげ", - "meaning": "thorn, spine, prickle, splinter (esp. lodged in one's flesh), hard sharp item (esp. lodged in one's throat, e.g. fish bone), biting words" - }, - { - "example": "棘魚", - "reading": "とげうお", - "meaning": "stickleback (Gasterosteidae spp.)" - }, - { - "example": "刺々", - "reading": "とげとげ", - "meaning": "sharply, harshly, stingingly" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ハ", - "亅", - "冂", - "刈", - "巾", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21050_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0523a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/523a.gif", - "uri": "http://jisho.org/search/%E5%88%BA%23kanji" - }, - { - "query": "祉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1063", - "strokeCount": 8, - "meaning": "welfare, happiness", - "kunyomi": [], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "祉福", - "reading": "シフク", - "meaning": "prosperity, happiness, blessedness and joy" - }, - { - "example": "老人福祉", - "reading": "ロウジンフクシ", - "meaning": "welfare for the aged" - }, - { - "example": "健康福祉", - "reading": "ケンコウフクシ", - "meaning": "health and welfare" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "止", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31049_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07949.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7949.gif", - "uri": "http://jisho.org/search/%E7%A5%89%23kanji" - }, - { - "query": "肢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2289", - "strokeCount": 8, - "meaning": "limb, arms & legs", - "kunyomi": [], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "肢体不自由児", - "reading": "シタイフジユウジ", - "meaning": "physically handicapped child" - }, - { - "example": "肢体", - "reading": "シタイ", - "meaning": "limbs, arms and legs, body" - }, - { - "example": "四肢", - "reading": "シシ", - "meaning": "the (four) limbs, arms and legs" - }, - { - "example": "下肢", - "reading": "カシ", - "meaning": "lower limbs, legs" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "十", - "又", - "支", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32930_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080a2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80a2.gif", - "uri": "http://jisho.org/search/%E8%82%A2%23kanji" - }, - { - "query": "施", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "323", - "strokeCount": 9, - "meaning": "give, bestow, perform, alms", - "kunyomi": [ - "ほどこ.す" - ], - "onyomi": [ - "シ", - "セ" - ], - "onyomiExamples": [ - { - "example": "施工", - "reading": "セコウ", - "meaning": "construction, constructing, carrying out, work, formation, workmanship, execution" - }, - { - "example": "施行", - "reading": "シコウ", - "meaning": "execution, enforcing, carrying out, giving alms, giving food to the poor or monks" - }, - { - "example": "施工", - "reading": "セコウ", - "meaning": "construction, constructing, carrying out, work, formation, workmanship, execution" - }, - { - "example": "施行", - "reading": "シコウ", - "meaning": "execution, enforcing, carrying out, giving alms, giving food to the poor or monks" - }, - { - "example": "布施", - "reading": "フセ", - "meaning": "alms-giving, charity, offerings (usu. money) to a priest (for reading sutras, etc.)" - }, - { - "example": "仕着せ", - "reading": "シキセ", - "meaning": "livery, servant's clothes provided by employers" - } - ], - "kunyomiExamples": [ - { - "example": "施す", - "reading": "ほどこす", - "meaning": "to give (time, money, goods), to donate, to do, to perform, to conduct, to apply (processing, makeup, etc.), to add (e.g. ornamentation, annotation), to sow, to seed, to scatter (e.g. fertilizer), to sprinkle, to spread far and wide" - } - ], - "radical": { - "symbol": "方", - "meaning": "square" - }, - "parts": [ - "ノ", - "一", - "乞", - "也", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26045_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065bd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65bd.gif", - "uri": "http://jisho.org/search/%E6%96%BD%23kanji" - }, - { - "query": "恣", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2325", - "strokeCount": 10, - "meaning": "selfish, arbitrary", - "kunyomi": [ - "ほしいまま" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "恣意", - "reading": "シイ", - "meaning": "arbitrariness" - }, - { - "example": "恣意性", - "reading": "シイセイ", - "meaning": "arbitrariness" - }, - { - "example": "放恣", - "reading": "ホウシ", - "meaning": "licentious, self-indulgent" - }, - { - "example": "驕恣", - "reading": "キョウシ", - "meaning": "being proud and self-willed" - } - ], - "kunyomiExamples": [ - { - "example": "恣", - "reading": "ほしいまま", - "meaning": "selfish, self-indulgent, arbitrary" - }, - { - "example": "恣にする", - "reading": "ほしいままにする", - "meaning": "to abuse, to exploit to the full, to give free rein to" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "冫", - "心", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24675_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06063.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6063.gif", - "uri": "http://jisho.org/search/%E6%81%A3%23kanji" - }, - { - "query": "脂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1548", - "strokeCount": 10, - "meaning": "fat, grease, tallow, lard, rosin, gum, tar", - "kunyomi": [ - "あぶら" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "脂肪", - "reading": "シボウ", - "meaning": "fat, grease, blubber, lard, suet" - }, - { - "example": "脂質", - "reading": "シシツ", - "meaning": "lipid, fats, adipose" - }, - { - "example": "樹脂", - "reading": "ジュシ", - "meaning": "resin, rosin" - }, - { - "example": "皮脂", - "reading": "ヒシ", - "meaning": "sebum, sebaceous matter" - } - ], - "kunyomiExamples": [ - { - "example": "脂", - "reading": "あぶら", - "meaning": "fat, tallow, lard, grease" - }, - { - "example": "脂っこい", - "reading": "あぶらっこい", - "meaning": "greasy, fatty, oily" - }, - { - "example": "背脂", - "reading": "せあぶら", - "meaning": "back fat, fatty upper part of roast pork" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "匕", - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33026_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08102.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8102.gif", - "uri": "http://jisho.org/search/%E8%84%82%23kanji" - }, - { - "query": "紫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1516", - "strokeCount": 12, - "meaning": "purple, violet", - "kunyomi": [ - "むらさき" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "紫色", - "reading": "ムラサキイロ", - "meaning": "purple, violet" - }, - { - "example": "紫外線", - "reading": "シガイセン", - "meaning": "ultraviolet rays, ultraviolet radiation" - }, - { - "example": "紅紫", - "reading": "コウシ", - "meaning": "crimson and purple, red-purple, magenta" - }, - { - "example": "九紫", - "reading": "キュウシ", - "meaning": "ninth of nine traditional astrological signs (corresponding to Mars and south)" - } - ], - "kunyomiExamples": [ - { - "example": "紫", - "reading": "むらさき", - "meaning": "purple, violet, Lithospermum erythrorhizon (species of gromwell), type of soy sauce" - }, - { - "example": "紫色", - "reading": "むらさきいろ", - "meaning": "purple, violet" - }, - { - "example": "貝紫", - "reading": "かいむらさき", - "meaning": "Tyrian purple" - }, - { - "example": "古代紫", - "reading": "こだいむらさき", - "meaning": "reddish-purple" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "匕", - "小", - "幺", - "止", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32043_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d2b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d2b.gif", - "uri": "http://jisho.org/search/%E7%B4%AB%23kanji" - }, - { - "query": "嗣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2310", - "strokeCount": 13, - "meaning": "heir, succeed", - "kunyomi": [], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "嗣", - "reading": "シ", - "meaning": "succession, successor" - }, - { - "example": "嗣業", - "reading": "シギョウ", - "meaning": "succeeding to a business" - }, - { - "example": "継嗣", - "reading": "ケイシ", - "meaning": "successor, heir, heiress" - }, - { - "example": "世子", - "reading": "セイシ", - "meaning": "heir, successor" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "亅", - "冂", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21987_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/055e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/55e3.gif", - "uri": "http://jisho.org/search/%E5%97%A3%23kanji" - }, - { - "query": "雌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1951", - "strokeCount": 14, - "meaning": "feminine, female", - "kunyomi": [ - "め-", - "めす", - "めん" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "雌雄", - "reading": "シユウ", - "meaning": "male and female (animals), the two sexes, victory and defeat, strengths and weaknesses" - }, - { - "example": "雌黄", - "reading": "シオウ", - "meaning": "orpiment, gamboge, falsification, alteration" - } - ], - "kunyomiExamples": [ - { - "example": "雌", - "reading": "めす", - "meaning": "female (animal, plant)" - }, - { - "example": "メス犬", - "reading": "メスいぬ", - "meaning": "bitch, female dog" - }, - { - "example": "雌", - "reading": "めす", - "meaning": "female (animal, plant)" - }, - { - "example": "雌鳥", - "reading": "めんどり", - "meaning": "female bird, hen" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "匕", - "止", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38604_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096cc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96cc.gif", - "uri": "http://jisho.org/search/%E9%9B%8C%23kanji" - }, - { - "query": "摯", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2170", - "strokeCount": 15, - "meaning": "gift, seriousness", - "kunyomi": [ - "いた.る" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "摯実", - "reading": "シジツ", - "meaning": "serious, sincere" - }, - { - "example": "真摯", - "reading": "シンシ", - "meaning": "sincere, earnest, serious" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "丶", - "九", - "十", - "手", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25711_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0646f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/646f.gif", - "uri": "http://jisho.org/search/%E6%91%AF%23kanji" - }, - { - "query": "賜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2190", - "strokeCount": 15, - "meaning": "grant, gift, boon, results", - "kunyomi": [ - "たまわ.る", - "たま.う", - "たも.う" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "賜杯", - "reading": "シハイ", - "meaning": "Emperor's cup, trophy given by the Emperor" - }, - { - "example": "賜暇", - "reading": "シカ", - "meaning": "furlough, leave of absence" - }, - { - "example": "恩賜", - "reading": "オンシ", - "meaning": "Imperial gift" - }, - { - "example": "追賜", - "reading": "ツイシ", - "meaning": "being granted a court rank after death" - } - ], - "kunyomiExamples": [ - { - "example": "賜る", - "reading": "たまわる", - "meaning": "to be given, to be granted, to be honored with, to be honoured with, to give, to bestow, to confer, to honor, to honour" - }, - { - "example": "給う", - "reading": "たまう", - "meaning": "to give, to do ..." - }, - { - "example": "給ふ", - "reading": "たまう", - "meaning": "to give, to receive" - }, - { - "example": "給う", - "reading": "たもう", - "meaning": "to give, to do ..." - }, - { - "example": "給ふ", - "reading": "たまう", - "meaning": "to give, to receive" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "勿", - "日", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36060_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cdc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cdc.gif", - "uri": "http://jisho.org/search/%E8%B3%9C%23kanji" - }, - { - "query": "諮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1345", - "strokeCount": 16, - "meaning": "consult with", - "kunyomi": [ - "はか.る" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "諮問", - "reading": "シモン", - "meaning": "consultation, question, enquiry, inquiry" - }, - { - "example": "諮議", - "reading": "シギ", - "meaning": "consultation, conference" - } - ], - "kunyomiExamples": [ - { - "example": "諮る", - "reading": "はかる", - "meaning": "to consult with, to discuss, to confer, to deliberate" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "冫", - "口", - "欠", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35566_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08aee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8aee.gif", - "uri": "http://jisho.org/search/%E8%AB%AE%23kanji" - }, - { - "query": "侍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1939", - "strokeCount": 8, - "meaning": "waiter, samurai, wait upon, serve", - "kunyomi": [ - "さむらい", - "はべ.る" - ], - "onyomi": [ - "ジ", - "シ" - ], - "onyomiExamples": [ - { - "example": "侍従", - "reading": "ジジュウ", - "meaning": "chamberlain" - }, - { - "example": "侍医", - "reading": "ジイ", - "meaning": "court physician" - }, - { - "example": "内侍", - "reading": "ナイシ", - "meaning": "maid of honor, maid of honour" - }, - { - "example": "陪侍", - "reading": "バイジ", - "meaning": "retainer, attending on the nobility" - }, - { - "example": "内侍", - "reading": "ナイシ", - "meaning": "maid of honor, maid of honour" - } - ], - "kunyomiExamples": [ - { - "example": "侍", - "reading": "さむらい", - "meaning": "warrior (esp. of military retainers of daimyos in the Edo period), samurai, man in attendance (on a person of high standing), retainer" - }, - { - "example": "侍蟻", - "reading": "さむらいあり", - "meaning": "Polyergus samurai (species of amazon ant)" - }, - { - "example": "二四六九士", - "reading": "にしむくさむらい", - "meaning": "mnemonic for remembering the months with fewer than 31 days (ni, shi, mu, ku, etc.)" - }, - { - "example": "侍る", - "reading": "はべる", - "meaning": "to wait upon, to serve" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "土", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20365_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f8d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f8d.gif", - "uri": "http://jisho.org/search/%E4%BE%8D%23kanji" - }, - { - "query": "慈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1811", - "strokeCount": 13, - "meaning": "mercy", - "kunyomi": [ - "いつく.しむ" - ], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "慈善", - "reading": "ジゼン", - "meaning": "charity, philanthropy" - }, - { - "example": "慈悲", - "reading": "ジヒ", - "meaning": "mercy, compassion, clemency, pity, charity, benevolence, Hodgson's hawk-cuckoo (Cuculus fugax), Horsfield's hawk cuckoo" - }, - { - "example": "具慈", - "reading": "グジ", - "meaning": "tilefish (Branchiostegus spp.), blanquillo, horse-head fish" - }, - { - "example": "仁慈", - "reading": "ジンジ", - "meaning": "kind-hearted, benevolence" - } - ], - "kunyomiExamples": [ - { - "example": "慈しむ", - "reading": "いつくしむ", - "meaning": "to love (someone weaker than oneself), to be affectionate towards, to treat with tender loving care" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "并", - "幺", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24904_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06148.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6148.gif", - "uri": "http://jisho.org/search/%E6%85%88%23kanji" - }, - { - "query": "餌", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2277", - "strokeCount": 14, - "meaning": "food, bait, prey, tempting profit", - "kunyomi": [ - "え", - "えば", - "えさ", - "もち" - ], - "onyomi": [ - "ジ", - "ニ" - ], - "onyomiExamples": [ - { - "example": "採餌", - "reading": "サイジ", - "meaning": "feeding (by animals), food getting" - }, - { - "example": "好餌", - "reading": "コウジ", - "meaning": "bait, decoy, lure, easy prey, easy victim, sucker" - } - ], - "kunyomiExamples": [ - { - "example": "餌", - "reading": "えさ", - "meaning": "(animal) feed, fodder, pet food, bait, lure, enticement" - }, - { - "example": "餌場", - "reading": "えさば", - "meaning": "feeding ground" - }, - { - "example": "撒き餌", - "reading": "まきえ", - "meaning": "scattered animal feed, ground bait" - }, - { - "example": "毒餌", - "reading": "どくえ", - "meaning": "poisonous bait" - }, - { - "example": "餌", - "reading": "えさ", - "meaning": "(animal) feed, fodder, pet food, bait, lure, enticement" - }, - { - "example": "餌場", - "reading": "えさば", - "meaning": "feeding ground" - }, - { - "example": "釣り餌", - "reading": "つりえ", - "meaning": "bait (for fishing)" - }, - { - "example": "練り餌", - "reading": "ねりえ", - "meaning": "paste bird feed, paste fishing bait" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "耳", - "艮", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39180_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0990c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/990c.gif", - "uri": "http://jisho.org/search/%E9%A4%8C%23kanji" - }, - { - "query": "璽", - "found": true, - "taughtIn": "junior high", - "strokeCount": 19, - "meaning": "emperor's seal", - "kunyomi": [], - "onyomi": [ - "ジ" - ], - "onyomiExamples": [ - { - "example": "璽", - "reading": "ジ", - "meaning": "emperor's seal" - }, - { - "example": "璽書", - "reading": "ジショ", - "meaning": "document with the emperor's seal" - }, - { - "example": "国璽", - "reading": "コクジ", - "meaning": "the seal of state" - }, - { - "example": "玉璽", - "reading": "ギョクジ", - "meaning": "sovereign's seal" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "ハ", - "一", - "冂", - "爻", - "王", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29885_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/074bd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/74bd.gif", - "uri": "http://jisho.org/search/%E7%92%BD%23kanji" - }, - { - "query": "軸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1261", - "strokeCount": 12, - "meaning": "axis, pivot, stem, stalk, counter for book scrolls", - "kunyomi": [], - "onyomi": [ - "ジク" - ], - "onyomiExamples": [ - { - "example": "軸", - "reading": "ジク", - "meaning": "axis, shaft, axle, center, centre, focal point, key point, stalk, stem, hanging scroll" - }, - { - "example": "軸足", - "reading": "ジクアシ", - "meaning": "pivot leg" - }, - { - "example": "基軸", - "reading": "キジク", - "meaning": "basis, foundation, core, criterion, standard" - }, - { - "example": "中軸", - "reading": "チュウジク", - "meaning": "axis, pivot, central figure, key man" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "日", - "田", - "車", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36600_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ef8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ef8.gif", - "uri": "http://jisho.org/search/%E8%BB%B8%23kanji" - }, - { - "query": "𠮟", - "found": true, - "strokeCount": 5, - "meaning": "", - "kunyomi": [], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/55362_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/20b9f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/20b9f.gif", - "uri": "http://jisho.org/search/%F0%A0%AE%9F%23kanji" - }, - { - "query": "疾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1577", - "strokeCount": 10, - "meaning": "rapidly", - "kunyomi": [ - "はや.い" - ], - "onyomi": [ - "シツ" - ], - "onyomiExamples": [ - { - "example": "疾雷", - "reading": "シツライ", - "meaning": "sudden and violent thunder" - }, - { - "example": "癈疾", - "reading": "ハイシツ", - "meaning": "disablement" - }, - { - "example": "廃疾", - "reading": "ハイシツ", - "meaning": "disablement, disability" - } - ], - "kunyomiExamples": [ - { - "example": "早い", - "reading": "はやい", - "meaning": "fast, quick, hasty, brisk, early (in the day, etc.), premature, (too) soon, not yet, (too) early, easy, simple, quick" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "乞", - "疔", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30142_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075be.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75be.gif", - "uri": "http://jisho.org/search/%E7%96%BE%23kanji" - }, - { - "query": "執", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "800", - "strokeCount": 11, - "meaning": "tenacious, take hold, grasp, take to heart", - "kunyomi": [ - "と.る" - ], - "onyomi": [ - "シツ", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "執務", - "reading": "シツム", - "meaning": "performance of one's official duties" - }, - { - "example": "執拗い", - "reading": "シツコイ", - "meaning": "insistent, obstinate, persistent, tenacious, too rich (taste, etc.), fatty, heavy, greasy" - }, - { - "example": "中執", - "reading": "チュウシツ", - "meaning": "Central Executive Committee" - }, - { - "example": "確執", - "reading": "カクシツ", - "meaning": "discord, antagonism" - }, - { - "example": "執", - "reading": "シュウ", - "meaning": "attachment, obsession, persistence" - }, - { - "example": "執行", - "reading": "シッコウ", - "meaning": "execution, carrying out, performance, enforcement, exercise, service, lead monk performing various tasks in a temple" - }, - { - "example": "愛執", - "reading": "アイシュウ", - "meaning": "attachment, covetous affection" - }, - { - "example": "妄執", - "reading": "モウシュウ", - "meaning": "deep-rooted delusion, firm conviction (based on incorrect beliefs)" - } - ], - "kunyomiExamples": [ - { - "example": "執る", - "reading": "とる", - "meaning": "to take (trouble), to attend (to business), to command (army)" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "丶", - "九", - "亠", - "十", - "土", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22519_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057f7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57f7.gif", - "uri": "http://jisho.org/search/%E5%9F%B7%23kanji" - }, - { - "query": "湿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1517", - "strokeCount": 12, - "meaning": "damp, wet, moist", - "kunyomi": [ - "しめ.る", - "しめ.す", - "うるお.う", - "うるお.す" - ], - "onyomi": [ - "シツ", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "湿", - "reading": "シツ", - "meaning": "moisture, humidity, dampness, scabies, sarcoptic mange, the itch" - }, - { - "example": "湿原", - "reading": "シツゲン", - "meaning": "marshy grassland, wetlands" - }, - { - "example": "多湿", - "reading": "タシツ", - "meaning": "high humidity" - }, - { - "example": "耐湿", - "reading": "タイシツ", - "meaning": "resisting moisture" - } - ], - "kunyomiExamples": [ - { - "example": "湿る", - "reading": "しめる", - "meaning": "to become damp, to become moist, to become wet, to lack energy, to be in a slump, to be in low spirits, to feel depressed" - }, - { - "example": "湿す", - "reading": "しめす", - "meaning": "to wet, to moisten, to dampen" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "日", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28287_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e7f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e7f.gif", - "uri": "http://jisho.org/search/%E6%B9%BF%23kanji" - }, - { - "query": "嫉", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2317", - "strokeCount": 13, - "meaning": "jealous, envy", - "kunyomi": [ - "そね.む", - "ねた.む", - "にく.む" - ], - "onyomi": [ - "シツ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "嫉む", - "reading": "そねむ", - "meaning": "to be jealous of, to envy, to begrudge" - }, - { - "example": "妬む", - "reading": "ねたむ", - "meaning": "to be jealous of, to envy, to begrudge" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "乞", - "女", - "疔", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23241_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ac9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ac9.gif", - "uri": "http://jisho.org/search/%E5%AB%89%23kanji" - }, - { - "query": "漆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1971", - "strokeCount": 14, - "meaning": "lacquer, varnish, seven", - "kunyomi": [ - "うるし" - ], - "onyomi": [ - "シツ" - ], - "onyomiExamples": [ - { - "example": "漆芸", - "reading": "シツゲイ", - "meaning": "(Japanese) lacquer art" - }, - { - "example": "膠漆", - "reading": "コウシツ", - "meaning": "glue and lacquer, great intimacy" - }, - { - "example": "仮漆", - "reading": "カシツ", - "meaning": "varnish" - } - ], - "kunyomiExamples": [ - { - "example": "漆", - "reading": "うるし", - "meaning": "East-Asian lacquer, japan, Chinese lacquer tree (Toxicodendron vernicifluum, formerly Rhus verniciflua)" - }, - { - "example": "漆塗り", - "reading": "うるしぬり", - "meaning": "lacquering, lacquer ware" - }, - { - "example": "生漆", - "reading": "きうるし", - "meaning": "unrefined sap of the lacquer tree" - }, - { - "example": "透漆", - "reading": "すきうるし", - "meaning": "clear lacquer" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "个", - "木", - "水", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28422_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f06.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f06.gif", - "uri": "http://jisho.org/search/%E6%BC%86%23kanji" - }, - { - "query": "芝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1052", - "strokeCount": 6, - "meaning": "turf, lawn", - "kunyomi": [ - "しば" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "芝", - "reading": "シバ", - "meaning": "lawn, sod, turf" - }, - { - "example": "芝居", - "reading": "シバイ", - "meaning": "play, drama" - }, - { - "example": "霊芝", - "reading": "レイシ", - "meaning": "bracket fungus (Ganoderma lucidum), reishi mushroom" - } - ], - "kunyomiExamples": [ - { - "example": "芝", - "reading": "しば", - "meaning": "lawn, sod, turf" - }, - { - "example": "芝居", - "reading": "しばい", - "meaning": "play, drama" - }, - { - "example": "高麗芝", - "reading": "こうらいしば", - "meaning": "Korean lawn grass" - }, - { - "example": "道芝", - "reading": "みちしば", - "meaning": "roadside grass, roadside weeds, guidance (sometimes esp. referring to guidance in love), guidepost, guide, Chinese fountain grass (Pennisetum alopecuroides)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "亠", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33437_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0829d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/829d.gif", - "uri": "http://jisho.org/search/%E8%8A%9D%23kanji" - }, - { - "query": "赦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1868", - "strokeCount": 11, - "meaning": "pardon, forgiveness", - "kunyomi": [], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "赦", - "reading": "シャ", - "meaning": "pardon, amnesty" - }, - { - "example": "赦免", - "reading": "シャメン", - "meaning": "pardon, remission, amnesty" - }, - { - "example": "特赦", - "reading": "トクシャ", - "meaning": "special pardon, (general) amnesty" - }, - { - "example": "情け容赦", - "reading": "ナサケヨウシャ", - "meaning": "mercy" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "赤", - "meaning": "red, naked" - }, - "parts": [ - "乞", - "土", - "攵", - "赤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36198_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d66.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d66.gif", - "uri": "http://jisho.org/search/%E8%B5%A6%23kanji" - }, - { - "query": "斜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1504", - "strokeCount": 11, - "meaning": "diagonal, slanting, oblique", - "kunyomi": [ - "なな.め", - "はす" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "斜", - "reading": "ハス", - "meaning": "diagonal" - }, - { - "example": "斜面", - "reading": "シャメン", - "meaning": "slope, slanting surface, bevel" - }, - { - "example": "急傾斜", - "reading": "キュウケイシャ", - "meaning": "steep slope (incline)" - }, - { - "example": "偏斜", - "reading": "ヘンシャ", - "meaning": "declination, deviation" - } - ], - "kunyomiExamples": [ - { - "example": "斜め", - "reading": "ななめ", - "meaning": "slanting, tilted, sloping, diagonal, oblique, distorted (feeling), slanted (e.g. view of the world), bad (mood), amiss, awry" - }, - { - "example": "斜め上", - "reading": "ななめうえ", - "meaning": "diagonally upward, (going in a) completely unexpected direction (of a story, result, etc.)" - }, - { - "example": "斜", - "reading": "はす", - "meaning": "diagonal" - }, - { - "example": "斜交い", - "reading": "はすかい", - "meaning": "aslant, oblique, diagonal, askew, cater-cornered, catty-cornered" - } - ], - "radical": { - "symbol": "斗", - "meaning": "dipper" - }, - "parts": [ - "一", - "个", - "斗", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26012_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0659c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/659c.gif", - "uri": "http://jisho.org/search/%E6%96%9C%23kanji" - }, - { - "query": "煮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1565", - "strokeCount": 12, - "meaning": "boil, cook", - "kunyomi": [ - "に.る", - "-に", - "に.える", - "に.やす" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "煮沸", - "reading": "シャフツ", - "meaning": "boiling up" - }, - { - "example": "煮沸器", - "reading": "シャフツキ", - "meaning": "scalder" - } - ], - "kunyomiExamples": [ - { - "example": "煮る", - "reading": "にる", - "meaning": "to boil, to simmer, to stew, to seethe" - }, - { - "example": "煮るなり焼くなり", - "reading": "にるなりやくなり", - "meaning": "as you please, in any way you like, as you wish" - }, - { - "example": "煮える", - "reading": "にえる", - "meaning": "to be boiled, to be cooked" - }, - { - "example": "煮やす", - "reading": "にやす", - "meaning": "to cook inside" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "日", - "杰", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29038_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0716e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/716e.gif", - "uri": "http://jisho.org/search/%E7%85%AE%23kanji" - }, - { - "query": "遮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1865", - "strokeCount": 14, - "meaning": "intercept, interrupt, obstruct", - "kunyomi": [ - "さえぎ.る" - ], - "onyomi": [ - "シャ" - ], - "onyomiExamples": [ - { - "example": "遮断機", - "reading": "シャダンキ", - "meaning": "railway crossing gate" - }, - { - "example": "遮断器", - "reading": "シャダンキ", - "meaning": "circuit breaker" - }, - { - "example": "間遮", - "reading": "アイシャ", - "meaning": "piece placed to block opponent's check, interposed piece" - } - ], - "kunyomiExamples": [ - { - "example": "遮る", - "reading": "さえぎる", - "meaning": "to interrupt, to obstruct (a view, someone's way, etc.), to block (light, wind, etc.), to intercept, to cut off" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "一", - "广", - "杰", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36974_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0906e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/906e.gif", - "uri": "http://jisho.org/search/%E9%81%AE%23kanji" - }, - { - "query": "邪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1612", - "strokeCount": 8, - "meaning": "wicked, injustice, wrong", - "kunyomi": [ - "よこし.ま" - ], - "onyomi": [ - "ジャ" - ], - "onyomiExamples": [ - { - "example": "邪", - "reading": "ジャ", - "meaning": "wickedness, evil, wicked person" - }, - { - "example": "邪魔", - "reading": "ジャマ", - "meaning": "hindrance, obstacle, nuisance, disturbance, interruption, interference, to visit (someone's home), demon who hinders Buddhist training, demon who obstructs sentient beings from maintaining moral behaviour" - }, - { - "example": "妖邪", - "reading": "ヨウジャ", - "meaning": "evil intent, malice" - }, - { - "example": "破邪", - "reading": "ハジャ", - "meaning": "(sense of) crushing evil" - } - ], - "kunyomiExamples": [ - { - "example": "邪", - "reading": "よこしま", - "meaning": "wicked, evil" - }, - { - "example": "邪まな心", - "reading": "よこしまなこころ", - "meaning": "evil heart" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "牙", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37034_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90aa.gif", - "uri": "http://jisho.org/search/%E9%82%AA%23kanji" - }, - { - "query": "蛇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1721", - "strokeCount": 11, - "meaning": "snake, serpent, hard drinker", - "kunyomi": [ - "へび" - ], - "onyomi": [ - "ジャ", - "ダ", - "イ", - "ヤ" - ], - "onyomiExamples": [ - { - "example": "蛇", - "reading": "ヘビ", - "meaning": "snake, serpent, large snake" - }, - { - "example": "蛇口", - "reading": "ジャグチ", - "meaning": "faucet, tap" - }, - { - "example": "王蛇", - "reading": "オウジャ", - "meaning": "boa" - }, - { - "example": "長蛇", - "reading": "チョウダ", - "meaning": "long snake, long line (of people, etc.)" - }, - { - "example": "蛇行", - "reading": "ダコウ", - "meaning": "meandering, snaking, zigzagging" - }, - { - "example": "蛇蠍", - "reading": "ダカツ", - "meaning": "serpent (snake) and scorpion, detestation" - }, - { - "example": "委蛇", - "reading": "イイ", - "meaning": "winding, meandering" - }, - { - "example": "游蛇", - "reading": "ユウダ", - "meaning": "water snake" - }, - { - "example": "委蛇", - "reading": "イイ", - "meaning": "winding, meandering" - } - ], - "kunyomiExamples": [ - { - "example": "蛇", - "reading": "へび", - "meaning": "snake, serpent, large snake" - }, - { - "example": "蛇穴に入る", - "reading": "へびあなにいる", - "meaning": "snake hibernation" - }, - { - "example": "裸蛇", - "reading": "はだかへび", - "meaning": "caecilian (any burrowing legless amphibian of the order Gymnophiona)" - }, - { - "example": "錦蛇", - "reading": "にしきへび", - "meaning": "python, rock snake" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "匕", - "宀", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34503_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/086c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/86c7.gif", - "uri": "http://jisho.org/search/%E8%9B%87%23kanji" - }, - { - "query": "酌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2271", - "strokeCount": 10, - "meaning": "bar-tending, serving sake, the host, draw (water), ladle, scoop, pump", - "kunyomi": [ - "く.む" - ], - "onyomi": [ - "シャク" - ], - "onyomiExamples": [ - { - "example": "酌", - "reading": "シャク", - "meaning": "pouring alcohol, person pouring alcohol (esp. a woman)" - }, - { - "example": "酌婦", - "reading": "シャクフ", - "meaning": "barmaid, waitress" - }, - { - "example": "晩酌", - "reading": "バンシャク", - "meaning": "drink at home with one's evening meal, dinner-time drink" - }, - { - "example": "媒酌", - "reading": "バイシャク", - "meaning": "matchmaking, acting as a go-between" - } - ], - "kunyomiExamples": [ - { - "example": "酌む", - "reading": "くむ", - "meaning": "to pour (sake), to serve, to drink together" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "丶", - "勹", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37196_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0914c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/914c.gif", - "uri": "http://jisho.org/search/%E9%85%8C%23kanji" - }, - { - "query": "釈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1097", - "strokeCount": 11, - "meaning": "explanation", - "kunyomi": [ - "とく", - "す.てる", - "ゆる.す" - ], - "onyomi": [ - "シャク", - "セキ" - ], - "onyomiExamples": [ - { - "example": "釈明", - "reading": "シャクメイ", - "meaning": "explanation, vindication" - }, - { - "example": "釈放", - "reading": "シャクホウ", - "meaning": "release, liberation, acquittal" - }, - { - "example": "保釈", - "reading": "ホシャク", - "meaning": "bail, releasing on bail" - }, - { - "example": "講釈", - "reading": "コウシャク", - "meaning": "explanation (of a text, phrase, etc.), lecture, exposition, explanation (in a pompous fashion), (long-winded) lecture, storytelling" - }, - { - "example": "釈然", - "reading": "シャクゼン", - "meaning": "fully satisfied (with an explanation, apology, etc.), happy, cleared of doubt" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "釆", - "meaning": "divide, distinguish, choose" - }, - "parts": [ - "丶", - "尸", - "米", - "釆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37320_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091c8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91c8.gif", - "uri": "http://jisho.org/search/%E9%87%88%23kanji" - }, - { - "query": "爵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 17, - "meaning": "baron, peerage, court rank", - "kunyomi": [], - "onyomi": [ - "シャク" - ], - "onyomiExamples": [ - { - "example": "爵", - "reading": "シャク", - "meaning": "jue (ancient 3-legged Chinese wine pitcher, usu. made of bronze), peerage (hereditary title bestowed by the emperor)" - }, - { - "example": "爵位", - "reading": "シャクイ", - "meaning": "peerage, court rank" - }, - { - "example": "伯爵", - "reading": "ハクシャク", - "meaning": "count, earl" - }, - { - "example": "侯爵", - "reading": "コウシャク", - "meaning": "marquis, marquess" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "爪", - "forms": [ - "爫" - ], - "meaning": "claw" - }, - "parts": [ - "寸", - "爪", - "艮", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29237_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07235.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7235.gif", - "uri": "http://jisho.org/search/%E7%88%B5%23kanji" - }, - { - "query": "寂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1599", - "strokeCount": 11, - "meaning": "loneliness, quietly, mellow, mature, death of a priest", - "kunyomi": [ - "さび", - "さび.しい", - "さび.れる", - "さみ.しい" - ], - "onyomi": [ - "ジャク", - "セキ" - ], - "onyomiExamples": [ - { - "example": "寂", - "reading": "ジャク", - "meaning": "(entering into) nirvana, died, silent, tranquil" - }, - { - "example": "寂然", - "reading": "セキゼン", - "meaning": "lonely, desolate, forlornness, desolation" - }, - { - "example": "和敬清寂", - "reading": "ワケイセイジャク", - "meaning": "harmony, respect, purity and tranquility, the four most important elements of the tea ceremony" - }, - { - "example": "空寂", - "reading": "クウジャク", - "meaning": "complete emptiness (i.e. as a denial of the inherent existence of all things), nirvana (where this emptiness is realized), quiet and lonely" - }, - { - "example": "寂", - "reading": "ジャク", - "meaning": "(entering into) nirvana, died, silent, tranquil" - }, - { - "example": "寂然", - "reading": "セキゼン", - "meaning": "lonely, desolate, forlornness, desolation" - }, - { - "example": "闃寂", - "reading": "ゲキセキ", - "meaning": "silent and still, desolate" - }, - { - "example": "寂々", - "reading": "セキセキ", - "meaning": "sad, lonesome, desolate" - } - ], - "kunyomiExamples": [ - { - "example": "寂", - "reading": "さび", - "meaning": "patina, antique look, elegant simplicity, well-trained voice" - }, - { - "example": "寂しい", - "reading": "さびしい", - "meaning": "lonely, lonesome, solitary, desolate" - }, - { - "example": "侘と寂", - "reading": "わびとさび", - "meaning": "taste for the simple and quiet, wabi and sabi" - }, - { - "example": "寂々", - "reading": "せきせき", - "meaning": "sad, lonesome, desolate" - }, - { - "example": "寂しい", - "reading": "さびしい", - "meaning": "lonely, lonesome, solitary, desolate" - }, - { - "example": "寂れる", - "reading": "さびれる", - "meaning": "to decline (in prosperity), to become deserted, to become desolate, to taper off (of a sound)" - }, - { - "example": "寂しい", - "reading": "さびしい", - "meaning": "lonely, lonesome, solitary, desolate" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "卜", - "又", - "宀", - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23490_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bc2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bc2.gif", - "uri": "http://jisho.org/search/%E5%AF%82%23kanji" - }, - { - "query": "朱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1788", - "strokeCount": 6, - "meaning": "vermilion, cinnabar, scarlet, red, bloody", - "kunyomi": [ - "あけ" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "朱", - "reading": "シュ", - "meaning": "cinnabar, vermillion, red, slightly-orange red, red pigment (and ink made from same), red text (as used to correct documents)" - }, - { - "example": "朱印", - "reading": "シュイン", - "meaning": "red seal" - }, - { - "example": "堆朱", - "reading": "ツイシュ", - "meaning": "red lacquerware with patterns carved in relief" - }, - { - "example": "銀朱", - "reading": "ギンシュ", - "meaning": "vermilion, scarlet" - } - ], - "kunyomiExamples": [ - { - "example": "朱", - "reading": "あけ", - "meaning": "scarlet, red" - }, - { - "example": "朱に染まる", - "reading": "あけにそまる", - "meaning": "to welter in blood, to be covered in blood" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "ハ", - "二", - "木", - "牛", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26417_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06731.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6731.gif", - "uri": "http://jisho.org/search/%E6%9C%B1%23kanji" - }, - { - "query": "狩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1785", - "strokeCount": 9, - "meaning": "hunt, raid, gather", - "kunyomi": [ - "か.る", - "か.り", - "-が.り" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "狩猟", - "reading": "シュリョウ", - "meaning": "hunting" - }, - { - "example": "狩猟期", - "reading": "シュリョウキ", - "meaning": "hunting season" - }, - { - "example": "巡狩", - "reading": "ジュンシュ", - "meaning": "Imperial visit" - } - ], - "kunyomiExamples": [ - { - "example": "狩る", - "reading": "かる", - "meaning": "to hunt (animals), to search (for a criminal), to go looking for (flowers, etc.), to gather (mushrooms), to pick (berries)" - }, - { - "example": "狩り", - "reading": "かり", - "meaning": "hunting, harvesting (e.g. berries, fruit), picking, gathering" - }, - { - "example": "狩場", - "reading": "かりば", - "meaning": "hunting ground, hunting preserve" - }, - { - "example": "虫狩", - "reading": "むしかり", - "meaning": "viburnum, Viburnum furcatum" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "宀", - "寸", - "犯" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29417_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072e9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72e9.gif", - "uri": "http://jisho.org/search/%E7%8B%A9%23kanji" - }, - { - "query": "殊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1361", - "strokeCount": 10, - "meaning": "particularly, especially, exceptionally", - "kunyomi": [ - "こと" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "殊勲", - "reading": "シュクン", - "meaning": "distinguished services, meritorious deeds" - }, - { - "example": "殊勝", - "reading": "シュショウ", - "meaning": "admirable, laudable" - }, - { - "example": "特殊", - "reading": "トクシュ", - "meaning": "special, particular, peculiar, unique" - } - ], - "kunyomiExamples": [ - { - "example": "異", - "reading": "こと", - "meaning": "difference (from one another), different thing, other, unusual, extraordinary" - }, - { - "example": "殊に", - "reading": "ことに", - "meaning": "especially, particularly, unusually, above all, additionally" - } - ], - "radical": { - "symbol": "歹", - "forms": [ - "歺" - ], - "meaning": "death, decay" - }, - "parts": [ - "ノ", - "ハ", - "二", - "木", - "歹", - "牛", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27530_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b8a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b8a.gif", - "uri": "http://jisho.org/search/%E6%AE%8A%23kanji" - }, - { - "query": "珠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1711", - "strokeCount": 10, - "meaning": "pearl, gem, jewel", - "kunyomi": [ - "たま" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "珠算", - "reading": "シュザン", - "meaning": "calculation on an abacus" - }, - { - "example": "珠玉", - "reading": "シュギョク", - "meaning": "jewel, gem, gem (of a story, essay, etc.), accomplished work, beautiful piece" - }, - { - "example": "遺珠", - "reading": "イシュ", - "meaning": "unknown literary masterpiece, lost pearl" - }, - { - "example": "胚珠", - "reading": "ハイシュ", - "meaning": "ovule" - } - ], - "kunyomiExamples": [ - { - "example": "玉", - "reading": "たま", - "meaning": "ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, coin, precious, beautiful, excellent" - }, - { - "example": "珠算", - "reading": "しゅざん", - "meaning": "calculation on an abacus" - }, - { - "example": "射干玉", - "reading": "ぬばたま", - "meaning": "pitch-black, darkness" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "ノ", - "ハ", - "二", - "木", - "牛", - "王", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29664_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/073e0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/73e0.gif", - "uri": "http://jisho.org/search/%E7%8F%A0%23kanji" - }, - { - "query": "腫", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2145", - "strokeCount": 13, - "meaning": "tumor, swelling", - "kunyomi": [ - "は.れる", - "は.れ", - "は.らす", - "はれもの" - ], - "onyomi": [ - "シュ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "腫", - "reading": "シュ", - "meaning": "tumor, tumour" - }, - { - "example": "腫瘍", - "reading": "シュヨウ", - "meaning": "tumor, tumour, neoplasm, neoplasia" - }, - { - "example": "奇形腫", - "reading": "キケイシュ", - "meaning": "teratoma, teratocarcinoma, teratoid tumor" - }, - { - "example": "神経腫", - "reading": "シンケイシュ", - "meaning": "neuroma" - }, - { - "example": "疽腫", - "reading": "ソショウ", - "meaning": "swelling, boil" - } - ], - "kunyomiExamples": [ - { - "example": "腫れる", - "reading": "はれる", - "meaning": "to swell (from inflammation), to become swollen" - }, - { - "example": "腫れ", - "reading": "はれ", - "meaning": "swelling, boil" - }, - { - "example": "腫れる", - "reading": "はれる", - "meaning": "to swell (from inflammation), to become swollen" - }, - { - "example": "腫らす", - "reading": "はらす", - "meaning": "to cause to swell, to inflame" - }, - { - "example": "腫れ物", - "reading": "はれもの", - "meaning": "tumor, tumour, swelling, boil, abscess" - }, - { - "example": "腫れ物扱い", - "reading": "はれものあつかい", - "meaning": "treating (someone) with great caution (so as not to anger or upset them), handling with kid gloves, treating gingerly" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "ノ", - "日", - "月", - "里", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33131_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0816b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/816b.gif", - "uri": "http://jisho.org/search/%E8%85%AB%23kanji" - }, - { - "query": "趣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1153", - "strokeCount": 15, - "meaning": "purport, gist, elegance, interest, proceed to, tend, become", - "kunyomi": [ - "おもむき", - "おもむ.く" - ], - "onyomi": [ - "シュ" - ], - "onyomiExamples": [ - { - "example": "趣旨", - "reading": "シュシ", - "meaning": "meaning, point (e.g. of a statement), gist, effect, goal, intent, object, aim, point" - }, - { - "example": "趣向", - "reading": "シュコウ", - "meaning": "plan, idea, design, plot" - }, - { - "example": "異趣", - "reading": "イシュ", - "meaning": "extraordinary appearance" - }, - { - "example": "意趣", - "reading": "イシュ", - "meaning": "grudge, malice, spite, intention, disposition, obstinacy, reason, revenge" - } - ], - "kunyomiExamples": [ - { - "example": "趣", - "reading": "おもむき", - "meaning": "meaning, tenor, gist, effect, influence, appearance, aspect, grace, charm, refinement, taste, elegance" - }, - { - "example": "趣のある", - "reading": "おもむきのある", - "meaning": "tasteful, elegant, refined, charming, attractive" - }, - { - "example": "赴く", - "reading": "おもむく", - "meaning": "to go in the direction of, to proceed toward, to proceed according to, to repair to, to betake oneself to, to become, to face (facts, circumstances, etc.), to abide by, to agree to, to consent to, to obey" - } - ], - "radical": { - "symbol": "走", - "forms": [ - "赱" - ], - "meaning": "run" - }, - "parts": [ - "又", - "土", - "耳", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36259_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08da3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8da3.gif", - "uri": "http://jisho.org/search/%E8%B6%A3%23kanji" - }, - { - "query": "寿", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1245", - "strokeCount": 7, - "meaning": "longevity, congratulations, one's natural life", - "kunyomi": [ - "ことぶき", - "ことぶ.く", - "ことほ.ぐ" - ], - "onyomi": [ - "ジュ", - "ス", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "寿", - "reading": "ジュ", - "meaning": "age, years, longevity, long life, congratulation, celebration, congratulatory gift" - }, - { - "example": "寿命", - "reading": "ジュミョウ", - "meaning": "life span" - }, - { - "example": "喜寿", - "reading": "キジュ", - "meaning": "77th birthday" - }, - { - "example": "米寿", - "reading": "ベイジュ", - "meaning": "88th birthday" - }, - { - "example": "寿司", - "reading": "スシ", - "meaning": "sushi, anything made with vinegared rice (may also contain vegetables, spices, fish, or other delicacies)" - }, - { - "example": "すき焼き", - "reading": "スキヤキ", - "meaning": "sukiyaki, thin slices of beef, cooked with various vegetables in a table-top cast-iron pan" - }, - { - "example": "恵比寿", - "reading": "エビス", - "meaning": "Ebisu, god of fishing and commerce" - } - ], - "kunyomiExamples": [ - { - "example": "寿", - "reading": "ことぶき", - "meaning": "congratulations, felicitations, best wishes, longevity, long life" - }, - { - "example": "寿教室", - "reading": "ことぶききょうしつ", - "meaning": "culture courses for the aged" - }, - { - "example": "新年の寿", - "reading": "しんねんのことぶき", - "meaning": "New Years greetings" - }, - { - "example": "寿く", - "reading": "ことぶく", - "meaning": "to congratulate, to wish one well" - }, - { - "example": "寿ぐ", - "reading": "ことほぐ", - "meaning": "to congratulate, to wish (someone) well, to celebrate" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "ノ", - "一", - "二", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23551_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bff.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bff.gif", - "uri": "http://jisho.org/search/%E5%AF%BF%23kanji" - }, - { - "query": "呪", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2131", - "strokeCount": 8, - "meaning": "spell, curse, charm, malediction", - "kunyomi": [ - "まじな.う", - "のろ.い", - "まじな.い", - "のろ.う" - ], - "onyomi": [ - "ジュ", - "シュ", - "シュウ", - "ズ" - ], - "onyomiExamples": [ - { - "example": "呪", - "reading": "ジュ", - "meaning": "spell, curse, dharani, mantra" - }, - { - "example": "呪術", - "reading": "ジュジュツ", - "meaning": "magic, sorcery, incantation" - }, - { - "example": "消災呪", - "reading": "ショウサイジュ", - "meaning": "disaster-preventing incantation, disaster-preventing dharani" - }, - { - "example": "明呪", - "reading": "ミョウジュ", - "meaning": "mantra" - }, - { - "example": "呪詛", - "reading": "ジュソ", - "meaning": "curse, malediction, hex" - } - ], - "kunyomiExamples": [ - { - "example": "呪う", - "reading": "まじなう", - "meaning": "to pray that one avoids disaster or illness, to pray, to pray for the death or misfortune of another, to curse, to treat illness with prayer" - }, - { - "example": "呪い", - "reading": "のろい", - "meaning": "curse, spell, malediction" - }, - { - "example": "呪い殺す", - "reading": "のろいころす", - "meaning": "to curse someone to death, to put a deadly curse on someone" - }, - { - "example": "呪い", - "reading": "まじない", - "meaning": "charm, incantation, spell, curse" - }, - { - "example": "呪う", - "reading": "のろう", - "meaning": "to curse, to put a curse on, to detest intensely" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "儿", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21610_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0546a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/546a.gif", - "uri": "http://jisho.org/search/%E5%91%AA%23kanji" - }, - { - "query": "需", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "935", - "strokeCount": 14, - "meaning": "demand, request, need", - "kunyomi": [], - "onyomi": [ - "ジュ" - ], - "onyomiExamples": [ - { - "example": "需要", - "reading": "ジュヨウ", - "meaning": "demand, request" - }, - { - "example": "需給", - "reading": "ジュキュウ", - "meaning": "supply and demand" - }, - { - "example": "外需", - "reading": "ガイジュ", - "meaning": "foreign demand" - }, - { - "example": "内需", - "reading": "ナイジュ", - "meaning": "domestic demand" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "而", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38656_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09700.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9700.gif", - "uri": "http://jisho.org/search/%E9%9C%80%23kanji" - }, - { - "query": "儒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2162", - "strokeCount": 16, - "meaning": "Confucian", - "kunyomi": [], - "onyomi": [ - "ジュ" - ], - "onyomiExamples": [ - { - "example": "儒", - "reading": "ジュ", - "meaning": "Confucianism, Confucianist, Chinese scholar" - }, - { - "example": "儒教", - "reading": "ジュキョウ", - "meaning": "Confucianism" - }, - { - "example": "大儒", - "reading": "タイジュ", - "meaning": "great Confucian (scholar), great scholar, person of great erudition" - }, - { - "example": "坑儒", - "reading": "コウジュ", - "meaning": "burying Confucian scholars alive" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "而", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20754_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05112.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5112.gif", - "uri": "http://jisho.org/search/%E5%84%92%23kanji" - }, - { - "query": "囚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2107", - "strokeCount": 5, - "meaning": "captured, criminal, arrest, catch", - "kunyomi": [ - "とら.われる" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "囚", - "reading": "シュウ", - "meaning": "imprisonment, captive, prisoner" - }, - { - "example": "囚人", - "reading": "シュウジン", - "meaning": "prisoner" - }, - { - "example": "確定死刑囚", - "reading": "カクテイシケイシュウ", - "meaning": "criminal condemned to death, convict on death row" - }, - { - "example": "罪囚", - "reading": "ザイシュウ", - "meaning": "prisoner, convict" - } - ], - "kunyomiExamples": [ - { - "example": "捕らわれる", - "reading": "とらわれる", - "meaning": "to be caught, to be captured, to be taken prisoner, to be arrested, to be apprehended, to be seized with (fear, etc.), to be a slave to, to stick to, to adhere to, to be swayed by" - } - ], - "radical": { - "symbol": "囗", - "meaning": "enclosure" - }, - "parts": [ - "人", - "囗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22234_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/056da.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/56da.gif", - "uri": "http://jisho.org/search/%E5%9B%9A%23kanji" - }, - { - "query": "舟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1786", - "strokeCount": 6, - "meaning": "boat, ship", - "kunyomi": [ - "ふね", - "ふな-", - "-ぶね" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "舟艇", - "reading": "シュウテイ", - "meaning": "boat, watercraft" - }, - { - "example": "舟運", - "reading": "シュウウン", - "meaning": "transportation by water (e.g. by ship)" - }, - { - "example": "軽舟", - "reading": "ケイシュウ", - "meaning": "light boat, skiff" - }, - { - "example": "同舟", - "reading": "ドウシュウ", - "meaning": "shipmates, fellow passengers" - } - ], - "kunyomiExamples": [ - { - "example": "船", - "reading": "ふね", - "meaning": "ship, boat, watercraft, vessel, seaplane, tank, tub, vat, trough, counter for boat-shaped containers (e.g. of sashimi)" - }, - { - "example": "船貝", - "reading": "ふねがい", - "meaning": "Arca avellana (species of ark shell)" - }, - { - "example": "釣り船", - "reading": "つりぶね", - "meaning": "fishing boat, boat-shaped hanging flower vase" - }, - { - "example": "曳船", - "reading": "えいせん", - "meaning": "tugboat, tug, towboat, tugging (a boat), towing, towage" - } - ], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33311_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0821f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/821f.gif", - "uri": "http://jisho.org/search/%E8%88%9F%23kanji" - }, - { - "query": "秀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "848", - "strokeCount": 7, - "meaning": "excel, excellence, beauty, surpass", - "kunyomi": [ - "ひい.でる" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "秀", - "reading": "シュウ", - "meaning": "preeminence, supremacy, distinction, excellence" - }, - { - "example": "秀作", - "reading": "シュウサク", - "meaning": "excellent (piece of) work" - }, - { - "example": "閨秀", - "reading": "ケイシュウ", - "meaning": "accomplished lady" - }, - { - "example": "清秀", - "reading": "セイシュウ", - "meaning": "having refined and distinguished features, having a bright face" - } - ], - "kunyomiExamples": [ - { - "example": "秀でる", - "reading": "ひいでる", - "meaning": "to excel, to surpass" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ノ", - "乃", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31168_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079c0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79c0.gif", - "uri": "http://jisho.org/search/%E7%A7%80%23kanji" - }, - { - "query": "臭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1760", - "strokeCount": 9, - "meaning": "stinking, ill-smelling, suspicious looking, odor, savor, fragrance, be fragrant, stink, glow, be bright", - "kunyomi": [ - "くさ.い", - "-くさ.い", - "にお.う", - "にお.い" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "臭", - "reading": "シュウ", - "meaning": "-smell, stinking of, smacking of, hinting of" - }, - { - "example": "臭覚", - "reading": "シュウカク", - "meaning": "the sense of smell" - }, - { - "example": "体臭", - "reading": "タイシュウ", - "meaning": "body odor, body odour, personal odor, personal odour, characteristic (of someone)" - }, - { - "example": "異臭", - "reading": "イシュウ", - "meaning": "offensive smell, off-flavor, off-flavour" - } - ], - "kunyomiExamples": [ - { - "example": "臭い", - "reading": "くさい", - "meaning": "stinking, smelly, suspicious, fishy, clumsy, unskilled, smelling of, looking like, appearing like, smacking of, -ish" - }, - { - "example": "臭い玉", - "reading": "においだま", - "meaning": "tonsil stone, tonsillolith, scent ball" - }, - { - "example": "匂う", - "reading": "におう", - "meaning": "to be fragrant, to smell (good), to stink, to smell (bad), to glow, to be bright, to smack of, to show hints of" - }, - { - "example": "匂い", - "reading": "におい", - "meaning": "odour, odor, scent, smell, stench, aura, whiff, smacks of ..., sense, flavour, flavor" - }, - { - "example": "匂いがする", - "reading": "においがする", - "meaning": "to smell, to smell of, to have a smell" - } - ], - "radical": { - "symbol": "自", - "meaning": "self" - }, - "parts": [ - "大", - "目", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33261_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81ed.gif", - "uri": "http://jisho.org/search/%E8%87%AD%23kanji" - }, - { - "query": "袖", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1960", - "strokeCount": 10, - "meaning": "sleeve, wing (building), extension, give cold shoulder", - "kunyomi": [ - "そで" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "袖手傍観", - "reading": "シュウシュボウカン", - "meaning": "looking on with folded arms (with one's hands in one's sleeves), remaining a passive onlooker" - }, - { - "example": "袖珍", - "reading": "シュウチン", - "meaning": "pocket size" - }, - { - "example": "領袖", - "reading": "リョウシュウ", - "meaning": "leader, chief, boss" - } - ], - "kunyomiExamples": [ - { - "example": "袖", - "reading": "そで", - "meaning": "sleeve, wing (of a stage, desk, gate, etc.)" - }, - { - "example": "袖裏", - "reading": "そでうら", - "meaning": "lining of a sleeve, sleeve lining" - }, - { - "example": "小袖", - "reading": "こそで", - "meaning": "short sleeved kimono (worn as an undergarment during the Heian period), padded silk garment" - }, - { - "example": "両袖", - "reading": "りょうそで", - "meaning": "both sleeves" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "一", - "初", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34966_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08896.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8896.gif", - "uri": "http://jisho.org/search/%E8%A2%96%23kanji" - }, - { - "query": "羞", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "feel ashamed", - "kunyomi": [ - "はじ.る", - "すすめ.る", - "は.ずかしい" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "羞恥", - "reading": "シュウチ", - "meaning": "shyness, bashfulness, shame" - }, - { - "example": "羞悪", - "reading": "シュウオ", - "meaning": "shame and hatred of evil" - }, - { - "example": "嬌羞", - "reading": "キョウシュウ", - "meaning": "charming and coy" - }, - { - "example": "含羞", - "reading": "ガンシュウ", - "meaning": "shyness" - } - ], - "kunyomiExamples": [ - { - "example": "恥じる", - "reading": "はじる", - "meaning": "to feel ashamed" - }, - { - "example": "恥ずかしい", - "reading": "はずかしい", - "meaning": "embarrassing, embarrassed, ashamed, humiliated, shy, disgraceful, shameful" - } - ], - "radical": { - "symbol": "羊", - "forms": [ - "⺶" - ], - "meaning": "sheep" - }, - "parts": [ - "ノ", - "ヨ", - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32670_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f9e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f9e.gif", - "uri": "http://jisho.org/search/%E7%BE%9E%23kanji" - }, - { - "query": "愁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2171", - "strokeCount": 13, - "meaning": "distress, grieve, lament, be anxious", - "kunyomi": [ - "うれ.える", - "うれ.い" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "愁傷", - "reading": "シュウショウ", - "meaning": "grief, sorrow" - }, - { - "example": "愁色", - "reading": "シュウショク", - "meaning": "worried look" - }, - { - "example": "哀愁", - "reading": "アイシュウ", - "meaning": "pathos, sorrow, grief" - }, - { - "example": "幽愁", - "reading": "ユウシュウ", - "meaning": "deep contemplation, melancholy, gloom" - } - ], - "kunyomiExamples": [ - { - "example": "憂える", - "reading": "うれえる", - "meaning": "to worry about, to be anxious about, to be concerned about, to lament, to grieve, to feel sorrow for" - }, - { - "example": "憂い", - "reading": "うれい", - "meaning": "sorrow, grief, anguish, distress, trouble, affliction, anxiety, fear, misgivings" - }, - { - "example": "憂い顔", - "reading": "うれいがお", - "meaning": "sad face, sorrowful face, anxious look, sad countenance" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "火", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24833_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06101.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6101.gif", - "uri": "http://jisho.org/search/%E6%84%81%23kanji" - }, - { - "query": "酬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1515", - "strokeCount": 13, - "meaning": "repay, reward, retribution", - "kunyomi": [ - "むく.いる" - ], - "onyomi": [ - "シュウ", - "シュ", - "トウ" - ], - "onyomiExamples": [ - { - "example": "無報酬", - "reading": "ムホウシュウ", - "meaning": "unpaid, without pay, gratuitous, voluntary" - }, - { - "example": "成功報酬", - "reading": "セイコウホウシュウ", - "meaning": "fee contingent upon success, contingency fee, completion bonus" - } - ], - "kunyomiExamples": [ - { - "example": "報いる", - "reading": "むくいる", - "meaning": "to reward, to recompense, to repay, to retaliate, to get revenge" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "丶", - "川", - "酉", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37228_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0916c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/916c.gif", - "uri": "http://jisho.org/search/%E9%85%AC%23kanji" - }, - { - "query": "醜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2074", - "strokeCount": 17, - "meaning": "ugly, unclean, shame, bad looking", - "kunyomi": [ - "みにく.い", - "しこ" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "醜", - "reading": "シュウ", - "meaning": "ugliness, shame, disgrace" - }, - { - "example": "醜女", - "reading": "シュウジョ", - "meaning": "homely woman, plain-looking woman, female demon" - }, - { - "example": "老醜", - "reading": "ロウシュウ", - "meaning": "ugliness of old age" - }, - { - "example": "美醜", - "reading": "ビシュウ", - "meaning": "beauty or ugliness, personal appearance, looks" - } - ], - "kunyomiExamples": [ - { - "example": "醜い", - "reading": "みにくい", - "meaning": "ugly, unattractive, unsightly, unseemly" - }, - { - "example": "醜いアヒルの子", - "reading": "みにくいアヒルのこ", - "meaning": "ugly duckling" - }, - { - "example": "醜", - "reading": "しこ", - "meaning": "ugly, repulsive, detestable, contemptible, unworthy, insignificant, humble, strong and frightening thing" - }, - { - "example": "醜女", - "reading": "しゅうじょ", - "meaning": "homely woman, plain-looking woman, female demon" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "儿", - "匕", - "厶", - "田", - "酉", - "鬼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37276_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0919c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/919c.gif", - "uri": "http://jisho.org/search/%E9%86%9C%23kanji" - }, - { - "query": "蹴", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2377", - "strokeCount": 19, - "meaning": "kick", - "kunyomi": [ - "け.る" - ], - "onyomi": [ - "シュク", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "蹴鞠", - "reading": "ケマリ", - "meaning": "kemari, type of football played by courtiers in ancient Japan" - }, - { - "example": "蹴球", - "reading": "シュウキュウ", - "meaning": "football (incl. soccer, rugby, American football, etc.; esp. used for soccer)" - }, - { - "example": "先蹴", - "reading": "センシュウ", - "meaning": "kick-off (esp. rugby)" - } - ], - "kunyomiExamples": [ - { - "example": "蹴る", - "reading": "ける", - "meaning": "to kick, to refuse, to reject, to stamp (on the ground), to firmly press one's feet (against something)" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "ノ", - "丶", - "乙", - "亠", - "口", - "小", - "尢", - "尤", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36468_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08e74.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8e74.gif", - "uri": "http://jisho.org/search/%E8%B9%B4%23kanji" - }, - { - "query": "襲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1130", - "strokeCount": 22, - "meaning": "attack, advance on, succeed to, pile, heap", - "kunyomi": [ - "おそ.う", - "かさ.ね" - ], - "onyomi": [ - "シュウ" - ], - "onyomiExamples": [ - { - "example": "襲名", - "reading": "シュウメイ", - "meaning": "succession to another's professional name" - }, - { - "example": "襲撃", - "reading": "シュウゲキ", - "meaning": "attack, charge, raid" - }, - { - "example": "奇襲", - "reading": "キシュウ", - "meaning": "surprise attack" - }, - { - "example": "強襲", - "reading": "キョウシュウ", - "meaning": "assault, violent attack" - } - ], - "kunyomiExamples": [ - { - "example": "襲う", - "reading": "おそう", - "meaning": "to attack, to assail, to make an assault, to strike, to hunt down, to succeed (someone in a post, role, etc.), to make a sudden visit" - }, - { - "example": "重ね", - "reading": "かさね", - "meaning": "pile, heap, layers (e.g. of clothing), set (e.g. of boxes), course (e.g. of stones), counter for things that are stacked, piled up (or layered, etc.), layers of clothing worn under one's overcoat, combination of colors created by layering of garments (colours)" - }, - { - "example": "かさねの色目", - "reading": "かさねのいろめ", - "meaning": "combination of colors created by layering of garments (colours)" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "月", - "立", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35186_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08972.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8972.gif", - "uri": "http://jisho.org/search/%E8%A5%B2%23kanji" - }, - { - "query": "汁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1843", - "strokeCount": 5, - "meaning": "soup, juice, broth, sap, gravy, pus", - "kunyomi": [ - "しる", - "-しる", - "つゆ" - ], - "onyomi": [ - "ジュウ" - ], - "onyomiExamples": [ - { - "example": "汁液", - "reading": "ジュウエキ", - "meaning": "juice" - }, - { - "example": "果汁", - "reading": "カジュウ", - "meaning": "fruit juice" - }, - { - "example": "胆汁", - "reading": "タンジュウ", - "meaning": "bile, gall" - } - ], - "kunyomiExamples": [ - { - "example": "汁", - "reading": "しる", - "meaning": "juice, sap, soup, broth, (dipping) sauce" - }, - { - "example": "汁気", - "reading": "しるけ", - "meaning": "juice" - }, - { - "example": "魚汁", - "reading": "いしる", - "meaning": "fish sauce made of salted and fermented sardines, mackerel, or squid, a specialty of the Noto Peninsula of Ishikawa Prefecture" - }, - { - "example": "藍汁", - "reading": "あいしる", - "meaning": "mixture of lime and fermented indigo leaves after the indigo dye has precipitated from the leaves (byproduct in the process of creating indigo dye)" - }, - { - "example": "汁", - "reading": "しる", - "meaning": "juice, sap, soup, broth, (dipping) sauce" - }, - { - "example": "汁だく", - "reading": "つゆだく", - "meaning": "soupy, containing more broth or sauce than usual (of gyudon, etc.)" - }, - { - "example": "お汁", - "reading": "おつゆ", - "meaning": "broth, soup (esp. miso soup)" - }, - { - "example": "蕎麦つゆ", - "reading": "そばつゆ", - "meaning": "soba dipping sauce" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "十", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27713_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c41.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c41.gif", - "uri": "http://jisho.org/search/%E6%B1%81%23kanji" - }, - { - "query": "充", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "949", - "strokeCount": 6, - "meaning": "allot, fill", - "kunyomi": [ - "あ.てる", - "み.たす" - ], - "onyomi": [ - "ジュウ" - ], - "onyomiExamples": [ - { - "example": "充足", - "reading": "ジュウソク", - "meaning": "sufficiency" - }, - { - "example": "充実", - "reading": "ジュウジツ", - "meaning": "fullness, completion, perfection, substantiality, enhancement, improvement, enrichment, upgrading, replenishment, repletion" - }, - { - "example": "リア充", - "reading": "リアジュウ", - "meaning": "person who is satisfied with their real (offline) life, normie" - }, - { - "example": "事業拡充", - "reading": "ジギョウカクジュウ", - "meaning": "business expansion" - } - ], - "kunyomiExamples": [ - { - "example": "充てる", - "reading": "あてる", - "meaning": "to assign, to set aside" - }, - { - "example": "満たす", - "reading": "みたす", - "meaning": "to satisfy (conditions, one's appetite, etc.), to meet (e.g. demands), to fulfill, to gratify, to fill (e.g. a cup), to pack, to supply" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "亠", - "儿", - "厶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20805_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05145.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5145.gif", - "uri": "http://jisho.org/search/%E5%85%85%23kanji" - }, - { - "query": "柔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1187", - "strokeCount": 9, - "meaning": "tender, weakness, gentleness, softness", - "kunyomi": [ - "やわ.らか", - "やわ.らかい", - "やわ", - "やわ.ら" - ], - "onyomi": [ - "ジュウ", - "ニュウ" - ], - "onyomiExamples": [ - { - "example": "柔", - "reading": "ジュウ", - "meaning": "softness, gentleness, weakness" - }, - { - "example": "柔道", - "reading": "ジュウドウ", - "meaning": "judo" - }, - { - "example": "内剛外柔", - "reading": "ナイゴウガイジュウ", - "meaning": "gentle on the outside but tough on the inside, an iron hand in a velvet glove" - }, - { - "example": "外剛内柔", - "reading": "ガイゴウナイジュウ", - "meaning": "being tough on the outside but soft at heart, a faint-hearted person pretending to be brave" - }, - { - "example": "柔和", - "reading": "ニュウワ", - "meaning": "gentle, mild, meek, tender" - }, - { - "example": "柔弱", - "reading": "ニュウジャク", - "meaning": "weakness, effeminacy, enervation" - } - ], - "kunyomiExamples": [ - { - "example": "柔らか", - "reading": "やわらか", - "meaning": "soft, tender, limp, subdued (colour or light) (color), gentle, meek" - }, - { - "example": "柔らかい", - "reading": "やわらかい", - "meaning": "soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)" - }, - { - "example": "柔らかい", - "reading": "やわらかい", - "meaning": "soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)" - }, - { - "example": "柔らかい文章", - "reading": "やわらかいぶんしょう", - "meaning": "informal style" - }, - { - "example": "柔", - "reading": "やわ", - "meaning": "soft, fragile, weak, poorly built, insubstantial" - }, - { - "example": "柔ら", - "reading": "やわら", - "meaning": "judo, jujutsu" - }, - { - "example": "柔ら", - "reading": "やわら", - "meaning": "judo, jujutsu" - }, - { - "example": "柔らか", - "reading": "やわらか", - "meaning": "soft, tender, limp, subdued (colour or light) (color), gentle, meek" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "マ", - "木", - "矛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26580_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067d4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67d4.gif", - "uri": "http://jisho.org/search/%E6%9F%94%23kanji" - }, - { - "query": "渋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1011", - "strokeCount": 11, - "meaning": "astringent, hesitate, reluctant, have diarrhea", - "kunyomi": [ - "しぶ", - "しぶ.い", - "しぶ.る" - ], - "onyomi": [ - "ジュウ", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "渋滞", - "reading": "ジュウタイ", - "meaning": "congestion (e.g. traffic), delay, stagnation" - }, - { - "example": "渋面", - "reading": "ジュウメン", - "meaning": "grimace, sullen face" - }, - { - "example": "難渋", - "reading": "ナンジュウ", - "meaning": "suffering, distress, difficulty, hardship, misery, being bogged down, hurdle" - }, - { - "example": "晦渋", - "reading": "カイジュウ", - "meaning": "ambiguous, obscure, equivocal" - } - ], - "kunyomiExamples": [ - { - "example": "渋", - "reading": "しぶ", - "meaning": "astringent (puckery) juice (of unripe persimmons)" - }, - { - "example": "渋い", - "reading": "しぶい", - "meaning": "astringent, bitter, puckery, rough, harsh, tart, austere, elegant (and unobtrusive), refined, quiet (and simple), sober, sombre, subdued, tasteful (in a quiet way), understated, sour (look), glum, grim, sullen, sulky, stingy, tight-fisted" - }, - { - "example": "柿渋", - "reading": "かきしぶ", - "meaning": "(astringent) persimmon juice" - }, - { - "example": "鉄渋", - "reading": "かなしぶ", - "meaning": "aqueous iron rust" - }, - { - "example": "渋い", - "reading": "しぶい", - "meaning": "astringent, bitter, puckery, rough, harsh, tart, austere, elegant (and unobtrusive), refined, quiet (and simple), sober, sombre, subdued, tasteful (in a quiet way), understated, sour (look), glum, grim, sullen, sulky, stingy, tight-fisted" - }, - { - "example": "渋い顔をする", - "reading": "しぶいかおをする", - "meaning": "to frown (on), to be grim-faced, to look sullen" - }, - { - "example": "渋る", - "reading": "しぶる", - "meaning": "to hesitate, to hold back, to balk, to falter, to be reluctant, to be unwilling, to begrudge, to have loose painful bowel movement, to suffer from tenesmus" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "冫", - "止", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28171_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e0b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e0b.gif", - "uri": "http://jisho.org/search/%E6%B8%8B%23kanji" - }, - { - "query": "銃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1013", - "strokeCount": 14, - "meaning": "gun, arms", - "kunyomi": [ - "つつ" - ], - "onyomi": [ - "ジュウ" - ], - "onyomiExamples": [ - { - "example": "銃", - "reading": "ジュウ", - "meaning": "gun, rifle, small arms" - }, - { - "example": "銃器", - "reading": "ジュウキ", - "meaning": "small arms" - }, - { - "example": "短銃", - "reading": "タンジュウ", - "meaning": "pistol, revolver" - }, - { - "example": "小銃", - "reading": "ショウジュウ", - "meaning": "rifle, small arms" - } - ], - "kunyomiExamples": [ - { - "example": "捧げ銃", - "reading": "ささげつつ", - "meaning": "presenting arms" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "亠", - "儿", - "厶", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37507_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09283.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9283.gif", - "uri": "http://jisho.org/search/%E9%8A%83%23kanji" - }, - { - "query": "獣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1714", - "strokeCount": 16, - "meaning": "animal, beast", - "kunyomi": [ - "けもの", - "けだもの" - ], - "onyomi": [ - "ジュウ" - ], - "onyomiExamples": [ - { - "example": "獣", - "reading": "ケモノ", - "meaning": "beast, brute, animal" - }, - { - "example": "獣医", - "reading": "ジュウイ", - "meaning": "veterinarian, veterinary surgeon, vet" - }, - { - "example": "鳥獣", - "reading": "チョウジュウ", - "meaning": "birds and wild animals, wildlife" - }, - { - "example": "海獣", - "reading": "カイジュウ", - "meaning": "marine mammal" - } - ], - "kunyomiExamples": [ - { - "example": "獣", - "reading": "けもの", - "meaning": "beast, brute, animal" - }, - { - "example": "獣の数字", - "reading": "けもののすうじ", - "meaning": "Number of the Beast (i.e. 666)" - }, - { - "example": "獣", - "reading": "けもの", - "meaning": "beast, brute, animal" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "口", - "尚", - "犬", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29539_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07363.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7363.gif", - "uri": "http://jisho.org/search/%E7%8D%A3%23kanji" - }, - { - "query": "叔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1950", - "strokeCount": 8, - "meaning": "uncle, youth", - "kunyomi": [], - "onyomi": [ - "シュク" - ], - "onyomiExamples": [ - { - "example": "叔母", - "reading": "オバ", - "meaning": "aunt" - }, - { - "example": "伯父", - "reading": "オジ", - "meaning": "uncle" - }, - { - "example": "伯叔", - "reading": "ハクシュク", - "meaning": "brothers, one's father's brothers" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "卜", - "又", - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21460_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053d4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53d4.gif", - "uri": "http://jisho.org/search/%E5%8F%94%23kanji" - }, - { - "query": "淑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1922", - "strokeCount": 11, - "meaning": "graceful, gentle, pure", - "kunyomi": [ - "しと.やか" - ], - "onyomi": [ - "シュク" - ], - "onyomiExamples": [ - { - "example": "淑徳", - "reading": "シュクトク", - "meaning": "womanly virtues" - }, - { - "example": "淑女", - "reading": "シュクジョ", - "meaning": "lady" - }, - { - "example": "貞淑", - "reading": "テイシュク", - "meaning": "chastity, virtue, fidelity, feminine modesty" - }, - { - "example": "私淑", - "reading": "シシュク", - "meaning": "looking up to a person as one's own master or model, being influenced by a person through his works, idolizing" - } - ], - "kunyomiExamples": [ - { - "example": "淑やか", - "reading": "しとやか", - "meaning": "graceful, ladylike, modest, gentle, polite, quiet, well-mannered, refined (behavior)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "卜", - "又", - "小", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28113_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06dd1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6dd1.gif", - "uri": "http://jisho.org/search/%E6%B7%91%23kanji" - }, - { - "query": "粛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1549", - "strokeCount": 11, - "meaning": "solemn, quietly, softly", - "kunyomi": [ - "つつし.む" - ], - "onyomi": [ - "シュク", - "スク" - ], - "onyomiExamples": [ - { - "example": "粛", - "reading": "シュク", - "meaning": "solemn, respectful, reverent, silent, quiet" - }, - { - "example": "粛軍", - "reading": "シュクグン", - "meaning": "army purge" - }, - { - "example": "粛々", - "reading": "シュクシュク", - "meaning": "silent, solemn, quiet" - }, - { - "example": "外出自粛", - "reading": "ガイシュツジシュク", - "meaning": "refraining from going outside, staying indoors" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "聿", - "forms": [ - "⺻" - ], - "meaning": "brush" - }, - "parts": [ - "ノ", - "ヨ", - "米", - "隶", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31899_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c9b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c9b.gif", - "uri": "http://jisho.org/search/%E7%B2%9B%23kanji" - }, - { - "query": "塾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1297", - "strokeCount": 14, - "meaning": "cram school, private school", - "kunyomi": [], - "onyomi": [ - "ジュク" - ], - "onyomiExamples": [ - { - "example": "塾", - "reading": "ジュク", - "meaning": "cram school, private tutoring school, juku" - }, - { - "example": "塾長", - "reading": "ジュクチョウ", - "meaning": "principal of a private school" - }, - { - "example": "義塾", - "reading": "ギジュク", - "meaning": "private school" - }, - { - "example": "入塾", - "reading": "ニュウジュク", - "meaning": "entering a private school" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "丶", - "九", - "亠", - "口", - "土", - "子" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22654_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0587e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/587e.gif", - "uri": "http://jisho.org/search/%E5%A1%BE%23kanji" - }, - { - "query": "俊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1007", - "strokeCount": 9, - "meaning": "sagacious, genius, excellence", - "kunyomi": [], - "onyomi": [ - "シュン" - ], - "onyomiExamples": [ - { - "example": "俊", - "reading": "シュン", - "meaning": "excellence, genius" - }, - { - "example": "俊足", - "reading": "シュンソク", - "meaning": "swiftness of foot, fast runner, swift horse, fleet steed, person of great talent, gifted person" - }, - { - "example": "英俊", - "reading": "エイシュン", - "meaning": "genius, prodigy" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "儿", - "化", - "厶", - "夂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20426_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fca.gif", - "uri": "http://jisho.org/search/%E4%BF%8A%23kanji" - }, - { - "query": "瞬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1265", - "strokeCount": 18, - "meaning": "wink, blink, twinkle", - "kunyomi": [ - "またた.く", - "まじろ.ぐ" - ], - "onyomi": [ - "シュン" - ], - "onyomiExamples": [ - { - "example": "瞬時", - "reading": "シュンジ", - "meaning": "instant, moment, (split) second, (in a) flash, (in the) blink of an eye" - }, - { - "example": "瞬間", - "reading": "シュンカン", - "meaning": "moment, second, instant" - }, - { - "example": "数瞬", - "reading": "スウシュン", - "meaning": "a few moments" - }, - { - "example": "転瞬", - "reading": "テンシュン", - "meaning": "blink of an eye, instant, moment" - } - ], - "kunyomiExamples": [ - { - "example": "瞬く", - "reading": "またたく", - "meaning": "to blink (one's eyes), to wink, to bat, to twinkle (e.g. stars), to flicker, to waver" - }, - { - "example": "瞬く間", - "reading": "またたくま", - "meaning": "brief moment, blink of an eye (time span)" - }, - { - "example": "瞬ぐ", - "reading": "まじろぐ", - "meaning": "to wink, to blink, to twinkle, to flicker" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "冖", - "夕", - "爪", - "牛", - "目", - "舛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30636_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77ac.gif", - "uri": "http://jisho.org/search/%E7%9E%AC%23kanji" - }, - { - "query": "旬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1162", - "strokeCount": 6, - "meaning": "decameron, ten-day period, season (for specific products)", - "kunyomi": [], - "onyomi": [ - "ジュン", - "シュン" - ], - "onyomiExamples": [ - { - "example": "旬", - "reading": "ジュン", - "meaning": "ten-day period (in a month), ten-year period (in one's age), decade" - }, - { - "example": "旬報", - "reading": "ジュンポウ", - "meaning": "ten-day report" - }, - { - "example": "初旬", - "reading": "ショジュン", - "meaning": "first 10 days of the month" - }, - { - "example": "月中旬", - "reading": "ゲツチュウジュン", - "meaning": "middle of the month, mid-month" - }, - { - "example": "旬", - "reading": "シュン", - "meaning": "season (e.g. fruit, fish), in vogue, popular, fresh, up to date" - }, - { - "example": "旬の魚", - "reading": "シュンノサカナ", - "meaning": "fish in season" - }, - { - "example": "最旬", - "reading": "サイシュン", - "meaning": "hottest (e.g. fashion), freshest, in vogue" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "勹", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26092_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065ec.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65ec.gif", - "uri": "http://jisho.org/search/%E6%97%AC%23kanji" - }, - { - "query": "巡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1262", - "strokeCount": 6, - "meaning": "patrol, go around, circumference", - "kunyomi": [ - "めぐ.る", - "めぐ.り" - ], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "巡", - "reading": "ジュン", - "meaning": "counter for tours, cycles, rounds, circuits, etc." - }, - { - "example": "巡回", - "reading": "ジュンカイ", - "meaning": "going around, patrol, round, tour" - }, - { - "example": "一巡", - "reading": "イチジュン", - "meaning": "beat, round" - }, - { - "example": "軽巡", - "reading": "ケイジュン", - "meaning": "light cruiser" - } - ], - "kunyomiExamples": [ - { - "example": "巡る", - "reading": "めぐる", - "meaning": "to go around, to return, to surround, to concern (usu. of disputes)" - }, - { - "example": "巡り", - "reading": "めぐり", - "meaning": "circumference, girth, tour, pilgrimage, circulation (e.g. of blood)" - }, - { - "example": "めぐり合う", - "reading": "めぐりあう", - "meaning": "to meet fortuitously (e.g. running into an old friend), to meet by chance, to happen across" - } - ], - "radical": { - "symbol": "巛", - "forms": [ - "川", - "巜" - ], - "meaning": "river" - }, - "parts": [ - "巛", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24033_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05de1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5de1.gif", - "uri": "http://jisho.org/search/%E5%B7%A1%23kanji" - }, - { - "query": "盾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1476", - "strokeCount": 9, - "meaning": "shield, escutcheon, pretext", - "kunyomi": [ - "たて" - ], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "相矛盾", - "reading": "アイムジュン", - "meaning": "mutually contradictory" - }, - { - "example": "形容矛盾", - "reading": "ケイヨウムジュン", - "meaning": "contradictio in adjecto, contradiction between an adjective and the noun it modifies (wooden iron, hot ice, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "盾", - "reading": "たて", - "meaning": "shield, buckler, escutcheon, pretext" - }, - { - "example": "楯突く", - "reading": "たてつく", - "meaning": "to defy, to disobey, to rebel against, to oppose, to resist" - }, - { - "example": "人間の盾", - "reading": "にんげんのたて", - "meaning": "human shield" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "十", - "厂", - "斤", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30462_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076fe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76fe.gif", - "uri": "http://jisho.org/search/%E7%9B%BE%23kanji" - }, - { - "query": "准", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1441", - "strokeCount": 10, - "meaning": "quasi-, semi-, associate", - "kunyomi": [], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "準", - "reading": "ジュン", - "meaning": "semi-, quasi-, associate" - }, - { - "example": "準じる", - "reading": "ジュンジル", - "meaning": "to follow, to conform, to apply to" - }, - { - "example": "批准", - "reading": "ヒジュン", - "meaning": "ratification" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "冫", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20934_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051c6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51c6.gif", - "uri": "http://jisho.org/search/%E5%87%86%23kanji" - }, - { - "query": "殉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2080", - "strokeCount": 10, - "meaning": "martyrdom, follow by resigning", - "kunyomi": [], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "殉職", - "reading": "ジュンショク", - "meaning": "dying at one's post, being killed in the line of duty" - }, - { - "example": "殉教", - "reading": "ジュンキョウ", - "meaning": "martyrdom" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "歹", - "forms": [ - "歺" - ], - "meaning": "death, decay" - }, - "parts": [ - "勹", - "日", - "歹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27529_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b89.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b89.gif", - "uri": "http://jisho.org/search/%E6%AE%89%23kanji" - }, - { - "query": "循", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1699", - "strokeCount": 12, - "meaning": "sequential, follow", - "kunyomi": [], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "循環器", - "reading": "ジュンカンキ", - "meaning": "circulatory organ" - }, - { - "example": "循環", - "reading": "ジュンカン", - "meaning": "circulation, rotation, cycle, loop" - }, - { - "example": "因循", - "reading": "インジュン", - "meaning": "indecision, vacillation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "十", - "厂", - "彳", - "斤", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24490_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05faa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5faa.gif", - "uri": "http://jisho.org/search/%E5%BE%AA%23kanji" - }, - { - "query": "潤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1644", - "strokeCount": 15, - "meaning": "wet, be watered, profit by, receive benefits, favor, charm, steep", - "kunyomi": [ - "うるお.う", - "うるお.す", - "うる.む" - ], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "潤滑油", - "reading": "ジュンカツユ", - "meaning": "lubricating oil, lubricant, lube" - }, - { - "example": "潤色", - "reading": "ジュンショク", - "meaning": "rhetorical flourishes" - }, - { - "example": "豊潤", - "reading": "ホウジュン", - "meaning": "abundant, rich, ripe, mellow" - }, - { - "example": "芳醇", - "reading": "ホウジュン", - "meaning": "mellow (flavor or fragrance, esp. alcohol), rich, full-bodied, superior" - } - ], - "kunyomiExamples": [ - { - "example": "潤う", - "reading": "うるおう", - "meaning": "to be moist, to be damp, to get wet, to be watered, to profit by, to receive benefits, to receive favors (favours), to become rich, to become at ease financially" - }, - { - "example": "潤す", - "reading": "うるおす", - "meaning": "to moisten, to wet, to profit, to enrich, to benefit" - }, - { - "example": "潤む", - "reading": "うるむ", - "meaning": "to be wet, to be moist, to get dim, to become blurred, to get cloudy, to get muddy, to be bleared, to become tear-choked" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "王", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28516_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f64.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f64.gif", - "uri": "http://jisho.org/search/%E6%BD%A4%23kanji" - }, - { - "query": "遵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 15, - "meaning": "abide by, follow, obey, learn", - "kunyomi": [], - "onyomi": [ - "ジュン" - ], - "onyomiExamples": [ - { - "example": "遵守", - "reading": "ジュンシュ", - "meaning": "observance (of laws, rules, etc.), adherence, obeying, following, abiding by, compliance" - }, - { - "example": "遵法", - "reading": "ジュンポウ", - "meaning": "law observance, obeying the law" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "寸", - "并", - "込", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36981_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09075.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9075.gif", - "uri": "http://jisho.org/search/%E9%81%B5%23kanji" - }, - { - "query": "庶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1558", - "strokeCount": 11, - "meaning": "commoner, all, bastard", - "kunyomi": [], - "onyomi": [ - "ショ" - ], - "onyomiExamples": [ - { - "example": "庶民", - "reading": "ショミン", - "meaning": "common people, ordinary people, masses" - }, - { - "example": "庶民的", - "reading": "ショミンテキ", - "meaning": "popular, folksy, plebeian, ordinary, unpretentious" - }, - { - "example": "衆庶", - "reading": "シュウショ", - "meaning": "the masses, common people" - }, - { - "example": "士庶", - "reading": "シショ", - "meaning": "samurai and commoners, normal people (as opposed to people of a high social standing)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "广", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24246_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05eb6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5eb6.gif", - "uri": "http://jisho.org/search/%E5%BA%B6%23kanji" - }, - { - "query": "緒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "952", - "strokeCount": 14, - "meaning": "thong, beginning, inception, end, cord, strap, mental or emotional state", - "kunyomi": [ - "お", - "いとぐち" - ], - "onyomi": [ - "ショ", - "チョ" - ], - "onyomiExamples": [ - { - "example": "緒", - "reading": "ショ", - "meaning": "beginning, inception" - }, - { - "example": "緒戦", - "reading": "ショセン", - "meaning": "beginning of hostilities, beginning of competition" - }, - { - "example": "端緒", - "reading": "タンショ", - "meaning": "start, beginning, first step, clue" - }, - { - "example": "由緒", - "reading": "ユイショ", - "meaning": "history, pedigree, lineage" - }, - { - "example": "緒", - "reading": "ショ", - "meaning": "beginning, inception" - }, - { - "example": "緒戦", - "reading": "ショセン", - "meaning": "beginning of hostilities, beginning of competition" - }, - { - "example": "端緒", - "reading": "タンショ", - "meaning": "start, beginning, first step, clue" - }, - { - "example": "下町情緒", - "reading": "シタマチジョウチョ", - "meaning": "the friendly atmosphere of the traditional commercial and working-class neighborhoods" - } - ], - "kunyomiExamples": [ - { - "example": "緒", - "reading": "お", - "meaning": "cord, strap, thong, string (of a musical instrument, bow, etc.)" - }, - { - "example": "緒締め", - "reading": "おじめ", - "meaning": "string-fastener, drawstring on pouch or purse (handbag)" - }, - { - "example": "下緒", - "reading": "さげお", - "meaning": "cord for attaching a sword scabbard tightly to the obi, sword strap, sword knot" - }, - { - "example": "筈緒", - "reading": "はずお", - "meaning": "hemp rope fastened from the bow of a Japanese ship to the tip of the mast" - }, - { - "example": "糸口", - "reading": "いとぐち", - "meaning": "beginning, start, first step, clue, lead, hint, thread end" - }, - { - "example": "糸口を開く", - "reading": "いとぐちをひらく", - "meaning": "to find a clue, to make a beginning" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "日", - "糸", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32210_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dd2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dd2.gif", - "uri": "http://jisho.org/search/%E7%B7%92%23kanji" - }, - { - "query": "如", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1704", - "strokeCount": 6, - "meaning": "likeness, like, such as, as if, better, best, equal", - "kunyomi": [ - "ごと.し" - ], - "onyomi": [ - "ジョ", - "ニョ" - ], - "onyomiExamples": [ - { - "example": "如月", - "reading": "キサラギ", - "meaning": "second month of the lunar calendar" - }, - { - "example": "如雨露", - "reading": "ジョウロ", - "meaning": "watering can, watering pot, sprinkling can" - }, - { - "example": "躍如", - "reading": "ヤクジョ", - "meaning": "vivid, lifelike, graphic" - }, - { - "example": "鞠躬如", - "reading": "キッキュウジョ", - "meaning": "deferential, humble, reverent, respectful" - }, - { - "example": "如", - "reading": "ニョ", - "meaning": "tathata (the ultimate nature of all things)" - }, - { - "example": "如実", - "reading": "ニョジツ", - "meaning": "reality, actuality, actual conditions, true situation, faithful representation, vivid depiction, ultimate reality, absolute truth" - }, - { - "example": "一如", - "reading": "イチニョ", - "meaning": "oneness" - }, - { - "example": "形影一如", - "reading": "ケイエイイチニョ", - "meaning": "being inseparable as a form and its shadow, a person's deed mirrors the good or evil of his mind, husband and wife being never apart" - } - ], - "kunyomiExamples": [ - { - "example": "如し", - "reading": "ごとし", - "meaning": "like, as if, the same as" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "口", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22914_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05982.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5982.gif", - "uri": "http://jisho.org/search/%E5%A6%82%23kanji" - }, - { - "query": "叙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1954", - "strokeCount": 9, - "meaning": "confer, relate, narrate, describe", - "kunyomi": [ - "つい.ず", - "ついで" - ], - "onyomi": [ - "ジョ" - ], - "onyomiExamples": [ - { - "example": "叙情", - "reading": "ジョジョウ", - "meaning": "lyricism, description of one's feelings" - }, - { - "example": "叙勲", - "reading": "ジョクン", - "meaning": "conferring of decorations" - }, - { - "example": "倒叙", - "reading": "トウジョ", - "meaning": "reverse chronological order" - }, - { - "example": "昇叙", - "reading": "ショウジョ", - "meaning": "promotion, advancement" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "一", - "个", - "又", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21465_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053d9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53d9.gif", - "uri": "http://jisho.org/search/%E5%8F%99%23kanji" - }, - { - "query": "徐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1470", - "strokeCount": 10, - "meaning": "gradually, slowly, deliberately, gently", - "kunyomi": [ - "おもむ.ろに" - ], - "onyomi": [ - "ジョ" - ], - "onyomiExamples": [ - { - "example": "徐々に", - "reading": "ジョジョニ", - "meaning": "gradually, steadily, slowly, little by little, step by step, by degrees" - }, - { - "example": "徐々", - "reading": "ジョジョ", - "meaning": "slow, gradual, steady, calm, composed, relaxed" - }, - { - "example": "緩徐", - "reading": "カンジョ", - "meaning": "gentle and quiet" - } - ], - "kunyomiExamples": [ - { - "example": "徐ろに", - "reading": "おもむろに", - "meaning": "suddenly, abruptly, deliberately, slowly, gently" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "一", - "个", - "彳", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24464_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f90.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f90.gif", - "uri": "http://jisho.org/search/%E5%BE%90%23kanji" - }, - { - "query": "升", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2077", - "strokeCount": 4, - "meaning": "measuring box, 1.8 liter", - "kunyomi": [ - "ます" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "升", - "reading": "ショウ", - "meaning": "shō, traditional unit of volume, approx. 1.8 litres" - }, - { - "example": "升遷", - "reading": "ショウセン", - "meaning": "rising up" - }, - { - "example": "一升", - "reading": "イッショウ", - "meaning": "unit of old Japanese liquid measurement, 1800 cc" - } - ], - "kunyomiExamples": [ - { - "example": "升", - "reading": "ます", - "meaning": "measuring container, measure, box (seating at a theatre, etc.), square on a grid, cell of a grid, square bearing block (at the top of a pillar)" - }, - { - "example": "升売り", - "reading": "ますうり", - "meaning": "selling something by the boxful (in a wooden masu box)" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "ノ", - "十", - "廾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21319_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05347.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5347.gif", - "uri": "http://jisho.org/search/%E5%8D%87%23kanji" - }, - { - "query": "召", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1540", - "strokeCount": 5, - "meaning": "seduce, call, send for, wear, put on, ride in, buy, eat, drink, catch (cold)", - "kunyomi": [ - "め.す" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "招請", - "reading": "ショウセイ", - "meaning": "invitation" - }, - { - "example": "召集", - "reading": "ショウシュウ", - "meaning": "convening, calling together (e.g. parliament), call-up (for military service)" - } - ], - "kunyomiExamples": [ - { - "example": "召す", - "reading": "めす", - "meaning": "to call, to invite, to send for, to summon, to eat, to drink, to put on, to wear, to ride, to catch (a cold), to take (a bath), to tickle (one's fancy), to put on (years), to commit (seppuku), to do, used to show respect" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "刀", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21484_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053ec.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53ec.gif", - "uri": "http://jisho.org/search/%E5%8F%AC%23kanji" - }, - { - "query": "匠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1718", - "strokeCount": 6, - "meaning": "artisan, workman, carpenter", - "kunyomi": [ - "たくみ" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "匠", - "reading": "タクミ", - "meaning": "workman, artisan, mechanic, carpenter, craft, skill, means, idea" - }, - { - "example": "匠気", - "reading": "ショウキ", - "meaning": "affectation, desire to be impressive" - }, - { - "example": "師匠", - "reading": "シショウ", - "meaning": "master, teacher, stable master" - }, - { - "example": "意匠", - "reading": "イショウ", - "meaning": "design" - } - ], - "kunyomiExamples": [ - { - "example": "匠", - "reading": "たくみ", - "meaning": "workman, artisan, mechanic, carpenter, craft, skill, means, idea" - }, - { - "example": "飛騨の匠", - "reading": "ひだのたくみ", - "meaning": "historical system whereby the Hida region provided the central government 10 carpenters per village in place of taxes" - } - ], - "radical": { - "symbol": "匚", - "meaning": "box" - }, - "parts": [ - "匚", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21280_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05320.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5320.gif", - "uri": "http://jisho.org/search/%E5%8C%A0%23kanji" - }, - { - "query": "床", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1175", - "strokeCount": 7, - "meaning": "bed, counter for beds, floor, padding, tatami", - "kunyomi": [ - "とこ", - "ゆか" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "床", - "reading": "ショウ", - "meaning": "counter for beds" - }, - { - "example": "床几", - "reading": "ショウギ", - "meaning": "camp stool, folding stool" - }, - { - "example": "臨床", - "reading": "リンショウ", - "meaning": "clinical (e.g. pathology, physiology)" - }, - { - "example": "温床", - "reading": "オンショウ", - "meaning": "hotbed, breeding ground" - } - ], - "kunyomiExamples": [ - { - "example": "床", - "reading": "とこ", - "meaning": "bed, bedding, sickbed, alcove, riverbed, seedbed, straw \"core\" of a tatami mat, floor" - }, - { - "example": "床の間", - "reading": "とこのま", - "meaning": "tokonoma (alcove where art or flowers are displayed)" - }, - { - "example": "鋏", - "reading": "やっとこ", - "meaning": "pincers, nippers, pliers" - }, - { - "example": "鉄床", - "reading": "かなとこ", - "meaning": "anvil" - }, - { - "example": "床", - "reading": "ゆか", - "meaning": "floor, stage (for the narrator and the shamisen player), dining platform built across a river" - }, - { - "example": "床下", - "reading": "ゆかした", - "meaning": "under the floor" - }, - { - "example": "河床", - "reading": "かしょう", - "meaning": "riverbed, raised platform on the bank of a river for enjoying the cool in summer" - }, - { - "example": "納涼床", - "reading": "のうりょうゆか", - "meaning": "raised platform on the bank of a river for enjoying the summer cool" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "广", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24202_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e8a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e8a.gif", - "uri": "http://jisho.org/search/%E5%BA%8A%23kanji" - }, - { - "query": "抄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2328", - "strokeCount": 7, - "meaning": "extract, selection, summary, copy, spread thin", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "抄", - "reading": "ショウ", - "meaning": "excerpt, extract, annotation, shō (unit of volume, approx. 1.8 ml), banknote, paper money" - }, - { - "example": "抄本", - "reading": "ショウホン", - "meaning": "excerpt, abridgment, abridgement, book of selections" - }, - { - "example": "和名抄", - "reading": "ワミョウショウ", - "meaning": "Wamyōruijushō (famous Heian-period Japanese dictionary)" - }, - { - "example": "史記抄", - "reading": "シキショウ", - "meaning": "commentary on Shiki" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "小", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25220_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06284.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6284.gif", - "uri": "http://jisho.org/search/%E6%8A%84%23kanji" - }, - { - "query": "肖", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1889", - "strokeCount": 7, - "meaning": "resemblance", - "kunyomi": [ - "あやか.る" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "肖像", - "reading": "ショウゾウ", - "meaning": "portrait, likeness, picture" - }, - { - "example": "肖像画", - "reading": "ショウゾウガ", - "meaning": "portrait" - }, - { - "example": "不肖", - "reading": "フショウ", - "meaning": "unworthy (of one's father, teacher, etc.), I, me, incompetent, unskilled, inexperienced, foolish, unfortunate, unlucky" - } - ], - "kunyomiExamples": [ - { - "example": "肖る", - "reading": "あやかる", - "meaning": "to share (someone's) good luck, to follow (someone's) example, to enjoy the same benefits (of someone or something), to be named after" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "尚", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32918_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08096.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8096.gif", - "uri": "http://jisho.org/search/%E8%82%96%23kanji" - }, - { - "query": "尚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1531", - "strokeCount": 8, - "meaning": "esteem, furthermore, still, yet", - "kunyomi": [ - "なお" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "尚古", - "reading": "ショウコ", - "meaning": "respect for olden days" - }, - { - "example": "尚古主義", - "reading": "ショウコシュギ", - "meaning": "classicism, primitivism" - }, - { - "example": "好尚", - "reading": "コウショウ", - "meaning": "taste, fancy, fashion" - }, - { - "example": "早尚", - "reading": "ソウショウ", - "meaning": "prematurity" - } - ], - "kunyomiExamples": [ - { - "example": "尚", - "reading": "なお", - "meaning": "still, yet, more, still more, greater, further, as ..., like ..., furthermore, in addition, moreover, note that ..." - }, - { - "example": "尚更", - "reading": "なおさら", - "meaning": "still more, even more, all the more, still less, even less" - }, - { - "example": "尚々", - "reading": "なおなお", - "meaning": "all the more" - }, - { - "example": "今なお", - "reading": "いまなお", - "meaning": "still, even now" - } - ], - "radical": { - "symbol": "小", - "meaning": "small, insignificant" - }, - "parts": [ - "冂", - "口", - "尚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23578_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c1a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c1a.gif", - "uri": "http://jisho.org/search/%E5%B0%9A%23kanji" - }, - { - "query": "昇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "826", - "strokeCount": 8, - "meaning": "rise up", - "kunyomi": [ - "のぼ.る" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "昇給", - "reading": "ショウキュウ", - "meaning": "salary raise" - }, - { - "example": "昇格", - "reading": "ショウカク", - "meaning": "raising of status, promotion, advance" - }, - { - "example": "定昇", - "reading": "テイショウ", - "meaning": "regular (annual) pay raise" - }, - { - "example": "温度上昇", - "reading": "オンドジョウショウ", - "meaning": "temperature increase, rise in temperature" - } - ], - "kunyomiExamples": [ - { - "example": "上る", - "reading": "のぼる", - "meaning": "to ascend, to go up, to climb, to ascend (as a natural process, e.g. the Sun), to rise, to go to (the capital), to be promoted, to add up to, to advance (in price), to swim up (a river), to sail up, to come up (on the agenda)" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ノ", - "十", - "廾", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26119_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06607.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6607.gif", - "uri": "http://jisho.org/search/%E6%98%87%23kanji" - }, - { - "query": "沼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1467", - "strokeCount": 8, - "meaning": "marsh, lake, bog, swamp, pond", - "kunyomi": [ - "ぬま" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "沼地", - "reading": "ヌマチ", - "meaning": "marshland, wetland, swampland" - }, - { - "example": "沼沢", - "reading": "ショウタク", - "meaning": "marsh, swamp, bog" - }, - { - "example": "湖沼", - "reading": "コショウ", - "meaning": "lake, marsh, wetland, inland waters" - }, - { - "example": "池沼", - "reading": "チショウ", - "meaning": "ponds and swamps, mentally-handicapped person" - } - ], - "kunyomiExamples": [ - { - "example": "沼", - "reading": "ぬま", - "meaning": "marsh, swamp, wetland, bog, pond, being hooked (on a video game, TV show, etc.)" - }, - { - "example": "沼田", - "reading": "ぬまた", - "meaning": "marshy rice field or paddy" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "刀", - "口", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27836_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cbc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cbc.gif", - "uri": "http://jisho.org/search/%E6%B2%BC%23kanji" - }, - { - "query": "宵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2262", - "strokeCount": 10, - "meaning": "wee hours, evening, early night", - "kunyomi": [ - "よい" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "終宵", - "reading": "シュウショウ", - "meaning": "all-night long" - }, - { - "example": "一宵", - "reading": "イッショウ", - "meaning": "one evening, one night" - } - ], - "kunyomiExamples": [ - { - "example": "宵", - "reading": "よい", - "meaning": "evening, early night hours" - }, - { - "example": "宵越し", - "reading": "よいごし", - "meaning": "(kept) overnight" - }, - { - "example": "待宵", - "reading": "まつよい", - "meaning": "night where one waits for someone who is supposed to come, night of the 14th day of the eight month of the lunar calendar" - }, - { - "example": "春の宵", - "reading": "はるのよい", - "meaning": "spring evening" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "尚", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23477_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bb5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bb5.gif", - "uri": "http://jisho.org/search/%E5%AE%B5%23kanji" - }, - { - "query": "症", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1111", - "strokeCount": 10, - "meaning": "symptoms, illness", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "症", - "reading": "ショウ", - "meaning": "illness" - }, - { - "example": "症候群", - "reading": "ショウコウグン", - "meaning": "syndrome" - }, - { - "example": "自閉症", - "reading": "ジヘイショウ", - "meaning": "autism" - }, - { - "example": "後遺症", - "reading": "コウイショウ", - "meaning": "prognostic symptoms, after-effect" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "一", - "止", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75c7.gif", - "uri": "http://jisho.org/search/%E7%97%87%23kanji" - }, - { - "query": "祥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1273", - "strokeCount": 10, - "meaning": "auspicious, happiness, blessedness, good omen, good fortune", - "kunyomi": [ - "さいわ.い", - "きざ.し", - "よ.い", - "つまび.らか" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "祥", - "reading": "ショウ", - "meaning": "omen (usu. good), (auspicious) sign, first two anniversaries of a person's death" - }, - { - "example": "祥雲", - "reading": "ショウウン", - "meaning": "auspicious cloud" - }, - { - "example": "瑞祥", - "reading": "ズイショウ", - "meaning": "auspicious sign, good omen" - }, - { - "example": "清祥", - "reading": "セイショウ", - "meaning": "happiness and health" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "并", - "王", - "礼", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31077_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07965.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7965.gif", - "uri": "http://jisho.org/search/%E7%A5%A5%23kanji" - }, - { - "query": "称", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "985", - "strokeCount": 10, - "meaning": "appellation, praise, admire, name, title, fame", - "kunyomi": [ - "たた.える", - "とな.える", - "あ.げる", - "かな.う", - "はか.り", - "はか.る", - "ほめ.る" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "称", - "reading": "ショウ", - "meaning": "name, title, designation, fame, reputation" - }, - { - "example": "称号", - "reading": "ショウゴウ", - "meaning": "title, name, degree" - }, - { - "example": "通称", - "reading": "ツウショウ", - "meaning": "popular name, common name, nickname, alias" - }, - { - "example": "公称", - "reading": "コウショウ", - "meaning": "public name, announcing publicly, nominal" - } - ], - "kunyomiExamples": [ - { - "example": "称える", - "reading": "たたえる", - "meaning": "to extol, to give praise" - }, - { - "example": "称える", - "reading": "となえる", - "meaning": "to assume the name of" - }, - { - "example": "褒める", - "reading": "ほめる", - "meaning": "to praise, to commend, to compliment, to speak well of, to speak highly of" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ノ", - "一", - "乞", - "小", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31216_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079f0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79f0.gif", - "uri": "http://jisho.org/search/%E7%A7%B0%23kanji" - }, - { - "query": "渉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "499", - "strokeCount": 11, - "meaning": "ford, go cross, transit, ferry, import, involve", - "kunyomi": [ - "わた.る" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "渉外", - "reading": "ショウガイ", - "meaning": "public relations, client liaison, client relations" - }, - { - "example": "渉外係", - "reading": "ショウガイガカリ", - "meaning": "liaison officer, public relations man" - }, - { - "example": "団体交渉", - "reading": "ダンタイコウショウ", - "meaning": "collective bargaining" - }, - { - "example": "婚外交渉", - "reading": "コンガイコウショウ", - "meaning": "extramarital sex" - } - ], - "kunyomiExamples": [ - { - "example": "渡る", - "reading": "わたる", - "meaning": "to cross over, to go across, to extend, to cover, to range, to span" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "小", - "止", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28169_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e09.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e09.gif", - "uri": "http://jisho.org/search/%E6%B8%89%23kanji" - }, - { - "query": "紹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "963", - "strokeCount": 11, - "meaning": "introduce, inherit, help", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "紹介", - "reading": "ショウカイ", - "meaning": "introduction, presentation, referral, listing" - }, - { - "example": "紹介者", - "reading": "ショウカイシャ", - "meaning": "person who introduces someone, introducer" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "刀", - "口", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32057_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d39.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d39.gif", - "uri": "http://jisho.org/search/%E7%B4%B9%23kanji" - }, - { - "query": "訟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1061", - "strokeCount": 11, - "meaning": "sue, accuse", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "訟務", - "reading": "ショウム", - "meaning": "litigation" - }, - { - "example": "訟務部", - "reading": "ショウムブ", - "meaning": "Litigation Department (of the Ministry of Justice)" - }, - { - "example": "行政訴訟", - "reading": "ギョウセイソショウ", - "meaning": "administrative litigation (action)" - }, - { - "example": "争訟", - "reading": "ソウショウ", - "meaning": "dispute by legal action, contentious" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ハ", - "厶", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35359_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a1f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a1f.gif", - "uri": "http://jisho.org/search/%E8%A8%9F%23kanji" - }, - { - "query": "掌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1757", - "strokeCount": 12, - "meaning": "manipulate, rule, administer, conduct, palm of hand", - "kunyomi": [ - "てのひら", - "たなごころ" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "手のひら", - "reading": "テノヒラ", - "meaning": "palm (of one's hand)" - }, - { - "example": "掌握", - "reading": "ショウアク", - "meaning": "grasping, seizing, holding, commanding, having control over" - }, - { - "example": "合掌", - "reading": "ガッショウ", - "meaning": "pressing one's hands together in prayer, triangular frame of a thatched roof, yours sincerely, yours truly, sincerely yours" - }, - { - "example": "鞅掌", - "reading": "オウショウ", - "meaning": "being busy with" - } - ], - "kunyomiExamples": [ - { - "example": "手のひら", - "reading": "てのひら", - "meaning": "palm (of one's hand)" - }, - { - "example": "手のひらを返す", - "reading": "てのひらをかえす", - "meaning": "to flip-flop, to do an about-face, to flip over one's hand, to do something easy" - }, - { - "example": "手のひら", - "reading": "てのひら", - "meaning": "palm (of one's hand)" - }, - { - "example": "掌の玉", - "reading": "たなごころのたま", - "meaning": "apple of one's eye" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "冖", - "口", - "尚", - "手" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25484_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0638c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/638c.gif", - "uri": "http://jisho.org/search/%E6%8E%8C%23kanji" - }, - { - "query": "晶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1613", - "strokeCount": 12, - "meaning": "sparkle, clear, crystal", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "晶化", - "reading": "ショウカ", - "meaning": "crystallization, crystallisation" - }, - { - "example": "晶光", - "reading": "ショウコウ", - "meaning": "brilliant light" - }, - { - "example": "水晶", - "reading": "スイショウ", - "meaning": "(rock) crystal, high purity quartz" - }, - { - "example": "紫水晶", - "reading": "ムラサキズイショウ", - "meaning": "amethyst" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26230_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06676.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6676.gif", - "uri": "http://jisho.org/search/%E6%99%B6%23kanji" - }, - { - "query": "焦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "973", - "strokeCount": 12, - "meaning": "char, hurry, impatient, irritate, burn, scorch, singe", - "kunyomi": [ - "こ.げる", - "こ.がす", - "こ.がれる", - "あせ.る", - "じ.れる", - "じ.らす" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "焦点", - "reading": "ショウテン", - "meaning": "focus (e.g. photographic), focal point" - }, - { - "example": "焦燥", - "reading": "ショウソウ", - "meaning": "impatience, uneasiness, irritation, fretfulness" - }, - { - "example": "合焦", - "reading": "ガッショウ", - "meaning": "being in focus (in photography), bringing into focus" - }, - { - "example": "中焦", - "reading": "チュウショウ", - "meaning": "middle jiao (in traditional Chinese medicine), middle burner" - } - ], - "kunyomiExamples": [ - { - "example": "焦げる", - "reading": "こげる", - "meaning": "to burn, to scorch, to char, to singe" - }, - { - "example": "焦がす", - "reading": "こがす", - "meaning": "to burn, to scorch, to singe, to char" - }, - { - "example": "焦がれる", - "reading": "こがれる", - "meaning": "to yearn for, to be in love with" - }, - { - "example": "焦る", - "reading": "あせる", - "meaning": "to be in a hurry, to be impatient, to be anxious (to do), to fret, to get a fright, to panic, to get flustered, to be startled" - }, - { - "example": "焦れる", - "reading": "じれる", - "meaning": "to get impatient, to become irritated, to fret, to chafe" - }, - { - "example": "焦らす", - "reading": "じらす", - "meaning": "to tease, to irritate, to tantalize, to keep (someone) in suspense" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "杰", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28966_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07126.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7126.gif", - "uri": "http://jisho.org/search/%E7%84%A6%23kanji" - }, - { - "query": "硝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2154", - "strokeCount": 12, - "meaning": "nitrate, saltpeter", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "硝子", - "reading": "ガラス", - "meaning": "glass, pane" - }, - { - "example": "硝酸", - "reading": "ショウサン", - "meaning": "nitric acid" - }, - { - "example": "芒硝", - "reading": "ボウショウ", - "meaning": "sal mirabilis, mirabilite, sodium sulfate decahydrate, sodium sulphate decahydrate" - }, - { - "example": "石灰芒硝", - "reading": "セッカイボウショウ", - "meaning": "glauberite" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "口", - "尚", - "月", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30813_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0785d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/785d.gif", - "uri": "http://jisho.org/search/%E7%A1%9D%23kanji" - }, - { - "query": "粧", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1545", - "strokeCount": 12, - "meaning": "cosmetics, adorn (one's person)", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "戦化粧", - "reading": "イクサゲショウ", - "meaning": "warpaint" - }, - { - "example": "夕化粧", - "reading": "ユウゲショウ", - "meaning": "evening makeup" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "土", - "广", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31911_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ca7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ca7.gif", - "uri": "http://jisho.org/search/%E7%B2%A7%23kanji" - }, - { - "query": "詔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2239", - "strokeCount": 12, - "meaning": "imperial edict", - "kunyomi": [ - "みことのり" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "詔", - "reading": "ミコトノリ", - "meaning": "imperial decree, imperial edict" - }, - { - "example": "詔書", - "reading": "ショウショ", - "meaning": "imperial edict, decree" - }, - { - "example": "大詔", - "reading": "タイショウ", - "meaning": "imperial rescript" - } - ], - "kunyomiExamples": [ - { - "example": "詔", - "reading": "みことのり", - "meaning": "imperial decree, imperial edict" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "刀", - "口", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35412_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a54.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a54.gif", - "uri": "http://jisho.org/search/%E8%A9%94%23kanji" - }, - { - "query": "奨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1445", - "strokeCount": 13, - "meaning": "exhort, urge, encourage", - "kunyomi": [ - "すす.める" - ], - "onyomi": [ - "ショウ", - "ソウ" - ], - "onyomiExamples": [ - { - "example": "奨学", - "reading": "ショウガク", - "meaning": "encouragement to study" - }, - { - "example": "奨学金", - "reading": "ショウガクキン", - "meaning": "scholarship, stipend, bursary, student loan" - }, - { - "example": "勧奨", - "reading": "カンショウ", - "meaning": "encouragement, stimulation" - }, - { - "example": "推奨", - "reading": "スイショウ", - "meaning": "recommendation, endorsement" - } - ], - "kunyomiExamples": [ - { - "example": "勧める", - "reading": "すすめる", - "meaning": "to recommend (someone to do), to advise, to encourage, to urge, to recommend (a book, someone for a position, etc.), to suggest, to offer (a drink, cigarette, seat, etc.)" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "大", - "寸", - "爪", - "爿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22888_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05968.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5968.gif", - "uri": "http://jisho.org/search/%E5%A5%A8%23kanji" - }, - { - "query": "詳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1178", - "strokeCount": 13, - "meaning": "detailed, full, minute, accurate, well-informed", - "kunyomi": [ - "くわ.しい", - "つまび.らか" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "詳報", - "reading": "ショウホウ", - "meaning": "detailed report, full report, details, particulars" - }, - { - "example": "詳細", - "reading": "ショウサイ", - "meaning": "details, particulars, specifics, detailed, specific, minute, close-up view (of a digitally displayed map), zoomed-in view" - }, - { - "example": "不詳", - "reading": "フショウ", - "meaning": "unknown, unidentified, unspecified" - }, - { - "example": "姓名不詳", - "reading": "セイメイフショウ", - "meaning": "unidentified, name unknown" - } - ], - "kunyomiExamples": [ - { - "example": "詳しい", - "reading": "くわしい", - "meaning": "detailed, full, accurate, knowing very well, well-acquainted, well-informed" - }, - { - "example": "詳しい話", - "reading": "くわしいはなし", - "meaning": "full story, detailed account" - }, - { - "example": "詳らか", - "reading": "つまびらか", - "meaning": "detailed, clear" - }, - { - "example": "詳らかでない", - "reading": "つまびらかでない", - "meaning": "unknown" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "并", - "王", - "羊", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35443_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a73.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a73.gif", - "uri": "http://jisho.org/search/%E8%A9%B3%23kanji" - }, - { - "query": "彰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1310", - "strokeCount": 14, - "meaning": "patent, clear", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "彰義隊", - "reading": "ショウギタイ", - "meaning": "Shogitai (group of former Tokugawa retainers opposed to the Meiji government who fought in the battle of Ueno)" - }, - { - "example": "彰徳", - "reading": "ショウトク", - "meaning": "public praise, making another's virtues well-known" - }, - { - "example": "顕彰", - "reading": "ケンショウ", - "meaning": "honouring (publicly), honoring, making someone's good deeds or achievements well-known" - }, - { - "example": "表彰", - "reading": "ヒョウショウ", - "meaning": "public acknowledgment, public acknowledgement, public recognition, commendation, awarding" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彡", - "meaning": "bristle, beard" - }, - "parts": [ - "十", - "彡", - "日", - "立", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24432_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f70.gif", - "uri": "http://jisho.org/search/%E5%BD%B0%23kanji" - }, - { - "query": "憧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2259", - "strokeCount": 15, - "meaning": "yearn after, long for, aspire to, admire, adore", - "kunyomi": [ - "あこが.れる" - ], - "onyomi": [ - "ショウ", - "トウ", - "ドウ" - ], - "onyomiExamples": [ - { - "example": "憧憬", - "reading": "ドウケイ", - "meaning": "longing, yearning, aspiration, adoration" - }, - { - "example": "憧憬", - "reading": "ドウケイ", - "meaning": "longing, yearning, aspiration, adoration" - } - ], - "kunyomiExamples": [ - { - "example": "憧れる", - "reading": "あこがれる", - "meaning": "to long for, to yearn after, to admire, to be attracted by" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "忙", - "立", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24999_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061a7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61a7.gif", - "uri": "http://jisho.org/search/%E6%86%A7%23kanji" - }, - { - "query": "衝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "972", - "strokeCount": 15, - "meaning": "collide, brunt, highway, opposition (astronomy), thrust, pierce, stab, prick", - "kunyomi": [ - "つ.く" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "衝", - "reading": "ショウ", - "meaning": "important point (e.g. on a route), important role (responsibility, etc.), opposition" - }, - { - "example": "衝撃", - "reading": "ショウゲキ", - "meaning": "shock, impact, crash" - }, - { - "example": "要衝", - "reading": "ヨウショウ", - "meaning": "important point, strategic position, key point" - }, - { - "example": "緩衝", - "reading": "カンショウ", - "meaning": "buffered" - } - ], - "kunyomiExamples": [ - { - "example": "突く", - "reading": "つく", - "meaning": "to prick, to stab, to poke, to prod, to push, to thrust, to nudge, to hit, to strike, to use (a cane), to prop oneself up with, to press against (the floor, etc.), to attack, to brave (the rain, etc.)" - }, - { - "example": "衝羽根", - "reading": "つくばね", - "meaning": "Buckleya lanceolata (species of parasitic deciduous shrub)" - } - ], - "radical": { - "symbol": "行", - "meaning": "go, do" - }, - "parts": [ - "ノ", - "彳", - "日", - "行", - "里", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34909_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0885d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/885d.gif", - "uri": "http://jisho.org/search/%E8%A1%9D%23kanji" - }, - { - "query": "償", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "854", - "strokeCount": 17, - "meaning": "reparation, make up for, recompense, redeem", - "kunyomi": [ - "つぐな.う" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "償却", - "reading": "ショウキャク", - "meaning": "repayment, redemption, depreciation, amortization, amortisation" - }, - { - "example": "償還", - "reading": "ショウカン", - "meaning": "repayment, redemption, amortization, amortisation" - }, - { - "example": "無償", - "reading": "ムショウ", - "meaning": "without compensation, without reward, without pay, free (of charge)" - }, - { - "example": "有償", - "reading": "ユウショウ", - "meaning": "(involving) payment, (involving) compensation, paying a fee" - } - ], - "kunyomiExamples": [ - { - "example": "償う", - "reading": "つぐなう", - "meaning": "to make up for, to compensate for, to indemnify, to recompense, to redeem (e.g. a fault), to atone for" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "冖", - "化", - "口", - "尚", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20767_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0511f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/511f.gif", - "uri": "http://jisho.org/search/%E5%84%9F%23kanji" - }, - { - "query": "礁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1977", - "strokeCount": 17, - "meaning": "reef, sunken rock", - "kunyomi": [], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "礁", - "reading": "ショウ", - "meaning": "reef" - }, - { - "example": "礁湖", - "reading": "ショウコ", - "meaning": "barrier lagoon, coral-reef lagoon" - }, - { - "example": "環礁", - "reading": "カンショウ", - "meaning": "atoll, circular coral reef" - }, - { - "example": "座礁", - "reading": "ザショウ", - "meaning": "running aground, being stranded, grounding, beaching" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "口", - "杰", - "石", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30977_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07901.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7901.gif", - "uri": "http://jisho.org/search/%E7%A4%81%23kanji" - }, - { - "query": "鐘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1681", - "strokeCount": 20, - "meaning": "bell, gong, chimes", - "kunyomi": [ - "かね" - ], - "onyomi": [ - "ショウ" - ], - "onyomiExamples": [ - { - "example": "鐘楼", - "reading": "ショウロウ", - "meaning": "belfry, bell tower" - }, - { - "example": "鍾乳洞", - "reading": "ショウニュウドウ", - "meaning": "limestone cave, limestone cavern" - }, - { - "example": "警鐘", - "reading": "ケイショウ", - "meaning": "alarm bell, fire bell, warning, wake-up call" - }, - { - "example": "鳴鐘", - "reading": "メイショウ", - "meaning": "bell-ringing (at a temple)" - } - ], - "kunyomiExamples": [ - { - "example": "鐘", - "reading": "かね", - "meaning": "bell (often a large hanging bell), chime" - }, - { - "example": "鐘撞", - "reading": "かねつき", - "meaning": "ringing of a bell, bell ringer" - }, - { - "example": "入相の鐘", - "reading": "いりあいのかね", - "meaning": "evening bell, vespers bell" - }, - { - "example": "時の鐘", - "reading": "ときのかね", - "meaning": "hour bell" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "立", - "里", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37912_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09418.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9418.gif", - "uri": "http://jisho.org/search/%E9%90%98%23kanji" - }, - { - "query": "丈", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1375", - "strokeCount": 3, - "meaning": "length, ten shaku, measure, Mr., Ms., height, stature, all (one has), only, that's all, merely", - "kunyomi": [ - "たけ", - "だけ" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "丈", - "reading": "ジョウ", - "meaning": "3.03 meters (ten shaku), length, measure, Mr., Mrs." - }, - { - "example": "丈夫", - "reading": "ジョウブ", - "meaning": "healthy, robust, strong, solid, durable" - }, - { - "example": "気丈", - "reading": "キジョウ", - "meaning": "stout-hearted, firm, courageous, brave, tough" - }, - { - "example": "方丈", - "reading": "ホウジョウ", - "meaning": "square jō (approx. 10 sq feet), abbot's chamber, chief priest" - } - ], - "kunyomiExamples": [ - { - "example": "丈", - "reading": "たけ", - "meaning": "height, stature, length (esp. of clothing), all (one has), everything, magnificence (of a waka poem, etc.)" - }, - { - "example": "丈比べ", - "reading": "たけくらべ", - "meaning": "comparison of statures" - }, - { - "example": "草丈", - "reading": "くさたけ", - "meaning": "rice plant's height" - }, - { - "example": "着丈", - "reading": "きたけ", - "meaning": "dress length" - }, - { - "example": "丈", - "reading": "だけ", - "meaning": "only, just, merely, simply, no more than, nothing but, alone, as much as, to the extent of, enough to" - }, - { - "example": "丈に", - "reading": "だけに", - "meaning": "given that ... it is only natural that ..., ... being the case, it is unavoidable that ..., (precisely) because ..., as might be expected (from ...), contrary to expectations ..." - }, - { - "example": "何れ丈", - "reading": "どれだけ", - "meaning": "how long, how much, to what extent" - }, - { - "example": "一度だけ", - "reading": "いちどだけ", - "meaning": "only once" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "ノ", - "一", - "丶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19976_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e08.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e08.gif", - "uri": "http://jisho.org/search/%E4%B8%88%23kanji" - }, - { - "query": "冗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1782", - "strokeCount": 4, - "meaning": "superfluous, uselessness", - "kunyomi": [], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "冗", - "reading": "ジョウ", - "meaning": "waste, uselessness, redundance" - }, - { - "example": "冗談", - "reading": "ジョウダン", - "meaning": "jest, joke, funny story" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "冖", - "meaning": "cover" - }, - "parts": [ - "冖", - "几" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20887_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05197.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5197.gif", - "uri": "http://jisho.org/search/%E5%86%97%23kanji" - }, - { - "query": "浄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1383", - "strokeCount": 9, - "meaning": "clean, purify, cleanse, exorcise, Manchu Dynasty", - "kunyomi": [ - "きよ.める", - "きよ.い" - ], - "onyomi": [ - "ジョウ", - "セイ" - ], - "onyomiExamples": [ - { - "example": "浄化槽", - "reading": "ジョウカソウ", - "meaning": "water-purification tank, septic tank" - }, - { - "example": "浄化", - "reading": "ジョウカ", - "meaning": "purification, cleanup (e.g. of politics), purge" - }, - { - "example": "自浄", - "reading": "ジジョウ", - "meaning": "self-purification, self-cleansing" - }, - { - "example": "不浄", - "reading": "フジョウ", - "meaning": "uncleanliness, dirtiness, impurity, filthiness, defilement, menses, feces (faeces), bathroom" - } - ], - "kunyomiExamples": [ - { - "example": "清める", - "reading": "きよめる", - "meaning": "to purify, to cleanse, to exorcise, to purge, to ward off" - }, - { - "example": "清い", - "reading": "きよい", - "meaning": "clear, pure, noble" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ヨ", - "亅", - "勹", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27972_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d44.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d44.gif", - "uri": "http://jisho.org/search/%E6%B5%84%23kanji" - }, - { - "query": "剰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1448", - "strokeCount": 11, - "meaning": "surplus, besides", - "kunyomi": [ - "あまつさえ", - "あま.り", - "あま.る" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "剰余金", - "reading": "ジョウヨキン", - "meaning": "surplus, balance" - }, - { - "example": "冗員", - "reading": "ジョウイン", - "meaning": "supernumerary, superfluous staff, excess personnel, useless staff" - }, - { - "example": "余剰", - "reading": "ヨジョウ", - "meaning": "surplus, remainder, residue, margin, balance" - }, - { - "example": "出生過剰", - "reading": "シュッショウカジョウ", - "meaning": "excessive birth (rate)" - } - ], - "kunyomiExamples": [ - { - "example": "剰え", - "reading": "あまつさえ", - "meaning": "besides, moreover, in addition" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "ノ", - "一", - "刈", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21104_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05270.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5270.gif", - "uri": "http://jisho.org/search/%E5%89%B0%23kanji" - }, - { - "query": "畳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1665", - "strokeCount": 12, - "meaning": "tatami mat, counter for tatami mats, fold, shut up, do away with", - "kunyomi": [ - "たた.む", - "たたみ", - "かさ.なる" - ], - "onyomi": [ - "ジョウ", - "チョウ" - ], - "onyomiExamples": [ - { - "example": "畳", - "reading": "ジョウ", - "meaning": "tatami mat (esp. as a measure of room size, either 1.82 sqm or 1.54 sqm)" - }, - { - "example": "畳韻", - "reading": "ジョウイン", - "meaning": "repeated rhymes (in Chinese poetry), recurring rhymes" - }, - { - "example": "重畳", - "reading": "チョウジョウ", - "meaning": "placed one upon another, piled up, excellent, splendid, superimposition, superposition" - }, - { - "example": "山岳重畳", - "reading": "サンガクチョウジョウ", - "meaning": "mountains rising one above another" - } - ], - "kunyomiExamples": [ - { - "example": "畳む", - "reading": "たたむ", - "meaning": "to fold (clothes, umbrella), to close (a shop, business), to vacate" - }, - { - "example": "畳", - "reading": "たたみ", - "meaning": "tatami mat, Japanese straw floor coverings" - }, - { - "example": "畳敷き", - "reading": "たたみじき", - "meaning": "tatami-matted" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "一", - "冖", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30067_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07573.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7573.gif", - "uri": "http://jisho.org/search/%E7%95%B3%23kanji" - }, - { - "query": "壌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1407", - "strokeCount": 16, - "meaning": "lot, earth, soil", - "kunyomi": [ - "つち" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "壌土", - "reading": "ジョウド", - "meaning": "soil, loamy soil, loam, soil with clay content of 25-37.5%" - }, - { - "example": "平壌", - "reading": "ピョンヤン", - "meaning": "Pyongyang (North Korea)" - }, - { - "example": "黄壌", - "reading": "コウジョウ", - "meaning": "yellow soil, loess, Hades, hell, underworld, world of the dead" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ハ", - "亠", - "土", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22732_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058cc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58cc.gif", - "uri": "http://jisho.org/search/%E5%A3%8C%23kanji" - }, - { - "query": "嬢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2059", - "strokeCount": 16, - "meaning": "lass, girl, Miss, daughter", - "kunyomi": [ - "むすめ" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "嬢", - "reading": "ジョウ", - "meaning": "unmarried woman, Miss, -ess, -ette" - }, - { - "example": "娘核", - "reading": "ジョウカク", - "meaning": "daughter nucleus" - }, - { - "example": "令嬢", - "reading": "レイジョウ", - "meaning": "(your) daughter, young woman" - }, - { - "example": "愛嬢", - "reading": "アイジョウ", - "meaning": "one's beloved daughter" - } - ], - "kunyomiExamples": [ - { - "example": "娘子", - "reading": "じょうし", - "meaning": "girl, young (unmarried) woman, (grown) woman, lady, (someone else's) wife" - }, - { - "example": "娘細胞", - "reading": "じょうさいぼう", - "meaning": "daughter cell" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ハ", - "亠", - "女", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23330_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05b22.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5b22.gif", - "uri": "http://jisho.org/search/%E5%AC%A2%23kanji" - }, - { - "query": "錠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1934", - "strokeCount": 16, - "meaning": "lock, fetters, shackles", - "kunyomi": [], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "錠", - "reading": "ジョウ", - "meaning": "lock, padlock, tablet, lozenge, pill" - }, - { - "example": "錠剤", - "reading": "ジョウザイ", - "meaning": "pill, lozenge, tablet" - }, - { - "example": "糖衣錠", - "reading": "トウイジョウ", - "meaning": "sugar-coated pill" - }, - { - "example": "開錠", - "reading": "カイジョウ", - "meaning": "unlocking" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "宀", - "疋", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37664_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09320.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9320.gif", - "uri": "http://jisho.org/search/%E9%8C%A0%23kanji" - }, - { - "query": "譲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "984", - "strokeCount": 20, - "meaning": "defer, turnover, transfer, convey", - "kunyomi": [ - "ゆず.る" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "譲歩", - "reading": "ジョウホ", - "meaning": "concession, conciliation, compromise" - }, - { - "example": "譲渡", - "reading": "ジョウト", - "meaning": "transfer, assignment, conveyance" - }, - { - "example": "分譲", - "reading": "ブンジョウ", - "meaning": "selling (real-estate) lots" - }, - { - "example": "移譲", - "reading": "イジョウ", - "meaning": "transfer, assignment" - } - ], - "kunyomiExamples": [ - { - "example": "譲る", - "reading": "ゆずる", - "meaning": "to hand over, to transfer, to turn over, to assign, to convey, to bequeath, to give up (e.g. one's seat), to give way, to yield, to concede, to give ground, to surrender, to sell, to postpone, to put off, to defer" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ハ", - "亠", - "衣", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35698_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b72.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b72.gif", - "uri": "http://jisho.org/search/%E8%AD%B2%23kanji" - }, - { - "query": "醸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1838", - "strokeCount": 20, - "meaning": "brew, cause", - "kunyomi": [ - "かも.す" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "醸成", - "reading": "ジョウセイ", - "meaning": "brewing, fermenting, arousing, causing, creating, fermenting, bringing about" - }, - { - "example": "醸造", - "reading": "ジョウゾウ", - "meaning": "brewing" - }, - { - "example": "銘醸", - "reading": "メイジョウ", - "meaning": "famous winery, famous brewery" - }, - { - "example": "佳醸", - "reading": "カジョウ", - "meaning": "sweet sake, good wine" - } - ], - "kunyomiExamples": [ - { - "example": "醸す", - "reading": "かもす", - "meaning": "to brew (sake, etc.), to cause, to bring on, to bring about, to give rise to" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "ハ", - "亠", - "衣", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37304_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091b8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91b8.gif", - "uri": "http://jisho.org/search/%E9%86%B8%23kanji" - }, - { - "query": "拭", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2421", - "strokeCount": 9, - "meaning": "wipe, mop, swab", - "kunyomi": [ - "ぬぐ.う", - "ふ.く" - ], - "onyomi": [ - "ショク", - "シキ" - ], - "onyomiExamples": [ - { - "example": "拭浄", - "reading": "ショクジョウ", - "meaning": "wiping and purifying, wiping and cleansing" - }, - { - "example": "払拭", - "reading": "フッショク", - "meaning": "wiping out, sweeping away, eradicating, dispelling" - }, - { - "example": "清拭", - "reading": "セイシキ", - "meaning": "bed bath, sponge bath, blanket bath, toilet" - }, - { - "example": "払拭", - "reading": "フッショク", - "meaning": "wiping out, sweeping away, eradicating, dispelling" - }, - { - "example": "清拭", - "reading": "セイシキ", - "meaning": "bed bath, sponge bath, blanket bath, toilet" - } - ], - "kunyomiExamples": [ - { - "example": "拭う", - "reading": "ぬぐう", - "meaning": "to wipe, to mop up, to get rid of (an impression, feeling, blemish, etc.), to dispel (e.g. shame), to erase, to remove" - }, - { - "example": "拭く", - "reading": "ふく", - "meaning": "to wipe, to dry" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "工", - "弋", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25325_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062ed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62ed.gif", - "uri": "http://jisho.org/search/%E6%8B%AD%23kanji" - }, - { - "query": "殖", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1362", - "strokeCount": 12, - "meaning": "augment, increase, multiply, raise", - "kunyomi": [ - "ふ.える", - "ふ.やす" - ], - "onyomi": [ - "ショク" - ], - "onyomiExamples": [ - { - "example": "植民地", - "reading": "ショクミンチ", - "meaning": "colony, (immigrant) community" - }, - { - "example": "植民", - "reading": "ショクミン", - "meaning": "colonization, colonisation" - }, - { - "example": "増殖", - "reading": "ゾウショク", - "meaning": "increase, multiplication, propagation, proliferation" - }, - { - "example": "生殖", - "reading": "セイショク", - "meaning": "reproduction" - } - ], - "kunyomiExamples": [ - { - "example": "増える", - "reading": "ふえる", - "meaning": "to increase, to multiply" - }, - { - "example": "増やす", - "reading": "ふやす", - "meaning": "to increase, to add to, to augment" - } - ], - "radical": { - "symbol": "歹", - "forms": [ - "歺" - ], - "meaning": "death, decay" - }, - "parts": [ - "十", - "歹", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27542_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b96.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b96.gif", - "uri": "http://jisho.org/search/%E6%AE%96%23kanji" - }, - { - "query": "飾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1193", - "strokeCount": 13, - "meaning": "decorate, ornament, adorn, embellish", - "kunyomi": [ - "かざ.る", - "かざ.り" - ], - "onyomi": [ - "ショク" - ], - "onyomiExamples": [ - { - "example": "飾緒", - "reading": "ショクショ", - "meaning": "aiguillette (ornamental braided cord)" - }, - { - "example": "服飾", - "reading": "フクショク", - "meaning": "clothing and accessories, attire" - }, - { - "example": "潤色", - "reading": "ジュンショク", - "meaning": "rhetorical flourishes" - } - ], - "kunyomiExamples": [ - { - "example": "飾る", - "reading": "かざる", - "meaning": "to decorate, to ornament, to adorn, to display, to exhibit, to put on show, to arrange, to mark (e.g. the day with a victory), to adorn (e.g. the front page), to grace (e.g. the cover), to affect (a manner), to keep up (appearances), to embellish, to dress up, to be showy, to be pretentious" - }, - { - "example": "飾り", - "reading": "かざり", - "meaning": "decoration, ornament, trimmings" - }, - { - "example": "飾り気", - "reading": "かざりけ", - "meaning": "affectation, showing off" - }, - { - "example": "蓬莱飾り", - "reading": "ほうらいかざり", - "meaning": "Kansai New Year decoration (made from food)" - }, - { - "example": "松飾り", - "reading": "まつかざり", - "meaning": "New Year's pine decorations" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "ノ", - "一", - "乞", - "人", - "巾", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39166_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098fe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98fe.gif", - "uri": "http://jisho.org/search/%E9%A3%BE%23kanji" - }, - { - "query": "触", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "904", - "strokeCount": 13, - "meaning": "contact, touch, feel, hit, proclaim, announce, conflict", - "kunyomi": [ - "ふ.れる", - "さわ.る", - "さわ" - ], - "onyomi": [ - "ショク" - ], - "onyomiExamples": [ - { - "example": "触媒", - "reading": "ショクバイ", - "meaning": "catalyst" - }, - { - "example": "触発", - "reading": "ショクハツ", - "meaning": "detonation by contact, contact detonation, touching off (something), triggering, sparking, provocation, inspiration" - }, - { - "example": "鎧袖一触", - "reading": "ガイシュウイッショク", - "meaning": "(beating someone) hands down, with a single blow" - }, - { - "example": "濃厚接触", - "reading": "ノウコウセッショク", - "meaning": "close contact (with an infected person)" - } - ], - "kunyomiExamples": [ - { - "example": "触れる", - "reading": "ふれる", - "meaning": "to touch, to feel, to touch (with), to experience, to come in contact with, to perceive, to touch on (a subject), to allude to, to refer to, to mention, to bring up, to be in conflict with, to violate (law, copyright, etc.), to infringe, to proclaim, to make known, to spread (e.g. a rumour)" - }, - { - "example": "触る", - "reading": "さわる", - "meaning": "to touch, to feel, to get involved (with), to approach, to be harmful to, to hinder, to interfere with, to irritate" - }, - { - "example": "触る", - "reading": "さわる", - "meaning": "to touch, to feel, to get involved (with), to approach, to be harmful to, to hinder, to interfere with, to irritate" - }, - { - "example": "触らぬ神に祟りなし", - "reading": "さわらぬかみにたたりなし", - "meaning": "let sleeping dogs lie, wake not a sleeping lion, the spirit you do not approach will not curse you" - } - ], - "radical": { - "symbol": "角", - "meaning": "horn" - }, - "parts": [ - "虫", - "角" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35302_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/089e6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/89e6.gif", - "uri": "http://jisho.org/search/%E8%A7%A6%23kanji" - }, - { - "query": "嘱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1903", - "strokeCount": 15, - "meaning": "entrust, request, send a message", - "kunyomi": [ - "しょく.する", - "たの.む" - ], - "onyomi": [ - "ショク" - ], - "onyomiExamples": [ - { - "example": "嘱託", - "reading": "ショクタク", - "meaning": "commission, entrusting with (work), part-time employee, temporary work" - }, - { - "example": "嘱望", - "reading": "ショクボウ", - "meaning": "(having great) expectation, pinning one's hopes on" - }, - { - "example": "委嘱", - "reading": "イショク", - "meaning": "commissioning, entrusting (with), request, appointment (to a position)" - }, - { - "example": "遺嘱", - "reading": "イショク", - "meaning": "dying wish, wish by dying person to be carried out after their death" - } - ], - "kunyomiExamples": [ - { - "example": "嘱する", - "reading": "しょくする", - "meaning": "to entrust, to send (a message, etc.)" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "尸", - "禹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22065_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05631.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5631.gif", - "uri": "http://jisho.org/search/%E5%98%B1%23kanji" - }, - { - "query": "辱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1769", - "strokeCount": 10, - "meaning": "embarrass, humiliate, shame", - "kunyomi": [ - "はずかし.める" - ], - "onyomi": [ - "ジョク" - ], - "onyomiExamples": [ - { - "example": "恥", - "reading": "ハジ", - "meaning": "shame, embarrassment, disgrace" - }, - { - "example": "辱知", - "reading": "ジョクチ", - "meaning": "acquaintance" - }, - { - "example": "恥辱", - "reading": "チジョク", - "meaning": "disgrace, shame, insult" - }, - { - "example": "栄辱", - "reading": "エイジョク", - "meaning": "honor and-or shame (honour)" - } - ], - "kunyomiExamples": [ - { - "example": "辱める", - "reading": "はずかしめる", - "meaning": "to put to shame, to humiliate, to disgrace, to insult, to rape, to assault, to violate" - } - ], - "radical": { - "symbol": "辰", - "meaning": "morning" - }, - "parts": [ - "厂", - "寸", - "衣", - "辰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36785_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fb1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fb1.gif", - "uri": "http://jisho.org/search/%E8%BE%B1%23kanji" - }, - { - "query": "尻", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1692", - "strokeCount": 5, - "meaning": "buttocks, hips, butt, rear", - "kunyomi": [ - "しり" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "後輪", - "reading": "コウリン", - "meaning": "rear wheel, cantle" - }, - { - "example": "尻座", - "reading": "コウザ", - "meaning": "crouching" - } - ], - "kunyomiExamples": [ - { - "example": "尻", - "reading": "しり", - "meaning": "buttocks, behind, rump, bottom, hips, undersurface, bottom, last place, end, consequence" - }, - { - "example": "尻尾", - "reading": "しっぽ", - "meaning": "tail (animal), tail end, tip" - }, - { - "example": "道の後", - "reading": "みちのしり", - "meaning": "the part of a province furthest from the capital" - }, - { - "example": "美尻", - "reading": "びしり", - "meaning": "beautiful buttocks" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "九", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23611_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c3b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c3b.gif", - "uri": "http://jisho.org/search/%E5%B0%BB%23kanji" - }, - { - "query": "伸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "730", - "strokeCount": 7, - "meaning": "expand, stretch, extend, lengthen, increase", - "kunyomi": [ - "の.びる", - "の.ばす", - "の.べる", - "の.す" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "伸張", - "reading": "シンチョウ", - "meaning": "expansion, extension, elongation, stretching, uncompression" - }, - { - "example": "伸縮", - "reading": "シンシュク", - "meaning": "expansion and contraction, elasticity, flexibility" - }, - { - "example": "続伸", - "reading": "ゾクシン", - "meaning": "continuous rise (in market price)" - }, - { - "example": "急伸", - "reading": "キュウシン", - "meaning": "sudden rise (esp. of stock prices), jump" - } - ], - "kunyomiExamples": [ - { - "example": "伸びる", - "reading": "のびる", - "meaning": "to stretch, to extend, to lengthen, to grow (of hair, height, grass, etc.), to straighten out, to be flattened, to become smooth, to spread (of paint, cream, etc.), to stretch out (e.g. of a hand), to extend, to lose elasticity, to become slack, to become soggy (e.g. noodles), to make progress, to develop, to expand, to increase, to improve, to be exhausted, to be groggy, to pass out, to collapse, to be prolonged (meeting, life span, etc.), to be extended (e.g. deadline), to lengthen (e.g. of the days), to be postponed, to be delayed, to be put off" - }, - { - "example": "伸ばす", - "reading": "のばす", - "meaning": "to grow long (e.g. hair, nails), to lengthen, to extend, to stretch, to reach out, to hold out, to straighten, to smooth out, to spread evenly (dough, cream, etc.), to dilute, to thin out, to postpone, to prolong, to strengthen, to develop, to expand" - }, - { - "example": "延べる", - "reading": "のべる", - "meaning": "to lay out (a futon), to make (bed), to spread out, to stretch, to widen, to postpone, to extend" - }, - { - "example": "伸す", - "reading": "のす", - "meaning": "to stretch, to extend, to lengthen, to spread, to gain influence, to become stronger, to increase (e.g. in scope), to go further, to extend one's journey, to smooth out, to roll out, to spread out (something folded), to iron out (creases), to knock out, to knock down" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20280_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f38.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f38.gif", - "uri": "http://jisho.org/search/%E4%BC%B8%23kanji" - }, - { - "query": "芯", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2202", - "strokeCount": 7, - "meaning": "wick", - "kunyomi": [], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "芯", - "reading": "シン", - "meaning": "wick, marrow, staple (for stapler), (pencil) lead, stuffing, pith, core, heart, centre, center, pistil (of a flower), stamen" - }, - { - "example": "芯が強い", - "reading": "シンガツヨイ", - "meaning": "mentally strong, strong-willed" - }, - { - "example": "排水芯", - "reading": "ハイスイシン", - "meaning": "toilet drain outlet" - }, - { - "example": "灯心", - "reading": "トウシン", - "meaning": "(lamp) wick" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "心", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33455_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082af.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82af.gif", - "uri": "http://jisho.org/search/%E8%8A%AF%23kanji" - }, - { - "query": "辛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1607", - "strokeCount": 7, - "meaning": "spicy, bitter, hot, acrid", - "kunyomi": [ - "から.い", - "つら.い", - "-づら.い", - "かのと" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "辛", - "reading": "カノト", - "meaning": "8th in rank, eighth sign of the Chinese calendar" - }, - { - "example": "辛抱", - "reading": "シンボウ", - "meaning": "patience, endurance" - }, - { - "example": "細辛", - "reading": "サイシン", - "meaning": "Siebold's wild ginger (esp. its dried root or rhizome, used as an antitussive and analgesic in traditional Chinese medicine)" - }, - { - "example": "薄葉細辛", - "reading": "ウスバサイシン", - "meaning": "Siebold's wild ginger (Asarum sieboldii)" - } - ], - "kunyomiExamples": [ - { - "example": "辛い", - "reading": "からい", - "meaning": "spicy, hot, salty, harsh (criticism), severe (punishment), strict, painful, bitter, difficult, tough" - }, - { - "example": "辛い味", - "reading": "からいあじ", - "meaning": "pungent taste" - }, - { - "example": "辛い", - "reading": "つらい", - "meaning": "painful, bitter, heart-breaking, difficult (emotionally), tough, difficult, hard (usu. of situations), cruel, harsh, cold" - }, - { - "example": "辛い目に会う", - "reading": "つらいめにあう", - "meaning": "to have a hard time of it" - }, - { - "example": "辛", - "reading": "かのと", - "meaning": "8th in rank, eighth sign of the Chinese calendar" - }, - { - "example": "辛卯", - "reading": "かのとう", - "meaning": "Metal Rabbit (28th year of the sexagenary cycle, e.g. 1951, 2011, 2071)" - } - ], - "radical": { - "symbol": "辛", - "meaning": "bitter" - }, - "parts": [ - "十", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36763_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f9b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f9b.gif", - "uri": "http://jisho.org/search/%E8%BE%9B%23kanji" - }, - { - "query": "侵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1025", - "strokeCount": 9, - "meaning": "encroach, invade, raid, trespass, violate", - "kunyomi": [ - "おか.す" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "侵攻", - "reading": "シンコウ", - "meaning": "invasion" - }, - { - "example": "侵害", - "reading": "シンガイ", - "meaning": "infringement, violation, invasion, encroachment, trespass" - }, - { - "example": "不可侵", - "reading": "フカシン", - "meaning": "inviolability, nonaggression, sacredness" - } - ], - "kunyomiExamples": [ - { - "example": "侵す", - "reading": "おかす", - "meaning": "to invade, to raid, to violate (airspace, etc.), to intrude, to trespass, to infringe, to encroach, to harm, to afflict, to affect" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ヨ", - "冖", - "化", - "又" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20405_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fb5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fb5.gif", - "uri": "http://jisho.org/search/%E4%BE%B5%23kanji" - }, - { - "query": "津", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1036", - "strokeCount": 9, - "meaning": "haven, port, harbor, ferry", - "kunyomi": [ - "つ" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "津液", - "reading": "シンエキ", - "meaning": "saliva, spit, spittle, fluid (in Chinese medicine, esp. a colourless bodily fluid, e.g. tears)" - }, - { - "example": "津々", - "reading": "シンシン", - "meaning": "gushing, overflowing, everlasting, unfailing, endless" - }, - { - "example": "京津", - "reading": "ケイシン", - "meaning": "Kyoto-Otsu, Kyoto and Otsu, Kyoto-Settsu, Kyoto and Settsu" - }, - { - "example": "入津", - "reading": "ニュウシン", - "meaning": "entering a port" - } - ], - "kunyomiExamples": [ - { - "example": "津", - "reading": "つ", - "meaning": "Tsu (city in Mie), harbour, harbor, port, ferry" - }, - { - "example": "津波", - "reading": "つなみ", - "meaning": "tsunami, tidal wave" - }, - { - "example": "大津", - "reading": "おおつ", - "meaning": "Ōtsu (city in Shiga)" - }, - { - "example": "秋津", - "reading": "あきつ", - "meaning": "dragonfly" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27941_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d25.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d25.gif", - "uri": "http://jisho.org/search/%E6%B4%A5%23kanji" - }, - { - "query": "唇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1992", - "strokeCount": 10, - "meaning": "lips", - "kunyomi": [ - "くちびる" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "唇音", - "reading": "シンオン", - "meaning": "labial sound" - }, - { - "example": "唇音化", - "reading": "シンオンカ", - "meaning": "labialization" - }, - { - "example": "下唇", - "reading": "シタクチビル", - "meaning": "lower lip" - }, - { - "example": "上唇", - "reading": "ウワクチビル", - "meaning": "upper lip, labrum" - } - ], - "kunyomiExamples": [ - { - "example": "唇", - "reading": "くちびる", - "meaning": "lips" - }, - { - "example": "唇を奪う", - "reading": "くちびるをうばう", - "meaning": "to steal a kiss, to snatch a kiss" - }, - { - "example": "上唇", - "reading": "うわくちびる", - "meaning": "upper lip, labrum" - }, - { - "example": "下唇", - "reading": "したくちびる", - "meaning": "lower lip" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "厂", - "口", - "衣", - "辰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21767_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05507.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5507.gif", - "uri": "http://jisho.org/search/%E5%94%87%23kanji" - }, - { - "query": "娠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1623", - "strokeCount": 10, - "meaning": "with child, pregnancy", - "kunyomi": [], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "人工妊娠", - "reading": "ジンコウニンシン", - "meaning": "pregnancy resulting from artificial insemination, in-vitro fertilization, etc. (esp. of animals)" - }, - { - "example": "想像妊娠", - "reading": "ソウゾウニンシン", - "meaning": "false pregnancy, pseudocyesis" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "厂", - "女", - "衣", - "辰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23072_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a20.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a20.gif", - "uri": "http://jisho.org/search/%E5%A8%A0%23kanji" - }, - { - "query": "振", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "614", - "strokeCount": 10, - "meaning": "shake, wave, wag, swing", - "kunyomi": [ - "ふ.る", - "ふ.れる", - "ふ.るう" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "振り子", - "reading": "フリコ", - "meaning": "pendulum" - }, - { - "example": "振興", - "reading": "シンコウ", - "meaning": "promotion, encouragement" - }, - { - "example": "奪三振", - "reading": "ダツサンシン", - "meaning": "striking a batter out" - }, - { - "example": "不振", - "reading": "フシン", - "meaning": "dullness, slump, stagnation, inactivity, depression" - } - ], - "kunyomiExamples": [ - { - "example": "振る", - "reading": "ふる", - "meaning": "to wave, to shake, to swing, to sprinkle, to throw (dice), to cast (actor), to allocate (work), to turn down (somebody), to reject, to jilt, to dump, to abandon, to give up, to ruin, to add kana indicating a reading of a word, to slightly change headings, to change directions, to extract by broiling, to prepare an infusion of, to decoct, to carry with great vigor (e.g. a portable shrine), to bring up a topic, to lead to a topic, to replace, to substitute, to set up a joke for somebody else" - }, - { - "example": "振る舞い", - "reading": "ふるまい", - "meaning": "behavior, behaviour, conduct, entertainment, treat, feast, banquet" - }, - { - "example": "振れる", - "reading": "ふれる", - "meaning": "to swing, to shake, to wave, to veer, to deflect, to lean towards" - }, - { - "example": "振るう", - "reading": "ふるう", - "meaning": "to swing, to wield (physically), to exert, to exercise (e.g. power, ability), to exhibit, to display, to wield (metaphorically), to flourish, to prosper, to thrive" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "厂", - "扎", - "衣", - "辰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25391_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0632f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/632f.gif", - "uri": "http://jisho.org/search/%E6%8C%AF%23kanji" - }, - { - "query": "浸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1447", - "strokeCount": 10, - "meaning": "immersed, soak, dip, steep, moisten, wet, dunk", - "kunyomi": [ - "ひた.す", - "ひた.る", - "つ.かる" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "浸透", - "reading": "シントウ", - "meaning": "penetration (e.g. market), pervasion (e.g. thought, ideology), permeation, soaking, osmosis" - }, - { - "example": "浸水", - "reading": "シンスイ", - "meaning": "inundation, submersion, flood" - }, - { - "example": "防浸", - "reading": "ボウシン", - "meaning": "watertight, waterproof" - }, - { - "example": "液浸", - "reading": "エキシン", - "meaning": "immersion, dipping, in microscopy, immersing both the objective lens and the specimen in a liquid to increase the numerical aperture, in photolithography, filling the air gap between the final lens and the wafer surface with a liquid to increase the resolution" - } - ], - "kunyomiExamples": [ - { - "example": "浸す", - "reading": "ひたす", - "meaning": "to soak, to dip, to steep, to immerse, to moisten, to wet" - }, - { - "example": "浸る", - "reading": "ひたる", - "meaning": "to be soaked in, to be flooded, to be submerged, to be immersed in (joy, memories, alcohol, etc.), to give oneself over to, to bask in" - }, - { - "example": "浸かる", - "reading": "つかる", - "meaning": "to be submerged, to be soaked, to be pickled, to be well seasoned, to be totally immersed (in a condition, e.g. laziness)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ヨ", - "冖", - "又", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28024_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d78.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d78.gif", - "uri": "http://jisho.org/search/%E6%B5%B8%23kanji" - }, - { - "query": "紳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1790", - "strokeCount": 11, - "meaning": "sire, good belt, gentleman", - "kunyomi": [], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "紳士", - "reading": "シンシ", - "meaning": "gentleman" - }, - { - "example": "紳士協定", - "reading": "シンシキョウテイ", - "meaning": "gentlemen's agreement" - }, - { - "example": "貴紳", - "reading": "キシン", - "meaning": "noble, men of rank, notables" - }, - { - "example": "縉紳", - "reading": "シンシン", - "meaning": "person of rank, person of status, ranked official" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "日", - "田", - "糸", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32051_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d33.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d33.gif", - "uri": "http://jisho.org/search/%E7%B4%B3%23kanji" - }, - { - "query": "診", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1019", - "strokeCount": 12, - "meaning": "checkup, seeing, diagnose, examine", - "kunyomi": [ - "み.る" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "診断", - "reading": "シンダン", - "meaning": "diagnosis, medical examination" - }, - { - "example": "診察", - "reading": "シンサツ", - "meaning": "medical examination" - }, - { - "example": "検診", - "reading": "ケンシン", - "meaning": "physical examination, medical examination, health checkup, health screening" - }, - { - "example": "受診", - "reading": "ジュシン", - "meaning": "having a medical examination, seeing a doctor" - } - ], - "kunyomiExamples": [ - { - "example": "診る", - "reading": "みる", - "meaning": "to examine (medically)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "个", - "彡", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35386_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a3a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a3a.gif", - "uri": "http://jisho.org/search/%E8%A8%BA%23kanji" - }, - { - "query": "寝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1034", - "strokeCount": 13, - "meaning": "lie down, sleep, rest, bed, remain unsold", - "kunyomi": [ - "ね.る", - "ね.かす", - "い.ぬ", - "みたまや", - "や.める" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "寝", - "reading": "ネ", - "meaning": "sleep" - }, - { - "example": "寝具", - "reading": "シング", - "meaning": "bedding, bedclothes" - } - ], - "kunyomiExamples": [ - { - "example": "寝る", - "reading": "ねる", - "meaning": "to sleep (lying down), to go to bed, to lie in bed, to lie down, to sleep (with someone, i.e. have intercourse), to lie flat (e.g. of hair), to lie idle (of funds, stock, etc.), to ferment (of soy sauce, miso, etc.)" - }, - { - "example": "寝る子は育つ", - "reading": "ねるこはそだつ", - "meaning": "sleep brings up a child well, a well-slept child is a well-kept child" - }, - { - "example": "寝かす", - "reading": "ねかす", - "meaning": "to put to sleep, to lay (something) on its side" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "ヨ", - "冖", - "又", - "宀", - "爿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23517_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bdd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bdd.gif", - "uri": "http://jisho.org/search/%E5%AF%9D%23kanji" - }, - { - "query": "慎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "999", - "strokeCount": 13, - "meaning": "humility, be careful, discreet, prudent", - "kunyomi": [ - "つつし.む", - "つつ.ましい", - "つつし", - "つつし.み" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "慎重", - "reading": "シンチョウ", - "meaning": "careful, cautious, prudent, discreet, deliberate" - }, - { - "example": "慎重吟味", - "reading": "シンチョウギンミ", - "meaning": "scrutiny, careful (close) examination (investigation), careful inquiry, careful selection" - }, - { - "example": "謹慎", - "reading": "キンシン", - "meaning": "self restraint, moderating one's behaviour, penitence, discipline, confinement to one's home, house arrest" - }, - { - "example": "不謹慎", - "reading": "フキンシン", - "meaning": "indiscrete, imprudent, unscrupulous" - } - ], - "kunyomiExamples": [ - { - "example": "慎む", - "reading": "つつしむ", - "meaning": "to be careful, to be discreet, to do in moderation, to refrain (from overdoing), to abstain, to be reverent, to be purified, to be chaste" - }, - { - "example": "慎ましい", - "reading": "つつましい", - "meaning": "modest, reserved, quiet, humble" - }, - { - "example": "慎む", - "reading": "つつしむ", - "meaning": "to be careful, to be discreet, to do in moderation, to refrain (from overdoing), to abstain, to be reverent, to be purified, to be chaste" - }, - { - "example": "慎み", - "reading": "つつしみ", - "meaning": "modesty, self-control, discretion" - }, - { - "example": "慎み", - "reading": "つつしみ", - "meaning": "modesty, self-control, discretion" - }, - { - "example": "慎み深い", - "reading": "つつしみぶかい", - "meaning": "discreet, modest, cautious" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ハ", - "一", - "十", - "忙", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24910_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0614e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/614e.gif", - "uri": "http://jisho.org/search/%E6%85%8E%23kanji" - }, - { - "query": "審", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "412", - "strokeCount": 15, - "meaning": "hearing, judge, trial", - "kunyomi": [ - "つまび.らか", - "つぶさ.に" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "審査", - "reading": "シンサ", - "meaning": "judging, inspection, examination, investigation, review" - }, - { - "example": "審議", - "reading": "シンギ", - "meaning": "deliberation" - }, - { - "example": "一審", - "reading": "イッシン", - "meaning": "first instance, first trial" - }, - { - "example": "再審", - "reading": "サイシン", - "meaning": "retrial, reopening of a case, review, reexamination" - } - ], - "kunyomiExamples": [ - { - "example": "詳らか", - "reading": "つまびらか", - "meaning": "detailed, clear" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "宀", - "田", - "米", - "釆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23529_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05be9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5be9.gif", - "uri": "http://jisho.org/search/%E5%AF%A9%23kanji" - }, - { - "query": "震", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "893", - "strokeCount": 15, - "meaning": "quake, shake, tremble, quiver, shiver", - "kunyomi": [ - "ふる.う", - "ふる.える" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "震", - "reading": "シン", - "meaning": "zhen (one of the trigrams of the I Ching: thunder, east)" - }, - { - "example": "震源", - "reading": "シンゲン", - "meaning": "hypocentre (of an earthquake), hypocenter" - }, - { - "example": "微震", - "reading": "ビシン", - "meaning": "slight earthquake" - }, - { - "example": "軽震", - "reading": "ケイシン", - "meaning": "weak earthquake" - } - ], - "kunyomiExamples": [ - { - "example": "震う", - "reading": "ふるう", - "meaning": "to shake, to tremble, to vibrate" - }, - { - "example": "震える", - "reading": "ふるえる", - "meaning": "to shiver, to shake, to quake, to tremble, to quaver, to quiver" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "厂", - "衣", - "辰", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38663_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09707.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9707.gif", - "uri": "http://jisho.org/search/%E9%9C%87%23kanji" - }, - { - "query": "薪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2182", - "strokeCount": 16, - "meaning": "fuel, firewood, kindling", - "kunyomi": [ - "たきぎ", - "まき" - ], - "onyomi": [ - "シン" - ], - "onyomiExamples": [ - { - "example": "薪炭", - "reading": "シンタン", - "meaning": "wood and charcoal, fuel" - }, - { - "example": "薪水", - "reading": "シンスイ", - "meaning": "fuel and water, firewood and water, gathering firewood and drawing water, kitchen work, housework" - }, - { - "example": "柴薪", - "reading": "サイシン", - "meaning": "brushwood and firewood" - } - ], - "kunyomiExamples": [ - { - "example": "薪", - "reading": "まき", - "meaning": "piece(s) of firewood (esp. chopped or split from logs), kindling (twigs, branches, etc.), firewood" - }, - { - "example": "薪入れ", - "reading": "たきぎいれ", - "meaning": "wood basket, firewood bucket, log holder" - }, - { - "example": "薪", - "reading": "まき", - "meaning": "piece(s) of firewood (esp. chopped or split from logs), kindling (twigs, branches, etc.), firewood" - }, - { - "example": "薪小屋", - "reading": "まきごや", - "meaning": "woodshed" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "亠", - "并", - "斤", - "木", - "立", - "艾", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34218_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85aa.gif", - "uri": "http://jisho.org/search/%E8%96%AA%23kanji" - }, - { - "query": "刃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1763", - "strokeCount": 3, - "meaning": "blade, sword, edge", - "kunyomi": [ - "は", - "やいば", - "き.る" - ], - "onyomi": [ - "ジン", - "ニン" - ], - "onyomiExamples": [ - { - "example": "兵刃", - "reading": "ヘイジン", - "meaning": "sword blade" - }, - { - "example": "刀刃", - "reading": "トウジン", - "meaning": "sword blade" - }, - { - "example": "刃傷", - "reading": "ニンジョウ", - "meaning": "bloodshed" - }, - { - "example": "刃傷沙汰", - "reading": "ニンジョウザタ", - "meaning": "bloodshed" - } - ], - "kunyomiExamples": [ - { - "example": "刃", - "reading": "は", - "meaning": "edge (of a knife or sword), prong (of an electrical plug)" - }, - { - "example": "鋼", - "reading": "はがね", - "meaning": "steel" - }, - { - "example": "諸刃", - "reading": "もろは", - "meaning": "double-edged, double-edged blade" - }, - { - "example": "直刃", - "reading": "すぐは", - "meaning": "suguha, straight temper line (on a sword)" - }, - { - "example": "刃", - "reading": "やいば", - "meaning": "blade, sword, forged blade, wavy pattern on forged blades, sharpness, unhulled rice" - }, - { - "example": "刃を交える", - "reading": "やいばをまじえる", - "meaning": "to cross swords (with)" - }, - { - "example": "氷の刃", - "reading": "こおりのやいば", - "meaning": "gleaming sword" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "丶", - "刀" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20995_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05203.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5203.gif", - "uri": "http://jisho.org/search/%E5%88%83%23kanji" - }, - { - "query": "尽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1234", - "strokeCount": 6, - "meaning": "exhaust, use up, run out of, deplete, befriend, serve", - "kunyomi": [ - "つ.きる", - "つ.くす", - "つ.かす", - "-づ.く", - "-ず.く", - "ことごと.く" - ], - "onyomi": [ - "ジン", - "サン" - ], - "onyomiExamples": [ - { - "example": "尽", - "reading": "ジン", - "meaning": "last day (of the month)" - }, - { - "example": "尽力", - "reading": "ジンリョク", - "meaning": "efforts, exertion, endeavour, assistance, services" - }, - { - "example": "理不尽", - "reading": "リフジン", - "meaning": "unreasonable, irrational, outrageous, absurd" - }, - { - "example": "縦横無尽", - "reading": "ジュウオウムジン", - "meaning": "freely, right and left, as one pleases" - } - ], - "kunyomiExamples": [ - { - "example": "尽きる", - "reading": "つきる", - "meaning": "to be used up, to be run out, to be exhausted, to be consumed, to come to an end" - }, - { - "example": "尽くす", - "reading": "つくす", - "meaning": "to exhaust, to run out, to devote, to serve (a person), to befriend, to do to exhaustion" - }, - { - "example": "尽かす", - "reading": "つかす", - "meaning": "to use completely, to use up, to exhaust, to exhaust somebody's civility, to give up (on someone)" - }, - { - "example": "悉く", - "reading": "ことごとく", - "meaning": "altogether, entirely" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "丶", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23613_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c3d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c3d.gif", - "uri": "http://jisho.org/search/%E5%B0%BD%23kanji" - }, - { - "query": "迅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1888", - "strokeCount": 6, - "meaning": "swift, fast", - "kunyomi": [], - "onyomi": [ - "ジン" - ], - "onyomiExamples": [ - { - "example": "迅速", - "reading": "ジンソク", - "meaning": "quick, fast, rapid, swift, prompt, streamlined, expedited, expeditious" - }, - { - "example": "迅速果敢", - "reading": "ジンソクカカン", - "meaning": "quick and decisive, fast and daring, swift and resolute" - }, - { - "example": "奮迅", - "reading": "フンジン", - "meaning": "impetuous dash forward" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "乙", - "十", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36805_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fc5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fc5.gif", - "uri": "http://jisho.org/search/%E8%BF%85%23kanji" - }, - { - "query": "甚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1961", - "strokeCount": 9, - "meaning": "tremendously, very, great, exceedingly", - "kunyomi": [ - "はなは.だ", - "はなは.だしい" - ], - "onyomi": [ - "ジン" - ], - "onyomiExamples": [ - { - "example": "甚大", - "reading": "ジンダイ", - "meaning": "very great, enormous, serious" - }, - { - "example": "甚句", - "reading": "ジンク", - "meaning": "lively song, lively dance" - }, - { - "example": "激甚", - "reading": "ゲキジン", - "meaning": "intenseness, violence, severity, vehemence, keenness" - }, - { - "example": "幸甚", - "reading": "コウジン", - "meaning": "pleased, obliged, appreciative" - } - ], - "kunyomiExamples": [ - { - "example": "甚だ", - "reading": "はなはだ", - "meaning": "very, greatly, exceedingly" - }, - { - "example": "甚だしい", - "reading": "はなはだしい", - "meaning": "extreme, excessive, terrible, intense, severe, serious, tremendous, heavy (damage)" - }, - { - "example": "甚だしい", - "reading": "はなはだしい", - "meaning": "extreme, excessive, terrible, intense, severe, serious, tremendous, heavy (damage)" - } - ], - "radical": { - "symbol": "甘", - "meaning": "sweet" - }, - "parts": [ - "一", - "儿", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29978_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0751a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/751a.gif", - "uri": "http://jisho.org/search/%E7%94%9A%23kanji" - }, - { - "query": "陣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "828", - "strokeCount": 10, - "meaning": "camp, battle array, ranks, position, sudden, brief time", - "kunyomi": [], - "onyomi": [ - "ジン" - ], - "onyomiExamples": [ - { - "example": "陣", - "reading": "ジン", - "meaning": "battle formation, camp, encampment, position, group, gang, party, corps, war, battle, campaign" - }, - { - "example": "陣営", - "reading": "ジンエイ", - "meaning": "camp (supporters of a doctrine, party, etc.), faction (of a party), military camp, encampment, cantonment" - }, - { - "example": "布陣", - "reading": "フジン", - "meaning": "battle formation, lineup (e.g. for a game)" - }, - { - "example": "出陣", - "reading": "シュツジン", - "meaning": "going into battle, departure for the front" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "車", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38499_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09663.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9663.gif", - "uri": "http://jisho.org/search/%E9%99%A3%23kanji" - }, - { - "query": "尋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1398", - "strokeCount": 12, - "meaning": "inquire, fathom, look for", - "kunyomi": [ - "たず.ねる", - "ひろ" - ], - "onyomi": [ - "ジン" - ], - "onyomiExamples": [ - { - "example": "尋", - "reading": "ヒロ", - "meaning": "fathom" - }, - { - "example": "尋問", - "reading": "ジンモン", - "meaning": "questioning, interrogation, examination (of a witness)" - }, - { - "example": "討尋", - "reading": "トウジン", - "meaning": "minute investigation, thorough inquiry, thorough enquiry" - }, - { - "example": "審尋", - "reading": "シンジン", - "meaning": "hearing, interrogation" - } - ], - "kunyomiExamples": [ - { - "example": "尋ねる", - "reading": "たずねる", - "meaning": "to ask, to enquire, to inquire, to search, to look for, to look into, to investigate" - }, - { - "example": "尋", - "reading": "ひろ", - "meaning": "fathom" - }, - { - "example": "八尋", - "reading": "やひろ", - "meaning": "great length, great size" - } - ], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "ヨ", - "口", - "寸", - "工" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23563_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c0b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c0b.gif", - "uri": "http://jisho.org/search/%E5%B0%8B%23kanji" - }, - { - "query": "腎", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1755", - "strokeCount": 13, - "meaning": "kidney", - "kunyomi": [], - "onyomi": [ - "ジン" - ], - "onyomiExamples": [ - { - "example": "腎", - "reading": "ジン", - "meaning": "kidney" - }, - { - "example": "腎臓", - "reading": "ジンゾウ", - "meaning": "kidney" - }, - { - "example": "右腎", - "reading": "ウジン", - "meaning": "right kidney" - }, - { - "example": "後じん", - "reading": "コウジン", - "meaning": "metanephros, third stage of kidney development" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "又", - "月", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33102_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0814e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/814e.gif", - "uri": "http://jisho.org/search/%E8%85%8E%23kanji" - }, - { - "query": "須", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1339", - "strokeCount": 12, - "meaning": "ought, by all means, necessarily", - "kunyomi": [ - "すべから.く", - "すべし", - "ひげ", - "まつ", - "もち.いる", - "もと.める" - ], - "onyomi": [ - "ス", - "シュ" - ], - "onyomiExamples": [ - { - "example": "須恵器", - "reading": "スエキ", - "meaning": "Sue ware (type of unglazed pottery made from the middle of the Kofun era through the Heian era)" - }, - { - "example": "須義", - "reading": "スギ", - "meaning": "cobia (Rachycentron canadum), sergeant fish" - }, - { - "example": "恵比寿", - "reading": "エビス", - "meaning": "Ebisu, god of fishing and commerce" - }, - { - "example": "提宇子", - "reading": "ダイウス", - "meaning": "God" - }, - { - "example": "須髯", - "reading": "シュゼン", - "meaning": "beard" - }, - { - "example": "須弥山", - "reading": "シュミセン", - "meaning": "Mount Sumeru (believed to be the centre of the Buddhist world)" - } - ], - "kunyomiExamples": [ - { - "example": "須らく", - "reading": "すべからく", - "meaning": "absolutely (ought to), by all means, all, entirely" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "彡", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38920_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09808.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9808.gif", - "uri": "http://jisho.org/search/%E9%A0%88%23kanji" - }, - { - "query": "吹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1133", - "strokeCount": 7, - "meaning": "blow, breathe, puff, emit, smoke", - "kunyomi": [ - "ふ.く" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "吹奏楽", - "reading": "スイソウガク", - "meaning": "wind music, wind instrument music" - }, - { - "example": "推挙", - "reading": "スイキョ", - "meaning": "recommendation (of a person for a position), nomination" - }, - { - "example": "鼓吹", - "reading": "コスイ", - "meaning": "rousing (courage, morale, etc.), encouragement, advocacy, promotion (of a belief), encouragement, inspiring (someone with an idea)" - } - ], - "kunyomiExamples": [ - { - "example": "吹く", - "reading": "ふく", - "meaning": "to blow (of the wind), to blow (one's breath), to breathe out, to blow on (hot tea, candles, etc.), to puff, to play (a wind instrument), to blow (a whistle, trumpet, etc.), to whistle (a tune), to emit (smoke, fire, etc.), to spout, to spew, to puff out, to sprout, to put forth (buds), to appear (on the surface), to form, to be coated with (powder, rust, etc.), to burst out laughing, to burst into laughter, to brag, to talk big, to smelt, to mint" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "欠" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21561_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05439.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5439.gif", - "uri": "http://jisho.org/search/%E5%90%B9%23kanji" - }, - { - "query": "炊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1777", - "strokeCount": 8, - "meaning": "cook, boil", - "kunyomi": [ - "た.く", - "-だ.き" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "炊飯器", - "reading": "スイハンキ", - "meaning": "rice cooker" - }, - { - "example": "炊事", - "reading": "スイジ", - "meaning": "cooking, kitchen work" - }, - { - "example": "雑炊", - "reading": "ゾウスイ", - "meaning": "rice gruel containing vegetables, fish, etc., and seasoned with miso or soy sauce" - }, - { - "example": "烹炊", - "reading": "ホウスイ", - "meaning": "cooking by boiling" - } - ], - "kunyomiExamples": [ - { - "example": "炊く", - "reading": "たく", - "meaning": "to cook (grains, e.g. rice), to boil, to simmer, to stew, to seethe" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "欠", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28810_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0708a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/708a.gif", - "uri": "http://jisho.org/search/%E7%82%8A%23kanji" - }, - { - "query": "帥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2016", - "strokeCount": 9, - "meaning": "commander, leading troops, governor", - "kunyomi": [], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "元帥", - "reading": "ゲンスイ", - "meaning": "(field) marshal, (fleet) admiral, general of the army" - }, - { - "example": "総帥", - "reading": "ソウスイ", - "meaning": "commander-in-chief, leader, head of a group of companies" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "口", - "巾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24101_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e25.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e25.gif", - "uri": "http://jisho.org/search/%E5%B8%A5%23kanji" - }, - { - "query": "粋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1768", - "strokeCount": 10, - "meaning": "chic, style, purity, essence, pith, cream, elite, choice", - "kunyomi": [ - "いき" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "粋", - "reading": "イキ", - "meaning": "chic, smart, stylish, tasteful, refined, sophisticated, familiar with worldly pleasures and subtleties of human nature (esp. sexual relations, geisha districts and red-light districts), considerate, understanding, sympathetic, essence, the best, the cream" - }, - { - "example": "粋が身を食う", - "reading": "スイガミヲクウ", - "meaning": "too much pleasure ruins a man (esp. in reference to spending too much time with geisha and prostitutes), playing the dandy ruins a man" - }, - { - "example": "国粋", - "reading": "コクスイ", - "meaning": "national characteristics" - }, - { - "example": "清粋", - "reading": "セイスイ", - "meaning": "elegance" - } - ], - "kunyomiExamples": [ - { - "example": "粋", - "reading": "いき", - "meaning": "chic, smart, stylish, tasteful, refined, sophisticated, familiar with worldly pleasures and subtleties of human nature (esp. sexual relations, geisha districts and red-light districts), considerate, understanding, sympathetic, essence, the best, the cream" - }, - { - "example": "粋がる", - "reading": "いきがる", - "meaning": "to be pretentious, to put on airs, to try to appear smart, to act brave, to try to look cool" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "九", - "十", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31883_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c8b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c8b.gif", - "uri": "http://jisho.org/search/%E7%B2%8B%23kanji" - }, - { - "query": "衰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1432", - "strokeCount": 10, - "meaning": "decline, wane, weaken", - "kunyomi": [ - "おとろ.える" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "衰退", - "reading": "スイタイ", - "meaning": "decline, degeneration, decay, waning, ebbing" - }, - { - "example": "衰弱", - "reading": "スイジャク", - "meaning": "weakness, debility, breakdown, prostration" - }, - { - "example": "減衰", - "reading": "ゲンスイ", - "meaning": "attenuation, damping, decay" - }, - { - "example": "盛衰", - "reading": "セイスイ", - "meaning": "rise and fall, ups and downs, welfare, vicissitudes" - } - ], - "kunyomiExamples": [ - { - "example": "衰える", - "reading": "おとろえる", - "meaning": "to become weak, to decline, to wear, to abate, to decay, to wither, to waste away" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "一", - "亠", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34928_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08870.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8870.gif", - "uri": "http://jisho.org/search/%E8%A1%B0%23kanji" - }, - { - "query": "酔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1640", - "strokeCount": 11, - "meaning": "drunk, feel sick, poisoned, elated, spellbound", - "kunyomi": [ - "よ.う", - "よ.い", - "よ" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "酔客", - "reading": "スイキャク", - "meaning": "drunken person" - }, - { - "example": "酔漢", - "reading": "スイカン", - "meaning": "drunkard, drunken fellow" - }, - { - "example": "陶酔", - "reading": "トウスイ", - "meaning": "intoxication, being carried away by, being enraptured by" - }, - { - "example": "大酔", - "reading": "タイスイ", - "meaning": "dead drunk" - } - ], - "kunyomiExamples": [ - { - "example": "酔う", - "reading": "よう", - "meaning": "to get drunk, to become intoxicated, to feel sick (e.g. in a vehicle), to become nauseated, to be elated, to be exalted, to be spellbound, to be in raptures" - }, - { - "example": "酔い", - "reading": "よい", - "meaning": "drunkenness, intoxication, motion sickness, travel sickness" - }, - { - "example": "酔いが覚める", - "reading": "よいがさめる", - "meaning": "to sober up" - }, - { - "example": "酔い", - "reading": "よい", - "meaning": "drunkenness, intoxication, motion sickness, travel sickness" - }, - { - "example": "酔う", - "reading": "よう", - "meaning": "to get drunk, to become intoxicated, to feel sick (e.g. in a vehicle), to become nauseated, to be elated, to be exalted, to be spellbound, to be in raptures" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "九", - "十", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37204_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09154.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9154.gif", - "uri": "http://jisho.org/search/%E9%85%94%23kanji" - }, - { - "query": "遂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1423", - "strokeCount": 12, - "meaning": "consummate, accomplish, attain, commit (suicide)", - "kunyomi": [ - "と.げる", - "つい.に" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "遂行", - "reading": "スイコウ", - "meaning": "accomplishment, execution" - }, - { - "example": "完遂", - "reading": "カンスイ", - "meaning": "successful execution, accomplishment, completion, fulfillment, carrying through" - }, - { - "example": "既遂", - "reading": "キスイ", - "meaning": "already finished (action), already accomplished, committed (crime; as opposed to attempted), perpetrated, consummated, successful" - } - ], - "kunyomiExamples": [ - { - "example": "遂げる", - "reading": "とげる", - "meaning": "to accomplish, to achieve, to carry out, to arrive at (a certain outcome), to come to, to end with" - }, - { - "example": "遂に", - "reading": "ついに", - "meaning": "finally, at last, in the end, after all, never (happened)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "并", - "豕", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36930_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09042.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9042.gif", - "uri": "http://jisho.org/search/%E9%81%82%23kanji" - }, - { - "query": "睡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1739", - "strokeCount": 13, - "meaning": "drowsy, sleep, die", - "kunyomi": [ - "ねむ.る", - "ねむ.い" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "睡眠", - "reading": "スイミン", - "meaning": "sleep" - }, - { - "example": "睡魔", - "reading": "スイマ", - "meaning": "sleepiness, drowsiness, the sandman, Morpheus" - }, - { - "example": "昏睡", - "reading": "コンスイ", - "meaning": "coma, dead sleep" - }, - { - "example": "仮睡", - "reading": "カスイ", - "meaning": "nap, siesta" - } - ], - "kunyomiExamples": [ - { - "example": "眠る", - "reading": "ねむる", - "meaning": "to sleep, to die, to rest (in peace), to lie (buried), to sleep (in the grave), to lie idle (e.g. of resources), to lie unused, to lie untapped, to lie untouched, to close one's eyes" - }, - { - "example": "眠い", - "reading": "ねむい", - "meaning": "sleepy, drowsy, somnolent" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "ノ", - "一", - "目", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30561_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07761.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7761.gif", - "uri": "http://jisho.org/search/%E7%9D%A1%23kanji" - }, - { - "query": "穂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1656", - "strokeCount": 15, - "meaning": "ear, ear (grain), head, crest (wave)", - "kunyomi": [ - "ほ" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "穂状", - "reading": "スイジョウ", - "meaning": "shaped like an ear of grain" - }, - { - "example": "穂状花序", - "reading": "スイジョウカジョ", - "meaning": "spike (inflorescence)" - }, - { - "example": "花穂", - "reading": "カスイ", - "meaning": "spike" - }, - { - "example": "出穂", - "reading": "シュッスイ", - "meaning": "appearance of ears of grain" - } - ], - "kunyomiExamples": [ - { - "example": "穂", - "reading": "ほ", - "meaning": "ear (of plant), head (of plant), point, tip, scion (in grafting), cion" - }, - { - "example": "穂木", - "reading": "ほぎ", - "meaning": "twig used in grafting, budwood" - }, - { - "example": "花穂", - "reading": "かすい", - "meaning": "spike" - }, - { - "example": "初穂", - "reading": "はつほ", - "meaning": "first ears of rice of the season, first crops of the season, first harvest of the season, offering (to the gods)" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "十", - "心", - "田", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31298_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a42.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a42.gif", - "uri": "http://jisho.org/search/%E7%A9%82%23kanji" - }, - { - "query": "随", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1396", - "strokeCount": 12, - "meaning": "follow, though, notwithstanding, while, during, both, all, obey, submit to, comply, at the mercy of (the waves)", - "kunyomi": [ - "まにま.に", - "したが.う" - ], - "onyomi": [ - "ズイ" - ], - "onyomiExamples": [ - { - "example": "随意", - "reading": "ズイイ", - "meaning": "voluntary, optional, free, elective" - }, - { - "example": "随一", - "reading": "ズイイチ", - "meaning": "best, greatest, first" - }, - { - "example": "追随", - "reading": "ツイズイ", - "meaning": "following (in the footsteps of), catching up with, coming level with" - }, - { - "example": "付随", - "reading": "フズイ", - "meaning": "being incident to, being accompanied by, being collateral with, being attached to" - } - ], - "kunyomiExamples": [ - { - "example": "随に", - "reading": "まにまに", - "meaning": "at the mercy of (e.g. wind, waves), (act) as one is told (by)" - }, - { - "example": "従う", - "reading": "したがう", - "meaning": "to obey (an order, law, etc.), to abide by (a rule, custom, etc.), to follow, to observe, to conform to, to yield to, to follow (a person), to accompany, to go with, to go alongside (e.g. a river), to follow (e.g. a sign), to serve (as), to engage in (work)" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "ノ", - "一", - "月", - "込", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38543_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0968f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/968f.gif", - "uri": "http://jisho.org/search/%E9%9A%8F%23kanji" - }, - { - "query": "髄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1652", - "strokeCount": 19, - "meaning": "marrow, pith, essence", - "kunyomi": [], - "onyomi": [ - "ズイ" - ], - "onyomiExamples": [ - { - "example": "髄", - "reading": "ズイ", - "meaning": "medulla, marrow, pith" - }, - { - "example": "髄膜炎", - "reading": "ズイマクエン", - "meaning": "meningitis" - }, - { - "example": "骨髄", - "reading": "コツズイ", - "meaning": "bone marrow, medulla, true spirit, one's mind" - }, - { - "example": "脊髄", - "reading": "セキズイ", - "meaning": "spinal cord" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "骨", - "meaning": "bone" - }, - "parts": [ - "ノ", - "一", - "冖", - "月", - "込", - "骨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39620_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ac4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ac4.gif", - "uri": "http://jisho.org/search/%E9%AB%84%23kanji" - }, - { - "query": "枢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1791", - "strokeCount": 8, - "meaning": "hinge, pivot, door", - "kunyomi": [ - "とぼそ", - "からくり" - ], - "onyomi": [ - "スウ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "枢軸", - "reading": "スウジク", - "meaning": "axle, pivot" - }, - { - "example": "枢機卿", - "reading": "スウキキョウ", - "meaning": "cardinal (Catholic church)" - }, - { - "example": "神経中枢", - "reading": "シンケイチュウスウ", - "meaning": "nerve centre" - }, - { - "example": "呼吸中枢", - "reading": "コキュウチュウスウ", - "meaning": "respiratory center, respiratory centre" - } - ], - "kunyomiExamples": [ - { - "example": "枢", - "reading": "とぼそ", - "meaning": "cavities in the frame of a door used as part of a pivot hinge, door" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "匚", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26530_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067a2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67a2.gif", - "uri": "http://jisho.org/search/%E6%9E%A2%23kanji" - }, - { - "query": "崇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1970", - "strokeCount": 11, - "meaning": "adore, respect, revere, worship", - "kunyomi": [ - "あが.める" - ], - "onyomi": [ - "スウ" - ], - "onyomiExamples": [ - { - "example": "崇拝", - "reading": "スウハイ", - "meaning": "worship, adoration, admiration, cult" - }, - { - "example": "崇高", - "reading": "スウコウ", - "meaning": "lofty, sublime, noble, the sublime (aesthetics)" - }, - { - "example": "尊崇", - "reading": "ソンスウ", - "meaning": "reverence, veneration" - } - ], - "kunyomiExamples": [ - { - "example": "崇める", - "reading": "あがめる", - "meaning": "to revere, to respect, to worship" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "二", - "宀", - "小", - "山", - "示" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23815_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05d07.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5d07.gif", - "uri": "http://jisho.org/search/%E5%B4%87%23kanji" - }, - { - "query": "据", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1468", - "strokeCount": 11, - "meaning": "set, lay a foundation, install, equip, squat down, sit down", - "kunyomi": [ - "す.える", - "す.わる" - ], - "onyomi": [ - "キョ" - ], - "onyomiExamples": [ - { - "example": "据銃", - "reading": "キョジュウ", - "meaning": "mounting a gun (i.e. holding the stock against one's shoulder), gun mount" - }, - { - "example": "拮据", - "reading": "キッキョ", - "meaning": "diligence, assiduity, pinching, hard toil" - } - ], - "kunyomiExamples": [ - { - "example": "据える", - "reading": "すえる", - "meaning": "to place (in position), to fix, to set (e.g. table), to lay (foundation), to install, to seat (someone), to settle (upon something), to fix (e.g. one's gaze), to apply (moxa)" - }, - { - "example": "座る", - "reading": "すわる", - "meaning": "to sit, to squat, to assume (a position), to hold steady, to hold still" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "十", - "口", - "尸", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25454_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0636e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/636e.gif", - "uri": "http://jisho.org/search/%E6%8D%AE%23kanji" - }, - { - "query": "杉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1095", - "strokeCount": 7, - "meaning": "cedar, cryptomeria", - "kunyomi": [ - "すぎ" - ], - "onyomi": [ - "サン" - ], - "onyomiExamples": [ - { - "example": "老杉", - "reading": "ロウサン", - "meaning": "old cryptomeria" - } - ], - "kunyomiExamples": [ - { - "example": "杉", - "reading": "すぎ", - "meaning": "Japanese cedar (Cryptomeria japonica)" - }, - { - "example": "杉戸", - "reading": "すぎど", - "meaning": "door made of cedar" - }, - { - "example": "神代杉", - "reading": "じんだいすぎ", - "meaning": "lignitized Japanese cedar, lignitised Japanese cedar" - }, - { - "example": "赤杉", - "reading": "あかすぎ", - "meaning": "redwood, sequoia" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "彡", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26441_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06749.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6749.gif", - "uri": "http://jisho.org/search/%E6%9D%89%23kanji" - }, - { - "query": "裾", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2334", - "strokeCount": 13, - "meaning": "cuff, hem, foot of mountain", - "kunyomi": [ - "すそ" - ], - "onyomi": [ - "キョ", - "コ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "裾", - "reading": "すそ", - "meaning": "hem, (trouser) cuff, shirttail, bottom (of a kimono), train (of a dress), bottom part, bottom edge, foot (of a mountain), tips (of hair), downstream" - }, - { - "example": "裾野", - "reading": "すその", - "meaning": "foot of a mountain, plain at the foot of a mountain, range, spread, extent, encompassing circle" - }, - { - "example": "山裾", - "reading": "やますそ", - "meaning": "foot or base of a mountain, foothills" - }, - { - "example": "裳裾", - "reading": "もすそ", - "meaning": "cuff (of pants), hem (of skirt), train (of dress), foot (of mountain)" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "初", - "十", - "口", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35070_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088fe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88fe.gif", - "uri": "http://jisho.org/search/%E8%A3%BE%23kanji" - }, - { - "query": "瀬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1152", - "strokeCount": 19, - "meaning": "rapids, current, torrent, shallows, shoal", - "kunyomi": [ - "せ" - ], - "onyomi": [ - "ライ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "瀬", - "reading": "せ", - "meaning": "shallows, shoal, rapids, current, torrent, position, place, chance, opportunity" - }, - { - "example": "瀬戸", - "reading": "せと", - "meaning": "strait, channel" - }, - { - "example": "早瀬", - "reading": "はやせ", - "meaning": "swift current, rapids" - }, - { - "example": "高瀬", - "reading": "たかせ", - "meaning": "shallow river, shallows, flatboat, river boat" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "口", - "木", - "汁", - "目", - "貝", - "頁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28716_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0702c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/702c.gif", - "uri": "http://jisho.org/search/%E7%80%AC%23kanji" - }, - { - "query": "是", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1045", - "strokeCount": 9, - "meaning": "just so, this, right, justice", - "kunyomi": [ - "これ", - "この", - "ここ" - ], - "onyomi": [ - "ゼ", - "シ" - ], - "onyomiExamples": [ - { - "example": "是", - "reading": "ゼ", - "meaning": "righteousness, justice, right" - }, - { - "example": "是正", - "reading": "ゼセイ", - "meaning": "correction, revision, redressing, rectifying" - }, - { - "example": "国是", - "reading": "コクゼ", - "meaning": "national policy" - }, - { - "example": "党是", - "reading": "トウゼ", - "meaning": "party platform, party principles" - } - ], - "kunyomiExamples": [ - { - "example": "此れ", - "reading": "これ", - "meaning": "this, this one, this person, now, this point (in time), here, used to stress the subject of a sentence, I, me" - }, - { - "example": "これ迄", - "reading": "これまで", - "meaning": "so far, up to now, hitherto, that's enough (for today), it ends here" - }, - { - "example": "此処", - "reading": "ここ", - "meaning": "here, this place, this point, here, now, these past ... (e.g. three years), these last ..., the next ... (e.g. few days), these next ..." - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "日", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26159_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0662f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/662f.gif", - "uri": "http://jisho.org/search/%E6%98%AF%23kanji" - }, - { - "query": "姓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1628", - "strokeCount": 8, - "meaning": "surname", - "kunyomi": [], - "onyomi": [ - "セイ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "姓", - "reading": "セイ", - "meaning": "surname, family name, hereditary title (used in ancient Japan to denote rank and political standing)" - }, - { - "example": "姓名", - "reading": "セイメイ", - "meaning": "(full) name, family name and given name" - }, - { - "example": "旧姓", - "reading": "キュウセイ", - "meaning": "one's original family name, maiden name" - }, - { - "example": "同姓", - "reading": "ドウセイ", - "meaning": "same surname" - }, - { - "example": "姓", - "reading": "セイ", - "meaning": "surname, family name, hereditary title (used in ancient Japan to denote rank and political standing)" - }, - { - "example": "俗姓", - "reading": "ゾクショウ", - "meaning": "secular surname (of a priest)" - }, - { - "example": "本百姓", - "reading": "ホンヒャクショウ", - "meaning": "freeholding farmer, freeholding peasant" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "生" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22995_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059d3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59d3.gif", - "uri": "http://jisho.org/search/%E5%A7%93%23kanji" - }, - { - "query": "征", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1578", - "strokeCount": 8, - "meaning": "subjugate, attack the rebellious, collect taxes", - "kunyomi": [], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "征服", - "reading": "セイフク", - "meaning": "conquest, subjugation, overcoming" - }, - { - "example": "征圧", - "reading": "セイアツ", - "meaning": "conquest, subjugation, overcoming, controlling" - }, - { - "example": "出征", - "reading": "シュッセイ", - "meaning": "going to war, departure for the front, departure for military service (in response to a draft)" - }, - { - "example": "長征", - "reading": "チョウセイ", - "meaning": "lengthy military expedition, the Long March (China, 1934-1936), Long March (series of Chinese launch vehicles)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "一", - "彳", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24449_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f81.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f81.gif", - "uri": "http://jisho.org/search/%E5%BE%81%23kanji" - }, - { - "query": "斉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1209", - "strokeCount": 8, - "meaning": "adjusted, alike, equal, similar variety of", - "kunyomi": [ - "そろ.う", - "ひと.しい", - "ひと.しく", - "あたる", - "はやい" - ], - "onyomi": [ - "セイ", - "サイ" - ], - "onyomiExamples": [ - { - "example": "斉", - "reading": "セイ", - "meaning": "Qi (kingdom in China during the Spring and Autumn Period and the Period of the Warring States), Ch'i" - }, - { - "example": "斉唱", - "reading": "セイショウ", - "meaning": "singing or chanting in unison" - }, - { - "example": "一斉", - "reading": "イッセイ", - "meaning": "simultaneous, all at once" - }, - { - "example": "整斉", - "reading": "セイセイ", - "meaning": "symmetrical" - }, - { - "example": "斎行", - "reading": "サイコウ", - "meaning": "carrying out (a religious festival or ceremony)" - }, - { - "example": "斉衡", - "reading": "サイコウ", - "meaning": "Saikō era (854.11.30-857.2.21)" - } - ], - "kunyomiExamples": [ - { - "example": "等しい", - "reading": "ひとしい", - "meaning": "equal, identical, the same, no different (to), just like, equivalent" - }, - { - "example": "等しく", - "reading": "ひとしく", - "meaning": "equally, evenly, similarly, alike" - } - ], - "radical": { - "symbol": "文", - "meaning": "script, literature" - }, - "parts": [ - "ノ", - "廾", - "文", - "斉", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25993_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06589.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6589.gif", - "uri": "http://jisho.org/search/%E6%96%89%23kanji" - }, - { - "query": "牲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1274", - "strokeCount": 9, - "meaning": "animal sacrifice, offering", - "kunyomi": [], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [], - "kunyomiExamples": [], - "radical": { - "symbol": "牛", - "forms": [ - "牜" - ], - "meaning": "cow" - }, - "parts": [ - "牛", - "生" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29298_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07272.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7272.gif", - "uri": "http://jisho.org/search/%E7%89%B2%23kanji" - }, - { - "query": "凄", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2313", - "strokeCount": 10, - "meaning": "uncanny, weird, threatening, horrible", - "kunyomi": [ - "さむ.い", - "すご.い", - "すさ.まじい" - ], - "onyomi": [ - "セイ", - "サイ" - ], - "onyomiExamples": [ - { - "example": "凄艶", - "reading": "セイエン", - "meaning": "weirdly beautiful" - }, - { - "example": "凄惨", - "reading": "セイサン", - "meaning": "ghastly, gruesome, appalling, lurid" - } - ], - "kunyomiExamples": [ - { - "example": "凄い", - "reading": "すごい", - "meaning": "terrible, dreadful, amazing (e.g. of strength), great (e.g. of skills), wonderful, terrific, to a great extent, vast (in numbers), awfully, very, immensely" - }, - { - "example": "凄い事になる", - "reading": "すごいことになる", - "meaning": "to go crazy (esp. of a situation or thing), to get out of hand, to end up in an extreme state" - }, - { - "example": "凄まじい", - "reading": "すさまじい", - "meaning": "terrific, fierce, terrible, tremendous, dreadful, awful, amazing, absurd, cutthroat, intense" - } - ], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "ヨ", - "冫", - "十", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20932_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051c4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51c4.gif", - "uri": "http://jisho.org/search/%E5%87%84%23kanji" - }, - { - "query": "逝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2018", - "strokeCount": 10, - "meaning": "departed, die", - "kunyomi": [ - "ゆ.く", - "い.く" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "逝去", - "reading": "セイキョ", - "meaning": "death" - }, - { - "example": "永逝", - "reading": "エイセイ", - "meaning": "death, dying" - }, - { - "example": "薨逝", - "reading": "コウセイ", - "meaning": "death (of a nobleman)" - } - ], - "kunyomiExamples": [ - { - "example": "行く", - "reading": "いく", - "meaning": "to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination" - }, - { - "example": "行く", - "reading": "いく", - "meaning": "to go, to move (in a direction or towards a specific location), to head (towards), to be transported (towards), to reach, to proceed, to take place, to pass through, to come and go, to walk, to die, to pass away, to do (in a specific way), to stream, to flow, to continue, to have an orgasm, to come, to cum, to trip, to get high, to have a drug-induced hallucination" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "扎", - "斤", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36893_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0901d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/901d.gif", - "uri": "http://jisho.org/search/%E9%80%9D%23kanji" - }, - { - "query": "婿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2099", - "strokeCount": 12, - "meaning": "bridegroom, son-in-law", - "kunyomi": [ - "むこ" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "女婿", - "reading": "ジョセイ", - "meaning": "one's son-in-law" - }, - { - "example": "愛婿", - "reading": "アイセイ", - "meaning": "one's favorite son-in-law, one's favourite son-in-law" - } - ], - "kunyomiExamples": [ - { - "example": "婿", - "reading": "むこ", - "meaning": "husband, groom, (one's) son-in-law" - }, - { - "example": "婿入", - "reading": "むこいり", - "meaning": "being adopted into the family of one's bride" - }, - { - "example": "花婿", - "reading": "はなむこ", - "meaning": "bridegroom" - }, - { - "example": "相婿", - "reading": "あいむこ", - "meaning": "brother-in-law" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "月", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23167_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a7f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a7f.gif", - "uri": "http://jisho.org/search/%E5%A9%BF%23kanji" - }, - { - "query": "誓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1567", - "strokeCount": 14, - "meaning": "vow, swear, pledge", - "kunyomi": [ - "ちか.う" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "誓約", - "reading": "セイヤク", - "meaning": "oath, vow, pledge, covenant" - }, - { - "example": "誓約書", - "reading": "セイヤクショ", - "meaning": "written oath, covenant, pledge" - }, - { - "example": "祈誓", - "reading": "キセイ", - "meaning": "vow, oath, pledge" - }, - { - "example": "偽誓", - "reading": "ギセイ", - "meaning": "perjury, false oath" - } - ], - "kunyomiExamples": [ - { - "example": "誓う", - "reading": "ちかう", - "meaning": "to swear, to vow, to take an oath, to pledge" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "扎", - "斤", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a93.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a93.gif", - "uri": "http://jisho.org/search/%E8%AA%93%23kanji" - }, - { - "query": "請", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "524", - "strokeCount": 15, - "meaning": "solicit, invite, ask", - "kunyomi": [ - "こ.う", - "う.ける" - ], - "onyomi": [ - "セイ", - "シン", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "請求", - "reading": "セイキュウ", - "meaning": "claim, demand, charge, application, request, billing (for a service)" - }, - { - "example": "請願", - "reading": "セイガン", - "meaning": "petition" - }, - { - "example": "招請", - "reading": "ショウセイ", - "meaning": "invitation" - }, - { - "example": "懇請", - "reading": "コンセイ", - "meaning": "appeal, entreaty, request" - }, - { - "example": "普請", - "reading": "フシン", - "meaning": "building, construction, group effort by Buddhist practitioners, group activities by a community (e.g. cleaning, etc.)" - }, - { - "example": "安普請", - "reading": "ヤスブシン", - "meaning": "cheap structure (e.g. of houses)" - }, - { - "example": "請", - "reading": "ショウ", - "meaning": "request, invitation, privilege in criminal law given to nobles of the fifth rank or above (ritsuryo system)" - }, - { - "example": "招待", - "reading": "ショウタイ", - "meaning": "invitation" - }, - { - "example": "招請", - "reading": "ショウセイ", - "meaning": "invitation" - }, - { - "example": "拝請", - "reading": "ハイショウ", - "meaning": "humbly inviting" - } - ], - "kunyomiExamples": [ - { - "example": "請う", - "reading": "こう", - "meaning": "to beg, to ask, to request, to invite" - }, - { - "example": "乞うご期待", - "reading": "こうごきたい", - "meaning": "don't miss it, stay tuned, coming soon, look forward to it" - }, - { - "example": "受ける", - "reading": "うける", - "meaning": "to receive, to get, to catch (e.g. a ball), to be struck by (wind, waves, sunlight, etc.), to sustain (damage), to incur (a loss), to suffer (an injury), to feel (influence), to undergo (e.g. surgery), to take (a test), to accept (a challenge), to be given (e.g. life, talent), to find funny, to find humorous, to be amused (by), to follow, to succeed, to be descended from, to face (south, etc.), to be modified by, to obtain (a pawned item, etc.) by paying a fee, to be well-received, to become popular, to go down well" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "二", - "亠", - "土", - "月", - "言", - "青" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35531_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08acb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8acb.gif", - "uri": "http://jisho.org/search/%E8%AB%8B%23kanji" - }, - { - "query": "醒", - "found": true, - "taughtIn": "junior high", - "strokeCount": 16, - "meaning": "awake, be disillusioned, sober up", - "kunyomi": [ - "さ.ます", - "さ.める" - ], - "onyomi": [ - "セイ" - ], - "onyomiExamples": [ - { - "example": "醒覚", - "reading": "セイカク", - "meaning": "awakening, waking up, opening one's eyes" - }, - { - "example": "警醒", - "reading": "ケイセイ", - "meaning": "warning" - }, - { - "example": "大覚醒", - "reading": "ダイカクセイ", - "meaning": "Great Awakening (18th century American Christian revival movement)" - } - ], - "kunyomiExamples": [ - { - "example": "覚ます", - "reading": "さます", - "meaning": "to awaken, to arouse from sleep, to bring to one's senses, to disabuse (someone of), to sober up, to dampen, to throw a damper on, to spoil" - }, - { - "example": "覚める", - "reading": "さめる", - "meaning": "to wake, to wake up, to become sober, to sober up, to regain consciousness (e.g. after anaesthesia), to come to one's senses, to be disillusioned" - } - ], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "日", - "生", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37266_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09192.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9192.gif", - "uri": "http://jisho.org/search/%E9%86%92%23kanji" - }, - { - "query": "斥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2231", - "strokeCount": 5, - "meaning": "reject, retreat, recede, withdraw, repel, repulse", - "kunyomi": [ - "しりぞ.ける" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "斥力", - "reading": "セキリョク", - "meaning": "repulsion, repulsive force" - }, - { - "example": "外国人排斥", - "reading": "ガイコクジンハイセキ", - "meaning": "xenophobia, exclusion (of foreigners)" - }, - { - "example": "除斥", - "reading": "ジョセキ", - "meaning": "exclusion" - } - ], - "kunyomiExamples": [ - { - "example": "退ける", - "reading": "しりぞける", - "meaning": "to repel, to drive away, to repulse, to reject" - } - ], - "radical": { - "symbol": "斤", - "meaning": "axe" - }, - "parts": [ - "丶", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26021_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065a5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65a5.gif", - "uri": "http://jisho.org/search/%E6%96%A5%23kanji" - }, - { - "query": "析", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "980", - "strokeCount": 8, - "meaning": "chop, divide, tear, analyze", - "kunyomi": [], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "析出", - "reading": "セキシュツ", - "meaning": "separation, deposition, precipitation" - }, - { - "example": "透析", - "reading": "トウセキ", - "meaning": "dialysis" - }, - { - "example": "人工透析", - "reading": "ジンコウトウセキ", - "meaning": "(artificial) dialysis" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "斤", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26512_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06790.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6790.gif", - "uri": "http://jisho.org/search/%E6%9E%90%23kanji" - }, - { - "query": "脊", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2299", - "strokeCount": 10, - "meaning": "stature, height", - "kunyomi": [ - "せ", - "せい" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "脊椎", - "reading": "セキツイ", - "meaning": "spine, vertebral column" - }, - { - "example": "脊髄", - "reading": "セキズイ", - "meaning": "spinal cord" - } - ], - "kunyomiExamples": [ - { - "example": "背", - "reading": "せ", - "meaning": "back, spine, reverse, rear side, height, stature, ridge (of a mountain)" - }, - { - "example": "背", - "reading": "せい", - "meaning": "height, stature" - }, - { - "example": "背", - "reading": "せい", - "meaning": "height, stature" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "二", - "人", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33034_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0810a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/810a.gif", - "uri": "http://jisho.org/search/%E8%84%8A%23kanji" - }, - { - "query": "隻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1546", - "strokeCount": 10, - "meaning": "vessels, counter for ships, fish, birds, arrows, one of a pair", - "kunyomi": [], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "隻", - "reading": "セキ", - "meaning": "counter for ships (large boats), counter for half of a pair (e.g. half of a folding screen), counter for fish, birds, arrows, etc." - }, - { - "example": "隻影", - "reading": "セキエイ", - "meaning": "a glimpse of an object's outlines" - }, - { - "example": "数隻", - "reading": "スウセキ", - "meaning": "several (boats)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "又", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38587_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096bb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96bb.gif", - "uri": "http://jisho.org/search/%E9%9A%BB%23kanji" - }, - { - "query": "惜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1641", - "strokeCount": 11, - "meaning": "pity, be sparing of, frugal, stingy, regret", - "kunyomi": [ - "お.しい", - "お.しむ" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "惜敗", - "reading": "セキハイ", - "meaning": "regrettable defeat, defeat by a narrow margin" - }, - { - "example": "惜春", - "reading": "セキシュン", - "meaning": "lamenting the passing of spring, lamenting the passing of one's youth" - }, - { - "example": "痛惜", - "reading": "ツウセキ", - "meaning": "deep regret" - }, - { - "example": "哀惜", - "reading": "アイセキ", - "meaning": "grief, sorrow" - } - ], - "kunyomiExamples": [ - { - "example": "惜しい", - "reading": "おしい", - "meaning": "regrettable, disappointing, unfortunate, precious, dear, valuable, too good for, deserving better, almost (but not quite), close (but no cigar)" - }, - { - "example": "惜しむ", - "reading": "おしむ", - "meaning": "to be frugal, to be sparing, to value, to hold dear, to regret (e.g. a loss), to feel sorry (for), to be unwilling, to be reluctant" - }, - { - "example": "惜しむべき", - "reading": "おしむべき", - "meaning": "lamentable, regrettable" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "二", - "忙", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24796_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060dc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60dc.gif", - "uri": "http://jisho.org/search/%E6%83%9C%23kanji" - }, - { - "query": "戚", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "grieve, relatives", - "kunyomi": [ - "いた.む", - "うれ.える", - "みうち" - ], - "onyomi": [ - "ソク", - "セキ" - ], - "onyomiExamples": [ - { - "example": "外戚", - "reading": "ガイセキ", - "meaning": "maternal relative" - }, - { - "example": "休戚", - "reading": "キュウセキ", - "meaning": "weal and woe, joys and sorrows, welfare" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "ノ", - "卜", - "小", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25114_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0621a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/621a.gif", - "uri": "http://jisho.org/search/%E6%88%9A%23kanji" - }, - { - "query": "跡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "953", - "strokeCount": 13, - "meaning": "tracks, mark, print, impression", - "kunyomi": [ - "あと" - ], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "跡", - "reading": "セキ", - "meaning": "trace" - }, - { - "example": "史跡", - "reading": "シセキ", - "meaning": "historic landmark, historic site, historic remains" - }, - { - "example": "軌跡", - "reading": "キセキ", - "meaning": "tire track, traces of a person or thing, path one has taken, locus" - } - ], - "kunyomiExamples": [ - { - "example": "跡", - "reading": "あと", - "meaning": "trace, tracks, mark, sign, site, remains, ruins, scar" - }, - { - "example": "後始末", - "reading": "あとしまつ", - "meaning": "settlement (of affairs), remedial measures, cleaning up afterwards" - }, - { - "example": "焼け跡", - "reading": "やけあと", - "meaning": "ruins of a fire, fire-devastated area" - }, - { - "example": "後々", - "reading": "あとあと", - "meaning": "future, distant future" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "亠", - "口", - "止", - "赤", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36321_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08de1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8de1.gif", - "uri": "http://jisho.org/search/%E8%B7%A1%23kanji" - }, - { - "query": "籍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "907", - "strokeCount": 20, - "meaning": "enroll, domiciliary register, membership", - "kunyomi": [], - "onyomi": [ - "セキ" - ], - "onyomiExamples": [ - { - "example": "籍", - "reading": "セキ", - "meaning": "one's family register, one's domicile, nationality, membership (club, party, etc.)" - }, - { - "example": "籍船", - "reading": "セキセン", - "meaning": "ship registry" - }, - { - "example": "党籍", - "reading": "トウセキ", - "meaning": "party membership, party register" - }, - { - "example": "移籍", - "reading": "イセキ", - "meaning": "transfer (of one's name into another family register), transfer (to another team, company, etc.)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "ノ", - "ハ", - "一", - "乞", - "二", - "亠", - "土", - "日", - "木", - "竹", - "耒", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31821_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c4d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c4d.gif", - "uri": "http://jisho.org/search/%E7%B1%8D%23kanji" - }, - { - "query": "拙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1938", - "strokeCount": 8, - "meaning": "bungling, clumsy, unskillful", - "kunyomi": [ - "つたな.い" - ], - "onyomi": [ - "セツ" - ], - "onyomiExamples": [ - { - "example": "拙", - "reading": "セツ", - "meaning": "poor, unskillful, clumsy, I, me" - }, - { - "example": "拙劣", - "reading": "セツレツ", - "meaning": "clumsy, unskillful" - }, - { - "example": "稚拙", - "reading": "チセツ", - "meaning": "unskillful, childish, immature, naive, artless, clumsy, crude" - }, - { - "example": "巧拙", - "reading": "コウセツ", - "meaning": "skill, workmanship, dexterity, quality" - } - ], - "kunyomiExamples": [ - { - "example": "拙い", - "reading": "つたない", - "meaning": "poor-quality, shoddy, crude, unskillful, inexpert, maladroit, inept, foolish, clumsy, unlucky" - }, - { - "example": "拙い文章", - "reading": "つたないぶんしょう", - "meaning": "poor writing, shoddy writing" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "山", - "扎", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25305_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062d9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62d9.gif", - "uri": "http://jisho.org/search/%E6%8B%99%23kanji" - }, - { - "query": "窃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1871", - "strokeCount": 9, - "meaning": "stealth, steal, secret, private, hushed", - "kunyomi": [ - "ぬす.む", - "ひそ.か" - ], - "onyomi": [ - "セツ" - ], - "onyomiExamples": [ - { - "example": "窃用", - "reading": "セツヨウ", - "meaning": "using without permission, using information obtained in the course of one's duties" - }, - { - "example": "剽窃", - "reading": "ヒョウセツ", - "meaning": "plagiarism, piracy" - }, - { - "example": "鼠窃", - "reading": "ソセツ", - "meaning": "sneak-thief" - } - ], - "kunyomiExamples": [ - { - "example": "密か", - "reading": "ひそか", - "meaning": "secret, private, surreptitious" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "刀", - "匕", - "宀", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31363_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a83.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a83.gif", - "uri": "http://jisho.org/search/%E7%AA%83%23kanji" - }, - { - "query": "摂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1779", - "strokeCount": 13, - "meaning": "vicarious, surrogate, act in addition to, take in, absorb", - "kunyomi": [ - "おさ.める", - "かね.る", - "と.る" - ], - "onyomi": [ - "セツ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "摂理", - "reading": "セツリ", - "meaning": "(divine) providence, dispensation" - }, - { - "example": "摂護腺", - "reading": "セツゴセン", - "meaning": "prostate gland" - }, - { - "example": "包摂", - "reading": "ホウセツ", - "meaning": "subsumption, connotation, inclusion, encompassing" - }, - { - "example": "兼摂", - "reading": "ケンセツ", - "meaning": "serving concurrently as, holding the additional post of" - }, - { - "example": "接心", - "reading": "セッシン", - "meaning": "concentration, period of intensive zazen" - } - ], - "kunyomiExamples": [ - { - "example": "摂る", - "reading": "とる", - "meaning": "to have (e.g. lunch), to take (e.g. vitamins)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "冫", - "扎", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25666_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06442.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6442.gif", - "uri": "http://jisho.org/search/%E6%91%82%23kanji" - }, - { - "query": "仙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1157", - "strokeCount": 5, - "meaning": "hermit, wizard, cent", - "kunyomi": [], - "onyomi": [ - "セン", - "セント" - ], - "onyomiExamples": [ - { - "example": "仙", - "reading": "セン", - "meaning": "hermit, wizard, wizardry" - }, - { - "example": "仙", - "reading": "セント", - "meaning": "cent (monetary unit)" - }, - { - "example": "水仙", - "reading": "スイセン", - "meaning": "daffodil (esp. Narcissus tazetta var. chinensis), narcissus" - }, - { - "example": "黄水仙", - "reading": "キズイセン", - "meaning": "jonquil (Narcissus jonquilla)" - }, - { - "example": "仙", - "reading": "セント", - "meaning": "cent (monetary unit)" - }, - { - "example": "仙洞御所", - "reading": "セントウゴショ", - "meaning": "palace of a retired emperor" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "山" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20185_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ed9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ed9.gif", - "uri": "http://jisho.org/search/%E4%BB%99%23kanji" - }, - { - "query": "占", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "694", - "strokeCount": 5, - "meaning": "fortune-telling, divining, forecasting, occupy, hold, have, get, take", - "kunyomi": [ - "し.める", - "うらな.う" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "占領", - "reading": "センリョウ", - "meaning": "occupying, having (an area) all to oneself, military occupation, possession, capture, seizure" - }, - { - "example": "占拠", - "reading": "センキョ", - "meaning": "occupation (e.g. of territory), exclusive possession" - }, - { - "example": "寡占", - "reading": "カセン", - "meaning": "oligopoly" - }, - { - "example": "買い手寡占", - "reading": "カイテカセン", - "meaning": "oligopsony" - } - ], - "kunyomiExamples": [ - { - "example": "占める", - "reading": "しめる", - "meaning": "to occupy, to hold, to account for, to make up, to take up" - }, - { - "example": "占う", - "reading": "うらなう", - "meaning": "to tell someone's fortune, to forecast, to predict, to divine" - } - ], - "radical": { - "symbol": "卜", - "meaning": "divination" - }, - "parts": [ - "卜", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21344_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05360.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5360.gif", - "uri": "http://jisho.org/search/%E5%8D%A0%23kanji" - }, - { - "query": "扇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1805", - "strokeCount": 10, - "meaning": "fan, folding fan", - "kunyomi": [ - "おうぎ" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "扇子", - "reading": "センス", - "meaning": "folding fan" - }, - { - "example": "扇形", - "reading": "オウギガタ", - "meaning": "fan shape, sector" - }, - { - "example": "換気扇", - "reading": "カンキセン", - "meaning": "ventilation fan, extractor fan" - }, - { - "example": "夏炉冬扇", - "reading": "カロトウセン", - "meaning": "summer fires and winter fans, useless things" - } - ], - "kunyomiExamples": [ - { - "example": "扇", - "reading": "おうぎ", - "meaning": "folding fan" - }, - { - "example": "扇形", - "reading": "おうぎがた", - "meaning": "fan shape, sector" - }, - { - "example": "舞扇", - "reading": "まいおうぎ", - "meaning": "dancer's fan" - }, - { - "example": "絵扇", - "reading": "えおうぎ", - "meaning": "fan painted with a picture" - } - ], - "radical": { - "symbol": "戶", - "forms": [ - "户", - "戸" - ], - "meaning": "door, house" - }, - "parts": [ - "一", - "冫", - "尸", - "戸", - "羽" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25159_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06247.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6247.gif", - "uri": "http://jisho.org/search/%E6%89%87%23kanji" - }, - { - "query": "栓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2199", - "strokeCount": 10, - "meaning": "plug, bolt, cork, bung, stopper", - "kunyomi": [], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "栓", - "reading": "セン", - "meaning": "stopper, cork, plug, bung, tap, faucet, stopcock" - }, - { - "example": "栓抜き", - "reading": "センヌキ", - "meaning": "bottle opener, corkscrew" - }, - { - "example": "脳血栓", - "reading": "ノウケッセン", - "meaning": "cerebral thrombosis" - }, - { - "example": "血栓", - "reading": "ケッセン", - "meaning": "thrombus, blood clot" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "个", - "木", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26643_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06813.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6813.gif", - "uri": "http://jisho.org/search/%E6%A0%93%23kanji" - }, - { - "query": "旋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1801", - "strokeCount": 11, - "meaning": "rotation, go around", - "kunyomi": [ - "め.ぐる", - "いばり" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "旋律", - "reading": "センリツ", - "meaning": "melody, tune" - }, - { - "example": "旋風", - "reading": "センプウ", - "meaning": "whirlwind, sensation, commotion, hullabaloo" - }, - { - "example": "螺旋", - "reading": "ラセン", - "meaning": "spiral, helix, screw" - }, - { - "example": "回旋", - "reading": "カイセン", - "meaning": "rotation, revolution, convolution" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "方", - "meaning": "square" - }, - "parts": [ - "乞", - "方", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26059_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65cb.gif", - "uri": "http://jisho.org/search/%E6%97%8B%23kanji" - }, - { - "query": "煎", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2458", - "strokeCount": 13, - "meaning": "broil, parch, roast, boil", - "kunyomi": [ - "せん.じる", - "い.る", - "に.る" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "煎", - "reading": "セン", - "meaning": "infusing (tea), infusion" - }, - { - "example": "煎餅", - "reading": "センベイ", - "meaning": "rice cracker, Japanese cracker, rice cookie, wafer" - }, - { - "example": "焙煎", - "reading": "バイセン", - "meaning": "roasting (e.g. of coffee)" - }, - { - "example": "香煎", - "reading": "コウセン", - "meaning": "roasted barley flour, parched flour with various ingredients added and drunk in hot water" - } - ], - "kunyomiExamples": [ - { - "example": "煎じる", - "reading": "せんじる", - "meaning": "to boil, to decoct, to infuse" - }, - { - "example": "炒る", - "reading": "いる", - "meaning": "to roast, to parch, to toast, to boil down" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "一", - "刈", - "并", - "月", - "杰" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29006_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0714e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/714e.gif", - "uri": "http://jisho.org/search/%E7%85%8E%23kanji" - }, - { - "query": "羨", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "envious, be jealous, covet", - "kunyomi": [ - "うらや.む", - "あまり" - ], - "onyomi": [ - "セン", - "エン" - ], - "onyomiExamples": [ - { - "example": "羨望", - "reading": "センボウ", - "meaning": "envy" - }, - { - "example": "羨望の的", - "reading": "センボウノマト", - "meaning": "object of envy" - }, - { - "example": "欣羨", - "reading": "キンセン", - "meaning": "being very jealous, extreme jealousy" - } - ], - "kunyomiExamples": [ - { - "example": "羨む", - "reading": "うらやむ", - "meaning": "to envy, to be envious of, to be jealous of" - } - ], - "radical": { - "symbol": "羊", - "forms": [ - "⺶" - ], - "meaning": "sheep" - }, - "parts": [ - "并", - "欠", - "汁", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32680_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07fa8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7fa8.gif", - "uri": "http://jisho.org/search/%E7%BE%A8%23kanji" - }, - { - "query": "腺", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "gland", - "kunyomi": [], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "腺", - "reading": "セン", - "meaning": "gland" - }, - { - "example": "腺癌", - "reading": "センガン", - "meaning": "adenocarcinoma" - }, - { - "example": "甲状腺", - "reading": "コウジョウセン", - "meaning": "thyroid gland" - }, - { - "example": "胃腺", - "reading": "イセン", - "meaning": "gastric gland" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "月", - "水", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33146_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0817a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/817a.gif", - "uri": "http://jisho.org/search/%E8%85%BA%23kanji" - }, - { - "query": "詮", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "discussion, methods called for, selection, result", - "kunyomi": [ - "せん.ずる", - "かい", - "あき.らか" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "詮", - "reading": "セン", - "meaning": "way, method, means, effect, result, benefit, help, worth, use" - }, - { - "example": "選考", - "reading": "センコウ", - "meaning": "selection, screening" - } - ], - "kunyomiExamples": [ - { - "example": "詮ずる所", - "reading": "せんずるところ", - "meaning": "after all, in the end, in short, given due consideration, when all is said and done" - }, - { - "example": "甲斐", - "reading": "かい", - "meaning": "effect, result, worth, use, avail, Kai (former province located in present-day Yamanashi Prefecture)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ハ", - "个", - "王", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35438_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a6e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a6e.gif", - "uri": "http://jisho.org/search/%E8%A9%AE%23kanji" - }, - { - "query": "践", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1570", - "strokeCount": 13, - "meaning": "tread, step on, trample, practice, carry through", - "kunyomi": [ - "ふ.む" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "践言", - "reading": "センゲン", - "meaning": "keeping one's word" - }, - { - "example": "践祚", - "reading": "センソ", - "meaning": "accession (to the throne)" - }, - { - "example": "履践", - "reading": "リセン", - "meaning": "implementation, carrying out, practice" - } - ], - "kunyomiExamples": [ - { - "example": "踏む", - "reading": "ふむ", - "meaning": "to step on, to tread on, to trample on, to set foot on (e.g. foreign soil), to stand on, to visit, to experience, to undergo, to follow (rules, principles, etc.), to go through (e.g. formalities), to complete, to estimate, to guess, to judge, to value, to appraise, to rhyme, to succeed to (e.g. the throne)" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "二", - "口", - "戈", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36341_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08df5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8df5.gif", - "uri": "http://jisho.org/search/%E8%B7%B5%23kanji" - }, - { - "query": "箋", - "found": true, - "taughtIn": "junior high", - "strokeCount": 14, - "meaning": "paper, label, letter, composition", - "kunyomi": [ - "ふだ" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "箋", - "reading": "セン", - "meaning": "slip (of paper), tag (usu. bamboo, wood, ivory, etc.), label" - }, - { - "example": "鄭箋", - "reading": "テイセン", - "meaning": "commentary on the Book of Odes by Zheng Xuan" - }, - { - "example": "用箋", - "reading": "ヨウセン", - "meaning": "stationery, writing pad" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "戈", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31627_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b8b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b8b.gif", - "uri": "http://jisho.org/search/%E7%AE%8B%23kanji" - }, - { - "query": "潜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1329", - "strokeCount": 15, - "meaning": "submerge, conceal, hide, lower (voice), hush", - "kunyomi": [ - "ひそ.む", - "もぐ.る", - "かく.れる", - "くぐ.る", - "ひそ.める" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "潜水", - "reading": "センスイ", - "meaning": "diving, submerging, going underwater" - }, - { - "example": "潜在", - "reading": "センザイ", - "meaning": "potentiality, dormancy, latency" - }, - { - "example": "原潜", - "reading": "ゲンセン", - "meaning": "nuclear submarine" - }, - { - "example": "対潜", - "reading": "タイセン", - "meaning": "antisubmarine" - } - ], - "kunyomiExamples": [ - { - "example": "潜む", - "reading": "ひそむ", - "meaning": "to lurk, to be hidden, to be concealed, to lie dormant, to be latent" - }, - { - "example": "潜る", - "reading": "もぐる", - "meaning": "to dive (into or under water), to get under, to get into, to get in, to creep into, to crawl under, to bury oneself, to burrow into, to dig oneself into, to snuggle under, to hide oneself (esp. from the government), to conceal oneself, to go underground" - }, - { - "example": "潜る", - "reading": "くぐる", - "meaning": "to go under, to pass under, to go through, to pass through, to dive (into or under the water), to evade, to get around, to slip past, to survive, to surmount" - }, - { - "example": "潜める", - "reading": "ひそめる", - "meaning": "to hide, to conceal, to lower volume (of a sound or one's voice) so as not to be heard, to become quiet and inconspicuous" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "二", - "大", - "日", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28508_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f5c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f5c.gif", - "uri": "http://jisho.org/search/%E6%BD%9C%23kanji" - }, - { - "query": "遷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1937", - "strokeCount": 15, - "meaning": "transition, move, change", - "kunyomi": [ - "うつ.る", - "うつ.す", - "みやこがえ" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "遷都", - "reading": "セント", - "meaning": "relocation of the capital, transfer of the capital" - }, - { - "example": "遷宮", - "reading": "セングウ", - "meaning": "installation of a deity in a new shrine, transfer of a shrine" - }, - { - "example": "左遷", - "reading": "サセン", - "meaning": "demotion, relegation, reduction in rank, degradation, downward move" - }, - { - "example": "聖遷", - "reading": "セイセン", - "meaning": "Hegira, Hejira, Hijra" - } - ], - "kunyomiExamples": [ - { - "example": "移る", - "reading": "うつる", - "meaning": "to move (house), to transfer (department), to change the target of interest or concern, to elapse (passage of time), to be permeated by a colour or scent, to be infected, to be contagious, to spread (as in fire)" - }, - { - "example": "移す", - "reading": "うつす", - "meaning": "to change, to swap, to substitute, to transfer, to change the object of one's interest or focus, to spend or take time, to infect, to permeate something with the smell or colour of something, to move on to the next or different stage of (a plan, etc.)" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "大", - "已", - "西", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36983_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09077.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9077.gif", - "uri": "http://jisho.org/search/%E9%81%B7%23kanji" - }, - { - "query": "薦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1082", - "strokeCount": 16, - "meaning": "recommend, mat, advise, encourage, offer", - "kunyomi": [ - "すす.める" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "薦挙", - "reading": "センキョ", - "meaning": "recommendation" - }, - { - "example": "仙骨", - "reading": "センコツ", - "meaning": "sacrum, sacral bone, hermitry, appearance of a hermit, unworldliness, unusual physique, outstanding appearance" - }, - { - "example": "他薦", - "reading": "タセン", - "meaning": "recommendation" - }, - { - "example": "自薦", - "reading": "ジセン", - "meaning": "self-recommendation" - } - ], - "kunyomiExamples": [ - { - "example": "勧める", - "reading": "すすめる", - "meaning": "to recommend (someone to do), to advise, to encourage, to urge, to recommend (a book, someone for a position, etc.), to suggest, to offer (a drink, cigarette, seat, etc.)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "广", - "杰", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34214_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085a6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85a6.gif", - "uri": "http://jisho.org/search/%E8%96%A6%23kanji" - }, - { - "query": "繊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1451", - "strokeCount": 17, - "meaning": "slender, fine, thin kimono", - "kunyomi": [], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "繊", - "reading": "セン", - "meaning": "daikon julienne, julienned daikon, one ten-millionth" - }, - { - "example": "繊維", - "reading": "センイ", - "meaning": "fibre, fiber, textile" - }, - { - "example": "合繊", - "reading": "ゴウセン", - "meaning": "synthetic fiber, synthetic fibre" - }, - { - "example": "化繊", - "reading": "カセン", - "meaning": "synthetic fiber, synthetic fibre, chemical fiber, chemical fibre" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "土", - "小", - "幺", - "戈", - "糸", - "赤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32330_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e4a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e4a.gif", - "uri": "http://jisho.org/search/%E7%B9%8A%23kanji" - }, - { - "query": "鮮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "355", - "strokeCount": 17, - "meaning": "fresh, vivid, clear, brilliant, Korea", - "kunyomi": [ - "あざ.やか" - ], - "onyomi": [ - "セン" - ], - "onyomiExamples": [ - { - "example": "鮮度", - "reading": "センド", - "meaning": "(degree of) freshness" - }, - { - "example": "鮮魚", - "reading": "センギョ", - "meaning": "fresh fish" - }, - { - "example": "海鮮", - "reading": "カイセン", - "meaning": "seafood" - }, - { - "example": "来鮮", - "reading": "ライセン", - "meaning": "coming to Korea" - } - ], - "kunyomiExamples": [ - { - "example": "鮮やか", - "reading": "あざやか", - "meaning": "vivid, bright, brilliant, clear, fresh, vibrant, skillful, skilful, adept, adroit, deft, brilliant, beautiful, fine, excellent" - } - ], - "radical": { - "symbol": "魚", - "meaning": "fish" - }, - "parts": [ - "并", - "杰", - "王", - "田", - "羊", - "魚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39854_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09bae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9bae.gif", - "uri": "http://jisho.org/search/%E9%AE%AE%23kanji" - }, - { - "query": "禅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1902", - "strokeCount": 13, - "meaning": "Zen, silent meditation", - "kunyomi": [ - "しずか", - "ゆず.る" - ], - "onyomi": [ - "ゼン", - "セン" - ], - "onyomiExamples": [ - { - "example": "禅", - "reading": "ゼン", - "meaning": "dhyana (profound meditation), Zen (Buddhism)" - }, - { - "example": "禅寺", - "reading": "ゼンデラ", - "meaning": "Zen temple" - }, - { - "example": "吹禅", - "reading": "スイゼン", - "meaning": "Zen blowing meditation (performed with shakuhachi)" - }, - { - "example": "如来禅", - "reading": "ニョライゼン", - "meaning": "Zen Buddhism based on the original teachings of Buddha" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "示", - "forms": [ - "礻" - ], - "meaning": "sign" - }, - "parts": [ - "十", - "尚", - "田", - "礼" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31109_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07985.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7985.gif", - "uri": "http://jisho.org/search/%E7%A6%85%23kanji" - }, - { - "query": "漸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2115", - "strokeCount": 14, - "meaning": "steadily, gradually advancing, finally, barely", - "kunyomi": [ - "ようや.く", - "やや", - "ようよ.う", - "すす.む" - ], - "onyomi": [ - "ゼン" - ], - "onyomiExamples": [ - { - "example": "漸", - "reading": "ゼン", - "meaning": "gradual progress" - }, - { - "example": "漸減", - "reading": "ゼンゲン", - "meaning": "gradual decrease, decline" - }, - { - "example": "西漸", - "reading": "セイゼン", - "meaning": "westward advance" - }, - { - "example": "東漸", - "reading": "トウゼン", - "meaning": "eastward advance" - } - ], - "kunyomiExamples": [ - { - "example": "漸く", - "reading": "ようやく", - "meaning": "finally, at last, barely, narrowly, hardly, only just, gradually, little by little, by degrees" - }, - { - "example": "稍", - "reading": "やや", - "meaning": "a little, partially, somewhat, slightly, semi-, -ish, on the ... side, a short time, a while" - }, - { - "example": "漸う", - "reading": "ようよう", - "meaning": "finally, barely, only just, gradually" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "斤", - "汁", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28472_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f38.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f38.gif", - "uri": "http://jisho.org/search/%E6%BC%B8%23kanji" - }, - { - "query": "膳", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2120", - "strokeCount": 16, - "meaning": "small low table, tray", - "kunyomi": [ - "かしわ", - "すす.める", - "そな.える" - ], - "onyomi": [ - "ゼン", - "セン" - ], - "onyomiExamples": [ - { - "example": "膳", - "reading": "ゼン", - "meaning": "small dining table (usu. for a single person), serving tray (with legs), meal, food, serving, counter for bowlfuls of rice, counter for pairs of chopsticks" - }, - { - "example": "膳越し", - "reading": "ゼンゴシ", - "meaning": "rudely reaching over one's serving tray to grab food behind it with one's chopsticks" - }, - { - "example": "大膳", - "reading": "ダイゼン", - "meaning": "black-bellied plover, grey plover (Pluvialis squatarola)" - }, - { - "example": "陪膳", - "reading": "バイゼン", - "meaning": "serving food (to a nobleman), nobleman's server" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "口", - "并", - "月", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33203_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081b3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81b3.gif", - "uri": "http://jisho.org/search/%E8%86%B3%23kanji" - }, - { - "query": "繕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2195", - "strokeCount": 18, - "meaning": "darning, repair, mend, trim, tidy up, adjust", - "kunyomi": [ - "つくろ.う" - ], - "onyomi": [ - "ゼン" - ], - "onyomiExamples": [ - { - "example": "営繕", - "reading": "エイゼン", - "meaning": "maintenance and repair, upkeep (of equipment)" - } - ], - "kunyomiExamples": [ - { - "example": "繕う", - "reading": "つくろう", - "meaning": "to mend, to patch up, to repair, to fix, to darn, to fix (hair, clothes, appearance etc.), to adjust, to tidy up, to groom, to keep up appearances, to cover up (e.g. a mistake), to gloss over, to treat (illness, injury, etc.)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "口", - "小", - "并", - "幺", - "王", - "糸", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32341_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e55.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e55.gif", - "uri": "http://jisho.org/search/%E7%B9%95%23kanji" - }, - { - "query": "狙", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "745", - "strokeCount": 8, - "meaning": "aim at, sight, shadow, stalk", - "kunyomi": [ - "ねら.う", - "ねら.い" - ], - "onyomi": [ - "ソ", - "ショ" - ], - "onyomiExamples": [ - { - "example": "狙撃兵", - "reading": "ソゲキヘイ", - "meaning": "sniper, sharpshooter" - }, - { - "example": "狙撃", - "reading": "ソゲキ", - "meaning": "shooting, sniping" - } - ], - "kunyomiExamples": [ - { - "example": "狙う", - "reading": "ねらう", - "meaning": "to aim at, to be after (something), to have an eye on" - }, - { - "example": "狙い", - "reading": "ねらい", - "meaning": "aim" - }, - { - "example": "狙い撃ち", - "reading": "ねらいうち", - "meaning": "sharpshooting, shooting, sniping, setting a goal and carrying it out" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "一", - "犯", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29401_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/072d9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/72d9.gif", - "uri": "http://jisho.org/search/%E7%8B%99%23kanji" - }, - { - "query": "阻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1280", - "strokeCount": 8, - "meaning": "thwart, separate from, prevent, obstruct, deter, impede", - "kunyomi": [ - "はば.む" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "阻止", - "reading": "ソシ", - "meaning": "obstruction, check, hindrance, prevention, impediment, interdiction, preemption, blocking" - }, - { - "example": "阻害", - "reading": "ソガイ", - "meaning": "obstruction, inhibition" - }, - { - "example": "妊娠悪阻", - "reading": "ニンシンアソ", - "meaning": "hyperemesis gravidarum, HG, severe morning sickness" - }, - { - "example": "悪阻", - "reading": "ツワリ", - "meaning": "morning sickness, hyperemesis gravidarum" - } - ], - "kunyomiExamples": [ - { - "example": "阻む", - "reading": "はばむ", - "meaning": "to keep someone from doing, to stop, to prevent, to check, to hinder, to obstruct, to oppose, to thwart" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "一", - "目", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38459_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0963b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/963b.gif", - "uri": "http://jisho.org/search/%E9%98%BB%23kanji" - }, - { - "query": "租", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2089", - "strokeCount": 10, - "meaning": "tariff, crop tax, borrowing", - "kunyomi": [], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "租", - "reading": "ソ", - "meaning": "rice tax (ritsuryo system), rice levy, tax on rice fields, annual tribute, annual tax" - }, - { - "example": "租税", - "reading": "ソゼイ", - "meaning": "taxes, taxation" - }, - { - "example": "公租", - "reading": "コウソ", - "meaning": "public tax" - }, - { - "example": "貢租", - "reading": "コウソ", - "meaning": "annual tax, tribute" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "一", - "目", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31199_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079df.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79df.gif", - "uri": "http://jisho.org/search/%E7%A7%9F%23kanji" - }, - { - "query": "措", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "818", - "strokeCount": 11, - "meaning": "set aside, give up, suspend, discontinue, lay aside, except", - "kunyomi": [ - "お.く" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "措置", - "reading": "ソチ", - "meaning": "measure, step, action" - }, - { - "example": "措辞", - "reading": "ソジ", - "meaning": "wording, phraseology, diction" - }, - { - "example": "特措", - "reading": "トクソ", - "meaning": "special measure, special measures" - }, - { - "example": "挙措", - "reading": "キョソ", - "meaning": "behavior, behaviour, manner" - } - ], - "kunyomiExamples": [ - { - "example": "措く", - "reading": "おく", - "meaning": "to stop (doing something), to cease, to put aside, to leave as is, to leave alone, to exclude, to except" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "二", - "扎", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25514_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63aa.gif", - "uri": "http://jisho.org/search/%E6%8E%AA%23kanji" - }, - { - "query": "粗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1689", - "strokeCount": 11, - "meaning": "coarse, rough, rugged", - "kunyomi": [ - "あら.い", - "あら-" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "粗", - "reading": "ソ", - "meaning": "coarse, rough, crude, raw, unrefined" - }, - { - "example": "粗鋼", - "reading": "ソコウ", - "meaning": "crude steel" - }, - { - "example": "精粗", - "reading": "セイソ", - "meaning": "fineness or coarseness, minuteness or roughness" - } - ], - "kunyomiExamples": [ - { - "example": "粗い", - "reading": "あらい", - "meaning": "coarse, rough" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "一", - "目", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31895_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c97.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c97.gif", - "uri": "http://jisho.org/search/%E7%B2%97%23kanji" - }, - { - "query": "疎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1572", - "strokeCount": 12, - "meaning": "alienate, rough, neglect, shun, sparse, penetrate", - "kunyomi": [ - "うと.い", - "うと.む", - "まば.ら" - ], - "onyomi": [ - "ソ", - "ショ" - ], - "onyomiExamples": [ - { - "example": "疎", - "reading": "ソ", - "meaning": "sparse, distant (of a relationship), estranged, alienated" - }, - { - "example": "疎開", - "reading": "ソカイ", - "meaning": "dispersal, evacuation, removal, spreading out (troops), deployment" - }, - { - "example": "過疎", - "reading": "カソ", - "meaning": "depopulation" - }, - { - "example": "空疎", - "reading": "クウソ", - "meaning": "empty (e.g. argument), insubstantial, hollow, fruitless" - } - ], - "kunyomiExamples": [ - { - "example": "疎い", - "reading": "うとい", - "meaning": "distant, estranged, disinterested, poorly informed, unfamiliar, ignorant" - }, - { - "example": "疎む", - "reading": "うとむ", - "meaning": "to shun, to avoid, to ostracize, to neglect, to distance oneself from, to give the hard shoulder" - }, - { - "example": "疎ら", - "reading": "まばら", - "meaning": "sparse, thin, scattered, straggling, sporadic" - } - ], - "radical": { - "symbol": "疋", - "forms": [ - "⺪" - ], - "meaning": "bolt of cloth" - }, - "parts": [ - "一", - "口", - "木", - "止", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30094_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0758e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/758e.gif", - "uri": "http://jisho.org/search/%E7%96%8E%23kanji" - }, - { - "query": "訴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "427", - "strokeCount": 12, - "meaning": "accusation, sue, complain of pain, appeal to", - "kunyomi": [ - "うった.える" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "訴状", - "reading": "ソジョウ", - "meaning": "petition, complaint, (legal) brief" - }, - { - "example": "訴訟", - "reading": "ソショウ", - "meaning": "litigation, lawsuit" - }, - { - "example": "公訴", - "reading": "コウソ", - "meaning": "accusation, prosecution" - }, - { - "example": "提訴", - "reading": "テイソ", - "meaning": "presenting a case, suing" - } - ], - "kunyomiExamples": [ - { - "example": "訴える", - "reading": "うったえる", - "meaning": "to raise, to bring to (someone's attention), to appeal to (reason, emotions, etc.), to work on (one's emotions), to play on (one's sympathies), to complain, to sue (a person), to take someone to court, to resort to (e.g. arms, violence)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "丶", - "斤", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35380_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a34.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a34.gif", - "uri": "http://jisho.org/search/%E8%A8%B4%23kanji" - }, - { - "query": "塑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 13, - "meaning": "model, molding", - "kunyomi": [ - "でく" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "塑性", - "reading": "ソセイ", - "meaning": "plasticity" - }, - { - "example": "塑性限界", - "reading": "ソセイゲンカイ", - "meaning": "plastic limit" - }, - { - "example": "彫塑", - "reading": "チョウソ", - "meaning": "carving, engraving, clay model, plastic art" - }, - { - "example": "泥塑", - "reading": "デイソ", - "meaning": "unfired clay figurine" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "屮", - "并", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05851.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5851.gif", - "uri": "http://jisho.org/search/%E5%A1%91%23kanji" - }, - { - "query": "遡", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "go upstream, retrace the past", - "kunyomi": [ - "さかのぼ.る" - ], - "onyomi": [ - "ソ", - "サク" - ], - "onyomiExamples": [ - { - "example": "遡河魚", - "reading": "ソカギョ", - "meaning": "anadromous fish (fish that migrates upstream, e.g. salmon)" - }, - { - "example": "遡及", - "reading": "ソキュウ", - "meaning": "tracing back, retroactivity" - }, - { - "example": "遡源", - "reading": "サクゲン", - "meaning": "returning to the origin, going back to the beginning, retracing" - } - ], - "kunyomiExamples": [ - { - "example": "遡る", - "reading": "さかのぼる", - "meaning": "to go upstream, to go back (in time, to origin), to date back to, to trace back to, to make retroactive" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "屮", - "并", - "月", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36961_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09061.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9061.gif", - "uri": "http://jisho.org/search/%E9%81%A1%23kanji" - }, - { - "query": "礎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1224", - "strokeCount": 18, - "meaning": "cornerstone, foundation stone", - "kunyomi": [ - "いしずえ" - ], - "onyomi": [ - "ソ" - ], - "onyomiExamples": [ - { - "example": "礎石", - "reading": "ソセキ", - "meaning": "foundation stone, cornerstone" - }, - { - "example": "礎材", - "reading": "ソザイ", - "meaning": "foundation materials" - }, - { - "example": "定礎", - "reading": "テイソ", - "meaning": "laying a cornerstone (foundation stone)" - }, - { - "example": "柱礎", - "reading": "チュウソ", - "meaning": "plinth" - } - ], - "kunyomiExamples": [ - { - "example": "礎", - "reading": "いしずえ", - "meaning": "foundation stone, cornerstone" - }, - { - "example": "礎を築く", - "reading": "いしずえをきずく", - "meaning": "to lay the foundation (for)" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "口", - "木", - "疋", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30990_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0790e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/790e.gif", - "uri": "http://jisho.org/search/%E7%A4%8E%23kanji" - }, - { - "query": "双", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1029", - "strokeCount": 4, - "meaning": "pair, set, comparison, counter for pairs", - "kunyomi": [ - "ふた", - "たぐい", - "ならぶ", - "ふたつ" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "双", - "reading": "ソウ", - "meaning": "pair" - }, - { - "example": "双子", - "reading": "フタゴ", - "meaning": "twins, twin" - }, - { - "example": "一双", - "reading": "イッソウ", - "meaning": "pair (esp. of folding screens)" - }, - { - "example": "八双", - "reading": "ハッソウ", - "meaning": "style of sword fighting" - } - ], - "kunyomiExamples": [ - { - "example": "双葉", - "reading": "ふたば", - "meaning": "seed leaves (of a dicot), cotyledons, bud, sprout, early stages, very beginning" - }, - { - "example": "双子", - "reading": "ふたご", - "meaning": "twins, twin" - }, - { - "example": "並ぶ", - "reading": "ならぶ", - "meaning": "to line up, to stand in a line, to rival, to match, to equal" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "丶", - "又" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21452_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053cc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53cc.gif", - "uri": "http://jisho.org/search/%E5%8F%8C%23kanji" - }, - { - "query": "壮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1657", - "strokeCount": 6, - "meaning": "robust, manhood, prosperity", - "kunyomi": [ - "さかん" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "壮", - "reading": "ソウ", - "meaning": "vibrancy, strength, bravery, manliness, (esp. of men) one's prime (approx. age 30), counter for times of moxibustion" - }, - { - "example": "壮行", - "reading": "ソウコウ", - "meaning": "rousing" - }, - { - "example": "悲壮", - "reading": "ヒソウ", - "meaning": "tragic but brave, heroic, grim, pathetic" - }, - { - "example": "強壮", - "reading": "キョウソウ", - "meaning": "able-bodied, robust, sturdy, strong" - } - ], - "kunyomiExamples": [ - { - "example": "盛ん", - "reading": "さかん", - "meaning": "prosperous, flourishing, thriving, successful, popular, widespread, active, lively, energetic, vigorous, brisk, strong, enthusiastic, eager, hearty, frequent, repeated" - } - ], - "radical": { - "symbol": "士", - "meaning": "scholar, bachelor" - }, - "parts": [ - "士", - "爿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22766_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058ee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58ee.gif", - "uri": "http://jisho.org/search/%E5%A3%AE%23kanji" - }, - { - "query": "荘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1489", - "strokeCount": 9, - "meaning": "villa, inn, cottage, feudal manor, solemn, dignified", - "kunyomi": [ - "ほうき", - "おごそ.か" - ], - "onyomi": [ - "ソウ", - "ショウ", - "チャン" - ], - "onyomiExamples": [ - { - "example": "荘", - "reading": "ショウ", - "meaning": "manor, villa" - }, - { - "example": "荘園", - "reading": "ショウエン", - "meaning": "manor, demesne" - }, - { - "example": "山荘", - "reading": "サンソウ", - "meaning": "mountain villa, mountain retreat, mountain cottage" - }, - { - "example": "山水荘", - "reading": "サンスイソウ", - "meaning": "The Sansui Inn" - }, - { - "example": "荘", - "reading": "ショウ", - "meaning": "manor, villa" - }, - { - "example": "荘園", - "reading": "ショウエン", - "meaning": "manor, demesne" - }, - { - "example": "荘", - "reading": "チャン", - "meaning": "counter for games of mahjong" - }, - { - "example": "荘風牌", - "reading": "チャンフォンパイ", - "meaning": "tile matching the round wind" - }, - { - "example": "半荘", - "reading": "ハンチャン", - "meaning": "half-game consisting of an east and south round" - }, - { - "example": "連チャン", - "reading": "レンチャン", - "meaning": "repeated events (meetings, drinking sessions, etc.), series of events, streak, straight, dealer continuing as dealer and east after winning, dealer keep" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "士", - "爿", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33624_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08358.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8358.gif", - "uri": "http://jisho.org/search/%E8%8D%98%23kanji" - }, - { - "query": "捜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "592", - "strokeCount": 10, - "meaning": "search, look for, locate", - "kunyomi": [ - "さが.す" - ], - "onyomi": [ - "ソウ", - "シュ", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "捜索", - "reading": "ソウサク", - "meaning": "search (esp. for someone or something missing), manhunt, legally authorized search of a person, building, etc." - }, - { - "example": "捜査", - "reading": "ソウサ", - "meaning": "search (esp. in criminal investigations), investigation, inquiry, enquiry" - }, - { - "example": "特捜", - "reading": "トクソウ", - "meaning": "special investigation" - }, - { - "example": "博捜", - "reading": "ハクソウ", - "meaning": "searching far and wide" - } - ], - "kunyomiExamples": [ - { - "example": "探す", - "reading": "さがす", - "meaning": "to search for, to look for, to hunt for, to seek, to search (a house, pocket, etc.), to search through, to rummage in (e.g. a drawer), to fish around" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "又", - "扎", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25436_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0635c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/635c.gif", - "uri": "http://jisho.org/search/%E6%8D%9C%23kanji" - }, - { - "query": "挿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1908", - "strokeCount": 10, - "meaning": "insert, put in, graft, wear (sword)", - "kunyomi": [ - "さ.す", - "はさ.む" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "挿入", - "reading": "ソウニュウ", - "meaning": "insertion, incorporation, infixing" - }, - { - "example": "挿話", - "reading": "ソウワ", - "meaning": "episode, side story, story within a story, aside, anecdote" - }, - { - "example": "外挿", - "reading": "ガイソウ", - "meaning": "extrapolation" - }, - { - "example": "内挿", - "reading": "ナイソウ", - "meaning": "interpolation" - } - ], - "kunyomiExamples": [ - { - "example": "挿す", - "reading": "さす", - "meaning": "to insert, to put in, to plant (a cutting), to strike, to arrange (flowers), to wear (a sword) in one's belt, to shut, to close, to lock, to fasten" - }, - { - "example": "挟む", - "reading": "はさむ", - "meaning": "to hold between (e.g. one's fingers, chopsticks), to grip (from both sides), to put between, to sandwich between, to insert, to interpose, to catch (e.g. a finger in a door), to trap, to pinch, to insert (e.g. a break into proceedings), to interpose (e.g. an objection), to interject, to throw in (e.g. a joke), to be on either side of (a road, table, etc.), to have between each other, to be across (a street, river, etc.), to harbour (feelings), to cast (e.g. doubt)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "十", - "扎", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25407_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0633f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/633f.gif", - "uri": "http://jisho.org/search/%E6%8C%BF%23kanji" - }, - { - "query": "桑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1650", - "strokeCount": 10, - "meaning": "mulberry", - "kunyomi": [ - "くわ" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "桑田", - "reading": "ソウデン", - "meaning": "mulberry plantation" - }, - { - "example": "桑園", - "reading": "ソウエン", - "meaning": "mulberry plantation" - }, - { - "example": "扶桑", - "reading": "フソウ", - "meaning": "land east of China, Japan" - } - ], - "kunyomiExamples": [ - { - "example": "桑", - "reading": "くわ", - "meaning": "mulberry (tree)" - }, - { - "example": "桑原", - "reading": "くわばら", - "meaning": "mulberry field" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "又", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26705_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06851.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6851.gif", - "uri": "http://jisho.org/search/%E6%A1%91%23kanji" - }, - { - "query": "掃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1255", - "strokeCount": 11, - "meaning": "sweep, brush", - "kunyomi": [ - "は.く" - ], - "onyomi": [ - "ソウ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "掃除", - "reading": "ソウジ", - "meaning": "cleaning, sweeping, dusting, scrubbing" - }, - { - "example": "掃海", - "reading": "ソウカイ", - "meaning": "sweeping the sea for mines, dragging for mines" - } - ], - "kunyomiExamples": [ - { - "example": "掃く", - "reading": "はく", - "meaning": "to sweep, to brush, to clean, to gather silkworms" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ヨ", - "冖", - "巾", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06383.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6383.gif", - "uri": "http://jisho.org/search/%E6%8E%83%23kanji" - }, - { - "query": "曹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1998", - "strokeCount": 11, - "meaning": "office, official, comrade, fellow", - "kunyomi": [], - "onyomi": [ - "ソウ", - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "曹", - "reading": "ソウ", - "meaning": "palace room for government officials, fellow, set (of people), clan, family" - }, - { - "example": "曹灰硼石", - "reading": "ソウカイホウセキ", - "meaning": "ulexite" - }, - { - "example": "法曹", - "reading": "ホウソウ", - "meaning": "legal profession, judicial officer, lawyer, attorney" - }, - { - "example": "海曹", - "reading": "カイソウ", - "meaning": "petty officer (navy)" - }, - { - "example": "曹司", - "reading": "ゾウシ", - "meaning": "palace room for government officials or ladies in waiting, room inside a palace or private estate allocated to employees, person living in such a room, boarding house for trainee administrators (Ritsuryo period)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "曰", - "meaning": "say" - }, - "parts": [ - "一", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26361_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066f9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66f9.gif", - "uri": "http://jisho.org/search/%E6%9B%B9%23kanji" - }, - { - "query": "曽", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1320", - "strokeCount": 11, - "meaning": "formerly, once, before, ever, never, ex-", - "kunyomi": [ - "かつ", - "かつて", - "すなわち" - ], - "onyomi": [ - "ソウ", - "ソ", - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "曾", - "reading": "ヒイ", - "meaning": "great (i.e. great-grandson, great-grandmother)" - }, - { - "example": "曾孫", - "reading": "ヒマゴ", - "meaning": "great-grandchild" - }, - { - "example": "曾", - "reading": "ヒイ", - "meaning": "great (i.e. great-grandson, great-grandmother)" - }, - { - "example": "曾孫", - "reading": "ヒマゴ", - "meaning": "great-grandchild" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "八", - "meaning": "eight" - }, - "parts": [ - "并", - "日", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26365_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66fd.gif", - "uri": "http://jisho.org/search/%E6%9B%BD%23kanji" - }, - { - "query": "爽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2333", - "strokeCount": 11, - "meaning": "refreshing, bracing, resonant, sweet, clear", - "kunyomi": [ - "あき.らか", - "さわ.やか", - "たがう" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "爽快", - "reading": "ソウカイ", - "meaning": "refreshing, exhilarating, invigorating, bracing" - }, - { - "example": "爽秋", - "reading": "ソウシュウ", - "meaning": "refreshing and pleasant autumn" - }, - { - "example": "豪爽", - "reading": "ゴウソウ", - "meaning": "fine disposition" - }, - { - "example": "英姿颯爽", - "reading": "エイシサッソウ", - "meaning": "cutting a fine (dashing, gallant, noble) figure" - } - ], - "kunyomiExamples": [ - { - "example": "爽やか", - "reading": "さわやか", - "meaning": "fresh, refreshing, invigorating, clear (e.g. voice), fluent, eloquent" - } - ], - "radical": { - "symbol": "爻", - "meaning": "mix, twine, cross" - }, - "parts": [ - "一", - "亠", - "人" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29245_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0723d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/723d.gif", - "uri": "http://jisho.org/search/%E7%88%BD%23kanji" - }, - { - "query": "喪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "885", - "strokeCount": 12, - "meaning": "miss, mourning", - "kunyomi": [ - "も" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "喪", - "reading": "モ", - "meaning": "mourning, calamity, misfortune" - }, - { - "example": "喪失", - "reading": "ソウシツ", - "meaning": "loss, forfeit" - }, - { - "example": "大喪", - "reading": "タイソウ", - "meaning": "funeral service of a Japanese emperor, Imperial mourning" - }, - { - "example": "国喪", - "reading": "コクソウ", - "meaning": "national mourning" - } - ], - "kunyomiExamples": [ - { - "example": "喪", - "reading": "も", - "meaning": "mourning, calamity, misfortune" - }, - { - "example": "喪主", - "reading": "もしゅ", - "meaning": "chief mourner" - }, - { - "example": "服喪", - "reading": "ふくも", - "meaning": "going into mourning" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "亠", - "口", - "衣", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21930_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/055aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/55aa.gif", - "uri": "http://jisho.org/search/%E5%96%AA%23kanji" - }, - { - "query": "痩", - "found": true, - "taughtIn": "junior high", - "strokeCount": 12, - "meaning": "get thin", - "kunyomi": [ - "や.せる" - ], - "onyomi": [ - "ソウ", - "チュウ", - "シュウ", - "シュ" - ], - "onyomiExamples": [ - { - "example": "痩身", - "reading": "ソウシン", - "meaning": "slim figure, lean figure, weight reduction" - }, - { - "example": "痩果", - "reading": "ソウカ", - "meaning": "achene, akene, achenium" - }, - { - "example": "羸痩", - "reading": "ルイソウ", - "meaning": "emaciation, weight loss" - } - ], - "kunyomiExamples": [ - { - "example": "痩せる", - "reading": "やせる", - "meaning": "to become thin, to lose weight, to reduce (one's) weight, to slim, to be barren, to be infertile, to be sterile" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "又", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30185_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075e9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75e9.gif", - "uri": "http://jisho.org/search/%E7%97%A9%23kanji" - }, - { - "query": "葬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "754", - "strokeCount": 12, - "meaning": "interment, bury, shelve", - "kunyomi": [ - "ほうむ.る" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "葬", - "reading": "ソウ", - "meaning": "funeral" - }, - { - "example": "葬儀", - "reading": "ソウギ", - "meaning": "funeral service" - }, - { - "example": "火葬", - "reading": "カソウ", - "meaning": "cremation" - }, - { - "example": "葬送", - "reading": "ソウソウ", - "meaning": "funeral, burial rites, attendance at a funeral" - } - ], - "kunyomiExamples": [ - { - "example": "葬る", - "reading": "ほうむる", - "meaning": "to bury, to inter, to entomb, to cover up, to hush up, to shelve" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "一", - "匕", - "夕", - "廾", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33900_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0846c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/846c.gif", - "uri": "http://jisho.org/search/%E8%91%AC%23kanji" - }, - { - "query": "僧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1724", - "strokeCount": 13, - "meaning": "Buddhist priest, monk", - "kunyomi": [], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "僧", - "reading": "ソウ", - "meaning": "monk, priest, sangha (the Buddhist community)" - }, - { - "example": "僧侶", - "reading": "ソウリョ", - "meaning": "priest, monk, bonze" - }, - { - "example": "禅僧", - "reading": "ゼンソウ", - "meaning": "Zen priest" - }, - { - "example": "高僧", - "reading": "コウソウ", - "meaning": "high priest, highly-ranked priest, virtuous priest, priest of great sanctity and learning" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "并", - "日", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20711_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050e7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50e7.gif", - "uri": "http://jisho.org/search/%E5%83%A7%23kanji" - }, - { - "query": "遭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1554", - "strokeCount": 14, - "meaning": "encounter, meet, party, association, interview, join", - "kunyomi": [ - "あ.う", - "あ.わせる" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "遭難", - "reading": "ソウナン", - "meaning": "disaster, accident, shipwreck, distress" - }, - { - "example": "遭遇", - "reading": "ソウグウ", - "meaning": "encounter, being confronted with (e.g. difficulty), meeting with (e.g. accident)" - } - ], - "kunyomiExamples": [ - { - "example": "会う", - "reading": "あう", - "meaning": "to meet, to encounter, to see, to have an accident, to have a bad experience" - }, - { - "example": "会わせる", - "reading": "あわせる", - "meaning": "to make (someone) to meet, to let (someone) meet, to expose to, to subject to" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "一", - "日", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36973_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0906d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/906d.gif", - "uri": "http://jisho.org/search/%E9%81%AD%23kanji" - }, - { - "query": "槽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1809", - "strokeCount": 15, - "meaning": "vat, tub, tank", - "kunyomi": [ - "ふね" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "槽", - "reading": "ソウ", - "meaning": "body (of a biwa)" - }, - { - "example": "浄化槽", - "reading": "ジョウカソウ", - "meaning": "water-purification tank, septic tank" - }, - { - "example": "電解槽", - "reading": "デンカイソウ", - "meaning": "electrolytic cell, electrolytic bath" - } - ], - "kunyomiExamples": [ - { - "example": "船", - "reading": "ふね", - "meaning": "ship, boat, watercraft, vessel, seaplane, tank, tub, vat, trough, counter for boat-shaped containers (e.g. of sashimi)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "日", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27133_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/069fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/69fd.gif", - "uri": "http://jisho.org/search/%E6%A7%BD%23kanji" - }, - { - "query": "踪", - "found": true, - "taughtIn": "junior high", - "strokeCount": 15, - "meaning": "remains, clue, footprint", - "kunyomi": [ - "あと" - ], - "onyomi": [ - "ソウ", - "ショウ" - ], - "onyomiExamples": [ - { - "example": "踪跡", - "reading": "ソウセキ", - "meaning": "traces, footprints, whereabouts" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "二", - "口", - "宀", - "小", - "止", - "示", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36394_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08e2a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8e2a.gif", - "uri": "http://jisho.org/search/%E8%B8%AA%23kanji" - }, - { - "query": "燥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1819", - "strokeCount": 17, - "meaning": "parch, dry up", - "kunyomi": [ - "はしゃ.ぐ" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "焦燥", - "reading": "ショウソウ", - "meaning": "impatience, uneasiness, irritation, fretfulness" - }, - { - "example": "高燥", - "reading": "コウソウ", - "meaning": "high and dry" - } - ], - "kunyomiExamples": [ - { - "example": "燥ぐ", - "reading": "はしゃぐ", - "meaning": "to make merry, to frolic, to be in high spirits" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "口", - "品", - "木", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29157_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/071e5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/71e5.gif", - "uri": "http://jisho.org/search/%E7%87%A5%23kanji" - }, - { - "query": "霜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2151", - "strokeCount": 17, - "meaning": "frost", - "kunyomi": [ - "しも" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "霜害", - "reading": "ソウガイ", - "meaning": "frost damage" - }, - { - "example": "霜剣", - "reading": "ソウケン", - "meaning": "cold sharp sword, blade of ice" - }, - { - "example": "星霜", - "reading": "セイソウ", - "meaning": "years, time" - }, - { - "example": "幾星霜", - "reading": "イクセイソウ", - "meaning": "many months and years" - } - ], - "kunyomiExamples": [ - { - "example": "霜", - "reading": "しも", - "meaning": "frost" - }, - { - "example": "霜降り", - "reading": "しもふり", - "meaning": "speckled with white, salt-and-pepper (pattern, fabric, etc.), marbling (of beef), (of fish, chicken, shellfish, etc.) blanching by exposure to boiling and then icy water, formation of frost" - }, - { - "example": "朝霜", - "reading": "あさしも", - "meaning": "morning frost" - }, - { - "example": "露霜", - "reading": "つゆじも", - "meaning": "frozen dew, frost and dew, years, time" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "木", - "目", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38684_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0971c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/971c.gif", - "uri": "http://jisho.org/search/%E9%9C%9C%23kanji" - }, - { - "query": "騒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1069", - "strokeCount": 18, - "meaning": "boisterous, make noise, clamor, disturb, excite", - "kunyomi": [ - "さわ.ぐ", - "うれい", - "さわ.がしい" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "騒然", - "reading": "ソウゼン", - "meaning": "noisy, confused, uproarious" - }, - { - "example": "騒音", - "reading": "ソウオン", - "meaning": "noise, din" - }, - { - "example": "狂躁", - "reading": "キョウソウ", - "meaning": "mania, wild excitement" - }, - { - "example": "鼓譟", - "reading": "コソウ", - "meaning": "motivating the troops on the battlefield with war drums and war cries, making an uproar" - } - ], - "kunyomiExamples": [ - { - "example": "騒ぐ", - "reading": "さわぐ", - "meaning": "to make noise, to make racket, to be noisy, to rustle, to swoosh, to make merry, to clamor, to clamour, to make a fuss, to kick up a fuss, to lose one's cool, to panic, to act flustered, to feel tense, to be uneasy, to be excited" - }, - { - "example": "騒がしい", - "reading": "さわがしい", - "meaning": "noisy, boisterous, turbulent (era, etc.), troubled" - } - ], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "又", - "杰", - "虫", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39442_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09a12.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9a12.gif", - "uri": "http://jisho.org/search/%E9%A8%92%23kanji" - }, - { - "query": "藻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2124", - "strokeCount": 19, - "meaning": "seaweed, duckweed", - "kunyomi": [ - "も" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "藻類", - "reading": "ソウルイ", - "meaning": "seaweed, algae" - }, - { - "example": "藻菌類", - "reading": "ソウキンルイ", - "meaning": "algal fungi" - }, - { - "example": "海藻", - "reading": "カイソウ", - "meaning": "seaweed" - }, - { - "example": "珪藻", - "reading": "ケイソウ", - "meaning": "diatom" - } - ], - "kunyomiExamples": [ - { - "example": "藻", - "reading": "も", - "meaning": "algae, waterweed, seaweed, duckweed" - }, - { - "example": "藻掻く", - "reading": "もがく", - "meaning": "to struggle, to writhe, to wriggle, to squirm, to act frantically, to make desperate efforts" - }, - { - "example": "山椒藻", - "reading": "さんしょうも", - "meaning": "floating watermoss (Salvinia natans)" - }, - { - "example": "菅藻", - "reading": "すがも", - "meaning": "Phyllospadix iwatensis (species of seagrass)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "口", - "品", - "木", - "汁", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34299_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085fb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85fb.gif", - "uri": "http://jisho.org/search/%E8%97%BB%23kanji" - }, - { - "query": "憎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1808", - "strokeCount": 14, - "meaning": "hate, detest", - "kunyomi": [ - "にく.む", - "にく.い", - "にく.らしい", - "にく.しみ" - ], - "onyomi": [ - "ゾウ" - ], - "onyomiExamples": [ - { - "example": "憎悪", - "reading": "ゾウオ", - "meaning": "hatred, abhorrence, loathing, detestation" - }, - { - "example": "憎悪犯罪", - "reading": "ゾウオハンザイ", - "meaning": "hate crime" - } - ], - "kunyomiExamples": [ - { - "example": "憎む", - "reading": "にくむ", - "meaning": "to hate, to detest" - }, - { - "example": "憎い", - "reading": "にくい", - "meaning": "hateful, abominable, poor-looking, detestable, amazing, fantastic, admirable, lovely, wonderful" - }, - { - "example": "憎らしい", - "reading": "にくらしい", - "meaning": "odious, hateful, detestable, horrible, (speaking ironically) darling" - }, - { - "example": "憎しみ", - "reading": "にくしみ", - "meaning": "hatred" - }, - { - "example": "憎しみ合う", - "reading": "にくしみあう", - "meaning": "to hate each other, to hate mutually" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "并", - "忙", - "日", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24974_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0618e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/618e.gif", - "uri": "http://jisho.org/search/%E6%86%8E%23kanji" - }, - { - "query": "贈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1001", - "strokeCount": 18, - "meaning": "presents, send, give to, award to, confer on, presenting something", - "kunyomi": [ - "おく.る" - ], - "onyomi": [ - "ゾウ", - "ソウ" - ], - "onyomiExamples": [ - { - "example": "贈答", - "reading": "ゾウトウ", - "meaning": "exchange of presents" - }, - { - "example": "贈呈", - "reading": "ゾウテイ", - "meaning": "presentation (e.g. of a gift, etc.)" - }, - { - "example": "遺贈", - "reading": "イゾウ", - "meaning": "bequest, legacy" - }, - { - "example": "恵贈", - "reading": "ケイゾウ", - "meaning": "presenting (a gift, etc.), giving, bestowing" - }, - { - "example": "位記追贈", - "reading": "イキツイソウ", - "meaning": "conferment of posthumous rank" - } - ], - "kunyomiExamples": [ - { - "example": "贈る", - "reading": "おくる", - "meaning": "to give (as a gift), to present, to confer, to bestow, to award" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "并", - "日", - "田", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36104_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d08.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d08.gif", - "uri": "http://jisho.org/search/%E8%B4%88%23kanji" - }, - { - "query": "即", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1167", - "strokeCount": 7, - "meaning": "instant, namely, as is, conform, agree, adapt", - "kunyomi": [ - "つ.く", - "つ.ける", - "すなわ.ち" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "即", - "reading": "ソク", - "meaning": "instantly, immediately, at once, equals, means, is, oneness (of two opposing things), inseparability" - }, - { - "example": "即位", - "reading": "ソクイ", - "meaning": "accession to the throne, enthronement" - }, - { - "example": "相即", - "reading": "ソウソク", - "meaning": "coming together and dissolving into oneness, being closely related, being inseparable" - }, - { - "example": "即即", - "reading": "ソクソク", - "meaning": "immediate sex (without taking a shower first)" - } - ], - "kunyomiExamples": [ - { - "example": "就く", - "reading": "つく", - "meaning": "to take (seat, position, course, office, etc.), to assume, to be hired, to be employed, to ascend (the throne), to accede, to start (on a journey), to commence, to depart, to study (under teacher), to be an apprentice" - }, - { - "example": "就ける", - "reading": "つける", - "meaning": "to install (a king, emperor, etc.), to appoint (to a post), to promote, to assign (to study under)" - }, - { - "example": "即ち", - "reading": "すなわち", - "meaning": "that is, namely, i.e." - } - ], - "radical": { - "symbol": "卩", - "meaning": "kneel" - }, - "parts": [ - "卩", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21363_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05373.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5373.gif", - "uri": "http://jisho.org/search/%E5%8D%B3%23kanji" - }, - { - "query": "促", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "998", - "strokeCount": 9, - "meaning": "stimulate, urge, press, demand, incite", - "kunyomi": [ - "うなが.す" - ], - "onyomi": [ - "ソク" - ], - "onyomiExamples": [ - { - "example": "促進", - "reading": "ソクシン", - "meaning": "promotion, acceleration, encouragement, facilitation, spurring on" - }, - { - "example": "促成", - "reading": "ソクセイ", - "meaning": "promotion of growth" - }, - { - "example": "督促", - "reading": "トクソク", - "meaning": "urge, demand, importunity" - }, - { - "example": "矢の催促", - "reading": "ヤノサイソク", - "meaning": "strongly and repeatedly urging (demanding, requesting, pressing)" - } - ], - "kunyomiExamples": [ - { - "example": "促す", - "reading": "うながす", - "meaning": "to urge, to encourage, to press, to prompt, to draw (attention to), to stimulate (e.g. growth), to hasten (e.g. development), to quicken, to accelerate, to promote" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "口", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20419_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fc3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fc3.gif", - "uri": "http://jisho.org/search/%E4%BF%83%23kanji" - }, - { - "query": "捉", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1976", - "strokeCount": 10, - "meaning": "catch, capture", - "kunyomi": [ - "とら.える" - ], - "onyomi": [ - "ソク", - "サク" - ], - "onyomiExamples": [ - { - "example": "把捉", - "reading": "ハソク", - "meaning": "grasping (a meaning)" - }, - { - "example": "捕捉", - "reading": "ホソク", - "meaning": "capture, seizure, prehension, trapping, apprehension, understanding, grasp" - } - ], - "kunyomiExamples": [ - { - "example": "捉える", - "reading": "とらえる", - "meaning": "to catch, to capture, to seize, to arrest, to grab, to catch hold of, to grasp (e.g. meaning), to perceive, to capture (e.g. features), to captivate, to move (one's heart)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "口", - "扎", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25417_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06349.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6349.gif", - "uri": "http://jisho.org/search/%E6%8D%89%23kanji" - }, - { - "query": "俗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1610", - "strokeCount": 9, - "meaning": "vulgar, customs, manners, worldliness, mundane things", - "kunyomi": [], - "onyomi": [ - "ゾク" - ], - "onyomiExamples": [ - { - "example": "俗", - "reading": "ゾク", - "meaning": "layman (esp. as opposed to a Buddhist monk), laity, man of the world, the world, local manners, modern customs, common, popular, vulgar, low" - }, - { - "example": "俗語", - "reading": "ゾクゴ", - "meaning": "colloquialism, colloquial language, slang" - }, - { - "example": "民俗", - "reading": "ミンゾク", - "meaning": "folk customs, folkways, ethnic customs" - }, - { - "example": "低俗", - "reading": "テイゾク", - "meaning": "vulgar, lowbrow, coarse" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "个", - "化", - "口", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20439_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fd7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fd7.gif", - "uri": "http://jisho.org/search/%E4%BF%97%23kanji" - }, - { - "query": "賊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2045", - "strokeCount": 13, - "meaning": "burglar, rebel, traitor, robber", - "kunyomi": [], - "onyomi": [ - "ゾク" - ], - "onyomiExamples": [ - { - "example": "賊", - "reading": "ゾク", - "meaning": "thief, robber, burglar, rebel, insurgent, traitor" - }, - { - "example": "賊害", - "reading": "ゾクガイ", - "meaning": "harm, killing, destruction at the hands of rebels" - }, - { - "example": "空賊", - "reading": "クウゾク", - "meaning": "air pirate, air piracy" - }, - { - "example": "凶賊", - "reading": "キョウゾク", - "meaning": "villain" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "十", - "戈", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36042_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cca.gif", - "uri": "http://jisho.org/search/%E8%B3%8A%23kanji" - }, - { - "query": "遜", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "humble, modest", - "kunyomi": [ - "したが.う", - "へりくだ.る", - "ゆず.る" - ], - "onyomi": [ - "ソン" - ], - "onyomiExamples": [ - { - "example": "遜色", - "reading": "ソンショク", - "meaning": "inferiority" - }, - { - "example": "遜色がある", - "reading": "ソンショクガアル", - "meaning": "inferior to, suffering by comparison with, unable to compare with" - }, - { - "example": "不遜", - "reading": "フソン", - "meaning": "arrogance, insolence, disrespect" - }, - { - "example": "尊大不遜", - "reading": "ソンダイフソン", - "meaning": "arrogant and presumptuous, haughty arrogance, intolerable insolence" - } - ], - "kunyomiExamples": [ - { - "example": "謙る", - "reading": "へりくだる", - "meaning": "to deprecate oneself and praise the listener, to abase oneself" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ノ", - "子", - "小", - "幺", - "糸", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36956_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0905c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/905c.gif", - "uri": "http://jisho.org/search/%E9%81%9C%23kanji" - }, - { - "query": "汰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 7, - "meaning": "washing, sieving, filtering, weeding out, luxury", - "kunyomi": [ - "おご.る", - "にご.る", - "よな.げる" - ], - "onyomi": [ - "タ", - "タイ" - ], - "onyomiExamples": [ - { - "example": "自然淘汰", - "reading": "シゼントウタ", - "meaning": "natural selection" - }, - { - "example": "淘汰", - "reading": "トウタ", - "meaning": "weeding out, elimination (e.g. of unneeded employees), culling, selection, selection (e.g. natural selection)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "大", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27760_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c70.gif", - "uri": "http://jisho.org/search/%E6%B1%B0%23kanji" - }, - { - "query": "妥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1102", - "strokeCount": 7, - "meaning": "gentle, peace, depravity", - "kunyomi": [], - "onyomi": [ - "ダ" - ], - "onyomiExamples": [ - { - "example": "妥結", - "reading": "ダケツ", - "meaning": "settlement, an agreement" - }, - { - "example": "妥協", - "reading": "ダキョウ", - "meaning": "compromise, giving in" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22949_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059a5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59a5.gif", - "uri": "http://jisho.org/search/%E5%A6%A5%23kanji" - }, - { - "query": "唾", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "saliva, sputum", - "kunyomi": [ - "つば", - "つばき" - ], - "onyomi": [ - "ダ", - "タ" - ], - "onyomiExamples": [ - { - "example": "唾液", - "reading": "ダエキ", - "meaning": "saliva, sputum" - }, - { - "example": "唾液腺", - "reading": "ダエキセン", - "meaning": "salivary gland" - } - ], - "kunyomiExamples": [ - { - "example": "唾", - "reading": "つば", - "meaning": "saliva, spit, sputum" - }, - { - "example": "唾く", - "reading": "つばく", - "meaning": "to spit" - }, - { - "example": "生唾", - "reading": "なまつば", - "meaning": "saliva (in one's mouth)" - }, - { - "example": "痰唾", - "reading": "たんつば", - "meaning": "sputum, phlegm" - }, - { - "example": "唾", - "reading": "つば", - "meaning": "saliva, spit, sputum" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "一", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21822_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0553e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/553e.gif", - "uri": "http://jisho.org/search/%E5%94%BE%23kanji" - }, - { - "query": "堕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2087", - "strokeCount": 12, - "meaning": "degenerate, descend to, lapse into", - "kunyomi": [ - "お.ちる", - "くず.す", - "くず.れる" - ], - "onyomi": [ - "ダ" - ], - "onyomiExamples": [ - { - "example": "堕落", - "reading": "ダラク", - "meaning": "depravity, corruption, degradation" - }, - { - "example": "堕胎", - "reading": "ダタイ", - "meaning": "abortion, feticide" - }, - { - "example": "落堕", - "reading": "ラクダ", - "meaning": "marrying (of a monk), returning to secular life (of a monk)" - } - ], - "kunyomiExamples": [ - { - "example": "落ちる", - "reading": "おちる", - "meaning": "to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one's gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone's hands), to become someone's possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths, to go down (of a website, server, etc.)" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "一", - "土", - "月", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22549_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05815.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5815.gif", - "uri": "http://jisho.org/search/%E5%A0%95%23kanji" - }, - { - "query": "惰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2336", - "strokeCount": 12, - "meaning": "lazy, laziness", - "kunyomi": [], - "onyomi": [ - "ダ" - ], - "onyomiExamples": [ - { - "example": "惰性", - "reading": "ダセイ", - "meaning": "inertia, force of habit" - }, - { - "example": "惰気", - "reading": "ダキ", - "meaning": "indolence, listlessness" - }, - { - "example": "懶惰", - "reading": "ランダ", - "meaning": "lazy, idle, indolence, laziness, sloth, idleness" - }, - { - "example": "遊惰", - "reading": "ユウダ", - "meaning": "indolence" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "一", - "工", - "忙", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24816_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060f0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60f0.gif", - "uri": "http://jisho.org/search/%E6%83%B0%23kanji" - }, - { - "query": "駄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1500", - "strokeCount": 14, - "meaning": "burdensome, pack horse, horse load, send by horse, trivial, worthless", - "kunyomi": [], - "onyomi": [ - "ダ", - "タ" - ], - "onyomiExamples": [ - { - "example": "駄", - "reading": "ダ", - "meaning": "poor, low-grade, trivial, insignificant, worthless, load, pack, horse load, packhorse" - }, - { - "example": "駄目", - "reading": "ダメ", - "meaning": "no good, not serving its purpose, useless, broken, hopeless, wasted, in vain, purposeless, cannot, must not, not allowed, neutral point (in go), intersection owned by neither player at the end of a game" - }, - { - "example": "雪駄", - "reading": "セッタ", - "meaning": "leather-soled sandals (geta)" - }, - { - "example": "足駄", - "reading": "アシダ", - "meaning": "high clogs, rain clogs" - }, - { - "example": "中下駄", - "reading": "チュウゲタ", - "meaning": "medium height geta" - }, - { - "example": "高下駄", - "reading": "タカゲタ", - "meaning": "tall wooden clogs" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "丶", - "大", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39364_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/099c4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/99c4.gif", - "uri": "http://jisho.org/search/%E9%A7%84%23kanji" - }, - { - "query": "耐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1295", - "strokeCount": 9, - "meaning": "-proof, enduring", - "kunyomi": [ - "た.える" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "耐久性", - "reading": "タイキュウセイ", - "meaning": "durability" - }, - { - "example": "耐久", - "reading": "タイキュウ", - "meaning": "endurance, persistence" - } - ], - "kunyomiExamples": [ - { - "example": "耐える", - "reading": "たえる", - "meaning": "to bear, to stand, to endure, to put up with, to support, to withstand, to resist, to brave, to be fit for, to be equal to" - } - ], - "radical": { - "symbol": "而", - "meaning": "beard" - }, - "parts": [ - "寸", - "而" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32784_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08010.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8010.gif", - "uri": "http://jisho.org/search/%E8%80%90%23kanji" - }, - { - "query": "怠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1703", - "strokeCount": 9, - "meaning": "neglect, laziness", - "kunyomi": [ - "おこた.る", - "なま.ける" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "怠慢", - "reading": "タイマン", - "meaning": "negligence, neglect, carelessness, procrastination" - }, - { - "example": "滞納", - "reading": "タイノウ", - "meaning": "falling behind (with a payment), being in arrears, non-payment, default, delinquency" - }, - { - "example": "懈怠", - "reading": "ケタイ", - "meaning": "laziness, indolence, negligence (of duties), misfeasance, nonfeasance, negligence, laches, kausidya" - }, - { - "example": "休怠", - "reading": "キュウタイ", - "meaning": "laziness, neglect" - } - ], - "kunyomiExamples": [ - { - "example": "怠る", - "reading": "おこたる", - "meaning": "to be negligent in doing something, to shirk, to be off one's guard" - }, - { - "example": "怠ける", - "reading": "なまける", - "meaning": "to be idle, to slacken, to neglect (e.g. one's work)" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "厶", - "口", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24608_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06020.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6020.gif", - "uri": "http://jisho.org/search/%E6%80%A0%23kanji" - }, - { - "query": "胎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1861", - "strokeCount": 9, - "meaning": "womb, uterus", - "kunyomi": [], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "胎", - "reading": "タイ", - "meaning": "womb" - }, - { - "example": "胎児", - "reading": "タイジ", - "meaning": "fetus, foetus, embryo, unborn child" - }, - { - "example": "母胎", - "reading": "ボタイ", - "meaning": "womb, uterus, parent body, base, basis" - }, - { - "example": "堕胎", - "reading": "ダタイ", - "meaning": "abortion, feticide" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "厶", - "口", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32974_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080ce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80ce.gif", - "uri": "http://jisho.org/search/%E8%83%8E%23kanji" - }, - { - "query": "泰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1281", - "strokeCount": 10, - "meaning": "peaceful, calm, peace, easy, Thailand, extreme, excessive, great", - "kunyomi": [], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "泰", - "reading": "タイ", - "meaning": "Thailand" - }, - { - "example": "泰然", - "reading": "タイゼン", - "meaning": "calm, composed, self-possessed, firm" - }, - { - "example": "昌泰", - "reading": "ショウタイ", - "meaning": "Shōtai era (898.4.26-901.7.15)" - }, - { - "example": "日泰", - "reading": "ニッタイ", - "meaning": "Japan-Thailand, Japan and Thailand" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "二", - "人", - "大", - "水", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27888_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cf0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cf0.gif", - "uri": "http://jisho.org/search/%E6%B3%B0%23kanji" - }, - { - "query": "堆", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2184", - "strokeCount": 11, - "meaning": "piled high", - "kunyomi": [ - "うずたか.い" - ], - "onyomi": [ - "タイ", - "ツイ" - ], - "onyomiExamples": [ - { - "example": "堆", - "reading": "タイ", - "meaning": "bank (river, lake), pile, heap" - }, - { - "example": "堆積", - "reading": "タイセキ", - "meaning": "accumulation, pile, heap, sedimentation" - }, - { - "example": "砂堆", - "reading": "サタイ", - "meaning": "sandbank, shoal" - }, - { - "example": "浅堆", - "reading": "センタイ", - "meaning": "bank (sea, ocean), shoal" - }, - { - "example": "堆朱", - "reading": "ツイシュ", - "meaning": "red lacquerware with patterns carved in relief" - } - ], - "kunyomiExamples": [ - { - "example": "堆い", - "reading": "うずたかい", - "meaning": "piled up high, in a heap" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22534_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05806.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5806.gif", - "uri": "http://jisho.org/search/%E5%A0%86%23kanji" - }, - { - "query": "袋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1125", - "strokeCount": 11, - "meaning": "sack, bag, pouch", - "kunyomi": [ - "ふくろ" - ], - "onyomi": [ - "タイ", - "ダイ" - ], - "onyomiExamples": [ - { - "example": "袋", - "reading": "タイ", - "meaning": "counter for things inside a bag" - }, - { - "example": "袋果", - "reading": "タイカ", - "meaning": "follicle" - }, - { - "example": "頸袋", - "reading": "ケイタイ", - "meaning": "dewlap" - }, - { - "example": "製袋", - "reading": "セイタイ", - "meaning": "bag manufacturing" - } - ], - "kunyomiExamples": [ - { - "example": "袋", - "reading": "ふくろ", - "meaning": "bag, sack, pouch, skin of an orange (and other like fruits), dead end, plot of land surrounded by water" - }, - { - "example": "袋小路", - "reading": "ふくろこうじ", - "meaning": "blind alley, cul-de-sac, dead end street, deadlock, impasse, dead end" - }, - { - "example": "空気袋", - "reading": "くうきふくろ", - "meaning": "air sac, bladder, air bag, windbag, type of inflatable air mattress" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "化", - "弋", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34955_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0888b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/888b.gif", - "uri": "http://jisho.org/search/%E8%A2%8B%23kanji" - }, - { - "query": "逮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "766", - "strokeCount": 11, - "meaning": "apprehend, chase", - "kunyomi": [], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "逮捕", - "reading": "タイホ", - "meaning": "arrest, apprehension, capture" - }, - { - "example": "逮捕及び監禁罪", - "reading": "タイホオヨビカンキンザイ", - "meaning": "false arrest and imprisonment, illegal arrest and confinement" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ヨ", - "水", - "込", - "隶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36910_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0902e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/902e.gif", - "uri": "http://jisho.org/search/%E9%80%AE%23kanji" - }, - { - "query": "替", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "979", - "strokeCount": 12, - "meaning": "exchange, spare, substitute, per-", - "kunyomi": [ - "か.える", - "か.え-", - "か.わる" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "移替", - "reading": "イタイ", - "meaning": "changing (person in charge, etc.), shifting" - }, - { - "example": "衰替", - "reading": "スイタイ", - "meaning": "weakening, declining" - } - ], - "kunyomiExamples": [ - { - "example": "換える", - "reading": "かえる", - "meaning": "to replace, to exchange, to interchange, to substitute" - }, - { - "example": "替わる", - "reading": "かわる", - "meaning": "to succeed, to relieve, to replace, to take the place of, to substitute for, to take over for, to represent, to hand over (telephone), to be exchanged, to change (places with), to switch" - } - ], - "radical": { - "symbol": "曰", - "meaning": "say" - }, - "parts": [ - "二", - "亠", - "人", - "大", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26367_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066ff.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66ff.gif", - "uri": "http://jisho.org/search/%E6%9B%BF%23kanji" - }, - { - "query": "滞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1107", - "strokeCount": 13, - "meaning": "stagnate, be delayed, overdue, arrears", - "kunyomi": [ - "とどこお.る" - ], - "onyomi": [ - "タイ", - "テイ" - ], - "onyomiExamples": [ - { - "example": "滞納", - "reading": "タイノウ", - "meaning": "falling behind (with a payment), being in arrears, non-payment, default, delinquency" - }, - { - "example": "滞在", - "reading": "タイザイ", - "meaning": "stay, sojourn" - }, - { - "example": "沈滞", - "reading": "チンタイ", - "meaning": "stagnation, inactivity" - }, - { - "example": "遅滞", - "reading": "チタイ", - "meaning": "delay, procrastination" - } - ], - "kunyomiExamples": [ - { - "example": "滞る", - "reading": "とどこおる", - "meaning": "to stagnate, to be delayed, to be left undone, to be overdue (of a payment), to fall into arrears, to be outstanding" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "冖", - "巾", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28382_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ede.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ede.gif", - "uri": "http://jisho.org/search/%E6%BB%9E%23kanji" - }, - { - "query": "戴", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2332", - "strokeCount": 17, - "meaning": "be crowned with, live under (a ruler), receive", - "kunyomi": [ - "いただ.く" - ], - "onyomi": [ - "タイ" - ], - "onyomiExamples": [ - { - "example": "戴冠式", - "reading": "タイカンシキ", - "meaning": "coronation ceremony, enthronement" - }, - { - "example": "戴冠", - "reading": "タイカン", - "meaning": "coronation, crowning" - }, - { - "example": "奉戴", - "reading": "ホウタイ", - "meaning": "having a prince for a president, being the recipient of (an imperial favor, favour), reverential acceptance" - } - ], - "kunyomiExamples": [ - { - "example": "頂く", - "reading": "いただく", - "meaning": "to receive, to get, to accept, to take, to buy, to eat, to drink, to be crowned with, to wear (on one's head), to have (on top), to have (as one's leader), to live under (a ruler), to install (a president), to get somebody to do something" - }, - { - "example": "戴くものは夏も小袖", - "reading": "いただくものはなつもこそで", - "meaning": "taking whatever one can get one's hands on, being greedy, accepting a padded silk sleeve even in summer" - } - ], - "radical": { - "symbol": "戈", - "meaning": "spear, halberd" - }, - "parts": [ - "ハ", - "一", - "二", - "土", - "戈", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25140_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06234.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6234.gif", - "uri": "http://jisho.org/search/%E6%88%B4%23kanji" - }, - { - "query": "滝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1478", - "strokeCount": 13, - "meaning": "waterfall, rapids, cascade", - "kunyomi": [ - "たき" - ], - "onyomi": [ - "ロウ", - "ソウ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "滝", - "reading": "たき", - "meaning": "waterfall, rapids" - }, - { - "example": "滝川", - "reading": "たきがわ", - "meaning": "rapids" - }, - { - "example": "小滝", - "reading": "おたき", - "meaning": "cascade" - }, - { - "example": "白滝", - "reading": "しらたき", - "meaning": "shirataki noodles, white noodles made from konjak starch, often used in sukiyaki, waterfall resembling a white sheet" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "田", - "立", - "竜" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28381_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06edd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6edd.gif", - "uri": "http://jisho.org/search/%E6%BB%9D%23kanji" - }, - { - "query": "択", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "847", - "strokeCount": 7, - "meaning": "choose, select, elect, prefer", - "kunyomi": [ - "えら.ぶ" - ], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "択", - "reading": "タク", - "meaning": "counter for choices, options, etc." - }, - { - "example": "択一", - "reading": "タクイツ", - "meaning": "choosing one from among several, multiple choice" - }, - { - "example": "一択", - "reading": "イッタク", - "meaning": "(only) one option, one possible choice" - }, - { - "example": "性選択", - "reading": "セイセンタク", - "meaning": "sexual selection" - } - ], - "kunyomiExamples": [ - { - "example": "選ぶ", - "reading": "えらぶ", - "meaning": "to choose, to select" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "丶", - "尸", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25246_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0629e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/629e.gif", - "uri": "http://jisho.org/search/%E6%8A%9E%23kanji" - }, - { - "query": "沢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "296", - "strokeCount": 7, - "meaning": "swamp, marsh, brilliance, grace", - "kunyomi": [ - "さわ", - "うるお.い", - "うるお.す", - "つや" - ], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "沢", - "reading": "タク", - "meaning": "blessing, grace, favour, favor, benefit" - }, - { - "example": "沢山", - "reading": "タクサン", - "meaning": "a lot, lots, plenty, many, a large number, much, a great deal, a good deal, enough, sufficient, enough, too many, too much" - }, - { - "example": "沼沢", - "reading": "ショウタク", - "meaning": "marsh, swamp, bog" - }, - { - "example": "恵沢", - "reading": "ケイタク", - "meaning": "blessing, pity, favor, favour, benefit" - } - ], - "kunyomiExamples": [ - { - "example": "沢", - "reading": "さわ", - "meaning": "mountain stream, valley, dale, wetlands, swamp, marsh" - }, - { - "example": "沢地", - "reading": "さわち", - "meaning": "marshy land" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "尸", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27810_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ca2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ca2.gif", - "uri": "http://jisho.org/search/%E6%B2%A2%23kanji" - }, - { - "query": "卓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1348", - "strokeCount": 8, - "meaning": "eminent, table, desk, high", - "kunyomi": [], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "卓", - "reading": "タク", - "meaning": "table, desk, counter for tables, desks, etc., offering table before an altar (sometimes used in tea ceremony), tabletop incense burner" - }, - { - "example": "卓越", - "reading": "タクエツ", - "meaning": "preeminence, excellence, superiority, transcendence" - }, - { - "example": "聖卓", - "reading": "セイタク", - "meaning": "altar (esp. Christian)" - }, - { - "example": "音声調整卓", - "reading": "オンセイチョウセイタク", - "meaning": "mixing board (console, desk), (audio) mixer" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "十", - "卜", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21331_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05353.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5353.gif", - "uri": "http://jisho.org/search/%E5%8D%93%23kanji" - }, - { - "query": "拓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1526", - "strokeCount": 8, - "meaning": "clear (the land), open, break up (land)", - "kunyomi": [ - "ひら.く" - ], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "拓銀", - "reading": "タクギン", - "meaning": "Takushoku Bank" - }, - { - "example": "拓殖", - "reading": "タクショク", - "meaning": "colonization, colonisation, development, settlement, exploitation" - }, - { - "example": "干拓", - "reading": "カンタク", - "meaning": "land reclamation (from sea)" - }, - { - "example": "未開拓", - "reading": "ミカイタク", - "meaning": "undeveloped (area), unexplored (field of study), wild (areas), untapped area" - } - ], - "kunyomiExamples": [ - { - "example": "拓く", - "reading": "ひらく", - "meaning": "to open (e.g. path), to clear (the way), to break up (e.g. land)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "口", - "扎", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25299_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062d3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62d3.gif", - "uri": "http://jisho.org/search/%E6%8B%93%23kanji" - }, - { - "query": "託", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1021", - "strokeCount": 10, - "meaning": "consign, requesting, entrusting with, pretend, hint", - "kunyomi": [ - "かこつ.ける", - "かこ.つ", - "かこ.つける" - ], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "託す", - "reading": "タクス", - "meaning": "to entrust (someone) with, to leave (a matter) with someone, to place under someone's care, to have someone deliver (a message, parcel, etc.), to send (through someone), to leave (a message) with someone, to use (something) to express (one's feelings, opinion, etc.), to express in the form of (something), to use as a pretext" - }, - { - "example": "託児所", - "reading": "タクジショ", - "meaning": "creche, day nursery" - }, - { - "example": "嘱託", - "reading": "ショクタク", - "meaning": "commission, entrusting with (work), part-time employee, temporary work" - }, - { - "example": "請託", - "reading": "セイタク", - "meaning": "solicitation" - } - ], - "kunyomiExamples": [ - { - "example": "託つける", - "reading": "かこつける", - "meaning": "to use as a pretext, to use as an excuse" - }, - { - "example": "託つ", - "reading": "かこつ", - "meaning": "to complain about, to grumble, to make an excuse for" - }, - { - "example": "託つけ", - "reading": "かこつけ", - "meaning": "pretext, excuse" - }, - { - "example": "託つける", - "reading": "かこつける", - "meaning": "to use as a pretext, to use as an excuse" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "一", - "乙", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35351_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a17.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a17.gif", - "uri": "http://jisho.org/search/%E8%A8%97%23kanji" - }, - { - "query": "濯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1698", - "strokeCount": 17, - "meaning": "laundry, wash, pour on, rinse", - "kunyomi": [ - "すす.ぐ", - "ゆす.ぐ" - ], - "onyomi": [ - "タク" - ], - "onyomiExamples": [ - { - "example": "乾燥洗濯", - "reading": "カンソウセンタク", - "meaning": "dry cleaning" - }, - { - "example": "鬼の居ぬ間に洗濯", - "reading": "オニノイヌマニセンタク", - "meaning": "playing while the cat is away, taking a break while the boss is out, doing what one wants when one is (finally) alone, relaxing while the demon is out" - } - ], - "kunyomiExamples": [ - { - "example": "濯ぐ", - "reading": "すすぐ", - "meaning": "to rinse, to wash out, to have one's revenge, to wipe out a disgrace" - }, - { - "example": "濯ぐ", - "reading": "すすぐ", - "meaning": "to rinse, to wash out, to have one's revenge, to wipe out a disgrace" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ヨ", - "汁", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28655_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06fef.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6fef.gif", - "uri": "http://jisho.org/search/%E6%BF%AF%23kanji" - }, - { - "query": "諾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1490", - "strokeCount": 15, - "meaning": "consent, assent, agreement", - "kunyomi": [], - "onyomi": [ - "ダク" - ], - "onyomiExamples": [ - { - "example": "諾", - "reading": "ダク", - "meaning": "agreement, assent, Norway" - }, - { - "example": "諾否", - "reading": "ダクヒ", - "meaning": "consent or refusal, yes or no, decision to accept or decline, up or down (vote), assent or dissent, accept or reject" - }, - { - "example": "快諾", - "reading": "カイダク", - "meaning": "ready consent" - }, - { - "example": "内諾", - "reading": "ナイダク", - "meaning": "informal consent, private consent" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "一", - "口", - "艾", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35582_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08afe.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8afe.gif", - "uri": "http://jisho.org/search/%E8%AB%BE%23kanji" - }, - { - "query": "濁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1883", - "strokeCount": 16, - "meaning": "voiced, uncleanness, wrong, nigori, impurity", - "kunyomi": [ - "にご.る", - "にご.す" - ], - "onyomi": [ - "ダク", - "ジョク" - ], - "onyomiExamples": [ - { - "example": "濁流", - "reading": "ダクリュウ", - "meaning": "muddy stream" - }, - { - "example": "濁音", - "reading": "ダクオン", - "meaning": "voiced consonant in Japanese" - }, - { - "example": "汚濁", - "reading": "オダク", - "meaning": "pollution, contamination, corruption, graft" - }, - { - "example": "清濁", - "reading": "セイダク", - "meaning": "good and evil, purity and impurity, voiced and unvoiced consonants" - }, - { - "example": "濁酒", - "reading": "ドブロク", - "meaning": "doburoku (unrefined sake)" - }, - { - "example": "濁世", - "reading": "ダクセ", - "meaning": "this corrupt or degenerate world, this world or life, the world of mankind" - } - ], - "kunyomiExamples": [ - { - "example": "濁る", - "reading": "にごる", - "meaning": "to become muddy, to become cloudy, to get impure (of a liquid, gas, etc.), to become dull (of a sound, color, etc.), to become hoarse, to become impure (of a heart, society, etc.), to be corrupted, to be polluted, to become voiced, to add voiced consonant marks" - }, - { - "example": "濁す", - "reading": "にごす", - "meaning": "to make muddy (of a liquid), to make cloudy, to make turbid, to roil, to make ambiguous, to evade (e.g. the point), to be noncommittal about" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "勹", - "汁", - "虫", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28609_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06fc1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6fc1.gif", - "uri": "http://jisho.org/search/%E6%BF%81%23kanji" - }, - { - "query": "但", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2404", - "strokeCount": 7, - "meaning": "however, but", - "kunyomi": [ - "ただ.し" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "但し", - "reading": "ただし", - "meaning": "but, however, provided that" - }, - { - "example": "但し書き", - "reading": "ただしがき", - "meaning": "proviso" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "化", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20294_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f46.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f46.gif", - "uri": "http://jisho.org/search/%E4%BD%86%23kanji" - }, - { - "query": "脱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "782", - "strokeCount": 11, - "meaning": "undress, removing, escape from, get rid of, be left out, take off", - "kunyomi": [ - "ぬ.ぐ", - "ぬ.げる" - ], - "onyomi": [ - "ダツ" - ], - "onyomiExamples": [ - { - "example": "脱", - "reading": "ダツ", - "meaning": "de- (indicating reversal, removal, etc.), post-" - }, - { - "example": "脱税", - "reading": "ダツゼイ", - "meaning": "tax evasion" - }, - { - "example": "逸脱", - "reading": "イツダツ", - "meaning": "deviation, departure, omission" - }, - { - "example": "解脱", - "reading": "ゲダツ", - "meaning": "liberation from earthly desires and the woes of man, deliverance of one's soul, moksha, mukti, vimukti" - } - ], - "kunyomiExamples": [ - { - "example": "脱ぐ", - "reading": "ぬぐ", - "meaning": "to take off (clothes, shoes, etc.), to undress" - }, - { - "example": "脱げる", - "reading": "ぬげる", - "meaning": "to come off, to slip down, to slip off" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "儿", - "口", - "并", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33073_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08131.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8131.gif", - "uri": "http://jisho.org/search/%E8%84%B1%23kanji" - }, - { - "query": "奪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "974", - "strokeCount": 14, - "meaning": "rob, take by force, snatch away, dispossess, plunder, usurp", - "kunyomi": [ - "うば.う" - ], - "onyomi": [ - "ダツ" - ], - "onyomiExamples": [ - { - "example": "奪三振", - "reading": "ダツサンシン", - "meaning": "striking a batter out" - }, - { - "example": "奪三振王", - "reading": "ダツサンシンオウ", - "meaning": "(season's) record holder in (for) the most strike-outs" - }, - { - "example": "争奪", - "reading": "ソウダツ", - "meaning": "struggle (for), scramble, contest" - }, - { - "example": "収奪", - "reading": "シュウダツ", - "meaning": "plundering, exploitation" - } - ], - "kunyomiExamples": [ - { - "example": "奪う", - "reading": "うばう", - "meaning": "to snatch away, to dispossess, to steal" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "大", - "寸", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22890_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0596a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/596a.gif", - "uri": "http://jisho.org/search/%E5%A5%AA%23kanji" - }, - { - "query": "棚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1594", - "strokeCount": 12, - "meaning": "shelf, ledge, rack, mount, mantle, trellis", - "kunyomi": [ - "たな", - "-だな" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "氷棚", - "reading": "ヒョウホウ", - "meaning": "ice shelf" - }, - { - "example": "陸棚", - "reading": "リクダナ", - "meaning": "continental shelf" - } - ], - "kunyomiExamples": [ - { - "example": "棚", - "reading": "たな", - "meaning": "shelf, ledge, rack, trellis" - }, - { - "example": "棚上げ", - "reading": "たなあげ", - "meaning": "shelving, pigeonholing" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "月", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26842_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068da.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68da.gif", - "uri": "http://jisho.org/search/%E6%A3%9A%23kanji" - }, - { - "query": "誰", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1933", - "strokeCount": 15, - "meaning": "who, someone, somebody", - "kunyomi": [ - "だれ", - "たれ", - "た" - ], - "onyomi": [ - "スイ" - ], - "onyomiExamples": [ - { - "example": "誰何", - "reading": "スイカ", - "meaning": "challenging (an unknown person), asking a person's identity" - } - ], - "kunyomiExamples": [ - { - "example": "誰", - "reading": "だれ", - "meaning": "who" - }, - { - "example": "誰か", - "reading": "だれか", - "meaning": "someone, somebody" - }, - { - "example": "どこの誰", - "reading": "どこのだれ", - "meaning": "who the heck, just who" - }, - { - "example": "誰々", - "reading": "だれだれ", - "meaning": "so-and-so, who?, which people?" - }, - { - "example": "誰", - "reading": "だれ", - "meaning": "who" - }, - { - "example": "誰彼", - "reading": "だれかれ", - "meaning": "this or that person, anybody, many people" - }, - { - "example": "誰", - "reading": "だれ", - "meaning": "who" - }, - { - "example": "誰が為に", - "reading": "たがために", - "meaning": "for whom" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "言", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35504_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ab0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ab0.gif", - "uri": "http://jisho.org/search/%E8%AA%B0%23kanji" - }, - { - "query": "丹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1402", - "strokeCount": 4, - "meaning": "rust-colored, red, red lead, pills, sincerity", - "kunyomi": [ - "に" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "丹念", - "reading": "タンネン", - "meaning": "painstaking, careful, meticulous, scrupulous, detailed, elaborate" - }, - { - "example": "丹精", - "reading": "タンセイ", - "meaning": "working earnestly, sincerity, diligence, effort, pains" - }, - { - "example": "伊勢丹", - "reading": "イセタン", - "meaning": "Isetan (department store)" - }, - { - "example": "切支丹", - "reading": "キリシタン", - "meaning": "early Japanese Christianity (from the later Muromachi period), early Japanese Christian" - } - ], - "kunyomiExamples": [ - { - "example": "丹", - "reading": "に", - "meaning": "red earth (i.e. containing cinnabar or minium), vermilion" - }, - { - "example": "丹色", - "reading": "にいろ", - "meaning": "red" - }, - { - "example": "海胆", - "reading": "うに", - "meaning": "sea urchin, seasoned sea urchin eggs" - }, - { - "example": "黄丹", - "reading": "おうだん", - "meaning": "orange color traditionally worn by the crown prince" - } - ], - "radical": { - "symbol": "丶", - "meaning": "dot" - }, - "parts": [ - "ノ", - "一", - "丶", - "亅" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20025_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e39.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e39.gif", - "uri": "http://jisho.org/search/%E4%B8%B9%23kanji" - }, - { - "query": "旦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 5, - "meaning": "daybreak, dawn, morning", - "kunyomi": [ - "あき.らか", - "あきら", - "ただし", - "あさ", - "あした" - ], - "onyomi": [ - "タン", - "ダン" - ], - "onyomiExamples": [ - { - "example": "旦過", - "reading": "タンガ", - "meaning": "staying the night (of an itinerant priest in Zen Buddhism), itinerant priest's lodging, providing a room for an itinerant priest so that he may meditate for a long period of time" - }, - { - "example": "旦日", - "reading": "タンジツ", - "meaning": "tomorrow, tomorrow morning" - }, - { - "example": "歳旦", - "reading": "サイタン", - "meaning": "New Year's Day" - }, - { - "example": "明旦", - "reading": "ミョウタン", - "meaning": "tomorrow morning" - }, - { - "example": "旦那", - "reading": "ダンナ", - "meaning": "master (of a house, shop, etc.), husband, sir, boss, master, governor, patron of a mistress, geisha, bar or nightclub hostess, sugar daddy, alms, almsgiving, almsgiver" - }, - { - "example": "旦つく", - "reading": "ダンツク", - "meaning": "husband" - }, - { - "example": "眛旦", - "reading": "マイダン", - "meaning": "dawn, daybreak" - }, - { - "example": "震旦", - "reading": "シンタン", - "meaning": "(ancient) China" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "一", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26086_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/065e6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/65e6.gif", - "uri": "http://jisho.org/search/%E6%97%A6%23kanji" - }, - { - "query": "胆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1449", - "strokeCount": 9, - "meaning": "gall bladder, courage, pluck, nerve", - "kunyomi": [ - "きも" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "肝", - "reading": "キモ", - "meaning": "liver, innards, courage, spirit, pluck, guts, crux, essential point" - }, - { - "example": "胆石", - "reading": "タンセキ", - "meaning": "gallstones" - }, - { - "example": "魂胆", - "reading": "コンタン", - "meaning": "ulterior motive, plot, scheme, complicated circumstances, intricacies" - }, - { - "example": "剛胆", - "reading": "ゴウタン", - "meaning": "boldness, hardihood, courage, valour, valor" - } - ], - "kunyomiExamples": [ - { - "example": "肝", - "reading": "きも", - "meaning": "liver, innards, courage, spirit, pluck, guts, crux, essential point" - }, - { - "example": "肝いり", - "reading": "きもいり", - "meaning": "good offices, auspices, sponsorship, help, assistance, village official (during the Edo period)" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "一", - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32966_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080c6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80c6.gif", - "uri": "http://jisho.org/search/%E8%83%86%23kanji" - }, - { - "query": "淡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1436", - "strokeCount": 11, - "meaning": "thin, faint, pale, fleeting", - "kunyomi": [ - "あわ.い" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "淡々", - "reading": "タンタン", - "meaning": "uninterested, unconcerned, indifferent, dispassionate, matter-of-fact, detached, plain, light, simple, bland, flowing gently" - }, - { - "example": "淡水", - "reading": "タンスイ", - "meaning": "fresh water (i.e. not salt water)" - }, - { - "example": "濃淡", - "reading": "ノウタン", - "meaning": "light and shade, shade (of colour, color), depth (of flavor), complexity, strength and weakness (of flavor)" - }, - { - "example": "平淡", - "reading": "ヘイタン", - "meaning": "simple, quiet" - } - ], - "kunyomiExamples": [ - { - "example": "淡い", - "reading": "あわい", - "meaning": "light, faint, pale, fleeting" - }, - { - "example": "淡い悲しみ", - "reading": "あわいかなしみ", - "meaning": "fleeting sorrow" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28129_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06de1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6de1.gif", - "uri": "http://jisho.org/search/%E6%B7%A1%23kanji" - }, - { - "query": "嘆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1584", - "strokeCount": 13, - "meaning": "sigh, lament, moan, grieve, sigh of admiration", - "kunyomi": [ - "なげ.く", - "なげ.かわしい" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "嘆", - "reading": "タン", - "meaning": "sigh, grief, lamentation" - }, - { - "example": "嘆願", - "reading": "タンガン", - "meaning": "entreaty, appeal, petition" - }, - { - "example": "詠嘆", - "reading": "エイタン", - "meaning": "exclamation, admiration" - }, - { - "example": "慨嘆", - "reading": "ガイタン", - "meaning": "deploring, lamentation, regret, complaint" - } - ], - "kunyomiExamples": [ - { - "example": "嘆く", - "reading": "なげく", - "meaning": "to lament, to grieve, to regret, to deplore" - }, - { - "example": "嘆かわしい", - "reading": "なげかわしい", - "meaning": "sad, wretched, deplorable" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "一", - "二", - "口", - "大", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22022_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05606.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5606.gif", - "uri": "http://jisho.org/search/%E5%98%86%23kanji" - }, - { - "query": "端", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "960", - "strokeCount": 14, - "meaning": "edge, origin, end, point, border, verge, cape", - "kunyomi": [ - "はし", - "は", - "はた", - "-ばた", - "はな" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "端", - "reading": "タン", - "meaning": "origin, beginning, variable measure of fabric (28.8 cm in width), for kimonos: at least 10 m in length, for haori: at least 7.27 m in length, for other clothes: at least 6.06 m in length, tip, extremity" - }, - { - "example": "端緒", - "reading": "タンショ", - "meaning": "start, beginning, first step, clue" - }, - { - "example": "末端", - "reading": "マッタン", - "meaning": "end, tip, extremities, terminal" - }, - { - "example": "北端", - "reading": "ホクタン", - "meaning": "northern extremity" - } - ], - "kunyomiExamples": [ - { - "example": "端", - "reading": "はし", - "meaning": "end (e.g. of street), tip, point, edge, margin, beginning, start, first, odds and ends, scrap, odd bit, least" - }, - { - "example": "端", - "reading": "はした", - "meaning": "fraction, odd sum, odd money, small change, low class female servant" - }, - { - "example": "木の端", - "reading": "きのはし", - "meaning": "fragment of wood" - }, - { - "example": "道の端", - "reading": "みちのはし", - "meaning": "edge of a street" - }, - { - "example": "端", - "reading": "はし", - "meaning": "end (e.g. of street), tip, point, edge, margin, beginning, start, first, odds and ends, scrap, odd bit, least" - }, - { - "example": "端", - "reading": "はした", - "meaning": "fraction, odd sum, odd money, small change, low class female servant" - }, - { - "example": "切り羽", - "reading": "きりは", - "meaning": "face (of a wall of coal or ore, etc.), working face (of a mine)" - }, - { - "example": "継端", - "reading": "つぎは", - "meaning": "opportunity to continue a conversation" - }, - { - "example": "側", - "reading": "そば", - "meaning": "near, close, beside, vicinity, proximity, besides, while, third person" - }, - { - "example": "端から", - "reading": "はたから", - "meaning": "from outside, from the side" - }, - { - "example": "端", - "reading": "はし", - "meaning": "end (e.g. of street), tip, point, edge, margin, beginning, start, first, odds and ends, scrap, odd bit, least" - }, - { - "example": "鼻先", - "reading": "はなさき", - "meaning": "tip of nose, before one's eyes, under one's nose, in front of, tip (of something)" - }, - { - "example": "出鼻", - "reading": "でばな", - "meaning": "projecting part (of a headland, etc.), moment of departure, (on the) point of going out, outset, start, beginning" - }, - { - "example": "上がり端", - "reading": "あがりはな", - "meaning": "entrance (i.e. of a Japanese house), start of a rise (e.g. in prices)" - } - ], - "radical": { - "symbol": "立", - "meaning": "stand, erect" - }, - "parts": [ - "山", - "立", - "而" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31471_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07aef.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7aef.gif", - "uri": "http://jisho.org/search/%E7%AB%AF%23kanji" - }, - { - "query": "綻", - "found": true, - "taughtIn": "junior high", - "strokeCount": 14, - "meaning": "be rent, ripped, unravel, run, begin to open, smile", - "kunyomi": [ - "ほころ.びる" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "経営破綻", - "reading": "ケイエイハタン", - "meaning": "business failure" - }, - { - "example": "経済破綻", - "reading": "ケイザイハタン", - "meaning": "economic collapse, financial failure, bankruptcy" - } - ], - "kunyomiExamples": [ - { - "example": "綻びる", - "reading": "ほころびる", - "meaning": "to come apart at the seams, to be ripped, to be torn, to begin to open, to begin to bloom, to smile broadly, to break into a smile" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "宀", - "小", - "幺", - "疋", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32187_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dbb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dbb.gif", - "uri": "http://jisho.org/search/%E7%B6%BB%23kanji" - }, - { - "query": "鍛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1793", - "strokeCount": 17, - "meaning": "forge, discipline, train", - "kunyomi": [ - "きた.える" - ], - "onyomi": [ - "タン" - ], - "onyomiExamples": [ - { - "example": "鍛錬", - "reading": "タンレン", - "meaning": "tempering (metal), annealing, forging, toughening, disciplining, training" - }, - { - "example": "鍛金", - "reading": "タンキン", - "meaning": "hammering" - } - ], - "kunyomiExamples": [ - { - "example": "鍛える", - "reading": "きたえる", - "meaning": "to forge, to temper, to drill, to train, to discipline" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "几", - "又", - "殳", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37723_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0935b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/935b.gif", - "uri": "http://jisho.org/search/%E9%8D%9B%23kanji" - }, - { - "query": "弾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "853", - "strokeCount": 12, - "meaning": "bullet, twang, flip, snap", - "kunyomi": [ - "ひ.く", - "-ひ.き", - "はず.む", - "たま", - "はじ.く", - "はじ.ける", - "ただ.す", - "はじ.きゆみ" - ], - "onyomi": [ - "ダン", - "タン" - ], - "onyomiExamples": [ - { - "example": "弾", - "reading": "ダン", - "meaning": "counter for parts (of a story, etc.)" - }, - { - "example": "弾圧", - "reading": "ダンアツ", - "meaning": "oppression, suppression, pressure" - }, - { - "example": "防弾", - "reading": "ボウダン", - "meaning": "bulletproof, bombproof" - }, - { - "example": "砲弾", - "reading": "ホウダン", - "meaning": "shell, cannonball" - } - ], - "kunyomiExamples": [ - { - "example": "弾く", - "reading": "ひく", - "meaning": "to play (a stringed or keyboard instrument)" - }, - { - "example": "弾む", - "reading": "はずむ", - "meaning": "to spring, to bound, to bounce, to be stimulated, to be encouraged, to get lively, to pay handsomely, to splurge, to part eagerly with (money, etc.), to breathe hard, to pant, to be out of breath" - }, - { - "example": "玉", - "reading": "たま", - "meaning": "ball, sphere, globe, orb, bead (of sweat, dew, etc.), drop, droplet, ball (in sports), pile (of noodles, etc.), bullet, bulb (i.e. a light bulb), lens (of glasses, etc.), bead (of an abacus), ball (i.e. a testicle), gem, jewel (esp. spherical; sometimes used figuratively), pearl, female entertainer (e.g. a geisha), person (when commenting on their nature), character, item, funds or person used as part of a plot, egg, coin, precious, beautiful, excellent" - }, - { - "example": "弾傷", - "reading": "たまきず", - "meaning": "bullet wound, gunshot wound" - }, - { - "example": "弾く", - "reading": "はじく", - "meaning": "to flip, to snap, to flick, to repel, to use (an abacus), to calculate, to strum, to pluck the strings (of a guitar, etc.)" - }, - { - "example": "弾ける", - "reading": "はじける", - "meaning": "to burst open, to split open, to pop, to be bursting with (e.g. youth, laughter, flavor), to bounce, to bound" - }, - { - "example": "弾正台", - "reading": "だんじょうだい", - "meaning": "Imperial Prosecuting and Investigating Office (1869-1871 CE), Imperial Prosecuting and Investigating Office (under the ritsuryo system)" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "十", - "尚", - "弓", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24382_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f3e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f3e.gif", - "uri": "http://jisho.org/search/%E5%BC%BE%23kanji" - }, - { - "query": "壇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1512", - "strokeCount": 16, - "meaning": "podium, stage, rostrum, terrace", - "kunyomi": [], - "onyomi": [ - "ダン", - "タン" - ], - "onyomiExamples": [ - { - "example": "壇", - "reading": "ダン", - "meaning": "platform, podium, rostrum, pulpit, (ceremonial) mound, world (of haiku, art, etc.), (literary) circles, mandala" - }, - { - "example": "壇上", - "reading": "ダンジョウ", - "meaning": "on a stage, on a platform, on an altar" - }, - { - "example": "仏壇", - "reading": "ブツダン", - "meaning": "Buddhist (household) altar" - }, - { - "example": "教壇", - "reading": "キョウダン", - "meaning": "(teacher's) platform, podium, dais" - }, - { - "example": "黒檀", - "reading": "コクタン", - "meaning": "ebony" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "一", - "亠", - "口", - "囗", - "土", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22727_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58c7.gif", - "uri": "http://jisho.org/search/%E5%A3%87%23kanji" - }, - { - "query": "恥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1575", - "strokeCount": 10, - "meaning": "shame, dishonor", - "kunyomi": [ - "は.じる", - "はじ", - "は.じらう", - "は.ずかしい" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "恥辱", - "reading": "チジョク", - "meaning": "disgrace, shame, insult" - }, - { - "example": "恥丘", - "reading": "チキュウ", - "meaning": "mons pubis, mons veneris" - }, - { - "example": "無恥", - "reading": "ムチ", - "meaning": "shameless" - }, - { - "example": "羞恥", - "reading": "シュウチ", - "meaning": "shyness, bashfulness, shame" - } - ], - "kunyomiExamples": [ - { - "example": "恥じる", - "reading": "はじる", - "meaning": "to feel ashamed" - }, - { - "example": "恥", - "reading": "はじ", - "meaning": "shame, embarrassment, disgrace" - }, - { - "example": "恥さらし", - "reading": "はじさらし", - "meaning": "disgrace, shame" - }, - { - "example": "大恥", - "reading": "おおはじ", - "meaning": "humiliation, shame, loss of face" - }, - { - "example": "死に恥", - "reading": "しにはじ", - "meaning": "dishonor that persists after death, shame at the moment of one's death" - }, - { - "example": "恥じらう", - "reading": "はじらう", - "meaning": "to feel shy, to be bashful, to blush" - }, - { - "example": "恥ずかしい", - "reading": "はずかしい", - "meaning": "embarrassing, embarrassed, ashamed, humiliated, shy, disgraceful, shameful" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "心", - "耳" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24677_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06065.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6065.gif", - "uri": "http://jisho.org/search/%E6%81%A5%23kanji" - }, - { - "query": "致", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "870", - "strokeCount": 10, - "meaning": "doth, do, send, forward, cause, exert, incur, engage", - "kunyomi": [ - "いた.す" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "致命傷", - "reading": "チメイショウ", - "meaning": "fatal wound" - }, - { - "example": "致死", - "reading": "チシ", - "meaning": "lethal, fatal" - }, - { - "example": "招致", - "reading": "ショウチ", - "meaning": "invitation, summons, bidding (e.g. to host the Olympics), calling" - }, - { - "example": "誘致", - "reading": "ユウチ", - "meaning": "attraction, lure, invitation" - } - ], - "kunyomiExamples": [ - { - "example": "致す", - "reading": "いたす", - "meaning": "to do" - } - ], - "radical": { - "symbol": "至", - "meaning": "arrive" - }, - "parts": [ - "乞", - "厶", - "土", - "攵", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33268_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081f4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81f4.gif", - "uri": "http://jisho.org/search/%E8%87%B4%23kanji" - }, - { - "query": "遅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "833", - "strokeCount": 12, - "meaning": "slow, late, back, later", - "kunyomi": [ - "おく.れる", - "おく.らす", - "おそ.い" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "遅々", - "reading": "チチ", - "meaning": "slow, lagging, tardy" - }, - { - "example": "遅延", - "reading": "チエン", - "meaning": "delay, latency" - }, - { - "example": "棲遅", - "reading": "セイチ", - "meaning": "living in tranquility, retiring to the countryside, retirement house" - }, - { - "example": "巧遅", - "reading": "コウチ", - "meaning": "elaborate but slow execution, polished but slow work" - } - ], - "kunyomiExamples": [ - { - "example": "遅れる", - "reading": "おくれる", - "meaning": "to be late, to be delayed, to fall behind schedule, to be overdue, to fall behind (in a race, one's studies, etc.), to lag behind, to be behind (the times), to be bereaved of, to be preceded by (someone) in death, to be slow (of a clock or watch)" - }, - { - "example": "遅らす", - "reading": "おくらす", - "meaning": "to delay, to postpone, to slow down, to retard" - }, - { - "example": "遅い", - "reading": "おそい", - "meaning": "slow, time-consuming, sluggish, late (in the day), towards the end (of the day or night), until a time far into the day or night, later (than expected or usual), late, behind schedule, behind time, tardy, overdue, unpunctual, too late, having missed the boat, dull, stupid" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "尸", - "并", - "王", - "羊", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36933_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09045.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9045.gif", - "uri": "http://jisho.org/search/%E9%81%85%23kanji" - }, - { - "query": "痴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1663", - "strokeCount": 13, - "meaning": "stupid, foolish", - "kunyomi": [ - "し.れる", - "おろか" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "痴", - "reading": "チ", - "meaning": "foolishness, fool, moha (ignorance, folly)" - }, - { - "example": "痴呆", - "reading": "チホウ", - "meaning": "dementia" - }, - { - "example": "愚痴", - "reading": "グチ", - "meaning": "idle complaint, grumble, moha (ignorance, folly)" - }, - { - "example": "白痴", - "reading": "ハクチ", - "meaning": "idiot, retard, idiocy, profound mental retardation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "乞", - "口", - "疔", - "矢" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30196_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075f4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75f4.gif", - "uri": "http://jisho.org/search/%E7%97%B4%23kanji" - }, - { - "query": "稚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1560", - "strokeCount": 13, - "meaning": "immature, young", - "kunyomi": [ - "いとけない", - "おさない", - "おくて", - "おでる" - ], - "onyomi": [ - "チ", - "ジ" - ], - "onyomiExamples": [ - { - "example": "稚魚", - "reading": "チギョ", - "meaning": "fry, juvenile fish, fingerling" - }, - { - "example": "稚拙", - "reading": "チセツ", - "meaning": "unskillful, childish, immature, naive, artless, clumsy, crude" - }, - { - "example": "丁稚", - "reading": "デッチ", - "meaning": "apprentice, shop boy" - } - ], - "kunyomiExamples": [ - { - "example": "幼い", - "reading": "おさない", - "meaning": "very young, little, childish, immature" - }, - { - "example": "幼い", - "reading": "おさない", - "meaning": "very young, little, childish, immature" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "禾", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31258_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a1a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a1a.gif", - "uri": "http://jisho.org/search/%E7%A8%9A%23kanji" - }, - { - "query": "緻", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2460", - "strokeCount": 16, - "meaning": "fine (i.e. not coarse)", - "kunyomi": [ - "こまか.い" - ], - "onyomi": [ - "チ" - ], - "onyomiExamples": [ - { - "example": "緻密", - "reading": "チミツ", - "meaning": "minute, fine, delicate, accurate, precise, elaborate" - }, - { - "example": "精緻", - "reading": "セイチ", - "meaning": "delicate, minute, subtle" - }, - { - "example": "細緻", - "reading": "サイチ", - "meaning": "minute, meticulous" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "一", - "乞", - "厶", - "土", - "小", - "幺", - "攵", - "糸", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32251_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07dfb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7dfb.gif", - "uri": "http://jisho.org/search/%E7%B7%BB%23kanji" - }, - { - "query": "畜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1824", - "strokeCount": 10, - "meaning": "livestock, domestic fowl and animals", - "kunyomi": [], - "onyomi": [ - "チク" - ], - "onyomiExamples": [ - { - "example": "畜産", - "reading": "チクサン", - "meaning": "animal husbandry, livestock industry" - }, - { - "example": "畜生", - "reading": "チクショウ", - "meaning": "beast (i.e. any animal other than man), person reborn into the animal realm, brute (i.e. a contemptible human being), damn it, damn, Christ, for Christ's sake" - }, - { - "example": "牧畜", - "reading": "ボクチク", - "meaning": "stock-farming, livestock farming, cattle breeding" - }, - { - "example": "人畜", - "reading": "ジンチク", - "meaning": "men and animals" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "亠", - "幺", - "玄", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30044_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0755c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/755c.gif", - "uri": "http://jisho.org/search/%E7%95%9C%23kanji" - }, - { - "query": "逐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2230", - "strokeCount": 10, - "meaning": "pursue, drive away, chase, accomplish, attain, commit", - "kunyomi": [], - "onyomi": [ - "チク" - ], - "onyomiExamples": [ - { - "example": "逐次", - "reading": "チクジ", - "meaning": "successively, one after another, sequentially, one by one" - }, - { - "example": "逐一", - "reading": "チクイチ", - "meaning": "one by one, in detail, minutely" - }, - { - "example": "放逐", - "reading": "ホウチク", - "meaning": "expulsion, ousting, ejection, dismissal, banishment" - }, - { - "example": "角逐", - "reading": "カクチク", - "meaning": "competition, rivalry, vying (with)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "豕", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36880_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09010.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9010.gif", - "uri": "http://jisho.org/search/%E9%80%90%23kanji" - }, - { - "query": "蓄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1260", - "strokeCount": 13, - "meaning": "amass, raise, hoard, store", - "kunyomi": [ - "たくわ.える" - ], - "onyomi": [ - "チク" - ], - "onyomiExamples": [ - { - "example": "蓄積", - "reading": "チクセキ", - "meaning": "accumulation, accumulate, store" - }, - { - "example": "蓄財", - "reading": "チクザイ", - "meaning": "amassing of wealth" - }, - { - "example": "備蓄", - "reading": "ビチク", - "meaning": "stockpile, reserves, storing, stocking up, laying in (supplies)" - }, - { - "example": "含蓄", - "reading": "ガンチク", - "meaning": "implication, significance, connotation, depth of meaning, complications of a problem" - } - ], - "kunyomiExamples": [ - { - "example": "蓄える", - "reading": "たくわえる", - "meaning": "to store, to save up, to stock up on, to lay in stock, to set aside, to accumulate (e.g. knowledge), to build up (e.g. experience), to develop (e.g. one's skills), to grow (a beard, moustache, etc.), to wear" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "亠", - "幺", - "玄", - "田", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33988_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/084c4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/84c4.gif", - "uri": "http://jisho.org/search/%E8%93%84%23kanji" - }, - { - "query": "秩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1275", - "strokeCount": 10, - "meaning": "regularity, salary, order", - "kunyomi": [], - "onyomi": [ - "チツ" - ], - "onyomiExamples": [ - { - "example": "秩序", - "reading": "チツジョ", - "meaning": "order, discipline, regularity, system, method" - }, - { - "example": "秩序維持", - "reading": "チツジョイジ", - "meaning": "maintaining order (e.g. in a courtroom)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "ノ", - "人", - "土", - "大", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31209_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/079e9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/79e9.gif", - "uri": "http://jisho.org/search/%E7%A7%A9%23kanji" - }, - { - "query": "窒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1776", - "strokeCount": 11, - "meaning": "plug up, obstruct", - "kunyomi": [], - "onyomi": [ - "チツ" - ], - "onyomiExamples": [ - { - "example": "脱窒", - "reading": "ダッチツ", - "meaning": "denitrification, denitration" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "一", - "儿", - "厶", - "土", - "宀", - "穴", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31378_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a92.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a92.gif", - "uri": "http://jisho.org/search/%E7%AA%92%23kanji" - }, - { - "query": "嫡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2130", - "strokeCount": 14, - "meaning": "legitimate wife, direct descent (non-bastard)", - "kunyomi": [], - "onyomi": [ - "チャク", - "テキ" - ], - "onyomiExamples": [ - { - "example": "嫡出", - "reading": "チャクシュツ", - "meaning": "legitimate birth" - }, - { - "example": "嫡子", - "reading": "チャクシ", - "meaning": "legitimate child" - }, - { - "example": "正嫡", - "reading": "セイチャク", - "meaning": "legal wife, her child, main family" - }, - { - "example": "廃嫡", - "reading": "ハイチャク", - "meaning": "disinheritance" - }, - { - "example": "嫡出", - "reading": "チャクシュツ", - "meaning": "legitimate birth" - }, - { - "example": "嫡出子", - "reading": "チャクシュツシ", - "meaning": "legitimate child" - }, - { - "example": "正嫡", - "reading": "セイチャク", - "meaning": "legal wife, her child, main family" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "亠", - "冂", - "十", - "口", - "女", - "并", - "滴", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23265_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ae1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ae1.gif", - "uri": "http://jisho.org/search/%E5%AB%A1%23kanji" - }, - { - "query": "抽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1437", - "strokeCount": 8, - "meaning": "pluck, pull, extract, excel", - "kunyomi": [ - "ひき-" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "抽象", - "reading": "チュウショウ", - "meaning": "abstract" - }, - { - "example": "抽出", - "reading": "チュウシュツ", - "meaning": "extraction, abstraction, selection (from a group), sampling" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25277_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062bd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62bd.gif", - "uri": "http://jisho.org/search/%E6%8A%BD%23kanji" - }, - { - "query": "衷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2229", - "strokeCount": 10, - "meaning": "inmost, heart, mind, inside", - "kunyomi": [], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "衷心", - "reading": "チュウシン", - "meaning": "innermost feelings" - }, - { - "example": "衷情", - "reading": "チュウジョウ", - "meaning": "true heart, inner feelings" - }, - { - "example": "折衷", - "reading": "セッチュウ", - "meaning": "compromise, cross, blending, eclecticism" - }, - { - "example": "苦衷", - "reading": "クチュウ", - "meaning": "distress, anguish, mental suffering" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "十", - "口", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34935_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08877.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8877.gif", - "uri": "http://jisho.org/search/%E8%A1%B7%23kanji" - }, - { - "query": "酎", - "found": true, - "taughtIn": "junior high", - "strokeCount": 10, - "meaning": "sake", - "kunyomi": [ - "かも.す" - ], - "onyomi": [ - "チュウ", - "チュ" - ], - "onyomiExamples": [ - { - "example": "酎", - "reading": "チュウ", - "meaning": "shōchū" - }, - { - "example": "酎ハイ", - "reading": "チュウハイ", - "meaning": "shōchū highball, cocktail of shōchū with tonic water" - }, - { - "example": "麦焼酎", - "reading": "ムギショウチュウ", - "meaning": "shōchū distilled from barley" - }, - { - "example": "球磨焼酎", - "reading": "クマジョウチュウ", - "meaning": "Kumamoto rice shōchū" - }, - { - "example": "酎", - "reading": "チュウ", - "meaning": "shōchū" - }, - { - "example": "酎ハイ", - "reading": "チュウハイ", - "meaning": "shōchū highball, cocktail of shōchū with tonic water" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "寸", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37198_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0914e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/914e.gif", - "uri": "http://jisho.org/search/%E9%85%8E%23kanji" - }, - { - "query": "鋳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2005", - "strokeCount": 15, - "meaning": "casting, mint", - "kunyomi": [ - "い.る" - ], - "onyomi": [ - "チュウ", - "イ", - "シュ", - "シュウ" - ], - "onyomiExamples": [ - { - "example": "鋳造", - "reading": "チュウゾウ", - "meaning": "casting, founding, minting" - }, - { - "example": "鋳貨", - "reading": "チュウカ", - "meaning": "coinage, mintage" - }, - { - "example": "改鋳", - "reading": "カイチュウ", - "meaning": "reminting, recasting" - }, - { - "example": "再鋳", - "reading": "サイチュウ", - "meaning": "recasting" - }, - { - "example": "鋳物", - "reading": "イモノ", - "meaning": "casting, cast-metal object" - }, - { - "example": "鋳型", - "reading": "イガタ", - "meaning": "mold, mould, template" - } - ], - "kunyomiExamples": [ - { - "example": "鋳る", - "reading": "いる", - "meaning": "to cast, to mint, to coin" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ノ", - "亠", - "土", - "寸", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37619_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/092f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/92f3.gif", - "uri": "http://jisho.org/search/%E9%8B%B3%23kanji" - }, - { - "query": "駐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "955", - "strokeCount": 15, - "meaning": "stop-over, reside in, resident", - "kunyomi": [], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "駐車", - "reading": "チュウシャ", - "meaning": "parking (e.g. car)" - }, - { - "example": "駐在", - "reading": "チュウザイ", - "meaning": "residence, stay, (job) posting, being stationed (overseas, etc.), residential police box, residential police box officer" - }, - { - "example": "常駐", - "reading": "ジョウチュウ", - "meaning": "permanent stationing, staying permanently, resident (program, file, etc.)" - }, - { - "example": "進駐", - "reading": "シンチュウ", - "meaning": "occupation, stationing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "丶", - "杰", - "王", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39376_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/099d0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/99d0.gif", - "uri": "http://jisho.org/search/%E9%A7%90%23kanji" - }, - { - "query": "弔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1840", - "strokeCount": 4, - "meaning": "condolences, mourning, funeral", - "kunyomi": [ - "とむら.う", - "とぶら.う" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "弔問", - "reading": "チョウモン", - "meaning": "condolence call" - }, - { - "example": "弔辞", - "reading": "チョウジ", - "meaning": "message of condolence, memorial address" - }, - { - "example": "慶弔", - "reading": "ケイチョウ", - "meaning": "congratulations and condolences" - }, - { - "example": "哀弔", - "reading": "アイチョウ", - "meaning": "sympathetic condolences" - } - ], - "kunyomiExamples": [ - { - "example": "弔う", - "reading": "とむらう", - "meaning": "to mourn for, to grieve for, to condole with (the bereaved family, etc.), to hold a memorial service for, to hold a funeral service for" - }, - { - "example": "弔う", - "reading": "とむらう", - "meaning": "to mourn for, to grieve for, to condole with (the bereaved family, etc.), to hold a memorial service for, to hold a funeral service for" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "弓", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24340_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f14.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f14.gif", - "uri": "http://jisho.org/search/%E5%BC%94%23kanji" - }, - { - "query": "挑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "989", - "strokeCount": 9, - "meaning": "challenge, contend for, make love to", - "kunyomi": [ - "いど.む" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "挑発", - "reading": "チョウハツ", - "meaning": "provocation, stirring up, arousal, excitement, stimulation" - }, - { - "example": "挑戦", - "reading": "チョウセン", - "meaning": "challenge, defiance, dare, attempt, try" - } - ], - "kunyomiExamples": [ - { - "example": "挑む", - "reading": "いどむ", - "meaning": "to challenge to (a fight, game, etc.), to throw down the gauntlet, to contend for, to tackle (e.g. a problem), to attempt, to go after (a prize, record, etc.), to pressure (someone) for sex, to make advances to" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "儿", - "冫", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25361_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06311.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6311.gif", - "uri": "http://jisho.org/search/%E6%8C%91%23kanji" - }, - { - "query": "彫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1533", - "strokeCount": 11, - "meaning": "carve, engrave, chisel", - "kunyomi": [ - "ほ.る", - "-ぼ.り" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "彫刻", - "reading": "チョウコク", - "meaning": "carving, engraving, sculpture" - }, - { - "example": "彫金", - "reading": "チョウキン", - "meaning": "chasing, metal carving, metal engraving" - }, - { - "example": "木彫", - "reading": "モクチョウ", - "meaning": "wood carving, wooden sculpture, woodcraft" - } - ], - "kunyomiExamples": [ - { - "example": "彫る", - "reading": "ほる", - "meaning": "to carve, to engrave, to sculpt, to chisel, to tattoo" - } - ], - "radical": { - "symbol": "彡", - "meaning": "bristle, beard" - }, - "parts": [ - "冂", - "口", - "土", - "彡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24427_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f6b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f6b.gif", - "uri": "http://jisho.org/search/%E5%BD%AB%23kanji" - }, - { - "query": "眺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1726", - "strokeCount": 11, - "meaning": "stare, watch, look at, see, scrutinize", - "kunyomi": [ - "なが.める" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "眺望", - "reading": "チョウボウ", - "meaning": "prospect, view, outlook" - }, - { - "example": "眺望権", - "reading": "チョウボウケン", - "meaning": "right to a view" - } - ], - "kunyomiExamples": [ - { - "example": "眺める", - "reading": "ながめる", - "meaning": "to look at, to gaze at, to watch, to stare at, to look out over, to get a view of, to admire (e.g. the scenery), to look on (from the sidelines), to stand by and watch, to observe" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "儿", - "冫", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30522_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0773a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/773a.gif", - "uri": "http://jisho.org/search/%E7%9C%BA%23kanji" - }, - { - "query": "釣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1542", - "strokeCount": 11, - "meaning": "angling, fish, catch, allure, ensnare", - "kunyomi": [ - "つ.る", - "つ.り", - "つ.り-" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "釣果", - "reading": "チョウカ", - "meaning": "catch (fishing), amount of fish caught, caught fish" - }, - { - "example": "釣菌", - "reading": "チョウキン", - "meaning": "extracting bacteria (from a petri dish, etc.)" - }, - { - "example": "爆釣", - "reading": "バクチョウ", - "meaning": "big catch (of fish), big haul" - } - ], - "kunyomiExamples": [ - { - "example": "釣る", - "reading": "つる", - "meaning": "to fish, to angle, to catch, to lure in, to tempt, to attract, to entice, to allure" - }, - { - "example": "釣瓶", - "reading": "つるべ", - "meaning": "well bucket" - }, - { - "example": "釣り", - "reading": "つり", - "meaning": "fishing, angling, change (for a purchase), trolling, writing deliberately inflammatory posts online" - }, - { - "example": "釣り合い", - "reading": "つりあい", - "meaning": "balance, equilibrium" - }, - { - "example": "雪釣り", - "reading": "ゆきつり", - "meaning": "game in which children use a piece of charcoal on a string to create and lift up snowballs" - }, - { - "example": "雪吊り", - "reading": "ゆきづり", - "meaning": "placing ropes or wires around trees to protect them from the snow, ropes stretched from the top of a tree to the lower branches to prevent their breaking under heavy snow" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "丶", - "勹", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37347_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/091e3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/91e3.gif", - "uri": "http://jisho.org/search/%E9%87%A3%23kanji" - }, - { - "query": "貼", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2444", - "strokeCount": 12, - "meaning": "stick, paste, apply", - "kunyomi": [ - "は.る", - "つ.く" - ], - "onyomi": [ - "テン", - "チョウ" - ], - "onyomiExamples": [ - { - "example": "貼付", - "reading": "チョウフ", - "meaning": "pasting, sticking, attaching, affixing, appending" - }, - { - "example": "貼", - "reading": "チョウ", - "meaning": "counter for doses of medicine, etc." - }, - { - "example": "貼付", - "reading": "チョウフ", - "meaning": "pasting, sticking, attaching, affixing, appending" - } - ], - "kunyomiExamples": [ - { - "example": "張る", - "reading": "はる", - "meaning": "to stick, to paste, to affix, to stretch, to spread, to strain, to tighten, to put up (tent), to form (e.g. ice on a pond), to fill, to swell, to stick out, to put, to slap, to post (a link, etc. online), to be expensive, to keep a watch on, to be on the lookout, to become one tile away from completion, to span, to generate" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "卜", - "口", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36028_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cbc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cbc.gif", - "uri": "http://jisho.org/search/%E8%B2%BC%23kanji" - }, - { - "query": "超", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "597", - "strokeCount": 12, - "meaning": "transcend, super-, ultra-", - "kunyomi": [ - "こ.える", - "こ.す" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "超", - "reading": "チョウ", - "meaning": "super-, ultra-, hyper-, extreme, extremely, really, totally, absolutely, over, more than" - }, - { - "example": "超音波", - "reading": "チョウオンパ", - "meaning": "ultrasonic waves, ultrasound" - }, - { - "example": "出超", - "reading": "シュッチョウ", - "meaning": "excess of exports, favorable balance of trade, favourable balance of trade" - }, - { - "example": "入超", - "reading": "ニュウチョウ", - "meaning": "excess of imports" - } - ], - "kunyomiExamples": [ - { - "example": "越える", - "reading": "こえる", - "meaning": "to cross over, to cross, to pass through, to pass over (out of), to go beyond, to go past, to exceed, to surpass, to be more (than)" - }, - { - "example": "越す", - "reading": "こす", - "meaning": "to cross over (e.g. mountain), to go across, to get over (e.g. hardship), to pass time (e.g. a winter), to surpass, to be better than, to exceed, to move house, to go, to come" - } - ], - "radical": { - "symbol": "走", - "forms": [ - "赱" - ], - "meaning": "run" - }, - "parts": [ - "刀", - "口", - "土", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36229_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d85.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d85.gif", - "uri": "http://jisho.org/search/%E8%B6%85%23kanji" - }, - { - "query": "跳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1716", - "strokeCount": 13, - "meaning": "hop, leap up, spring, jerk, prance, buck, splash, sputter, snap", - "kunyomi": [ - "は.ねる", - "と.ぶ", - "-と.び" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "跳躍", - "reading": "チョウヤク", - "meaning": "jump, leap, skip, bound" - }, - { - "example": "跳馬", - "reading": "チョウバ", - "meaning": "long horse (for vaulting)" - }, - { - "example": "反跳", - "reading": "ハンチョウ", - "meaning": "(physical) recoil" - } - ], - "kunyomiExamples": [ - { - "example": "跳ねる", - "reading": "はねる", - "meaning": "to jump, to leap, to prance, to spring up, to bound, to hop, to break up, to close, to come to an end, to hit (e.g. to have a car hit something or someone)" - }, - { - "example": "飛ぶ", - "reading": "とぶ", - "meaning": "to fly, to soar, to jump, to leap, to spring, to bound, to hop, to spatter, to scatter, to splash, to fly (e.g. of sparks), to hurry, to rush, to flee, to run off, to escape, to disappear, to vanish, to fade, to thin out, to break off, to come off, to fall off, to blow (of a fuse), to be sent out (of an order), to fly (of false rumours, catcalls, etc.), to come flying (of a punch, kick, etc.), to be missing (of a page, stitch, etc.), to skip, to jump (e.g. of a conversation)" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "儿", - "冫", - "口", - "止", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36339_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08df3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8df3.gif", - "uri": "http://jisho.org/search/%E8%B7%B3%23kanji" - }, - { - "query": "徴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "850", - "strokeCount": 14, - "meaning": "indications, sign, omen, symptom, collect, seek, refer to, question", - "kunyomi": [ - "しるし" - ], - "onyomi": [ - "チョウ", - "チ" - ], - "onyomiExamples": [ - { - "example": "徴", - "reading": "チョウ", - "meaning": "sign, indication, symptom, call, summons, requisition, expropriation" - }, - { - "example": "兆候", - "reading": "チョウコウ", - "meaning": "sign, indication, omen, symptom" - }, - { - "example": "追徴", - "reading": "ツイチョウ", - "meaning": "supplementary charge, additional collection" - }, - { - "example": "吉兆", - "reading": "キッチョウ", - "meaning": "lucky omen, good omen" - }, - { - "example": "徴", - "reading": "チ", - "meaning": "fourth degree (of the Japanese and Chinese pentatonic scale)" - }, - { - "example": "徴", - "reading": "チョウ", - "meaning": "sign, indication, symptom, call, summons, requisition, expropriation" - }, - { - "example": "変徴", - "reading": "ヘンチ", - "meaning": "note a semitone below the fourth degree of the Chinese and Japanese pentatonic scale" - } - ], - "kunyomiExamples": [ - { - "example": "徴", - "reading": "しるし", - "meaning": "sign, indication, omen" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "乞", - "山", - "彳", - "攵", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24500_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fb4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fb4.gif", - "uri": "http://jisho.org/search/%E5%BE%B4%23kanji" - }, - { - "query": "嘲", - "found": true, - "taughtIn": "junior high", - "strokeCount": 15, - "meaning": "ridicule, insult", - "kunyomi": [ - "あざけ.る" - ], - "onyomi": [ - "チョウ", - "トウ" - ], - "onyomiExamples": [ - { - "example": "嘲笑", - "reading": "チョウショウ", - "meaning": "scornful laughter, ridicule, derision, sneer" - }, - { - "example": "嘲罵", - "reading": "チョウバ", - "meaning": "(verbal) abuse, insulting remark, taunt" - }, - { - "example": "自嘲", - "reading": "ジチョウ", - "meaning": "self-deprecation, self-derision, self-mockery, laughing at oneself" - }, - { - "example": "冷嘲", - "reading": "レイチョウ", - "meaning": "sneer, derision, scornful laugh" - } - ], - "kunyomiExamples": [ - { - "example": "嘲る", - "reading": "あざける", - "meaning": "to scoff, to laugh at, to make fun of, to ridicule, to jeer at" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "十", - "口", - "日", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22066_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05632.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5632.gif", - "uri": "http://jisho.org/search/%E5%98%B2%23kanji" - }, - { - "query": "澄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1722", - "strokeCount": 15, - "meaning": "lucidity, be clear, clear, clarify, settle, strain, look grave", - "kunyomi": [ - "す.む", - "す.ます", - "-す.ます" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "澄徹", - "reading": "チョウテツ", - "meaning": "clearness (e.g. sky), transparency" - }, - { - "example": "澄明", - "reading": "チョウメイ", - "meaning": "clear and bright" - }, - { - "example": "清澄", - "reading": "セイチョウ", - "meaning": "clear, serene" - }, - { - "example": "明澄", - "reading": "メイチョウ", - "meaning": "lucid, clear" - } - ], - "kunyomiExamples": [ - { - "example": "澄む", - "reading": "すむ", - "meaning": "to become clear (water, air, etc.), to become transparent, to resonate clearly (e.g. voice), to become serene, to become tranquil, to be free of worries, to pronounce as an unvoiced sound" - }, - { - "example": "澄ます", - "reading": "すます", - "meaning": "to clear, to make clear, to be unruffled, to look unconcerned, to feign indifference, to look demure, to look prim, to put on airs, to strain (one's ears), to listen carefully" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "口", - "并", - "汁", - "癶", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28548_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f84.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f84.gif", - "uri": "http://jisho.org/search/%E6%BE%84%23kanji" - }, - { - "query": "聴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "781", - "strokeCount": 17, - "meaning": "listen, headstrong, naughty, careful inquiry", - "kunyomi": [ - "き.く", - "ゆる.す" - ], - "onyomi": [ - "チョウ", - "テイ" - ], - "onyomiExamples": [ - { - "example": "聴講", - "reading": "チョウコウ", - "meaning": "lecture attendance, auditing" - }, - { - "example": "聴覚", - "reading": "チョウカク", - "meaning": "the sense of hearing" - }, - { - "example": "難聴", - "reading": "ナンチョウ", - "meaning": "hardness of hearing, bradyacusia, deafness, hearing loss" - }, - { - "example": "愛聴", - "reading": "アイチョウ", - "meaning": "loving listening to something, loving to listen to something" - } - ], - "kunyomiExamples": [ - { - "example": "聞く", - "reading": "きく", - "meaning": "to hear, to listen (e.g. to music), to ask, to enquire, to query, to hear about, to hear of, to learn of, to follow (advice, order, etc.), to obey, to listen to, to comply with, to hear (e.g. a plea), to grant (a request), to accept (e.g. an argument), to give consideration to, to smell (esp. incense), to sample (a fragrance), to taste (alcohol), to try" - }, - { - "example": "許す", - "reading": "ゆるす", - "meaning": "to permit, to allow, to approve, to consent to, to forgive, to pardon, to excuse, to tolerate, to exempt (someone) from, to remit, to release, to let off, to acknowledge, to admit, to trust, to confide in, to let one's guard down, to give up (points in a game, distance in a race, etc.), to yield" - } - ], - "radical": { - "symbol": "耳", - "meaning": "ear" - }, - "parts": [ - "十", - "心", - "耳", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32884_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08074.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8074.gif", - "uri": "http://jisho.org/search/%E8%81%B4%23kanji" - }, - { - "query": "懲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1303", - "strokeCount": 18, - "meaning": "penal, chastise, punish, discipline", - "kunyomi": [ - "こ.りる", - "こ.らす", - "こ.らしめる" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "懲戒", - "reading": "チョウカイ", - "meaning": "discipline, punishment, reprimand" - }, - { - "example": "懲役", - "reading": "チョウエキ", - "meaning": "penal servitude, imprisonment with hard labor (hard labour)" - }, - { - "example": "膺懲", - "reading": "ヨウチョウ", - "meaning": "punishment (of an enemy), chastisement" - }, - { - "example": "暴支膺懲", - "reading": "ボウシヨウチョウ", - "meaning": "punishing savage China" - } - ], - "kunyomiExamples": [ - { - "example": "懲りる", - "reading": "こりる", - "meaning": "to learn by experience, to learn one's lesson, to learn the hard way, to be discouraged (by), to have enough (of), to be disgusted (with)" - }, - { - "example": "懲らす", - "reading": "こらす", - "meaning": "to chastise, to punish, to discipline" - }, - { - "example": "懲らしめる", - "reading": "こらしめる", - "meaning": "to chastise, to punish, to discipline" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "乞", - "山", - "彳", - "心", - "攵", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25074_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61f2.gif", - "uri": "http://jisho.org/search/%E6%87%B2%23kanji" - }, - { - "query": "勅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2157", - "strokeCount": 9, - "meaning": "imperial order", - "kunyomi": [ - "いまし.める", - "みことのり" - ], - "onyomi": [ - "チョク" - ], - "onyomiExamples": [ - { - "example": "詔", - "reading": "ミコトノリ", - "meaning": "imperial decree, imperial edict" - }, - { - "example": "勅意", - "reading": "チョクイ", - "meaning": "meaning or gist of a decree" - }, - { - "example": "違勅", - "reading": "イチョク", - "meaning": "disobeying the emperor's order" - }, - { - "example": "回勅", - "reading": "カイチョク", - "meaning": "encyclical" - } - ], - "kunyomiExamples": [ - { - "example": "詔", - "reading": "みことのり", - "meaning": "imperial decree, imperial edict" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "一", - "力", - "口", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21189_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052c5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52c5.gif", - "uri": "http://jisho.org/search/%E5%8B%85%23kanji" - }, - { - "query": "捗", - "found": true, - "taughtIn": "junior high", - "strokeCount": 10, - "meaning": "make progress", - "kunyomi": [ - "はかど.る" - ], - "onyomi": [ - "チョク", - "ホ" - ], - "onyomiExamples": [ - { - "example": "進捗", - "reading": "シンチョク", - "meaning": "progress, being under way" - } - ], - "kunyomiExamples": [ - { - "example": "捗る", - "reading": "はかどる", - "meaning": "to make progress, to move right ahead (with the work), to advance" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ノ", - "小", - "扎", - "止" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25431_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06357.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6357.gif", - "uri": "http://jisho.org/search/%E6%8D%97%23kanji" - }, - { - "query": "沈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1271", - "strokeCount": 7, - "meaning": "sink, be submerged, subside, be depressed, aloes", - "kunyomi": [ - "しず.む", - "しず.める" - ], - "onyomi": [ - "チン", - "ジン" - ], - "onyomiExamples": [ - { - "example": "沈着", - "reading": "チンチャク", - "meaning": "settling or depositing (at the bottom of something), deposition, pigmentation, composure, calmness" - }, - { - "example": "沈下", - "reading": "チンカ", - "meaning": "sinking, subsidence" - }, - { - "example": "浮沈", - "reading": "フチン", - "meaning": "floating and sinking, rise and fall, ebb and flow, ups and downs" - }, - { - "example": "撃沈", - "reading": "ゲキチン", - "meaning": "sending a ship to the bottom, sinking (a ship), to sink a ship" - }, - { - "example": "沈香", - "reading": "ジンコウ", - "meaning": "agarwood, aloeswood, gharuwood, eaglewood, agalloch, agallochum, aquilaria tree, lign aloes" - }, - { - "example": "沈香も焚かず屁も放らず", - "reading": "ジンコウモタカズヘモヒラズ", - "meaning": "having few faults as well as few virtues, not burning agarwood (incense); not passing wind" - } - ], - "kunyomiExamples": [ - { - "example": "沈む", - "reading": "しずむ", - "meaning": "to sink, to go under, to submerge, to go down (e.g. sun), to set, to descend, to feel depressed, to become subdued, to become somber" - }, - { - "example": "沈む瀬あれば浮かぶ瀬あり", - "reading": "しずむせあればうかぶせあり", - "meaning": "life has its ups and downs, he who falls today may rise tomorrow" - }, - { - "example": "沈める", - "reading": "しずめる", - "meaning": "to sink (e.g. a ship), to submerge, to lower (e.g. one's body into a chair), to floor (an opponent)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "冖", - "尢", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27784_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c88.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c88.gif", - "uri": "http://jisho.org/search/%E6%B2%88%23kanji" - }, - { - "query": "珍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1330", - "strokeCount": 9, - "meaning": "rare, curious, strange", - "kunyomi": [ - "めずら.しい", - "たから" - ], - "onyomi": [ - "チン" - ], - "onyomiExamples": [ - { - "example": "珍", - "reading": "チン", - "meaning": "rare, strange, odd, peculiar, curious" - }, - { - "example": "珍紛漢紛", - "reading": "チンプンカンプン", - "meaning": "unintelligible language, incoherent language, talking nonsense, \"all Greek to me\", double Dutch, (something) incomprehensible, babble, gibberish, jargon, gobbledygook" - }, - { - "example": "袖珍", - "reading": "シュウチン", - "meaning": "pocket size" - }, - { - "example": "繻珍", - "reading": "シュチン", - "meaning": "satin with raised figures" - } - ], - "kunyomiExamples": [ - { - "example": "珍しい", - "reading": "めずらしい", - "meaning": "unusual, rare, curious, new, novel, fine (e.g. gift)" - } - ], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "个", - "彡", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29645_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/073cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/73cd.gif", - "uri": "http://jisho.org/search/%E7%8F%8D%23kanji" - }, - { - "query": "朕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 10, - "meaning": "majestic plural, imperial we", - "kunyomi": [], - "onyomi": [ - "チン" - ], - "onyomiExamples": [ - { - "example": "朕", - "reading": "チン", - "meaning": "We" - }, - { - "example": "朕思うに", - "reading": "チンオモウニ", - "meaning": "\"We, the emperor, ..\"" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "月", - "meaning": "moon, month" - }, - "parts": [ - "一", - "人", - "大", - "并", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26389_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06715.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6715.gif", - "uri": "http://jisho.org/search/%E6%9C%95%23kanji" - }, - { - "query": "陳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1323", - "strokeCount": 11, - "meaning": "exhibit, state, relate, explain", - "kunyomi": [ - "ひ.ねる" - ], - "onyomi": [ - "チン" - ], - "onyomiExamples": [ - { - "example": "陳", - "reading": "チン", - "meaning": "Chen (ancient Chinese state, approx. 1045-479 BCE), Ch'en, Chen dynasty (China, 557-589 BCE), Ch'en dynasty" - }, - { - "example": "陳謝", - "reading": "チンシャ", - "meaning": "apology" - }, - { - "example": "開陳", - "reading": "カイチン", - "meaning": "stating (one's views), expressing" - }, - { - "example": "具陳", - "reading": "グチン", - "meaning": "report in detail, formal statement" - } - ], - "kunyomiExamples": [ - { - "example": "陳ねる", - "reading": "ひねる", - "meaning": "to age" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "一", - "日", - "木", - "田", - "阡", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38515_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09673.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9673.gif", - "uri": "http://jisho.org/search/%E9%99%B3%23kanji" - }, - { - "query": "鎮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1617", - "strokeCount": 18, - "meaning": "tranquilize, ancient peace-preservation centers", - "kunyomi": [ - "しず.める", - "しず.まる", - "おさえ" - ], - "onyomi": [ - "チン" - ], - "onyomiExamples": [ - { - "example": "鎮", - "reading": "チン", - "meaning": "a weight, temple supervisor, town (of China)" - }, - { - "example": "鎮圧", - "reading": "チンアツ", - "meaning": "suppression, subjugation" - }, - { - "example": "重鎮", - "reading": "ジュウチン", - "meaning": "leader, authority, mainstay" - }, - { - "example": "郷鎮", - "reading": "ゴウチン", - "meaning": "township and village enterprises (in China), TVE" - } - ], - "kunyomiExamples": [ - { - "example": "静める", - "reading": "しずめる", - "meaning": "to appease, to suppress, to calm" - }, - { - "example": "静まる", - "reading": "しずまる", - "meaning": "to become quiet, to quiet down, to quieten down, to calm down, to die down, to subside, to abate, to be suppressed" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ハ", - "一", - "十", - "并", - "目", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37806_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/093ae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/93ae.gif", - "uri": "http://jisho.org/search/%E9%8E%AE%23kanji" - }, - { - "query": "椎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1911", - "strokeCount": 12, - "meaning": "chinquapin, mallet, spine", - "kunyomi": [ - "つち", - "う.つ" - ], - "onyomi": [ - "ツイ", - "スイ" - ], - "onyomiExamples": [ - { - "example": "椎間板", - "reading": "ツイカンバン", - "meaning": "intervertebral disk" - }, - { - "example": "椎間孔狭窄", - "reading": "ツイカンコウキョウサク", - "meaning": "vertebral canal stenosis" - }, - { - "example": "脊椎", - "reading": "セキツイ", - "meaning": "spine, vertebral column" - }, - { - "example": "腰椎", - "reading": "ヨウツイ", - "meaning": "lumbar vertebra, lumbar vertebrae" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26894_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0690e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/690e.gif", - "uri": "http://jisho.org/search/%E6%A4%8E%23kanji" - }, - { - "query": "墜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1466", - "strokeCount": 15, - "meaning": "crash, fall (down)", - "kunyomi": [ - "お.ちる", - "お.つ" - ], - "onyomi": [ - "ツイ" - ], - "onyomiExamples": [ - { - "example": "墜落", - "reading": "ツイラク", - "meaning": "fall, crash (e.g. aircraft)" - }, - { - "example": "墜死", - "reading": "ツイシ", - "meaning": "falling to one's death" - }, - { - "example": "人気失墜", - "reading": "ニンキシッツイ", - "meaning": "decline in public favor, fall in popularity" - } - ], - "kunyomiExamples": [ - { - "example": "落ちる", - "reading": "おちる", - "meaning": "to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one's gaze), to be used in a certain place (e.g. money), to be omitted, to be missing, to decrease, to sink, to fail (e.g. exam or class), to lose (contest, election, etc.), to crash, to degenerate, to degrade, to fall behind, to become indecent (of a conversation), to be ruined, to go under, to fade, to come out (e.g. a stain), to come off (e.g. makeup), to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone's hands), to become someone's possession, to fall (into a trap), to fall (for a trick), to give in, to give up, to confess, to flee, to fall, to be defeated, to surrender, to come to (in the end), to end in, to fall (in love, asleep, etc.), to swoon (judo), to consent, to understand, to go down (of a website, server, etc.), to crash, to log out (of an online game, chat room, etc.), to drop out, to leave, to go offline, to die, to move to the depths, to go down (of a website, server, etc.)" - }, - { - "example": "落つ", - "reading": "おつ", - "meaning": "to fall down, to drop, to fall (e.g. rain), to sink (e.g. sun or moon), to fall onto (e.g. light or one's gaze), to be omitted, to be missing, to crash, to degenerate, to degrade, to fall behind, to be removed (e.g. illness, possessing spirit, name on a list), to fall (into someone's hands), to become someone's possession, to fall, to be defeated, to surrender" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "并", - "豕", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22684_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0589c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/589c.gif", - "uri": "http://jisho.org/search/%E5%A2%9C%23kanji" - }, - { - "query": "塚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "869", - "strokeCount": 12, - "meaning": "hillock, mound", - "kunyomi": [ - "つか", - "-づか" - ], - "onyomi": [ - "チョウ" - ], - "onyomiExamples": [ - { - "example": "円塚", - "reading": "マルヅカ", - "meaning": "round burial mound" - } - ], - "kunyomiExamples": [ - { - "example": "塚", - "reading": "つか", - "meaning": "mound, heap, hillock, burial mound, tomb, tumulus, barrow" - }, - { - "example": "塚穴", - "reading": "つかあな", - "meaning": "grave" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "冖", - "土", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22618_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0585a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/585a.gif", - "uri": "http://jisho.org/search/%E5%A1%9A%23kanji" - }, - { - "query": "漬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1818", - "strokeCount": 14, - "meaning": "pickling, soak, moisten, steep", - "kunyomi": [ - "つ.ける", - "つ.かる", - "-づ.け", - "-づけ" - ], - "onyomi": [ - "シ" - ], - "onyomiExamples": [ - { - "example": "浸漬", - "reading": "シンシ", - "meaning": "dipping, soaking, immersing" - } - ], - "kunyomiExamples": [ - { - "example": "漬ける", - "reading": "つける", - "meaning": "to soak (in), to steep, to dip, to dunk, to pickle, to preserve (in salt, vinegar, etc.)" - }, - { - "example": "浸かる", - "reading": "つかる", - "meaning": "to be submerged, to be soaked, to be pickled, to be well seasoned, to be totally immersed (in a condition, e.g. laziness)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "二", - "亠", - "土", - "汁", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28460_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f2c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f2c.gif", - "uri": "http://jisho.org/search/%E6%BC%AC%23kanji" - }, - { - "query": "坪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1823", - "strokeCount": 8, - "meaning": "two-mat area, approx. thirty-six sq ft", - "kunyomi": [ - "つぼ" - ], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "坪", - "reading": "つぼ", - "meaning": "tsubo, traditional unit of land area, approx. 3.31 square meters, tsubo, traditional unit of fabric or paper area, approx. 9.18 square centimeters, tsubo, traditional unit of leather or tile area, approx. 918 square centimeters, cubic tsubo (approx. 6 cubic metres)" - }, - { - "example": "坪当たり", - "reading": "つぼあたり", - "meaning": "per tsubo (area)" - }, - { - "example": "米坪", - "reading": "べいつぼ", - "meaning": "paper weight in gsm" - }, - { - "example": "立坪", - "reading": "りゅうつぼ", - "meaning": "cubic tsubo (approx. 6 cubic metres)" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "干", - "并" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22378_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0576a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/576a.gif", - "uri": "http://jisho.org/search/%E5%9D%AA%23kanji" - }, - { - "query": "爪", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2025", - "strokeCount": 4, - "meaning": "claw, nail, talon", - "kunyomi": [ - "つめ", - "つま-" - ], - "onyomi": [ - "ソウ" - ], - "onyomiExamples": [ - { - "example": "爪牙", - "reading": "ソウガ", - "meaning": "claws and fangs, claws and tusks, clutches, devious design, means of causing harm, weapon, pawn, stooge, cat's-paw, right-hand man" - }, - { - "example": "爪痕", - "reading": "ソウコン", - "meaning": "fingernail mark, scratch" - }, - { - "example": "陥入爪", - "reading": "カンニュウソウ", - "meaning": "ingrown nail, ingrowing nail" - }, - { - "example": "狼爪", - "reading": "ロウソウ", - "meaning": "dewclaw" - } - ], - "kunyomiExamples": [ - { - "example": "爪", - "reading": "つめ", - "meaning": "nail (e.g. fingernail, toenail), claw, talon, hoof, plectrum, pick, hook, clasp" - }, - { - "example": "爪切り", - "reading": "つめきり", - "meaning": "nail clippers" - }, - { - "example": "陥入爪", - "reading": "かんにゅうそう", - "meaning": "ingrown nail, ingrowing nail" - }, - { - "example": "鷹の爪", - "reading": "たかのつめ", - "meaning": "Gamblea innovans (species of deciduous tree), extremely spicy form of chili pepper, variety of high-quality green tea" - } - ], - "radical": { - "symbol": "爪", - "forms": [ - "爫" - ], - "meaning": "claw" - }, - "parts": [ - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29226_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0722a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/722a.gif", - "uri": "http://jisho.org/search/%E7%88%AA%23kanji" - }, - { - "query": "鶴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1369", - "strokeCount": 21, - "meaning": "crane, stork", - "kunyomi": [ - "つる" - ], - "onyomi": [ - "カク" - ], - "onyomiExamples": [ - { - "example": "鶴首", - "reading": "カクシュ", - "meaning": "looking forward to" - }, - { - "example": "鶴首して待つ", - "reading": "カクシュシテマツ", - "meaning": "to wait expectantly, to be full of anticipation, to long for" - }, - { - "example": "鶏群の一鶴", - "reading": "ケイグンノイッカク", - "meaning": "a swan among ducklings, a diamond among stones, a great figure among the common run of men" - }, - { - "example": "鶏群一鶴", - "reading": "ケイグンイッカク", - "meaning": "a swan among ducklings, a diamond among stones, a great figure among the common run of men" - } - ], - "kunyomiExamples": [ - { - "example": "鶴", - "reading": "つる", - "meaning": "crane (any bird of the family Gruidae, esp. the red-crowned crane, Grus japonensis)" - }, - { - "example": "ツル科", - "reading": "ツルか", - "meaning": "Gruidae, bird family comprising the cranes" - }, - { - "example": "掃き溜めに鶴", - "reading": "はきだめにつる", - "meaning": "a jewel in a dunghill" - }, - { - "example": "焼け野の雉夜の鶴", - "reading": "やけののきぎすよるのつる", - "meaning": "parents may risk life and limb for their children (like a pheasant when the plains are burning or a crane on a cold night)" - } - ], - "radical": { - "symbol": "鳥", - "meaning": "bird" - }, - "parts": [ - "冖", - "宀", - "杰", - "隹", - "鳥" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40372_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09db4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9db4.gif", - "uri": "http://jisho.org/search/%E9%B6%B4%23kanji" - }, - { - "query": "呈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1571", - "strokeCount": 7, - "meaning": "display, offer, present, send, exhibit", - "kunyomi": [], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "呈示", - "reading": "テイシ", - "meaning": "exhibition" - }, - { - "example": "呈色", - "reading": "テイショク", - "meaning": "coloration, colouration, color, colour, coloring, colouring" - }, - { - "example": "進呈", - "reading": "シンテイ", - "meaning": "presentation (e.g. of a gift)" - }, - { - "example": "露呈", - "reading": "ロテイ", - "meaning": "exposure, disclosure" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21576_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05448.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5448.gif", - "uri": "http://jisho.org/search/%E5%91%88%23kanji" - }, - { - "query": "廷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1439", - "strokeCount": 7, - "meaning": "courts, imperial court, government office", - "kunyomi": [], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "廷臣", - "reading": "テイシン", - "meaning": "courtier" - }, - { - "example": "廷丁", - "reading": "テイテイ", - "meaning": "court attendant" - }, - { - "example": "朝廷", - "reading": "チョウテイ", - "meaning": "Imperial Court" - }, - { - "example": "閉廷", - "reading": "ヘイテイ", - "meaning": "adjourning court" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "廴", - "meaning": "long stride" - }, - "parts": [ - "士", - "廴", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24311_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ef7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ef7.gif", - "uri": "http://jisho.org/search/%E5%BB%B7%23kanji" - }, - { - "query": "抵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1182", - "strokeCount": 8, - "meaning": "resist, reach, touch", - "kunyomi": [], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "抵触", - "reading": "テイショク", - "meaning": "infringement (of a law, treaty, etc.), contravention, running afoul, conflict (with a theory, claim, etc.), inconsistency, incompatibility, contradiction, collision, contact, touching" - }, - { - "example": "抵抗", - "reading": "テイコウ", - "meaning": "resistance, opposition, standing up to, reluctance, repulsion, repugnance, resistance, drag, friction, electrical resistance, resistor" - }, - { - "example": "抗抵", - "reading": "コウテイ", - "meaning": "resistance, opposition" - }, - { - "example": "角觝", - "reading": "カクテイ", - "meaning": "strength contest, sumo wrestling" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "氏" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25269_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062b5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62b5.gif", - "uri": "http://jisho.org/search/%E6%8A%B5%23kanji" - }, - { - "query": "邸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "905", - "strokeCount": 8, - "meaning": "residence, mansion", - "kunyomi": [ - "やしき" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "邸", - "reading": "テイ", - "meaning": "residence, mansion" - }, - { - "example": "邸宅", - "reading": "テイタク", - "meaning": "mansion, residence" - }, - { - "example": "御用邸", - "reading": "ゴヨウテイ", - "meaning": "imperial villa" - }, - { - "example": "公邸", - "reading": "コウテイ", - "meaning": "official residence" - } - ], - "kunyomiExamples": [ - { - "example": "屋敷", - "reading": "やしき", - "meaning": "residence, estate, grounds, premises, mansion" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "氏", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37048_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090b8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90b8.gif", - "uri": "http://jisho.org/search/%E9%82%B8%23kanji" - }, - { - "query": "亭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1627", - "strokeCount": 9, - "meaning": "pavilion, restaurant, mansion, arbor, cottage, vaudeville, music hall, stage name", - "kunyomi": [], - "onyomi": [ - "テイ", - "チン" - ], - "onyomiExamples": [ - { - "example": "亭", - "reading": "テイ", - "meaning": "arbor, arbour, bower, pavilion, suffix forming the final part of the pseudonyms of some writers and performers, suffix forming the final part of the name of a restaurant" - }, - { - "example": "亭主", - "reading": "テイシュ", - "meaning": "household head, master, host (e.g. of a tea gathering), innkeeper, owner (e.g. of a hotel), husband" - }, - { - "example": "料亭", - "reading": "リョウテイ", - "meaning": "ryotei, traditional Japanese restaurant (esp. a luxurious one)" - }, - { - "example": "亭亭", - "reading": "テイテイ", - "meaning": "lofty (tree)" - }, - { - "example": "亭", - "reading": "テイ", - "meaning": "arbor, arbour, bower, pavilion, suffix forming the final part of the pseudonyms of some writers and performers, suffix forming the final part of the name of a restaurant" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "亠", - "meaning": "lid" - }, - "parts": [ - "亅", - "亠", - "冖", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20141_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ead.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ead.gif", - "uri": "http://jisho.org/search/%E4%BA%AD%23kanji" - }, - { - "query": "貞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1389", - "strokeCount": 9, - "meaning": "upright, chastity, constancy, righteousness", - "kunyomi": [ - "ただし.い", - "さだ" - ], - "onyomi": [ - "テイ", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "貞", - "reading": "テイ", - "meaning": "firm adherence to one's principles, chastity (of a woman)" - }, - { - "example": "貞潔", - "reading": "テイケツ", - "meaning": "chastity, purity" - }, - { - "example": "シロウト童貞", - "reading": "シロウトドウテイ", - "meaning": "man who has never had sex except with sex workers" - }, - { - "example": "不貞", - "reading": "フテイ", - "meaning": "unfaithfulness, infidelity, unchastity" - }, - { - "example": "貞永", - "reading": "ジョウエイ", - "meaning": "Jōei era (1232.4.2-1233.4.15)" - }, - { - "example": "貞応", - "reading": "ジョウオウ", - "meaning": "Jōō era (1222.4.13-1224.11.20)" - } - ], - "kunyomiExamples": [ - { - "example": "貞はる", - "reading": "さだはる", - "meaning": "to harp too long on a subject" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "卜", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35998_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c9e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c9e.gif", - "uri": "http://jisho.org/search/%E8%B2%9E%23kanji" - }, - { - "query": "帝", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1276", - "strokeCount": 9, - "meaning": "sovereign, the emperor, god, creator", - "kunyomi": [ - "みかど" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "帝国", - "reading": "テイコク", - "meaning": "empire, imperial" - }, - { - "example": "帝京", - "reading": "テイキョウ", - "meaning": "the capital" - }, - { - "example": "女帝", - "reading": "ジョテイ", - "meaning": "empress" - }, - { - "example": "大帝", - "reading": "タイテイ", - "meaning": "great emperor, ... the Great" - } - ], - "kunyomiExamples": [ - { - "example": "帝", - "reading": "みかど", - "meaning": "emperor (of Japan), mikado, (the gates of an) imperial residence" - }, - { - "example": "帝揚羽", - "reading": "みかどあげは", - "meaning": "common jay (species of swallowtail butterfly, Graphium doson)" - }, - { - "example": "時の帝", - "reading": "ときのみかど", - "meaning": "emperor of the time" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "亠", - "冖", - "巾", - "并", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24093_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e1d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e1d.gif", - "uri": "http://jisho.org/search/%E5%B8%9D%23kanji" - }, - { - "query": "訂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1690", - "strokeCount": 9, - "meaning": "revise, correct, decide", - "kunyomi": [ - "ただ.す" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "訂正", - "reading": "テイセイ", - "meaning": "correction, revision, amendment" - }, - { - "example": "訂する", - "reading": "テイスル", - "meaning": "to correct" - }, - { - "example": "装丁", - "reading": "ソウテイ", - "meaning": "binding (of a book), design (of a book cover)" - }, - { - "example": "大改訂", - "reading": "ダイカイテイ", - "meaning": "major revision" - } - ], - "kunyomiExamples": [ - { - "example": "訂す", - "reading": "ただす", - "meaning": "to correct (a typo, etc.)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "亅", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35330_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a02.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a02.gif", - "uri": "http://jisho.org/search/%E8%A8%82%23kanji" - }, - { - "query": "逓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1957", - "strokeCount": 10, - "meaning": "relay, in turn, sending", - "kunyomi": [ - "かわ.る", - "たがいに" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "逓信", - "reading": "テイシン", - "meaning": "communications (e.g. post, tele.)" - }, - { - "example": "逓減", - "reading": "テイゲン", - "meaning": "gradual decrease, gradual diminution" - }, - { - "example": "駅逓", - "reading": "エキテイ", - "meaning": "delivery of packages, postal service" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "二", - "厂", - "巾", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36883_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09013.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9013.gif", - "uri": "http://jisho.org/search/%E9%80%93%23kanji" - }, - { - "query": "偵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1857", - "strokeCount": 11, - "meaning": "spy", - "kunyomi": [], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "偵察", - "reading": "テイサツ", - "meaning": "scouting, reconnaissance" - }, - { - "example": "偵察衛星", - "reading": "テイサツエイセイ", - "meaning": "reconnaissance satellite, spy satellite" - }, - { - "example": "内偵", - "reading": "ナイテイ", - "meaning": "secret investigation, private enquiry, private inquiry, reconnaissance, scouting" - }, - { - "example": "密偵", - "reading": "ミッテイ", - "meaning": "spy, emissary" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ハ", - "化", - "卜", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20597_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05075.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5075.gif", - "uri": "http://jisho.org/search/%E5%81%B5%23kanji" - }, - { - "query": "堤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1658", - "strokeCount": 12, - "meaning": "dike, bank, embankment", - "kunyomi": [ - "つつみ" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "堤防", - "reading": "テイボウ", - "meaning": "bank, weir, embankment, levee" - }, - { - "example": "提出", - "reading": "テイシュツ", - "meaning": "presentation (of documents), submission (of an application, report, etc.), production (e.g. of evidence), introduction (e.g. of a bill), filing, turning in" - }, - { - "example": "突堤", - "reading": "トッテイ", - "meaning": "breakwater" - }, - { - "example": "神経堤", - "reading": "シンケイテイ", - "meaning": "neural crest" - } - ], - "kunyomiExamples": [ - { - "example": "堤", - "reading": "つつみ", - "meaning": "bank, embankment, dike" - }, - { - "example": "堤を築く", - "reading": "つつみをきずく", - "meaning": "to build an embankment" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "日", - "疋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22564_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05824.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5824.gif", - "uri": "http://jisho.org/search/%E5%A0%A4%23kanji" - }, - { - "query": "艇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1433", - "strokeCount": 13, - "meaning": "rowboat, small boat", - "kunyomi": [], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "艇", - "reading": "テイ", - "meaning": "boat" - }, - { - "example": "艇庫", - "reading": "テイコ", - "meaning": "boat-house" - }, - { - "example": "艦艇", - "reading": "カンテイ", - "meaning": "military vessel, war fleet" - }, - { - "example": "競艇", - "reading": "キョウテイ", - "meaning": "boat race" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "廴", - "王", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33351_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08247.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8247.gif", - "uri": "http://jisho.org/search/%E8%89%87%23kanji" - }, - { - "query": "締", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "797", - "strokeCount": 15, - "meaning": "tighten, tie, shut, lock, fasten", - "kunyomi": [ - "し.まる", - "し.まり", - "し.める", - "-し.め", - "-じ.め" - ], - "onyomi": [ - "テイ" - ], - "onyomiExamples": [ - { - "example": "締約", - "reading": "テイヤク", - "meaning": "conclusion of a treaty" - }, - { - "example": "締結", - "reading": "テイケツ", - "meaning": "conclusion, execution (of a contract), entering (into treaty), fastening (as in a joint)" - } - ], - "kunyomiExamples": [ - { - "example": "閉まる", - "reading": "しまる", - "meaning": "to be shut, to close, to be closed, to be firm (of a body, face, etc.), to be well-knit, to be locked, to tighten, to be tightened, to become sober, to become tense" - }, - { - "example": "締まり", - "reading": "しまり", - "meaning": "closing, shutting, firmness, tightness, discipline, control" - }, - { - "example": "締まり屋", - "reading": "しまりや", - "meaning": "thrifty person, stingy person, tight-fisted person" - }, - { - "example": "締める", - "reading": "しめる", - "meaning": "to tie, to fasten, to tighten, to wear (necktie, belt), to put on, to total, to sum, to be strict with, to economize, to economise, to cut down on, to salt, to marinate, to pickle, to make sushi adding a mixture of vinegar and salt" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "亠", - "冖", - "小", - "巾", - "并", - "幺", - "立", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32224_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07de0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7de0.gif", - "uri": "http://jisho.org/search/%E7%B7%A0%23kanji" - }, - { - "query": "諦", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2457", - "strokeCount": 16, - "meaning": "truth, clarity, abandon, give up", - "kunyomi": [ - "あきら.める", - "つまびらか", - "まこと" - ], - "onyomi": [ - "テイ", - "タイ" - ], - "onyomiExamples": [ - { - "example": "諦観", - "reading": "テイカン", - "meaning": "clear vision, resignation (as in reconciling oneself)" - }, - { - "example": "諦念", - "reading": "テイネン", - "meaning": "understanding and acceptance, spiritual awakening, a heart that understands truth, (feeling of) resignation" - }, - { - "example": "妙諦", - "reading": "ミョウテイ", - "meaning": "amazing truth, cardinal principle, key (to understanding)" - }, - { - "example": "要諦", - "reading": "ヨウテイ", - "meaning": "important point" - }, - { - "example": "空諦", - "reading": "クウタイ", - "meaning": "truth of emptiness (holding that all things are void)" - }, - { - "example": "道諦", - "reading": "ドウタイ", - "meaning": "truth of the way to the cessation of suffering" - } - ], - "kunyomiExamples": [ - { - "example": "諦める", - "reading": "あきらめる", - "meaning": "to give up, to abandon (hope, plans), to resign oneself (to)" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "亠", - "冖", - "巾", - "并", - "立", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35558_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ae6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ae6.gif", - "uri": "http://jisho.org/search/%E8%AB%A6%23kanji" - }, - { - "query": "泥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1589", - "strokeCount": 8, - "meaning": "mud, mire, adhere to, be attached to", - "kunyomi": [ - "どろ", - "なず.む" - ], - "onyomi": [ - "デイ", - "ナイ", - "デ", - "ニ" - ], - "onyomiExamples": [ - { - "example": "泥沼", - "reading": "ドロヌマ", - "meaning": "bog, marsh, swamp, quagmire, morass, quandary, dire situation from which one cannot extricate oneself, imbroglio" - }, - { - "example": "泥水", - "reading": "ドロミズ", - "meaning": "muddy water, red-light district" - }, - { - "example": "汚泥", - "reading": "オデイ", - "meaning": "sludge, slime, dregs, mire, hopeless situation, hell, despair" - }, - { - "example": "鉱泥", - "reading": "コウデイ", - "meaning": "fango, mud, herb and wax mix used for therapy" - }, - { - "example": "泥洹", - "reading": "ナイオン", - "meaning": "nirvana" - }, - { - "example": "泥沼", - "reading": "ドロヌマ", - "meaning": "bog, marsh, swamp, quagmire, morass, quandary, dire situation from which one cannot extricate oneself, imbroglio" - }, - { - "example": "泥水", - "reading": "ドロミズ", - "meaning": "muddy water, red-light district" - } - ], - "kunyomiExamples": [ - { - "example": "泥", - "reading": "どろ", - "meaning": "mud, slush, (wet) dirt, mire, thief" - }, - { - "example": "泥沼", - "reading": "どろぬま", - "meaning": "bog, marsh, swamp, quagmire, morass, quandary, dire situation from which one cannot extricate oneself, imbroglio" - }, - { - "example": "泥々", - "reading": "どろどろ", - "meaning": "thick, viscous, mushy, pulpy, slushy, syrupy, sticky, muddy, dirty (with oil, grease, etc.), to be in an ugly state (of emotions, relations, etc.), to be murky, to be sordid" - }, - { - "example": "警泥", - "reading": "けいどろ", - "meaning": "cops and robbers (hide-and-seek game)" - }, - { - "example": "泥む", - "reading": "なずむ", - "meaning": "to cling to, to stick to, to be wedded to" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "匕", - "尸", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27877_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ce5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ce5.gif", - "uri": "http://jisho.org/search/%E6%B3%A5%23kanji" - }, - { - "query": "摘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "564", - "strokeCount": 14, - "meaning": "pinch, pick, pluck, trim, clip, summarize", - "kunyomi": [ - "つ.む" - ], - "onyomi": [ - "テキ" - ], - "onyomiExamples": [ - { - "example": "摘発", - "reading": "テキハツ", - "meaning": "exposing, unmasking, laying bare" - }, - { - "example": "摘出", - "reading": "テキシュツ", - "meaning": "picking out, taking out, (surgical) removal, exposure" - } - ], - "kunyomiExamples": [ - { - "example": "摘む", - "reading": "つむ", - "meaning": "to pick, to pluck, to snip, to cut, to nip, to trim" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "亠", - "冂", - "十", - "口", - "并", - "扎", - "滴", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25688_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06458.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6458.gif", - "uri": "http://jisho.org/search/%E6%91%98%23kanji" - }, - { - "query": "滴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "2019", - "strokeCount": 14, - "meaning": "drip, drop", - "kunyomi": [ - "しずく", - "したた.る" - ], - "onyomi": [ - "テキ" - ], - "onyomiExamples": [ - { - "example": "滴", - "reading": "テキ", - "meaning": "counter for drops of liquid" - }, - { - "example": "滴下", - "reading": "テキカ", - "meaning": "drip, drop, distill" - }, - { - "example": "雨滴", - "reading": "ウテキ", - "meaning": "raindrop" - }, - { - "example": "数滴", - "reading": "スウテキ", - "meaning": "several drops" - } - ], - "kunyomiExamples": [ - { - "example": "滴", - "reading": "しずく", - "meaning": "drop (e.g. of water), drip" - }, - { - "example": "滴る", - "reading": "したたる", - "meaning": "to drip, to drop, to trickle, to overflow (with freshness, beauty, etc.)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "亠", - "冂", - "十", - "口", - "并", - "汁", - "滴", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28404_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ef4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ef4.gif", - "uri": "http://jisho.org/search/%E6%BB%B4%23kanji" - }, - { - "query": "溺", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "drown, indulge", - "kunyomi": [ - "いばり", - "おぼ.れる" - ], - "onyomi": [ - "デキ", - "ジョウ", - "ニョウ" - ], - "onyomiExamples": [ - { - "example": "溺愛", - "reading": "デキアイ", - "meaning": "infatuation, adoration, blind love, doting (on a child)" - }, - { - "example": "溺死", - "reading": "デキシ", - "meaning": "death by drowning" - }, - { - "example": "惑溺", - "reading": "ワクデキ", - "meaning": "indulgence, addiction, infatuation" - }, - { - "example": "沈溺", - "reading": "チンデキ", - "meaning": "being immersed in water, being drowned, being infatuated, being dazed, being blinded by" - } - ], - "kunyomiExamples": [ - { - "example": "溺れる", - "reading": "おぼれる", - "meaning": "to struggle in the water, to sink below the surface and become unable to breathe, to (nearly) drown, to indulge in, to lose one's head over something, to be addicted, to wallow in" - }, - { - "example": "おぼれる者はわらをもつかむ", - "reading": "おぼれるものはわらをもつかむ", - "meaning": "a drowning man will catch at a straw" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "冫", - "弓", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28346_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06eba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6eba.gif", - "uri": "http://jisho.org/search/%E6%BA%BA%23kanji" - }, - { - "query": "迭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1907", - "strokeCount": 8, - "meaning": "transfer, alternation", - "kunyomi": [], - "onyomi": [ - "テツ" - ], - "onyomiExamples": [ - { - "example": "迭立", - "reading": "テツリツ", - "meaning": "alternate succession (e.g. to throne)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ノ", - "一", - "乞", - "二", - "大", - "牛", - "矢", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36845_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fed.gif", - "uri": "http://jisho.org/search/%E8%BF%AD%23kanji" - }, - { - "query": "哲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1093", - "strokeCount": 10, - "meaning": "philosophy, clear", - "kunyomi": [ - "さとい", - "あきらか" - ], - "onyomi": [ - "テツ" - ], - "onyomiExamples": [ - { - "example": "哲", - "reading": "テツ", - "meaning": "sage, wise man, philosopher, disciple, sagacity, wisdom, intelligence" - }, - { - "example": "哲学", - "reading": "テツガク", - "meaning": "philosophy" - }, - { - "example": "変哲", - "reading": "ヘンテツ", - "meaning": "something unusual, something odd, something out of the ordinary" - }, - { - "example": "西哲", - "reading": "セイテツ", - "meaning": "Western philosopher" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "扎", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21746_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54f2.gif", - "uri": "http://jisho.org/search/%E5%93%B2%23kanji" - }, - { - "query": "徹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "968", - "strokeCount": 15, - "meaning": "penetrate, clear, pierce, strike home, sit up (all night)", - "kunyomi": [], - "onyomi": [ - "テツ" - ], - "onyomiExamples": [ - { - "example": "徹夜", - "reading": "テツヤ", - "meaning": "staying up all night" - }, - { - "example": "徹カラ", - "reading": "テツカラ", - "meaning": "all-night karaoke" - }, - { - "example": "冷徹", - "reading": "レイテツ", - "meaning": "cool-headed, level-headed, hard-headed" - }, - { - "example": "透徹", - "reading": "トウテツ", - "meaning": "penetration, absolutely clear, not dirty, clearness" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "乞", - "亠", - "厶", - "彳", - "攵", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24505_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fb9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fb9.gif", - "uri": "http://jisho.org/search/%E5%BE%B9%23kanji" - }, - { - "query": "撤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "811", - "strokeCount": 15, - "meaning": "remove, withdraw, disarm, dismantle, reject, exclude", - "kunyomi": [], - "onyomi": [ - "テツ" - ], - "onyomiExamples": [], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "乞", - "亠", - "厶", - "扎", - "攵", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25764_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064a4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64a4.gif", - "uri": "http://jisho.org/search/%E6%92%A4%23kanji" - }, - { - "query": "添", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1501", - "strokeCount": 11, - "meaning": "annexed, accompany, marry, suit, meet, satisfy, attach, append, garnish, imitate", - "kunyomi": [ - "そ.える", - "そ.う" - ], - "onyomi": [ - "テン" - ], - "onyomiExamples": [ - { - "example": "添乗", - "reading": "テンジョウ", - "meaning": "accompanying (on a trip), escorting (a tour group)" - }, - { - "example": "添加物", - "reading": "テンカブツ", - "meaning": "additive" - }, - { - "example": "水添", - "reading": "スイテン", - "meaning": "hydrogenation" - }, - { - "example": "別添", - "reading": "ベッテン", - "meaning": "attachment, annexation, addendum, appendix" - } - ], - "kunyomiExamples": [ - { - "example": "添える", - "reading": "そえる", - "meaning": "to garnish, to accompany (as a card does a gift), to add to as support, to prop up, to accompany (as an aid, guide, translator, etc.), to mimic, to imitate, to draw something near to oneself, to approach nearby" - }, - { - "example": "添う", - "reading": "そう", - "meaning": "to meet (wishes, expectations, etc.), to satisfy, to comply with, to live up to, to accompany, to go with, to stay by one's side, to associate with (someone), to mix with, to marry, to wed, to be added" - }, - { - "example": "添水", - "reading": "そうず", - "meaning": "water-filled bamboo tube in Japanese garden which clacks against a stone when emptied" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "一", - "二", - "大", - "心", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28155_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06dfb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6dfb.gif", - "uri": "http://jisho.org/search/%E6%B7%BB%23kanji" - }, - { - "query": "塡", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "fill in, fill up, make good", - "kunyomi": [ - "はま.る", - "うず.める", - "は.める", - "ふさ.ぐ" - ], - "onyomi": [ - "テン", - "チン" - ], - "onyomiExamples": [ - { - "example": "填星", - "reading": "テンセイ", - "meaning": "Saturn (planet)" - }, - { - "example": "填補", - "reading": "テンポ", - "meaning": "supplementation, replenishment, compensation, indemnification" - }, - { - "example": "充填", - "reading": "ジュウテン", - "meaning": "filling (up), replenishing, filling in (tooth), loading (gun with ammunition, camera with film, etc.), packing, plugging" - }, - { - "example": "装填", - "reading": "ソウテン", - "meaning": "loading, charging, filling" - } - ], - "kunyomiExamples": [ - { - "example": "嵌める", - "reading": "はめる", - "meaning": "to insert, to put in (such that there is a snug fit), to button, to put on (something that envelops, e.g. gloves, ring), to have sex, to fuck, to pigeonhole (into a particular category), to place a ring-shaped object around something (esp. one that restricts freedom, such as handcuffs), to entrap, to set someone up (e.g. frame them for a crime, etc.)" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22625_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05861.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5861.gif", - "uri": "http://jisho.org/search/%E5%A1%A1%23kanji" - }, - { - "query": "殿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1199", - "strokeCount": 13, - "meaning": "Mr., hall, mansion, palace, temple, lord", - "kunyomi": [ - "との", - "-どの" - ], - "onyomi": [ - "デン", - "テン" - ], - "onyomiExamples": [ - { - "example": "殿堂", - "reading": "デンドウ", - "meaning": "palace, hall, shrine, temple, sanctuary, hall of fame" - }, - { - "example": "殿下", - "reading": "デンカ", - "meaning": "your Highness, his Highness, her Highness" - }, - { - "example": "拝殿", - "reading": "ハイデン", - "meaning": "front shrine, hall of worship" - }, - { - "example": "正殿", - "reading": "セイデン", - "meaning": "main temple, main building of a shrine, alternate name for the Shishiden, Hall for State Ceremonies, central building of a palace, State Chamber" - }, - { - "example": "殿下", - "reading": "デンカ", - "meaning": "your Highness, his Highness, her Highness" - }, - { - "example": "殿上", - "reading": "テンジョウ", - "meaning": "the court, palace circles, palace floor" - }, - { - "example": "御殿", - "reading": "ゴテン", - "meaning": "palace, court" - }, - { - "example": "紫御殿", - "reading": "ムラサキゴテン", - "meaning": "wandering jew (Tradescantia pallida 'Purpurea'), purple secretia, purple-heart, purple queen" - } - ], - "kunyomiExamples": [ - { - "example": "殿", - "reading": "との", - "meaning": "feudal lord, mansion, palace" - }, - { - "example": "殿様", - "reading": "とのさま", - "meaning": "nobleman, dignitary, lord, feudal lord (of the Edo period), daimyō, man brought up away from the world, arrogant man with little knowledge of the ways of the world" - }, - { - "example": "大殿", - "reading": "おおとの", - "meaning": "current master, father of one's current master, minister (of government), noble, nobleman's residence" - }, - { - "example": "若殿", - "reading": "わかとの", - "meaning": "young lord, successor of one's current lord" - } - ], - "radical": { - "symbol": "殳", - "meaning": "weapon, lance" - }, - "parts": [ - "ハ", - "一", - "二", - "几", - "又", - "尸", - "殳", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27583_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06bbf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6bbf.gif", - "uri": "http://jisho.org/search/%E6%AE%BF%23kanji" - }, - { - "query": "斗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1885", - "strokeCount": 4, - "meaning": "Big Dipper, ten sho (vol), sake dipper, dots and cross radical (no. 68)", - "kunyomi": [], - "onyomi": [ - "ト", - "トウ" - ], - "onyomiExamples": [ - { - "example": "斗", - "reading": "ト", - "meaning": "to, traditional unit of volume, approx. 18 litres, square bearing block (at the top of a pillar), Chinese \"Dipper\" constellation (one of the 28 mansions)" - }, - { - "example": "斗", - "reading": "トマス", - "meaning": "kanji radical 68 at right" - }, - { - "example": "星斗", - "reading": "セイト", - "meaning": "star" - }, - { - "example": "泰斗", - "reading": "タイト", - "meaning": "great authority, eminent person, luminary" - }, - { - "example": "闘争", - "reading": "トウソウ", - "meaning": "fight, battle, combat, conflict, struggle (for rights, higher wages, etc.), strife, (labor) dispute, strike" - }, - { - "example": "闘魂", - "reading": "トウコン", - "meaning": "fighting spirit" - }, - { - "example": "擬斗", - "reading": "ギトウ", - "meaning": "fight scene, stage combat, staged sword fight" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "斗", - "meaning": "dipper" - }, - "parts": [ - "斗" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26007_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06597.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6597.gif", - "uri": "http://jisho.org/search/%E6%96%97%23kanji" - }, - { - "query": "吐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1674", - "strokeCount": 6, - "meaning": "spit, vomit, belch, confess, tell (lies)", - "kunyomi": [ - "は.く", - "つ.く" - ], - "onyomi": [ - "ト" - ], - "onyomiExamples": [ - { - "example": "吐露", - "reading": "トロ", - "meaning": "expressing one's mind, speaking out" - }, - { - "example": "吐息", - "reading": "トイキ", - "meaning": "sigh, long breath" - }, - { - "example": "噴出性嘔吐", - "reading": "フンシュツセイオウト", - "meaning": "projectile vomiting" - }, - { - "example": "音吐", - "reading": "オント", - "meaning": "voice" - } - ], - "kunyomiExamples": [ - { - "example": "吐く", - "reading": "はく", - "meaning": "to vomit, to throw up, to spit up, to emit, to send forth, to breathe out, to give (an opinion), to make (a comment), to express, to tell, to confess" - }, - { - "example": "吐く息", - "reading": "はくいき", - "meaning": "exhaled air, one's breath" - }, - { - "example": "吐く", - "reading": "つく", - "meaning": "to breathe out, to breathe, to tell (a lie), to use (foul language), to vomit, to throw up, to spit up" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "土" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21520_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05410.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5410.gif", - "uri": "http://jisho.org/search/%E5%90%90%23kanji" - }, - { - "query": "妬", - "found": true, - "taughtIn": "junior high", - "strokeCount": 8, - "meaning": "jealous, envy", - "kunyomi": [ - "ねた.む", - "そね.む", - "つも.る", - "ふさ.ぐ" - ], - "onyomi": [ - "ト", - "ツ" - ], - "onyomiExamples": [ - { - "example": "妬心", - "reading": "トシン", - "meaning": "jealousy" - } - ], - "kunyomiExamples": [ - { - "example": "妬む", - "reading": "ねたむ", - "meaning": "to be jealous of, to envy, to begrudge" - }, - { - "example": "嫉む", - "reading": "そねむ", - "meaning": "to be jealous of, to envy, to begrudge" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "口", - "女", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22956_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059ac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59ac.gif", - "uri": "http://jisho.org/search/%E5%A6%AC%23kanji" - }, - { - "query": "途", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "717", - "strokeCount": 10, - "meaning": "route, way, road", - "kunyomi": [ - "みち" - ], - "onyomi": [ - "ト" - ], - "onyomiExamples": [ - { - "example": "途", - "reading": "ト", - "meaning": "way, route" - }, - { - "example": "途上", - "reading": "トジョウ", - "meaning": "on the way, en route, in the process of (development, construction, etc.), in the middle of" - }, - { - "example": "使途", - "reading": "シト", - "meaning": "purpose for which money is spent, the way money is spent, how goods are used" - }, - { - "example": "目処", - "reading": "メド", - "meaning": "aim, goal, prospect, outlook" - } - ], - "kunyomiExamples": [ - { - "example": "道", - "reading": "みち", - "meaning": "road, path, street, lane, passage, route, way, distance, journey, road (e.g. to victory), course, way (of living, proper conduct, etc.), moral principles, teachings (esp. Confucian or Buddhist), dogma, field (e.g. of medicine), subject, speciality, means, way, method" - }, - { - "example": "冥き途", - "reading": "くらきみち", - "meaning": "Hades, underworld, realm of the dead, other world" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ハ", - "一", - "个", - "亅", - "木", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36884_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09014.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9014.gif", - "uri": "http://jisho.org/search/%E9%80%94%23kanji" - }, - { - "query": "渡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "446", - "strokeCount": 12, - "meaning": "transit, ford, ferry, cross, import, deliver, diameter, migrate", - "kunyomi": [ - "わた.る", - "-わた.る", - "わた.す" - ], - "onyomi": [ - "ト" - ], - "onyomiExamples": [ - { - "example": "渡航", - "reading": "トコウ", - "meaning": "voyage, passage, travelling" - }, - { - "example": "渡欧", - "reading": "トオウ", - "meaning": "going to Europe" - }, - { - "example": "過渡", - "reading": "カト", - "meaning": "crossing, ferry, transient, changing old to new" - }, - { - "example": "譲渡", - "reading": "ジョウト", - "meaning": "transfer, assignment, conveyance" - } - ], - "kunyomiExamples": [ - { - "example": "渡る", - "reading": "わたる", - "meaning": "to cross over, to go across, to extend, to cover, to range, to span" - }, - { - "example": "渡る世間に鬼はない", - "reading": "わたるせけんにおにはない", - "meaning": "all people aren't evil, don't distrust everyone, there is kindness to be found everywhere" - }, - { - "example": "渡す", - "reading": "わたす", - "meaning": "to ferry across (e.g. a river), to carry across, to traverse, to lay across, to build across, to hand over, to hand in, to pass, to give, to transfer" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "又", - "广", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28193_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e21.gif", - "uri": "http://jisho.org/search/%E6%B8%A1%23kanji" - }, - { - "query": "塗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1414", - "strokeCount": 13, - "meaning": "paint, plaster, daub, smear, coating", - "kunyomi": [ - "ぬ.る", - "ぬ.り", - "まみ.れる" - ], - "onyomi": [ - "ト" - ], - "onyomiExamples": [ - { - "example": "塗料", - "reading": "トリョウ", - "meaning": "paints, painting material" - }, - { - "example": "塗装", - "reading": "トソウ", - "meaning": "coating, painting" - }, - { - "example": "道途", - "reading": "ドウト", - "meaning": "road" - }, - { - "example": "糊塗", - "reading": "コト", - "meaning": "patching up (e.g. a failure), covering up (e.g. a mistake), glossing over" - } - ], - "kunyomiExamples": [ - { - "example": "塗る", - "reading": "ぬる", - "meaning": "to paint, to plaster, to lacquer, to varnish, to spread, to smear, to put up (wallpaper)" - }, - { - "example": "塗り", - "reading": "ぬり", - "meaning": "coating (esp. lacquering)" - }, - { - "example": "塗り替える", - "reading": "ぬりかえる", - "meaning": "to repaint, to paint again, to break (a record), to rewrite, to remake" - }, - { - "example": "春慶塗", - "reading": "しゅんけいぬり", - "meaning": "Shunkei lacquerware, lacquerware created using transparent lacquer on yellow or red-stained wood, allowing the natural wood grain to be seen" - }, - { - "example": "中塗り", - "reading": "なかぬり", - "meaning": "intermediate coat of paint or lacquer, second coat" - }, - { - "example": "塗れる", - "reading": "まみれる", - "meaning": "to be smeared, to be covered" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ハ", - "一", - "个", - "亅", - "土", - "木", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22615_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05857.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5857.gif", - "uri": "http://jisho.org/search/%E5%A1%97%23kanji" - }, - { - "query": "賭", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1989", - "strokeCount": 15, - "meaning": "gamble, wager, bet", - "kunyomi": [ - "か.ける", - "かけ" - ], - "onyomi": [ - "ト" - ], - "onyomiExamples": [ - { - "example": "賭博", - "reading": "トバク", - "meaning": "gambling" - }, - { - "example": "賭場", - "reading": "トバ", - "meaning": "gambling den, gambling house" - } - ], - "kunyomiExamples": [ - { - "example": "賭ける", - "reading": "かける", - "meaning": "to wager, to bet, to risk, to stake, to gamble" - }, - { - "example": "賭け", - "reading": "かけ", - "meaning": "bet, wager, stake, gamble" - }, - { - "example": "賭ける", - "reading": "かける", - "meaning": "to wager, to bet, to risk, to stake, to gamble" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "日", - "目", - "老", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36077_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ced.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ced.gif", - "uri": "http://jisho.org/search/%E8%B3%AD%23kanji" - }, - { - "query": "奴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1932", - "strokeCount": 5, - "meaning": "guy, slave, manservant, fellow", - "kunyomi": [ - "やつ", - "やっこ" - ], - "onyomi": [ - "ド" - ], - "onyomiExamples": [ - { - "example": "奴隷", - "reading": "ドレイ", - "meaning": "slave, servant, slavery" - }, - { - "example": "奴智鮫", - "reading": "ドチザメ", - "meaning": "banded houndshark (Triakis scyllium, found in the northwest Pacific from southern Siberia to Taiwan)" - }, - { - "example": "売国奴", - "reading": "バイコクド", - "meaning": "traitor (to one's country), quisling" - }, - { - "example": "農奴", - "reading": "ノウド", - "meaning": "serf" - } - ], - "kunyomiExamples": [ - { - "example": "奴", - "reading": "やつ", - "meaning": "fellow, guy, chap, thing, object, he, she, him, her" - }, - { - "example": "臣", - "reading": "やつこ", - "meaning": "slave, retainer, servant, captive, varlet, I, me" - }, - { - "example": "懲りない奴", - "reading": "こりないやつ", - "meaning": "person (generally male) who won't learn their lesson, persistent jerk" - }, - { - "example": "何奴", - "reading": "どいつ", - "meaning": "who?" - }, - { - "example": "奴", - "reading": "やっこ", - "meaning": "servant (esp. a samurai's attendant), chivalrous man (Edo period), cubed tofu (often served cold), kite shaped like an Edo-period footman, Edo-period hairstyle worn by samurai's attendants, enslavement (of a woman; Edo-period punishment for her own or her husband's crime), he, she, him, her" - }, - { - "example": "奴頭", - "reading": "やっこあたま", - "meaning": "Edo-period hairstyle worn by samurai's attendants" - }, - { - "example": "輪抜奴", - "reading": "わぬけやっこ", - "meaning": "bluering angelfish (Pomacanthus annularis)" - }, - { - "example": "三下奴", - "reading": "さんしたやっこ", - "meaning": "petty underling, small fry" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "又", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22900_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05974.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5974.gif", - "uri": "http://jisho.org/search/%E5%A5%B4%23kanji" - }, - { - "query": "怒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1221", - "strokeCount": 9, - "meaning": "angry, be offended", - "kunyomi": [ - "いか.る", - "おこ.る" - ], - "onyomi": [ - "ド", - "ヌ" - ], - "onyomiExamples": [ - { - "example": "怒鳴り込む", - "reading": "ドナリコム", - "meaning": "to storm in with a yell" - }, - { - "example": "怒鳴る", - "reading": "ドナル", - "meaning": "to shout (in anger), to yell" - }, - { - "example": "喜怒", - "reading": "キド", - "meaning": "joy and anger, human emotions" - }, - { - "example": "大激怒", - "reading": "ダイゲキド", - "meaning": "getting extremely enraged, becoming furious" - }, - { - "example": "憤怒", - "reading": "フンヌ", - "meaning": "anger, rage, resentment, indignation, exasperation" - } - ], - "kunyomiExamples": [ - { - "example": "怒る", - "reading": "おこる", - "meaning": "to get angry, to get mad, to tell someone off, to scold, to be angular, to be square" - }, - { - "example": "怒る", - "reading": "おこる", - "meaning": "to get angry, to get mad, to tell someone off, to scold, to be angular, to be square" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "又", - "女", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24594_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06012.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6012.gif", - "uri": "http://jisho.org/search/%E6%80%92%23kanji" - }, - { - "query": "到", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1032", - "strokeCount": 8, - "meaning": "arrival, proceed, reach, attain, result in", - "kunyomi": [ - "いた.る" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "到着", - "reading": "トウチャク", - "meaning": "arrival" - }, - { - "example": "到達", - "reading": "トウタツ", - "meaning": "reaching, attaining, arrival" - }, - { - "example": "前人未到", - "reading": "ゼンジンミトウ", - "meaning": "untrodden (region, field of study, etc.), unprecedented (discovery, achievement, etc.)" - }, - { - "example": "精到", - "reading": "セイトウ", - "meaning": "meticulous" - } - ], - "kunyomiExamples": [ - { - "example": "至る", - "reading": "いたる", - "meaning": "to arrive at (e.g. a decision), to reach (a stage), to attain, to lead to (a place), to get to, in the extreme case of, to come, to arrive, to result in" - }, - { - "example": "至る所", - "reading": "いたるところ", - "meaning": "everywhere, all over, throughout" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "厶", - "土", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21040_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05230.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5230.gif", - "uri": "http://jisho.org/search/%E5%88%B0%23kanji" - }, - { - "query": "逃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "931", - "strokeCount": 9, - "meaning": "escape, flee, shirk, evade, set free", - "kunyomi": [ - "に.げる", - "に.がす", - "のが.す", - "のが.れる" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "逃亡", - "reading": "トウボウ", - "meaning": "escape, flight, running away, elopement, fleeing" - }, - { - "example": "逃走", - "reading": "トウソウ", - "meaning": "flight, desertion, escape" - } - ], - "kunyomiExamples": [ - { - "example": "逃げる", - "reading": "にげる", - "meaning": "to escape, to run away" - }, - { - "example": "逃げるが勝ち", - "reading": "にげるがかち", - "meaning": "he that fights and runs away may live to fight another day, fleeing is winning" - }, - { - "example": "逃がす", - "reading": "にがす", - "meaning": "to set free, to let go, to release, to miss (e.g. a chance), to lose, to let get away, to fail to catch" - }, - { - "example": "逃す", - "reading": "のがす", - "meaning": "to miss (e.g. a chance), to lose, to let get away, to set free, to let go, to fail to ..." - }, - { - "example": "逃れる", - "reading": "のがれる", - "meaning": "to escape" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "儿", - "冫", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36867_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09003.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9003.gif", - "uri": "http://jisho.org/search/%E9%80%83%23kanji" - }, - { - "query": "倒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "791", - "strokeCount": 10, - "meaning": "overthrow, fall, collapse, drop, break down", - "kunyomi": [ - "たお.れる", - "-だお.れ", - "たお.す", - "さかさま", - "さかさ", - "さかしま" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "倒産", - "reading": "トウサン", - "meaning": "(corporate) bankruptcy, insolvency, commercial failure, failed business" - }, - { - "example": "倒閣", - "reading": "トウカク", - "meaning": "overthrow of government" - }, - { - "example": "傾倒", - "reading": "ケイトウ", - "meaning": "devoting oneself to, concentrating on, being an ardent admirer of, having great esteem for, tipping over and collapsing" - }, - { - "example": "風倒", - "reading": "フウトウ", - "meaning": "falling due to a strong wind, being toppled by the wind" - } - ], - "kunyomiExamples": [ - { - "example": "倒れる", - "reading": "たおれる", - "meaning": "to fall (over, down), to collapse, to take a fall, to topple, to be destroyed (in a collapse), to collapse, to cave in, to crumble, to give away, to be confined to bed (with an illness), to come down with, to break down (e.g. from overwork), to die, to be killed, to go bankrupt (of a company, bank, etc.), to fail, to collapse, to go under, to be defeated (in a game), to lose, to fall (of a government, dictator, etc.), to be overthrown" - }, - { - "example": "倒す", - "reading": "たおす", - "meaning": "to throw down, to bring down, to blow down, to fell, to knock down, to set (something) down on its side, to turn (something) on its side, to recline (e.g. a seat), to kill, to defeat, to beat, to overthrow, to trip up, to ruin, to leave unpaid, to cheat" - }, - { - "example": "逆さま", - "reading": "さかさま", - "meaning": "inverted, upside down, reversed, back to front" - }, - { - "example": "逆様事", - "reading": "さかさまごと", - "meaning": "child dying before parents, occurrence out of sequence, wrong order" - }, - { - "example": "逆さま", - "reading": "さかさま", - "meaning": "inverted, upside down, reversed, back to front" - }, - { - "example": "逆さ", - "reading": "さかさ", - "meaning": "inverted, upside down, reversed, back to front" - }, - { - "example": "逆しま", - "reading": "さかしま", - "meaning": "reverse, inversion, upside down, unreasonable, absurd, wrong" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "刈", - "化", - "厶", - "土", - "至" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20498_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05012.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5012.gif", - "uri": "http://jisho.org/search/%E5%80%92%23kanji" - }, - { - "query": "凍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1284", - "strokeCount": 10, - "meaning": "frozen, congeal, refrigerate", - "kunyomi": [ - "こお.る", - "こご.える", - "こご.る", - "い.てる", - "し.みる" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "凍結", - "reading": "トウケツ", - "meaning": "freezing (e.g. water), freezing (prices, wages, assets, etc.), moratorium, suspension (e.g. investment)" - }, - { - "example": "凍死", - "reading": "トウシ", - "meaning": "death from cold, freezing to death" - }, - { - "example": "解凍", - "reading": "カイトウ", - "meaning": "thaw, defrosting, decompression (e.g. of a file), unpacking, extracting, unzipping" - }, - { - "example": "自動解凍", - "reading": "ジドウカイトウ", - "meaning": "self-extracting (file)" - } - ], - "kunyomiExamples": [ - { - "example": "凍る", - "reading": "こおる", - "meaning": "to freeze, to be frozen over, to congeal" - }, - { - "example": "凍える", - "reading": "こごえる", - "meaning": "to freeze (of one's body), to be frozen, to become numb (with cold), to be chilled" - }, - { - "example": "凍てる", - "reading": "いてる", - "meaning": "to freeze, to freeze over" - }, - { - "example": "凍みる", - "reading": "しみる", - "meaning": "to freeze, to be frozen over, to congeal" - } - ], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "一", - "冫", - "日", - "木", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20941_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51cd.gif", - "uri": "http://jisho.org/search/%E5%87%8D%23kanji" - }, - { - "query": "唐", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1727", - "strokeCount": 10, - "meaning": "T'ang, China, foreign", - "kunyomi": [ - "から" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "唐", - "reading": "トウ", - "meaning": "Tang dynasty (China, 618-907), T'ang dynasty, China, foreign country" - }, - { - "example": "唐土", - "reading": "モロコシ", - "meaning": "China, Chinese" - }, - { - "example": "頽唐", - "reading": "タイトウ", - "meaning": "decadence, decline" - }, - { - "example": "後唐", - "reading": "コウトウ", - "meaning": "Later Tang dynasty (China, 923-937), Later T'ang dynasty" - } - ], - "kunyomiExamples": [ - { - "example": "唐", - "reading": "から", - "meaning": "China (sometimes also used in ref. to Korea or other foreign countries)" - }, - { - "example": "空手", - "reading": "からて", - "meaning": "karate, empty handed" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ヨ", - "一", - "口", - "广", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21776_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05510.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5510.gif", - "uri": "http://jisho.org/search/%E5%94%90%23kanji" - }, - { - "query": "桃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1784", - "strokeCount": 10, - "meaning": "peach", - "kunyomi": [ - "もも" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "桃花", - "reading": "トウカ", - "meaning": "peach blossom" - }, - { - "example": "桃源", - "reading": "トウゲン", - "meaning": "earthly paradise, Shangri-la" - }, - { - "example": "寿星桃", - "reading": "ジュセイトウ", - "meaning": "Prunus persica var. densa (Chinese variety of peach)" - }, - { - "example": "黄桃", - "reading": "オウトウ", - "meaning": "yellow peach" - } - ], - "kunyomiExamples": [ - { - "example": "桃", - "reading": "もも", - "meaning": "peach (Prunus persica)" - }, - { - "example": "桃色", - "reading": "ももいろ", - "meaning": "pink (colour, color), colour of peach (flowers)" - }, - { - "example": "椿桃", - "reading": "つばいもも", - "meaning": "nectarine" - }, - { - "example": "苔桃", - "reading": "こけもも", - "meaning": "lingonberry (Vaccinium vitis-idaea), cowberry" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "儿", - "冫", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26691_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06843.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6843.gif", - "uri": "http://jisho.org/search/%E6%A1%83%23kanji" - }, - { - "query": "透", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1035", - "strokeCount": 10, - "meaning": "transparent, permeate, filter, penetrate", - "kunyomi": [ - "す.く", - "す.かす", - "す.ける", - "とう.る", - "とう.す" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "透明", - "reading": "トウメイ", - "meaning": "transparent, clear" - }, - { - "example": "透析", - "reading": "トウセキ", - "meaning": "dialysis" - }, - { - "example": "失透", - "reading": "シットウ", - "meaning": "devitrification" - }, - { - "example": "市場浸透", - "reading": "シジョウシントウ", - "meaning": "market penetration" - } - ], - "kunyomiExamples": [ - { - "example": "透く", - "reading": "すく", - "meaning": "to be transparent, to leave a gap" - }, - { - "example": "透かす", - "reading": "すかす", - "meaning": "to look through, to hold up to the light, to make an opening, to leave space, to space (lines), to prune (trees), to fart without making a sound" - }, - { - "example": "透ける", - "reading": "すける", - "meaning": "to be transparent, to show through" - }, - { - "example": "透水", - "reading": "とうすい", - "meaning": "permeation (e.g. of water), percolation, seepage" - }, - { - "example": "透水性", - "reading": "とうすいせい", - "meaning": "permeability" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "ノ", - "乃", - "禾", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36879_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0900f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/900f.gif", - "uri": "http://jisho.org/search/%E9%80%8F%23kanji" - }, - { - "query": "悼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1645", - "strokeCount": 11, - "meaning": "lament, grieve over", - "kunyomi": [ - "いた.む" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "悼辞", - "reading": "トウジ", - "meaning": "funeral address, message of condolence, words of condolence" - }, - { - "example": "悼惜", - "reading": "トウセキ", - "meaning": "mourning, grieving" - }, - { - "example": "追悼", - "reading": "ツイトウ", - "meaning": "mourning (dead persons), memorial" - }, - { - "example": "戦没者追悼", - "reading": "センボツシャツイトウ", - "meaning": "war memorial, memorial (monument) to war dead" - } - ], - "kunyomiExamples": [ - { - "example": "悼む", - "reading": "いたむ", - "meaning": "to grieve over, to mourn, to lament" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "十", - "卜", - "忙", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24764_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060bc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60bc.gif", - "uri": "http://jisho.org/search/%E6%82%BC%23kanji" - }, - { - "query": "盗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1051", - "strokeCount": 11, - "meaning": "steal, rob, pilfer", - "kunyomi": [ - "ぬす.む", - "ぬす.み" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "盗聴", - "reading": "トウチョウ", - "meaning": "interception (email), wiretap, bug" - }, - { - "example": "盗賊", - "reading": "トウゾク", - "meaning": "thief, robber, burglar, bandit" - }, - { - "example": "怪盗", - "reading": "カイトウ", - "meaning": "mysterious thief, phantom thief" - }, - { - "example": "劫盗", - "reading": "ゴウトウ", - "meaning": "robbery, robber" - } - ], - "kunyomiExamples": [ - { - "example": "盗む", - "reading": "ぬすむ", - "meaning": "to steal" - }, - { - "example": "盗み", - "reading": "ぬすみ", - "meaning": "stealing" - }, - { - "example": "盗み足", - "reading": "ぬすみあし", - "meaning": "stealthy steps" - } - ], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "冫", - "欠", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30423_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076d7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76d7.gif", - "uri": "http://jisho.org/search/%E7%9B%97%23kanji" - }, - { - "query": "陶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1680", - "strokeCount": 11, - "meaning": "pottery, porcelain", - "kunyomi": [ - "すえ" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "陶芸", - "reading": "トウゲイ", - "meaning": "ceramic art, ceramics" - }, - { - "example": "陶器", - "reading": "トウキ", - "meaning": "porcelain (esp. soft-paste porcelain), china, chinaware, earthenware, pottery, ceramics, crockery" - }, - { - "example": "製陶", - "reading": "セイトウ", - "meaning": "porcelain manufacturing" - }, - { - "example": "作陶", - "reading": "サクトウ", - "meaning": "porcelain making, ceramics making, pottery making" - } - ], - "kunyomiExamples": [ - { - "example": "陶", - "reading": "すえ", - "meaning": "ceramics, pottery, porcelain" - }, - { - "example": "須恵器", - "reading": "すえき", - "meaning": "Sue ware (type of unglazed pottery made from the middle of the Kofun era through the Heian era)" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "勹", - "缶", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38518_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09676.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9676.gif", - "uri": "http://jisho.org/search/%E9%99%B6%23kanji" - }, - { - "query": "塔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1708", - "strokeCount": 12, - "meaning": "pagoda, tower, steeple", - "kunyomi": [], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "塔", - "reading": "トウ", - "meaning": "tower, steeple, spire, stupa, pagoda, dagoba" - }, - { - "example": "塔屋", - "reading": "トウヤ", - "meaning": "rooftop structure, e.g. tower, elevator machine room, etc." - }, - { - "example": "バベルの塔", - "reading": "バベルノトウ", - "meaning": "Tower of Babel" - }, - { - "example": "鉄塔", - "reading": "テットウ", - "meaning": "steel tower, electricity pylon, transmission tower" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "一", - "个", - "口", - "土", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22612_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05854.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5854.gif", - "uri": "http://jisho.org/search/%E5%A1%94%23kanji" - }, - { - "query": "搭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1472", - "strokeCount": 12, - "meaning": "board, load (a vehicle), ride", - "kunyomi": [], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "搭載", - "reading": "トウサイ", - "meaning": "loading (on board), equipping, equipped (with), built-in" - }, - { - "example": "搭乗", - "reading": "トウジョウ", - "meaning": "embarkation, boarding (an aeroplane, airplane)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "个", - "口", - "扎", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25645_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0642d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/642d.gif", - "uri": "http://jisho.org/search/%E6%90%AD%23kanji" - }, - { - "query": "棟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1406", - "strokeCount": 12, - "meaning": "ridgepole, ridge", - "kunyomi": [ - "むね", - "むな-" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "棟", - "reading": "トウ", - "meaning": "large building, building with a long roof, counter for buildings, apartments, etc." - }, - { - "example": "棟梁", - "reading": "トウリョウ", - "meaning": "central figure, pillar (e.g. of the nation), mainstay, chief support, leader, chief, boss, leader, head, master carpenter, beams and ridge supports of a roof" - }, - { - "example": "病棟", - "reading": "ビョウトウ", - "meaning": "(hospital) ward" - }, - { - "example": "上棟", - "reading": "ジョウトウ", - "meaning": "raising the ridgepole" - } - ], - "kunyomiExamples": [ - { - "example": "棟", - "reading": "むね", - "meaning": "ridge (of roof), back of a sword, counter for buildings, apartments, etc." - }, - { - "example": "棟上げ", - "reading": "むねあげ", - "meaning": "ridgepole-raising, setting up of the framework of a house" - }, - { - "example": "別棟", - "reading": "べつむね", - "meaning": "separate building, outbuilding, outhouse" - }, - { - "example": "大棟", - "reading": "おおむね", - "meaning": "top ridge of a roof, main ridge of a roof" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "日", - "木", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26847_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/068df.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/68df.gif", - "uri": "http://jisho.org/search/%E6%A3%9F%23kanji" - }, - { - "query": "痘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 12, - "meaning": "pox, smallpox", - "kunyomi": [], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "痘痕", - "reading": "アバタ", - "meaning": "pockmark" - }, - { - "example": "痘瘡", - "reading": "トウソウ", - "meaning": "smallpox, variola" - }, - { - "example": "種痘", - "reading": "シュトウ", - "meaning": "smallpox vaccination, inoculation against smallpox" - }, - { - "example": "水痘", - "reading": "スイトウ", - "meaning": "chickenpox, chicken pox" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "口", - "并", - "疔", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30168_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075d8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75d8.gif", - "uri": "http://jisho.org/search/%E7%97%98%23kanji" - }, - { - "query": "筒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1631", - "strokeCount": 12, - "meaning": "cylinder, pipe, tube, gun barrel, sleeve", - "kunyomi": [ - "つつ" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "筒状", - "reading": "トウジョウ", - "meaning": "cylindrical, tubular" - }, - { - "example": "円筒", - "reading": "エントウ", - "meaning": "cylinder" - }, - { - "example": "気筒", - "reading": "キトウ", - "meaning": "cylinder" - } - ], - "kunyomiExamples": [ - { - "example": "筒", - "reading": "つつ", - "meaning": "pipe, tube, cylinder, gun barrel, gun, cannon, well lining, well curb" - }, - { - "example": "筒井", - "reading": "つつい", - "meaning": "round well" - }, - { - "example": "銃の筒", - "reading": "じゅうのつつ", - "meaning": "barrel of a gun" - }, - { - "example": "紙筒", - "reading": "かみづつ", - "meaning": "paper tube, cardboard tube" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "一", - "乞", - "冂", - "口", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31570_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b52.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b52.gif", - "uri": "http://jisho.org/search/%E7%AD%92%23kanji" - }, - { - "query": "稲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1038", - "strokeCount": 14, - "meaning": "rice plant", - "kunyomi": [ - "いね", - "いな-" - ], - "onyomi": [ - "トウ", - "テ" - ], - "onyomiExamples": [ - { - "example": "稲架", - "reading": "ハサ", - "meaning": "drying rice on a rack, rack for drying rice" - }, - { - "example": "稲熱病", - "reading": "イモチビョウ", - "meaning": "rice blight, rice blast" - }, - { - "example": "水稲", - "reading": "スイトウ", - "meaning": "wet-land rice" - }, - { - "example": "占城稲", - "reading": "センジョウトウ", - "meaning": "Champa rice" - }, - { - "example": "中手", - "reading": "ナカテ", - "meaning": "mid-season crops, mid-season rice, mid-season vegetables, metacarpus" - }, - { - "example": "奥手", - "reading": "オクテ", - "meaning": "late-growing rice, late-ripening crops, late-blooming flowers, late developer (e.g. child who reaches puberty late), late bloomer" - } - ], - "kunyomiExamples": [ - { - "example": "稲", - "reading": "いね", - "meaning": "rice plant" - }, - { - "example": "稲刈り", - "reading": "いねかり", - "meaning": "rice reaping, rice harvesting" - }, - { - "example": "束稲", - "reading": "つかいね", - "meaning": "sheaf of rice, bundle of rice plants" - }, - { - "example": "アフリカ稲", - "reading": "アフリカいね", - "meaning": "African rice (Oryza glaberrima)" - } - ], - "radical": { - "symbol": "禾", - "meaning": "grain" - }, - "parts": [ - "日", - "爪", - "禾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31282_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a32.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a32.gif", - "uri": "http://jisho.org/search/%E7%A8%B2%23kanji" - }, - { - "query": "踏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "723", - "strokeCount": 15, - "meaning": "step, trample, carry through, appraise, evade payment", - "kunyomi": [ - "ふ.む", - "ふ.まえる" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "踏破", - "reading": "トウハ", - "meaning": "travelling on foot, traveling on foot, travelling all over" - }, - { - "example": "踏襲", - "reading": "トウシュウ", - "meaning": "following (a precedent, former policy, etc.), continuing with, sticking to, observing" - }, - { - "example": "前人未到", - "reading": "ゼンジンミトウ", - "meaning": "untrodden (region, field of study, etc.), unprecedented (discovery, achievement, etc.)" - }, - { - "example": "高踏", - "reading": "コウトウ", - "meaning": "highbrow, aloof, transcendent" - } - ], - "kunyomiExamples": [ - { - "example": "踏む", - "reading": "ふむ", - "meaning": "to step on, to tread on, to trample on, to set foot on (e.g. foreign soil), to stand on, to visit, to experience, to undergo, to follow (rules, principles, etc.), to go through (e.g. formalities), to complete, to estimate, to guess, to judge, to value, to appraise, to rhyme, to succeed to (e.g. the throne)" - }, - { - "example": "踏まえる", - "reading": "ふまえる", - "meaning": "to be based on, to take into account, to build upon, to have origin in, to have one's feet firmly planted on, to plant oneself on" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "口", - "日", - "止", - "水", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36367_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08e0f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8e0f.gif", - "uri": "http://jisho.org/search/%E8%B8%8F%23kanji" - }, - { - "query": "謄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2295", - "strokeCount": 17, - "meaning": "mimeograph, copy", - "kunyomi": [], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "謄本", - "reading": "トウホン", - "meaning": "certified copy, transcript, official copy of the family register" - }, - { - "example": "謄写", - "reading": "トウシャ", - "meaning": "copy, transcription, mimeograph, photocopy" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "二", - "大", - "月", - "言", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35588_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b04.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b04.gif", - "uri": "http://jisho.org/search/%E8%AC%84%23kanji" - }, - { - "query": "藤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "291", - "strokeCount": 18, - "meaning": "wisteria", - "kunyomi": [ - "ふじ" - ], - "onyomi": [ - "トウ", - "ドウ" - ], - "onyomiExamples": [ - { - "example": "藤黄", - "reading": "トウオウ", - "meaning": "gamboge" - }, - { - "example": "藤花", - "reading": "トウカ", - "meaning": "wisteria flower" - } - ], - "kunyomiExamples": [ - { - "example": "藤", - "reading": "ふじ", - "meaning": "wisteria (esp. Japanese wisteria, Wisteria floribunda), wistaria" - }, - { - "example": "藤色", - "reading": "ふじいろ", - "meaning": "light purple" - }, - { - "example": "草藤", - "reading": "くさふじ", - "meaning": "tufted vetch (Vicia cracca), cow vetch" - }, - { - "example": "野田藤", - "reading": "のだふじ", - "meaning": "Japanese wisteria (Wisteria floribunda)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "一", - "二", - "大", - "月", - "水", - "艾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34276_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085e4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85e4.gif", - "uri": "http://jisho.org/search/%E8%97%A4%23kanji" - }, - { - "query": "闘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "751", - "strokeCount": 18, - "meaning": "fight, war", - "kunyomi": [ - "たたか.う", - "あらそ.う" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "闘士", - "reading": "トウシ", - "meaning": "fighter (for), militant, champion (of), boxer" - }, - { - "example": "闘志", - "reading": "トウシ", - "meaning": "fighting spirit, (will to) fight" - }, - { - "example": "敢闘", - "reading": "カントウ", - "meaning": "fighting bravely" - }, - { - "example": "共闘", - "reading": "キョウトウ", - "meaning": "joint struggle, common (united) front" - } - ], - "kunyomiExamples": [ - { - "example": "戦う", - "reading": "たたかう", - "meaning": "to make war (on), to wage war (against), to go to war (with), to fight (with), to do battle (against), to compete (against), to struggle (against adversities, etc.), to fight, to contend, to resist" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "口", - "寸", - "并", - "豆", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38360_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/095d8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/95d8.gif", - "uri": "http://jisho.org/search/%E9%97%98%23kanji" - }, - { - "query": "騰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1420", - "strokeCount": 20, - "meaning": "leaping up, jumping up, rising, advancing, going", - "kunyomi": [ - "あが.る", - "のぼ.る" - ], - "onyomi": [ - "トウ" - ], - "onyomiExamples": [ - { - "example": "騰貴", - "reading": "トウキ", - "meaning": "rise (in price or value), appreciation, advance" - }, - { - "example": "騰勢", - "reading": "トウセイ", - "meaning": "upward trend" - }, - { - "example": "反騰", - "reading": "ハントウ", - "meaning": "reactionary price rise" - }, - { - "example": "上騰", - "reading": "ジョウトウ", - "meaning": "advance, rise, jump" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "馬", - "meaning": "horse" - }, - "parts": [ - "一", - "二", - "人", - "大", - "并", - "月", - "杰", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39472_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09a30.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9a30.gif", - "uri": "http://jisho.org/search/%E9%A8%B0%23kanji" - }, - { - "query": "洞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1618", - "strokeCount": 9, - "meaning": "den, cave, excavation", - "kunyomi": [ - "ほら" - ], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "洞", - "reading": "ドウ", - "meaning": "sinus, cavity, antrum, neighborhood (administrative division in North Korea)" - }, - { - "example": "洞察", - "reading": "ドウサツ", - "meaning": "discernment, insight" - }, - { - "example": "空洞", - "reading": "クウドウ", - "meaning": "cave, hollow, cavity, hollow" - }, - { - "example": "風洞", - "reading": "フウドウ", - "meaning": "wind tunnel" - } - ], - "kunyomiExamples": [ - { - "example": "洞", - "reading": "ほら", - "meaning": "hollow, cavity, hole, cave" - }, - { - "example": "洞穴", - "reading": "ほらあな", - "meaning": "cave, cavern, den, grotto" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "冂", - "口", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27934_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d1e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d1e.gif", - "uri": "http://jisho.org/search/%E6%B4%9E%23kanji" - }, - { - "query": "胴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1904", - "strokeCount": 10, - "meaning": "trunk, torso, hull (ship), hub of wheel", - "kunyomi": [], - "onyomi": [ - "ドウ" - ], - "onyomiExamples": [ - { - "example": "胴", - "reading": "ドウ", - "meaning": "trunk, torso, body, abdomen, waist, plastron (in kendo), touching the plastron (kimari-te in kendo), frame (of a drum, etc.), sound box (of a shamisen, etc.), hull (of a ship), dealer" - }, - { - "example": "胴上げ", - "reading": "ドウアゲ", - "meaning": "tossing (someone) into the air (in celebration)" - }, - { - "example": "共鳴胴", - "reading": "キョウメイドウ", - "meaning": "sound box (of an instrument), sounding box" - }, - { - "example": "響胴", - "reading": "キョウドウ", - "meaning": "sound box (of a musical instrument), soundbox" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "一", - "冂", - "口", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33012_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080f4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80f4.gif", - "uri": "http://jisho.org/search/%E8%83%B4%23kanji" - }, - { - "query": "瞳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2069", - "strokeCount": 17, - "meaning": "pupil (of eye)", - "kunyomi": [ - "ひとみ" - ], - "onyomi": [ - "ドウ", - "トウ" - ], - "onyomiExamples": [ - { - "example": "瞳孔", - "reading": "ドウコウ", - "meaning": "pupil (of the eye)" - }, - { - "example": "瞳孔拡張", - "reading": "ドウコウカクチョウ", - "meaning": "pupil dilation" - }, - { - "example": "縮瞳", - "reading": "シュクドウ", - "meaning": "miosis, myosis, (excessive) constriction of the pupil" - }, - { - "example": "散瞳", - "reading": "サンドウ", - "meaning": "mydriasis, (excessive) dilation of the pupil" - } - ], - "kunyomiExamples": [ - { - "example": "瞳", - "reading": "ひとみ", - "meaning": "pupil (of eye), eye" - }, - { - "example": "瞳を凝らす", - "reading": "ひとみをこらす", - "meaning": "to strain one's eyes, to stare" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "目", - "立", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30643_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077b3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77b3.gif", - "uri": "http://jisho.org/search/%E7%9E%B3%23kanji" - }, - { - "query": "峠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1941", - "strokeCount": 9, - "meaning": "mountain peak, mountain pass, climax, crest, (kokuji)", - "kunyomi": [ - "とうげ" - ], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "峠", - "reading": "とうげ", - "meaning": "(mountain) pass, ridge, peak, peak (e.g. of summer), worst (e.g. of an illness), crisis, critical point, most difficult part" - }, - { - "example": "峠越え", - "reading": "とうげごえ", - "meaning": "crossing a mountain pass" - }, - { - "example": "碓氷峠", - "reading": "うすいとうげ", - "meaning": "Usui Pass" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "一", - "卜", - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23776_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ce0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ce0.gif", - "uri": "http://jisho.org/search/%E5%B3%A0%23kanji" - }, - { - "query": "匿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2024", - "strokeCount": 10, - "meaning": "hide, shelter, shield", - "kunyomi": [ - "かくま.う" - ], - "onyomi": [ - "トク" - ], - "onyomiExamples": [ - { - "example": "匿", - "reading": "トク", - "meaning": "shelter, shield, hide" - }, - { - "example": "匿名", - "reading": "トクメイ", - "meaning": "anonymity, using an assumed name" - }, - { - "example": "隠匿", - "reading": "イントク", - "meaning": "concealment" - }, - { - "example": "秘匿", - "reading": "ヒトク", - "meaning": "hiding, concealment" - } - ], - "kunyomiExamples": [ - { - "example": "匿う", - "reading": "かくまう", - "meaning": "to shelter (e.g. a fugitive), to harbour, to harbor, to hide, to give refuge to" - } - ], - "radical": { - "symbol": "匸", - "meaning": "hiding enclosure" - }, - "parts": [ - "ノ", - "匚", - "口", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21311_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0533f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/533f.gif", - "uri": "http://jisho.org/search/%E5%8C%BF%23kanji" - }, - { - "query": "督", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "534", - "strokeCount": 13, - "meaning": "coach, command, urge, lead, supervise", - "kunyomi": [], - "onyomi": [ - "トク" - ], - "onyomiExamples": [ - { - "example": "督促", - "reading": "トクソク", - "meaning": "urge, demand, importunity" - }, - { - "example": "督学官", - "reading": "トクガクカン", - "meaning": "school inspector" - }, - { - "example": "総督", - "reading": "ソウトク", - "meaning": "governor-general, governor, viceroy" - }, - { - "example": "家督", - "reading": "カトク", - "meaning": "heir, successor, family estate, family fortune, inheritance, headship of a family" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "卜", - "又", - "小", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30563_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07763.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7763.gif", - "uri": "http://jisho.org/search/%E7%9D%A3%23kanji" - }, - { - "query": "篤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1942", - "strokeCount": 16, - "meaning": "fervent, kind, cordial, serious, deliberate", - "kunyomi": [ - "あつ.い" - ], - "onyomi": [ - "トク" - ], - "onyomiExamples": [ - { - "example": "篤志家", - "reading": "トクシカ", - "meaning": "charitable person, philanthropist, volunteer, supporter" - }, - { - "example": "篤学", - "reading": "トクガク", - "meaning": "love of learning" - }, - { - "example": "重篤", - "reading": "ジュウトク", - "meaning": "critical (condition), serious" - }, - { - "example": "懇篤", - "reading": "コントク", - "meaning": "cordial, kind" - } - ], - "kunyomiExamples": [ - { - "example": "厚い", - "reading": "あつい", - "meaning": "thick, deep, heavy, kind, cordial, hospitable, warm, faithful, serious (of an illness), abundant" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "杰", - "竹", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31716_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07be4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7be4.gif", - "uri": "http://jisho.org/search/%E7%AF%A4%23kanji" - }, - { - "query": "凸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2143", - "strokeCount": 5, - "meaning": "convex, beetle brow, uneven", - "kunyomi": [ - "でこ" - ], - "onyomi": [ - "トツ" - ], - "onyomiExamples": [ - { - "example": "凸", - "reading": "トツ", - "meaning": "convex" - }, - { - "example": "凸凹", - "reading": "デコボコ", - "meaning": "unevenness, roughness, ruggedness, bumpiness, inequality, imbalance, unevenness, difference" - }, - { - "example": "凹凸", - "reading": "オウトツ", - "meaning": "unevenness, bumpiness, roughness, ruggedness, imbalance, inequality, unevenness, disparity" - }, - { - "example": "両凸", - "reading": "リョウトツ", - "meaning": "biconvex" - } - ], - "kunyomiExamples": [ - { - "example": "凸", - "reading": "でこ", - "meaning": "brow, forehead, bump" - }, - { - "example": "凸凹", - "reading": "でこぼこ", - "meaning": "unevenness, roughness, ruggedness, bumpiness, inequality, imbalance, unevenness, difference" - } - ], - "radical": { - "symbol": "凵", - "meaning": "container, open mouth" - }, - "parts": [ - "一", - "冂", - "凵", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20984_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51f8.gif", - "uri": "http://jisho.org/search/%E5%87%B8%23kanji" - }, - { - "query": "突", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "521", - "strokeCount": 8, - "meaning": "stab, protruding, thrust, pierce, prick, collision, sudden", - "kunyomi": [ - "つ.く" - ], - "onyomi": [ - "トツ", - "カ" - ], - "onyomiExamples": [ - { - "example": "突入", - "reading": "トツニュウ", - "meaning": "rushing into, breaking into, storming, plunging into (war, etc.), embarking on (a new venture)" - }, - { - "example": "突然", - "reading": "トツゼン", - "meaning": "abrupt, sudden, unexpected" - }, - { - "example": "強制衝突", - "reading": "キョウセイショウトツ", - "meaning": "collision enforcement" - }, - { - "example": "非弾性衝突", - "reading": "ヒダンセイショウトツ", - "meaning": "inelastic collision" - } - ], - "kunyomiExamples": [ - { - "example": "突く", - "reading": "つく", - "meaning": "to prick, to stab, to poke, to prod, to push, to thrust, to nudge, to hit, to strike, to use (a cane), to prop oneself up with, to press against (the floor, etc.), to attack, to brave (the rain, etc.)" - }, - { - "example": "突棒", - "reading": "つくぼう", - "meaning": "barbed T-shaped weapon for catching thieves (Edo period)" - }, - { - "example": "麦突", - "reading": "むぎつく", - "meaning": "Pungtungia herzi (species of cyprinid)" - }, - { - "example": "剣突く", - "reading": "けんつく", - "meaning": "rough scolding, upbraiding, tongue-lashing, dressing-down" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "大", - "宀", - "穴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31361_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07a81.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7a81.gif", - "uri": "http://jisho.org/search/%E7%AA%81%23kanji" - }, - { - "query": "屯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1980", - "strokeCount": 4, - "meaning": "barracks, police station, camp, ton", - "kunyomi": [ - "たむろ" - ], - "onyomi": [ - "トン" - ], - "onyomiExamples": [ - { - "example": "屯", - "reading": "トン", - "meaning": "ton (now usu. a metric ton, i.e. 1,000kg), tonne" - }, - { - "example": "屯営", - "reading": "トンエイ", - "meaning": "military camp, barracks, camping" - }, - { - "example": "駐屯", - "reading": "チュウトン", - "meaning": "stationing (troops), occupancy" - }, - { - "example": "英噸", - "reading": "エイトン", - "meaning": "long ton, British ton" - } - ], - "kunyomiExamples": [ - { - "example": "屯", - "reading": "たむろ", - "meaning": "gathering, place where people gather, police station, camp, barracks" - }, - { - "example": "屯う", - "reading": "たむろう", - "meaning": "to gather in large numbers (of people), to hang out (as a large group)" - } - ], - "radical": { - "symbol": "屮", - "meaning": "sprout" - }, - "parts": [ - "ノ", - "乙", - "凵", - "屯" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23663_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c6f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c6f.gif", - "uri": "http://jisho.org/search/%E5%B1%AF%23kanji" - }, - { - "query": "豚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1864", - "strokeCount": 11, - "meaning": "pork, pig", - "kunyomi": [ - "ぶた" - ], - "onyomi": [ - "トン" - ], - "onyomiExamples": [ - { - "example": "豚", - "reading": "トン", - "meaning": "pig, pork" - }, - { - "example": "豚肉", - "reading": "ブタニク", - "meaning": "pork" - }, - { - "example": "養豚", - "reading": "ヨウトン", - "meaning": "pig-keeping, pig farming" - }, - { - "example": "焼きとん", - "reading": "ヤキトン", - "meaning": "yakiton, grilled pork on skewers" - } - ], - "kunyomiExamples": [ - { - "example": "豚", - "reading": "ぶた", - "meaning": "pig (Sus scrofa domesticus), pork, fatso, fatty" - }, - { - "example": "豚肉", - "reading": "ぶたにく", - "meaning": "pork" - }, - { - "example": "野生豚", - "reading": "やせいぶた", - "meaning": "feral pig" - }, - { - "example": "萌え豚", - "reading": "もえぶた", - "meaning": "anime freak, person overly interested in female anime and video game characters" - } - ], - "radical": { - "symbol": "豕", - "meaning": "pig" - }, - "parts": [ - "月", - "豕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35930_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c5a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c5a.gif", - "uri": "http://jisho.org/search/%E8%B1%9A%23kanji" - }, - { - "query": "頓", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "suddenly, immediately, in a hurry, arrange, stay in place, bow, kowtow", - "kunyomi": [ - "にわか.に", - "とん.と", - "つまず.く", - "とみ.に", - "ぬかずく" - ], - "onyomi": [ - "トン", - "トツ" - ], - "onyomiExamples": [ - { - "example": "頓", - "reading": "トミ", - "meaning": "sudden, abrupt, unexpected, stupid, foolish, attaining enlightenment in one effort (without ascetic practices, etc.)" - }, - { - "example": "頓狂", - "reading": "トンキョウ", - "meaning": "wild, in disarray" - }, - { - "example": "華盛頓", - "reading": "ワシントン", - "meaning": "Washington, DC (capital of the United States of America), Washington (US state)" - }, - { - "example": "整理整頓", - "reading": "セイリセイトン", - "meaning": "keeping things tidy and in order" - } - ], - "kunyomiExamples": [ - { - "example": "頓と", - "reading": "とんと", - "meaning": "completely, not at all" - }, - { - "example": "頓に", - "reading": "とみに", - "meaning": "suddenly, all at once, rapidly" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "屯", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38931_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09813.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9813.gif", - "uri": "http://jisho.org/search/%E9%A0%93%23kanji" - }, - { - "query": "貪", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "covet, indulge in", - "kunyomi": [ - "むさぼ.る" - ], - "onyomi": [ - "タン", - "ドン", - "トン" - ], - "onyomiExamples": [ - { - "example": "貪", - "reading": "タン", - "meaning": "coveting, raga (desire)" - }, - { - "example": "貪欲", - "reading": "ドンヨク", - "meaning": "avarice, greed, covetousness, raga (desire)" - }, - { - "example": "貪", - "reading": "タン", - "meaning": "coveting, raga (desire)" - }, - { - "example": "貪欲", - "reading": "ドンヨク", - "meaning": "avarice, greed, covetousness, raga (desire)" - }, - { - "example": "貪", - "reading": "タン", - "meaning": "coveting, raga (desire)" - }, - { - "example": "貪欲", - "reading": "ドンヨク", - "meaning": "avarice, greed, covetousness, raga (desire)" - }, - { - "example": "無貪", - "reading": "ムトン", - "meaning": "non-craving, non-coveting" - } - ], - "kunyomiExamples": [ - { - "example": "貪る", - "reading": "むさぼる", - "meaning": "to covet, to crave, to lust insatiably for, to indulge in, to devour greedily" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "一", - "个", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36010_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08caa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8caa.gif", - "uri": "http://jisho.org/search/%E8%B2%AA%23kanji" - }, - { - "query": "鈍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1574", - "strokeCount": 12, - "meaning": "dull, slow, foolish, blunt", - "kunyomi": [ - "にぶ.い", - "にぶ.る", - "にぶ-", - "なま.る", - "なまく.ら" - ], - "onyomi": [ - "ドン" - ], - "onyomiExamples": [ - { - "example": "鈍", - "reading": "ドン", - "meaning": "dull, slow, stupid, dull-brained" - }, - { - "example": "鈍化", - "reading": "ドンカ", - "meaning": "becoming dull, slowing down" - }, - { - "example": "焼鈍", - "reading": "ショウドン", - "meaning": "annealing" - }, - { - "example": "愚鈍", - "reading": "グドン", - "meaning": "stupidity, silliness, asininity, imbecility, dim-wittedness" - } - ], - "kunyomiExamples": [ - { - "example": "鈍い", - "reading": "にぶい", - "meaning": "dull (e.g. a knife), blunt, thickheaded, obtuse, stupid, dull (sound, color, etc.), dim (light), slow, sluggish, inert, lethargic, insensitive, dull (e.g. reflexes), unperceptive, unfeeling" - }, - { - "example": "鈍い音", - "reading": "にぶいおと", - "meaning": "dull sound, muffled sound" - }, - { - "example": "鈍る", - "reading": "にぶる", - "meaning": "to become blunt, to grow dull, to become less capable, to weaken, to falter" - }, - { - "example": "鈍る", - "reading": "にぶる", - "meaning": "to become blunt, to grow dull, to become less capable, to weaken, to falter" - }, - { - "example": "鈍ら", - "reading": "なまくら", - "meaning": "blunt (e.g. sword), dull, lazy, cowardly, good for nothing" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "屯", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37389_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0920d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/920d.gif", - "uri": "http://jisho.org/search/%E9%88%8D%23kanji" - }, - { - "query": "曇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1899", - "strokeCount": 16, - "meaning": "cloudy weather, cloud up", - "kunyomi": [ - "くも.る" - ], - "onyomi": [ - "ドン" - ], - "onyomiExamples": [ - { - "example": "曇天", - "reading": "ドンテン", - "meaning": "cloudy sky, overcast sky, cloudy weather" - }, - { - "example": "晴曇", - "reading": "セイドン", - "meaning": "fine weather and cloudy" - } - ], - "kunyomiExamples": [ - { - "example": "曇る", - "reading": "くもる", - "meaning": "to get cloudy, to cloud over, to become overcast, to cloud up, to fog up, to mist up, to become dim, to be gloomy, to be clouded (expression), to be downcast, to look slightly downward (of a noh mask; indicating sadness, grief, etc.)" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "二", - "厶", - "日", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26311_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66c7.gif", - "uri": "http://jisho.org/search/%E6%9B%87%23kanji" - }, - { - "query": "丼", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2088", - "strokeCount": 5, - "meaning": "bowl, bowl of food", - "kunyomi": [ - "どんぶり" - ], - "onyomi": [ - "トン", - "タン", - "ショウ", - "セイ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "丼", - "reading": "どんぶり", - "meaning": "porcelain bowl, donburi, bowl of meat, fish, etc. served over rice" - }, - { - "example": "どんぶり勘定", - "reading": "どんぶりかんじょう", - "meaning": "rough estimate, sloppy accounting, slapdash bookkeeping" - }, - { - "example": "開化丼", - "reading": "かいかどんぶり", - "meaning": "beef (or pork) and egg on rice" - }, - { - "example": "中華丼", - "reading": "ちゅうかどんぶり", - "meaning": "bowl of rice with a chop-suey-like mixture on it" - } - ], - "radical": { - "symbol": "丶", - "meaning": "dot" - }, - "parts": [ - "ノ", - "丶", - "二", - "井", - "廾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20028_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e3c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e3c.gif", - "uri": "http://jisho.org/search/%E4%B8%BC%23kanji" - }, - { - "query": "那", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1621", - "strokeCount": 7, - "meaning": "what?", - "kunyomi": [ - "なに", - "なんぞ", - "いかん" - ], - "onyomi": [ - "ナ", - "ダ" - ], - "onyomiExamples": [ - { - "example": "那覇", - "reading": "ナハ", - "meaning": "Naha (city in Okinawa)" - }, - { - "example": "那辺", - "reading": "ナヘン", - "meaning": "where" - }, - { - "example": "刹那", - "reading": "セツナ", - "meaning": "moment, instant, kshana, duration of a single mental event (about 1/75 second), shortest possible interval of time" - }, - { - "example": "印度支那", - "reading": "インドシナ", - "meaning": "Indochina" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "二", - "刀", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37027_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090a3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90a3.gif", - "uri": "http://jisho.org/search/%E9%82%A3%23kanji" - }, - { - "query": "謎", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2021", - "strokeCount": 16, - "meaning": "riddle, puzzle, enigma, hint, tip", - "kunyomi": [ - "なぞ" - ], - "onyomi": [ - "メイ", - "ベイ" - ], - "onyomiExamples": [ - { - "example": "謎語", - "reading": "メイゴ", - "meaning": "mysterious words, confusing words" - } - ], - "kunyomiExamples": [ - { - "example": "謎", - "reading": "なぞ", - "meaning": "riddle, puzzle, enigma, mystery, enigmatic, mysterious" - }, - { - "example": "謎々", - "reading": "なぞなぞ", - "meaning": "riddle, puzzle, enigma" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "米", - "言", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35598_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b0e.gif", - "uri": "http://jisho.org/search/%E8%AC%8E%23kanji" - }, - { - "query": "鍋", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1810", - "strokeCount": 17, - "meaning": "pot, pan, kettle", - "kunyomi": [ - "なべ" - ], - "onyomi": [ - "カ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "鍋", - "reading": "なべ", - "meaning": "saucepan, pot, stew, hot pot" - }, - { - "example": "鍋物", - "reading": "なべもの", - "meaning": "stew, food cooked in a pot" - }, - { - "example": "もつ鍋", - "reading": "もつなべ", - "meaning": "hot pot stew made with offal, vegetables and (often) miso" - }, - { - "example": "土鍋", - "reading": "どなべ", - "meaning": "earthenware pot" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "冂", - "口", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37707_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0934b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/934b.gif", - "uri": "http://jisho.org/search/%E9%8D%8B%23kanji" - }, - { - "query": "軟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1269", - "strokeCount": 11, - "meaning": "soft", - "kunyomi": [ - "やわ.らか", - "やわ.らかい" - ], - "onyomi": [ - "ナン" - ], - "onyomiExamples": [ - { - "example": "軟", - "reading": "ナン", - "meaning": "soft" - }, - { - "example": "軟化", - "reading": "ナンカ", - "meaning": "softening, softening (of attitude), mollification, weakening (of the market), blanching (e.g. of vegetables; by depriving of light)" - }, - { - "example": "硬軟", - "reading": "コウナン", - "meaning": "hardness and softness, hard line and moderate line" - } - ], - "kunyomiExamples": [ - { - "example": "柔らか", - "reading": "やわらか", - "meaning": "soft, tender, limp, subdued (colour or light) (color), gentle, meek" - }, - { - "example": "柔らかい", - "reading": "やわらかい", - "meaning": "soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)" - }, - { - "example": "柔らかい", - "reading": "やわらかい", - "meaning": "soft, tender, pliant, supple, limber, limp, gentle, mild, mellow, informal, light, flexible (e.g. thinking)" - }, - { - "example": "柔らかい文章", - "reading": "やわらかいぶんしょう", - "meaning": "informal style" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "欠", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36575_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08edf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8edf.gif", - "uri": "http://jisho.org/search/%E8%BB%9F%23kanji" - }, - { - "query": "尼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1844", - "strokeCount": 5, - "meaning": "nun", - "kunyomi": [ - "あま" - ], - "onyomi": [ - "ニ" - ], - "onyomiExamples": [ - { - "example": "尼", - "reading": "ニ", - "meaning": "bhikkhuni (fully ordained Buddhist nun), Indonesia" - }, - { - "example": "尼加拉瓦", - "reading": "ニカラグア", - "meaning": "Nicaragua" - }, - { - "example": "僧尼", - "reading": "ソウニ", - "meaning": "monks and nuns" - }, - { - "example": "修道尼", - "reading": "シュウドウニ", - "meaning": "nun" - } - ], - "kunyomiExamples": [ - { - "example": "尼", - "reading": "あま", - "meaning": "nun, bitch, Amagasaki, Hyogo, Amazon (online retailer)" - }, - { - "example": "尼鷺", - "reading": "あまさぎ", - "meaning": "cattle egret (Bubulcus ibis)" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "匕", - "尸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23612_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c3c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c3c.gif", - "uri": "http://jisho.org/search/%E5%B0%BC%23kanji" - }, - { - "query": "弐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 6, - "meaning": "II, two, second", - "kunyomi": [ - "ふた.つ", - "そえ" - ], - "onyomi": [ - "ニ", - "ジ" - ], - "onyomiExamples": [ - { - "example": "二", - "reading": "ニ", - "meaning": "two" - }, - { - "example": "20", - "reading": "ニジュウ", - "meaning": "twenty, 20" - }, - { - "example": "二心", - "reading": "フタゴコロ", - "meaning": "duplicity, treachery, double-dealing" - }, - { - "example": "疑弐", - "reading": "ギジ", - "meaning": "doubt, distrust, disobedience" - }, - { - "example": "副弐", - "reading": "フクジ", - "meaning": "secondary (thing), backup" - } - ], - "kunyomiExamples": [ - { - "example": "弐つ", - "reading": "ふたつ", - "meaning": "two" - } - ], - "radical": { - "symbol": "弋", - "meaning": "shoot, arrow" - }, - "parts": [ - "一", - "二", - "弋" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24336_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f10.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f10.gif", - "uri": "http://jisho.org/search/%E5%BC%90%23kanji" - }, - { - "query": "匂", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2213", - "strokeCount": 4, - "meaning": "fragrant, stink, glow, insinuate, (kokuji)", - "kunyomi": [ - "にお.う", - "にお.い", - "にお.わせる" - ], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "匂う", - "reading": "におう", - "meaning": "to be fragrant, to smell (good), to stink, to smell (bad), to glow, to be bright, to smack of, to show hints of" - }, - { - "example": "匂い", - "reading": "におい", - "meaning": "odour, odor, scent, smell, stench, aura, whiff, smacks of ..., sense, flavour, flavor" - }, - { - "example": "匂い油", - "reading": "においあぶら", - "meaning": "perfumed hair oil" - }, - { - "example": "匂わせる", - "reading": "におわせる", - "meaning": "to give off (a smell, scent, aroma), to smell of, to perfume (a room, etc.), to hint at, to suggest, to insinuate" - } - ], - "radical": { - "symbol": "勹", - "meaning": "wrap, embrace" - }, - "parts": [ - "勹", - "匕" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21250_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05302.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5302.gif", - "uri": "http://jisho.org/search/%E5%8C%82%23kanji" - }, - { - "query": "虹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2110", - "strokeCount": 9, - "meaning": "rainbow", - "kunyomi": [ - "にじ" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "虹霓", - "reading": "コウゲイ", - "meaning": "rainbow" - }, - { - "example": "虹彩", - "reading": "コウサイ", - "meaning": "iris (of the eye)" - }, - { - "example": "副虹", - "reading": "フクニジ", - "meaning": "secondary rainbow" - }, - { - "example": "月虹", - "reading": "ゲッコウ", - "meaning": "moonbow, lunar rainbow, whitish rainbow cast by moonlight, lunar bow, space rainbow" - } - ], - "kunyomiExamples": [ - { - "example": "虹", - "reading": "にじ", - "meaning": "rainbow" - }, - { - "example": "虹色", - "reading": "にじいろ", - "meaning": "rainbow-colored, rainbow-coloured" - }, - { - "example": "夕虹", - "reading": "ゆうにじ", - "meaning": "evening rainbow" - }, - { - "example": "過剰虹", - "reading": "かじょうにじ", - "meaning": "supernumerary rainbow" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "工", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34425_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08679.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8679.gif", - "uri": "http://jisho.org/search/%E8%99%B9%23kanji" - }, - { - "query": "尿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1672", - "strokeCount": 7, - "meaning": "urine", - "kunyomi": [ - "ゆばり", - "いばり", - "しと" - ], - "onyomi": [ - "ニョウ" - ], - "onyomiExamples": [ - { - "example": "尿", - "reading": "ニョウ", - "meaning": "urine" - }, - { - "example": "尿酸", - "reading": "ニョウサン", - "meaning": "uric acid" - }, - { - "example": "利尿", - "reading": "リニョウ", - "meaning": "diuresis" - }, - { - "example": "遺尿", - "reading": "イニョウ", - "meaning": "enuresis, bed wetting" - } - ], - "kunyomiExamples": [ - { - "example": "尿", - "reading": "にょう", - "meaning": "urine" - }, - { - "example": "尿袋", - "reading": "いばりぶくろ", - "meaning": "urinary bladder" - }, - { - "example": "尿", - "reading": "にょう", - "meaning": "urine" - }, - { - "example": "尿袋", - "reading": "いばりぶくろ", - "meaning": "urinary bladder" - }, - { - "example": "尿", - "reading": "にょう", - "meaning": "urine" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "尸", - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23615_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c3f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c3f.gif", - "uri": "http://jisho.org/search/%E5%B0%BF%23kanji" - }, - { - "query": "妊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1413", - "strokeCount": 7, - "meaning": "pregnancy", - "kunyomi": [ - "はら.む", - "みごも.る" - ], - "onyomi": [ - "ニン", - "ジン" - ], - "onyomiExamples": [ - { - "example": "妊婦", - "reading": "ニンプ", - "meaning": "pregnant woman" - }, - { - "example": "妊娠", - "reading": "ニンシン", - "meaning": "conception, pregnancy" - }, - { - "example": "不妊", - "reading": "フニン", - "meaning": "infertility, sterility, barrenness" - }, - { - "example": "懐妊", - "reading": "カイニン", - "meaning": "pregnancy, conception" - } - ], - "kunyomiExamples": [ - { - "example": "孕む", - "reading": "はらむ", - "meaning": "to conceive, to become pregnant, to get filled with (e.g. sails filled with wind), to be swollen with, to contain (a contradiction, danger, etc.), to carry (a problem, consequences, etc.), to involve (e.g. risk), to be swollen and ripe (of a plant ear, head, sprout, etc.)" - }, - { - "example": "身ごもる", - "reading": "みごもる", - "meaning": "to become pregnant" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ノ", - "士", - "女", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22922_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0598a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/598a.gif", - "uri": "http://jisho.org/search/%E5%A6%8A%23kanji" - }, - { - "query": "忍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1700", - "strokeCount": 7, - "meaning": "endure, bear, put up with, conceal, secrete, spy, sneak", - "kunyomi": [ - "しの.ぶ", - "しの.ばせる" - ], - "onyomi": [ - "ニン" - ], - "onyomiExamples": [ - { - "example": "忍", - "reading": "ニン", - "meaning": "endurance, forbearance, patience, self-restraint" - }, - { - "example": "忍耐", - "reading": "ニンタイ", - "meaning": "endurance, perseverance, patience" - }, - { - "example": "無生法忍", - "reading": "ムショウホウニン", - "meaning": "anutpattika-dharma-ksanti (recognition that nothing really arises or perishes)" - }, - { - "example": "中忍", - "reading": "チュウニン", - "meaning": "ninja commander" - } - ], - "kunyomiExamples": [ - { - "example": "忍", - "reading": "しのぶ", - "meaning": "squirrel's foot fern (Davallia mariesii), Lepisorus thunbergianus (species of fern), color of clothing layers under one's overcoat (light green on blue), ancient women's hairstyle, clothing patterned using squirrel's foot fern" - }, - { - "example": "忍ぶ", - "reading": "しのぶ", - "meaning": "to conceal oneself, to hide, to endure, to bear, to stand, to put up with" - }, - { - "example": "軒忍", - "reading": "のきしのぶ", - "meaning": "weeping fern (Lepisorus thunbergianus)" - }, - { - "example": "立忍", - "reading": "たちしのぶ", - "meaning": "Japanese claw fern (Onychium japonicum), carrot fern" - }, - { - "example": "忍ばせる", - "reading": "しのばせる", - "meaning": "to conceal, to hide" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "丶", - "刀", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24525_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fcd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fcd.gif", - "uri": "http://jisho.org/search/%E5%BF%8D%23kanji" - }, - { - "query": "寧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1697", - "strokeCount": 14, - "meaning": "rather, preferably, peaceful, quiet, tranquility", - "kunyomi": [ - "むし.ろ" - ], - "onyomi": [ - "ネイ" - ], - "onyomiExamples": [ - { - "example": "寧夏回族自治区", - "reading": "ネイカカイゾクジチク", - "meaning": "Ningxia Hui Autonomous Region (China)" - }, - { - "example": "寧日", - "reading": "ネイジツ", - "meaning": "peaceful day" - }, - { - "example": "静寧", - "reading": "セイネイ", - "meaning": "peace and quiet, tranquility, peace on earth" - }, - { - "example": "バカ丁寧", - "reading": "バカテイネイ", - "meaning": "overly polite, excessively polite, polite to a fault" - } - ], - "kunyomiExamples": [ - { - "example": "寧ろ", - "reading": "むしろ", - "meaning": "rather, better, instead" - } - ], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "一", - "亅", - "宀", - "心", - "皿", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23527_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05be7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5be7.gif", - "uri": "http://jisho.org/search/%E5%AF%A7%23kanji" - }, - { - "query": "捻", - "found": true, - "taughtIn": "junior high", - "strokeCount": 11, - "meaning": "twirl, twist, play with", - "kunyomi": [ - "ね.じる", - "ねじ.る", - "ひね.くる", - "ひね.る" - ], - "onyomi": [ - "ネン", - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "捻挫", - "reading": "ネンザ", - "meaning": "sprain, twist, wrench" - }, - { - "example": "捻軍", - "reading": "ネングン", - "meaning": "Nian Rebellion (China, 1851-1868)" - }, - { - "example": "揉捻", - "reading": "ジュウネン", - "meaning": "rolling freshly-picked tea-leaves, crushing tea" - } - ], - "kunyomiExamples": [ - { - "example": "捩る", - "reading": "ねじる", - "meaning": "to screw, to twist, to distort, to parody, to make a pun, to torture, to wrest" - }, - { - "example": "捩る", - "reading": "ねじる", - "meaning": "to screw, to twist, to distort, to parody, to make a pun, to torture, to wrest" - }, - { - "example": "捻くる", - "reading": "ひねくる", - "meaning": "to twirl, to spin, to fiddle with, to change (e.g. wording)" - }, - { - "example": "捻る", - "reading": "ひねる", - "meaning": "to twist, to wrench, to turn (a switch on or off, etc.), to wring (a neck), to puzzle over, to defeat easily" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "个", - "心", - "扎", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25467_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0637b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/637b.gif", - "uri": "http://jisho.org/search/%E6%8D%BB%23kanji" - }, - { - "query": "粘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1410", - "strokeCount": 11, - "meaning": "sticky, glutinous, greasy, persevere", - "kunyomi": [ - "ねば.る" - ], - "onyomi": [ - "ネン" - ], - "onyomiExamples": [ - { - "example": "粘膜", - "reading": "ネンマク", - "meaning": "mucous membrane" - }, - { - "example": "粘土", - "reading": "ネンド", - "meaning": "clay" - } - ], - "kunyomiExamples": [ - { - "example": "粘る", - "reading": "ねばる", - "meaning": "to be sticky, to be adhesive, to persevere, to persist, to stick to, to hold out, to linger" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "卜", - "口", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31896_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c98.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c98.gif", - "uri": "http://jisho.org/search/%E7%B2%98%23kanji" - }, - { - "query": "悩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1084", - "strokeCount": 10, - "meaning": "trouble, worry, in pain, distress, illness", - "kunyomi": [ - "なや.む", - "なや.ます", - "なや.ましい", - "なやみ" - ], - "onyomi": [ - "ノウ" - ], - "onyomiExamples": [ - { - "example": "悩殺", - "reading": "ノウサツ", - "meaning": "fascinate, bewitch, enchant" - }, - { - "example": "悩乱", - "reading": "ノウラン", - "meaning": "worry, anguish" - }, - { - "example": "懊悩", - "reading": "オウノウ", - "meaning": "anguish, trouble, agony" - }, - { - "example": "煩悶懊悩", - "reading": "ハンモンオウノウ", - "meaning": "anguish, agony" - } - ], - "kunyomiExamples": [ - { - "example": "悩む", - "reading": "なやむ", - "meaning": "to be worried, to be troubled" - }, - { - "example": "悩ます", - "reading": "なやます", - "meaning": "to afflict, to torment, to harass, to molest" - }, - { - "example": "悩ましい", - "reading": "なやましい", - "meaning": "seductive, carnal, enchanting, troubling, difficult, thorny, hard, anxious, uneasy" - }, - { - "example": "悩み", - "reading": "なやみ", - "meaning": "trouble, troubles, worry, distress, sorrows, anguish, agony, problem" - }, - { - "example": "悩み事", - "reading": "なやみごと", - "meaning": "matter causing distress, something causing worry" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "凵", - "尚", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24745_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060a9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60a9.gif", - "uri": "http://jisho.org/search/%E6%82%A9%23kanji" - }, - { - "query": "濃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1200", - "strokeCount": 16, - "meaning": "concentrated, thick, dark, undiluted", - "kunyomi": [ - "こ.い" - ], - "onyomi": [ - "ノウ" - ], - "onyomiExamples": [ - { - "example": "濃", - "reading": "ノウ", - "meaning": "dark (color), concentrated, thick" - }, - { - "example": "濃厚", - "reading": "ノウコウ", - "meaning": "rich (in flavor, color, smell, etc.), thick, dense, strong, very likely, highly possible, passionate, hot" - } - ], - "kunyomiExamples": [ - { - "example": "濃い", - "reading": "こい", - "meaning": "deep (colour), dark, strong (flavour, smell, etc.), thick (consistency), dense, strong (possibility, etc.), thick (i.e. \"as thick as thieves\"), close, deep (love, etc.)" - }, - { - "example": "濃い口", - "reading": "こいくち", - "meaning": "rich (taste), dark-coloured, thick, heavy, dark soy sauce" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "厂", - "日", - "汁", - "衣", - "辰", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28611_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06fc3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6fc3.gif", - "uri": "http://jisho.org/search/%E6%BF%83%23kanji" - }, - { - "query": "把", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1569", - "strokeCount": 7, - "meaning": "grasp, faggot, bunch, counter for bundles", - "kunyomi": [], - "onyomi": [ - "ハ", - "ワ" - ], - "onyomiExamples": [ - { - "example": "把握", - "reading": "ハアク", - "meaning": "grasp, catch, understanding" - }, - { - "example": "取っ手", - "reading": "トッテ", - "meaning": "handle, grip, knob" - }, - { - "example": "銃把", - "reading": "ジュウハ", - "meaning": "grip of a gun" - }, - { - "example": "握把", - "reading": "アクハ", - "meaning": "holding, gripping, grip (sword, gun, etc.), hilt, handle" - }, - { - "example": "把", - "reading": "ワ", - "meaning": "counter for bundles" - }, - { - "example": "一把", - "reading": "イチワ", - "meaning": "bundle, bunch" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "巴", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25226_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0628a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/628a.gif", - "uri": "http://jisho.org/search/%E6%8A%8A%23kanji" - }, - { - "query": "覇", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1173", - "strokeCount": 19, - "meaning": "hegemony, supremacy, leadership, champion", - "kunyomi": [ - "はたがしら" - ], - "onyomi": [ - "ハ", - "ハク" - ], - "onyomiExamples": [ - { - "example": "覇", - "reading": "ハ", - "meaning": "supremacy (over a nation), hegemony, domination, leadership, championship, victory" - }, - { - "example": "覇権", - "reading": "ハケン", - "meaning": "hegemony" - }, - { - "example": "制覇", - "reading": "セイハ", - "meaning": "conquest, domination, mastery" - }, - { - "example": "初制覇", - "reading": "ハツセイハ", - "meaning": "first victory" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "西", - "forms": [ - "襾", - "覀" - ], - "meaning": "west" - }, - "parts": [ - "月", - "西", - "革" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35207_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08987.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8987.gif", - "uri": "http://jisho.org/search/%E8%A6%87%23kanji" - }, - { - "query": "婆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2435", - "strokeCount": 11, - "meaning": "old woman, grandma, wet nurse", - "kunyomi": [ - "ばば", - "ばあ" - ], - "onyomi": [ - "バ" - ], - "onyomiExamples": [ - { - "example": "婆", - "reading": "ババ", - "meaning": "old woman, joker (card), hag, bitch" - }, - { - "example": "婆さん", - "reading": "バアサン", - "meaning": "grandmother, old woman, female senior citizen" - }, - { - "example": "提婆", - "reading": "ダイバ", - "meaning": "deva (being with god-like characteristics)" - }, - { - "example": "塔婆", - "reading": "トウバ", - "meaning": "stupa, pagoda, wooden grave tablet" - } - ], - "kunyomiExamples": [ - { - "example": "婆", - "reading": "ばば", - "meaning": "old woman, joker (card), hag, bitch" - }, - { - "example": "婆婆鰈", - "reading": "ばばがれい", - "meaning": "slime flounder (Microstomus achne)" - }, - { - "example": "祖父祖母", - "reading": "じじばば", - "meaning": "old people, grandparents" - }, - { - "example": "遣り手婆", - "reading": "やりてばば", - "meaning": "brothel madam" - }, - { - "example": "婆さん", - "reading": "ばあさん", - "meaning": "grandmother, old woman, female senior citizen" - }, - { - "example": "婆ちゃん", - "reading": "ばあちゃん", - "meaning": "granny, grandma, gran, old lady, old woman" - }, - { - "example": "糞婆", - "reading": "くそばばあ", - "meaning": "old hag, old woman, old bat" - }, - { - "example": "鬼婆", - "reading": "おにばば", - "meaning": "hag, witch, bitch, penurious or spiteful old woman, termagant, virago" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "又", - "女", - "汁", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23110_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a46.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a46.gif", - "uri": "http://jisho.org/search/%E5%A9%86%23kanji" - }, - { - "query": "罵", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2467", - "strokeCount": 15, - "meaning": "abuse, insult", - "kunyomi": [ - "ののし.る" - ], - "onyomi": [ - "バ" - ], - "onyomiExamples": [ - { - "example": "罵言", - "reading": "バゲン", - "meaning": "(verbal) abuse, abusive language" - }, - { - "example": "罵声", - "reading": "バセイ", - "meaning": "shout of abuse, jeers, boos" - }, - { - "example": "冷罵", - "reading": "レイバ", - "meaning": "sneer, scoffing, abuse" - }, - { - "example": "痛罵", - "reading": "ツウバ", - "meaning": "abuse, invective, denunciation, sharp criticism" - } - ], - "kunyomiExamples": [ - { - "example": "罵る", - "reading": "ののしる", - "meaning": "to abuse (verbally), to curse at, to shout abuse at, to speak ill of" - } - ], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "杰", - "買", - "馬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32629_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f75.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f75.gif", - "uri": "http://jisho.org/search/%E7%BD%B5%23kanji" - }, - { - "query": "杯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1235", - "strokeCount": 8, - "meaning": "counter for cupfuls, wine glass, glass, toast", - "kunyomi": [ - "さかずき" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "杯", - "reading": "ハイ", - "meaning": "sake cup, cup for alcoholic beverages, counter for cupfuls, bowlfuls, spoonfuls, etc., counter for boats, counter for octopuses and squid" - }, - { - "example": "杯洗", - "reading": "ハイセン", - "meaning": "small vessel or bowl in which sake cups are rinsed" - }, - { - "example": "賜杯", - "reading": "シハイ", - "meaning": "Emperor's cup, trophy given by the Emperor" - }, - { - "example": "苦杯", - "reading": "クハイ", - "meaning": "bitter experience (ordeal)" - } - ], - "kunyomiExamples": [ - { - "example": "杯", - "reading": "さかずき", - "meaning": "sake cup, cup for alcoholic beverages" - }, - { - "example": "杯洗い", - "reading": "さかずきあらい", - "meaning": "small vessel or bowl in which sake cups are rinsed" - }, - { - "example": "べく杯", - "reading": "べくはい", - "meaning": "sake cup shaped so it cannot be put down until emptied" - }, - { - "example": "水杯", - "reading": "みずさかずき", - "meaning": "farewell cups of water" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "一", - "木", - "礼", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26479_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0676f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/676f.gif", - "uri": "http://jisho.org/search/%E6%9D%AF%23kanji" - }, - { - "query": "排", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1047", - "strokeCount": 11, - "meaning": "repudiate, exclude, expel, reject, line up, arrange", - "kunyomi": [], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "排", - "reading": "ハイ", - "meaning": "anti-" - }, - { - "example": "排気", - "reading": "ハイキ", - "meaning": "exhaust, emission (of gas from an engine), expulsion (of air), ventilation" - }, - { - "example": "暴排", - "reading": "ボウハイ", - "meaning": "combating organized crime, elimination of criminal gangs" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25490_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06392.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6392.gif", - "uri": "http://jisho.org/search/%E6%8E%92%23kanji" - }, - { - "query": "廃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "698", - "strokeCount": 12, - "meaning": "abolish, obsolete, cessation, discarding, abandon", - "kunyomi": [ - "すた.れる", - "すた.る" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "廃棄", - "reading": "ハイキ", - "meaning": "disposal, abandonment, scrapping, discarding, abolition, annulment, cancellation, abrogation, repeal" - }, - { - "example": "廃案", - "reading": "ハイアン", - "meaning": "rejected bill (project)" - }, - { - "example": "退廃", - "reading": "タイハイ", - "meaning": "degeneration, decadence, deterioration, laxness, corruption" - }, - { - "example": "改廃", - "reading": "カイハイ", - "meaning": "reform and (or) abolition, alteration or repeal, revision, reorganization, reorganisation" - } - ], - "kunyomiExamples": [ - { - "example": "廃れる", - "reading": "すたれる", - "meaning": "to go out of use, to become obsolete, to die out, to go out of fashion" - }, - { - "example": "廃る", - "reading": "すたる", - "meaning": "to go out of use, to become obsolete, to die out, to go out of fashion, to become lost (e.g. of dignity), to be sullied" - } - ], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "一", - "儿", - "广", - "癶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24259_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ec3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ec3.gif", - "uri": "http://jisho.org/search/%E5%BB%83%23kanji" - }, - { - "query": "輩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1365", - "strokeCount": 15, - "meaning": "comrade, fellow, people, companions", - "kunyomi": [ - "-ばら", - "やから", - "やかい", - "ともがら" - ], - "onyomi": [ - "ハイ" - ], - "onyomiExamples": [ - { - "example": "輩", - "reading": "ハイ", - "meaning": "group, gang, bunch" - }, - { - "example": "輩出", - "reading": "ハイシュツ", - "meaning": "producing (people) in great numbers, appearing one after the other" - }, - { - "example": "軽輩", - "reading": "ケイハイ", - "meaning": "underling" - }, - { - "example": "儕輩", - "reading": "サイハイ", - "meaning": "colleagues, fellows" - } - ], - "kunyomiExamples": [ - { - "example": "輩", - "reading": "やから", - "meaning": "party (of people), set (of people), clan, family, fellow" - }, - { - "example": "不逞の輩", - "reading": "ふていのやから", - "meaning": "lawless people, gang, malcontents, recalcitrants" - }, - { - "example": "輩", - "reading": "ともがら", - "meaning": "comrade, fellow" - } - ], - "radical": { - "symbol": "車", - "meaning": "cart, car" - }, - "parts": [ - "車", - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36649_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08f29.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8f29.gif", - "uri": "http://jisho.org/search/%E8%BC%A9%23kanji" - }, - { - "query": "培", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1431", - "strokeCount": 11, - "meaning": "cultivate, foster", - "kunyomi": [ - "つちか.う" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "培養", - "reading": "バイヨウ", - "meaning": "cultivation, nurture, culture" - }, - { - "example": "培地", - "reading": "バイチ", - "meaning": "culture medium, growth medium" - }, - { - "example": "育成栽培", - "reading": "イクセイサイバイ", - "meaning": "vegetable and fruit growing" - }, - { - "example": "促成栽培", - "reading": "ソクセイサイバイ", - "meaning": "forcing (plants, vegetables, etc.), artificially hastening the growth of plants (by controlling heat, light, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "培う", - "reading": "つちかう", - "meaning": "to cultivate, to foster" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "口", - "土", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22521_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057f9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57f9.gif", - "uri": "http://jisho.org/search/%E5%9F%B9%23kanji" - }, - { - "query": "陪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1917", - "strokeCount": 11, - "meaning": "obeisance, follow, accompany, attend on", - "kunyomi": [], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "陪審", - "reading": "バイシン", - "meaning": "jury" - }, - { - "example": "陪観", - "reading": "バイカン", - "meaning": "viewing something in the company of one's superior" - }, - { - "example": "反閇", - "reading": "ヘンバイ", - "meaning": "ceremony performed by a sorcerer to protect a noble setting out on a trip, dance steps inspired by this ceremony" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "口", - "立", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38506_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0966a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/966a.gif", - "uri": "http://jisho.org/search/%E9%99%AA%23kanji" - }, - { - "query": "媒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1900", - "strokeCount": 12, - "meaning": "mediator, go-between", - "kunyomi": [ - "なこうど" - ], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "媒体", - "reading": "バイタイ", - "meaning": "medium, media" - }, - { - "example": "媒酌", - "reading": "バイシャク", - "meaning": "matchmaking, acting as a go-between" - }, - { - "example": "溶媒", - "reading": "ヨウバイ", - "meaning": "solvent" - }, - { - "example": "冷媒", - "reading": "レイバイ", - "meaning": "refrigerant, coolant" - } - ], - "kunyomiExamples": [ - { - "example": "仲人", - "reading": "なこうど", - "meaning": "matchmaker, go-between, intermediary, middleman, mediator, intercessor" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "木", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23186_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a92.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a92.gif", - "uri": "http://jisho.org/search/%E5%AA%92%23kanji" - }, - { - "query": "賠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1243", - "strokeCount": 15, - "meaning": "compensation, indemnify", - "kunyomi": [], - "onyomi": [ - "バイ" - ], - "onyomiExamples": [ - { - "example": "賠償", - "reading": "バイショウ", - "meaning": "compensation, reparations, indemnity, damages" - }, - { - "example": "賠償金", - "reading": "バイショウキン", - "meaning": "indemnities, reparations" - }, - { - "example": "損賠", - "reading": "ソンバイ", - "meaning": "restitution, compensation for damages" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "口", - "目", - "立", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36064_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ce0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ce0.gif", - "uri": "http://jisho.org/search/%E8%B3%A0%23kanji" - }, - { - "query": "伯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1741", - "strokeCount": 7, - "meaning": "chief, count, earl, uncle, Brazil", - "kunyomi": [], - "onyomi": [ - "ハク" - ], - "onyomiExamples": [ - { - "example": "伯", - "reading": "ハク", - "meaning": "count, earl, chief official of the Department of Worship, eldest brother, Brazil, Brazilian" - }, - { - "example": "伯爵", - "reading": "ハクシャク", - "meaning": "count, earl" - }, - { - "example": "画伯", - "reading": "ガハク", - "meaning": "master painter, artist" - }, - { - "example": "医伯", - "reading": "イハク", - "meaning": "doctor" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20271_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f2f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f2f.gif", - "uri": "http://jisho.org/search/%E4%BC%AF%23kanji" - }, - { - "query": "拍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1373", - "strokeCount": 8, - "meaning": "clap, beat (music)", - "kunyomi": [], - "onyomi": [ - "ハク", - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "拍", - "reading": "ハク", - "meaning": "beat, mora" - }, - { - "example": "拍車", - "reading": "ハクシャ", - "meaning": "(riding) spur" - }, - { - "example": "強拍", - "reading": "キョウハク", - "meaning": "accented beat" - }, - { - "example": "弱拍", - "reading": "ジャクハク", - "meaning": "unaccented beat" - }, - { - "example": "拍子", - "reading": "ヒョウシ", - "meaning": "(musical) time, tempo, beat, rhythm, the moment, the instance, chance" - }, - { - "example": "拍子抜け", - "reading": "ヒョウシヌケ", - "meaning": "anticlimax, let-down, disappointment, loss of interest" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25293_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62cd.gif", - "uri": "http://jisho.org/search/%E6%8B%8D%23kanji" - }, - { - "query": "泊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1233", - "strokeCount": 8, - "meaning": "overnight stay, put up at, ride at anchor", - "kunyomi": [ - "と.まる", - "と.める" - ], - "onyomi": [ - "ハク" - ], - "onyomiExamples": [ - { - "example": "泊", - "reading": "ハク", - "meaning": "counter for nights of a stay, overnight stay, lodging" - }, - { - "example": "泊地", - "reading": "ハクチ", - "meaning": "anchorage, berth" - }, - { - "example": "漂泊", - "reading": "ヒョウハク", - "meaning": "roaming, drifting about, wandering" - }, - { - "example": "無断外泊", - "reading": "ムダンガイハク", - "meaning": "staying out overnight without giving notice, spending night(s) away from home without permission (leave)" - } - ], - "kunyomiExamples": [ - { - "example": "泊まる", - "reading": "とまる", - "meaning": "to stay at (e.g. hotel), to be docked, to be berthed, to be moored" - }, - { - "example": "泊める", - "reading": "とめる", - "meaning": "to give shelter to, to lodge, to put up, to accommodate" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "白" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27850_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cca.gif", - "uri": "http://jisho.org/search/%E6%B3%8A%23kanji" - }, - { - "query": "迫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "773", - "strokeCount": 8, - "meaning": "urge, force, imminent, spur on", - "kunyomi": [ - "せま.る" - ], - "onyomi": [ - "ハク" - ], - "onyomiExamples": [ - { - "example": "迫撃", - "reading": "ハクゲキ", - "meaning": "close attack" - }, - { - "example": "迫害", - "reading": "ハクガイ", - "meaning": "persecution, oppression" - }, - { - "example": "肉薄", - "reading": "ニクハク", - "meaning": "closing in on (the enemy, first place, etc.), coming close to, pressing hard, pressing hard (e.g. with a question), taking to task, grilling" - }, - { - "example": "威迫", - "reading": "イハク", - "meaning": "menace, threat, intimidation" - } - ], - "kunyomiExamples": [ - { - "example": "迫る", - "reading": "せまる", - "meaning": "to approach, to draw near, to be imminent, to press (someone for something), to urge, to compel" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "白", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36843_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08feb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8feb.gif", - "uri": "http://jisho.org/search/%E8%BF%AB%23kanji" - }, - { - "query": "剝", - "found": true, - "strokeCount": 10, - "meaning": "", - "kunyomi": [ - "はぐ", - "むく", - "はげる" - ], - "onyomi": [ - "ハク" - ], - "onyomiExamples": [ - { - "example": "剥奪", - "reading": "ハクダツ", - "meaning": "stripping (of rights, office, etc.), deprivation, divestiture, forfeit, revocation" - }, - { - "example": "剥脱", - "reading": "ハクダツ", - "meaning": "coming off, peeling off" - }, - { - "example": "落剥", - "reading": "ラクハク", - "meaning": "coming off, peeling off" - } - ], - "kunyomiExamples": [ - { - "example": "剥ぐ", - "reading": "はぐ", - "meaning": "to tear off, to peel off, to rip off, to strip off, to skin, to flay, to bark, to strip of (clothes, rank, etc.), to deprive of, to divest of" - }, - { - "example": "剥く", - "reading": "むく", - "meaning": "to peel, to skin, to pare, to hull, to bare (e.g. fangs), to open wide (e.g. eyes)" - }, - { - "example": "剥れる", - "reading": "むくれる", - "meaning": "to become angry or sullen, to take offense, to be miffed, to come unstuck from, to peel off, to come off, to be taken off" - }, - { - "example": "剥げる", - "reading": "はげる", - "meaning": "to come off, to be worn off, to fade, to discolor, to discolour" - } - ], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21085_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0525d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/525d.gif", - "uri": "http://jisho.org/search/%E5%89%9D%23kanji" - }, - { - "query": "舶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1753", - "strokeCount": 11, - "meaning": "liner, ship", - "kunyomi": [], - "onyomi": [ - "ハク" - ], - "onyomiExamples": [ - { - "example": "舶来", - "reading": "ハクライ", - "meaning": "imported, foreign-made" - }, - { - "example": "舶載", - "reading": "ハクサイ", - "meaning": "ocean transportation, importation" - }, - { - "example": "巨舶", - "reading": "キョハク", - "meaning": "ocean liner" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "白", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33334_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08236.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8236.gif", - "uri": "http://jisho.org/search/%E8%88%B6%23kanji" - }, - { - "query": "薄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1009", - "strokeCount": 16, - "meaning": "dilute, thin, weak (tea), pampas grass", - "kunyomi": [ - "うす.い", - "うす-", - "-うす", - "うす.める", - "うす.まる", - "うす.らぐ", - "うす.ら-", - "うす.れる", - "すすき" - ], - "onyomi": [ - "ハク" - ], - "onyomiExamples": [ - { - "example": "薄弱", - "reading": "ハクジャク", - "meaning": "feebleness, weakness, weak" - }, - { - "example": "薄謝", - "reading": "ハクシャ", - "meaning": "small consideration (remuneration, token of gratitude)" - }, - { - "example": "肉薄", - "reading": "ニクハク", - "meaning": "closing in on (the enemy, first place, etc.), coming close to, pressing hard, pressing hard (e.g. with a question), taking to task, grilling" - }, - { - "example": "精薄", - "reading": "セイハク", - "meaning": "mental retardation (pejorative), mentally retarded" - } - ], - "kunyomiExamples": [ - { - "example": "薄い", - "reading": "うすい", - "meaning": "thin, pale, light, faint, watery, thin, dilute, weak (taste, etc.), little (affection, etc.) not much (of a presence), slim (probability, etc.), small, sparse, patchy, scattered" - }, - { - "example": "薄板", - "reading": "うすいた", - "meaning": "laminate, veneer" - }, - { - "example": "薄める", - "reading": "うすめる", - "meaning": "to dilute, to water down" - }, - { - "example": "薄まる", - "reading": "うすまる", - "meaning": "to become weak" - }, - { - "example": "薄らぐ", - "reading": "うすらぐ", - "meaning": "to become thin, to fade, to grow pale" - }, - { - "example": "薄れる", - "reading": "うすれる", - "meaning": "to fade, to become dim" - }, - { - "example": "薄", - "reading": "すすき", - "meaning": "Japanese pampas grass (Miscanthus sinensis), maiden silvergrass, zebra grass" - }, - { - "example": "花薄", - "reading": "はなすすき", - "meaning": "Japanese pampas grass in ear" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "丶", - "十", - "寸", - "汁", - "田", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34180_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08584.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8584.gif", - "uri": "http://jisho.org/search/%E8%96%84%23kanji" - }, - { - "query": "漠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1611", - "strokeCount": 13, - "meaning": "vague, obscure, desert, wide", - "kunyomi": [], - "onyomi": [ - "バク" - ], - "onyomiExamples": [ - { - "example": "漠", - "reading": "バク", - "meaning": "vague, obscure, vast, boundless" - }, - { - "example": "漠然", - "reading": "バクゼン", - "meaning": "vague, obscure, indistinct, hazy, ambiguous" - }, - { - "example": "冥漠", - "reading": "メイバク", - "meaning": "dim and distant" - }, - { - "example": "空漠", - "reading": "クウバク", - "meaning": "vast, boundless, vague" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "大", - "日", - "汁", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28448_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f20.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f20.gif", - "uri": "http://jisho.org/search/%E6%BC%A0%23kanji" - }, - { - "query": "縛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1764", - "strokeCount": 16, - "meaning": "truss, arrest, bind, tie, restrain", - "kunyomi": [ - "しば.る" - ], - "onyomi": [ - "バク" - ], - "onyomiExamples": [ - { - "example": "縛", - "reading": "バク", - "meaning": "tying up, restraint, restriction, arrest" - }, - { - "example": "縛する", - "reading": "バクスル", - "meaning": "to bind, to restrain" - }, - { - "example": "呪縛", - "reading": "ジュバク", - "meaning": "spell (that restricts one's movements), binding spell" - }, - { - "example": "繋縛", - "reading": "ケイバク", - "meaning": "constraint, restraint" - } - ], - "kunyomiExamples": [ - { - "example": "縛る", - "reading": "しばる", - "meaning": "to tie, to bind, to fasten, to restrict (freedom), to tie down (with rules, regulations, etc.), to fetter" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "丶", - "十", - "寸", - "小", - "幺", - "田", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32283_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e1b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e1b.gif", - "uri": "http://jisho.org/search/%E7%B8%9B%23kanji" - }, - { - "query": "爆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "735", - "strokeCount": 19, - "meaning": "bomb, burst open, pop, split", - "kunyomi": [ - "は.ぜる" - ], - "onyomi": [ - "バク" - ], - "onyomiExamples": [ - { - "example": "爆", - "reading": "バク", - "meaning": "burst of laughter, roar of laughter" - }, - { - "example": "爆音", - "reading": "バクオン", - "meaning": "(sound of an) explosion or detonation, roar (of a machine)" - }, - { - "example": "起爆", - "reading": "キバク", - "meaning": "ignition, detonation, triggering, explosion" - }, - { - "example": "水爆", - "reading": "スイバク", - "meaning": "hydrogen bomb" - } - ], - "kunyomiExamples": [ - { - "example": "爆ぜる", - "reading": "はぜる", - "meaning": "to burst open, to pop, to split" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "ハ", - "一", - "井", - "日", - "水", - "火", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29190_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07206.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7206.gif", - "uri": "http://jisho.org/search/%E7%88%86%23kanji" - }, - { - "query": "箸", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2156", - "strokeCount": 15, - "meaning": "chopsticks", - "kunyomi": [ - "はし" - ], - "onyomi": [ - "チョ", - "チャク" - ], - "onyomiExamples": [ - { - "example": "匕箸", - "reading": "ヒチョ", - "meaning": "spoon and chopsticks" - } - ], - "kunyomiExamples": [ - { - "example": "箸", - "reading": "はし", - "meaning": "chopsticks" - }, - { - "example": "箸洗い", - "reading": "はしあらい", - "meaning": "simple and light soup taken between courses in a kaiseki meal, or during a formal tea ceremony" - }, - { - "example": "マイ箸", - "reading": "マイばし", - "meaning": "washable chopsticks carried in a case (to be used in place of disposable chopsticks)" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "日", - "竹", - "老" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31672_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07bb8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7bb8.gif", - "uri": "http://jisho.org/search/%E7%AE%B8%23kanji" - }, - { - "query": "肌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1559", - "strokeCount": 6, - "meaning": "texture, skin, body, grain", - "kunyomi": [ - "はだ" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "肌骨", - "reading": "キコツ", - "meaning": "skin and bones" - }, - { - "example": "肌膚", - "reading": "キフ", - "meaning": "skin" - }, - { - "example": "雪肌", - "reading": "ユキハダ", - "meaning": "snow's surface, lily-white skin, fair skin" - }, - { - "example": "美肌", - "reading": "ビハダ", - "meaning": "beautiful skin" - } - ], - "kunyomiExamples": [ - { - "example": "肌", - "reading": "はだ", - "meaning": "skin, body (in the context of intimate bodily contact), surface, grain (e.g. of wood), texture, disposition, temperament, character, type" - }, - { - "example": "肌色", - "reading": "はだいろ", - "meaning": "(one's) skin colour, skin color, skin tone, flesh colour (of a Japanese person), flesh color, pale orange" - }, - { - "example": "素肌", - "reading": "すはだ", - "meaning": "bare (naked) body, complexion (e.g. face)" - }, - { - "example": "地肌", - "reading": "じはだ", - "meaning": "texture, grain, one's skin (lacking makeup, etc.), natural skin, bare skin, scalp, surface of the earth, bare ground, surface of a sword blade" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "几", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32908_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0808c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/808c.gif", - "uri": "http://jisho.org/search/%E8%82%8C%23kanji" - }, - { - "query": "鉢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1890", - "strokeCount": 13, - "meaning": "bowl, rice tub, pot, crown", - "kunyomi": [], - "onyomi": [ - "ハチ", - "ハツ" - ], - "onyomiExamples": [ - { - "example": "鉢", - "reading": "ハチ", - "meaning": "bowl, pot, basin, flowerpot, crown, brainpan" - }, - { - "example": "鉢植え", - "reading": "ハチウエ", - "meaning": "potted plant" - }, - { - "example": "乳鉢", - "reading": "ニュウバチ", - "meaning": "mortar" - }, - { - "example": "衣鉢", - "reading": "イハツ", - "meaning": "mysteries of one's master's art, robes and a bowl (monk's key possessions auctioned off at his funeral), transmission of the dharma from master to disciple (in Zen)" - }, - { - "example": "托鉢", - "reading": "タクハツ", - "meaning": "religious mendicancy, asking for alms, monk's begging, going with one's bowl to the meditation hall at mealtime (in a Zen temple)" - }, - { - "example": "衣鉢", - "reading": "イハツ", - "meaning": "mysteries of one's master's art, robes and a bowl (monk's key possessions auctioned off at his funeral), transmission of the dharma from master to disciple (in Zen)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "一", - "木", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37474_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09262.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9262.gif", - "uri": "http://jisho.org/search/%E9%89%A2%23kanji" - }, - { - "query": "髪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1474", - "strokeCount": 14, - "meaning": "hair of the head", - "kunyomi": [ - "かみ" - ], - "onyomi": [ - "ハツ" - ], - "onyomiExamples": [ - { - "example": "髪", - "reading": "ハツ", - "meaning": "hair (on the head), tresses, locks" - }, - { - "example": "理髪", - "reading": "リハツ", - "meaning": "haircut" - }, - { - "example": "毛髪", - "reading": "モウハツ", - "meaning": "hair" - } - ], - "kunyomiExamples": [ - { - "example": "髪", - "reading": "かみ", - "meaning": "hair (on the head)" - }, - { - "example": "髪形", - "reading": "かみがた", - "meaning": "hair style, coiffure, hairdo" - }, - { - "example": "黒髪", - "reading": "くろかみ", - "meaning": "black hair" - }, - { - "example": "波打つ髪", - "reading": "なみうつかみ", - "meaning": "wavy hair" - } - ], - "radical": { - "symbol": "髟", - "meaning": "long hair" - }, - "parts": [ - "一", - "夂", - "彡", - "長", - "髟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39658_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09aea.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9aea.gif", - "uri": "http://jisho.org/search/%E9%AB%AA%23kanji" - }, - { - "query": "伐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1816", - "strokeCount": 6, - "meaning": "fell, strike, attack, punish", - "kunyomi": [ - "き.る", - "そむ.く", - "う.つ" - ], - "onyomi": [ - "バツ", - "ハツ", - "カ", - "ボチ" - ], - "onyomiExamples": [ - { - "example": "伐木", - "reading": "バツボク", - "meaning": "felling, logging" - }, - { - "example": "間伐", - "reading": "カンバツ", - "meaning": "periodic thinning (e.g. forest)" - }, - { - "example": "乱伐", - "reading": "ランバツ", - "meaning": "reckless deforestation, overcutting of forests" - } - ], - "kunyomiExamples": [ - { - "example": "伐る", - "reading": "きる", - "meaning": "to cut down (e.g. trees)" - }, - { - "example": "伐つ", - "reading": "うつ", - "meaning": "to strike, to attack, to punish" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20240_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f10.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f10.gif", - "uri": "http://jisho.org/search/%E4%BC%90%23kanji" - }, - { - "query": "抜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "726", - "strokeCount": 7, - "meaning": "slip out, extract, pull out, pilfer, quote, remove, omit", - "kunyomi": [ - "ぬ.く", - "-ぬ.く", - "ぬ.き", - "ぬ.ける", - "ぬ.かす", - "ぬ.かる" - ], - "onyomi": [ - "バツ", - "ハツ", - "ハイ" - ], - "onyomiExamples": [ - { - "example": "抜群", - "reading": "バツグン", - "meaning": "outstanding, excellent, exceptional, surpassing, extraordinary, distinguished, preeminence, distinction, extraordinariness" - }, - { - "example": "抜山蓋世", - "reading": "バツザンガイセイ", - "meaning": "great strength and energy (of a mighty hero), Herculean strength and vitality" - }, - { - "example": "卓抜", - "reading": "タクバツ", - "meaning": "excellence, superiority, preeminence, prevalence" - }, - { - "example": "警抜", - "reading": "ケイバツ", - "meaning": "scintillating, extraordinarily excellent" - } - ], - "kunyomiExamples": [ - { - "example": "抜く", - "reading": "ぬく", - "meaning": "to pull out, to draw out, to extract, to unplug, to weed, to omit, to leave out, to go without, to skip, to do to the end, to carry through, to let out (e.g. air from a tyre), to drain (e.g. water from a bath), to empty, to pick out, to choose, to select, to extract, to pilfer, to steal, to remove, to get rid of, to take out, to pass, to overtake, to outstrip, to get ahead of, to pierce, to break through, to go through, to cut out (a shape), to create (a pattern) by dying the surrounding area, to seize, to capture, to reduce, to scoop (a story), to take out (an opponent's stones; in go), to masturbate (of a male), to ejaculate (while masturbating), to take (a photo), to record (video)" - }, - { - "example": "抜くべからざる", - "reading": "ぬくべからざる", - "meaning": "deep-rooted (suspicion, etc.)" - }, - { - "example": "抜き", - "reading": "ぬき", - "meaning": "leaving out, omitting, skipping, dispensing with, (beating) in succession, in a row" - }, - { - "example": "抜き打ち", - "reading": "ぬきうち", - "meaning": "drawing a katana and attacking in the same stroke, doing something suddenly, without warning" - }, - { - "example": "手抜き", - "reading": "てぬき", - "meaning": "omitting crucial steps, cutting corners, skimping, intentional negligence, tenuki, taking the initiative by ignoring the opponent's last move and playing somewhere else (in go)" - }, - { - "example": "栓抜き", - "reading": "せんぬき", - "meaning": "bottle opener, corkscrew" - }, - { - "example": "抜ける", - "reading": "ぬける", - "meaning": "to come out, to fall out, to be omitted, to be missing, to escape, to come loose, to fade, to discolour, to wear a hole (e.g. clothes), to leave (e.g. a meeting), to be clear, to be transparent (e.g. of the sky), to be stupid, to be absentminded, to be careless, to be inattentive, to exit (a program loop), to go through, to pass through, to give way, to collapse, to finish a round with more than 88 points (not counting points gained from scoring combinations)" - }, - { - "example": "抜かす", - "reading": "ぬかす", - "meaning": "to omit, to leave out, to skip, to overtake, to pass, to say, to speak" - }, - { - "example": "抜かる", - "reading": "ぬかる", - "meaning": "to make a mistake" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "亠", - "又", - "夂", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25244_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0629c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/629c.gif", - "uri": "http://jisho.org/search/%E6%8A%9C%23kanji" - }, - { - "query": "罰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1220", - "strokeCount": 14, - "meaning": "penalty, punishment", - "kunyomi": [ - "ばっ.する" - ], - "onyomi": [ - "バツ", - "バチ", - "ハツ" - ], - "onyomiExamples": [ - { - "example": "罰", - "reading": "バツ", - "meaning": "punishment, penalty" - }, - { - "example": "罰一", - "reading": "バツイチ", - "meaning": "being once divorced, one-time divorcee, one x mark (i.e. one name struck from the family register)" - }, - { - "example": "賞罰", - "reading": "ショウバツ", - "meaning": "reward and punishment" - }, - { - "example": "冥罰", - "reading": "メイバツ", - "meaning": "retribution, divine punishment" - }, - { - "example": "罰", - "reading": "バチ", - "meaning": "(divine) punishment, curse, retribution" - }, - { - "example": "罰当たり", - "reading": "バチアタリ", - "meaning": "damned, cursed, accursed" - }, - { - "example": "仏罰", - "reading": "ブツバチ", - "meaning": "punishment by Buddha, divine retribution" - } - ], - "kunyomiExamples": [ - { - "example": "罰する", - "reading": "ばっする", - "meaning": "to punish, to penalize, to penalise" - } - ], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "刈", - "言", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32624_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f70.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f70.gif", - "uri": "http://jisho.org/search/%E7%BD%B0%23kanji" - }, - { - "query": "閥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1072", - "strokeCount": 14, - "meaning": "clique, lineage, pedigree, faction, clan", - "kunyomi": [], - "onyomi": [ - "バツ" - ], - "onyomiExamples": [ - { - "example": "閥", - "reading": "バツ", - "meaning": "clique, clan, faction" - }, - { - "example": "閥族", - "reading": "バツゾク", - "meaning": "clan, clique" - }, - { - "example": "財閥", - "reading": "ザイバツ", - "meaning": "zaibatsu, financial conglomerate, industrial group" - }, - { - "example": "学閥", - "reading": "ガクバツ", - "meaning": "alma mater clique, old school tie" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "化", - "戈", - "門" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38309_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/095a5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/95a5.gif", - "uri": "http://jisho.org/search/%E9%96%A5%23kanji" - }, - { - "query": "氾", - "found": true, - "taughtIn": "junior high", - "strokeCount": 5, - "meaning": "spread out, wide", - "kunyomi": [ - "ひろ.がる" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "氾濫", - "reading": "ハンラン", - "meaning": "overflowing, flood, inundation, deluge, oversupply, plethora" - }, - { - "example": "氾濫原", - "reading": "ハンランゲン", - "meaning": "flood plain" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "乙", - "卩", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27710_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c3e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c3e.gif", - "uri": "http://jisho.org/search/%E6%B0%BE%23kanji" - }, - { - "query": "帆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1923", - "strokeCount": 6, - "meaning": "sail", - "kunyomi": [ - "ほ" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "帆船", - "reading": "ハンセン", - "meaning": "sailing ship, sailing boat, sailing vessel" - }, - { - "example": "帆走", - "reading": "ハンソウ", - "meaning": "sailing" - }, - { - "example": "横帆", - "reading": "オウハン", - "meaning": "square sail" - }, - { - "example": "縦帆", - "reading": "ジュウハン", - "meaning": "fore-and-aft sail" - } - ], - "kunyomiExamples": [ - { - "example": "帆", - "reading": "ほ", - "meaning": "sail" - }, - { - "example": "帆船", - "reading": "はんせん", - "meaning": "sailing ship, sailing boat, sailing vessel" - }, - { - "example": "三角帆", - "reading": "さんかくほ", - "meaning": "jib sail" - }, - { - "example": "縮帆", - "reading": "しゅくほ", - "meaning": "reefing a sail, bringing in a sail" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "丶", - "几", - "巾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24070_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e06.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e06.gif", - "uri": "http://jisho.org/search/%E5%B8%86%23kanji" - }, - { - "query": "汎", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2014", - "strokeCount": 6, - "meaning": "pan-", - "kunyomi": [ - "ただよ.う", - "ひろ.い" - ], - "onyomi": [ - "ハン", - "ブ", - "フウ", - "ホウ", - "ホン" - ], - "onyomiExamples": [ - { - "example": "汎", - "reading": "ハン", - "meaning": "pan-" - }, - { - "example": "汎用", - "reading": "ハンヨウ", - "meaning": "generic, general purpose, all-purpose" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "丶", - "几", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27726_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c4e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c4e.gif", - "uri": "http://jisho.org/search/%E6%B1%8E%23kanji" - }, - { - "query": "伴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "886", - "strokeCount": 7, - "meaning": "consort, accompany, bring with, companion", - "kunyomi": [ - "ともな.う" - ], - "onyomi": [ - "ハン", - "バン" - ], - "onyomiExamples": [ - { - "example": "伴侶", - "reading": "ハンリョ", - "meaning": "companion, partner, spouse" - }, - { - "example": "伴性遺伝", - "reading": "ハンセイイデン", - "meaning": "sex-linked inheritance" - }, - { - "example": "随伴", - "reading": "ズイハン", - "meaning": "attendance, accompanying, following, adjoint" - }, - { - "example": "朴伴", - "reading": "ボクハン", - "meaning": "Camellia japonica 'Bokuhan' (cultivar of common camellia)" - }, - { - "example": "伴奏", - "reading": "バンソウ", - "meaning": "(musical) accompaniment" - }, - { - "example": "伴走", - "reading": "バンソウ", - "meaning": "running alongside, pacesetting, accompanying" - }, - { - "example": "相伴", - "reading": "ショウバン", - "meaning": "partaking, participating, taking part in, sharing (something with someone)" - }, - { - "example": "お相伴", - "reading": "オショウバン", - "meaning": "sharing a meal" - } - ], - "kunyomiExamples": [ - { - "example": "伴う", - "reading": "ともなう", - "meaning": "to accompany, to go hand in hand with, to be consequent upon, to be accompanied by, to bring with, to take with, to be involved in" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "二", - "化", - "十", - "并", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20276_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f34.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f34.gif", - "uri": "http://jisho.org/search/%E4%BC%B4%23kanji" - }, - { - "query": "畔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2049", - "strokeCount": 10, - "meaning": "paddy ridge, levee", - "kunyomi": [ - "あぜ", - "くろ", - "ほとり" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "畦畔", - "reading": "ケイハン", - "meaning": "ridge between rice fields, causeway" - }, - { - "example": "橋畔", - "reading": "キョウハン", - "meaning": "approach to a bridge" - } - ], - "kunyomiExamples": [ - { - "example": "畦", - "reading": "あぜ", - "meaning": "ridge of earth between rice fields, ridge between grooves in threshold or lintel, footpath between rice fields, causeway" - }, - { - "example": "畔唐菜", - "reading": "あぜとうな", - "meaning": "Crepidiastrum keiskeanum (species of plant in the daisy family)" - }, - { - "example": "畦", - "reading": "あぜ", - "meaning": "ridge of earth between rice fields, ridge between grooves in threshold or lintel, footpath between rice fields, causeway" - }, - { - "example": "辺", - "reading": "ほとり", - "meaning": "side (esp. of a waterbody), edge, bank, shore" - } - ], - "radical": { - "symbol": "田", - "meaning": "field" - }, - "parts": [ - "二", - "十", - "并", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30036_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07554.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7554.gif", - "uri": "http://jisho.org/search/%E7%95%94%23kanji" - }, - { - "query": "般", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "649", - "strokeCount": 10, - "meaning": "carrier, carry, all, general, sort, kind", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "般若", - "reading": "ハンニャ", - "meaning": "prajna, wisdom required to attain enlightenment, noh mask of a grinning, horned demoness (represents a woman's rage and jealousy), family crest designed after the Hannya noh mask, dreadful face (esp. of a woman driven mad by jealousy), terrifying facial expression" - }, - { - "example": "汎化", - "reading": "ハンカ", - "meaning": "generalization (psychology, linguistics, etc.)" - }, - { - "example": "諸般", - "reading": "ショハン", - "meaning": "various, several" - }, - { - "example": "過般", - "reading": "カハン", - "meaning": "some time ago, recently" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "舟", - "meaning": "boat" - }, - "parts": [ - "几", - "又", - "殳", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33324_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0822c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/822c.gif", - "uri": "http://jisho.org/search/%E8%88%AC%23kanji" - }, - { - "query": "販", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "627", - "strokeCount": 11, - "meaning": "marketing, sell, trade", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "販売", - "reading": "ハンバイ", - "meaning": "sales, selling, marketing" - }, - { - "example": "販売員", - "reading": "ハンバイイン", - "meaning": "sales staff, salesperson" - }, - { - "example": "自販", - "reading": "ジハン", - "meaning": "automobile sales" - }, - { - "example": "再販", - "reading": "サイハン", - "meaning": "resale" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "厂", - "又", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36009_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ca9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ca9.gif", - "uri": "http://jisho.org/search/%E8%B2%A9%23kanji" - }, - { - "query": "斑", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2165", - "strokeCount": 12, - "meaning": "spot, blemish, speck, patches", - "kunyomi": [ - "ふ", - "まだら" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "斑", - "reading": "ブチ", - "meaning": "spots, speckles, mottles" - }, - { - "example": "斑鳩", - "reading": "イカル", - "meaning": "Japanese grosbeak (Eophona personata)" - }, - { - "example": "水斑", - "reading": "スイハン", - "meaning": "water spot (e.g. dried on a dish after washing)" - }, - { - "example": "黄斑", - "reading": "オウハン", - "meaning": "macula, macule, macula lutea, yellow spot" - } - ], - "kunyomiExamples": [ - { - "example": "斑", - "reading": "ぶち", - "meaning": "spots, speckles, mottles" - }, - { - "example": "斑入り", - "reading": "ふいり", - "meaning": "variegated, spotted" - }, - { - "example": "胡麻斑", - "reading": "ごまふ", - "meaning": "black speckles, small black spots (like sprinkled sesame)" - }, - { - "example": "白斑", - "reading": "はくはん", - "meaning": "white spot, bright spot, facula, vitiligo, leukoderma, leukoma" - }, - { - "example": "斑", - "reading": "まだら", - "meaning": "spots, speckles, mottles, speckled, spotted" - }, - { - "example": "斑海豚", - "reading": "まだらいるか", - "meaning": "pantropical spotted dolphin (Stenella attenuata)" - }, - { - "example": "浅葱斑", - "reading": "あさぎまだら", - "meaning": "chestnut tiger butterfly (Parantica sita)" - }, - { - "example": "鹿の子斑", - "reading": "かのこまだら", - "meaning": "pattern of white spots, dapples" - } - ], - "radical": { - "symbol": "文", - "meaning": "script, literature" - }, - "parts": [ - "文", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26001_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06591.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6591.gif", - "uri": "http://jisho.org/search/%E6%96%91%23kanji" - }, - { - "query": "搬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1664", - "strokeCount": 13, - "meaning": "conveyor, carry, transport", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "搬入", - "reading": "ハンニュウ", - "meaning": "carrying in (esp. heavy objects, artwork, furniture), bringing in, taking in" - }, - { - "example": "搬送", - "reading": "ハンソウ", - "meaning": "transportation, conveyance, delivery, hospitalization, transfer to hospital" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "几", - "又", - "扎", - "殳", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25644_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0642c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/642c.gif", - "uri": "http://jisho.org/search/%E6%90%AC%23kanji" - }, - { - "query": "煩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2081", - "strokeCount": 13, - "meaning": "anxiety, trouble, worry, pain, ill, annoy, nuisance, irksome", - "kunyomi": [ - "わずら.う", - "わずら.わす", - "うるさ.がる", - "うるさ.い" - ], - "onyomi": [ - "ハン", - "ボン" - ], - "onyomiExamples": [ - { - "example": "煩", - "reading": "ハン", - "meaning": "trouble" - }, - { - "example": "煩雑", - "reading": "ハンザツ", - "meaning": "complex, intricate, complicated, confused, troublesome, vexatious, cumbersome" - }, - { - "example": "煩悩", - "reading": "ボンノウ", - "meaning": "worldly desires, evil passions, appetites of the flesh, klesha (polluting thoughts such as greed, hatred and delusion, which result in suffering)" - }, - { - "example": "煩悩具足", - "reading": "ボンノウグソク", - "meaning": "possessing worldly desires and passions" - } - ], - "kunyomiExamples": [ - { - "example": "患う", - "reading": "わずらう", - "meaning": "to be ill, to suffer from, to worry about, to be concerned about, to have trouble doing ..., to be unable to ..., to fail to ..." - }, - { - "example": "煩わす", - "reading": "わずらわす", - "meaning": "to trouble, to bother, to annoy, to give trouble" - }, - { - "example": "煩がる", - "reading": "うるさがる", - "meaning": "to feel annoyed at" - }, - { - "example": "煩い", - "reading": "うるさい", - "meaning": "noisy, loud, annoying, troublesome, tiresome, persistent, importunate, fussy, finicky, picky, particular, nagging, fastidious, bossy, shut up!, be quiet!" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "ハ", - "火", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29033_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07169.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7169.gif", - "uri": "http://jisho.org/search/%E7%85%A9%23kanji" - }, - { - "query": "頒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2287", - "strokeCount": 13, - "meaning": "distribute, disseminate, partition, understand", - "kunyomi": [ - "わ.かつ", - "わ.ける" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "頒布", - "reading": "ハンプ", - "meaning": "distribution, circulation" - }, - { - "example": "頒価", - "reading": "ハンカ", - "meaning": "distribution price" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "刀", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38930_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09812.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9812.gif", - "uri": "http://jisho.org/search/%E9%A0%92%23kanji" - }, - { - "query": "範", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1088", - "strokeCount": 15, - "meaning": "pattern, example, model", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "範", - "reading": "ハン", - "meaning": "example, model" - }, - { - "example": "範囲", - "reading": "ハンイ", - "meaning": "extent, scope, sphere, range, span" - }, - { - "example": "師範", - "reading": "シハン", - "meaning": "instructor, (fencing) teacher, model" - }, - { - "example": "遺範", - "reading": "イハン", - "meaning": "good example set by those who came before us" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乙", - "乞", - "卩", - "竹", - "車" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31684_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07bc4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7bc4.gif", - "uri": "http://jisho.org/search/%E7%AF%84%23kanji" - }, - { - "query": "繁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1198", - "strokeCount": 16, - "meaning": "luxuriant, thick, overgrown, frequency, complexity, trouble", - "kunyomi": [ - "しげ.る", - "しげ.く" - ], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "繁華街", - "reading": "ハンカガイ", - "meaning": "business district, shopping district, bustling street, shopping centre, shopping center, downtown" - }, - { - "example": "繁栄", - "reading": "ハンエイ", - "meaning": "prosperity, thriving, flourishing" - } - ], - "kunyomiExamples": [ - { - "example": "茂る", - "reading": "しげる", - "meaning": "to grow thickly, to be in full leaf, to be rampant, to luxuriate, to be luxurious" - }, - { - "example": "繁く", - "reading": "しげく", - "meaning": "frequently" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "乞", - "小", - "幺", - "攵", - "毋", - "母", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32321_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e41.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e41.gif", - "uri": "http://jisho.org/search/%E7%B9%81%23kanji" - }, - { - "query": "藩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1896", - "strokeCount": 18, - "meaning": "clan, enclosure", - "kunyomi": [], - "onyomi": [ - "ハン" - ], - "onyomiExamples": [ - { - "example": "藩", - "reading": "ハン", - "meaning": "feudal domain (Edo and early Meiji periods, precursor to current prefectures), fiefdom, province, clan" - }, - { - "example": "藩主", - "reading": "ハンシュ", - "meaning": "feudal lord, daimyo" - }, - { - "example": "大藩", - "reading": "タイハン", - "meaning": "large feudal domain, large fiefdom, powerful clan" - }, - { - "example": "廃藩", - "reading": "ハイハン", - "meaning": "abolition of the han system" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "汁", - "田", - "米", - "艾", - "釆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34281_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085e9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85e9.gif", - "uri": "http://jisho.org/search/%E8%97%A9%23kanji" - }, - { - "query": "蛮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2339", - "strokeCount": 12, - "meaning": "barbarian", - "kunyomi": [ - "えびす" - ], - "onyomi": [ - "バン" - ], - "onyomiExamples": [ - { - "example": "蛮勇", - "reading": "バンユウ", - "meaning": "foolhardiness, recklessness, savage valour, savage valor, brute courage" - }, - { - "example": "蛮行", - "reading": "バンコウ", - "meaning": "act of barbarity, barbarism, brutality, savagery" - }, - { - "example": "南蛮", - "reading": "ナンバン", - "meaning": "southern barbarians (formerly used by the Chinese to refer to non-ethnic Chinese to the south), South-East Asia, Western Europe (esp. Spain and Portugal, their South-East Asian colonies, and their goods and people arriving in Japan via the colonies), exotic (esp. Western European or South-East Asian style), (in dance, puppetry, etc.) thrusting the right foot and right arm forward at the same time (or left foot and left arm), food prepared using chili peppers or Welsh onions" - }, - { - "example": "生蕃", - "reading": "セイバン", - "meaning": "unconquered savage, uncivilized aboriginal, aboriginal Taiwanese tribes outside Qing China's jurisdiction" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "亠", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34542_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/086ee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/86ee.gif", - "uri": "http://jisho.org/search/%E8%9B%AE%23kanji" - }, - { - "query": "盤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "881", - "strokeCount": 15, - "meaning": "tray, shallow bowl, platter, tub, board, phonograph record", - "kunyomi": [], - "onyomi": [ - "バン" - ], - "onyomiExamples": [ - { - "example": "盤", - "reading": "バン", - "meaning": "disk, disc, record, clock face, tray, shallow bowl, grid, board (e.g. in shogi)" - }, - { - "example": "盤谷", - "reading": "バンコク", - "meaning": "Bangkok (Thailand)" - }, - { - "example": "地盤", - "reading": "ジバン", - "meaning": "ground, crust (earth), bed (gravel, river, etc.), foundation (building, etc.), base, constituency, power base, support (electoral), footing, foothold" - }, - { - "example": "中盤", - "reading": "チュウバン", - "meaning": "middle stage, middle phase, middle game, midfield" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "几", - "又", - "殳", - "皿", - "舟" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30436_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076e4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76e4.gif", - "uri": "http://jisho.org/search/%E7%9B%A4%23kanji" - }, - { - "query": "妃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1752", - "strokeCount": 6, - "meaning": "queen, princess", - "kunyomi": [ - "きさき" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "妃", - "reading": "ヒ", - "meaning": "princess, consort" - }, - { - "example": "妃殿下", - "reading": "ヒデンカ", - "meaning": "princess, Her Royal Highness" - }, - { - "example": "皇太子妃", - "reading": "コウタイシヒ", - "meaning": "crown princess" - }, - { - "example": "王太妃", - "reading": "オウタイヒ", - "meaning": "crown princess" - } - ], - "kunyomiExamples": [ - { - "example": "后", - "reading": "きさき", - "meaning": "empress, queen" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "已" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22915_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05983.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5983.gif", - "uri": "http://jisho.org/search/%E5%A6%83%23kanji" - }, - { - "query": "彼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "648", - "strokeCount": 8, - "meaning": "he, that, the", - "kunyomi": [ - "かれ", - "かの", - "か.の" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "彼岸", - "reading": "ヒガン", - "meaning": "equinoctial week (when Buddhist services are held), Buddhist services during the equinoctial week, nirvana" - }, - { - "example": "彼此", - "reading": "アレコレ", - "meaning": "this and that, this or that, one thing or another, this way and that, around, about, round about, roughly, nearly, almost" - } - ], - "kunyomiExamples": [ - { - "example": "彼", - "reading": "かれ", - "meaning": "he, him, boyfriend" - }, - { - "example": "彼ら", - "reading": "かれら", - "meaning": "they, them" - }, - { - "example": "前彼", - "reading": "まえかれ", - "meaning": "former boyfriend, ex-boyfriend" - }, - { - "example": "元彼", - "reading": "もとかれ", - "meaning": "former boyfriend, ex-boyfriend" - }, - { - "example": "彼の", - "reading": "かの", - "meaning": "that well-known ..." - }, - { - "example": "彼女", - "reading": "かのじょ", - "meaning": "she, her, girlfriend" - }, - { - "example": "彼の", - "reading": "かの", - "meaning": "that well-known ..." - }, - { - "example": "彼女", - "reading": "かのじょ", - "meaning": "she, her, girlfriend" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "又", - "彳", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24444_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f7c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f7c.gif", - "uri": "http://jisho.org/search/%E5%BD%BC%23kanji" - }, - { - "query": "披", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1438", - "strokeCount": 8, - "meaning": "expose, open", - "kunyomi": [], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "披露", - "reading": "ヒロウ", - "meaning": "announcement, presentation, demonstration, displaying, showing, introducing, exhibiting, unveiling, revealing, showcasing, performing, giving a rendition" - }, - { - "example": "披露宴", - "reading": "ヒロウエン", - "meaning": "reception (e.g. wedding), banquet, celebration, party" - }, - { - "example": "直披", - "reading": "ジキヒ", - "meaning": "personal, confidential (letter)" - }, - { - "example": "嫡披", - "reading": "チャクヒ", - "meaning": "confidential letter" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "又", - "扎", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25259_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062ab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62ab.gif", - "uri": "http://jisho.org/search/%E6%8A%AB%23kanji" - }, - { - "query": "卑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2003", - "strokeCount": 9, - "meaning": "lowly, base, vile, vulgar", - "kunyomi": [ - "いや.しい", - "いや.しむ", - "いや.しめる" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "卑劣", - "reading": "ヒレツ", - "meaning": "mean, contemptible, despicable, dirty, foul, cowardly, base" - }, - { - "example": "卑怯", - "reading": "ヒキョウ", - "meaning": "cowardice, meanness, unfairness" - }, - { - "example": "男尊女卑", - "reading": "ダンソンジョヒ", - "meaning": "male domination of women, male chauvinism, subjection of women" - }, - { - "example": "野卑", - "reading": "ヤヒ", - "meaning": "vulgar, mean, base, coarse, crude" - } - ], - "kunyomiExamples": [ - { - "example": "卑しい", - "reading": "いやしい", - "meaning": "lowborn, humble, lowly, vulgar, coarse, crude, mean, base, vile, shabby, greedy, gluttonous, avaricious" - }, - { - "example": "卑しい生まれ", - "reading": "いやしいうまれ", - "meaning": "lowborn, of humble birth" - }, - { - "example": "卑しむ", - "reading": "いやしむ", - "meaning": "to despise, to disdain, to scorn, to hold in contempt, to look down on" - }, - { - "example": "卑しむべき", - "reading": "いやしむべき", - "meaning": "despicable" - }, - { - "example": "卑しめる", - "reading": "いやしめる", - "meaning": "to demean, to despise, to treat with contempt, to abase" - } - ], - "radical": { - "symbol": "十", - "meaning": "ten, complete" - }, - "parts": [ - "十", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21329_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05351.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5351.gif", - "uri": "http://jisho.org/search/%E5%8D%91%23kanji" - }, - { - "query": "疲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1263", - "strokeCount": 10, - "meaning": "exhausted, tire, weary", - "kunyomi": [ - "つか.れる", - "-づか.れ", - "つか.らす" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "疲労", - "reading": "ヒロウ", - "meaning": "fatigue, weariness" - }, - { - "example": "疲弊", - "reading": "ヒヘイ", - "meaning": "exhaustion, fatigue, impoverishment, (financial) exhaustion, ruin" - } - ], - "kunyomiExamples": [ - { - "example": "疲れる", - "reading": "つかれる", - "meaning": "to get tired, to tire, to get fatigued, to become exhausted, to grow weary, to become worn out (of a well-used object), to starve" - }, - { - "example": "疲らす", - "reading": "つからす", - "meaning": "to tire, to weary, to exhaust, to fatigue" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "又", - "疔", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30130_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75b2.gif", - "uri": "http://jisho.org/search/%E7%96%B2%23kanji" - }, - { - "query": "被", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "431", - "strokeCount": 10, - "meaning": "incur, cover, veil, brood over, shelter, wear, put on, be exposed (film), receiving", - "kunyomi": [ - "こうむ.る", - "おお.う", - "かぶ.る", - "かぶ.せる" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "被", - "reading": "ヒ", - "meaning": "indicates the target of an activity, -ee (e.g. employee, examinee, trustee)" - }, - { - "example": "被害", - "reading": "ヒガイ", - "meaning": "(suffering) damage, injury, harm" - }, - { - "example": "外被", - "reading": "ガイヒ", - "meaning": "(protective) coat, casing, housing, jacket" - }, - { - "example": "花被", - "reading": "カヒ", - "meaning": "perianth, floral envelope" - } - ], - "kunyomiExamples": [ - { - "example": "被る", - "reading": "こうむる", - "meaning": "to suffer, to receive (kindness, rebuke, support), to sustain (damage)" - }, - { - "example": "覆う", - "reading": "おおう", - "meaning": "to cover, to hide, to conceal, to wrap, to disguise" - }, - { - "example": "被る", - "reading": "かぶる", - "meaning": "to put on (one's head), to wear, to have on, to pull over (one's head), to crown (oneself), to be covered with (dust, snow, etc.), to pour (water, etc.) on oneself, to dash on oneself, to ship water, to bear (e.g. someone's debts, faults, etc.), to take (blame), to assume (responsibility), to shoulder (burden), to overlap (e.g. sound or color), to be similar, to be redundant, to be fogged (due to overexposure, etc.), to close, to come to an end, to get a full house, to sell out, to blunder, to bungle, to fail, to be deceived" - }, - { - "example": "被せる", - "reading": "かぶせる", - "meaning": "to cover (with something), to put on (e.g. on someone else's head), to plate something (with a metal), to pour or dash a liquid (on something), to charge (a person with a guilt)" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "初", - "又", - "皮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34987_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088ab.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88ab.gif", - "uri": "http://jisho.org/search/%E8%A2%AB%23kanji" - }, - { - "query": "扉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1866", - "strokeCount": 12, - "meaning": "front door, title page, front page", - "kunyomi": [ - "とびら" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "開扉", - "reading": "カイヒ", - "meaning": "opening a door" - }, - { - "example": "小開扉", - "reading": "ショウカイヒ", - "meaning": "opening a door for a moment (esp. on the train, when someone's foot is stuck, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "扉", - "reading": "とびら", - "meaning": "door, gate, opening, title page" - }, - { - "example": "扉絵", - "reading": "とびらえ", - "meaning": "frontispiece" - }, - { - "example": "自動扉", - "reading": "じどうとびら", - "meaning": "automatic door" - }, - { - "example": "防火扉", - "reading": "ぼうかとびら", - "meaning": "fire door" - } - ], - "radical": { - "symbol": "戶", - "forms": [ - "户", - "戸" - ], - "meaning": "door, house" - }, - "parts": [ - "一", - "尸", - "戸", - "非" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25161_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06249.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6249.gif", - "uri": "http://jisho.org/search/%E6%89%89%23kanji" - }, - { - "query": "碑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1792", - "strokeCount": 14, - "meaning": "tombstone, monument", - "kunyomi": [ - "いしぶみ" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "碑", - "reading": "イシブミ", - "meaning": "stone monument bearing an inscription (esp. memorial for future generations), stele, stela" - }, - { - "example": "碑文", - "reading": "ヒブン", - "meaning": "inscription, epitaph, epigraph" - }, - { - "example": "詩碑", - "reading": "シヒ", - "meaning": "monument (stele, gravestone, etc.) engraved with a poem" - }, - { - "example": "慰霊碑", - "reading": "イレイヒ", - "meaning": "cenotaph, memorial monument" - } - ], - "kunyomiExamples": [ - { - "example": "碑", - "reading": "いしぶみ", - "meaning": "stone monument bearing an inscription (esp. memorial for future generations), stele, stela" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "十", - "口", - "田", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30865_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07891.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7891.gif", - "uri": "http://jisho.org/search/%E7%A2%91%23kanji" - }, - { - "query": "罷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2104", - "strokeCount": 15, - "meaning": "quit, stop, leave, withdraw, go", - "kunyomi": [ - "まか.り-", - "や.める" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "罷免", - "reading": "ヒメン", - "meaning": "dismissal (from a position), discharge" - }, - { - "example": "罷官", - "reading": "ヒカン", - "meaning": "removal from office" - } - ], - "kunyomiExamples": [ - { - "example": "辞める", - "reading": "やめる", - "meaning": "to resign, to retire, to quit, to leave (one's job, etc.)" - } - ], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "匕", - "厶", - "月", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32631_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f77.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f77.gif", - "uri": "http://jisho.org/search/%E7%BD%B7%23kanji" - }, - { - "query": "避", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "756", - "strokeCount": 16, - "meaning": "evade, avoid, avert, ward off, shirk, shun", - "kunyomi": [ - "さ.ける", - "よ.ける" - ], - "onyomi": [ - "ヒ" - ], - "onyomiExamples": [ - { - "example": "避難民", - "reading": "ヒナンミン", - "meaning": "evacuees, displaced persons, refugees" - }, - { - "example": "避難", - "reading": "ヒナン", - "meaning": "taking refuge, finding shelter, evacuation, escape, seeking safe haven" - }, - { - "example": "不可避", - "reading": "フカヒ", - "meaning": "inevitable, inescapable, unavoidable" - }, - { - "example": "退避", - "reading": "タイヒ", - "meaning": "taking refuge, evacuation, backup (of data)" - } - ], - "kunyomiExamples": [ - { - "example": "避ける", - "reading": "さける", - "meaning": "to avoid (physical contact with), to avoid (situation), to ward off, to avert, to put aside, to move out of the way" - }, - { - "example": "避ける", - "reading": "さける", - "meaning": "to avoid (physical contact with), to avoid (situation), to ward off, to avert, to put aside, to move out of the way" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "十", - "口", - "尸", - "立", - "辛", - "込" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36991_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0907f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/907f.gif", - "uri": "http://jisho.org/search/%E9%81%BF%23kanji" - }, - { - "query": "尾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "875", - "strokeCount": 7, - "meaning": "tail, end, counter for fish, lower slope of mountain", - "kunyomi": [ - "お" - ], - "onyomi": [ - "ビ" - ], - "onyomiExamples": [ - { - "example": "尾", - "reading": "ビ", - "meaning": "Chinese \"Tail\" constellation (one of the 28 mansions), counter for fish, shrimp, etc." - }, - { - "example": "尾行", - "reading": "ビコウ", - "meaning": "shadow, tail, following" - }, - { - "example": "最後尾", - "reading": "サイコウビ", - "meaning": "end (e.g. of a line), tail end, rear, backmost part" - }, - { - "example": "交尾", - "reading": "コウビ", - "meaning": "copulation (in animals)" - } - ], - "kunyomiExamples": [ - { - "example": "尾", - "reading": "お", - "meaning": "tail (animal, kite, comet, etc.), tail end, slope at the foot of a mountain" - }, - { - "example": "尾根", - "reading": "おね", - "meaning": "(mountain) ridge" - }, - { - "example": "虎の尾", - "reading": "とらのお", - "meaning": "tiger's tail, gooseneck loosestrife (species of flowering plant, Lysimachia clethroides), Asplenium incisum (species of spleenwort)" - }, - { - "example": "岡虎の尾", - "reading": "おかとらのお", - "meaning": "gooseneck loosestrife (Lysimachia clethroides)" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "尸", - "毛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23614_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c3e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c3e.gif", - "uri": "http://jisho.org/search/%E5%B0%BE%23kanji" - }, - { - "query": "眉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2177", - "strokeCount": 9, - "meaning": "eyebrow", - "kunyomi": [ - "まゆ" - ], - "onyomi": [ - "ビ", - "ミ" - ], - "onyomiExamples": [ - { - "example": "眉宇", - "reading": "ビウ", - "meaning": "brow, brows" - }, - { - "example": "眉雪", - "reading": "ビセツ", - "meaning": "snow-white eyebrows" - }, - { - "example": "拝眉", - "reading": "ハイビ", - "meaning": "having the pleasure of seeing (a person)" - }, - { - "example": "愁眉", - "reading": "シュウビ", - "meaning": "worried look, melancholy air" - }, - { - "example": "眉間", - "reading": "ミケン", - "meaning": "brow, glabella, middle forehead, area between the eyebrows" - } - ], - "kunyomiExamples": [ - { - "example": "眉", - "reading": "まゆ", - "meaning": "eyebrow, eyebrows" - }, - { - "example": "眉毛", - "reading": "まゆげ", - "meaning": "eyebrow" - }, - { - "example": "描き眉", - "reading": "かきまゆ", - "meaning": "painted eyebrows, pencilled eyebrows" - }, - { - "example": "三日月眉", - "reading": "みかづきまゆ", - "meaning": "arched eyebrows" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "尸", - "目", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30473_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07709.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7709.gif", - "uri": "http://jisho.org/search/%E7%9C%89%23kanji" - }, - { - "query": "微", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1108", - "strokeCount": 13, - "meaning": "delicate, minuteness, insignificance", - "kunyomi": [ - "かす.か" - ], - "onyomi": [ - "ビ" - ], - "onyomiExamples": [ - { - "example": "微", - "reading": "ビ", - "meaning": "minuteness, one millionth" - }, - { - "example": "微細", - "reading": "ビサイ", - "meaning": "minute, micro, detailed, delicate, subtle" - }, - { - "example": "細微", - "reading": "サイビ", - "meaning": "minute, meager, meagre, mean" - }, - { - "example": "翠微", - "reading": "スイビ", - "meaning": "approx. 80% of the way up a mountainside, view of a light green mountain, mountain that appears green from afar" - } - ], - "kunyomiExamples": [ - { - "example": "微か", - "reading": "かすか", - "meaning": "faint, dim, weak, slight, vague, indistinct, hazy, poor, wretched, meagre, meager, scanty" - } - ], - "radical": { - "symbol": "彳", - "meaning": "step" - }, - "parts": [ - "乞", - "山", - "彳", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24494_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fae.gif", - "uri": "http://jisho.org/search/%E5%BE%AE%23kanji" - }, - { - "query": "膝", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2320", - "strokeCount": 15, - "meaning": "knee, lap", - "kunyomi": [ - "ひざ" - ], - "onyomi": [ - "シツ" - ], - "onyomiExamples": [ - { - "example": "膝窩静脈", - "reading": "シツカジョウミャク", - "meaning": "popliteal vein" - }, - { - "example": "膝窩動脈", - "reading": "シツカドウミャク", - "meaning": "popliteal artery" - } - ], - "kunyomiExamples": [ - { - "example": "膝", - "reading": "ひざ", - "meaning": "knee, lap, knee and thigh (while sitting)" - }, - { - "example": "膝上", - "reading": "ひざうえ", - "meaning": "above the knee" - }, - { - "example": "両膝", - "reading": "りょうひざ", - "meaning": "both knees" - }, - { - "example": "突き膝", - "reading": "つきひざ", - "meaning": "knee touch down, posture with knees and toes on the floor" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "个", - "月", - "木", - "水" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33181_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0819d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/819d.gif", - "uri": "http://jisho.org/search/%E8%86%9D%23kanji" - }, - { - "query": "肘", - "found": true, - "taughtIn": "junior high", - "strokeCount": 7, - "meaning": "elbow, arm", - "kunyomi": [ - "ひじ" - ], - "onyomi": [ - "チュウ" - ], - "onyomiExamples": [ - { - "example": "肘関節", - "reading": "チュウカンセツ", - "meaning": "elbow joint" - }, - { - "example": "肘頭滑液嚢炎", - "reading": "チュウトウカツエキノウエン", - "meaning": "olecranoid bursitis, miner's elbow" - }, - { - "example": "掣肘", - "reading": "セイチュウ", - "meaning": "restraint, restriction, control, check" - } - ], - "kunyomiExamples": [ - { - "example": "肘", - "reading": "ひじ", - "meaning": "elbow" - }, - { - "example": "肘当て", - "reading": "ひじあて", - "meaning": "(detachable) elbow rest, arm rest, elbow pad, elbow strike (karate)" - }, - { - "example": "野球肘", - "reading": "やきゅうひじ", - "meaning": "Little League elbow, pitcher's elbow, baseball elbow" - }, - { - "example": "右ひじ", - "reading": "みぎひじ", - "meaning": "right elbow" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "寸", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32920_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08098.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8098.gif", - "uri": "http://jisho.org/search/%E8%82%98%23kanji" - }, - { - "query": "匹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1384", - "strokeCount": 4, - "meaning": "equal, head, counter for small animals, roll of cloth", - "kunyomi": [ - "ひき" - ], - "onyomi": [ - "ヒツ" - ], - "onyomiExamples": [ - { - "example": "匹偶", - "reading": "ヒツグウ", - "meaning": "pair, couple (husband and wife), friend, comrade" - }, - { - "example": "馬匹", - "reading": "バヒツ", - "meaning": "horses" - } - ], - "kunyomiExamples": [ - { - "example": "匹", - "reading": "ひき", - "meaning": "counter for small animals, counter for rolls of cloth (two han in size), counter for horses, roll of cloth" - } - ], - "radical": { - "symbol": "匸", - "meaning": "hiding enclosure" - }, - "parts": [ - "儿", - "匚" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21305_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05339.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5339.gif", - "uri": "http://jisho.org/search/%E5%8C%B9%23kanji" - }, - { - "query": "泌", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2112", - "strokeCount": 8, - "meaning": "ooze, flow, soak in, penetrate, secrete", - "kunyomi": [], - "onyomi": [ - "ヒツ", - "ヒ" - ], - "onyomiExamples": [ - { - "example": "泌尿器", - "reading": "ヒニョウキ", - "meaning": "urinary organs" - }, - { - "example": "泌乳", - "reading": "ヒツニュウ", - "meaning": "lactation" - }, - { - "example": "泌尿器", - "reading": "ヒニョウキ", - "meaning": "urinary organs" - }, - { - "example": "泌乳", - "reading": "ヒツニュウ", - "meaning": "lactation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "丶", - "心", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27852_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ccc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ccc.gif", - "uri": "http://jisho.org/search/%E6%B3%8C%23kanji" - }, - { - "query": "姫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1566", - "strokeCount": 10, - "meaning": "princess", - "kunyomi": [ - "ひめ", - "ひめ-" - ], - "onyomi": [ - "キ" - ], - "onyomiExamples": [ - { - "example": "舞姫", - "reading": "マイヒメ", - "meaning": "female dancer, dancing girl, danseuse" - }, - { - "example": "寵姫", - "reading": "チョウキ", - "meaning": "one's favorite mistress, one's favourite mistress" - } - ], - "kunyomiExamples": [ - { - "example": "姫", - "reading": "ひめ", - "meaning": "young lady of noble birth, princess (esp. in Western contexts, tales, etc.), girl, small, cute, lesser (in names of species), prostitute" - }, - { - "example": "姫君", - "reading": "ひめぎみ", - "meaning": "daughter of a person of high rank (esp. eldest daughter)" - }, - { - "example": "歌姫", - "reading": "うたひめ", - "meaning": "songstress, diva" - }, - { - "example": "舞姫", - "reading": "まいひめ", - "meaning": "female dancer, dancing girl, danseuse" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23019_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059eb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59eb.gif", - "uri": "http://jisho.org/search/%E5%A7%AB%23kanji" - }, - { - "query": "漂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1492", - "strokeCount": 14, - "meaning": "drift, float (on liquid)", - "kunyomi": [ - "ただよ.う" - ], - "onyomi": [ - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "漂流", - "reading": "ヒョウリュウ", - "meaning": "drifting, drift, being adrift" - }, - { - "example": "漂白", - "reading": "ヒョウハク", - "meaning": "blanching, bleaching" - }, - { - "example": "漂々", - "reading": "ヒョウヒョウ", - "meaning": "buoyantly, airily, with a light heart" - }, - { - "example": "浮漂", - "reading": "フヒョウ", - "meaning": "floating" - } - ], - "kunyomiExamples": [ - { - "example": "漂う", - "reading": "ただよう", - "meaning": "to drift, to float, to waft (e.g. a scent), to hang in the air, to be in the air (e.g. a feeling or mood), to wander, to walk around aimlessly, to be unsteady, to be unstable, to falter, to flinch, to wince, to live in unreliable circumstances" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "二", - "小", - "汁", - "示", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28418_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f02.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f02.gif", - "uri": "http://jisho.org/search/%E6%BC%82%23kanji" - }, - { - "query": "苗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1713", - "strokeCount": 8, - "meaning": "seedling, sapling, shoot", - "kunyomi": [ - "なえ", - "なわ-" - ], - "onyomi": [ - "ビョウ", - "ミョウ" - ], - "onyomiExamples": [ - { - "example": "苗", - "reading": "ミャオ", - "meaning": "Miao (people), Hmong" - }, - { - "example": "苗裔", - "reading": "ビョウエイ", - "meaning": "descendant" - }, - { - "example": "種苗", - "reading": "シュビョウ", - "meaning": "seeds and seedlings, eggs and hatchlings, (fish) eggs and fry" - }, - { - "example": "育苗", - "reading": "イクビョウ", - "meaning": "raising seedlings" - }, - { - "example": "苗字", - "reading": "ミョウジ", - "meaning": "surname, family name" - }, - { - "example": "苗字帯刀", - "reading": "ミョウジタイトウ", - "meaning": "the right to bear a surname and to wear a sword (during the Edo period)" - }, - { - "example": "豆苗", - "reading": "トウミョウ", - "meaning": "pea sprouts" - } - ], - "kunyomiExamples": [ - { - "example": "苗", - "reading": "なえ", - "meaning": "seedling, young plant, rice seedling" - }, - { - "example": "苗木", - "reading": "なえぎ", - "meaning": "seedling, sapling, young tree" - }, - { - "example": "早苗", - "reading": "さなえ", - "meaning": "rice seedling" - }, - { - "example": "玉苗", - "reading": "たまなえ", - "meaning": "rice seedling" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "田", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33495_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082d7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82d7.gif", - "uri": "http://jisho.org/search/%E8%8B%97%23kanji" - }, - { - "query": "描", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "876", - "strokeCount": 11, - "meaning": "sketch, compose, write, draw, paint", - "kunyomi": [ - "えが.く", - "か.く" - ], - "onyomi": [ - "ビョウ" - ], - "onyomiExamples": [ - { - "example": "描写", - "reading": "ビョウシャ", - "meaning": "depiction, description, portrayal" - }, - { - "example": "描画", - "reading": "ビョウガ", - "meaning": "drawing, painting" - }, - { - "example": "線描", - "reading": "センビョウ", - "meaning": "line drawing" - }, - { - "example": "素描", - "reading": "ソビョウ", - "meaning": "drawing, sketch, outline, summary, synopsis" - } - ], - "kunyomiExamples": [ - { - "example": "描く", - "reading": "えがく", - "meaning": "to draw, to paint, to sketch, to depict, to describe, to picture in one's mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)" - }, - { - "example": "描く", - "reading": "えがく", - "meaning": "to draw, to paint, to sketch, to depict, to describe, to picture in one's mind, to imagine, to form a certain shape (e.g. path of an action, appearance of an object, etc.)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "田", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25551_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063cf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63cf.gif", - "uri": "http://jisho.org/search/%E6%8F%8F%23kanji" - }, - { - "query": "猫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1702", - "strokeCount": 11, - "meaning": "cat", - "kunyomi": [ - "ねこ" - ], - "onyomi": [ - "ビョウ" - ], - "onyomiExamples": [ - { - "example": "猫額", - "reading": "ビョウガク", - "meaning": "(as small as a) cat's forehead" - }, - { - "example": "猫額大", - "reading": "ビョウガクダイ", - "meaning": "tiny" - }, - { - "example": "怪猫", - "reading": "カイビョウ", - "meaning": "monster cat, cat with magical powers" - }, - { - "example": "成猫", - "reading": "セイビョウ", - "meaning": "adult cat, fully-grown cat" - } - ], - "kunyomiExamples": [ - { - "example": "猫", - "reading": "ねこ", - "meaning": "cat (esp. the domestic cat, Felis catus), shamisen, geisha, wheelbarrow, clay bed-warmer, bottom, submissive partner of a homosexual relationship" - }, - { - "example": "猫", - "reading": "ねこま", - "meaning": "cat" - }, - { - "example": "野良猫", - "reading": "のらねこ", - "meaning": "stray cat, alley cat" - }, - { - "example": "山猫", - "reading": "やまねこ", - "meaning": "wildcat (European wildcat, Iriomote cat, Tsushima cat, etc.), wild cat, stray cat" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "犯", - "田", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29483_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0732b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/732b.gif", - "uri": "http://jisho.org/search/%E7%8C%AB%23kanji" - }, - { - "query": "浜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "645", - "strokeCount": 10, - "meaning": "seacoast, beach, seashore", - "kunyomi": [ - "はま" - ], - "onyomi": [ - "ヒン" - ], - "onyomiExamples": [ - { - "example": "浜堤", - "reading": "ヒンテイ", - "meaning": "beach ridge" - }, - { - "example": "海浜", - "reading": "カイヒン", - "meaning": "seashore, seaside, beach" - }, - { - "example": "京浜", - "reading": "ケイヒン", - "meaning": "Tokyo and Yokohama" - } - ], - "kunyomiExamples": [ - { - "example": "浜", - "reading": "はま", - "meaning": "beach, seashore, captured pieces (in the game of go), captured stones, Yokohama, riverbank, riverside" - }, - { - "example": "浜辺", - "reading": "はまべ", - "meaning": "beach, foreshore" - }, - { - "example": "白浜", - "reading": "しらはま", - "meaning": "white sandy beach" - }, - { - "example": "揚げ浜", - "reading": "あげはま", - "meaning": "artificially flooded salt farm above the high-tide mark, captured pieces (in the game of go), captured stones" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "一", - "斤", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27996_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d5c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d5c.gif", - "uri": "http://jisho.org/search/%E6%B5%9C%23kanji" - }, - { - "query": "賓", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1677", - "strokeCount": 15, - "meaning": "V.I.P., guest", - "kunyomi": [], - "onyomi": [ - "ヒン" - ], - "onyomiExamples": [ - { - "example": "賓客", - "reading": "ヒンキャク", - "meaning": "guest of honour, guest of honor, privileged guest, visitor" - }, - { - "example": "賓格", - "reading": "ヒンカク", - "meaning": "objective case" - }, - { - "example": "国賓", - "reading": "コクヒン", - "meaning": "state guest" - }, - { - "example": "来賓", - "reading": "ライヒン", - "meaning": "guest, visitor, visitor's arrival" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ノ", - "ハ", - "一", - "宀", - "小", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36051_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cd3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cd3.gif", - "uri": "http://jisho.org/search/%E8%B3%93%23kanji" - }, - { - "query": "頻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1590", - "strokeCount": 17, - "meaning": "repeatedly, recur", - "kunyomi": [ - "しき.りに" - ], - "onyomi": [ - "ヒン" - ], - "onyomiExamples": [ - { - "example": "頻繁", - "reading": "ヒンパン", - "meaning": "frequent, incessant" - }, - { - "example": "頻度", - "reading": "ヒンド", - "meaning": "frequency (of occurrence)" - } - ], - "kunyomiExamples": [ - { - "example": "頻りに", - "reading": "しきりに", - "meaning": "frequently, repeatedly, often, incessantly, constantly, strongly, eagerly" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ノ", - "ハ", - "小", - "止", - "目", - "貝", - "頁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38971_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0983b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/983b.gif", - "uri": "http://jisho.org/search/%E9%A0%BB%23kanji" - }, - { - "query": "敏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1042", - "strokeCount": 10, - "meaning": "cleverness, agile, alert", - "kunyomi": [ - "さとい" - ], - "onyomi": [ - "ビン" - ], - "onyomiExamples": [ - { - "example": "敏", - "reading": "ビン", - "meaning": "quick, nimble, agile, sharp, smart, clever" - }, - { - "example": "敏感", - "reading": "ビンカン", - "meaning": "sensitive, alert, aware, susceptible" - }, - { - "example": "穎敏", - "reading": "エイビン", - "meaning": "sharp (mind), keen, acute" - }, - { - "example": "慧敏", - "reading": "ケイビン", - "meaning": "clever, of quick intellect" - } - ], - "kunyomiExamples": [ - { - "example": "聡い", - "reading": "さとい", - "meaning": "clever, smart, sharp (ear, etc.), sensitive, discerning" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "乞", - "攵", - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25935_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0654f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/654f.gif", - "uri": "http://jisho.org/search/%E6%95%8F%23kanji" - }, - { - "query": "瓶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1528", - "strokeCount": 11, - "meaning": "bottle, vial, jar, jug, vat, urn", - "kunyomi": [ - "かめ", - "へい" - ], - "onyomi": [ - "ビン" - ], - "onyomiExamples": [ - { - "example": "瓶", - "reading": "ビン", - "meaning": "bottle, jar, decanter, flagon, phial, vial" - }, - { - "example": "瓶詰め", - "reading": "ビンヅメ", - "meaning": "bottling, bottled" - }, - { - "example": "火炎瓶", - "reading": "カエンビン", - "meaning": "Molotov cocktail, petrol bomb, gasoline bomb" - }, - { - "example": "水瓶", - "reading": "スイビョウ", - "meaning": "portable water vessel (for drinking or washing up)" - } - ], - "kunyomiExamples": [ - { - "example": "甕", - "reading": "かめ", - "meaning": "earthenware pot" - }, - { - "example": "瓶覗", - "reading": "かめのぞき", - "meaning": "faint indigo blue (traditional Japanese color name)" - }, - { - "example": "瓶", - "reading": "へい", - "meaning": "jar or vase with a long narrow neck" - }, - { - "example": "瓶子", - "reading": "へいじ", - "meaning": "earthenware pot (used as a decanter), jar, jug" - }, - { - "example": "酒瓶", - "reading": "さかびん", - "meaning": "sake bottle" - } - ], - "radical": { - "symbol": "瓦", - "meaning": "tile" - }, - "parts": [ - "ノ", - "一", - "二", - "并", - "瓦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29942_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/074f6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/74f6.gif", - "uri": "http://jisho.org/search/%E7%93%B6%23kanji" - }, - { - "query": "扶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1879", - "strokeCount": 7, - "meaning": "aid, help, assist", - "kunyomi": [ - "たす.ける" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "扶養", - "reading": "フヨウ", - "meaning": "support (e.g. of one's dependents), maintenance" - }, - { - "example": "扶助", - "reading": "フジョ", - "meaning": "aid, help, assistance, support" - }, - { - "example": "家扶", - "reading": "カフ", - "meaning": "steward" - }, - { - "example": "煙突掃除夫", - "reading": "エントツソウジフ", - "meaning": "chimney sweeper (cleaner)" - } - ], - "kunyomiExamples": [ - { - "example": "助ける", - "reading": "たすける", - "meaning": "to save, to rescue, to help, to assist, to support (financially), to contribute (to), to provide aid, to facilitate, to stimulate, to promote, to contribute to" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "二", - "人", - "大", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25206_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06276.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6276.gif", - "uri": "http://jisho.org/search/%E6%89%B6%23kanji" - }, - { - "query": "怖", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1325", - "strokeCount": 8, - "meaning": "dreadful, be frightened, fearful", - "kunyomi": [ - "こわ.い", - "こわ.がる", - "お.じる", - "おそ.れる" - ], - "onyomi": [ - "フ", - "ホ" - ], - "onyomiExamples": [ - { - "example": "畏怖", - "reading": "イフ", - "meaning": "awe, fear, dread, fright" - }, - { - "example": "死の恐怖", - "reading": "シノキョウフ", - "meaning": "fear of death" - } - ], - "kunyomiExamples": [ - { - "example": "怖い", - "reading": "こわい", - "meaning": "scary, frightening, eerie, dreadful" - }, - { - "example": "怖い顔", - "reading": "こわいかお", - "meaning": "grim face, angry look" - }, - { - "example": "怖がる", - "reading": "こわがる", - "meaning": "to be afraid of, to fear, to dread, to be nervous (about), to be shy (of)" - }, - { - "example": "怖じる", - "reading": "おじる", - "meaning": "to be scared" - }, - { - "example": "恐れる", - "reading": "おそれる", - "meaning": "to fear, to be afraid of" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ノ", - "一", - "巾", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24598_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06016.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6016.gif", - "uri": "http://jisho.org/search/%E6%80%96%23kanji" - }, - { - "query": "附", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2396", - "strokeCount": 8, - "meaning": "affixed, attach, refer to, append", - "kunyomi": [ - "つ.ける", - "つ.く" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "付近", - "reading": "フキン", - "meaning": "neighbourhood, neighborhood, vicinity, environs, approaching" - }, - { - "example": "付加", - "reading": "フカ", - "meaning": "addition, annexation, appendage" - }, - { - "example": "交附", - "reading": "コウフ", - "meaning": "delivery, grant, handing (a ticket) to (a person)" - } - ], - "kunyomiExamples": [ - { - "example": "付ける", - "reading": "つける", - "meaning": "to attach, to join, to add, to append, to affix, to stick, to glue, to fasten, to sew on, to apply (ointment), to furnish (a house with), to wear, to put on, to keep a diary, to make an entry, to appraise, to set (a price), to allot, to budget, to assign, to bring alongside, to place (under guard or doctor), to follow, to shadow, to load, to give (courage to), to keep (an eye on), to establish (relations or understanding), to turn on (light), to produce flowers, to produce fruit" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "化", - "寸", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38468_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09644.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9644.gif", - "uri": "http://jisho.org/search/%E9%99%84%23kanji" - }, - { - "query": "訃", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2379", - "strokeCount": 9, - "meaning": "obituary", - "kunyomi": [ - "しらせ" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "訃", - "reading": "フ", - "meaning": "news of someone's death" - }, - { - "example": "訃報", - "reading": "フホウ", - "meaning": "news of someone's death, obituary" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "卜", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35331_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a03.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a03.gif", - "uri": "http://jisho.org/search/%E8%A8%83%23kanji" - }, - { - "query": "赴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1649", - "strokeCount": 9, - "meaning": "proceed, get, become, tend", - "kunyomi": [ - "おもむ.く" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "赴任", - "reading": "フニン", - "meaning": "moving to a different location to start a new job, (proceeding to) new appointment" - }, - { - "example": "赴援", - "reading": "フエン", - "meaning": "going to save, reinforcing (e.g. troops)" - } - ], - "kunyomiExamples": [ - { - "example": "赴く", - "reading": "おもむく", - "meaning": "to go in the direction of, to proceed toward, to proceed according to, to repair to, to betake oneself to, to become, to face (facts, circumstances, etc.), to abide by, to agree to, to consent to, to obey" - } - ], - "radical": { - "symbol": "走", - "forms": [ - "赱" - ], - "meaning": "run" - }, - "parts": [ - "卜", - "土", - "走" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36212_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08d74.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8d74.gif", - "uri": "http://jisho.org/search/%E8%B5%B4%23kanji" - }, - { - "query": "浮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "776", - "strokeCount": 10, - "meaning": "floating, float, rise to surface", - "kunyomi": [ - "う.く", - "う.かれる", - "う.かぶ", - "う.かべる" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "浮沈", - "reading": "フチン", - "meaning": "floating and sinking, rise and fall, ebb and flow, ups and downs" - }, - { - "example": "浮上", - "reading": "フジョウ", - "meaning": "surfacing, rising to the surface, emerging, leaping into prominence, rising (of rank)" - }, - { - "example": "軽浮", - "reading": "ケイフ", - "meaning": "fickle, frivolous" - } - ], - "kunyomiExamples": [ - { - "example": "浮く", - "reading": "うく", - "meaning": "to float, to become merry, to be cheerful, to become loose, to become unsteady, to feel out of it, to be cut off (e.g. from those around you), to feel out of place, to be frivolous, to be uncertain, to have (time, money, etc.) left over, to be saved (e.g. money), to have no basis, to be unreliable" - }, - { - "example": "浮かれる", - "reading": "うかれる", - "meaning": "to make merry, to be festive" - }, - { - "example": "浮かぶ", - "reading": "うかぶ", - "meaning": "to float, to be suspended, to rise to the surface, to appear, to emerge, to show up, to loom (up), to come to mind, to have inspiration" - }, - { - "example": "浮かぶ瀬", - "reading": "うかぶせ", - "meaning": "chance, opportunity, lucky break" - }, - { - "example": "浮かべる", - "reading": "うかべる", - "meaning": "to float, to set afloat, to launch, to show on one's face (smile, sadness, etc.), to recall, to call to mind, to imagine, to think of" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "子", - "汁", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28014_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d6e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d6e.gif", - "uri": "http://jisho.org/search/%E6%B5%AE%23kanji" - }, - { - "query": "符", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1798", - "strokeCount": 11, - "meaning": "token, sign, mark, tally, charm", - "kunyomi": [], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "符", - "reading": "フ", - "meaning": "charm, talisman, amulet, tally, sign, mark, note, fu, unit used in calculation of a hand's score" - }, - { - "example": "符号", - "reading": "フゴウ", - "meaning": "sign, mark, symbol, code, sign (e.g. positive, negative)" - }, - { - "example": "意符", - "reading": "イフ", - "meaning": "part of a kanji for which the role is primarily to represent the meaning (as opposed to the pronunciation)" - }, - { - "example": "合い符", - "reading": "アイフ", - "meaning": "baggage claim tag (at hotels, stations, etc.)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "化", - "寸", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31526_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07b26.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7b26.gif", - "uri": "http://jisho.org/search/%E7%AC%A6%23kanji" - }, - { - "query": "普", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "757", - "strokeCount": 12, - "meaning": "universal, wide(ly), generally, Prussia", - "kunyomi": [ - "あまね.く", - "あまねし" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "普賢", - "reading": "フゲン", - "meaning": "Samantabhadra (bodhisattva), Universal Compassion" - }, - { - "example": "普及", - "reading": "フキュウ", - "meaning": "diffusion, spread, popularization, promulgation, familiarization" - } - ], - "kunyomiExamples": [ - { - "example": "普く", - "reading": "あまねく", - "meaning": "widely, extensively, far and wide, everywhere, all around, generally, universally" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "一", - "二", - "并", - "日", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26222_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0666e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/666e.gif", - "uri": "http://jisho.org/search/%E6%99%AE%23kanji" - }, - { - "query": "腐", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1225", - "strokeCount": 14, - "meaning": "rot, decay, sour", - "kunyomi": [ - "くさ.る", - "-くさ.る", - "くさ.れる", - "くさ.れ", - "くさ.らす", - "くさ.す" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "腐敗", - "reading": "フハイ", - "meaning": "decomposition, putrefaction, putrescence, spoilage, corruption, degeneracy, decay, depravity" - }, - { - "example": "腐心", - "reading": "フシン", - "meaning": "taking great pains (to do), making every effort, having a lot of trouble (doing), racking one's brains" - }, - { - "example": "防腐", - "reading": "ボウフ", - "meaning": "preservation from decay, prevention of putrefaction, embalmment, antisepsis" - }, - { - "example": "高野豆腐", - "reading": "コウヤドウフ", - "meaning": "freeze-dried tofu" - } - ], - "kunyomiExamples": [ - { - "example": "腐る", - "reading": "くさる", - "meaning": "to rot, to go bad, to decay, to spoil, to fester, to decompose, to turn sour (e.g. milk), to corrode, to weather, to crumble, to become useless, to blunt, to weaken (from lack of practice), to become depraved, to be degenerate, to be morally bankrupt, to be corrupt, to be depressed, to be dispirited, to feel discouraged, to feel down, to have the audacity to, to be bastard enough to, to lose a bet, to be drenched, to become sopping wet" - }, - { - "example": "腐るほど", - "reading": "くさるほど", - "meaning": "more than one can possibly use, countless (e.g. examples), (money) to burn, rolling in (cash)" - }, - { - "example": "腐れる", - "reading": "くされる", - "meaning": "to spoil, to rot, to corrode" - }, - { - "example": "腐れ", - "reading": "くされ", - "meaning": "rotting, spoiling, decaying, corroding, rotten, worthless, paltry, contemptible" - }, - { - "example": "腐れ縁", - "reading": "くされえん", - "meaning": "(undesirable but) inseparable relationship" - }, - { - "example": "腐らす", - "reading": "くさらす", - "meaning": "to let spoil, to leave to rot, to cause to rot, to corrode, to discourage, to dishearten" - }, - { - "example": "腐す", - "reading": "くさす", - "meaning": "to speak ill of" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "化", - "寸", - "广", - "肉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33104_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08150.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8150.gif", - "uri": "http://jisho.org/search/%E8%85%90%23kanji" - }, - { - "query": "敷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1212", - "strokeCount": 15, - "meaning": "spread, pave, sit, promulgate", - "kunyomi": [ - "し.く", - "-し.き" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "敷設", - "reading": "フセツ", - "meaning": "laying (a railroad, pipes, naval mines, etc.), construction" - }, - { - "example": "敷衍", - "reading": "フエン", - "meaning": "expatiation, enlargement (e.g. on a point), elaboration, amplification, clear explanation, paraphrasing" - } - ], - "kunyomiExamples": [ - { - "example": "敷く", - "reading": "しく", - "meaning": "to spread out, to lay out, to take a position, to impose widely (e.g. over a city)" - } - ], - "radical": { - "symbol": "攴", - "forms": [ - "攵" - ], - "meaning": "rap" - }, - "parts": [ - "丶", - "乞", - "十", - "攵", - "方", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25975_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06577.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6577.gif", - "uri": "http://jisho.org/search/%E6%95%B7%23kanji" - }, - { - "query": "膚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1679", - "strokeCount": 15, - "meaning": "skin, body, grain, texture, disposition", - "kunyomi": [ - "はだ" - ], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "肌膚", - "reading": "キフ", - "meaning": "skin" - }, - { - "example": "ただれた皮膚", - "reading": "タダレタヒフ", - "meaning": "inflamed skin" - } - ], - "kunyomiExamples": [ - { - "example": "肌", - "reading": "はだ", - "meaning": "skin, body (in the context of intimate bodily contact), surface, grain (e.g. of wood), texture, disposition, temperament, character, type" - }, - { - "example": "肌色", - "reading": "はだいろ", - "meaning": "(one's) skin colour, skin color, skin tone, flesh colour (of a Japanese person), flesh color, pale orange" - }, - { - "example": "山肌", - "reading": "やまはだ", - "meaning": "mountain's surface, bare surface of a mountain" - }, - { - "example": "地肌", - "reading": "じはだ", - "meaning": "texture, grain, one's skin (lacking makeup, etc.), natural skin, bare skin, scalp, surface of the earth, bare ground, surface of a sword blade" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "匕", - "卜", - "厂", - "月", - "田", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0819a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/819a.gif", - "uri": "http://jisho.org/search/%E8%86%9A%23kanji" - }, - { - "query": "賦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 15, - "meaning": "levy, ode, prose, poem, tribute, installment", - "kunyomi": [], - "onyomi": [ - "フ", - "ブ" - ], - "onyomiExamples": [ - { - "example": "賦", - "reading": "フ", - "meaning": "poem, narrative (style of the Shi Jing), classical Chinese rhymed prose" - }, - { - "example": "賦課", - "reading": "フカ", - "meaning": "levy, imposition" - }, - { - "example": "配賦", - "reading": "ハイフ", - "meaning": "allocation, apportionment, distribution" - }, - { - "example": "貢賦", - "reading": "コウフ", - "meaning": "tribute and taxation" - }, - { - "example": "賦役", - "reading": "フエキ", - "meaning": "slave labour, slave labor, compulsory service, forced labour, forced labor, exacted service" - }, - { - "example": "賦払い", - "reading": "ブバライ", - "meaning": "payment on an installment system, payment on an instalment system, easy payment plan" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "弋", - "止", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36070_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08ce6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8ce6.gif", - "uri": "http://jisho.org/search/%E8%B3%A6%23kanji" - }, - { - "query": "譜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1919", - "strokeCount": 19, - "meaning": "musical score, music, note, staff, table, genealogy", - "kunyomi": [], - "onyomi": [ - "フ" - ], - "onyomiExamples": [ - { - "example": "譜", - "reading": "フ", - "meaning": "(sheet) music, (musical) note, (musical) score, genealogy, family tree, record of a game of go, shogi, chess, etc." - }, - { - "example": "譜面", - "reading": "フメン", - "meaning": "sheet music, score" - }, - { - "example": "系譜", - "reading": "ケイフ", - "meaning": "genealogy, lineage, family tree, pedigree" - }, - { - "example": "五線譜", - "reading": "ゴセンフ", - "meaning": "staff notation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "二", - "并", - "日", - "言", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35676_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b5c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b5c.gif", - "uri": "http://jisho.org/search/%E8%AD%9C%23kanji" - }, - { - "query": "侮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2004", - "strokeCount": 8, - "meaning": "scorn, despise, make light of, contempt", - "kunyomi": [ - "あなど.る", - "あなず.る" - ], - "onyomi": [ - "ブ" - ], - "onyomiExamples": [ - { - "example": "侮", - "reading": "ブ", - "meaning": "(something) despised, (something) made light of" - }, - { - "example": "侮辱", - "reading": "ブジョク", - "meaning": "insult, affront, slight, contempt (e.g. of court)" - }, - { - "example": "軽侮", - "reading": "ケイブ", - "meaning": "contempt, scorn" - } - ], - "kunyomiExamples": [ - { - "example": "侮る", - "reading": "あなどる", - "meaning": "to disdain, to look down on, to make light of, to hold in contempt, to scorn, to despise" - }, - { - "example": "侮る", - "reading": "あなどる", - "meaning": "to disdain, to look down on, to make light of, to hold in contempt, to scorn, to despise" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "乞", - "化", - "毋", - "母" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20398_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fae.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fae.gif", - "uri": "http://jisho.org/search/%E4%BE%AE%23kanji" - }, - { - "query": "舞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "655", - "strokeCount": 15, - "meaning": "dance, flit, circle, wheel", - "kunyomi": [ - "ま.う", - "-ま.う", - "まい" - ], - "onyomi": [ - "ブ" - ], - "onyomiExamples": [ - { - "example": "舞台裏", - "reading": "ブタイウラ", - "meaning": "offstage, backstage, behind the scenes" - }, - { - "example": "舞台", - "reading": "ブタイ", - "meaning": "stage (theatre, theater), scene or setting (e.g. of novel, play, etc.)" - }, - { - "example": "演舞", - "reading": "エンブ", - "meaning": "dance performance" - }, - { - "example": "歌舞", - "reading": "カブ", - "meaning": "singing and dancing" - } - ], - "kunyomiExamples": [ - { - "example": "舞う", - "reading": "まう", - "meaning": "to dance (orig. a whirling dance), to flutter about, to revolve" - }, - { - "example": "舞", - "reading": "まい", - "meaning": "dancing, dance" - }, - { - "example": "舞い上がる", - "reading": "まいあがる", - "meaning": "to soar, to fly high, to be whirled up, to make merry, to be ecstatic, to be in high spirits" - }, - { - "example": "立ち居振る舞い", - "reading": "たちいふるまい", - "meaning": "movements, behavior, behaviour, bearing, deportment, manners, demeanor" - }, - { - "example": "獅子舞", - "reading": "ししまい", - "meaning": "lion dance, traditional dance performed by one or more dancers wearing a guardian lion costume" - } - ], - "radical": { - "symbol": "舛", - "meaning": "opposite" - }, - "parts": [ - "ノ", - "一", - "乞", - "二", - "夕", - "無", - "舛", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33310_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0821e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/821e.gif", - "uri": "http://jisho.org/search/%E8%88%9E%23kanji" - }, - { - "query": "封", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1143", - "strokeCount": 9, - "meaning": "seal, closing", - "kunyomi": [], - "onyomi": [ - "フウ", - "ホウ" - ], - "onyomiExamples": [ - { - "example": "封", - "reading": "フウ", - "meaning": "seal" - }, - { - "example": "封鎖", - "reading": "フウサ", - "meaning": "blockade, lockdown, sealing off (an area), freezing (funds)" - }, - { - "example": "帯封", - "reading": "オビフウ", - "meaning": "bill strap, currency strap, currency band, money band, wrapper band, newspaper band" - }, - { - "example": "液封", - "reading": "エキフウ", - "meaning": "liquid seal, liquid ring" - }, - { - "example": "封建的", - "reading": "ホウケンテキ", - "meaning": "feudal, feudalistic" - }, - { - "example": "封建主義", - "reading": "ホウケンシュギ", - "meaning": "feudalism" - }, - { - "example": "移封", - "reading": "イホウ", - "meaning": "forced relocation of a daimyo to a different domain by the Edo shogunate" - }, - { - "example": "旧封", - "reading": "キュウホウ", - "meaning": "former fief" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "寸", - "meaning": "thumb, inch" - }, - "parts": [ - "土", - "寸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23553_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c01.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c01.gif", - "uri": "http://jisho.org/search/%E5%B0%81%23kanji" - }, - { - "query": "伏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1604", - "strokeCount": 6, - "meaning": "prostrated, bend down, bow, cover, lay (pipes)", - "kunyomi": [ - "ふ.せる", - "ふ.す" - ], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "伏兵", - "reading": "フクヘイ", - "meaning": "ambush, troops in ambush, unexpected opposition, unexpected obstacle" - }, - { - "example": "伏線", - "reading": "フクセン", - "meaning": "foreshadowing, preparation, precautionary measures" - }, - { - "example": "起伏", - "reading": "キフク", - "meaning": "undulation, ups and downs, highs and lows" - }, - { - "example": "承服", - "reading": "ショウフク", - "meaning": "accepting, consenting, agreeing, submission, compliance, agreement, consent" - } - ], - "kunyomiExamples": [ - { - "example": "伏せる", - "reading": "ふせる", - "meaning": "to turn over (face down), to lay face down, to lay upside down, to point downwards (eyes, head, etc.), to cast down (eyes), to lie (one's body) face down, to lie flat (on the ground), to conceal, to hide, to keep secret, to place in hiding (e.g. troops for an ambush), to lie down, to retire, to go to bed (with an illness)" - }, - { - "example": "伏す", - "reading": "ふす", - "meaning": "to bend down, to bow down, to prostrate oneself, to hide oneself" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "犬" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20239_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f0f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f0f.gif", - "uri": "http://jisho.org/search/%E4%BC%8F%23kanji" - }, - { - "query": "幅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "641", - "strokeCount": 12, - "meaning": "hanging scroll, width", - "kunyomi": [ - "はば" - ], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "幅", - "reading": "フク", - "meaning": "scroll, counter for scrolls" - }, - { - "example": "幅員", - "reading": "フクイン", - "meaning": "breadth, extent" - }, - { - "example": "増幅", - "reading": "ゾウフク", - "meaning": "amplification (elec.), magnification, amplification, making larger" - }, - { - "example": "双幅", - "reading": "ソウフク", - "meaning": "pair of hanging scrolls" - } - ], - "kunyomiExamples": [ - { - "example": "幅", - "reading": "はば", - "meaning": "width, breadth, freedom (e.g. of thought), latitude, gap, difference (e.g. in price), range (e.g. of voice)" - }, - { - "example": "幅広い", - "reading": "はばひろい", - "meaning": "extensive, wide, broad" - }, - { - "example": "小幅", - "reading": "こはば", - "meaning": "small, narrow, single-breadth cloth (approx. 36 cm wide)" - }, - { - "example": "値幅", - "reading": "ねはば", - "meaning": "price range or fluctuation" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "一", - "口", - "巾", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24133_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e45.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e45.gif", - "uri": "http://jisho.org/search/%E5%B9%85%23kanji" - }, - { - "query": "覆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1378", - "strokeCount": 18, - "meaning": "capsize, cover, shade, mantle, be ruined", - "kunyomi": [ - "おお.う", - "くつがえ.す", - "くつがえ.る" - ], - "onyomi": [ - "フク" - ], - "onyomiExamples": [ - { - "example": "覆", - "reading": "フク", - "meaning": "concealment (of one's vices), veil, cover, overturning, toppling" - }, - { - "example": "覆面", - "reading": "フクメン", - "meaning": "mask, veil, disguise, anonymous, unmarked, incognito" - }, - { - "example": "被覆", - "reading": "ヒフク", - "meaning": "coating, covering, cover" - }, - { - "example": "傾覆", - "reading": "ケイフク", - "meaning": "turning upside down" - } - ], - "kunyomiExamples": [ - { - "example": "覆う", - "reading": "おおう", - "meaning": "to cover, to hide, to conceal, to wrap, to disguise" - }, - { - "example": "覆す", - "reading": "くつがえす", - "meaning": "to overturn, to capsize, to upset, to overthrow (government etc.), to reverse (decision etc.), to disprove (an established theory etc.), to overrule" - }, - { - "example": "覆る", - "reading": "くつがえる", - "meaning": "to topple over, to be overturned, to capsize, to be overruled, to be reversed, to be discredited" - } - ], - "radical": { - "symbol": "西", - "forms": [ - "襾", - "覀" - ], - "meaning": "west" - }, - "parts": [ - "乞", - "夂", - "彳", - "日", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35206_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08986.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8986.gif", - "uri": "http://jisho.org/search/%E8%A6%86%23kanji" - }, - { - "query": "払", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "813", - "strokeCount": 5, - "meaning": "pay, clear out, prune, banish, dispose of", - "kunyomi": [ - "はら.う", - "-はら.い", - "-ばら.い" - ], - "onyomi": [ - "フツ", - "ヒツ", - "ホツ" - ], - "onyomiExamples": [ - { - "example": "払暁", - "reading": "フツギョウ", - "meaning": "dawn, daybreak" - } - ], - "kunyomiExamples": [ - { - "example": "払う", - "reading": "はらう", - "meaning": "to pay (e.g. money, bill), to brush off, to wipe away, to clear away, to dust off, to cut off (e.g. branches), to drive away (e.g. one's competitors), to sell off (something unneeded), to dispose of, to pay (e.g. attention), to show (e.g. respect, concern), to make (e.g. effort, sacrifice), to expend, to exert, to move out (of one's own place), to vacate, to sweep (e.g. one's legs), to knock aside, to make a sweeping stroke (in Japanese calligraphy), to reset (an abacus)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "厶", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25173_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06255.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6255.gif", - "uri": "http://jisho.org/search/%E6%89%95%23kanji" - }, - { - "query": "沸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1709", - "strokeCount": 8, - "meaning": "seethe, boil, ferment, uproar, breed", - "kunyomi": [ - "わ.く", - "わ.かす" - ], - "onyomi": [ - "フツ" - ], - "onyomiExamples": [ - { - "example": "沸々", - "reading": "フツフツ", - "meaning": "simmer, bubble out, flow out" - }, - { - "example": "沸々", - "reading": "フツフツ", - "meaning": "simmer, bubble out, flow out" - } - ], - "kunyomiExamples": [ - { - "example": "沸く", - "reading": "わく", - "meaning": "to grow hot (e.g. water), to boil, to get excited (at), to erupt (in applause, cheering, etc.), to be in a ferment, to take place energetically, to ferment, to melt (of metal)" - }, - { - "example": "沸かす", - "reading": "わかす", - "meaning": "to boil, to heat, to excite, to melt (metal)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "弓", - "汁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27832_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06cb8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6cb8.gif", - "uri": "http://jisho.org/search/%E6%B2%B8%23kanji" - }, - { - "query": "紛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "994", - "strokeCount": 10, - "meaning": "distract, be mistaken for, go astray, divert", - "kunyomi": [ - "まぎ.れる", - "-まぎ.れ", - "まぎ.らす", - "まぎ.らわす", - "まぎ.らわしい" - ], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "紛争", - "reading": "フンソウ", - "meaning": "dispute, conflict, trouble, strife" - }, - { - "example": "紛糾", - "reading": "フンキュウ", - "meaning": "complication, confusion, disorder" - }, - { - "example": "人工授粉", - "reading": "ジンコウジュフン", - "meaning": "artificial pollination, hand pollination, mechanical pollination" - } - ], - "kunyomiExamples": [ - { - "example": "紛れる", - "reading": "まぎれる", - "meaning": "to disappear into, to be lost in, to slip into, to get mixed in among, to do something under the cover of (confusion, etc.), to be almost indistinguishable, to be confusingly similar, to be diverted from (negative emotions, etc.), to forget about, to be distracted by, to be too absorbed in" - }, - { - "example": "紛らす", - "reading": "まぎらす", - "meaning": "to divert (e.g. one's mind), to distract, to relieve (e.g. boredom), to conceal (e.g. one's sorrow with a smile), to shift (the conversation)" - }, - { - "example": "紛らわす", - "reading": "まぎらわす", - "meaning": "to divert, to distract" - }, - { - "example": "紛らわしい", - "reading": "まぎらわしい", - "meaning": "easily mixed up (e.g. similar words), easily mistaken, confusingly similar, misleading, equivocal, ambiguous" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "ハ", - "刀", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32027_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d1b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d1b.gif", - "uri": "http://jisho.org/search/%E7%B4%9B%23kanji" - }, - { - "query": "雰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1341", - "strokeCount": 12, - "meaning": "atmosphere, fog", - "kunyomi": [], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "雰囲気", - "reading": "フンイキ", - "meaning": "atmosphere, mood, ambience, ambiance, aura, feel, a certain air, presence, special aura, something (about someone), (Earth's) atmosphere" - }, - { - "example": "雰囲気美人", - "reading": "フンイキビジン", - "meaning": "woman who is not traditionally beautiful yet somehow very attractive, woman with an aura of beauty" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "ハ", - "刀", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38640_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096f0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96f0.gif", - "uri": "http://jisho.org/search/%E9%9B%B0%23kanji" - }, - { - "query": "噴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1270", - "strokeCount": 15, - "meaning": "erupt, spout, emit, flush out", - "kunyomi": [ - "ふ.く" - ], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "噴煙", - "reading": "フンエン", - "meaning": "(eruption of) smoke" - }, - { - "example": "噴火", - "reading": "フンカ", - "meaning": "eruption, volcanic eruption" - }, - { - "example": "暴噴", - "reading": "ボウフン", - "meaning": "blowout (oil well, gas field, etc.)" - }, - { - "example": "自噴", - "reading": "ジフン", - "meaning": "gushing forth (e.g. oil well), natural emergence (e.g. spring water)" - } - ], - "kunyomiExamples": [ - { - "example": "噴く", - "reading": "ふく", - "meaning": "to emit, to spout, to spurt, to boil over" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ハ", - "十", - "口", - "目", - "艾", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22132_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05674.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5674.gif", - "uri": "http://jisho.org/search/%E5%99%B4%23kanji" - }, - { - "query": "墳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1822", - "strokeCount": 15, - "meaning": "tomb, mound", - "kunyomi": [], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "墳墓", - "reading": "フンボ", - "meaning": "grave, tomb" - }, - { - "example": "墳丘", - "reading": "フンキュウ", - "meaning": "tumulus, grave mound" - }, - { - "example": "前方後円墳", - "reading": "ゼンポウコウエンフン", - "meaning": "keyhole-shaped tumulus (form of ancient Imperial grave)" - }, - { - "example": "方墳", - "reading": "ホウフン", - "meaning": "flat-topped burial mound" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ハ", - "十", - "土", - "目", - "艾", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22707_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058b3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58b3.gif", - "uri": "http://jisho.org/search/%E5%A2%B3%23kanji" - }, - { - "query": "憤", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1863", - "strokeCount": 15, - "meaning": "aroused, resent, be indignant, anger", - "kunyomi": [ - "いきどお.る" - ], - "onyomi": [ - "フン" - ], - "onyomiExamples": [ - { - "example": "憤慨", - "reading": "フンガイ", - "meaning": "indignation, resentment" - }, - { - "example": "憤激", - "reading": "フンゲキ", - "meaning": "fury" - }, - { - "example": "公憤", - "reading": "コウフン", - "meaning": "public indignation, anger (as a citizen)" - }, - { - "example": "痛憤", - "reading": "ツウフン", - "meaning": "strong indignation" - } - ], - "kunyomiExamples": [ - { - "example": "憤る", - "reading": "いきどおる", - "meaning": "to be angry, to resent, to be enraged, to be indignant" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ハ", - "十", - "忙", - "目", - "艾", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24996_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/061a4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/61a4.gif", - "uri": "http://jisho.org/search/%E6%86%A4%23kanji" - }, - { - "query": "丙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 5, - "meaning": "third class, 3rd, 3rd calendar sign", - "kunyomi": [ - "ひのえ" - ], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "丙", - "reading": "ヘイ", - "meaning": "third rank, third class, third person (in a contract, etc.), third sign of the Chinese calendar" - }, - { - "example": "丙寅", - "reading": "ヒノエトラ", - "meaning": "Fire Tiger (3rd year of the sexagenary cycle, e.g. 1926, 1986, 2046)" - }, - { - "example": "甲乙丙", - "reading": "コウオツヘイ", - "meaning": "ABC, 1, 2 and 3" - } - ], - "kunyomiExamples": [ - { - "example": "丙", - "reading": "へい", - "meaning": "third rank, third class, third person (in a contract, etc.), third sign of the Chinese calendar" - }, - { - "example": "丙戌", - "reading": "ひのえいぬ", - "meaning": "Fire Dog (23rd year of the sexagenary cycle, e.g. 1946, 2006, 2066)" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "人", - "冂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19993_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e19.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e19.gif", - "uri": "http://jisho.org/search/%E4%B8%99%23kanji" - }, - { - "query": "併", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "966", - "strokeCount": 8, - "meaning": "join, get together, unite, collective", - "kunyomi": [ - "あわ.せる" - ], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "併合", - "reading": "ヘイゴウ", - "meaning": "merger, joining into one, amalgamation, melding, merging, annexation, absorption" - }, - { - "example": "並行", - "reading": "ヘイコウ", - "meaning": "going side-by-side, going abreast, running concurrently, occurring at the same time, keeping pace with" - } - ], - "kunyomiExamples": [ - { - "example": "合わせる", - "reading": "あわせる", - "meaning": "to match (rhythm, speed, etc.), to join together, to unite, to combine, to add up, to face, to be opposite (someone), to compare, to check with, to cause to meet (e.g. an unpleasant fate), to place together, to connect, to overlap, to mix, to combine, to put blade to blade, to fight" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "一", - "二", - "化", - "并", - "廾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20341_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04f75.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4f75.gif", - "uri": "http://jisho.org/search/%E4%BD%B5%23kanji" - }, - { - "query": "柄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1140", - "strokeCount": 9, - "meaning": "design, pattern, build, nature, character, handle, crank, grip, knob, shaft", - "kunyomi": [ - "がら", - "え", - "つか" - ], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "柄節", - "reading": "ヘイセツ", - "meaning": "scape (of an insect)" - }, - { - "example": "政柄", - "reading": "セイヘイ", - "meaning": "political power" - }, - { - "example": "羽柄", - "reading": "ウヘイ", - "meaning": "calamus, quill" - } - ], - "kunyomiExamples": [ - { - "example": "柄", - "reading": "がら", - "meaning": "pattern, design, body build, figure, physique, essential qualities, character, nature, appropriate to, fitting of, suitable for" - }, - { - "example": "ガラが悪い", - "reading": "ガラがわるい", - "meaning": "ill-bred, vulgar, boorish" - }, - { - "example": "土地柄", - "reading": "とちがら", - "meaning": "nature of the locality, character of a place, local colour, local color" - }, - { - "example": "役柄", - "reading": "やくがら", - "meaning": "role" - }, - { - "example": "柄", - "reading": "え", - "meaning": "handle, grip, stalk (of a mushroom, leaf, etc.)" - }, - { - "example": "柄鏡", - "reading": "えかがみ", - "meaning": "traditional mirror with a handle, popular since the Muromachi period" - }, - { - "example": "長柄", - "reading": "ながえ", - "meaning": "long handle, long-handled spear, long shaft" - }, - { - "example": "槍の柄", - "reading": "やりのえ", - "meaning": "spear handle" - }, - { - "example": "柄", - "reading": "つか", - "meaning": "hilt (of a sword), haft (of a dagger), handle, handgrip" - }, - { - "example": "柄頭", - "reading": "つかがしら", - "meaning": "pommel" - }, - { - "example": "鎌柄", - "reading": "かまつか", - "meaning": "sickle handle, goby minnow (Pseudogobio esocinus), Oriental photinia (species of shrub, Photinia villosa), Asiatic dayflower (Commelina communis), Joseph's-coat (species of amaranth, Amaranthus tricolor)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "人", - "冂", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26564_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067c4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67c4.gif", - "uri": "http://jisho.org/search/%E6%9F%84%23kanji" - }, - { - "query": "塀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1991", - "strokeCount": 12, - "meaning": "fence, wall, (kokuji)", - "kunyomi": [], - "onyomi": [ - "ヘイ", - "ベイ" - ], - "onyomiExamples": [ - { - "example": "塀", - "reading": "ヘイ", - "meaning": "wall, fence" - }, - { - "example": "塀越し", - "reading": "ヘイゴシ", - "meaning": "over a wall, crossing a fence" - }, - { - "example": "土塀", - "reading": "ドベイ", - "meaning": "mud wall, earthen wall, plaster wall" - }, - { - "example": "高塀", - "reading": "タカベイ", - "meaning": "tall fence" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "ノ", - "ハ", - "一", - "二", - "土", - "尸", - "廾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22592_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05840.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5840.gif", - "uri": "http://jisho.org/search/%E5%A1%80%23kanji" - }, - { - "query": "幣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1803", - "strokeCount": 15, - "meaning": "cash, bad habit, humble prefix, gift, Shinto offerings of cloth, rope, cut paper", - "kunyomi": [ - "ぬさ" - ], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "幣", - "reading": "ヘイ", - "meaning": "staff with plaited paper streamers" - }, - { - "example": "幣串", - "reading": "ヘイグシ", - "meaning": "staff to which shide are attached to make a go-hei" - }, - { - "example": "造幣", - "reading": "ゾウヘイ", - "meaning": "coinage, mintage" - }, - { - "example": "衰幣", - "reading": "スイヘイ", - "meaning": "decline" - } - ], - "kunyomiExamples": [ - { - "example": "幣", - "reading": "へい", - "meaning": "staff with plaited paper streamers" - }, - { - "example": "幣を奉る", - "reading": "ぬさをたてまつる", - "meaning": "to offer a wand with hemp and paper streamers to a Shinto god" - }, - { - "example": "大幣", - "reading": "おおぬさ", - "meaning": "streamers (made of linen, paper, etc.) attached to a long pole (used as a wand in grand purification ceremonies), being in great demand" - }, - { - "example": "小幣", - "reading": "こぬさ", - "meaning": "small purification wand, thinly cut hemp or paper mixed with rice (scattered as an offering to the gods)" - } - ], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "乞", - "冂", - "巾", - "并", - "攵" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24163_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e63.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e63.gif", - "uri": "http://jisho.org/search/%E5%B9%A3%23kanji" - }, - { - "query": "弊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1750", - "strokeCount": 15, - "meaning": "abuse, evil, vice, breakage", - "kunyomi": [], - "onyomi": [ - "ヘイ" - ], - "onyomiExamples": [ - { - "example": "弊", - "reading": "ヘイ", - "meaning": "bad habit, harm, my, our" - }, - { - "example": "弊害", - "reading": "ヘイガイ", - "meaning": "harmful effect, harmful influence, evil practice, abuse, malady" - }, - { - "example": "疲弊", - "reading": "ヒヘイ", - "meaning": "exhaustion, fatigue, impoverishment, (financial) exhaustion, ruin" - }, - { - "example": "病弊", - "reading": "ビョウヘイ", - "meaning": "evil influence, ill effect" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "廾", - "meaning": "two hands, twenty" - }, - "parts": [ - "乞", - "冂", - "尚", - "巾", - "并", - "廾", - "攵", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24330_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f0a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f0a.gif", - "uri": "http://jisho.org/search/%E5%BC%8A%23kanji" - }, - { - "query": "蔽", - "found": true, - "taughtIn": "junior high", - "strokeCount": 15, - "meaning": "cover, shade, mantle, capsize, be ruined", - "kunyomi": [ - "おお.う", - "おお.い" - ], - "onyomi": [ - "ヘイ", - "ヘツ", - "フツ" - ], - "onyomiExamples": [ - { - "example": "障屏", - "reading": "ショウヘイ", - "meaning": "partitions in a Japanese house (e.g. screens, sliding doors, etc.)" - }, - { - "example": "遮蔽", - "reading": "シャヘイ", - "meaning": "shielding, sheltering, screening, shading, masking" - } - ], - "kunyomiExamples": [ - { - "example": "覆う", - "reading": "おおう", - "meaning": "to cover, to hide, to conceal, to wrap, to disguise" - }, - { - "example": "覆い", - "reading": "おおい", - "meaning": "cover, mantle, shroud, hood" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "乞", - "冂", - "尚", - "巾", - "并", - "攵", - "艾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34109_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0853d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/853d.gif", - "uri": "http://jisho.org/search/%E8%94%BD%23kanji" - }, - { - "query": "餅", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2152", - "strokeCount": 14, - "meaning": "mochi rice cake", - "kunyomi": [ - "もち", - "もちい" - ], - "onyomi": [ - "ヘイ", - "ヒョウ" - ], - "onyomiExamples": [ - { - "example": "餅餤", - "reading": "ベイダン", - "meaning": "Heian-period pastry made of duck or goose eggs mixed with vegetables boiled and wrapped in mochi which is then cut into squares" - }, - { - "example": "餅盤", - "reading": "ヘイバン", - "meaning": "laccolith" - }, - { - "example": "画餅", - "reading": "ガベイ", - "meaning": "something useless, picture of rice cakes" - }, - { - "example": "供餅", - "reading": "クモチ", - "meaning": "mochi rice cakes used as offering" - } - ], - "kunyomiExamples": [ - { - "example": "餅", - "reading": "もち", - "meaning": "mochi, (sticky) rice cake" - }, - { - "example": "餅網", - "reading": "もちあみ", - "meaning": "grill or grate for toasting rice cakes" - }, - { - "example": "椿餅", - "reading": "つばいもちい", - "meaning": "rice-cake sweet sandwiched between two camellia leaves" - }, - { - "example": "五平餅", - "reading": "ごへいもち", - "meaning": "skewered sweet rice cakes served with soy sauce and miso" - }, - { - "example": "餅", - "reading": "もち", - "meaning": "mochi, (sticky) rice cake" - }, - { - "example": "餅いなり", - "reading": "もちいなり", - "meaning": "sticky rice wrapped in deep-fried tofu" - }, - { - "example": "椿餅", - "reading": "つばいもちい", - "meaning": "rice-cake sweet sandwiched between two camellia leaves" - }, - { - "example": "愛敬の餅", - "reading": "あいきょうのもちい", - "meaning": "Heian-period ceremony where a newlywed groom and bride eat a rice-cake on the third night after the wedding ceremony" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "ノ", - "一", - "二", - "并", - "廾", - "食", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39173_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09905.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9905.gif", - "uri": "http://jisho.org/search/%E9%A4%85%23kanji" - }, - { - "query": "壁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1037", - "strokeCount": 16, - "meaning": "wall, lining (stomach), fence", - "kunyomi": [ - "かべ" - ], - "onyomi": [ - "ヘキ" - ], - "onyomiExamples": [ - { - "example": "壁", - "reading": "カベ", - "meaning": "wall, partition, barrier, obstacle, Chinese \"Wall\" constellation (one of the 28 mansions)" - }, - { - "example": "壁画", - "reading": "ヘキガ", - "meaning": "fresco, mural, wall painting" - }, - { - "example": "隔壁", - "reading": "カクヘキ", - "meaning": "barrier wall, bulkhead, partition, septum, diaphragm" - }, - { - "example": "内壁", - "reading": "ナイヘキ", - "meaning": "inner wall" - } - ], - "kunyomiExamples": [ - { - "example": "壁", - "reading": "かべ", - "meaning": "wall, partition, barrier, obstacle, Chinese \"Wall\" constellation (one of the 28 mansions)" - }, - { - "example": "壁掛け", - "reading": "かべかけ", - "meaning": "wall-mounted ornament, wall decoration, wall hanging, wall-mounted" - }, - { - "example": "白壁", - "reading": "しらかべ", - "meaning": "white plaster wall, tofu, bean curd" - }, - { - "example": "厚い壁", - "reading": "あついかべ", - "meaning": "hard-to-overcome obstacle, high hurdle, thick wall" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "十", - "口", - "土", - "尸", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22721_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058c1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58c1.gif", - "uri": "http://jisho.org/search/%E5%A3%81%23kanji" - }, - { - "query": "璧", - "found": true, - "taughtIn": "junior high", - "strokeCount": 18, - "meaning": "sphere, ball", - "kunyomi": [ - "たま" - ], - "onyomi": [ - "ヘキ" - ], - "onyomiExamples": [ - { - "example": "璧", - "reading": "ヘキ", - "meaning": "bi (ancient Chinese artifact; flat jade or glass disc with a circular hole in the centre)" - }, - { - "example": "圭璧", - "reading": "ケイヘキ", - "meaning": "ritual jades worn by feudal lords in ancient China" - }, - { - "example": "双璧", - "reading": "ソウヘキ", - "meaning": "(two) matchless things, (two) matchless people, pair of bright jewels" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "十", - "口", - "尸", - "王", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29863_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/074a7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/74a7.gif", - "uri": "http://jisho.org/search/%E7%92%A7%23kanji" - }, - { - "query": "癖", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1973", - "strokeCount": 18, - "meaning": "mannerism, habit, vice, trait, fault, kink", - "kunyomi": [ - "くせ", - "くせ.に" - ], - "onyomi": [ - "ヘキ" - ], - "onyomiExamples": [ - { - "example": "癖", - "reading": "クセ", - "meaning": "habit (often a bad habit, i.e. vice), tendency, peculiarity, idiosyncrasy, mannerism, crease, wrinkle, curl, kink" - }, - { - "example": "妄想癖", - "reading": "モウソウヘキ", - "meaning": "day-dreamer, fantasist" - }, - { - "example": "盗癖", - "reading": "トウヘキ", - "meaning": "kleptomania" - } - ], - "kunyomiExamples": [ - { - "example": "癖", - "reading": "くせ", - "meaning": "habit (often a bad habit, i.e. vice), tendency, peculiarity, idiosyncrasy, mannerism, crease, wrinkle, curl, kink" - }, - { - "example": "癖に", - "reading": "くせに", - "meaning": "and yet, though, when, in spite of" - }, - { - "example": "悪い癖", - "reading": "わるいくせ", - "meaning": "bad habit, bad habits" - }, - { - "example": "自傷癖", - "reading": "じしょうくせ", - "meaning": "(practice of) self-injury, (habit of) self-harm" - }, - { - "example": "癖に", - "reading": "くせに", - "meaning": "and yet, though, when, in spite of" - }, - { - "example": "癖になる", - "reading": "くせになる", - "meaning": "to become a (bad) habit, to get accustomed to" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "十", - "口", - "尸", - "疔", - "立", - "辛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30294_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07656.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7656.gif", - "uri": "http://jisho.org/search/%E7%99%96%23kanji" - }, - { - "query": "蔑", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2483", - "strokeCount": 14, - "meaning": "ignore, despise, neglect, ridicule", - "kunyomi": [ - "ないがしろ", - "なみ.する", - "くらい", - "さげす.む" - ], - "onyomi": [ - "ベツ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "蔑ろ", - "reading": "ないがしろ", - "meaning": "(a) slight, disrespect, making light (of), neglect" - }, - { - "example": "蔑ろにする", - "reading": "ないがしろにする", - "meaning": "to make light of, to ignore, to slight" - }, - { - "example": "蔑する", - "reading": "なみする", - "meaning": "to set at naught, to ignore, to disregard" - }, - { - "example": "蔑む", - "reading": "さげすむ", - "meaning": "to scorn, to despise, to hold in contempt, to look down on, to disdain" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "戈", - "艾", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34065_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08511.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8511.gif", - "uri": "http://jisho.org/search/%E8%94%91%23kanji" - }, - { - "query": "偏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1340", - "strokeCount": 11, - "meaning": "partial, side, left-side radical, inclining, biased", - "kunyomi": [ - "かたよ.る" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "偏", - "reading": "ヘン", - "meaning": "left-hand radical of a character" - }, - { - "example": "偏見", - "reading": "ヘンケン", - "meaning": "prejudice, bias, distorted view" - }, - { - "example": "普遍", - "reading": "フヘン", - "meaning": "universal, general, ubiquitous, omnipresent" - }, - { - "example": "貝偏", - "reading": "カイヘン", - "meaning": "kanji \"shell\" radical at left" - } - ], - "kunyomiExamples": [ - { - "example": "偏る", - "reading": "かたよる", - "meaning": "to lean (to one side), to incline, to be unbalanced (e.g. diet), to be unduly weighted towards, to be concentrated on, to be partial, to be biased, to be prejudiced" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "冂", - "冊", - "化", - "尸", - "廾", - "戸", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20559_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0504f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/504f.gif", - "uri": "http://jisho.org/search/%E5%81%8F%23kanji" - }, - { - "query": "遍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1845", - "strokeCount": 12, - "meaning": "everywhere, times, widely, generally", - "kunyomi": [ - "あまね.く" - ], - "onyomi": [ - "ヘン" - ], - "onyomiExamples": [ - { - "example": "遍", - "reading": "ヘン", - "meaning": "number of times" - }, - { - "example": "遍歴", - "reading": "ヘンレキ", - "meaning": "travels, pilgrimage, itinerancy" - }, - { - "example": "普遍", - "reading": "フヘン", - "meaning": "universal, general, ubiquitous, omnipresent" - } - ], - "kunyomiExamples": [ - { - "example": "普く", - "reading": "あまねく", - "meaning": "widely, extensively, far and wide, everywhere, all around, generally, universally" - } - ], - "radical": { - "symbol": "辵", - "forms": [ - "辶", - "⻌", - "⻍" - ], - "meaning": "walk" - }, - "parts": [ - "一", - "冂", - "冊", - "尸", - "廾", - "戸", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36941_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0904d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/904d.gif", - "uri": "http://jisho.org/search/%E9%81%8D%23kanji" - }, - { - "query": "哺", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2461", - "strokeCount": 10, - "meaning": "nurse, suckle", - "kunyomi": [ - "はぐく.む", - "ふく.む" - ], - "onyomi": [ - "ホ" - ], - "onyomiExamples": [ - { - "example": "哺", - "reading": "ホ", - "meaning": "holding food in one's mouth, food held in one's mouth" - }, - { - "example": "保育", - "reading": "ホイク", - "meaning": "nursing, nurturing, rearing, lactation, suckling" - }, - { - "example": "握髪吐哺", - "reading": "アクハツトホ", - "meaning": "(a statesman making) extraordinary efforts to find and employ capable persons (persons of great wisdom)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "丶", - "十", - "口", - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21754_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/054fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/54fa.gif", - "uri": "http://jisho.org/search/%E5%93%BA%23kanji" - }, - { - "query": "捕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "604", - "strokeCount": 10, - "meaning": "catch, capture", - "kunyomi": [ - "と.らえる", - "と.らわれる", - "と.る", - "とら.える", - "とら.われる", - "つか.まえる", - "つか.まる" - ], - "onyomi": [ - "ホ" - ], - "onyomiExamples": [ - { - "example": "捕鯨", - "reading": "ホゲイ", - "meaning": "whaling, whale hunting, whale fishing" - }, - { - "example": "捕獲", - "reading": "ホカク", - "meaning": "capture, seizure" - }, - { - "example": "採捕", - "reading": "サイホ", - "meaning": "collecting (plants and animals), gathering, capturing, catching" - }, - { - "example": "再逮捕", - "reading": "サイタイホ", - "meaning": "rearrest, recapture" - } - ], - "kunyomiExamples": [ - { - "example": "捉える", - "reading": "とらえる", - "meaning": "to catch, to capture, to seize, to arrest, to grab, to catch hold of, to grasp (e.g. meaning), to perceive, to capture (e.g. features), to captivate, to move (one's heart)" - }, - { - "example": "捕らわれる", - "reading": "とらわれる", - "meaning": "to be caught, to be captured, to be taken prisoner, to be arrested, to be apprehended, to be seized with (fear, etc.), to be a slave to, to stick to, to adhere to, to be swayed by" - }, - { - "example": "捕る", - "reading": "とる", - "meaning": "to take, to catch, to capture" - }, - { - "example": "捉える", - "reading": "とらえる", - "meaning": "to catch, to capture, to seize, to arrest, to grab, to catch hold of, to grasp (e.g. meaning), to perceive, to capture (e.g. features), to captivate, to move (one's heart)" - }, - { - "example": "捕らわれる", - "reading": "とらわれる", - "meaning": "to be caught, to be captured, to be taken prisoner, to be arrested, to be apprehended, to be seized with (fear, etc.), to be a slave to, to stick to, to adhere to, to be swayed by" - }, - { - "example": "捕まえる", - "reading": "つかまえる", - "meaning": "to catch, to capture, to arrest, to seize, to restrain, to grab, to clutch, to grasp, to seize, to hold on to, to catch hold of (someone), to stop (e.g. a stranger in the street), to hail (a taxi, waiter, etc.), to hold (someone) back, to detain, towards (someone), at (someone)" - }, - { - "example": "捕まる", - "reading": "つかまる", - "meaning": "to be caught, to be arrested, to hold on to, to grasp, to find (e.g. proof), to get (e.g. a taxi), to be detained by" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "丶", - "十", - "扎", - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25429_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06355.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6355.gif", - "uri": "http://jisho.org/search/%E6%8D%95%23kanji" - }, - { - "query": "舗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1412", - "strokeCount": 15, - "meaning": "shop, store, pave", - "kunyomi": [], - "onyomi": [ - "ホ" - ], - "onyomiExamples": [ - { - "example": "舗", - "reading": "ホ", - "meaning": "shop, store, counter for foldable things such as maps, etc." - }, - { - "example": "舗装", - "reading": "ホソウ", - "meaning": "pavement, road surface" - }, - { - "example": "老舗", - "reading": "シニセ", - "meaning": "long-established shop, shop of long standing, old shop" - }, - { - "example": "名舗", - "reading": "メイホ", - "meaning": "quality shop, famous store" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "个", - "丶", - "十", - "口", - "土", - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33303_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08217.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8217.gif", - "uri": "http://jisho.org/search/%E8%88%97%23kanji" - }, - { - "query": "募", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "809", - "strokeCount": 12, - "meaning": "recruit, campaign, gather (contributions), enlist, grow violent", - "kunyomi": [ - "つの.る" - ], - "onyomi": [ - "ボ" - ], - "onyomiExamples": [ - { - "example": "募集", - "reading": "ボシュウ", - "meaning": "recruitment, invitation, selection, advertisement, taking applications, raising (funds, donations, etc.), collection, subscription, solicitation, flotation (of shares, loans, etc.)" - }, - { - "example": "募金", - "reading": "ボキン", - "meaning": "fund-raising, collection of funds" - }, - { - "example": "公募", - "reading": "コウボ", - "meaning": "public appeal (e.g. for contributions), public offering (of securities), public advertisement (of a post), open recruitment" - }, - { - "example": "急募", - "reading": "キュウボ", - "meaning": "hurried recruitment, urgent recruitment" - } - ], - "kunyomiExamples": [ - { - "example": "募る", - "reading": "つのる", - "meaning": "to become stronger, to grow in intensity, to grow violent, to become worse, to invite contributions, etc., to solicit help, participation, etc., to recruit (e.g. soldiers)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "大", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21215_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052df.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52df.gif", - "uri": "http://jisho.org/search/%E5%8B%9F%23kanji" - }, - { - "query": "慕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2100", - "strokeCount": 14, - "meaning": "pining, yearn for, love dearly, adore", - "kunyomi": [ - "した.う" - ], - "onyomi": [ - "ボ" - ], - "onyomiExamples": [ - { - "example": "慕情", - "reading": "ボジョウ", - "meaning": "longing, yearning" - }, - { - "example": "思慕", - "reading": "シボ", - "meaning": "yearning, longing for, deep affection" - }, - { - "example": "哀慕", - "reading": "アイボ", - "meaning": "cherish the memory of, yearn for" - } - ], - "kunyomiExamples": [ - { - "example": "慕う", - "reading": "したう", - "meaning": "to yearn for, to long for, to pine for, to miss, to love dearly, to adore, to follow (someone), to idolize (for virtue, learning, status, etc.)" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "大", - "心", - "日", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24917_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06155.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6155.gif", - "uri": "http://jisho.org/search/%E6%85%95%23kanji" - }, - { - "query": "簿", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1358", - "strokeCount": 19, - "meaning": "register, record book", - "kunyomi": [], - "onyomi": [ - "ボ" - ], - "onyomiExamples": [ - { - "example": "簿記", - "reading": "ボキ", - "meaning": "journalization (accounts), journalisation, bookkeeping" - }, - { - "example": "簿外", - "reading": "ボガイ", - "meaning": "unaccounted, off the books" - }, - { - "example": "出納簿", - "reading": "スイトウボ", - "meaning": "cashbook" - }, - { - "example": "乗客名簿", - "reading": "ジョウキャクメイボ", - "meaning": "list of passengers, passenger manifest, passenger register" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "丶", - "乞", - "十", - "寸", - "汁", - "田", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31807_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c3f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c3f.gif", - "uri": "http://jisho.org/search/%E7%B0%BF%23kanji" - }, - { - "query": "芳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1302", - "strokeCount": 7, - "meaning": "perfume, balmy, favorable, fragrant", - "kunyomi": [ - "かんば.しい" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "芳香", - "reading": "ホウコウ", - "meaning": "perfume, fragrance, aroma, balm, sweet scent" - }, - { - "example": "芳韻", - "reading": "ホウイン", - "meaning": "Chinese poem, poem, rhyme" - }, - { - "example": "遺芳", - "reading": "イホウ", - "meaning": "memory or autograph of deceased" - }, - { - "example": "余芳", - "reading": "ヨホウ", - "meaning": "lingering fragrance, continuing fame (after death)" - } - ], - "kunyomiExamples": [ - { - "example": "芳しい", - "reading": "かんばしい", - "meaning": "sweet-smelling, fragrant, aromatic, good (reputation, condition, results, etc.), favorable" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "方", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33459_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/082b3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/82b3.gif", - "uri": "http://jisho.org/search/%E8%8A%B3%23kanji" - }, - { - "query": "邦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "654", - "strokeCount": 7, - "meaning": "home country, country, Japan", - "kunyomi": [ - "くに" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "邦楽", - "reading": "ホウガク", - "meaning": "Japanese music (esp. traditional Japanese music)" - }, - { - "example": "邦画", - "reading": "ホウガ", - "meaning": "Japanese film, Japanese painting" - }, - { - "example": "東邦", - "reading": "トウホウ", - "meaning": "Oriental country, the Orient" - }, - { - "example": "友邦", - "reading": "ユウホウ", - "meaning": "friendly nation" - } - ], - "kunyomiExamples": [ - { - "example": "国", - "reading": "くに", - "meaning": "country, state, region, national government, central government, home (i.e. hometown, home country), province (of Japan), land, earth" - } - ], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "ノ", - "二", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37030_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090a6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90a6.gif", - "uri": "http://jisho.org/search/%E9%82%A6%23kanji" - }, - { - "query": "奉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1624", - "strokeCount": 8, - "meaning": "observance, offer, present, dedicate", - "kunyomi": [ - "たてまつ.る", - "まつ.る", - "ほう.ずる" - ], - "onyomi": [ - "ホウ", - "ブ" - ], - "onyomiExamples": [ - { - "example": "奉仕", - "reading": "ホウシ", - "meaning": "service, ministry, attendance, church work, offering goods at a reduced price, providing a service for free" - }, - { - "example": "奉公", - "reading": "ホウコウ", - "meaning": "live-in domestic service, live-in apprenticeship, public duty, public service" - }, - { - "example": "奉行", - "reading": "ブギョウ", - "meaning": "magistrate, shogunate administrator" - }, - { - "example": "奉行所", - "reading": "ブギョウショ", - "meaning": "magistrate's office" - }, - { - "example": "供奉", - "reading": "グブ", - "meaning": "accompanying, being in attendance on, inner offerer (any of the 10 high-ranking monks serving at the inner offering hall)" - }, - { - "example": "内供奉", - "reading": "ナイグブ", - "meaning": "inner offerer (any of the 10 high-ranking monks serving at the inner offering hall)" - } - ], - "kunyomiExamples": [ - { - "example": "奉る", - "reading": "たてまつる", - "meaning": "to offer, to present, to set someone up in a high position, to revere at a distance, to do respectfully" - }, - { - "example": "奉る", - "reading": "たてまつる", - "meaning": "to offer, to present, to set someone up in a high position, to revere at a distance, to do respectfully" - }, - { - "example": "奉ずる", - "reading": "ほうずる", - "meaning": "to present, to dedicate, to obey, to follow, to believe in, to serve, to proudly bear" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "一", - "二", - "人", - "大", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22857_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05949.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5949.gif", - "uri": "http://jisho.org/search/%E5%A5%89%23kanji" - }, - { - "query": "抱", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "871", - "strokeCount": 8, - "meaning": "embrace, hug, hold in arms", - "kunyomi": [ - "だ.く", - "いだ.く", - "かか.える" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "抱負", - "reading": "ホウフ", - "meaning": "aspiration, ambition, pretension" - }, - { - "example": "抱擁", - "reading": "ホウヨウ", - "meaning": "embrace, hug, holding in one's arms" - }, - { - "example": "懐抱", - "reading": "カイホウ", - "meaning": "bearing in mind (a thought, feeling, etc.), embrace, hug, holding in one's arms, bosom, (breast) pocket" - }, - { - "example": "合抱", - "reading": "ゴウホウ", - "meaning": "armful" - } - ], - "kunyomiExamples": [ - { - "example": "抱く", - "reading": "だく", - "meaning": "to hold in one's arms (e.g. a baby), to embrace, to hug, to have sex with, to make love to, to sleep with, to sit on (eggs), to brood" - }, - { - "example": "抱く", - "reading": "いだく", - "meaning": "to hold in one's arms (e.g. a baby), to embrace, to hug, to have (a thought or feeling), to hold, to harbour (suspicion, doubt, etc.), to harbor, to bear (a grudge, ill will, etc.), to entertain (hope, illusions, etc.), to cherish (e.g. an ambition)" - }, - { - "example": "抱える", - "reading": "かかえる", - "meaning": "to hold or carry under or in the arms, to have (esp. problems, debts, etc.), to employ, to engage, to hire" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "勹", - "已", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25265_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062b1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62b1.gif", - "uri": "http://jisho.org/search/%E6%8A%B1%23kanji" - }, - { - "query": "泡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1872", - "strokeCount": 8, - "meaning": "bubbles, foam, suds, froth", - "kunyomi": [ - "あわ" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "泡影", - "reading": "ホウエイ", - "meaning": "bubbles and shadows, something transient" - }, - { - "example": "宝瓶", - "reading": "ホウヒン", - "meaning": "handleless Japanese tea pot" - }, - { - "example": "水泡", - "reading": "スイホウ", - "meaning": "foam, bubble, nothing" - }, - { - "example": "気泡", - "reading": "キホウ", - "meaning": "(air) bubble (esp. in a liquid)" - } - ], - "kunyomiExamples": [ - { - "example": "泡", - "reading": "あわ", - "meaning": "bubble, foam, froth, head on beer" - }, - { - "example": "泡盛", - "reading": "あわもり", - "meaning": "awamori, strong Okinawan liquor distilled from rice or millet" - }, - { - "example": "口角泡", - "reading": "こうかくあわ", - "meaning": "frothing at the mouth" - }, - { - "example": "一泡", - "reading": "ひとあわ", - "meaning": "blow, shock" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "勹", - "已", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27873_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ce1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ce1.gif", - "uri": "http://jisho.org/search/%E6%B3%A1%23kanji" - }, - { - "query": "胞", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1379", - "strokeCount": 9, - "meaning": "placenta, sac, sheath", - "kunyomi": [], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "胞子", - "reading": "ホウシ", - "meaning": "spore" - }, - { - "example": "胞衣", - "reading": "エナ", - "meaning": "afterbirth, placenta" - }, - { - "example": "卵胞", - "reading": "ランポウ", - "meaning": "(ovarian) follicle" - }, - { - "example": "肺胞", - "reading": "ハイホウ", - "meaning": "pulmonary alveolus, alveoli, lung cavity, air cell" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "勹", - "已", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32990_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080de.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80de.gif", - "uri": "http://jisho.org/search/%E8%83%9E%23kanji" - }, - { - "query": "俸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1834", - "strokeCount": 10, - "meaning": "stipend, salary", - "kunyomi": [], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "俸", - "reading": "ホウ", - "meaning": "salary" - }, - { - "example": "俸給", - "reading": "ホウキュウ", - "meaning": "salary (esp. public employees), wages, pay" - }, - { - "example": "号俸", - "reading": "ゴウホウ", - "meaning": "gradational salary" - }, - { - "example": "増俸", - "reading": "ゾウホウ", - "meaning": "salary increase, raise" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "二", - "人", - "化", - "大", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20472_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04ff8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4ff8.gif", - "uri": "http://jisho.org/search/%E4%BF%B8%23kanji" - }, - { - "query": "倣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2454", - "strokeCount": 10, - "meaning": "emulate, imitate", - "kunyomi": [ - "なら.う" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "倣う", - "reading": "ならう", - "meaning": "to imitate, to follow, to emulate" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "乞", - "化", - "攵", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20515_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05023.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5023.gif", - "uri": "http://jisho.org/search/%E5%80%A3%23kanji" - }, - { - "query": "峰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1836", - "strokeCount": 10, - "meaning": "summit, peak", - "kunyomi": [ - "みね", - "ね" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "峰頭", - "reading": "ホウトウ", - "meaning": "summit of a peak" - }, - { - "example": "未踏峰", - "reading": "ミトウホウ", - "meaning": "unclimbed mountain" - }, - { - "example": "高峰", - "reading": "コウホウ", - "meaning": "high mountain, lofty peak" - } - ], - "kunyomiExamples": [ - { - "example": "峰", - "reading": "みね", - "meaning": "peak, summit, ridge, top, back of a blade" - }, - { - "example": "峰打ち", - "reading": "みねうち", - "meaning": "striking with the back of the sword" - }, - { - "example": "剣ヶ峰", - "reading": "けんがみね", - "meaning": "rim of a volcano, esp. Mt. Fuji, wrestling ring, dire or risky situation with no room for error, sink-or-swim position" - }, - { - "example": "峰々", - "reading": "みねみね", - "meaning": "peaks" - }, - { - "example": "剣ヶ峰", - "reading": "けんがみね", - "meaning": "rim of a volcano, esp. Mt. Fuji, wrestling ring, dire or risky situation with no room for error, sink-or-swim position" - }, - { - "example": "峰々", - "reading": "みねみね", - "meaning": "peaks" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "一", - "夂", - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23792_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05cf0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5cf0.gif", - "uri": "http://jisho.org/search/%E5%B3%B0%23kanji" - }, - { - "query": "砲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1268", - "strokeCount": 10, - "meaning": "cannon, gun", - "kunyomi": [], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "砲", - "reading": "ホウ", - "meaning": "gun, cannon, artillery, ordnance" - }, - { - "example": "砲火", - "reading": "ホウカ", - "meaning": "gunfire, fire" - }, - { - "example": "主砲", - "reading": "シュホウ", - "meaning": "main battery, main armament" - }, - { - "example": "迫撃砲", - "reading": "ハクゲキホウ", - "meaning": "mortar" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "勹", - "口", - "已", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30770_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07832.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7832.gif", - "uri": "http://jisho.org/search/%E7%A0%B2%23kanji" - }, - { - "query": "崩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "778", - "strokeCount": 11, - "meaning": "crumble, die, demolish, level", - "kunyomi": [ - "くず.れる", - "-くず.れ", - "くず.す" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "崩落", - "reading": "ホウラク", - "meaning": "collapse, break, cave-in, crash, (market) decline" - }, - { - "example": "崩壊", - "reading": "ホウカイ", - "meaning": "collapse, crumbling, breaking down, caving in, (radioactive) decay, disintegration" - }, - { - "example": "壊崩", - "reading": "カイホウ", - "meaning": "collapse, crumbling, breaking down, caving in" - } - ], - "kunyomiExamples": [ - { - "example": "崩れる", - "reading": "くずれる", - "meaning": "to collapse, to crumble, to get out of shape, to lose one's shape, to become disorganized, to become untidy, to break down, to be thrown into disarray, to crash (stock market), to slump, to decline, to break money into small change, to turn bad (e.g. weather), to change for the worse, to deteriorate" - }, - { - "example": "崩す", - "reading": "くずす", - "meaning": "to destroy, to demolish, to pull down, to tear down, to level, to disturb, to put into disorder, to throw off balance, to make shaky, to relax (one's pose), to make oneself at ease, to break (a bill), to change, to make change, to write in cursive style, to write in running style, to break into a smile, to let off a smile, to lower (a price)" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "山", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23849_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05d29.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5d29.gif", - "uri": "http://jisho.org/search/%E5%B4%A9%23kanji" - }, - { - "query": "蜂", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2223", - "strokeCount": 13, - "meaning": "bee, wasp, hornet", - "kunyomi": [ - "はち" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "蜂起", - "reading": "ホウキ", - "meaning": "uprising, revolt" - }, - { - "example": "蜂窩", - "reading": "ホウカ", - "meaning": "beehive, hive, honeycomb" - }, - { - "example": "寄生蜂", - "reading": "キセイバチ", - "meaning": "parasitoid wasp, parasitic wasp, parasitic bee" - }, - { - "example": "養蜂", - "reading": "ヨウホウ", - "meaning": "beekeeping, apiculture" - } - ], - "kunyomiExamples": [ - { - "example": "蜂", - "reading": "はち", - "meaning": "bee, wasp, hornet" - }, - { - "example": "蜂蜜", - "reading": "はちみつ", - "meaning": "honey" - }, - { - "example": "虻蜂", - "reading": "あぶはち", - "meaning": "horsefly and bee, horsefly and wasp" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "一", - "夂", - "虫", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34562_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08702.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8702.gif", - "uri": "http://jisho.org/search/%E8%9C%82%23kanji" - }, - { - "query": "飽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1780", - "strokeCount": 13, - "meaning": "sated, tired of, bored, satiate", - "kunyomi": [ - "あ.きる", - "あ.かす", - "あ.く" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "飽和", - "reading": "ホウワ", - "meaning": "saturation, satiation" - }, - { - "example": "飽食", - "reading": "ホウショク", - "meaning": "gluttony, satiation, engorgement" - } - ], - "kunyomiExamples": [ - { - "example": "飽きる", - "reading": "あきる", - "meaning": "to get tired of, to lose interest in, to be fed up with, to have enough" - }, - { - "example": "飽かす", - "reading": "あかす", - "meaning": "to bore, to tire, to weary, to stultify, to use lavishly (and without regret)" - }, - { - "example": "飽く", - "reading": "あく", - "meaning": "to tire of, to lose interest in, to be satisfied, to enjoy, to do adequately" - }, - { - "example": "飽くまでも", - "reading": "あくまでも", - "meaning": "to the last, persistency, thoroughness" - } - ], - "radical": { - "symbol": "食", - "forms": [ - "飠" - ], - "meaning": "eat, food" - }, - "parts": [ - "勹", - "已", - "食" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39165_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/098fd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/98fd.gif", - "uri": "http://jisho.org/search/%E9%A3%BD%23kanji" - }, - { - "query": "褒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2073", - "strokeCount": 15, - "meaning": "praise, extol", - "kunyomi": [ - "ほ.める" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "報奨金", - "reading": "ホウショウキン", - "meaning": "cash bonus, reward, bounty" - }, - { - "example": "褒美", - "reading": "ホウビ", - "meaning": "reward, prize" - }, - { - "example": "過褒", - "reading": "カホウ", - "meaning": "excessive praise, overpraise" - } - ], - "kunyomiExamples": [ - { - "example": "褒める", - "reading": "ほめる", - "meaning": "to praise, to commend, to compliment, to speak well of, to speak highly of" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "化", - "口", - "小", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35090_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08912.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8912.gif", - "uri": "http://jisho.org/search/%E8%A4%92%23kanji" - }, - { - "query": "縫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1723", - "strokeCount": 16, - "meaning": "sew, stitch, embroider", - "kunyomi": [ - "ぬ.う" - ], - "onyomi": [ - "ホウ" - ], - "onyomiExamples": [ - { - "example": "縫製", - "reading": "ホウセイ", - "meaning": "sewing (by machine)" - }, - { - "example": "縫腋", - "reading": "ホウエキ", - "meaning": "stitched side of some traditional Japanese clothing, clothing with such a stitched side, robe with a round collar, stitched sides and a ran, worn by the emperor and high-ranking officials" - }, - { - "example": "弥縫", - "reading": "ビホウ", - "meaning": "patching up" - }, - { - "example": "天衣無縫", - "reading": "テンイムホウ", - "meaning": "perfect beauty with no trace of artifice, flawless" - } - ], - "kunyomiExamples": [ - { - "example": "縫う", - "reading": "ぬう", - "meaning": "to sew, to stitch, to weave one's way (e.g. through a crowd)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "一", - "夂", - "小", - "幺", - "糸", - "込", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32299_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07e2b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7e2b.gif", - "uri": "http://jisho.org/search/%E7%B8%AB%23kanji" - }, - { - "query": "乏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1646", - "strokeCount": 4, - "meaning": "destitution, scarce, limited", - "kunyomi": [ - "とぼ.しい", - "とも.しい" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "乏精子症", - "reading": "ボウセイシショウ", - "meaning": "oligozoospermia, oligospermia" - }, - { - "example": "乏尿", - "reading": "ボウニョウ", - "meaning": "oliguria" - }, - { - "example": "耐乏", - "reading": "タイボウ", - "meaning": "austerity, voluntary privation" - }, - { - "example": "困苦窮乏", - "reading": "コンクキュウボウ", - "meaning": "hardships and privations" - } - ], - "kunyomiExamples": [ - { - "example": "乏しい", - "reading": "とぼしい", - "meaning": "meagre, meager, scarce, limited, destitute, hard up, lacking, scanty, poor" - }, - { - "example": "乏しい", - "reading": "とぼしい", - "meaning": "meagre, meager, scarce, limited, destitute, hard up, lacking, scanty, poor" - } - ], - "radical": { - "symbol": "丿", - "meaning": "slash" - }, - "parts": [ - "ノ", - "丶", - "乙", - "亠", - "廴" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20047_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e4f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e4f.gif", - "uri": "http://jisho.org/search/%E4%B9%8F%23kanji" - }, - { - "query": "忙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1475", - "strokeCount": 6, - "meaning": "busy, occupied, restless", - "kunyomi": [ - "いそが.しい", - "せわ.しい", - "おそ.れる", - "うれえるさま" - ], - "onyomi": [ - "ボウ", - "モウ" - ], - "onyomiExamples": [ - { - "example": "忙殺", - "reading": "ボウサツ", - "meaning": "being extremely busy, being swamped with work" - }, - { - "example": "忙殺される", - "reading": "ボウサツサレル", - "meaning": "to be very busily occupied, to be swamped with work" - }, - { - "example": "煩忙", - "reading": "ハンボウ", - "meaning": "pressure of business, busy" - } - ], - "kunyomiExamples": [ - { - "example": "忙しい", - "reading": "いそがしい", - "meaning": "busy, occupied, hectic, restless, hurried, fidgety" - }, - { - "example": "忙しい", - "reading": "せわしい", - "meaning": "busy, hectic, frantic, restless, hurried, fidgety" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "亠", - "亡", - "忙" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24537_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05fd9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5fd9.gif", - "uri": "http://jisho.org/search/%E5%BF%99%23kanji" - }, - { - "query": "坊", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1832", - "strokeCount": 7, - "meaning": "boy, priest's residence, priest", - "kunyomi": [], - "onyomi": [ - "ボウ", - "ボッ" - ], - "onyomiExamples": [ - { - "example": "坊", - "reading": "ボウ", - "meaning": "bonze, monk, monk's dwelling, boy, son, sonny, I, me, little, person who is ..." - }, - { - "example": "坊さん", - "reading": "ボウサン", - "meaning": "Buddhist priest, monk, boy" - }, - { - "example": "本因坊", - "reading": "ホンインボウ", - "meaning": "Hon'inbō, Honinbo, grand master of the game of go" - }, - { - "example": "厨房", - "reading": "チュウボウ", - "meaning": "kitchen, galley, (Internet) troll" - }, - { - "example": "坊ちゃん", - "reading": "ボッチャン", - "meaning": "son (of others), boy, young master, green young man from a well-to-do family, young man innocent of the ways of the world" - }, - { - "example": "坊ちゃん刈り", - "reading": "ボッチャンガリ", - "meaning": "bowl cut, mushroom cut" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22346_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0574a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/574a.gif", - "uri": "http://jisho.org/search/%E5%9D%8A%23kanji" - }, - { - "query": "妨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1482", - "strokeCount": 7, - "meaning": "disturb, prevent, hamper, obstruct", - "kunyomi": [ - "さまた.げる" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "妨害", - "reading": "ボウガイ", - "meaning": "disturbance, obstruction, hindrance, jamming, interference" - }, - { - "example": "妨害機", - "reading": "ボウガイキ", - "meaning": "jammer (e.g. radio signals), interceptor (aircraft)" - }, - { - "example": "公妨", - "reading": "コウボウ", - "meaning": "interference with a public servant in the execution of his or her duties" - }, - { - "example": "転び公妨", - "reading": "コロビコウボウ", - "meaning": "falsely-provoked arrest for obstruction, police pretending to be knocked down so as to have grounds for an arrest" - } - ], - "kunyomiExamples": [ - { - "example": "妨げる", - "reading": "さまたげる", - "meaning": "to disturb, to prevent, to obstruct, to hinder" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22952_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/059a8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/59a8.gif", - "uri": "http://jisho.org/search/%E5%A6%A8%23kanji" - }, - { - "query": "房", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "808", - "strokeCount": 8, - "meaning": "tassel, tuft, fringe, bunch, lock (hair), segment (orange), house, room", - "kunyomi": [ - "ふさ" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "房", - "reading": "ボウ", - "meaning": "chamber, room, cell (prison), atrium, home of a monk, monk, Chinese \"room\" constellation (one of the 28 mansions)" - }, - { - "example": "坊主", - "reading": "ボウズ", - "meaning": "Buddhist priest, bonze, close-cropped hair, crew cut, person with a shorn head, boy, sonny, lad, not catching anything (in fishing), the August 20-point card" - }, - { - "example": "書房", - "reading": "ショボウ", - "meaning": "study, library, bookstore, bookshop, publishing company" - }, - { - "example": "工房", - "reading": "コウボウ", - "meaning": "workshop, studio, atelier" - } - ], - "kunyomiExamples": [ - { - "example": "房", - "reading": "ふさ", - "meaning": "tuft (of hair, threads, etc.), fringe, tassel, bunch (of grapes, bananas, etc.), cluster (of flowers), segment (of a tangerine, etc.), section" - }, - { - "example": "房尾巻猿", - "reading": "ふさおまきざる", - "meaning": "brown capuchin, tufted capuchin (Cebus apella)" - }, - { - "example": "一房", - "reading": "ひとふさ", - "meaning": "one tuft (of hair, threads, etc.), one bunch (of grapes, bananas, etc.), one cluster (e.g. of flowers), one segment (of a tangerine, etc.), one section" - } - ], - "radical": { - "symbol": "戶", - "forms": [ - "户", - "戸" - ], - "meaning": "door, house" - }, - "parts": [ - "一", - "尸", - "戸", - "方" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0623f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/623f.gif", - "uri": "http://jisho.org/search/%E6%88%BF%23kanji" - }, - { - "query": "肪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1878", - "strokeCount": 8, - "meaning": "obese, fat", - "kunyomi": [], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "中性脂肪", - "reading": "チュウセイシボウ", - "meaning": "neutral fat, neutral lipid, triglyceride" - }, - { - "example": "動物性脂肪", - "reading": "ドウブツセイシボウ", - "meaning": "animal fat" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "方", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32938_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/080aa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/80aa.gif", - "uri": "http://jisho.org/search/%E8%82%AA%23kanji" - }, - { - "query": "某", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2106", - "strokeCount": 9, - "meaning": "so-and-so, one, a certain, that person", - "kunyomi": [ - "それがし", - "なにがし" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "某", - "reading": "ボウ", - "meaning": "certain, one, I, me" - }, - { - "example": "某月", - "reading": "ボウゲツ", - "meaning": "a certain month" - }, - { - "example": "某々", - "reading": "ボウボウ", - "meaning": "so-and-so" - }, - { - "example": "何がし", - "reading": "ナニガシ", - "meaning": "certain amount, some, certain person, Mr So-and-so, a certain ..., I, me" - } - ], - "kunyomiExamples": [ - { - "example": "某", - "reading": "それがし", - "meaning": "someone, unknown person, I, me" - }, - { - "example": "何がし", - "reading": "なにがし", - "meaning": "certain amount, some, certain person, Mr So-and-so, a certain ..., I, me" - }, - { - "example": "何の某", - "reading": "なんのなにがし", - "meaning": "certain person, certain amount" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "木", - "甘" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26576_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067d0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67d0.gif", - "uri": "http://jisho.org/search/%E6%9F%90%23kanji" - }, - { - "query": "冒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1317", - "strokeCount": 9, - "meaning": "risk, face, defy, dare, damage, assume (a name)", - "kunyomi": [ - "おか.す" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "冒頭", - "reading": "ボウトウ", - "meaning": "beginning, start, outset" - }, - { - "example": "冒険", - "reading": "ボウケン", - "meaning": "adventure, venture, venture which is unlikely to succeed, risky attempt, danger, hazard, risk" - }, - { - "example": "感冒", - "reading": "カンボウ", - "meaning": "cold (illness)" - }, - { - "example": "流行性感冒", - "reading": "リュウコウセイカンボウ", - "meaning": "influenza, flu" - } - ], - "kunyomiExamples": [ - { - "example": "冒す", - "reading": "おかす", - "meaning": "to brave, to risk, to face, to venture, to harm, to afflict, to affect, to desecrate, to profane, to assume (someone else's surname), to take" - } - ], - "radical": { - "symbol": "冂", - "meaning": "open country" - }, - "parts": [ - "日", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20882_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05192.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5192.gif", - "uri": "http://jisho.org/search/%E5%86%92%23kanji" - }, - { - "query": "剖", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1918", - "strokeCount": 10, - "meaning": "divide", - "kunyomi": [], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "剖検", - "reading": "ボウケン", - "meaning": "autopsy, necropsy" - }, - { - "example": "法医解剖", - "reading": "ホウイカイボウ", - "meaning": "medicolegal autopsy, forensic autopsy" - }, - { - "example": "生体解剖", - "reading": "セイタイカイボウ", - "meaning": "vivisection" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "刀", - "forms": [ - "刂" - ], - "meaning": "knife, sword" - }, - "parts": [ - "刈", - "口", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21078_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05256.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5256.gif", - "uri": "http://jisho.org/search/%E5%89%96%23kanji" - }, - { - "query": "紡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1876", - "strokeCount": 10, - "meaning": "spinning", - "kunyomi": [ - "つむ.ぐ" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "紡績", - "reading": "ボウセキ", - "meaning": "spinning (textiles), spun yarn" - }, - { - "example": "紡織", - "reading": "ボウショク", - "meaning": "spinning and weaving" - }, - { - "example": "混紡", - "reading": "コンボウ", - "meaning": "mixed yarn, mixed spinning" - }, - { - "example": "綿紡", - "reading": "メンボウ", - "meaning": "cotton spinning" - } - ], - "kunyomiExamples": [ - { - "example": "紡ぐ", - "reading": "つむぐ", - "meaning": "to spin, to make yarn, to spin (a tale), to assemble (e.g. words), to put together" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "方", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32033_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d21.gif", - "uri": "http://jisho.org/search/%E7%B4%A1%23kanji" - }, - { - "query": "傍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1660", - "strokeCount": 12, - "meaning": "bystander, side, besides, while, nearby, third person", - "kunyomi": [ - "かたわ.ら", - "わき", - "おか-", - "はた", - "そば" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "傍聴", - "reading": "ボウチョウ", - "meaning": "listening (to a lecture, hearing, parliament session, etc.), attending (without participating), sitting in (e.g. on a meeting), observing" - }, - { - "example": "脇見", - "reading": "ワキミ", - "meaning": "looking from the side, looking aside" - }, - { - "example": "路傍", - "reading": "ロボウ", - "meaning": "roadside" - }, - { - "example": "道傍", - "reading": "ドウボウ", - "meaning": "side of the road, roadside" - } - ], - "kunyomiExamples": [ - { - "example": "傍ら", - "reading": "かたわら", - "meaning": "side, edge, beside, besides, nearby, while (doing), in addition to, at the same time" - }, - { - "example": "傍らに", - "reading": "かたわらに", - "meaning": "beside, nearby" - }, - { - "example": "脇役", - "reading": "わきやく", - "meaning": "supporting role (actor), minor role" - }, - { - "example": "脇見", - "reading": "わきみ", - "meaning": "looking from the side, looking aside" - }, - { - "example": "側", - "reading": "そば", - "meaning": "near, close, beside, vicinity, proximity, besides, while, third person" - }, - { - "example": "端から", - "reading": "はたから", - "meaning": "from outside, from the side" - }, - { - "example": "側", - "reading": "そば", - "meaning": "near, close, beside, vicinity, proximity, besides, while, third person" - }, - { - "example": "側から", - "reading": "そばから", - "meaning": "as soon as, right after" - }, - { - "example": "お側", - "reading": "おそば", - "meaning": "near, close, beside, vicinity, proximity, besides, while, attendant, retainer, vassal" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "亠", - "冖", - "化", - "并", - "方", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20621_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0508d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/508d.gif", - "uri": "http://jisho.org/search/%E5%82%8D%23kanji" - }, - { - "query": "帽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1742", - "strokeCount": 12, - "meaning": "cap, headgear", - "kunyomi": [ - "ずきん", - "おお.う" - ], - "onyomi": [ - "ボウ", - "モウ" - ], - "onyomiExamples": [ - { - "example": "帽", - "reading": "ボウ", - "meaning": "hat, cap" - }, - { - "example": "帽子", - "reading": "ボウシ", - "meaning": "hat, cap" - }, - { - "example": "水泳帽", - "reading": "スイエイボウ", - "meaning": "swimming or bathing cap" - }, - { - "example": "海水帽", - "reading": "カイスイボウ", - "meaning": "bathing cap, swimcap" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "巾", - "meaning": "turban, scarf" - }, - "parts": [ - "巾", - "日", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24125_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e3d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e3d.gif", - "uri": "http://jisho.org/search/%E5%B8%BD%23kanji" - }, - { - "query": "貌", - "found": true, - "taughtIn": "junior high", - "strokeCount": 14, - "meaning": "form, appearance, countenance", - "kunyomi": [ - "かたち", - "かたどる" - ], - "onyomi": [ - "ボウ", - "バク" - ], - "onyomiExamples": [ - { - "example": "風貌", - "reading": "フウボウ", - "meaning": "looks, appearance" - }, - { - "example": "外貌", - "reading": "ガイボウ", - "meaning": "outward appearance" - } - ], - "kunyomiExamples": [ - { - "example": "形", - "reading": "かたち", - "meaning": "form, shape, figure, visage" - }, - { - "example": "顔かたち", - "reading": "かおかたち", - "meaning": "features, looks" - } - ], - "radical": { - "symbol": "豸", - "meaning": "cat, badger" - }, - "parts": [ - "儿", - "白", - "豸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35980_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08c8c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8c8c.gif", - "uri": "http://jisho.org/search/%E8%B2%8C%23kanji" - }, - { - "query": "膨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1293", - "strokeCount": 16, - "meaning": "swell, get fat, thick", - "kunyomi": [ - "ふく.らむ", - "ふく.れる" - ], - "onyomi": [ - "ボウ" - ], - "onyomiExamples": [ - { - "example": "膨張", - "reading": "ボウチョウ", - "meaning": "expansion, swelling, increase, growth" - }, - { - "example": "膨大", - "reading": "ボウダイ", - "meaning": "huge, vast, enormous, colossal, extensive, large, swelling, expansion" - }, - { - "example": "海膨", - "reading": "カイボウ", - "meaning": "rise" - } - ], - "kunyomiExamples": [ - { - "example": "膨らむ", - "reading": "ふくらむ", - "meaning": "to expand, to swell (out), to get big, to become inflated" - }, - { - "example": "膨れる", - "reading": "ふくれる", - "meaning": "to swell (out), to expand, to be inflated, to distend, to bulge, to get cross, to get sulky, to pout" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "十", - "口", - "土", - "并", - "彡", - "月", - "豆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33192_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/081a8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/81a8.gif", - "uri": "http://jisho.org/search/%E8%86%A8%23kanji" - }, - { - "query": "謀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1370", - "strokeCount": 16, - "meaning": "conspire, cheat, impose on, plan, devise, scheme, have in mind, deceive", - "kunyomi": [ - "はか.る", - "たばか.る", - "はかりごと" - ], - "onyomi": [ - "ボウ", - "ム" - ], - "onyomiExamples": [ - { - "example": "謀反", - "reading": "ムホン", - "meaning": "rebellion, uprising, insurrection, treason" - }, - { - "example": "謀議", - "reading": "ボウギ", - "meaning": "plot, conspiracy, conference" - }, - { - "example": "無謀", - "reading": "ムボウ", - "meaning": "reckless, thoughtless, rash, ill-advised, impulsive, mad (e.g. scheme)" - }, - { - "example": "共謀", - "reading": "キョウボウ", - "meaning": "conspiracy, collusion, complicity" - }, - { - "example": "謀反", - "reading": "ムホン", - "meaning": "rebellion, uprising, insurrection, treason" - }, - { - "example": "謀反", - "reading": "ムヘン", - "meaning": "plotting to overthrow the government (by assassinating the emperor)" - } - ], - "kunyomiExamples": [ - { - "example": "図る", - "reading": "はかる", - "meaning": "to plan, to attempt, to devise, to plot, to conspire, to scheme, to aim for, to strive for, to work towards, to seek, to deceive, to trick, to take in" - }, - { - "example": "謀る", - "reading": "たばかる", - "meaning": "to work out a plan of deception, to scheme, to take in, to dupe, to deceive, to think up a plan, to think over a plan, to discuss, to consult" - }, - { - "example": "謀", - "reading": "はかりごと", - "meaning": "plan, strategy" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "木", - "甘", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35584_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b00.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b00.gif", - "uri": "http://jisho.org/search/%E8%AC%80%23kanji" - }, - { - "query": "頰", - "found": true, - "taughtIn": "junior high", - "strokeCount": 16, - "meaning": "cheeks, jaw", - "kunyomi": [ - "ほお", - "ほほ" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "頬", - "reading": "ほお", - "meaning": "cheek (of face)" - }, - { - "example": "頬被り", - "reading": "ほおかぶり", - "meaning": "covering one's head with a handkerchief, scarf, etc., tying a cloth around one's head, feigning ignorance, shutting one's eyes (to)" - }, - { - "example": "頬", - "reading": "ほお", - "meaning": "cheek (of face)" - }, - { - "example": "頬杖", - "reading": "ほおづえ", - "meaning": "resting one's chin in one's hands, brace (in construction), angle brace" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38960_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09830.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9830.gif", - "uri": "http://jisho.org/search/%E9%A0%B0%23kanji" - }, - { - "query": "朴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1626", - "strokeCount": 6, - "meaning": "crude, simple, plain, docile", - "kunyomi": [ - "ほう", - "ほお", - "えのき" - ], - "onyomi": [ - "ボク" - ], - "onyomiExamples": [ - { - "example": "朴直", - "reading": "ボクチョク", - "meaning": "simplicity, honesty, naivete" - }, - { - "example": "朴訥", - "reading": "ボクトツ", - "meaning": "unsophisticated, ruggedly honest, artless, unaffected, simple, naive" - }, - { - "example": "淳朴", - "reading": "ジュンボク", - "meaning": "rustic simplicity, homeliness, unsophisticated, naive, honest, simple" - }, - { - "example": "厚朴", - "reading": "コウボク", - "meaning": "Japanese bigleaf magnolia bark (used in Chinese medicine)" - } - ], - "kunyomiExamples": [ - { - "example": "朴の木", - "reading": "ほおのき", - "meaning": "magnolia (Magnolia obovata), Japanese big leaf magnolia" - }, - { - "example": "朴", - "reading": "ほお", - "meaning": "Japanese bigleaf magnolia (Magnolia obovata)" - }, - { - "example": "朴の木", - "reading": "ほおのき", - "meaning": "magnolia (Magnolia obovata), Japanese big leaf magnolia" - }, - { - "example": "榎", - "reading": "えのき", - "meaning": "Japanese hackberry (Celtis sinensis var. japonica), Chinese nettle tree, enoki mushroom (Flammulina velutipes), winter mushroom, velvet shank, enokitake, enokidake" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "卜", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26420_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06734.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6734.gif", - "uri": "http://jisho.org/search/%E6%9C%B4%23kanji" - }, - { - "query": "睦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1993", - "strokeCount": 13, - "meaning": "intimate, friendly, harmonious", - "kunyomi": [ - "むつ.まじい", - "むつ.む", - "むつ.ぶ" - ], - "onyomi": [ - "ボク", - "モク" - ], - "onyomiExamples": [ - { - "example": "敦睦", - "reading": "トンボク", - "meaning": "cordial and friendly, affectionate" - } - ], - "kunyomiExamples": [ - { - "example": "睦まじい", - "reading": "むつまじい", - "meaning": "harmonious (couple, family, etc.), happy, affectionate, friendly, intimate" - }, - { - "example": "睦む", - "reading": "むつむ", - "meaning": "to be harmonious, to get on well, to be intimate or close" - }, - { - "example": "睦ぶ", - "reading": "むつぶ", - "meaning": "to be harmonious, to get on well, to be intimate or close" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "儿", - "土", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30566_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07766.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7766.gif", - "uri": "http://jisho.org/search/%E7%9D%A6%23kanji" - }, - { - "query": "僕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1236", - "strokeCount": 14, - "meaning": "me, I (male), servant, manservant", - "kunyomi": [ - "しもべ" - ], - "onyomi": [ - "ボク" - ], - "onyomiExamples": [ - { - "example": "僕", - "reading": "ボク", - "meaning": "I, me, you, manservant" - }, - { - "example": "僕たち", - "reading": "ボクタチ", - "meaning": "we" - }, - { - "example": "校僕", - "reading": "コウボク", - "meaning": "student studying and working at the school" - }, - { - "example": "童僕", - "reading": "ドウボク", - "meaning": "young male servant, page" - } - ], - "kunyomiExamples": [ - { - "example": "僕", - "reading": "しもべ", - "meaning": "servant, manservant, menial" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "二", - "化", - "大", - "并", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20693_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050d5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50d5.gif", - "uri": "http://jisho.org/search/%E5%83%95%23kanji" - }, - { - "query": "墨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1616", - "strokeCount": 14, - "meaning": "black ink, India ink, ink stick, Mexico", - "kunyomi": [ - "すみ" - ], - "onyomi": [ - "ボク" - ], - "onyomiExamples": [ - { - "example": "墨", - "reading": "ボク", - "meaning": "Mexico, Mohism, ink, tattooing" - }, - { - "example": "墨書", - "reading": "ボクショ", - "meaning": "writing in India ink" - }, - { - "example": "遺墨", - "reading": "イボク", - "meaning": "autographs (brushwork) of departed person" - }, - { - "example": "水墨", - "reading": "スイボク", - "meaning": "water and ink, ink painting" - } - ], - "kunyomiExamples": [ - { - "example": "墨", - "reading": "すみ", - "meaning": "sumi, India ink, Chinese ink, ink stick, ink-cake, squid ink, octopus ink, carpenter's inking string" - }, - { - "example": "墨付き", - "reading": "すみつき", - "meaning": "certificate, certified document, authorization, authorisation, (the) thumbs up, seal of approval, paper with signature of the shogun or lord" - }, - { - "example": "烏賊墨", - "reading": "いかすみ", - "meaning": "squid ink" - }, - { - "example": "雪と墨", - "reading": "ゆきとすみ", - "meaning": "diametric opposites, night and day, black and white, snow and ink" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "杰", - "里", - "黒" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22696_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/058a8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/58a8.gif", - "uri": "http://jisho.org/search/%E5%A2%A8%23kanji" - }, - { - "query": "撲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1283", - "strokeCount": 15, - "meaning": "slap, strike, hit, beat, tell, speak", - "kunyomi": [], - "onyomi": [ - "ボク" - ], - "onyomiExamples": [ - { - "example": "撲滅", - "reading": "ボクメツ", - "meaning": "eradication, extermination, destruction, suppression" - }, - { - "example": "撲殺", - "reading": "ボクサツ", - "meaning": "beat to death" - }, - { - "example": "打撲", - "reading": "ダボク", - "meaning": "blow, hit (on the body), beating" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "二", - "人", - "大", - "并", - "扎", - "王", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25778_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064b2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64b2.gif", - "uri": "http://jisho.org/search/%E6%92%B2%23kanji" - }, - { - "query": "没", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1385", - "strokeCount": 7, - "meaning": "drown, sink, hide, fall into, disappear, die", - "kunyomi": [ - "おぼ.れる", - "しず.む", - "ない" - ], - "onyomi": [ - "ボツ", - "モツ" - ], - "onyomiExamples": [ - { - "example": "没", - "reading": "ボツ", - "meaning": "death, rejection (of a manuscript, etc.), lacking, without" - }, - { - "example": "没後", - "reading": "ボツゴ", - "meaning": "after death, posthumously" - }, - { - "example": "戦没", - "reading": "センボツ", - "meaning": "death in battle, killed in action" - }, - { - "example": "陥没", - "reading": "カンボツ", - "meaning": "cave-in, collapse, sinking, depression (e.g. of the skull), subsidence" - }, - { - "example": "没薬", - "reading": "モツヤク", - "meaning": "myrrh" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "几", - "又", - "殳", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27809_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ca1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ca1.gif", - "uri": "http://jisho.org/search/%E6%B2%A1%23kanji" - }, - { - "query": "勃", - "found": true, - "taughtIn": "junior high", - "strokeCount": 9, - "meaning": "suddenness, rise", - "kunyomi": [ - "おこ.る", - "にわかに" - ], - "onyomi": [ - "ボツ", - "ホツ" - ], - "onyomiExamples": [ - { - "example": "勃", - "reading": "ボツ", - "meaning": "Bulgaria, spirited, rising, energetic, sudden, abrupt" - }, - { - "example": "勃然", - "reading": "ボツゼン", - "meaning": "sudden, fit of anger" - }, - { - "example": "鬱勃", - "reading": "ウツボツ", - "meaning": "irresistible force or movement" - }, - { - "example": "勃々", - "reading": "ボツボツ", - "meaning": "spirited, rising, energetic" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "冖", - "力", - "十", - "子" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21187_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052c3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52c3.gif", - "uri": "http://jisho.org/search/%E5%8B%83%23kanji" - }, - { - "query": "堀", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1285", - "strokeCount": 11, - "meaning": "ditch, moat, canal", - "kunyomi": [ - "ほり" - ], - "onyomi": [ - "クツ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "堀", - "reading": "ほり", - "meaning": "moat, fosse, canal, ditch" - }, - { - "example": "堀江", - "reading": "ほりえ", - "meaning": "canal" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "尸", - "山", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22528_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05800.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5800.gif", - "uri": "http://jisho.org/search/%E5%A0%80%23kanji" - }, - { - "query": "奔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1884", - "strokeCount": 8, - "meaning": "run, bustle", - "kunyomi": [ - "はし.る" - ], - "onyomi": [ - "ホン" - ], - "onyomiExamples": [ - { - "example": "奔放", - "reading": "ホンポウ", - "meaning": "wild, uninhibited, extravagant, rampant" - }, - { - "example": "奔走", - "reading": "ホンソウ", - "meaning": "running about, making every effort, being busily engaged (in something), good offices" - }, - { - "example": "狂奔", - "reading": "キョウホン", - "meaning": "rushing around, running wild" - } - ], - "kunyomiExamples": [ - { - "example": "走る", - "reading": "はしる", - "meaning": "to run, to travel (movement of vehicles), to drive, to flow (e.g. energy), to hurry to, to retreat (from battle), to take flight, to run away from home, to elope, to tend heavily toward, to flash, to streak, to shoot through (e.g. pain), to get involved, to take (to something), to get wrapped up in, to run (through) (of a road, street, etc.), to extend (e.g. of a mountain range), to stretch, to lie" - } - ], - "radical": { - "symbol": "大", - "meaning": "big, very" - }, - "parts": [ - "ノ", - "一", - "十", - "大", - "廾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22868_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05954.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5954.gif", - "uri": "http://jisho.org/search/%E5%A5%94%23kanji" - }, - { - "query": "翻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1465", - "strokeCount": 18, - "meaning": "flip, turn over, wave, flutter, change (mind)", - "kunyomi": [ - "ひるがえ.る", - "ひるがえ.す" - ], - "onyomi": [ - "ホン", - "ハン" - ], - "onyomiExamples": [ - { - "example": "翻訳", - "reading": "ホンヤク", - "meaning": "translation, deciphering, decoding, translation" - }, - { - "example": "翻案", - "reading": "ホンアン", - "meaning": "adaptation (of a novel, play, etc.)" - }, - { - "example": "翻", - "reading": "ハン", - "meaning": "han, fan, unit that doubles the score of a hand" - }, - { - "example": "翻刻", - "reading": "ホンコク", - "meaning": "reprinting (of a book)" - } - ], - "kunyomiExamples": [ - { - "example": "翻る", - "reading": "ひるがえる", - "meaning": "to flutter (in the wind), to wave, to flap, to fly, to turn over, to flip over, to suddenly change (attitude, opinion, etc.), to suddenly switch, to alter, to flip" - }, - { - "example": "翻す", - "reading": "ひるがえす", - "meaning": "to turn over, to turn around, to change (one's mind), to reverse (one's decision), to take back (one's words), to fly (flag, etc.), to wave (skirt, cape, etc.)" - } - ], - "radical": { - "symbol": "羽", - "meaning": "feather" - }, - "parts": [ - "冫", - "田", - "米", - "羽", - "釆" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32763_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ffb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ffb.gif", - "uri": "http://jisho.org/search/%E7%BF%BB%23kanji" - }, - { - "query": "凡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1730", - "strokeCount": 3, - "meaning": "commonplace, ordinary, mediocre", - "kunyomi": [ - "およ.そ", - "おうよ.そ", - "すべ.て" - ], - "onyomi": [ - "ボン", - "ハン" - ], - "onyomiExamples": [ - { - "example": "凡", - "reading": "ボン", - "meaning": "ordinary, common, mediocre" - }, - { - "example": "凡人", - "reading": "ボンジン", - "meaning": "ordinary person, average person, mediocre person" - }, - { - "example": "超凡", - "reading": "チョウボン", - "meaning": "extraordinary" - }, - { - "example": "不凡", - "reading": "フボン", - "meaning": "uncommon, outstanding" - }, - { - "example": "凡例", - "reading": "ハンレイ", - "meaning": "explanatory notes (at the start of a book), introductory remarks, usage guide (e.g. of a dictionary), legend (on maps, drawings, etc.)" - } - ], - "kunyomiExamples": [ - { - "example": "凡そ", - "reading": "およそ", - "meaning": "about, roughly, approximately, generally, on the whole, as a rule, completely, quite, entirely, altogether, totally, not at all (with neg. verb), outline, gist" - }, - { - "example": "全て", - "reading": "すべて", - "meaning": "everything, all, the whole, entirely, completely, wholly, all" - }, - { - "example": "すべての道はローマに通ず", - "reading": "すべてのみちはローマにつうず", - "meaning": "all roads lead to Rome" - } - ], - "radical": { - "symbol": "几", - "meaning": "table" - }, - "parts": [ - "丶", - "几" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20961_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051e1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51e1.gif", - "uri": "http://jisho.org/search/%E5%87%A1%23kanji" - }, - { - "query": "盆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1654", - "strokeCount": 9, - "meaning": "basin, lantern festival, tray", - "kunyomi": [], - "onyomi": [ - "ボン" - ], - "onyomiExamples": [ - { - "example": "盆", - "reading": "ボン", - "meaning": "tray, family, household, O-Bon, Bon Festival, Lantern Festival, Festival of the Dead, gambler's den" - }, - { - "example": "盆栽", - "reading": "ボンサイ", - "meaning": "bonsai, miniature potted plant" - }, - { - "example": "旧盆", - "reading": "キュウボン", - "meaning": "Bon Festival of the lunar calendar" - }, - { - "example": "海盆", - "reading": "カイボン", - "meaning": "ocean basin" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "皿", - "meaning": "dish" - }, - "parts": [ - "ハ", - "刀", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30406_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076c6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76c6.gif", - "uri": "http://jisho.org/search/%E7%9B%86%23kanji" - }, - { - "query": "麻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1142", - "strokeCount": 11, - "meaning": "hemp, flax, numb", - "kunyomi": [ - "あさ" - ], - "onyomi": [ - "マ", - "マア" - ], - "onyomiExamples": [ - { - "example": "麻布", - "reading": "アサヌノ", - "meaning": "hemp cloth, linen" - }, - { - "example": "麻酔", - "reading": "マスイ", - "meaning": "anaesthesia, anesthesia" - }, - { - "example": "大麻", - "reading": "タイマ", - "meaning": "hemp, cannabis, marijuana, pot, hashish, Shinto paper offerings" - }, - { - "example": "胡麻", - "reading": "ゴマ", - "meaning": "sesame seeds, sesame (Sesamum indicum)" - }, - { - "example": "麻雀", - "reading": "マージャン", - "meaning": "mahjong, mah-jongg" - } - ], - "kunyomiExamples": [ - { - "example": "麻", - "reading": "あさ", - "meaning": "cannabis (Cannabis sativa), hemp (plant), hemp (fiber), linen, flax, jute" - }, - { - "example": "麻布", - "reading": "あさぬの", - "meaning": "hemp cloth, linen" - }, - { - "example": "大麻", - "reading": "たいま", - "meaning": "hemp, cannabis, marijuana, pot, hashish, Shinto paper offerings" - }, - { - "example": "絹麻", - "reading": "きぬあさ", - "meaning": "thin linen polished to appear like silk" - } - ], - "radical": { - "symbol": "麻", - "meaning": "hemp, flax" - }, - "parts": [ - "广", - "木", - "麻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40635_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ebb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ebb.gif", - "uri": "http://jisho.org/search/%E9%BA%BB%23kanji" - }, - { - "query": "摩", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1252", - "strokeCount": 15, - "meaning": "chafe, rub, polish, grind, scrape", - "kunyomi": [ - "ま.する", - "さす.る", - "す.る" - ], - "onyomi": [ - "マ" - ], - "onyomiExamples": [ - { - "example": "摩擦", - "reading": "マサツ", - "meaning": "friction, rubbing, chafing, discord, friction, strife, conflict" - }, - { - "example": "摩天楼", - "reading": "マテンロウ", - "meaning": "skyscraper" - }, - { - "example": "あん摩", - "reading": "アンマ", - "meaning": "massage (esp. anma, a traditional form of Japanese massage), masseur, masseuse, massager, blind person" - }, - { - "example": "研磨", - "reading": "ケンマ", - "meaning": "grinding, polishing, refining (skill, knowledge, etc.), striving to master something" - } - ], - "kunyomiExamples": [ - { - "example": "摩する", - "reading": "まする", - "meaning": "to rub, to scrub, to scrape, to draw near, to press" - }, - { - "example": "摩る", - "reading": "さする", - "meaning": "to rub, to pat, to stroke, to massage" - }, - { - "example": "擦る", - "reading": "する", - "meaning": "to rub, to chafe, to strike (match), to file, to frost (glass), to lose (e.g. a match), to forfeit, to squander one's money (e.g. through gambling, Pachinko, etc.)" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "广", - "手", - "木", - "麻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25705_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06469.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6469.gif", - "uri": "http://jisho.org/search/%E6%91%A9%23kanji" - }, - { - "query": "磨", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1608", - "strokeCount": 16, - "meaning": "grind, polish, scour, improve, brush (teeth)", - "kunyomi": [ - "みが.く", - "す.る" - ], - "onyomi": [ - "マ" - ], - "onyomiExamples": [ - { - "example": "摩耗", - "reading": "マモウ", - "meaning": "wear, abrasion" - }, - { - "example": "磨羯宮", - "reading": "マカツキュウ", - "meaning": "Capricorn (10th zodiacal sign), the Goat" - }, - { - "example": "琢磨", - "reading": "タクマ", - "meaning": "polish (jewels), cultivation" - }, - { - "example": "達磨", - "reading": "ダルマ", - "meaning": "daruma, tumbling doll, round, red-painted good-luck doll in the shape of Bodhidharma, with a blank eye to be completed when a person's wish is granted, Bodhidharma, prostitute" - } - ], - "kunyomiExamples": [ - { - "example": "磨く", - "reading": "みがく", - "meaning": "to polish, to shine, to brush (e.g. teeth), to grind (e.g. lens), to refine (e.g. a skill), to improve, to cultivate" - }, - { - "example": "擦る", - "reading": "する", - "meaning": "to rub, to chafe, to strike (match), to file, to frost (glass), to lose (e.g. a match), to forfeit, to squander one's money (e.g. through gambling, Pachinko, etc.)" - } - ], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "口", - "广", - "木", - "石", - "麻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30952_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/078e8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/78e8.gif", - "uri": "http://jisho.org/search/%E7%A3%A8%23kanji" - }, - { - "query": "魔", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1514", - "strokeCount": 21, - "meaning": "witch, demon, evil spirit", - "kunyomi": [], - "onyomi": [ - "マ" - ], - "onyomiExamples": [ - { - "example": "魔", - "reading": "マ", - "meaning": "demon, devil, evil spirit, evil influence, -crazed person, -obsessed person, fiend" - }, - { - "example": "魔女", - "reading": "マジョ", - "meaning": "witch" - }, - { - "example": "病魔", - "reading": "ビョウマ", - "meaning": "demon of ill health, disease" - }, - { - "example": "尼", - "reading": "アマ", - "meaning": "nun, bitch, Amagasaki, Hyogo, Amazon (online retailer)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "鬼", - "meaning": "ghost, demon" - }, - "parts": [ - "儿", - "匕", - "厶", - "广", - "木", - "田", - "鬼", - "麻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39764_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09b54.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9b54.gif", - "uri": "http://jisho.org/search/%E9%AD%94%23kanji" - }, - { - "query": "昧", - "found": true, - "taughtIn": "junior high", - "strokeCount": 9, - "meaning": "dark, foolish", - "kunyomi": [ - "くら.い", - "むさぼ.る" - ], - "onyomi": [ - "マイ", - "バイ" - ], - "onyomiExamples": [ - { - "example": "三昧", - "reading": "サンマイ", - "meaning": "samadhi (state of intense concentration achieved through meditation), being immersed in, being absorbed in, indulging in, doing to one's heart's content, prone to, apt to" - }, - { - "example": "蒙昧", - "reading": "モウマイ", - "meaning": "ignorance, (lack of) enlightenment or civilization (civilisation), unenlightened, uncivilized, uncivilised" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "ハ", - "二", - "亠", - "日", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26151_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06627.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6627.gif", - "uri": "http://jisho.org/search/%E6%98%A7%23kanji" - }, - { - "query": "埋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1110", - "strokeCount": 10, - "meaning": "bury, be filled up, embedded", - "kunyomi": [ - "う.める", - "う.まる", - "う.もれる", - "うず.める", - "うず.まる", - "い.ける" - ], - "onyomi": [ - "マイ" - ], - "onyomiExamples": [ - { - "example": "埋蔵", - "reading": "マイゾウ", - "meaning": "burying in the ground, having underground deposits" - }, - { - "example": "埋葬", - "reading": "マイソウ", - "meaning": "burial" - } - ], - "kunyomiExamples": [ - { - "example": "埋める", - "reading": "うめる", - "meaning": "to bury (e.g. in the ground), to fill up (e.g. audience fills a hall), to cause to be packed, to plug (a gap), to stop (a gap), to bridge (a difference, a gap), to fill (a seat, a vacant position), to fill out, to make up for (a loss, shortage, etc.), to make amends, to compensate for, to put cold water (in a bath), to cover, to scatter something over" - }, - { - "example": "埋まる", - "reading": "うまる", - "meaning": "to be buried, to be covered, to be surrounded, to overflow, to be crowded, to be filled, to be repaid (e.g. debt), to be replenished, to be filled (e.g. blank, vacancy, schedule)" - }, - { - "example": "埋もれる", - "reading": "うもれる", - "meaning": "to be buried, to be covered, to be hidden" - }, - { - "example": "埋める", - "reading": "うずめる", - "meaning": "to cover, to bury (e.g. one's face in hands), to submerge, to fill (completely), to stuff, to pack, to cram, to fill up" - }, - { - "example": "埋まる", - "reading": "うまる", - "meaning": "to be buried, to be covered, to be surrounded, to overflow, to be crowded, to be filled, to be repaid (e.g. debt), to be replenished, to be filled (e.g. blank, vacancy, schedule)" - }, - { - "example": "埋ける", - "reading": "いける", - "meaning": "to bury something in the ground, to cover coals with ash, to bank a fire" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "土", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22475_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/057cb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/57cb.gif", - "uri": "http://jisho.org/search/%E5%9F%8B%23kanji" - }, - { - "query": "膜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1804", - "strokeCount": 14, - "meaning": "membrane", - "kunyomi": [], - "onyomi": [ - "マク" - ], - "onyomiExamples": [ - { - "example": "膜", - "reading": "マク", - "meaning": "membrane, film" - }, - { - "example": "膜厚", - "reading": "マクアツ", - "meaning": "film thickness, coating thickness" - }, - { - "example": "角膜", - "reading": "カクマク", - "meaning": "cornea" - }, - { - "example": "網膜", - "reading": "モウマク", - "meaning": "retina" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "大", - "日", - "月", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33180_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0819c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/819c.gif", - "uri": "http://jisho.org/search/%E8%86%9C%23kanji" - }, - { - "query": "枕", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2084", - "strokeCount": 8, - "meaning": "pillow", - "kunyomi": [ - "まくら" - ], - "onyomi": [ - "チン", - "シン" - ], - "onyomiExamples": [ - { - "example": "枕籍", - "reading": "チンセキ", - "meaning": "bedding, bed, to sleep together in the same bed, to sleep together using each other's bodies as pillow, to sleep together using books as a pillow" - }, - { - "example": "枕状溶岩", - "reading": "チンジョウヨウガン", - "meaning": "pillow lava" - }, - { - "example": "開枕", - "reading": "カイチン", - "meaning": "bringing out the pillows and futon (in Zen Buddhism), sleeping" - }, - { - "example": "陶枕", - "reading": "トウチン", - "meaning": "porcelain pillow (used in summer)" - } - ], - "kunyomiExamples": [ - { - "example": "枕", - "reading": "まくら", - "meaning": "pillow, bolster, introduction (e.g. to a rakugo story), lead-in" - }, - { - "example": "枕絵", - "reading": "まくらえ", - "meaning": "erotic picture" - }, - { - "example": "新枕", - "reading": "にいまくら", - "meaning": "bridal bed" - }, - { - "example": "高枕", - "reading": "たかまくら", - "meaning": "high pillow" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "ノ", - "乙", - "冖", - "尢", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26517_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06795.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6795.gif", - "uri": "http://jisho.org/search/%E6%9E%95%23kanji" - }, - { - "query": "又", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1874", - "strokeCount": 2, - "meaning": "or again, furthermore, on the other hand", - "kunyomi": [ - "また", - "また-", - "また.の-" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "又", - "reading": "また", - "meaning": "again, once more, once again, another time, some other time, also, too, as well, likewise, on the other hand, while, and, in addition, besides, moreover, furthermore, or, otherwise, really, how, (what, why) on earth, indirect" - }, - { - "example": "又は", - "reading": "または", - "meaning": "or, either ... or ..." - }, - { - "example": "尚又", - "reading": "なおまた", - "meaning": "further, besides, moreover, in addition to" - }, - { - "example": "猫又", - "reading": "ねこまた", - "meaning": "mythical two-tailed monster cat" - } - ], - "radical": { - "symbol": "又", - "meaning": "right hand" - }, - "parts": [ - "又" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21448_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/053c8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/53c8.gif", - "uri": "http://jisho.org/search/%E5%8F%88%23kanji" - }, - { - "query": "抹", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2006", - "strokeCount": 8, - "meaning": "rub, paint, erase", - "kunyomi": [], - "onyomi": [ - "マツ" - ], - "onyomiExamples": [ - { - "example": "塗抹", - "reading": "トマツ", - "meaning": "smear, daub, coating over" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "ハ", - "一", - "亠", - "扎", - "木", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25273_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062b9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62b9.gif", - "uri": "http://jisho.org/search/%E6%8A%B9%23kanji" - }, - { - "query": "慢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1368", - "strokeCount": 14, - "meaning": "ridicule, laziness", - "kunyomi": [], - "onyomi": [ - "マン" - ], - "onyomiExamples": [ - { - "example": "慢性的", - "reading": "マンセイテキ", - "meaning": "chronic" - }, - { - "example": "慢性", - "reading": "マンセイ", - "meaning": "chronic (illness)" - }, - { - "example": "職務怠慢", - "reading": "ショクムタイマン", - "meaning": "neglect (dereliction) of duty, negligence" - }, - { - "example": "暴慢", - "reading": "ボウマン", - "meaning": "ill-mannered, overbearing" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "又", - "忙", - "日", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24930_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06162.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6162.gif", - "uri": "http://jisho.org/search/%E6%85%A2%23kanji" - }, - { - "query": "漫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1408", - "strokeCount": 14, - "meaning": "cartoon, involuntarily, unrestrained, in spite of oneself, corrupt", - "kunyomi": [ - "みだり.に", - "そぞ.ろ" - ], - "onyomi": [ - "マン" - ], - "onyomiExamples": [ - { - "example": "漫画家", - "reading": "マンガカ", - "meaning": "cartoonist, comic book artist, manga artist, manga author, mangaka" - }, - { - "example": "漫画", - "reading": "マンガ", - "meaning": "cartoon, comic, comic strip, manga" - }, - { - "example": "海漫", - "reading": "カイマン", - "meaning": "ocean, large sea" - }, - { - "example": "浪漫", - "reading": "ロウマン", - "meaning": "romance (e.g. Arthurian romances), heroic tale, (nigh) impossible dream, adventurous spirit, great undertaking, epic adventure, (full-length) novel, romance, love affair, romanticism" - } - ], - "kunyomiExamples": [ - { - "example": "漫ろ", - "reading": "そぞろ", - "meaning": "restless, on edge (and unable to concentrate), distracted, for some reason" - }, - { - "example": "そぞろ歩き", - "reading": "そぞろあるき", - "meaning": "slow, relaxed walk, stroll" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "又", - "日", - "汁", - "買" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28459_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f2b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f2b.gif", - "uri": "http://jisho.org/search/%E6%BC%AB%23kanji" - }, - { - "query": "魅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1206", - "strokeCount": 15, - "meaning": "fascination, charm, bewitch", - "kunyomi": [], - "onyomi": [ - "ミ" - ], - "onyomiExamples": [ - { - "example": "魅力", - "reading": "ミリョク", - "meaning": "charm, fascination, glamour, glamor, attraction, appeal" - }, - { - "example": "魅了", - "reading": "ミリョウ", - "meaning": "fascination, to charm, to fascinate, to mesmerize" - }, - { - "example": "魑魅", - "reading": "チミ", - "meaning": "mountain demon" - }, - { - "example": "魔魅", - "reading": "マミ", - "meaning": "deceiving spirit" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "鬼", - "meaning": "ghost, demon" - }, - "parts": [ - "ハ", - "二", - "亠", - "儿", - "匕", - "厶", - "木", - "田", - "鬼", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/39749_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09b45.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9b45.gif", - "uri": "http://jisho.org/search/%E9%AD%85%23kanji" - }, - { - "query": "岬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1972", - "strokeCount": 8, - "meaning": "headland, cape, spit, promontory", - "kunyomi": [ - "みさき" - ], - "onyomi": [ - "コウ" - ], - "onyomiExamples": [ - { - "example": "岬角", - "reading": "コウカク", - "meaning": "anat promontory, promontory" - }, - { - "example": "岬湾", - "reading": "コウワン", - "meaning": "capes and bays, indentation (of a coast)" - } - ], - "kunyomiExamples": [ - { - "example": "岬", - "reading": "みさき", - "meaning": "cape (on coast)" - } - ], - "radical": { - "symbol": "山", - "meaning": "mountain" - }, - "parts": [ - "山", - "日", - "田", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23724_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05cac.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5cac.gif", - "uri": "http://jisho.org/search/%E5%B2%AC%23kanji" - }, - { - "query": "蜜", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2203", - "strokeCount": 14, - "meaning": "honey, nectar, molasses", - "kunyomi": [], - "onyomi": [ - "ミツ", - "ビツ" - ], - "onyomiExamples": [ - { - "example": "蜜", - "reading": "ミツ", - "meaning": "nectar, honey, honeydew, treacle, molasses, sorbitol (when visible as dark patches inside an apple)" - }, - { - "example": "蜜月", - "reading": "ミツゲツ", - "meaning": "honeymoon, in an intimate relationship" - }, - { - "example": "水蜜", - "reading": "スイミツ", - "meaning": "white peach" - }, - { - "example": "糖蜜", - "reading": "トウミツ", - "meaning": "molasses, black treacle, (sugar) syrup" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "ノ", - "丶", - "宀", - "心", - "虫" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34588_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0871c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/871c.gif", - "uri": "http://jisho.org/search/%E8%9C%9C%23kanji" - }, - { - "query": "妙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1122", - "strokeCount": 7, - "meaning": "exquisite, strange, queer, mystery, miracle, excellent, delicate, charming", - "kunyomi": [ - "たえ" - ], - "onyomi": [ - "ミョウ", - "ビョウ" - ], - "onyomiExamples": [ - { - "example": "妙", - "reading": "ミョウ", - "meaning": "strange, weird, odd, curious, wonder, mystery, miracle, excellence, cleverness, adroitness, knack, skill" - }, - { - "example": "妙案", - "reading": "ミョウアン", - "meaning": "ingenious idea, excellent plan, bright idea" - }, - { - "example": "絶妙", - "reading": "ゼツミョウ", - "meaning": "exquisite, superb, perfect, miraculous" - }, - { - "example": "軽妙", - "reading": "ケイミョウ", - "meaning": "light and easy, lambent, clever, witty, smart" - }, - { - "example": "神妙", - "reading": "シンミョウ", - "meaning": "meek, quiet, docile, humble, faithful, obedient, mysterious, marvelous, marvellous" - } - ], - "kunyomiExamples": [ - { - "example": "妙なる", - "reading": "たえなる", - "meaning": "exquisite (e.g. melody), melodious, delicate, enchanting" - }, - { - "example": "妙なる調べ", - "reading": "たえなるしらべ", - "meaning": "enchanting melody, sweet tune" - }, - { - "example": "白妙", - "reading": "しろたえ", - "meaning": "white cloth, white" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ノ", - "女", - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22937_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05999.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5999.gif", - "uri": "http://jisho.org/search/%E5%A6%99%23kanji" - }, - { - "query": "眠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1315", - "strokeCount": 10, - "meaning": "sleep, die, sleepy", - "kunyomi": [ - "ねむ.る", - "ねむ.い" - ], - "onyomi": [ - "ミン" - ], - "onyomiExamples": [ - { - "example": "眠剤", - "reading": "ミンザイ", - "meaning": "sleeping pills" - }, - { - "example": "冬眠", - "reading": "トウミン", - "meaning": "hibernation, winter sleep, torpor" - }, - { - "example": "安眠", - "reading": "アンミン", - "meaning": "sound sleep, good sleep, quiet sleep" - } - ], - "kunyomiExamples": [ - { - "example": "眠る", - "reading": "ねむる", - "meaning": "to sleep, to die, to rest (in peace), to lie (buried), to sleep (in the grave), to lie idle (e.g. of resources), to lie unused, to lie untapped, to lie untouched, to close one's eyes" - }, - { - "example": "眠い", - "reading": "ねむい", - "meaning": "sleepy, drowsy, somnolent" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "口", - "尸", - "氏", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30496_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07720.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7720.gif", - "uri": "http://jisho.org/search/%E7%9C%A0%23kanji" - }, - { - "query": "矛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1538", - "strokeCount": 5, - "meaning": "halberd, arms, festival float", - "kunyomi": [ - "ほこ" - ], - "onyomi": [ - "ム", - "ボウ" - ], - "onyomiExamples": [ - { - "example": "矛盾", - "reading": "ムジュン", - "meaning": "contradiction, inconsistency" - }, - { - "example": "矛盾原理", - "reading": "ムジュンゲンリ", - "meaning": "principle of contradiction (logic)" - } - ], - "kunyomiExamples": [ - { - "example": "矛", - "reading": "ほこ", - "meaning": "long-handled Chinese spear, lance, pike, weapon, arms, grip of a bow, parade float decorated with long-handled Chinese spears" - }, - { - "example": "矛先", - "reading": "ほこさき", - "meaning": "point of spear, spearhead, brunt, aim of attack, force of argument" - }, - { - "example": "銅矛", - "reading": "どうほこ", - "meaning": "bronze hoko, bronze halberd, bronze spearhead" - }, - { - "example": "瓊矛", - "reading": "ぬほこ", - "meaning": "jeweled spear (jewelled)" - } - ], - "radical": { - "symbol": "矛", - "meaning": "spear" - }, - "parts": [ - "マ", - "矛" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30683_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077db.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77db.gif", - "uri": "http://jisho.org/search/%E7%9F%9B%23kanji" - }, - { - "query": "霧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1747", - "strokeCount": 19, - "meaning": "fog, mist", - "kunyomi": [ - "きり" - ], - "onyomi": [ - "ム", - "ボウ", - "ブ" - ], - "onyomiExamples": [ - { - "example": "霧化", - "reading": "ムカ", - "meaning": "atomization" - }, - { - "example": "霧散", - "reading": "ムサン", - "meaning": "dispersing, vanishing" - }, - { - "example": "夕霧", - "reading": "ユウギリ", - "meaning": "evening mist" - }, - { - "example": "海霧", - "reading": "カイム", - "meaning": "sea fog" - } - ], - "kunyomiExamples": [ - { - "example": "霧", - "reading": "きり", - "meaning": "fog, mist, spray" - }, - { - "example": "霧雨", - "reading": "きりさめ", - "meaning": "drizzle, light rain" - }, - { - "example": "黒い霧", - "reading": "くろいきり", - "meaning": "thick fog (of suspicion), black veil of secrecy, covered-up crime, unethical act, etc." - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "力", - "夂", - "矛", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38695_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09727.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9727.gif", - "uri": "http://jisho.org/search/%E9%9C%A7%23kanji" - }, - { - "query": "娘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "1145", - "strokeCount": 10, - "meaning": "daughter, girl", - "kunyomi": [ - "むすめ", - "こ" - ], - "onyomi": [ - "ジョウ" - ], - "onyomiExamples": [ - { - "example": "嬢", - "reading": "ジョウ", - "meaning": "unmarried woman, Miss, -ess, -ette" - }, - { - "example": "娘核", - "reading": "ジョウカク", - "meaning": "daughter nucleus" - }, - { - "example": "令娘", - "reading": "レイジョウ", - "meaning": "your daughter, young lady" - }, - { - "example": "中国娘", - "reading": "チュウゴクジョウ", - "meaning": "Chinese girl" - } - ], - "kunyomiExamples": [ - { - "example": "娘", - "reading": "むすめ", - "meaning": "daughter, girl (i.e. a young, unmarried woman)" - }, - { - "example": "娘婿", - "reading": "むすめむこ", - "meaning": "son-in-law" - }, - { - "example": "一人娘", - "reading": "ひとりむすめ", - "meaning": "only daughter" - }, - { - "example": "総領娘", - "reading": "そうりょうむすめ", - "meaning": "eldest daughter" - }, - { - "example": "ボクっ娘", - "reading": "ボクっこ", - "meaning": "young woman who uses the first person pronoun \"boku\"" - }, - { - "example": "ドジっ子", - "reading": "ドジっこ", - "meaning": "clumsy girl" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "女", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23064_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05a18.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5a18.gif", - "uri": "http://jisho.org/search/%E5%A8%98%23kanji" - }, - { - "query": "冥", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2349", - "strokeCount": 10, - "meaning": "dark", - "kunyomi": [ - "くら.い" - ], - "onyomi": [ - "メイ", - "ミョウ" - ], - "onyomiExamples": [ - { - "example": "冥福", - "reading": "メイフク", - "meaning": "happiness in the next world" - }, - { - "example": "瞑想", - "reading": "メイソウ", - "meaning": "meditation, contemplation" - }, - { - "example": "晦冥", - "reading": "カイメイ", - "meaning": "darkness" - }, - { - "example": "天地晦冥", - "reading": "テンチカイメイ", - "meaning": "The world is covered in darkness, All is plunged into darkness" - }, - { - "example": "冥福", - "reading": "メイフク", - "meaning": "happiness in the next world" - }, - { - "example": "冥利", - "reading": "ミョウリ", - "meaning": "providence, luck, favor, favour, advantage" - } - ], - "kunyomiExamples": [ - { - "example": "暗い", - "reading": "くらい", - "meaning": "dark, gloomy, murky, depressed, dispirited, down in the dumps, dark (mood), dark (in colour), dull, ill-boding, dark (e.g. past), suspicious, unlikely (to succeed), hopeless, unpromising, unfamiliar (with), ignorant (of)" - } - ], - "radical": { - "symbol": "冖", - "meaning": "cover" - }, - "parts": [ - "ハ", - "亠", - "冖", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20901_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051a5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51a5.gif", - "uri": "http://jisho.org/search/%E5%86%A5%23kanji" - }, - { - "query": "銘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1394", - "strokeCount": 14, - "meaning": "inscription, signature (of artisan)", - "kunyomi": [], - "onyomi": [ - "メイ" - ], - "onyomiExamples": [ - { - "example": "銘", - "reading": "メイ", - "meaning": "inscription, epitaph, (manufacturer's) engraved signature, motto, maxim, precept" - }, - { - "example": "銘柄", - "reading": "メイガラ", - "meaning": "brand, make, description, trading name of stocks and securities" - }, - { - "example": "座右銘", - "reading": "ザユウメイ", - "meaning": "favourite motto, pet saying" - }, - { - "example": "鐘銘", - "reading": "ショウメイ", - "meaning": "inscription on a temple bell" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "口", - "夕", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37528_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09298.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9298.gif", - "uri": "http://jisho.org/search/%E9%8A%98%23kanji" - }, - { - "query": "滅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1222", - "strokeCount": 13, - "meaning": "destroy, ruin, overthrow, perish", - "kunyomi": [ - "ほろ.びる", - "ほろ.ぶ", - "ほろ.ぼす" - ], - "onyomi": [ - "メツ" - ], - "onyomiExamples": [ - { - "example": "滅亡", - "reading": "メツボウ", - "meaning": "downfall, ruin, collapse, destruction" - }, - { - "example": "滅罪", - "reading": "メツザイ", - "meaning": "expiation" - }, - { - "example": "隠滅", - "reading": "インメツ", - "meaning": "destruction (esp. of evidence), spoliation, suppression, hiding, concealment" - }, - { - "example": "衰滅", - "reading": "スイメツ", - "meaning": "decline, downfall, ruin(ation)" - } - ], - "kunyomiExamples": [ - { - "example": "滅びる", - "reading": "ほろびる", - "meaning": "to go to ruin, to go under, to fall, to be destroyed, to die out, to become extinct, to perish" - }, - { - "example": "滅ぶ", - "reading": "ほろぶ", - "meaning": "to be ruined, to go under, to perish, to be destroyed" - }, - { - "example": "滅ぼす", - "reading": "ほろぼす", - "meaning": "to destroy, to overthrow, to wreck, to ruin" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "戈", - "汁", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28357_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06ec5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6ec5.gif", - "uri": "http://jisho.org/search/%E6%BB%85%23kanji" - }, - { - "query": "免", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1080", - "strokeCount": 8, - "meaning": "excuse, dismissal", - "kunyomi": [ - "まぬか.れる", - "まぬが.れる" - ], - "onyomi": [ - "メン" - ], - "onyomiExamples": [ - { - "example": "免", - "reading": "メン", - "meaning": "dismissal, discharge" - }, - { - "example": "免疫", - "reading": "メンエキ", - "meaning": "immunity, immunization, immunisation, being hardened (to), being unaffected (by), being accustomed (to)" - }, - { - "example": "任免", - "reading": "ニンメン", - "meaning": "appointments and dismissal" - }, - { - "example": "懲戒免", - "reading": "チョウカイメン", - "meaning": "disciplinary dismissal, disciplinary discharge" - } - ], - "kunyomiExamples": [ - { - "example": "免れる", - "reading": "まぬがれる", - "meaning": "to escape (disaster, death, etc.), to be saved from, to be rescued from, to avoid (e.g. punishment), to evade (e.g. responsibility), to avert, to elude, to be exempted from" - }, - { - "example": "免れる", - "reading": "まぬがれる", - "meaning": "to escape (disaster, death, etc.), to be saved from, to be rescued from, to avoid (e.g. punishment), to evade (e.g. responsibility), to avert, to elude, to be exempted from" - } - ], - "radical": { - "symbol": "儿", - "meaning": "legs" - }, - "parts": [ - "一", - "儿", - "免", - "勹", - "口", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20813_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0514d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/514d.gif", - "uri": "http://jisho.org/search/%E5%85%8D%23kanji" - }, - { - "query": "麺", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2331", - "strokeCount": 16, - "meaning": "noodles, wheat flour", - "kunyomi": [ - "むぎこ" - ], - "onyomi": [ - "メン", - "ベン" - ], - "onyomiExamples": [ - { - "example": "麺", - "reading": "メン", - "meaning": "noodles, flour" - }, - { - "example": "麺子", - "reading": "メンス", - "meaning": "noodles" - }, - { - "example": "製麺", - "reading": "セイメン", - "meaning": "noodle making" - }, - { - "example": "生麺", - "reading": "ナマメン", - "meaning": "raw noodles, uncooked noodles" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "麥", - "meaning": "wheat" - }, - "parts": [ - "二", - "亠", - "土", - "夂", - "面", - "麦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40634_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09eba.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9eba.gif", - "uri": "http://jisho.org/search/%E9%BA%BA%23kanji" - }, - { - "query": "茂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1188", - "strokeCount": 8, - "meaning": "overgrown, grow thick, be luxuriant", - "kunyomi": [ - "しげ.る" - ], - "onyomi": [ - "モ" - ], - "onyomiExamples": [ - { - "example": "茂林", - "reading": "モリン", - "meaning": "luxuriant (dense) forest" - } - ], - "kunyomiExamples": [ - { - "example": "茂る", - "reading": "しげる", - "meaning": "to grow thickly, to be in full leaf, to be rampant, to luxuriate, to be luxurious" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "戈", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33538_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08302.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8302.gif", - "uri": "http://jisho.org/search/%E8%8C%82%23kanji" - }, - { - "query": "妄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2264", - "strokeCount": 6, - "meaning": "delusion, unnecessarily, without authority, reckless", - "kunyomi": [ - "みだ.りに" - ], - "onyomi": [ - "モウ", - "ボウ" - ], - "onyomiExamples": [ - { - "example": "妄信", - "reading": "ボウシン", - "meaning": "blind acceptance, blind belief, credulity" - }, - { - "example": "妄言", - "reading": "ボウゲン", - "meaning": "reckless remark, rash remark, abusive language, thoughtless words" - }, - { - "example": "迷妄", - "reading": "メイモウ", - "meaning": "illusion, fallacy, delusion" - }, - { - "example": "謬妄", - "reading": "ビュウモウ", - "meaning": "fallacy, conjecture, baseless thing, random thing" - }, - { - "example": "妄信", - "reading": "ボウシン", - "meaning": "blind acceptance, blind belief, credulity" - }, - { - "example": "妄言", - "reading": "ボウゲン", - "meaning": "reckless remark, rash remark, abusive language, thoughtless words" - }, - { - "example": "狂妄", - "reading": "キョウボウ", - "meaning": "eccentric, wild, off-kilter, mad" - }, - { - "example": "誣謗", - "reading": "フボウ", - "meaning": "slander" - } - ], - "kunyomiExamples": [ - { - "example": "妄りに", - "reading": "みだりに", - "meaning": "without authority, without reason, unnecessarily, recklessly, indiscriminately, arbitrarily" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "亠", - "亡", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22916_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05984.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5984.gif", - "uri": "http://jisho.org/search/%E5%A6%84%23kanji" - }, - { - "query": "盲", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1767", - "strokeCount": 8, - "meaning": "blind, blind man, ignoramus", - "kunyomi": [ - "めくら" - ], - "onyomi": [ - "モウ" - ], - "onyomiExamples": [ - { - "example": "盲", - "reading": "モウ", - "meaning": "blindness" - }, - { - "example": "盲学校", - "reading": "モウガッコウ", - "meaning": "school for the blind" - }, - { - "example": "全盲", - "reading": "ゼンモウ", - "meaning": "total blindness" - }, - { - "example": "衆盲", - "reading": "シュウモウ", - "meaning": "the blind masses, the ignorant masses, the unenlightened masses, many blind people" - } - ], - "kunyomiExamples": [ - { - "example": "盲", - "reading": "めくら", - "meaning": "blindness, blind person, illiteracy, illiterate person, ignorance, ignoramus" - }, - { - "example": "盲穴", - "reading": "めくらあな", - "meaning": "blind hole" - }, - { - "example": "俄盲", - "reading": "にわかめくら", - "meaning": "sudden blindness, one suddenly blinded" - }, - { - "example": "作り盲", - "reading": "つくりめくら", - "meaning": "feigned blindness" - } - ], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "亠", - "亡", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30450_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/076f2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/76f2.gif", - "uri": "http://jisho.org/search/%E7%9B%B2%23kanji" - }, - { - "query": "耗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 10, - "meaning": "decrease", - "kunyomi": [], - "onyomi": [ - "モウ", - "コウ" - ], - "onyomiExamples": [ - { - "example": "摩耗", - "reading": "マモウ", - "meaning": "wear, abrasion" - }, - { - "example": "衰耗", - "reading": "スイモウ", - "meaning": "weaken and decline" - }, - { - "example": "減耗", - "reading": "ゲンモウ", - "meaning": "natural decrease" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "耒", - "meaning": "plow" - }, - "parts": [ - "ノ", - "ハ", - "士", - "木", - "毛", - "耒", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32791_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08017.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8017.gif", - "uri": "http://jisho.org/search/%E8%80%97%23kanji" - }, - { - "query": "猛", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1301", - "strokeCount": 11, - "meaning": "fierce, rave, rush, become furious, wildness, strength", - "kunyomi": [], - "onyomi": [ - "モウ" - ], - "onyomiExamples": [ - { - "example": "猛", - "reading": "モウ", - "meaning": "greatly energetic, ferocious, extreme, severe" - }, - { - "example": "猛威", - "reading": "モウイ", - "meaning": "fury, power, menace" - }, - { - "example": "勇猛", - "reading": "ユウモウ", - "meaning": "daring, brave, bold, valiant, intrepid, dauntless" - }, - { - "example": "豪猛", - "reading": "ゴウモウ", - "meaning": "strongly ferocious" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "子", - "犯", - "皿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29467_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0731b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/731b.gif", - "uri": "http://jisho.org/search/%E7%8C%9B%23kanji" - }, - { - "query": "網", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1194", - "strokeCount": 14, - "meaning": "netting, network", - "kunyomi": [ - "あみ" - ], - "onyomi": [ - "モウ" - ], - "onyomiExamples": [ - { - "example": "網", - "reading": "モウ", - "meaning": "network" - }, - { - "example": "網膜", - "reading": "モウマク", - "meaning": "retina" - }, - { - "example": "通信網", - "reading": "ツウシンモウ", - "meaning": "communications network" - }, - { - "example": "鉄条網", - "reading": "テツジョウモウ", - "meaning": "(barbed) wire entanglements" - } - ], - "kunyomiExamples": [ - { - "example": "網", - "reading": "あみ", - "meaning": "net, netting, web" - }, - { - "example": "網戸", - "reading": "あみど", - "meaning": "window screen, insect screen, mosquito screen, screen, screen door" - }, - { - "example": "巻き網", - "reading": "まきあみ", - "meaning": "purse seine, round haul net" - }, - { - "example": "底引き網", - "reading": "そこびきあみ", - "meaning": "trawl (net)" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "亡", - "冂", - "小", - "并", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07db2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7db2.gif", - "uri": "http://jisho.org/search/%E7%B6%B2%23kanji" - }, - { - "query": "黙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1338", - "strokeCount": 15, - "meaning": "silence, become silent, stop speaking, leave as is", - "kunyomi": [ - "だま.る", - "もだ.す" - ], - "onyomi": [ - "モク", - "ボク" - ], - "onyomiExamples": [ - { - "example": "黙とう", - "reading": "モクトウ", - "meaning": "silent prayer" - }, - { - "example": "黙示", - "reading": "モクシ", - "meaning": "revelation, apocalypse" - }, - { - "example": "寡黙", - "reading": "カモク", - "meaning": "untalkative, quiet, taciturn, reticent, uncommunicative" - }, - { - "example": "温厚寡黙", - "reading": "オンコウカモク", - "meaning": "gentle and reticent" - } - ], - "kunyomiExamples": [ - { - "example": "黙る", - "reading": "だまる", - "meaning": "to be silent, to say nothing" - } - ], - "radical": { - "symbol": "黑", - "meaning": "black" - }, - "parts": [ - "杰", - "犬", - "里", - "黒" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40665_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09ed9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9ed9.gif", - "uri": "http://jisho.org/search/%E9%BB%99%23kanji" - }, - { - "query": "紋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1519", - "strokeCount": 10, - "meaning": "family crest, figures", - "kunyomi": [], - "onyomi": [ - "モン" - ], - "onyomiExamples": [ - { - "example": "紋", - "reading": "モン", - "meaning": "(family) crest, coat of arms, pattern, figure" - }, - { - "example": "文様", - "reading": "モンヨウ", - "meaning": "pattern, design" - }, - { - "example": "家紋", - "reading": "カモン", - "meaning": "family crest" - }, - { - "example": "声紋", - "reading": "セイモン", - "meaning": "voiceprint" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "文", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32011_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d0b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d0b.gif", - "uri": "http://jisho.org/search/%E7%B4%8B%23kanji" - }, - { - "query": "冶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 7, - "meaning": "melting, smelting", - "kunyomi": [ - "い.る" - ], - "onyomi": [ - "ヤ" - ], - "onyomiExamples": [ - { - "example": "冶", - "reading": "ヤ", - "meaning": "melting" - }, - { - "example": "冶金", - "reading": "ヤキン", - "meaning": "metallurgy" - }, - { - "example": "艷冶", - "reading": "エンヤ", - "meaning": "charming, bewitching, coquettish" - }, - { - "example": "鍛冶", - "reading": "カジ", - "meaning": "smithing, blacksmith" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "冫", - "meaning": "ice" - }, - "parts": [ - "冫", - "厶", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20918_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/051b6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/51b6.gif", - "uri": "http://jisho.org/search/%E5%86%B6%23kanji" - }, - { - "query": "弥", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1687", - "strokeCount": 8, - "meaning": "all the more, increasingly", - "kunyomi": [ - "や", - "いや", - "いよ.いよ", - "わた.る" - ], - "onyomi": [ - "ミ", - "ビ" - ], - "onyomiExamples": [ - { - "example": "弥撒", - "reading": "ミサ", - "meaning": "(Catholic) Mass" - }, - { - "example": "弥勒", - "reading": "ミロク", - "meaning": "Maitreya (Bodhisattva), Miroku" - }, - { - "example": "沙弥", - "reading": "シャミ", - "meaning": "male Buddhist novice" - }, - { - "example": "弥久", - "reading": "ビキュウ", - "meaning": "extending over a long time" - }, - { - "example": "弥縫", - "reading": "ビホウ", - "meaning": "patching up" - } - ], - "kunyomiExamples": [ - { - "example": "弥生", - "reading": "やよい", - "meaning": "third month of the lunar calendar, thick growth (of grass, etc.), Yayoi period (ca. 300 BCE-300 CE), Yayoi culture" - }, - { - "example": "弥栄", - "reading": "いやさか", - "meaning": "prosperity, prospering, flourishing, best of luck, all the best, hurray, hoorah" - }, - { - "example": "弥", - "reading": "いや", - "meaning": "more and more, increasingly, extremely, very" - }, - { - "example": "弥生", - "reading": "やよい", - "meaning": "third month of the lunar calendar, thick growth (of grass, etc.), Yayoi period (ca. 300 BCE-300 CE), Yayoi culture" - }, - { - "example": "愈", - "reading": "いよいよ", - "meaning": "more and more, all the more, increasingly, at last, finally, beyond doubt, (at the) last moment, worst possible time" - }, - { - "example": "渡る", - "reading": "わたる", - "meaning": "to cross over, to go across, to extend, to cover, to range, to span" - } - ], - "radical": { - "symbol": "弓", - "meaning": "bow" - }, - "parts": [ - "ノ", - "乞", - "亅", - "小", - "弓" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24357_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f25.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f25.gif", - "uri": "http://jisho.org/search/%E5%BC%A5%23kanji" - }, - { - "query": "厄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2123", - "strokeCount": 4, - "meaning": "unlucky, misfortune, bad luck, disaster", - "kunyomi": [], - "onyomi": [ - "ヤク" - ], - "onyomiExamples": [ - { - "example": "厄", - "reading": "ヤク", - "meaning": "misfortune, bad luck, evil, disaster, unlucky year, critical year, smallpox" - }, - { - "example": "厄年", - "reading": "ヤクドシ", - "meaning": "unlucky year, critical year, year (esp. age 25 and 42 for men, 19 and 33 for women) that is considered unlucky (orig. in Onmyōdō), bad year, annus horribilis" - }, - { - "example": "災厄", - "reading": "サイヤク", - "meaning": "calamity, disaster, accident" - }, - { - "example": "大厄", - "reading": "タイヤク", - "meaning": "calamity, disaster, great misfortune, grand climacteric" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "厂", - "meaning": "cliff" - }, - "parts": [ - "卩", - "厂" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21380_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05384.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5384.gif", - "uri": "http://jisho.org/search/%E5%8E%84%23kanji" - }, - { - "query": "躍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "900", - "strokeCount": 21, - "meaning": "leap, dance, skip", - "kunyomi": [ - "おど.る" - ], - "onyomi": [ - "ヤク" - ], - "onyomiExamples": [ - { - "example": "躍動", - "reading": "ヤクドウ", - "meaning": "lively motion, throb" - }, - { - "example": "躍進", - "reading": "ヤクシン", - "meaning": "making rapid progress, making great advances, rush, dash, onslaught" - }, - { - "example": "勇躍", - "reading": "ユウヤク", - "meaning": "taking heart, being in high spirits" - }, - { - "example": "時間跳躍", - "reading": "ジカンチョウヤク", - "meaning": "time travel, leaping through time" - } - ], - "kunyomiExamples": [ - { - "example": "躍る", - "reading": "おどる", - "meaning": "to jump up, to spring up, to leap, to move around, to bounce up and down, to pound (of one's heart, e.g. with excitement), to throb, to be messy (of handwriting), to be untidy" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "ヨ", - "口", - "止", - "足", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36493_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08e8d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8e8d.gif", - "uri": "http://jisho.org/search/%E8%BA%8D%23kanji" - }, - { - "query": "闇", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1969", - "strokeCount": 17, - "meaning": "get dark, gloom, disorder", - "kunyomi": [ - "やみ", - "くら.い" - ], - "onyomi": [ - "アン", - "オン" - ], - "onyomiExamples": [ - { - "example": "暗黒", - "reading": "アンコク", - "meaning": "darkness" - }, - { - "example": "暗夜", - "reading": "アンヤ", - "meaning": "dark night" - }, - { - "example": "冥暗", - "reading": "メイアン", - "meaning": "gloom, shade" - }, - { - "example": "幽暗", - "reading": "ユウアン", - "meaning": "gloom, darkness, seclusion" - } - ], - "kunyomiExamples": [ - { - "example": "闇", - "reading": "やみ", - "meaning": "darkness, the dark, bewilderment, despair, hopelessness, hidden place, secrecy, oblivion, black market, shady trading, underhand transactions, illegal channels" - }, - { - "example": "闇医者", - "reading": "やみいしゃ", - "meaning": "back-alley doctor" - }, - { - "example": "暁闇", - "reading": "あかつきやみ", - "meaning": "moonless dawn" - }, - { - "example": "五月闇", - "reading": "さつきやみ", - "meaning": "dark night in the rainy season" - }, - { - "example": "暗い", - "reading": "くらい", - "meaning": "dark, gloomy, murky, depressed, dispirited, down in the dumps, dark (mood), dark (in colour), dull, ill-boding, dark (e.g. past), suspicious, unlikely (to succeed), hopeless, unpromising, unfamiliar (with), ignorant (of)" - } - ], - "radical": { - "symbol": "門", - "meaning": "gate" - }, - "parts": [ - "日", - "立", - "門", - "音" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38343_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/095c7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/95c7.gif", - "uri": "http://jisho.org/search/%E9%97%87%23kanji" - }, - { - "query": "喩", - "found": true, - "taughtIn": "junior high", - "strokeCount": 12, - "meaning": "metaphor, compare", - "kunyomi": [ - "たと.える", - "さと.す" - ], - "onyomi": [ - "ユ" - ], - "onyomiExamples": [ - { - "example": "教諭", - "reading": "キョウユ", - "meaning": "(licensed) teacher" - }, - { - "example": "比喩", - "reading": "ヒユ", - "meaning": "simile, metaphor, allegory, parable" - } - ], - "kunyomiExamples": [ - { - "example": "例える", - "reading": "たとえる", - "meaning": "to compare (something) to, to liken, to speak figuratively, to use a simile, to use a metaphor" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "一", - "个", - "刈", - "口", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21929_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/055a9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/55a9.gif", - "uri": "http://jisho.org/search/%E5%96%A9%23kanji" - }, - { - "query": "愉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1974", - "strokeCount": 12, - "meaning": "pleasure, happy, rejoice", - "kunyomi": [ - "たの.しい", - "たの.しむ" - ], - "onyomi": [ - "ユ" - ], - "onyomiExamples": [ - { - "example": "愉快", - "reading": "ユカイ", - "meaning": "pleasant, delightful, enjoyable, joyful, cheerful, amusing, happy" - }, - { - "example": "愉悦", - "reading": "ユエツ", - "meaning": "joy, pleasure, delight" - } - ], - "kunyomiExamples": [ - { - "example": "楽しい", - "reading": "たのしい", - "meaning": "enjoyable, fun, pleasant, happy, delightful" - }, - { - "example": "楽しむ", - "reading": "たのしむ", - "meaning": "to enjoy (oneself)" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "个", - "刈", - "忙", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24841_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06109.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6109.gif", - "uri": "http://jisho.org/search/%E6%84%89%23kanji" - }, - { - "query": "諭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1461", - "strokeCount": 16, - "meaning": "rebuke, admonish, charge, warn, persuade", - "kunyomi": [ - "さと.す" - ], - "onyomi": [ - "ユ" - ], - "onyomiExamples": [ - { - "example": "諭吉", - "reading": "ユキチ", - "meaning": "10,000 yen note" - }, - { - "example": "諭告", - "reading": "ユコク", - "meaning": "admonition, public announcement" - }, - { - "example": "教諭", - "reading": "キョウユ", - "meaning": "(licensed) teacher" - }, - { - "example": "比喩", - "reading": "ヒユ", - "meaning": "simile, metaphor, allegory, parable" - } - ], - "kunyomiExamples": [ - { - "example": "諭す", - "reading": "さとす", - "meaning": "to admonish, to persuade, to warn, to remonstrate" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "个", - "刈", - "月", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35565_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08aed.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8aed.gif", - "uri": "http://jisho.org/search/%E8%AB%AD%23kanji" - }, - { - "query": "癒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1667", - "strokeCount": 18, - "meaning": "healing, cure, quench (thirst), wreak", - "kunyomi": [ - "い.える", - "いや.す", - "い.やす" - ], - "onyomi": [ - "ユ" - ], - "onyomiExamples": [ - { - "example": "癒着", - "reading": "ユチャク", - "meaning": "adhesion, conglutination, collusion, collusive relationship" - }, - { - "example": "癒合", - "reading": "ユゴウ", - "meaning": "agglutination, adhesion" - }, - { - "example": "平癒", - "reading": "ヘイユ", - "meaning": "recovery, convalescence" - }, - { - "example": "自然治癒", - "reading": "シゼンチユ", - "meaning": "self-healing, spontaneous recovery" - } - ], - "kunyomiExamples": [ - { - "example": "癒える", - "reading": "いえる", - "meaning": "to recover, to be healed" - }, - { - "example": "癒す", - "reading": "いやす", - "meaning": "to heal, to cure, to satisfy (e.g. hunger, thirst), to alleviate (e.g. sorrow, fatigue)" - }, - { - "example": "癒す", - "reading": "いやす", - "meaning": "to heal, to cure, to satisfy (e.g. hunger, thirst), to alleviate (e.g. sorrow, fatigue)" - } - ], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "个", - "刈", - "心", - "月", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30290_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07652.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7652.gif", - "uri": "http://jisho.org/search/%E7%99%92%23kanji" - }, - { - "query": "唯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1292", - "strokeCount": 11, - "meaning": "solely, only, merely, simply", - "kunyomi": [ - "ただ" - ], - "onyomi": [ - "ユイ", - "イ" - ], - "onyomiExamples": [ - { - "example": "唯一", - "reading": "ユイイツ", - "meaning": "only, sole, unique" - }, - { - "example": "唯物論", - "reading": "ユイブツロン", - "meaning": "materialism (philosophy)" - }, - { - "example": "唯々", - "reading": "イイ", - "meaning": "obedient, submissive, tame, slavish" - }, - { - "example": "唯々諾々", - "reading": "イイダクダク", - "meaning": "obedient, submissive, tame, slavish" - }, - { - "example": "唯々", - "reading": "イイ", - "meaning": "obedient, submissive, tame, slavish" - } - ], - "kunyomiExamples": [ - { - "example": "只", - "reading": "ただ", - "meaning": "ordinary, common, usual, free of charge, unaffected, as is, safe, only, merely, just, simply, but, however, nevertheless" - }, - { - "example": "ただ今", - "reading": "ただいま", - "meaning": "Here I am, I'm home!, presently, right away, right now, just now" - } - ], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "口", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21807_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0552f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/552f.gif", - "uri": "http://jisho.org/search/%E5%94%AF%23kanji" - }, - { - "query": "幽", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1996", - "strokeCount": 9, - "meaning": "seclude, confine to a room, deep, profound, secluded, faint, dark, tranquil, calm", - "kunyomi": [ - "ふか.い", - "かす.か", - "くら.い", - "しろ.い" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "幽霊", - "reading": "ユウレイ", - "meaning": "ghost, specter, spectre, apparition, phantom" - }, - { - "example": "憂鬱", - "reading": "ユウウツ", - "meaning": "depression, melancholy, dejection, gloom, despondency" - }, - { - "example": "幽々", - "reading": "ユウユウ", - "meaning": "deep, dark" - }, - { - "example": "帰幽", - "reading": "キユウ", - "meaning": "death" - } - ], - "kunyomiExamples": [ - { - "example": "微か", - "reading": "かすか", - "meaning": "faint, dim, weak, slight, vague, indistinct, hazy, poor, wretched, meagre, meager, scanty" - } - ], - "radical": { - "symbol": "幺", - "meaning": "short, tiny" - }, - "parts": [ - "凵", - "幺", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24189_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05e7d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5e7d.gif", - "uri": "http://jisho.org/search/%E5%B9%BD%23kanji" - }, - { - "query": "悠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1921", - "strokeCount": 11, - "meaning": "permanence, distant, long time, leisure", - "kunyomi": [], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "悠", - "reading": "ユウ", - "meaning": "quiet, calm, leisurely, distant, far off, boundless, endless" - }, - { - "example": "悠々", - "reading": "ユウユウ", - "meaning": "quiet, calm, leisurely, distant, far off, boundless, endless, easily, comfortably, without difficulty" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "乞", - "化", - "夂", - "心", - "攵", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24736_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060a0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60a0.gif", - "uri": "http://jisho.org/search/%E6%82%A0%23kanji" - }, - { - "query": "湧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2070", - "strokeCount": 12, - "meaning": "boil, ferment, seethe, uproar, breed", - "kunyomi": [ - "わ.く" - ], - "onyomi": [ - "ユウ", - "ヨウ", - "ユ" - ], - "onyomiExamples": [ - { - "example": "湧水", - "reading": "ユウスイ", - "meaning": "spring, welling of water" - }, - { - "example": "湧出", - "reading": "ユウシュツ", - "meaning": "gushing out, welling up, springing up" - }, - { - "example": "湧出", - "reading": "ユウシュツ", - "meaning": "gushing out, welling up, springing up" - }, - { - "example": "湧水", - "reading": "ユウスイ", - "meaning": "spring, welling of water" - }, - { - "example": "湧出", - "reading": "ユウシュツ", - "meaning": "gushing out, welling up, springing up" - } - ], - "kunyomiExamples": [ - { - "example": "湧く", - "reading": "わく", - "meaning": "to well (up), to gush forth (of water), to spring out, to surge, to appear (esp. suddenly) (sweat, tears, etc.), to feel emotions from (joy, bravery, etc.), to hatch (esp. of parasitic insects, etc.)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "マ", - "力", - "汁", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28263_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e67.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e67.gif", - "uri": "http://jisho.org/search/%E6%B9%A7%23kanji" - }, - { - "query": "猶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1799", - "strokeCount": 12, - "meaning": "furthermore, still, yet", - "kunyomi": [ - "なお" - ], - "onyomi": [ - "ユウ", - "ユ" - ], - "onyomiExamples": [ - { - "example": "猶予", - "reading": "ユウヨ", - "meaning": "postponement, deferment, extension (of time)" - }, - { - "example": "猶子", - "reading": "ユウシ", - "meaning": "nephew (like a son), another child considered as one's own" - }, - { - "example": "猶予", - "reading": "ユウヨ", - "meaning": "postponement, deferment, extension (of time)" - }, - { - "example": "猶太", - "reading": "ユダヤ", - "meaning": "Judea (southern Palestine), Jews" - } - ], - "kunyomiExamples": [ - { - "example": "尚", - "reading": "なお", - "meaning": "still, yet, more, still more, greater, further, as ..., like ..., furthermore, in addition, moreover, note that ..." - }, - { - "example": "尚更", - "reading": "なおさら", - "meaning": "still more, even more, all the more, still less, even less" - }, - { - "example": "今なお", - "reading": "いまなお", - "meaning": "still, even now" - }, - { - "example": "今もなお", - "reading": "いまもなお", - "meaning": "still, even now" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "并", - "犯", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29494_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07336.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7336.gif", - "uri": "http://jisho.org/search/%E7%8C%B6%23kanji" - }, - { - "query": "裕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1048", - "strokeCount": 12, - "meaning": "abundant, rich, fertile", - "kunyomi": [], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "裕福", - "reading": "ユウフク", - "meaning": "wealthy, rich, affluent, well-off" - }, - { - "example": "優に", - "reading": "ユウニ", - "meaning": "easily (reach, exceed, etc.), comfortably, amply, fully, well over" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "ハ", - "个", - "初", - "口", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35029_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088d5.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88d5.gif", - "uri": "http://jisho.org/search/%E8%A3%95%23kanji" - }, - { - "query": "雄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "669", - "strokeCount": 12, - "meaning": "masculine, male, hero, leader, superiority, excellence", - "kunyomi": [ - "お-", - "おす", - "おん" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "雄", - "reading": "ユウ", - "meaning": "male, man, excellence, greatness, best (of), great person, leading figure" - }, - { - "example": "雄大", - "reading": "ユウダイ", - "meaning": "grand, magnificent, majestic, great, sublime" - }, - { - "example": "雌雄", - "reading": "シユウ", - "meaning": "male and female (animals), the two sexes, victory and defeat, strengths and weaknesses" - }, - { - "example": "両雄", - "reading": "リョウユウ", - "meaning": "two great men (rivals)" - } - ], - "kunyomiExamples": [ - { - "example": "雄", - "reading": "おす", - "meaning": "male (animal, plant)" - }, - { - "example": "雄犬", - "reading": "おすいぬ", - "meaning": "male dog" - }, - { - "example": "雄", - "reading": "おす", - "meaning": "male (animal, plant)" - }, - { - "example": "雄鶏", - "reading": "おんどり", - "meaning": "cock, rooster, chanticleer" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "ノ", - "一", - "厶", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38596_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096c4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96c4.gif", - "uri": "http://jisho.org/search/%E9%9B%84%23kanji" - }, - { - "query": "誘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "993", - "strokeCount": 14, - "meaning": "entice, lead, tempt, invite, ask, call for, seduce, allure", - "kunyomi": [ - "さそ.う", - "いざな.う" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "誘致", - "reading": "ユウチ", - "meaning": "attraction, lure, invitation" - }, - { - "example": "誘拐", - "reading": "ユウカイ", - "meaning": "abduction, kidnapping, kidnaping" - }, - { - "example": "不招請勧誘", - "reading": "フショウセイカンユウ", - "meaning": "unsolicited promotion" - }, - { - "example": "劇場型勧誘", - "reading": "ゲキジョウガタカンユウ", - "meaning": "advertising fraudulent investment schemes with glossy brochures, phone calls, etc." - } - ], - "kunyomiExamples": [ - { - "example": "誘う", - "reading": "さそう", - "meaning": "to invite, to ask (someone to do), to call (for), to take (someone) along, to tempt, to lure, to entice, to seduce, to induce (tears, laughter, sleepiness, etc.), to arouse (e.g. sympathy), to provoke" - }, - { - "example": "誘う", - "reading": "さそう", - "meaning": "to invite, to ask (someone to do), to call (for), to take (someone) along, to tempt, to lure, to entice, to seduce, to induce (tears, laughter, sleepiness, etc.), to arouse (e.g. sympathy), to provoke" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "ノ", - "乃", - "禾", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35480_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a98.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a98.gif", - "uri": "http://jisho.org/search/%E8%AA%98%23kanji" - }, - { - "query": "憂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1625", - "strokeCount": 15, - "meaning": "melancholy, grieve, lament, be anxious, sad, unhappy", - "kunyomi": [ - "うれ.える", - "うれ.い", - "う.い", - "う.き" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "憂慮", - "reading": "ユウリョ", - "meaning": "anxiety, concern, fear" - }, - { - "example": "憂鬱", - "reading": "ユウウツ", - "meaning": "depression, melancholy, dejection, gloom, despondency" - }, - { - "example": "外憂", - "reading": "ガイユウ", - "meaning": "external troubles, foreign threat" - }, - { - "example": "内憂", - "reading": "ナイユウ", - "meaning": "internal troubles, domestic discord" - } - ], - "kunyomiExamples": [ - { - "example": "憂える", - "reading": "うれえる", - "meaning": "to worry about, to be anxious about, to be concerned about, to lament, to grieve, to feel sorrow for" - }, - { - "example": "憂い", - "reading": "うれい", - "meaning": "sorrow, grief, anguish, distress, trouble, affliction, anxiety, fear, misgivings" - }, - { - "example": "憂い顔", - "reading": "うれいがお", - "meaning": "sad face, sorrowful face, anxious look, sad countenance" - }, - { - "example": "憂い", - "reading": "うい", - "meaning": "unhappy, sad, gloomy" - }, - { - "example": "憂き", - "reading": "うき", - "meaning": "unhappy, sad, gloomy" - }, - { - "example": "憂き目", - "reading": "うきめ", - "meaning": "bitter experience, misery, distress, grief, sad thoughts, hardship" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "一", - "冖", - "夂", - "心", - "白", - "自" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24962_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06182.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6182.gif", - "uri": "http://jisho.org/search/%E6%86%82%23kanji" - }, - { - "query": "融", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "481", - "strokeCount": 16, - "meaning": "dissolve, melt", - "kunyomi": [ - "と.ける", - "と.かす" - ], - "onyomi": [ - "ユウ" - ], - "onyomiExamples": [ - { - "example": "融資", - "reading": "ユウシ", - "meaning": "financing, loan" - }, - { - "example": "融合", - "reading": "ユウゴウ", - "meaning": "agglutination, adhesion, fusion, combination, blending, uniting" - }, - { - "example": "溶融", - "reading": "ヨウユウ", - "meaning": "melting, fusion" - }, - { - "example": "炉心溶融", - "reading": "ロシンヨウユウ", - "meaning": "core meltdown, meltdown, nuclear reactor core meltdown" - } - ], - "kunyomiExamples": [ - { - "example": "溶ける", - "reading": "とける", - "meaning": "to melt, to thaw, to fuse, to dissolve" - }, - { - "example": "溶かす", - "reading": "とかす", - "meaning": "to dissolve, to melt" - } - ], - "radical": { - "symbol": "虫", - "meaning": "insect" - }, - "parts": [ - "儿", - "冂", - "口", - "虫", - "鬲" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34701_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0878d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/878d.gif", - "uri": "http://jisho.org/search/%E8%9E%8D%23kanji" - }, - { - "query": "与", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "308", - "strokeCount": 3, - "meaning": "bestow, participate in, give, award, impart, provide, cause, gift, godsend", - "kunyomi": [ - "あた.える", - "あずか.る", - "くみ.する", - "ともに" - ], - "onyomi": [ - "ヨ" - ], - "onyomiExamples": [ - { - "example": "与野党", - "reading": "ヨヤトウ", - "meaning": "ruling and opposition parties, parties in and out of power" - }, - { - "example": "与党", - "reading": "ヨトウ", - "meaning": "ruling party, government party, party in power, government" - }, - { - "example": "賞与", - "reading": "ショウヨ", - "meaning": "bonus, reward, prize" - }, - { - "example": "贈与", - "reading": "ゾウヨ", - "meaning": "donation, presentation" - } - ], - "kunyomiExamples": [ - { - "example": "与える", - "reading": "あたえる", - "meaning": "to give (esp. to someone of lower status), to bestow, to grant, to confer, to present, to award, to provide, to afford, to offer, to supply, to assign, to cause, to pass (a variable to a function)" - }, - { - "example": "与る", - "reading": "あずかる", - "meaning": "to participate in, to take part in, to play a part in, to receive, to be given, to enjoy" - }, - { - "example": "与する", - "reading": "くみする", - "meaning": "to take part in, to be a party to, to side with, to support, to agree with" - } - ], - "radical": { - "symbol": "一", - "meaning": "one" - }, - "parts": [ - "一", - "勹", - "卜" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/19982_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e0e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e0e.gif", - "uri": "http://jisho.org/search/%E4%B8%8E%23kanji" - }, - { - "query": "誉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1064", - "strokeCount": 13, - "meaning": "reputation, praise, honor, glory", - "kunyomi": [ - "ほま.れ", - "ほ.める" - ], - "onyomi": [ - "ヨ" - ], - "onyomiExamples": [ - { - "example": "誉望", - "reading": "ヨボウ", - "meaning": "honor, honour" - }, - { - "example": "声誉", - "reading": "セイヨ", - "meaning": "reputation, fame, credit, honor and distinction, honour and distinction" - }, - { - "example": "毀誉", - "reading": "キヨ", - "meaning": "praise and censure, approval and disapproval, approbation and condemnation" - } - ], - "kunyomiExamples": [ - { - "example": "誉れ", - "reading": "ほまれ", - "meaning": "honour, honor" - }, - { - "example": "誉れ高い", - "reading": "ほまれたかい", - "meaning": "renowned, famous" - }, - { - "example": "褒める", - "reading": "ほめる", - "meaning": "to praise, to commend, to compliment, to speak well of, to speak highly of" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "一", - "尚", - "并", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35465_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08a89.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8a89.gif", - "uri": "http://jisho.org/search/%E8%AA%89%23kanji" - }, - { - "query": "妖", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1964", - "strokeCount": 7, - "meaning": "attractive, bewitching, calamity", - "kunyomi": [ - "あや.しい", - "なま.めく", - "わざわ.い" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "妖精", - "reading": "ヨウセイ", - "meaning": "fairy, sprite, elf" - }, - { - "example": "妖怪", - "reading": "ヨウカイ", - "meaning": "ghost, apparition, phantom, spectre, specter, demon, monster, goblin" - }, - { - "example": "大妖", - "reading": "タイヨウ", - "meaning": "great demon, ghostly giant" - }, - { - "example": "天変地夭", - "reading": "テンペンチヨウ", - "meaning": "natural disaster" - } - ], - "kunyomiExamples": [ - { - "example": "妖しい", - "reading": "あやしい", - "meaning": "mysterious, bewitching, alluring, enticing, enchanting" - } - ], - "radical": { - "symbol": "女", - "meaning": "woman, female" - }, - "parts": [ - "ノ", - "大", - "女" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22934_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05996.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5996.gif", - "uri": "http://jisho.org/search/%E5%A6%96%23kanji" - }, - { - "query": "庸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2038", - "strokeCount": 11, - "meaning": "commonplace, ordinary, employment", - "kunyomi": [], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "庸", - "reading": "ヨウ", - "meaning": "tax paid to avoid forced labor (ritsuryo period), tax in kind, mediocrity" - }, - { - "example": "庸君", - "reading": "ヨウクン", - "meaning": "stupid ruler" - }, - { - "example": "登用", - "reading": "トウヨウ", - "meaning": "appointment, assignment, promotion" - }, - { - "example": "凡庸", - "reading": "ボンヨウ", - "meaning": "mediocre, ordinary, commonplace, banal" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "ヨ", - "广", - "用", - "聿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24248_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05eb8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5eb8.gif", - "uri": "http://jisho.org/search/%E5%BA%B8%23kanji" - }, - { - "query": "揚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1316", - "strokeCount": 12, - "meaning": "raise, elevate, hoist, praise, extol, fry in deep fat", - "kunyomi": [ - "あ.げる", - "-あ.げ", - "あ.がる" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "揚力", - "reading": "ヨウリョク", - "meaning": "dynamic lift, lifting power" - }, - { - "example": "揚音", - "reading": "ヨウオン", - "meaning": "acute (accent, etc.)" - }, - { - "example": "高揚", - "reading": "コウヨウ", - "meaning": "elevation (of spirits), raising (of morale), uplift, upsurge" - }, - { - "example": "掲揚", - "reading": "ケイヨウ", - "meaning": "hoisting (e.g. a flag), raising, flying, putting up" - } - ], - "kunyomiExamples": [ - { - "example": "上げる", - "reading": "あげる", - "meaning": "to raise, to elevate, to do up (one's hair), to fly (a kite, etc.), to launch (fireworks, etc.), to surface (a submarine, etc.), to land (a boat), to deep-fry, to show someone (into a room), to give, to send someone (away), to enrol (one's child in school), to enroll, to increase (price, quality, status, etc.), to develop (talent, skill), to improve, to make (a loud sound), to raise (one's voice), to earn (something desirable), to praise, to give (an example, etc.), to cite, to summon up (all of one's energy, etc.), to arrest, to nominate, to summon (for geishas, etc.), to offer up (incense, a prayer, etc.) to the gods (or Buddha, etc.), to bear (a child), to conduct (a ceremony, esp. a wedding), (of the tide) to come in, to vomit, to do for (the sake of someone else), to complete ..., to humbly do ..." - }, - { - "example": "上がる", - "reading": "あがる", - "meaning": "to rise, to go up, to come up, to ascend, to be raised, to enter (esp. from outdoors), to come in, to go in, to enter (a school), to advance to the next grade, to get out (of water), to come ashore, to increase, to improve, to make progress, to be promoted, to advance, to be made (of profit, etc.), to occur (esp. of a favourable result), to be adequate (to cover expenses, etc.), to be finished, to be done, to be over, (of rain) to stop, to lift, to stop (working properly), to cut out, to give out, to die, to win (in a card game, etc.), to be arrested, to turn up (of evidence, etc.), to be deep fried, to be spoken loudly, to get nervous, to get stage fright, to be offered (to the gods, etc.), to go, to visit, to eat, to drink, to be listed (as a candidate), to serve (in one's master's home), to go north, to be complete, to finish" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "一", - "勿", - "扎", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25562_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063da.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63da.gif", - "uri": "http://jisho.org/search/%E6%8F%9A%23kanji" - }, - { - "query": "揺", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1079", - "strokeCount": 12, - "meaning": "swing, shake, sway, rock, tremble, vibrate", - "kunyomi": [ - "ゆ.れる", - "ゆ.る", - "ゆ.らぐ", - "ゆ.るぐ", - "ゆ.する", - "ゆ.さぶる", - "ゆ.すぶる", - "うご.く" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "揺曳", - "reading": "ヨウエイ", - "meaning": "flutter, linger" - }, - { - "example": "揺蕩", - "reading": "ヨウトウ", - "meaning": "shaking, swaying" - } - ], - "kunyomiExamples": [ - { - "example": "揺れる", - "reading": "ゆれる", - "meaning": "to shake, to sway, to waver" - }, - { - "example": "揺る", - "reading": "ゆる", - "meaning": "to shake, to jolt, to rock (cradle), to swing" - }, - { - "example": "揺るがす", - "reading": "ゆるがす", - "meaning": "to shake, to swing, to sway, to shock" - }, - { - "example": "揺らぐ", - "reading": "ゆらぐ", - "meaning": "to swing, to sway, to shake, to tremble, to waver, to feel shaken, to become unstable" - }, - { - "example": "揺るぐ", - "reading": "ゆるぐ", - "meaning": "to shake, to waver, to tremble" - }, - { - "example": "揺する", - "reading": "ゆする", - "meaning": "to shake, to jolt, to rock (cradle), to swing, to blackmail, to extort, to shake down" - }, - { - "example": "揺さぶる", - "reading": "ゆさぶる", - "meaning": "to shake, to jolt, to rock, to swing, to sway, to shake (e.g. the political world), to disturb, to shock, to upset, to put off a batter (by varying one's type of pitch)" - }, - { - "example": "揺すぶる", - "reading": "ゆすぶる", - "meaning": "to shake, to jolt, to rock, to swing" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "凵", - "干", - "扎", - "爪" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25594_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/063fa.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/63fa.gif", - "uri": "http://jisho.org/search/%E6%8F%BA%23kanji" - }, - { - "query": "溶", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1364", - "strokeCount": 13, - "meaning": "melt, dissolve, thaw", - "kunyomi": [ - "と.ける", - "と.かす", - "と.く" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "溶岩", - "reading": "ヨウガン", - "meaning": "lava" - }, - { - "example": "溶液", - "reading": "ヨウエキ", - "meaning": "solution (liquid)" - }, - { - "example": "溶溶", - "reading": "ヨウヨウ", - "meaning": "vast, overflowing with water, spacious" - }, - { - "example": "可溶", - "reading": "カヨウ", - "meaning": "soluble, solubilizing, solubilising" - } - ], - "kunyomiExamples": [ - { - "example": "溶ける", - "reading": "とける", - "meaning": "to melt, to thaw, to fuse, to dissolve" - }, - { - "example": "溶かす", - "reading": "とかす", - "meaning": "to dissolve, to melt" - }, - { - "example": "溶く", - "reading": "とく", - "meaning": "to dissolve (paint), to scramble (eggs), to melt (metal, etc.), to mix (water with flour, etc.)" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ハ", - "个", - "口", - "宀", - "汁", - "穴", - "谷" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28342_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06eb6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6eb6.gif", - "uri": "http://jisho.org/search/%E6%BA%B6%23kanji" - }, - { - "query": "腰", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1306", - "strokeCount": 13, - "meaning": "loins, hips, waist, low wainscoting", - "kunyomi": [ - "こし" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "腰", - "reading": "コシ", - "meaning": "counter for swords, hakama, obi, etc. worn around the waist, counter for quivers of arrows" - }, - { - "example": "腰痛", - "reading": "ヨウツウ", - "meaning": "lower back (or hip) pain, lumbago" - }, - { - "example": "細腰", - "reading": "サイヨウ", - "meaning": "slender hips, slim waist" - } - ], - "kunyomiExamples": [ - { - "example": "腰", - "reading": "こし", - "meaning": "lower back, waist, hips, lumbar region, body (of hair, noodle, paper, etc.), resilience, spring" - }, - { - "example": "腰", - "reading": "こし", - "meaning": "counter for swords, hakama, obi, etc. worn around the waist, counter for quivers of arrows" - }, - { - "example": "お腰", - "reading": "おこし", - "meaning": "buttocks, lower back, waist, hips, kimono underskirt" - }, - { - "example": "太刀二腰", - "reading": "たちふたこし", - "meaning": "two swords" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "女", - "月", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33136_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08170.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8170.gif", - "uri": "http://jisho.org/search/%E8%85%B0%23kanji" - }, - { - "query": "瘍", - "found": true, - "taughtIn": "junior high", - "strokeCount": 14, - "meaning": "swelling, boil, tumor", - "kunyomi": [ - "かさ" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "胃潰瘍", - "reading": "イカイヨウ", - "meaning": "stomach ulcer" - }, - { - "example": "消化性潰瘍", - "reading": "ショウカセイカイヨウ", - "meaning": "peptic ulcer" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "ノ", - "一", - "勹", - "勿", - "日", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30221_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0760d.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/760d.gif", - "uri": "http://jisho.org/search/%E7%98%8D%23kanji" - }, - { - "query": "踊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1308", - "strokeCount": 14, - "meaning": "jump, dance, leap, skip", - "kunyomi": [ - "おど.る" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "踊躍", - "reading": "ヨウヤク", - "meaning": "leaping with joy, jumping about" - }, - { - "example": "現代舞踊", - "reading": "ゲンダイブヨウ", - "meaning": "contemporary dance, modern dance" - }, - { - "example": "歌舞伎舞踊", - "reading": "カブキブヨウ", - "meaning": "kabuki dance" - } - ], - "kunyomiExamples": [ - { - "example": "踊る", - "reading": "おどる", - "meaning": "to dance (orig. a hopping dance)" - }, - { - "example": "踊る阿呆に見る阿呆", - "reading": "おどるあほうにみるあほう", - "meaning": "you're a fool if you dance, and a fool if you just look on; we're all fools, so let's dance" - } - ], - "radical": { - "symbol": "足", - "forms": [ - "⻊" - ], - "meaning": "foot" - }, - "parts": [ - "マ", - "口", - "止", - "用", - "足" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36362_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08e0a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8e0a.gif", - "uri": "http://jisho.org/search/%E8%B8%8A%23kanji" - }, - { - "query": "窯", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2072", - "strokeCount": 15, - "meaning": "kiln, oven, furnace", - "kunyomi": [ - "かま" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "窯業", - "reading": "ヨウギョウ", - "meaning": "ceramics, ceramic industry" - }, - { - "example": "窯変", - "reading": "ヨウヘン", - "meaning": "deformation during firing (ceramics), color variation during firing" - }, - { - "example": "瓦窯", - "reading": "ガヨウ", - "meaning": "tile kiln" - }, - { - "example": "官窯", - "reading": "カンヨウ", - "meaning": "governmental porcelain furnace" - } - ], - "kunyomiExamples": [ - { - "example": "窯", - "reading": "かま", - "meaning": "stove, furnace, kiln" - }, - { - "example": "窯元", - "reading": "かまもと", - "meaning": "pottery (i.e. the place), potter" - } - ], - "radical": { - "symbol": "穴", - "meaning": "cave" - }, - "parts": [ - "儿", - "宀", - "并", - "杰", - "王", - "穴", - "羊" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31407_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07aaf.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7aaf.gif", - "uri": "http://jisho.org/search/%E7%AA%AF%23kanji" - }, - { - "query": "擁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1213", - "strokeCount": 16, - "meaning": "hug, embrace, possess, protect, lead", - "kunyomi": [], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "擁する", - "reading": "ヨウスル", - "meaning": "to have, to possess" - }, - { - "example": "擁護", - "reading": "ヨウゴ", - "meaning": "protection, advocacy, support, defence, championship, vindication, to protect (e.g. rights, etc.), to advocate (e.g. free trade, etc.), to support" - }, - { - "example": "抱擁", - "reading": "ホウヨウ", - "meaning": "embrace, hug, holding in one's arms" - }, - { - "example": "相擁", - "reading": "アイヨウ", - "meaning": "embrace, hug" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "亠", - "幺", - "扎", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25793_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/064c1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/64c1.gif", - "uri": "http://jisho.org/search/%E6%93%81%23kanji" - }, - { - "query": "謡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1580", - "strokeCount": 16, - "meaning": "song, sing, ballad, noh chanting", - "kunyomi": [ - "うた.い", - "うた.う" - ], - "onyomi": [ - "ヨウ" - ], - "onyomiExamples": [ - { - "example": "謡曲", - "reading": "ヨウキョク", - "meaning": "noh song" - }, - { - "example": "民謡", - "reading": "ミンヨウ", - "meaning": "folk song, popular song" - }, - { - "example": "歌謡", - "reading": "カヨウ", - "meaning": "song, ballad" - } - ], - "kunyomiExamples": [ - { - "example": "謡", - "reading": "うたい", - "meaning": "noh chanting, recitation" - }, - { - "example": "謡物", - "reading": "うたいもの", - "meaning": "utai (noh chant) piece for recitation" - }, - { - "example": "地謡", - "reading": "じうたい", - "meaning": "noh chorus" - }, - { - "example": "素謡", - "reading": "すうたい", - "meaning": "bare noh chanting, vocal-only noh theater performance, with no dancing or instruments, unaccompanied utai" - }, - { - "example": "歌う", - "reading": "うたう", - "meaning": "to sing, to sing (one's praises in a poem, etc.), to compose a poem, to recite a poem" - } - ], - "radical": { - "symbol": "言", - "forms": [ - "訁" - ], - "meaning": "speech" - }, - "parts": [ - "凵", - "干", - "爪", - "言" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35617_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08b21.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8b21.gif", - "uri": "http://jisho.org/search/%E8%AC%A1%23kanji" - }, - { - "query": "抑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "834", - "strokeCount": 7, - "meaning": "repress, well, now, in the first place, push, shove, press, seal, do in spite of", - "kunyomi": [ - "おさ.える" - ], - "onyomi": [ - "ヨク" - ], - "onyomiExamples": [ - { - "example": "抑止", - "reading": "ヨクシ", - "meaning": "check, checkmate, stave off, control, restraint, inhibit, deterrent, deterrence" - }, - { - "example": "抑圧", - "reading": "ヨクアツ", - "meaning": "check, restraint, oppression, suppression" - }, - { - "example": "圧抑", - "reading": "アツヨク", - "meaning": "check, restraint, oppression, suppression" - }, - { - "example": "謙抑", - "reading": "ケンヨク", - "meaning": "humbling oneself" - } - ], - "kunyomiExamples": [ - { - "example": "抑える", - "reading": "おさえる", - "meaning": "to keep within limits (e.g. spending), to restrain (e.g. emotions), to control, to curb, to hold in check, to hold back (e.g. an enemy), to check, to curb, to contain, to quell, to subdue, to suppress, to repress" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "卩", - "扎" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25233_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06291.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6291.gif", - "uri": "http://jisho.org/search/%E6%8A%91%23kanji" - }, - { - "query": "沃", - "found": true, - "taughtIn": "junior high", - "strokeCount": 7, - "meaning": "fertility", - "kunyomi": [ - "そそ.ぐ" - ], - "onyomi": [ - "ヨウ", - "ヨク", - "オク" - ], - "onyomiExamples": [ - { - "example": "沃度丁幾", - "reading": "ヨウドチンキ", - "meaning": "tincture of iodine" - }, - { - "example": "ヨウ化", - "reading": "ヨウカ", - "meaning": "iodization, iodisation" - }, - { - "example": "沃地", - "reading": "ヨクチ", - "meaning": "fertile land, oasis" - }, - { - "example": "沃田", - "reading": "ヨクデン", - "meaning": "fertile field, field with fertile soil" - }, - { - "example": "膏沃", - "reading": "コウヨク", - "meaning": "fertile soil, fertile land, fertility" - }, - { - "example": "豊沃", - "reading": "ホウヨク", - "meaning": "fertility" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "大", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27779_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06c83.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6c83.gif", - "uri": "http://jisho.org/search/%E6%B2%83%23kanji" - }, - { - "query": "翼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1201", - "strokeCount": 17, - "meaning": "wing, plane, flank", - "kunyomi": [ - "つばさ" - ], - "onyomi": [ - "ヨク" - ], - "onyomiExamples": [ - { - "example": "翼", - "reading": "ツバサ", - "meaning": "wing, Chinese \"Wings\" constellation (one of the 28 mansions), counter for birds or bird wings" - }, - { - "example": "翼下", - "reading": "ヨッカ", - "meaning": "under the wing (esp. of an aircraft), under one's wing, under one's control" - }, - { - "example": "左翼", - "reading": "サヨク", - "meaning": "left-wing (politics), left wing (of a bird, aircraft, formation, etc.), left flank, left field" - }, - { - "example": "右翼", - "reading": "ウヨク", - "meaning": "right-wing (politics), extreme right-wing group, right wing (bird, plane, etc.), right field, right flank, right wing, right fielder, high rank, high grade, A-student" - } - ], - "kunyomiExamples": [ - { - "example": "翼", - "reading": "つばさ", - "meaning": "wing, Chinese \"Wings\" constellation (one of the 28 mansions), counter for birds or bird wings" - }, - { - "example": "翼沙魚", - "reading": "つばさはぜ", - "meaning": "loach goby (Rhyacichthys aspro)" - }, - { - "example": "片翼", - "reading": "かたよく", - "meaning": "one wing, single wing" - }, - { - "example": "虎に翼", - "reading": "とらにつばさ", - "meaning": "making the strong even stronger" - } - ], - "radical": { - "symbol": "羽", - "meaning": "feather" - }, - "parts": [ - "ハ", - "一", - "二", - "井", - "冫", - "田", - "羽", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32764_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ffc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ffc.gif", - "uri": "http://jisho.org/search/%E7%BF%BC%23kanji" - }, - { - "query": "拉", - "found": true, - "taughtIn": "junior high", - "strokeCount": 8, - "meaning": "Latin, kidnap, crush", - "kunyomi": [ - "らっ.する", - "ひし.ぐ", - "くだ.く" - ], - "onyomi": [ - "ラツ", - "ラ", - "ロウ" - ], - "onyomiExamples": [ - { - "example": "拉麺", - "reading": "ラーメン", - "meaning": "ramen, Chinese-style noodles" - }, - { - "example": "拉致問題", - "reading": "ラチモンダイ", - "meaning": "abduction issue (esp. of those Japanese abducted by North Korea)" - }, - { - "example": "撒哈拉", - "reading": "サハラ", - "meaning": "Sahara" - }, - { - "example": "委内瑞拉", - "reading": "ベネズエラ", - "meaning": "Venezuela" - } - ], - "kunyomiExamples": [ - { - "example": "拉ぐ", - "reading": "ひしぐ", - "meaning": "to crush" - } - ], - "radical": { - "symbol": "手", - "forms": [ - "扌龵" - ], - "meaning": "hand" - }, - "parts": [ - "扎", - "立" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25289_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/062c9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/62c9.gif", - "uri": "http://jisho.org/search/%E6%8B%89%23kanji" - }, - { - "query": "裸", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1796", - "strokeCount": 13, - "meaning": "naked, nude, uncovered, partially clothed", - "kunyomi": [ - "はだか" - ], - "onyomi": [ - "ラ" - ], - "onyomiExamples": [ - { - "example": "裸体", - "reading": "ラタイ", - "meaning": "naked body, nudity" - }, - { - "example": "裸眼", - "reading": "ラガン", - "meaning": "bare eyes (i.e. without glasses, contact lenses, etc.), uncorrected vision, unaided vision" - }, - { - "example": "全裸", - "reading": "ゼンラ", - "meaning": "stark naked, nude" - }, - { - "example": "赤裸", - "reading": "セキラ", - "meaning": "stark naked, nude, bare, unvarnished (e.g. truth), plain (e.g. fact), frank, candid, outspoken" - } - ], - "kunyomiExamples": [ - { - "example": "裸", - "reading": "はだか", - "meaning": "nakedness, nudity, bareness, nakedness, baldness, being uncovered, being penniless, concealing nothing, openness" - }, - { - "example": "裸一貫", - "reading": "はだかいっかん", - "meaning": "having nothing except one's body, having empty pockets, being penniless" - }, - { - "example": "丸裸", - "reading": "まるはだか", - "meaning": "being stark-naked, having no possessions, losing all one's belongings" - }, - { - "example": "赤裸", - "reading": "あかはだか", - "meaning": "stark naked, nude, bare, stripped of all belongings, penniless, naked barley (Hordeum vulgare var. nudum)" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "初", - "木", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35064_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088f8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88f8.gif", - "uri": "http://jisho.org/search/%E8%A3%B8%23kanji" - }, - { - "query": "羅", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1831", - "strokeCount": 19, - "meaning": "gauze, thin silk, Rome, arrange, spread out", - "kunyomi": [ - "うすもの" - ], - "onyomi": [ - "ラ" - ], - "onyomiExamples": [ - { - "example": "薄物", - "reading": "ウスモノ", - "meaning": "lightweight fabric or clothing, silk gauze, thin silk, Latin (language)" - }, - { - "example": "ラテン語", - "reading": "ラテンゴ", - "meaning": "Latin (language)" - }, - { - "example": "修羅", - "reading": "シュラ", - "meaning": "Asura, demigod, anti-god, titan, demigods that fight the Devas (gods) in Hindu mythology, fighting, carnage, conflict, strife, sledge (for conveying large rocks, logs, etc.), log slide, chute, flume" - }, - { - "example": "甲羅", - "reading": "コウラ", - "meaning": "shell (of crab, tortoise, etc.), carapace, plastron, person's back, years of experience" - } - ], - "kunyomiExamples": [ - { - "example": "薄物", - "reading": "うすもの", - "meaning": "lightweight fabric or clothing, silk gauze, thin silk, Latin (language)" - } - ], - "radical": { - "symbol": "网", - "forms": [ - "罒", - "⺲", - "罓", - "⺳" - ], - "meaning": "net" - }, - "parts": [ - "小", - "幺", - "糸", - "買", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32645_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07f85.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7f85.gif", - "uri": "http://jisho.org/search/%E7%BE%85%23kanji" - }, - { - "query": "雷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1491", - "strokeCount": 13, - "meaning": "thunder, lightning bolt", - "kunyomi": [ - "かみなり", - "いかずち", - "いかづち" - ], - "onyomi": [ - "ライ" - ], - "onyomiExamples": [ - { - "example": "雷", - "reading": "カミナリ", - "meaning": "lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger" - }, - { - "example": "雷雨", - "reading": "ライウ", - "meaning": "thunderstorm" - }, - { - "example": "機雷", - "reading": "キライ", - "meaning": "(sea) mine" - }, - { - "example": "界雷", - "reading": "カイライ", - "meaning": "frontal thunderstorm" - } - ], - "kunyomiExamples": [ - { - "example": "雷", - "reading": "かみなり", - "meaning": "lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger" - }, - { - "example": "雷烏賊", - "reading": "かみなりいか", - "meaning": "kisslip cuttlefish (Sepia lycidas)" - }, - { - "example": "水雷", - "reading": "みずがみなり", - "meaning": "thunder accompanied by rain, lightning that does not start a fire" - }, - { - "example": "日雷", - "reading": "ひがみなり", - "meaning": "thunder on a clear day, lightning that starts a fire" - }, - { - "example": "雷", - "reading": "かみなり", - "meaning": "lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger" - }, - { - "example": "雷雲", - "reading": "らいうん", - "meaning": "thunder cloud" - }, - { - "example": "雷", - "reading": "かみなり", - "meaning": "lightning, thunder, thunderbolt, god of thunder, god of lightning, anger, fit of anger" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "田", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38647_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096f7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96f7.gif", - "uri": "http://jisho.org/search/%E9%9B%B7%23kanji" - }, - { - "query": "頼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "708", - "strokeCount": 16, - "meaning": "trust, request", - "kunyomi": [ - "たの.む", - "たの.もしい", - "たよ.る" - ], - "onyomi": [ - "ライ" - ], - "onyomiExamples": [ - { - "example": "頼信紙", - "reading": "ライシンシ", - "meaning": "telegram form, telegram blank" - }, - { - "example": "無頼", - "reading": "ブライ", - "meaning": "villainous, rascally, knavish, independent, self-reliant" - }, - { - "example": "市井無頼", - "reading": "シセイブライ", - "meaning": "urban villain, street hoodlum" - } - ], - "kunyomiExamples": [ - { - "example": "頼む", - "reading": "たのむ", - "meaning": "to request, to beg, to ask, to call, to order, to reserve, to entrust to, to rely on, please, please do" - }, - { - "example": "頼むから", - "reading": "たのむから", - "meaning": "please!, I'm asking you, for heaven's sake" - }, - { - "example": "頼もしい", - "reading": "たのもしい", - "meaning": "reliable, trustworthy, hopeful, promising" - }, - { - "example": "頼る", - "reading": "たよる", - "meaning": "to rely on, to depend on, to count on, to turn to (for help)" - } - ], - "radical": { - "symbol": "頁", - "meaning": "leaf" - }, - "parts": [ - "ハ", - "口", - "木", - "目", - "貝", - "頁", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38972_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0983c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/983c.gif", - "uri": "http://jisho.org/search/%E9%A0%BC%23kanji" - }, - { - "query": "絡", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "806", - "strokeCount": 12, - "meaning": "entwine, coil around, get caught in", - "kunyomi": [ - "から.む", - "から.まる" - ], - "onyomi": [ - "ラク" - ], - "onyomiExamples": [ - { - "example": "絡繹", - "reading": "ラクエキ", - "meaning": "constant stream of traffic, incessant traffic" - }, - { - "example": "絡糸嬢", - "reading": "ラクシジョウ", - "meaning": "cricket, bush-cricket" - }, - { - "example": "短絡", - "reading": "タンラク", - "meaning": "short circuit, short, illogical jump, drawing a hasty inference (between two events), jumping to conclusions, acting rashly" - }, - { - "example": "脈絡", - "reading": "ミャクラク", - "meaning": "logical connection, chain of reasoning, coherence, context, blood vessel" - } - ], - "kunyomiExamples": [ - { - "example": "絡む", - "reading": "からむ", - "meaning": "to entangle, to entwine, to pick a quarrel, to find fault, to be involved with, to be influenced by, to develop a connection with" - }, - { - "example": "絡まる", - "reading": "からまる", - "meaning": "to be entwined, to be involved" - } - ], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "口", - "夂", - "小", - "幺", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32097_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d61.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d61.gif", - "uri": "http://jisho.org/search/%E7%B5%A1%23kanji" - }, - { - "query": "酪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2012", - "strokeCount": 13, - "meaning": "dairy products, whey, broth, fruit juice", - "kunyomi": [], - "onyomi": [ - "ラク" - ], - "onyomiExamples": [ - { - "example": "酪", - "reading": "ラク", - "meaning": "acidic drink made from fermented milk (cow, sheep, mare; one of the five flavors in Buddhism)" - }, - { - "example": "酪農", - "reading": "ラクノウ", - "meaning": "dairy farming" - }, - { - "example": "製酪", - "reading": "セイラク", - "meaning": "dairy production (butter, cheese, etc.)" - }, - { - "example": "牛酪", - "reading": "ギュウラク", - "meaning": "butter" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "酉", - "meaning": "wine, alcohol" - }, - "parts": [ - "口", - "夂", - "酉" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37226_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0916a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/916a.gif", - "uri": "http://jisho.org/search/%E9%85%AA%23kanji" - }, - { - "query": "辣", - "found": true, - "taughtIn": "junior high", - "strokeCount": 14, - "meaning": "pungent, spicy, harsh, cruel, severe", - "kunyomi": [ - "から.い" - ], - "onyomi": [ - "ラツ" - ], - "onyomiExamples": [ - { - "example": "辣腕", - "reading": "ラツワン", - "meaning": "shrewdness, sharpness, astuteness, acumen, tact" - }, - { - "example": "悪辣", - "reading": "アクラツ", - "meaning": "crafty, vicious, unscrupulous, sharp" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "辛", - "meaning": "bitter" - }, - "parts": [ - "十", - "口", - "木", - "立", - "辛", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36771_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08fa3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8fa3.gif", - "uri": "http://jisho.org/search/%E8%BE%A3%23kanji" - }, - { - "query": "濫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 18, - "meaning": "excessive, overflow, spread out", - "kunyomi": [ - "みだ.りに", - "みだ.りがましい" - ], - "onyomi": [ - "ラン" - ], - "onyomiExamples": [ - { - "example": "乱発", - "reading": "ランパツ", - "meaning": "random firing, reckless firing, excessive issue" - }, - { - "example": "乱獲", - "reading": "ランカク", - "meaning": "excessive fishing, overfishing, overhunting, excessive taking" - } - ], - "kunyomiExamples": [ - { - "example": "妄りに", - "reading": "みだりに", - "meaning": "without authority, without reason, unnecessarily, recklessly, indiscriminately, arbitrarily" - }, - { - "example": "濫りがましい", - "reading": "みだりがましい", - "meaning": "morally corrupt" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "ノ", - "乞", - "二", - "汁", - "皿", - "臣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28651_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06feb.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6feb.gif", - "uri": "http://jisho.org/search/%E6%BF%AB%23kanji" - }, - { - "query": "藍", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2043", - "strokeCount": 18, - "meaning": "indigo", - "kunyomi": [ - "あい" - ], - "onyomi": [ - "ラン" - ], - "onyomiExamples": [ - { - "example": "藍綬褒章", - "reading": "ランジュホウショウ", - "meaning": "Medal with Blue Ribbon" - }, - { - "example": "藍衣社員", - "reading": "ランイシャイン", - "meaning": "blue-collar, blue-collar worker (employee)" - }, - { - "example": "伽藍", - "reading": "ガラン", - "meaning": "temple (esp. large one), monastery, temple building" - }, - { - "example": "芥藍", - "reading": "カイラン", - "meaning": "kai-lan, gai-lan, Chinese broccoli" - } - ], - "kunyomiExamples": [ - { - "example": "藍", - "reading": "あい", - "meaning": "dyer's knotweed (Persicaria tinctoria, used to produce indigo dye), indigo (dye), indigo (colour)" - }, - { - "example": "藍色", - "reading": "あいいろ", - "meaning": "indigo blue" - }, - { - "example": "人造藍", - "reading": "じんぞうあい", - "meaning": "synthetic indigo" - }, - { - "example": "琉球藍", - "reading": "りゅうきゅうあい", - "meaning": "Assam indigo (Strobilanthes cusia)" - } - ], - "radical": { - "symbol": "艸", - "forms": [ - "艹" - ], - "meaning": "grass" - }, - "parts": [ - "ノ", - "乞", - "二", - "皿", - "臣", - "艾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34253_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/085cd.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/85cd.gif", - "uri": "http://jisho.org/search/%E8%97%8D%23kanji" - }, - { - "query": "欄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1523", - "strokeCount": 20, - "meaning": "column, handrail, blank, space", - "kunyomi": [ - "てすり" - ], - "onyomi": [ - "ラン" - ], - "onyomiExamples": [ - { - "example": "欄", - "reading": "ラン", - "meaning": "section (e.g. in a newspaper), column, page, field (in a form, web page, etc.), blank, handrail, railing, banister, balustrade" - }, - { - "example": "欄干", - "reading": "ランカン", - "meaning": "railing, guard rail, handrail, banister, balustrade, parapet, (shining) brightly (of the moon or stars), (flowing) endlessly (of tears)" - }, - { - "example": "本欄", - "reading": "ホンラン", - "meaning": "this column" - }, - { - "example": "文芸欄", - "reading": "ブンゲイラン", - "meaning": "literary (and the arts) column" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "一", - "日", - "木", - "田", - "門", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27396_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06b04.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6b04.gif", - "uri": "http://jisho.org/search/%E6%AC%84%23kanji" - }, - { - "query": "吏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 6, - "meaning": "officer, an official", - "kunyomi": [], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "吏", - "reading": "リ", - "meaning": "government official, public official" - }, - { - "example": "吏員", - "reading": "リイン", - "meaning": "official" - }, - { - "example": "官吏", - "reading": "カンリ", - "meaning": "government official, clerk" - }, - { - "example": "刑吏", - "reading": "ケイリ", - "meaning": "executioner" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "一", - "丶", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21519_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0540f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/540f.gif", - "uri": "http://jisho.org/search/%E5%90%8F%23kanji" - }, - { - "query": "痢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2037", - "strokeCount": 12, - "meaning": "diarrhea", - "kunyomi": [], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "痢", - "reading": "リ", - "meaning": "diarrhea, diarrhoea" - }, - { - "example": "痢病", - "reading": "リビョウ", - "meaning": "dysentery" - }, - { - "example": "赤痢", - "reading": "セキリ", - "meaning": "dysentery" - }, - { - "example": "疫痢", - "reading": "エキリ", - "meaning": "children's dysentery" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "刈", - "疔", - "禾" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30178_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/075e2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/75e2.gif", - "uri": "http://jisho.org/search/%E7%97%A2%23kanji" - }, - { - "query": "履", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1619", - "strokeCount": 15, - "meaning": "perform, complete, footgear, shoes, boots, put on (the feet)", - "kunyomi": [ - "は.く" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "履歴書", - "reading": "リレキショ", - "meaning": "personal history, curriculum vitae, resume" - }, - { - "example": "履行", - "reading": "リコウ", - "meaning": "performance (of a duty), fulfillment (of a promise), fulfilment, execution (of a contract), discharge, implementation" - }, - { - "example": "草履", - "reading": "ゾウリ", - "meaning": "zōri, traditional Japanese thonged sandals" - }, - { - "example": "再履", - "reading": "サイリ", - "meaning": "repeating a course, taking a course again" - } - ], - "kunyomiExamples": [ - { - "example": "履く", - "reading": "はく", - "meaning": "to put on (lower-body clothing, e.g. pants, skirt, footwear), to wear, to affix (a sword to one's hip), to affix (a bowstring to a bow)" - } - ], - "radical": { - "symbol": "尸", - "meaning": "corpse" - }, - "parts": [ - "乞", - "夂", - "尸", - "彳", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23653_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05c65.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5c65.gif", - "uri": "http://jisho.org/search/%E5%B1%A5%23kanji" - }, - { - "query": "璃", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 15, - "meaning": "glassy, lapis lazuli", - "kunyomi": [], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "瑠璃", - "reading": "ルリ", - "meaning": "lapis lazuli, lapis lazuli (color), beryl, mall blue passerine bird (esp. the blue-and-white flycatcher and the Siberian blue robin, but also the red-flanked bluetail), glass" - }, - { - "example": "浄瑠璃", - "reading": "ジョウルリ", - "meaning": "jōruri, type of dramatic recitation accompanied by a shamisen (associated with Japanese puppet theater)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "亠", - "凵", - "王", - "禹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29827_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07483.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7483.gif", - "uri": "http://jisho.org/search/%E7%92%83%23kanji" - }, - { - "query": "離", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "555", - "strokeCount": 19, - "meaning": "detach, separation, disjoin, digress", - "kunyomi": [ - "はな.れる", - "はな.す" - ], - "onyomi": [ - "リ" - ], - "onyomiExamples": [ - { - "example": "離", - "reading": "リ", - "meaning": "li (one of the trigrams of the I Ching: fire, south)" - }, - { - "example": "離宮", - "reading": "リキュウ", - "meaning": "imperial villa, royal villa, detached palace" - }, - { - "example": "短距離", - "reading": "タンキョリ", - "meaning": "short distance, short range, short-haul" - }, - { - "example": "近距離", - "reading": "キンキョリ", - "meaning": "short distance" - } - ], - "kunyomiExamples": [ - { - "example": "離れる", - "reading": "はなれる", - "meaning": "to be separated, to be apart, to be distant, to leave, to go away, to leave (a job, etc.), to quit, to give up, to lose connection with, to drift away from" - }, - { - "example": "離す", - "reading": "はなす", - "meaning": "to separate, to part, to divide, to keep apart" - } - ], - "radical": { - "symbol": "隹", - "meaning": "small bird" - }, - "parts": [ - "亠", - "凵", - "禹", - "隹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38626_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096e2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96e2.gif", - "uri": "http://jisho.org/search/%E9%9B%A2%23kanji" - }, - { - "query": "慄", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "fear", - "kunyomi": [ - "ふる.える", - "おそ.れる", - "おのの.く" - ], - "onyomi": [ - "リツ" - ], - "onyomiExamples": [ - { - "example": "慄然", - "reading": "リツゼン", - "meaning": "terrified, horrified" - }, - { - "example": "慄烈", - "reading": "リツレツ", - "meaning": "stinging cold" - }, - { - "example": "戦々慄々", - "reading": "センセンリツリツ", - "meaning": "trembling with fear, filled with trepidation" - }, - { - "example": "震慄", - "reading": "シンリツ", - "meaning": "tremble, shudder, quiver" - } - ], - "kunyomiExamples": [ - { - "example": "戦く", - "reading": "おののく", - "meaning": "to shake (from fear, cold, excitement, etc.), to shudder, to tremble" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "忙", - "木", - "西" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24900_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06144.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6144.gif", - "uri": "http://jisho.org/search/%E6%85%84%23kanji" - }, - { - "query": "柳", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1169", - "strokeCount": 9, - "meaning": "willow", - "kunyomi": [ - "やなぎ" - ], - "onyomi": [ - "リュウ" - ], - "onyomiExamples": [ - { - "example": "柳", - "reading": "リュウ", - "meaning": "Chinese \"Willow\" constellation (one of the 28 mansions)" - }, - { - "example": "柳暗花明", - "reading": "リュウアンカメイ", - "meaning": "beautiful scenery of spring, red-light district" - }, - { - "example": "川柳", - "reading": "センリュウ", - "meaning": "senryū, comic haiku, humorous seventeen-mora poem" - }, - { - "example": "花柳", - "reading": "カリュウ", - "meaning": "red-light district" - } - ], - "kunyomiExamples": [ - { - "example": "柳", - "reading": "やなぎ", - "meaning": "willow (any tree of genus Salix), weeping willow (Salix babylonica)" - }, - { - "example": "柳刃包丁", - "reading": "やなぎばぼうちょう", - "meaning": "kitchen knife for sashimi" - }, - { - "example": "青柳", - "reading": "あおやぎ", - "meaning": "green willow (i.e. one that has budded), meat of the trough shell (Mactra chinensis)" - }, - { - "example": "化粧柳", - "reading": "けしょうやなぎ", - "meaning": "chosenia (Chosenia arbutifolia) (species of willow, also Salix arbutifolia)" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "卩", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26611_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067f3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67f3.gif", - "uri": "http://jisho.org/search/%E6%9F%B3%23kanji" - }, - { - "query": "竜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1195", - "strokeCount": 10, - "meaning": "dragon, imperial", - "kunyomi": [ - "たつ", - "いせ" - ], - "onyomi": [ - "リュウ", - "リョウ", - "ロウ" - ], - "onyomiExamples": [ - { - "example": "竜", - "reading": "リュウ", - "meaning": "dragon (esp. a Chinese dragon), naga, semi-divine human-cobra chimera in Hindu and Buddhist mythology, promoted rook" - }, - { - "example": "竜王", - "reading": "リュウオウ", - "meaning": "Dragon King, promoted rook" - }, - { - "example": "鎧竜", - "reading": "ガイリュウ", - "meaning": "ankylosaur (any dinosaur of infraorder Ankylosauria)" - }, - { - "example": "青龍", - "reading": "セイリョウ", - "meaning": "blue dragon (an auspicious creature in Chinese mythology), Azure Dragon (god said to rule over the eastern heavens)" - }, - { - "example": "竜", - "reading": "リュウ", - "meaning": "dragon (esp. a Chinese dragon), naga, semi-divine human-cobra chimera in Hindu and Buddhist mythology, promoted rook" - }, - { - "example": "竜駕", - "reading": "リョウガ", - "meaning": "imperial carriage" - }, - { - "example": "青龍", - "reading": "セイリョウ", - "meaning": "blue dragon (an auspicious creature in Chinese mythology), Azure Dragon (god said to rule over the eastern heavens)" - }, - { - "example": "蛟竜", - "reading": "コウリョウ", - "meaning": "mizuchi, mythical dragon-like beast, believed to ascend to the heavens through rain, unfulfilled genius, dormant talent" - } - ], - "kunyomiExamples": [ - { - "example": "竜", - "reading": "りゅう", - "meaning": "dragon (esp. a Chinese dragon), naga, semi-divine human-cobra chimera in Hindu and Buddhist mythology, promoted rook" - }, - { - "example": "竜巻", - "reading": "たつまき", - "meaning": "tornado, waterspout" - }, - { - "example": "伊勢海老", - "reading": "いせえび", - "meaning": "spiny lobster (esp. Japanese spiny lobster, Panulirus japonicus)" - } - ], - "radical": { - "symbol": "立", - "meaning": "stand, erect" - }, - "parts": [ - "乙", - "田", - "立", - "竜" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31452_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07adc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7adc.gif", - "uri": "http://jisho.org/search/%E7%AB%9C%23kanji" - }, - { - "query": "粒", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1635", - "strokeCount": 11, - "meaning": "grains, drop, counter for tiny particles", - "kunyomi": [ - "つぶ" - ], - "onyomi": [ - "リュウ" - ], - "onyomiExamples": [ - { - "example": "粒", - "reading": "ツブ", - "meaning": "grain, bead, drop, counter for small round objects including grains, seeds, pills, drops" - }, - { - "example": "粒子", - "reading": "リュウシ", - "meaning": "particle, grain" - }, - { - "example": "細粒", - "reading": "サイリュウ", - "meaning": "fine grain, fine granule, microsphere" - }, - { - "example": "粒粒", - "reading": "リュウリュウ", - "meaning": "bit by bit" - } - ], - "kunyomiExamples": [ - { - "example": "粒", - "reading": "つぶ", - "meaning": "grain, bead, drop, counter for small round objects including grains, seeds, pills, drops" - }, - { - "example": "粒状", - "reading": "りゅうじょう", - "meaning": "granular, granulated" - }, - { - "example": "米粒", - "reading": "こめつぶ", - "meaning": "grain of rice" - }, - { - "example": "小粒", - "reading": "こつぶ", - "meaning": "small grain, small stature or ability" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "立", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31890_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c92.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c92.gif", - "uri": "http://jisho.org/search/%E7%B2%92%23kanji" - }, - { - "query": "隆", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1109", - "strokeCount": 11, - "meaning": "hump, high, noble, prosperity", - "kunyomi": [], - "onyomi": [ - "リュウ" - ], - "onyomiExamples": [ - { - "example": "隆盛", - "reading": "リュウセイ", - "meaning": "prosperity, flourishing, thriving" - }, - { - "example": "隆起", - "reading": "リュウキ", - "meaning": "protuberance, bulge, protrusion, projection, swell, rise, uplift, upheaval, elevation" - }, - { - "example": "興隆", - "reading": "コウリュウ", - "meaning": "rise, prosperity" - }, - { - "example": "膨隆", - "reading": "ボウリュウ", - "meaning": "swelling up" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "夂", - "生", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38534_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09686.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9686.gif", - "uri": "http://jisho.org/search/%E9%9A%86%23kanji" - }, - { - "query": "硫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1867", - "strokeCount": 12, - "meaning": "sulphur", - "kunyomi": [], - "onyomi": [ - "リュウ" - ], - "onyomiExamples": [ - { - "example": "硫化", - "reading": "リュウカ", - "meaning": "sulfuration, sulphuration" - }, - { - "example": "硫安", - "reading": "リュウアン", - "meaning": "ammonium sulfate" - }, - { - "example": "脱硫", - "reading": "ダツリュウ", - "meaning": "desulfurization, desulphurisation, desulphurization" - }, - { - "example": "加硫", - "reading": "カリュウ", - "meaning": "vulcanizing (rubber)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "石", - "meaning": "stone" - }, - "parts": [ - "亠", - "厶", - "口", - "川", - "石" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30827_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0786b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/786b.gif", - "uri": "http://jisho.org/search/%E7%A1%AB%23kanji" - }, - { - "query": "侶", - "found": true, - "taughtIn": "junior high", - "strokeCount": 9, - "meaning": "companion, follower", - "kunyomi": [ - "とも" - ], - "onyomi": [ - "リョ", - "ロ" - ], - "onyomiExamples": [ - { - "example": "侶伴", - "reading": "リョハン", - "meaning": "companion" - }, - { - "example": "同侶", - "reading": "ドウリョ", - "meaning": "companion" - } - ], - "kunyomiExamples": [ - { - "example": "供", - "reading": "とも", - "meaning": "companion, follower, attendant, retinue" - } - ], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "ノ", - "化", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20406_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04fb6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4fb6.gif", - "uri": "http://jisho.org/search/%E4%BE%B6%23kanji" - }, - { - "query": "虜", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1678", - "strokeCount": 13, - "meaning": "captive, barbarian, low epithet for the enemy", - "kunyomi": [ - "とりこ", - "とりく" - ], - "onyomi": [ - "リョ", - "ロ" - ], - "onyomiExamples": [ - { - "example": "虜", - "reading": "リョ", - "meaning": "captive, prisoner, foreigner, barbarian, slave" - }, - { - "example": "虜囚", - "reading": "リョシュウ", - "meaning": "captive, prisoner" - }, - { - "example": "胡虜", - "reading": "コリョ", - "meaning": "northern barbarian tribes surrounding ancient China, foreigner, barbarian tribe" - }, - { - "example": "墨黠虜", - "reading": "ボクカツリョ", - "meaning": "late Edo-period pejorative for Americans" - } - ], - "kunyomiExamples": [ - { - "example": "虜", - "reading": "とりこ", - "meaning": "captive, prisoner, victim (of love, etc.), slave (to one's lust, etc.)" - } - ], - "radical": { - "symbol": "虍", - "meaning": "tiger stripes" - }, - "parts": [ - "力", - "匕", - "卜", - "厂", - "田", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/34396_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0865c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/865c.gif", - "uri": "http://jisho.org/search/%E8%99%9C%23kanji" - }, - { - "query": "慮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "916", - "strokeCount": 15, - "meaning": "prudence, thought, concern, consider, deliberate, fear", - "kunyomi": [ - "おもんぱく.る", - "おもんぱか.る" - ], - "onyomi": [ - "リョ" - ], - "onyomiExamples": [ - { - "example": "慮外", - "reading": "リョガイ", - "meaning": "unexpected" - }, - { - "example": "慮外者", - "reading": "リョガイモノ", - "meaning": "rude person, insolent person" - }, - { - "example": "憂慮", - "reading": "ユウリョ", - "meaning": "anxiety, concern, fear" - }, - { - "example": "叡慮", - "reading": "エイリョ", - "meaning": "the emperor's pleasure" - } - ], - "kunyomiExamples": [ - { - "example": "慮る", - "reading": "おもんばかる", - "meaning": "to consider carefully, to deliberate thoroughly, to think over" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "匕", - "卜", - "厂", - "心", - "田", - "虍" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24942_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0616e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/616e.gif", - "uri": "http://jisho.org/search/%E6%85%AE%23kanji" - }, - { - "query": "了", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "792", - "strokeCount": 2, - "meaning": "complete, finish", - "kunyomi": [], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "了", - "reading": "リョウ", - "meaning": "finish, completion, the end" - }, - { - "example": "諒", - "reading": "リョウ", - "meaning": "fact, truth, understanding, consideration" - }, - { - "example": "満了", - "reading": "マンリョウ", - "meaning": "expiration, termination" - }, - { - "example": "未了", - "reading": "ミリョウ", - "meaning": "unfinished, unfilled (order), unexecuted" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "亅", - "meaning": "hook" - }, - "parts": [ - "一", - "亅" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20102_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/04e86.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/4e86.gif", - "uri": "http://jisho.org/search/%E4%BA%86%23kanji" - }, - { - "query": "涼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1783", - "strokeCount": 11, - "meaning": "refreshing, nice and cool", - "kunyomi": [ - "すず.しい", - "すず.む", - "すず.やか", - "うす.い", - "ひや.す", - "まことに" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "涼", - "reading": "リョウ", - "meaning": "cool breeze, cool air, refreshing coolness" - }, - { - "example": "涼風", - "reading": "リョウフウ", - "meaning": "cool breeze, refreshing breeze" - }, - { - "example": "清涼", - "reading": "セイリョウ", - "meaning": "cool, refreshing" - }, - { - "example": "納涼", - "reading": "ノウリョウ", - "meaning": "(enjoying the) cool of the evening" - } - ], - "kunyomiExamples": [ - { - "example": "涼しい", - "reading": "すずしい", - "meaning": "cool, refreshing, clear (e.g. eyes), bright, clear, distinct, composed (facial expression), unruffled, unconcerned, pure, upright, innocent" - }, - { - "example": "涼しい顔", - "reading": "すずしいかお", - "meaning": "nonchalant air, unruffled air" - }, - { - "example": "涼む", - "reading": "すずむ", - "meaning": "to cool oneself, to cool off, to enjoy the cool air" - }, - { - "example": "涼やか", - "reading": "すずやか", - "meaning": "refreshing, clear" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "亠", - "口", - "小", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28092_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06dbc.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6dbc.gif", - "uri": "http://jisho.org/search/%E6%B6%BC%23kanji" - }, - { - "query": "猟", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1851", - "strokeCount": 11, - "meaning": "game-hunting, shooting, game, bag", - "kunyomi": [ - "かり", - "か.る" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "猟", - "reading": "リョウ", - "meaning": "hunting, shooting, game, quarry" - }, - { - "example": "猟犬", - "reading": "リョウケン", - "meaning": "hound, hunting dog, gun dog" - }, - { - "example": "密猟", - "reading": "ミツリョウ", - "meaning": "poaching" - }, - { - "example": "大猟", - "reading": "タイリョウ", - "meaning": "good bag (hunting)" - } - ], - "kunyomiExamples": [ - { - "example": "猟犬", - "reading": "りょうけん", - "meaning": "hound, hunting dog, gun dog" - }, - { - "example": "狩人", - "reading": "かりゅうど", - "meaning": "hunter" - }, - { - "example": "狩る", - "reading": "かる", - "meaning": "to hunt (animals), to search (for a criminal), to go looking for (flowers, etc.), to gather (mushrooms), to pick (berries)" - } - ], - "radical": { - "symbol": "犬", - "forms": [ - "犭" - ], - "meaning": "dog" - }, - "parts": [ - "几", - "尚", - "犯", - "用" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29471_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0731f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/731f.gif", - "uri": "http://jisho.org/search/%E7%8C%9F%23kanji" - }, - { - "query": "陵", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1746", - "strokeCount": 11, - "meaning": "mausoleum, imperial tomb, mound, hill", - "kunyomi": [ - "みささぎ" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "陵", - "reading": "ミササギ", - "meaning": "imperial mausoleum, Emperor's tomb, big hill" - }, - { - "example": "陵墓", - "reading": "リョウボ", - "meaning": "imperial tomb, imperial mausoleum" - }, - { - "example": "帝陵", - "reading": "テイリョウ", - "meaning": "imperial mausoleum" - }, - { - "example": "皇陵", - "reading": "コウリョウ", - "meaning": "imperial mausoleum" - } - ], - "kunyomiExamples": [ - { - "example": "陵", - "reading": "みささぎ", - "meaning": "imperial mausoleum, Emperor's tomb, big hill" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "儿", - "土", - "夂", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38517_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09675.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9675.gif", - "uri": "http://jisho.org/search/%E9%99%B5%23kanji" - }, - { - "query": "僚", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "709", - "strokeCount": 14, - "meaning": "colleague, official, companion", - "kunyomi": [], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "僚友", - "reading": "リョウユウ", - "meaning": "colleague, workmate, comrade, coworker" - }, - { - "example": "僚船", - "reading": "リョウセン", - "meaning": "consort ship" - }, - { - "example": "幕僚", - "reading": "バクリョウ", - "meaning": "staff, staff officer" - }, - { - "example": "下僚", - "reading": "カリョウ", - "meaning": "subordinates, petty officials" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "化", - "大", - "小", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20698_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/050da.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/50da.gif", - "uri": "http://jisho.org/search/%E5%83%9A%23kanji" - }, - { - "query": "寮", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1705", - "strokeCount": 15, - "meaning": "dormitory, hostel, villa, tea pavillion", - "kunyomi": [], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "寮", - "reading": "リョウ", - "meaning": "hostel, dormitory, bureau (government department beneath a ministry under the ritsuryo system), tea-ceremony room, villa" - }, - { - "example": "寮生", - "reading": "リョウセイ", - "meaning": "boarder, boarding student" - }, - { - "example": "大炊寮", - "reading": "オオイリョウ", - "meaning": "Bureau of the Imperial Palace Kitchens (under the ritsuryo system)" - }, - { - "example": "女男性寮", - "reading": "メオセイリョウ", - "meaning": "co-ed dormitory, mixed student accommodation" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "宀", - "meaning": "roof" - }, - "parts": [ - "大", - "宀", - "小", - "并", - "日" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/23534_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05bee.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5bee.gif", - "uri": "http://jisho.org/search/%E5%AF%AE%23kanji" - }, - { - "query": "療", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "600", - "strokeCount": 17, - "meaning": "heal, cure", - "kunyomi": [], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "療養", - "reading": "リョウヨウ", - "meaning": "recuperation, medical treatment" - }, - { - "example": "療法", - "reading": "リョウホウ", - "meaning": "therapy, treatment, remedy, cure" - }, - { - "example": "早期治療", - "reading": "ソウキチリョウ", - "meaning": "early treatment" - }, - { - "example": "加療", - "reading": "カリョウ", - "meaning": "medical treatment" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "疒", - "meaning": "sickness" - }, - "parts": [ - "大", - "小", - "并", - "日", - "疔" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30274_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07642.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7642.gif", - "uri": "http://jisho.org/search/%E7%99%82%23kanji" - }, - { - "query": "瞭", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "strokeCount": 17, - "meaning": "clear", - "kunyomi": [ - "あきらか" - ], - "onyomi": [ - "リョウ" - ], - "onyomiExamples": [ - { - "example": "瞭然", - "reading": "リョウゼン", - "meaning": "obvious, evident, clear" - }, - { - "example": "簡潔明瞭", - "reading": "カンケツメイリョウ", - "meaning": "clear and concise" - }, - { - "example": "簡単明瞭", - "reading": "カンタンメイリョウ", - "meaning": "simple and clear" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "目", - "meaning": "eye" - }, - "parts": [ - "大", - "小", - "并", - "日", - "目" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/30637_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/077ad.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/77ad.gif", - "uri": "http://jisho.org/search/%E7%9E%AD%23kanji" - }, - { - "query": "糧", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1354", - "strokeCount": 18, - "meaning": "provisions, food, bread", - "kunyomi": [ - "かて" - ], - "onyomi": [ - "リョウ", - "ロウ" - ], - "onyomiExamples": [ - { - "example": "糧", - "reading": "カテ", - "meaning": "food, provisions, nourishment (mental, spiritual, etc.), sustenance (e.g. of one's life), source of encouragement" - }, - { - "example": "糧食", - "reading": "リョウショク", - "meaning": "provisions" - }, - { - "example": "衣糧", - "reading": "イリョウ", - "meaning": "food and clothing" - }, - { - "example": "口糧", - "reading": "コウリョウ", - "meaning": "rations" - }, - { - "example": "兵糧", - "reading": "ヒョウロウ", - "meaning": "(army) provisions, food" - } - ], - "kunyomiExamples": [ - { - "example": "糧", - "reading": "かて", - "meaning": "food, provisions, nourishment (mental, spiritual, etc.), sustenance (e.g. of one's life), source of encouragement" - }, - { - "example": "日々の糧", - "reading": "ひびのかて", - "meaning": "one's daily bread" - }, - { - "example": "心の糧", - "reading": "こころのかて", - "meaning": "food for thought" - } - ], - "radical": { - "symbol": "米", - "meaning": "rice" - }, - "parts": [ - "一", - "日", - "米", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31975_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07ce7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7ce7.gif", - "uri": "http://jisho.org/search/%E7%B3%A7%23kanji" - }, - { - "query": "厘", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1835", - "strokeCount": 9, - "meaning": "rin, 1/10 sen, 1/10 bu", - "kunyomi": [], - "onyomi": [ - "リン" - ], - "onyomiExamples": [ - { - "example": "厘", - "reading": "リン", - "meaning": "one-hundredth, 0.3 mm (one-hundredth of a sun), 0.1 percent (one-hundredth of a wari), 0.0375 grams (one-hundredth of a monme), old monetary unit (0.001 yen)" - }, - { - "example": "厘毛", - "reading": "リンモウ", - "meaning": "farthing, trifle" - }, - { - "example": "毫釐", - "reading": "ゴウリ", - "meaning": "very small quantity" - }, - { - "example": "九分九厘", - "reading": "クブクリン", - "meaning": "ten to one, nine cases out of ten" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "厂", - "meaning": "cliff" - }, - "parts": [ - "厂", - "里" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21400_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05398.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5398.gif", - "uri": "http://jisho.org/search/%E5%8E%98%23kanji" - }, - { - "query": "倫", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1322", - "strokeCount": 10, - "meaning": "ethics, companion", - "kunyomi": [], - "onyomi": [ - "リン" - ], - "onyomiExamples": [ - { - "example": "倫理的", - "reading": "リンリテキ", - "meaning": "ethical" - }, - { - "example": "倫理", - "reading": "リンリ", - "meaning": "ethics, morals" - }, - { - "example": "映倫", - "reading": "エイリン", - "meaning": "Eirin, Film Classification and Rating Organization" - }, - { - "example": "五倫", - "reading": "ゴリン", - "meaning": "the five Confucian filial-piety relationships" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "人", - "forms": [ - "亻" - ], - "meaning": "man, human" - }, - "parts": [ - "一", - "个", - "亅", - "冊", - "化", - "廾", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/20523_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0502b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/502b.gif", - "uri": "http://jisho.org/search/%E5%80%AB%23kanji" - }, - { - "query": "隣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1083", - "strokeCount": 16, - "meaning": "neighboring", - "kunyomi": [ - "とな.る", - "となり" - ], - "onyomi": [ - "リン" - ], - "onyomiExamples": [ - { - "example": "隣国", - "reading": "リンゴク", - "meaning": "neighbouring country, neighboring country, adjacent country" - }, - { - "example": "隣家", - "reading": "リンカ", - "meaning": "neighbouring house, neighboring house" - }, - { - "example": "善隣", - "reading": "ゼンリン", - "meaning": "good neighbour, good neighbor" - }, - { - "example": "四隣", - "reading": "シリン", - "meaning": "whole neighborhood, whole neighbourhood, surrounding countries" - } - ], - "kunyomiExamples": [ - { - "example": "隣る", - "reading": "となる", - "meaning": "to neighbor (neighbour), to be adjacent to, to be next to, to border" - }, - { - "example": "隣", - "reading": "となり", - "meaning": "next (to), adjoining, adjacent, house next door, neighbouring house, next-door neighbour, next-door neighbor" - }, - { - "example": "隣り合う", - "reading": "となりあう", - "meaning": "to adjoin each other, to sit side by side" - }, - { - "example": "先隣", - "reading": "さきとなり", - "meaning": "next door but one, (a house) two doors away" - }, - { - "example": "一軒置いて隣", - "reading": "いっけんおいてとなり", - "meaning": "next door but one" - } - ], - "radical": { - "symbol": "阜", - "forms": [ - "阝" - ], - "meaning": "mound, dam (阝 left)" - }, - "parts": [ - "夕", - "米", - "舛", - "阡" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38563_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096a3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96a3.gif", - "uri": "http://jisho.org/search/%E9%9A%A3%23kanji" - }, - { - "query": "瑠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2352", - "strokeCount": 14, - "meaning": "lapis lazuli", - "kunyomi": [], - "onyomi": [ - "ル", - "リュウ" - ], - "onyomiExamples": [ - { - "example": "瑠璃", - "reading": "ルリ", - "meaning": "lapis lazuli, lapis lazuli (color), beryl, mall blue passerine bird (esp. the blue-and-white flycatcher and the Siberian blue robin, but also the red-flanked bluetail), glass" - }, - { - "example": "瑠璃色", - "reading": "ルリイロ", - "meaning": "lapis lazuli blue, bright blue, azure" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "玉", - "forms": [ - "王" - ], - "meaning": "jade (king)" - }, - "parts": [ - "刀", - "厶", - "王", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/29792_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07460.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7460.gif", - "uri": "http://jisho.org/search/%E7%91%A0%23kanji" - }, - { - "query": "涙", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1381", - "strokeCount": 10, - "meaning": "tears, sympathy", - "kunyomi": [ - "なみだ" - ], - "onyomi": [ - "ルイ", - "レイ" - ], - "onyomiExamples": [ - { - "example": "涙液", - "reading": "ルイエキ", - "meaning": "lacrimal fluid, tears" - }, - { - "example": "涙管", - "reading": "ルイカン", - "meaning": "lachrymal or tear duct" - }, - { - "example": "催涙", - "reading": "サイルイ", - "meaning": "lacrimator, dacryagogue, tear-inducing agent" - }, - { - "example": "感涙", - "reading": "カンルイ", - "meaning": "tears (from being deeply moved), tears of gratitude" - } - ], - "kunyomiExamples": [ - { - "example": "涙", - "reading": "なみだ", - "meaning": "tear, tears, lachrymal secretion, sympathy" - }, - { - "example": "涙ぐましい", - "reading": "なみだぐましい", - "meaning": "touching, moving, painful" - }, - { - "example": "悔し涙", - "reading": "くやしなみだ", - "meaning": "tears of regret, bitter tears, vexation, chagrin" - }, - { - "example": "忝涙", - "reading": "かたじけなみだ", - "meaning": "tears of gratitude" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "一", - "大", - "尸", - "戸", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28057_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d99.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d99.gif", - "uri": "http://jisho.org/search/%E6%B6%99%23kanji" - }, - { - "query": "累", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1662", - "strokeCount": 11, - "meaning": "accumulate, involvement, trouble, tie up, continually", - "kunyomi": [], - "onyomi": [ - "ルイ" - ], - "onyomiExamples": [ - { - "example": "累", - "reading": "ルイ", - "meaning": "trouble, evil influence, implication, involvement" - }, - { - "example": "累計", - "reading": "ルイケイ", - "meaning": "cumulative total, accumulated total, total up to now" - }, - { - "example": "係累", - "reading": "ケイルイ", - "meaning": "dependents, family members that one has to support, encumbrances, things that tie one down" - }, - { - "example": "累々", - "reading": "ルイルイ", - "meaning": "in heaps" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "糸", - "forms": [ - "糹" - ], - "meaning": "silk" - }, - "parts": [ - "小", - "幺", - "田", - "糸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/32047_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07d2f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7d2f.gif", - "uri": "http://jisho.org/search/%E7%B4%AF%23kanji" - }, - { - "query": "塁", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "651", - "strokeCount": 12, - "meaning": "bases, fort, rampart, walls, base(ball)", - "kunyomi": [ - "とりで" - ], - "onyomi": [ - "ルイ", - "ライ", - "スイ" - ], - "onyomiExamples": [ - { - "example": "塁", - "reading": "ルイ", - "meaning": "base, bag, sack, fortress, stronghold" - }, - { - "example": "塁審", - "reading": "ルイシン", - "meaning": "base umpire" - }, - { - "example": "二塁", - "reading": "ニルイ", - "meaning": "second base" - }, - { - "example": "走塁", - "reading": "ソウルイ", - "meaning": "base running" - } - ], - "kunyomiExamples": [ - { - "example": "砦", - "reading": "とりで", - "meaning": "fort, fortress, stronghold, fortification" - } - ], - "radical": { - "symbol": "土", - "meaning": "earth" - }, - "parts": [ - "冫", - "土", - "田" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/22593_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05841.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5841.gif", - "uri": "http://jisho.org/search/%E5%A1%81%23kanji" - }, - { - "query": "励", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1254", - "strokeCount": 7, - "meaning": "encourage, be diligent, inspire", - "kunyomi": [ - "はげ.む", - "はげ.ます" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "励起", - "reading": "レイキ", - "meaning": "(electrical) excitation" - }, - { - "example": "励起状態", - "reading": "レイキジョウタイ", - "meaning": "excited state" - }, - { - "example": "精励", - "reading": "セイレイ", - "meaning": "diligence, industry, assiduity, hard work" - }, - { - "example": "刻苦精励", - "reading": "コックセイレイ", - "meaning": "being arduous, working diligently enduring hardships, making a strenuous effort" - } - ], - "kunyomiExamples": [ - { - "example": "励む", - "reading": "はげむ", - "meaning": "to strive, to endeavour, to endeavor, to make an effort, to be zealous" - }, - { - "example": "励ます", - "reading": "はげます", - "meaning": "to encourage, to cheer, to raise (the voice)" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "力", - "厂", - "斤" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21169_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052b1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52b1.gif", - "uri": "http://jisho.org/search/%E5%8A%B1%23kanji" - }, - { - "query": "戻", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N3", - "newspaperFrequencyRank": "890", - "strokeCount": 7, - "meaning": "re-, return, revert, resume, restore, go backwards", - "kunyomi": [ - "もど.す", - "もど.る" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "戻入", - "reading": "レイニュウ", - "meaning": "reversal of monies, funds, commissions" - }, - { - "example": "背戻", - "reading": "ハイレイ", - "meaning": "disobeying, infringing, running counter to" - }, - { - "example": "暴戻", - "reading": "ボウレイ", - "meaning": "tyranny, atrocity, brutality" - } - ], - "kunyomiExamples": [ - { - "example": "戻す", - "reading": "もどす", - "meaning": "to put back, to return, to give back, to restore (to a previous state, e.g. defrosting, reconstituting, reconciling), to turn back (e.g. clock hand), to vomit, to throw up, to recover (of a market price)" - }, - { - "example": "戻る", - "reading": "もどる", - "meaning": "to turn back (e.g. half-way), to return, to go back, to recover (e.g. something lost), to be returned, to rebound, to spring back" - } - ], - "radical": { - "symbol": "戶", - "forms": [ - "户", - "戸" - ], - "meaning": "door, house" - }, - "parts": [ - "一", - "大", - "尸", - "戸" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/25147_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0623b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/623b.gif", - "uri": "http://jisho.org/search/%E6%88%BB%23kanji" - }, - { - "query": "鈴", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "880", - "strokeCount": 13, - "meaning": "small bell, buzzer", - "kunyomi": [ - "すず" - ], - "onyomi": [ - "レイ", - "リン" - ], - "onyomiExamples": [ - { - "example": "鈴", - "reading": "スズ", - "meaning": "bell (often globular)" - }, - { - "example": "亜鈴", - "reading": "アレイ", - "meaning": "dumbbell" - }, - { - "example": "鉄アレイ", - "reading": "テツアレイ", - "meaning": "(iron) dumbbells, (pair) of dumbbells" - }, - { - "example": "鈴", - "reading": "スズ", - "meaning": "bell (often globular)" - }, - { - "example": "鈴を鳴らす", - "reading": "リンヲナラス", - "meaning": "to ring a bell" - }, - { - "example": "風鈴", - "reading": "フウリン", - "meaning": "wind chime, wind bell" - } - ], - "kunyomiExamples": [ - { - "example": "鈴", - "reading": "すず", - "meaning": "bell (often globular)" - }, - { - "example": "鈴懸の木", - "reading": "すずかけのき", - "meaning": "plane tree (esp. the Oriental plane, Platanus orientalis)" - }, - { - "example": "大鈴", - "reading": "おおすず", - "meaning": "large bell (at a shrine)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "一", - "个", - "卩", - "金" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37428_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09234.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9234.gif", - "uri": "http://jisho.org/search/%E9%88%B4%23kanji" - }, - { - "query": "零", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1217", - "strokeCount": 13, - "meaning": "zero, spill, overflow, nothing, cipher", - "kunyomi": [ - "ぜろ", - "こぼ.す", - "こぼ.れる" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "零", - "reading": "レイ", - "meaning": "zero, nought" - }, - { - "example": "零細", - "reading": "レイサイ", - "meaning": "insignificant, trifling, paltry, cottage (industry), tiny (company)" - }, - { - "example": "冪零", - "reading": "ベキレイ", - "meaning": "nilpotent" - }, - { - "example": "非零", - "reading": "ヒレイ", - "meaning": "non-zero" - } - ], - "kunyomiExamples": [ - { - "example": "0", - "reading": "ゼロ", - "meaning": "zero, nought, nil, nothing, zilch" - }, - { - "example": "零因子", - "reading": "ぜろいんし", - "meaning": "zero divisor, null factor, nil factor" - }, - { - "example": "零す", - "reading": "こぼす", - "meaning": "to spill, to drop, to shed (tears), to grumble, to complain, to let one's feelings show" - }, - { - "example": "零れる", - "reading": "こぼれる", - "meaning": "to spill, to fall out of, to overflow, to peek through, to become visible (although normally not), to escape (of a smile, tear, etc.)" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "一", - "个", - "卩", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38646_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096f6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96f6.gif", - "uri": "http://jisho.org/search/%E9%9B%B6%23kanji" - }, - { - "query": "霊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1458", - "strokeCount": 15, - "meaning": "spirits, soul", - "kunyomi": [ - "たま" - ], - "onyomi": [ - "レイ", - "リョウ" - ], - "onyomiExamples": [ - { - "example": "霊", - "reading": "レイ", - "meaning": "soul, spirit, departed soul, ghost" - }, - { - "example": "霊園", - "reading": "レイエン", - "meaning": "cemetery" - }, - { - "example": "心霊", - "reading": "シンレイ", - "meaning": "spirit (e.g. human spirit), soul, spirit, ghost, ethereal being" - }, - { - "example": "英霊", - "reading": "エイレイ", - "meaning": "spirits of war dead, person of great ability, soul of a talented person" - }, - { - "example": "霊", - "reading": "リョウ", - "meaning": "vengeful spirit, revengeful ghost" - }, - { - "example": "霊異", - "reading": "レイイ", - "meaning": "miracle, wonder, wondrous thing" - }, - { - "example": "怨霊", - "reading": "オンリョウ", - "meaning": "revengeful ghost, apparition" - }, - { - "example": "新精霊", - "reading": "アラショウリョウ", - "meaning": "spirit of someone on the first O-Bon after their death" - } - ], - "kunyomiExamples": [ - { - "example": "魂", - "reading": "たましい", - "meaning": "soul, spirit" - }, - { - "example": "魂送り", - "reading": "たまおくり", - "meaning": "sending off the spirits of the dead" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "一", - "二", - "雨", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38666_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0970a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/970a.gif", - "uri": "http://jisho.org/search/%E9%9C%8A%23kanji" - }, - { - "query": "隷", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2009", - "strokeCount": 16, - "meaning": "slave, servant, prisoner, criminal, follower", - "kunyomi": [ - "したが.う", - "しもべ" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "隷", - "reading": "レイ", - "meaning": "clerical script (ancient, highly angular style of kanji)" - }, - { - "example": "隷書", - "reading": "レイショ", - "meaning": "clerical script (ancient, highly angular style of kanji)" - }, - { - "example": "性奴隷", - "reading": "セイドレイ", - "meaning": "sex slave, sexual slavery" - }, - { - "example": "性的奴隷", - "reading": "セイテキドレイ", - "meaning": "sex slave, sexual slavery" - } - ], - "kunyomiExamples": [ - { - "example": "僕", - "reading": "しもべ", - "meaning": "servant, manservant, menial" - } - ], - "radical": { - "symbol": "隶", - "meaning": "slave, capture" - }, - "parts": [ - "ヨ", - "二", - "士", - "小", - "水", - "示", - "隶" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38583_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/096b7.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/96b7.gif", - "uri": "http://jisho.org/search/%E9%9A%B7%23kanji" - }, - { - "query": "齢", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "770", - "strokeCount": 17, - "meaning": "age", - "kunyomi": [ - "よわい", - "とし" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "齢", - "reading": "レイ", - "meaning": "instar (developmental stage of arthropods), age, years" - }, - { - "example": "適齢", - "reading": "テキレイ", - "meaning": "suitable age" - }, - { - "example": "加齢", - "reading": "カレイ", - "meaning": "aging, ageing, adding to one's years" - } - ], - "kunyomiExamples": [ - { - "example": "齢", - "reading": "よわい", - "meaning": "(one's) age" - }, - { - "example": "齢を重ねる", - "reading": "よわいをかさねる", - "meaning": "to grow old, to age" - } - ], - "radical": { - "symbol": "齒", - "meaning": "tooth, molar" - }, - "parts": [ - "一", - "个", - "凵", - "卩", - "止", - "歯", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40802_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09f62.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9f62.gif", - "uri": "http://jisho.org/search/%E9%BD%A2%23kanji" - }, - { - "query": "麗", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1758", - "strokeCount": 19, - "meaning": "lovely, beautiful, graceful, resplendent", - "kunyomi": [ - "うるわ.しい", - "うら.らか" - ], - "onyomi": [ - "レイ" - ], - "onyomiExamples": [ - { - "example": "麗句", - "reading": "レイク", - "meaning": "elegant phrase" - }, - { - "example": "麗景殿", - "reading": "レイケイデン", - "meaning": "ladies' pavilion (of the inner Heian Palace)" - }, - { - "example": "瑰麗", - "reading": "カイレイ", - "meaning": "extraordinarily beautiful, exceptionally pretty, gorgeous, magnificent" - }, - { - "example": "豊麗", - "reading": "ホウレイ", - "meaning": "rich (design), beautiful, splendid" - } - ], - "kunyomiExamples": [ - { - "example": "麗しい", - "reading": "うるわしい", - "meaning": "beautiful, lovely, heartwarming, beautiful" - }, - { - "example": "麗らか", - "reading": "うららか", - "meaning": "bright (weather, mood, voice, etc.), clear, fine, beautiful, glorious, splendid, cheerful" - } - ], - "radical": { - "symbol": "鹿", - "meaning": "deer" - }, - "parts": [ - "一", - "冂", - "广", - "比", - "鹿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40599_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09e97.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9e97.gif", - "uri": "http://jisho.org/search/%E9%BA%97%23kanji" - }, - { - "query": "暦", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1765", - "strokeCount": 14, - "meaning": "calendar, almanac", - "kunyomi": [ - "こよみ" - ], - "onyomi": [ - "レキ", - "リャク" - ], - "onyomiExamples": [ - { - "example": "暦", - "reading": "コヨミ", - "meaning": "calendar, almanac" - }, - { - "example": "暦年", - "reading": "レキネン", - "meaning": "calendar year, civil year, time, year after year" - }, - { - "example": "還暦", - "reading": "カンレキ", - "meaning": "60th birthday" - }, - { - "example": "改暦", - "reading": "カイレキ", - "meaning": "calendar reform, adoption of a new calendar system, new calendar (for a new year), new year" - }, - { - "example": "暦応", - "reading": "リャクオウ", - "meaning": "Ryakuō era (of the Northern Court) (1338.8.28-1342.4.27), Rekiō era" - }, - { - "example": "暦仁", - "reading": "リャクニン", - "meaning": "Ryakunin era (1238.11.23-1239.2.7)" - }, - { - "example": "永暦", - "reading": "エイリャク", - "meaning": "Eiryaku era (1160.1.10-1161.9.4)" - }, - { - "example": "康暦", - "reading": "コウリャク", - "meaning": "Kōryaku era (of the Northern Court) (1379.3.22-1381.2.24)" - } - ], - "kunyomiExamples": [ - { - "example": "暦", - "reading": "こよみ", - "meaning": "calendar, almanac" - }, - { - "example": "暦改正", - "reading": "こよみかいせい", - "meaning": "calendar reform" - } - ], - "radical": { - "symbol": "日", - "meaning": "sun, day" - }, - "parts": [ - "厂", - "广", - "日", - "木", - "麻" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26278_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/066a6.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/66a6.gif", - "uri": "http://jisho.org/search/%E6%9A%A6%23kanji" - }, - { - "query": "劣", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1620", - "strokeCount": 6, - "meaning": "inferiority, be inferior to, be worse", - "kunyomi": [ - "おと.る" - ], - "onyomi": [ - "レツ" - ], - "onyomiExamples": [ - { - "example": "劣", - "reading": "レツ", - "meaning": "sub-, inferior, minor" - }, - { - "example": "劣悪", - "reading": "レツアク", - "meaning": "inferior, coarse, poor quality, inadequate, deteriorated" - }, - { - "example": "卑劣", - "reading": "ヒレツ", - "meaning": "mean, contemptible, despicable, dirty, foul, cowardly, base" - }, - { - "example": "拙劣", - "reading": "セツレツ", - "meaning": "clumsy, unskillful" - } - ], - "kunyomiExamples": [ - { - "example": "劣る", - "reading": "おとる", - "meaning": "to be inferior to, to be less good at, to fall behind" - } - ], - "radical": { - "symbol": "力", - "meaning": "power, force" - }, - "parts": [ - "ノ", - "力", - "小" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21155_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/052a3.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/52a3.gif", - "uri": "http://jisho.org/search/%E5%8A%A3%23kanji" - }, - { - "query": "烈", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1397", - "strokeCount": 10, - "meaning": "ardent, violent, vehement, furious, severe, extreme", - "kunyomi": [ - "はげ.しい" - ], - "onyomi": [ - "レツ" - ], - "onyomiExamples": [ - { - "example": "烈日", - "reading": "レツジツ", - "meaning": "blazing sun, scorching sun, hot day" - }, - { - "example": "烈女", - "reading": "レツジョ", - "meaning": "heroine" - }, - { - "example": "痛烈", - "reading": "ツウレツ", - "meaning": "severe, bitter, scathing" - }, - { - "example": "壮烈", - "reading": "ソウレツ", - "meaning": "heroic, brave" - } - ], - "kunyomiExamples": [ - { - "example": "激しい", - "reading": "はげしい", - "meaning": "violent, furious, tempestuous, extreme, intense, fierce, strong, fervent, vehement, incessant, relentless, precipitous, steep" - }, - { - "example": "激しい競争", - "reading": "はげしいきょうそう", - "meaning": "intense competition, hot competition" - } - ], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "刈", - "杰", - "歹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28872_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/070c8.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/70c8.gif", - "uri": "http://jisho.org/search/%E7%83%88%23kanji" - }, - { - "query": "裂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1041", - "strokeCount": 12, - "meaning": "split, rend, tear", - "kunyomi": [ - "さ.く", - "さ.ける", - "-ぎ.れ" - ], - "onyomi": [ - "レツ" - ], - "onyomiExamples": [ - { - "example": "裂孔ヘルニア", - "reading": "レツコウヘルニア", - "meaning": "hiatal hernia, hiatus hernia" - }, - { - "example": "裂肉歯", - "reading": "レツニクシ", - "meaning": "carnassial, carnassial tooth" - }, - { - "example": "核分裂", - "reading": "カクブンレツ", - "meaning": "nuclear fission, karyokinesis (division of a cell nucleus during mitosis or meiosis)" - }, - { - "example": "炸裂", - "reading": "サクレツ", - "meaning": "violent explosion, bursting" - } - ], - "kunyomiExamples": [ - { - "example": "裂く", - "reading": "さく", - "meaning": "to tear, to rip up, to cut up, to cleave, to cut open (esp. the abdomen), to forcibly separate (e.g. two lovers), to spare (time, money, etc.), to use part of something, to have a tattoo in the corner of one's eye" - }, - { - "example": "裂ける", - "reading": "さける", - "meaning": "to split, to tear, to burst, to be separated, to be divided" - } - ], - "radical": { - "symbol": "衣", - "forms": [ - "衤" - ], - "meaning": "clothes" - }, - "parts": [ - "亠", - "刈", - "歹", - "衣" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/35010_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/088c2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/88c2.gif", - "uri": "http://jisho.org/search/%E8%A3%82%23kanji" - }, - { - "query": "恋", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1296", - "strokeCount": 10, - "meaning": "romance, in love, yearn for, miss, darling", - "kunyomi": [ - "こ.う", - "こい", - "こい.しい" - ], - "onyomi": [ - "レン" - ], - "onyomiExamples": [ - { - "example": "恋愛", - "reading": "レンアイ", - "meaning": "love, love-making, passion, emotion, affections" - }, - { - "example": "恋歌", - "reading": "コイウタ", - "meaning": "love song, love poem" - }, - { - "example": "悲恋", - "reading": "ヒレン", - "meaning": "blighted love, disappointed love" - }, - { - "example": "破恋", - "reading": "ハレン", - "meaning": "disappointed love, broken heart, unrequited love, being lovelorn" - } - ], - "kunyomiExamples": [ - { - "example": "恋う", - "reading": "こう", - "meaning": "to love" - }, - { - "example": "恋", - "reading": "こい", - "meaning": "(romantic) love" - }, - { - "example": "恋人", - "reading": "こいびと", - "meaning": "lover, sweetheart, boyfriend, girlfriend" - }, - { - "example": "リア恋", - "reading": "リアこい", - "meaning": "being in love with an idol, actor, etc., fan who is in love with an idol, actor, etc." - }, - { - "example": "片恋", - "reading": "かたこい", - "meaning": "unrequited love, one-sided love" - }, - { - "example": "恋しい", - "reading": "こいしい", - "meaning": "yearned for, longed for, missed" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "ハ", - "亠", - "心" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24651_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0604b.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/604b.gif", - "uri": "http://jisho.org/search/%E6%81%8B%23kanji" - }, - { - "query": "廉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2066", - "strokeCount": 13, - "meaning": "bargain, reason, charge, suspicion, point, account, purity, honest, low price, cheap, rested, contented, peaceful", - "kunyomi": [], - "onyomi": [ - "レン" - ], - "onyomiExamples": [ - { - "example": "廉", - "reading": "レン", - "meaning": "cheap, inexpensive, pure, honest, upright" - }, - { - "example": "廉価", - "reading": "レンカ", - "meaning": "low price, moderate price" - }, - { - "example": "清廉", - "reading": "セイレン", - "meaning": "honesty, integrity, purity and unselfishness" - }, - { - "example": "低廉", - "reading": "テイレン", - "meaning": "cheap, inexpensive" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "ハ", - "ヨ", - "并", - "广", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24265_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05ec9.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5ec9.gif", - "uri": "http://jisho.org/search/%E5%BB%89%23kanji" - }, - { - "query": "錬", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2221", - "strokeCount": 16, - "meaning": "tempering, refine, drill, train, polish", - "kunyomi": [ - "ね.る" - ], - "onyomi": [ - "レン" - ], - "onyomiExamples": [ - { - "example": "錬金術師", - "reading": "レンキンジュツシ", - "meaning": "alchemist" - }, - { - "example": "錬金術", - "reading": "レンキンジュツ", - "meaning": "alchemy, way of making money, moneymaker, money-spinner" - }, - { - "example": "修練", - "reading": "シュウレン", - "meaning": "training, drill, practice, practising, discipline" - }, - { - "example": "精錬", - "reading": "セイレン", - "meaning": "refining, refinement, smelting, training" - } - ], - "kunyomiExamples": [ - { - "example": "錬る", - "reading": "ねる", - "meaning": "to temper (steel)" - } - ], - "radical": { - "symbol": "金", - "forms": [ - "釒" - ], - "meaning": "metal, gold" - }, - "parts": [ - "ハ", - "一", - "并", - "日", - "木", - "田", - "金", - "|" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37676_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0932c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/932c.gif", - "uri": "http://jisho.org/search/%E9%8C%AC%23kanji" - }, - { - "query": "呂", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2055", - "strokeCount": 7, - "meaning": "spine, backbone", - "kunyomi": [ - "せぼね" - ], - "onyomi": [ - "ロ", - "リョ" - ], - "onyomiExamples": [ - { - "example": "呂律", - "reading": "ロレツ", - "meaning": "articulation" - }, - { - "example": "ろれつが回らない", - "reading": "ロレツガマワラナイ", - "meaning": "speaking inarticulately (slurring, lisping, etc.)" - }, - { - "example": "大呂", - "reading": "タイリョ", - "meaning": "second note of the ancient chromatic scale (approx. D sharp) (in China), twelfth lunar month" - }, - { - "example": "仲呂", - "reading": "チュウリョ", - "meaning": "(in China) 6th note of the ancient chromatic scale (approx. G), fourth lunar month" - }, - { - "example": "呂", - "reading": "リョ", - "meaning": "bass range (in Japanese music), six even-numbered notes of the ancient chromatic scale, Japanese seven-tone gagaku scale similar to Mixolydian mode (corresp. to: re, mi, fa, so, la, ti, do)" - }, - { - "example": "呂旋", - "reading": "リョセン", - "meaning": "Japanese seven-tone gagaku scale (corresponding to: so, la, ti, do, re, mi, fa), similar to Mixolydian mode" - }, - { - "example": "大呂", - "reading": "タイリョ", - "meaning": "second note of the ancient chromatic scale (approx. D sharp) (in China), twelfth lunar month" - }, - { - "example": "仲呂", - "reading": "チュウリョ", - "meaning": "(in China) 6th note of the ancient chromatic scale (approx. G), fourth lunar month" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "口", - "meaning": "mouth, opening" - }, - "parts": [ - "ノ", - "口" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/21570_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05442.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5442.gif", - "uri": "http://jisho.org/search/%E5%91%82%23kanji" - }, - { - "query": "炉", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1359", - "strokeCount": 8, - "meaning": "hearth, furnace, kiln, reactor", - "kunyomi": [ - "いろり" - ], - "onyomi": [ - "ロ" - ], - "onyomiExamples": [ - { - "example": "炉", - "reading": "ロ", - "meaning": "hearth, fireplace, furnace, kiln" - }, - { - "example": "炉心", - "reading": "ロシン", - "meaning": "nuclear reactor core" - }, - { - "example": "原子炉", - "reading": "ゲンシロ", - "meaning": "atomic reactor, nuclear reactor" - }, - { - "example": "高炉", - "reading": "コウロ", - "meaning": "blast furnace" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "火", - "forms": [ - "灬" - ], - "meaning": "fire" - }, - "parts": [ - "一", - "尸", - "戸", - "火" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28809_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07089.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7089.gif", - "uri": "http://jisho.org/search/%E7%82%89%23kanji" - }, - { - "query": "賂", - "found": true, - "taughtIn": "junior high", - "strokeCount": 13, - "meaning": "bribe", - "kunyomi": [ - "まいな.い", - "まいな.う" - ], - "onyomi": [ - "ロ" - ], - "onyomiExamples": [ - { - "example": "貨賂", - "reading": "カロ", - "meaning": "bribe" - } - ], - "kunyomiExamples": [ - { - "example": "賂", - "reading": "まいない", - "meaning": "bribe" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ハ", - "口", - "夂", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36034_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cc2.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cc2.gif", - "uri": "http://jisho.org/search/%E8%B3%82%23kanji" - }, - { - "query": "露", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "928", - "strokeCount": 21, - "meaning": "dew, tears, expose, Russia", - "kunyomi": [ - "つゆ" - ], - "onyomi": [ - "ロ", - "ロウ" - ], - "onyomiExamples": [ - { - "example": "露", - "reading": "ロ", - "meaning": "Russia" - }, - { - "example": "露骨", - "reading": "ロコツ", - "meaning": "open, unconcealed, undisguised, blatant, plain, frank, broad, lewd, indecent, crude" - }, - { - "example": "吐露", - "reading": "トロ", - "meaning": "expressing one's mind, speaking out" - }, - { - "example": "発露", - "reading": "ハツロ", - "meaning": "appearance, expression, manifestation" - }, - { - "example": "襲名披露", - "reading": "シュウメイヒロウ", - "meaning": "announcing the succession to another's stage name" - }, - { - "example": "新序出世披露", - "reading": "シンジョシュッセヒロウ", - "meaning": "presenting of new wrestlers to audience" - } - ], - "kunyomiExamples": [ - { - "example": "露", - "reading": "つゆ", - "meaning": "dew, tears, (not) a bit, (not) at all" - }, - { - "example": "露払い", - "reading": "つゆはらい", - "meaning": "outrider, herald, rikishi who leads the yokozuna to the ring prior to his ring-entering ceremony" - }, - { - "example": "朝露", - "reading": "あさつゆ", - "meaning": "morning dew" - }, - { - "example": "下露", - "reading": "したつゆ", - "meaning": "dew under (dripping from) trees" - } - ], - "radical": { - "symbol": "雨", - "meaning": "rain" - }, - "parts": [ - "口", - "夂", - "止", - "足", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/38706_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09732.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9732.gif", - "uri": "http://jisho.org/search/%E9%9C%B2%23kanji" - }, - { - "query": "弄", - "found": true, - "taughtIn": "junior high", - "strokeCount": 7, - "meaning": "play with, tamper, trifle with", - "kunyomi": [ - "いじく.る", - "ろう.する", - "いじ.る", - "ひねく.る", - "たわむ.れる", - "もてあそ.ぶ" - ], - "onyomi": [ - "ロウ", - "ル" - ], - "onyomiExamples": [ - { - "example": "弄火", - "reading": "ロウカ", - "meaning": "playing with fire" - }, - { - "example": "弄花", - "reading": "ロウカ", - "meaning": "gambling with hanafuda" - }, - { - "example": "嘲弄", - "reading": "チョウロウ", - "meaning": "scorn, mockery, ridicule" - }, - { - "example": "戯弄", - "reading": "ギロウ", - "meaning": "teasing, toying with somebody's emotions" - } - ], - "kunyomiExamples": [ - { - "example": "弄くる", - "reading": "いじくる", - "meaning": "to finger, to tamper (with)" - }, - { - "example": "弄する", - "reading": "ろうする", - "meaning": "to play with, to joke, to use (esp. trick, sophistry, etc.), to deride, to scoff at, to make fun of" - }, - { - "example": "弄る", - "reading": "いじる", - "meaning": "to finger, to touch, to play with, to fiddle with, to toy with, to make changes to, to tinker with, to tamper with, to dabble in, to do as a hobby, to play around with, to grope, to feel around (in one's pocket, bag, etc.)" - }, - { - "example": "弄ぶ", - "reading": "もてあそぶ", - "meaning": "to play with (a toy, one's hair, etc.), to fiddle with, to toy with (one's emotions, etc.), to trifle with, to do with something as one pleases, to appreciate" - } - ], - "radical": { - "symbol": "廾", - "meaning": "two hands, twenty" - }, - "parts": [ - "廾", - "王" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24324_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05f04.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5f04.gif", - "uri": "http://jisho.org/search/%E5%BC%84%23kanji" - }, - { - "query": "郎", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "569", - "strokeCount": 9, - "meaning": "son, counter for sons", - "kunyomi": [ - "おとこ" - ], - "onyomi": [ - "ロウ", - "リョウ" - ], - "onyomiExamples": [ - { - "example": "郎", - "reading": "ロウ", - "meaning": "nth son, lang, official title in ancient China, man, young man, my husband, my lover, nth child (male and female)" - }, - { - "example": "郎君", - "reading": "ロウクン", - "meaning": "young man, boy, son (of one's master, employer, etc.), husband, (male) lover, dear, darling" - }, - { - "example": "新郎", - "reading": "シンロウ", - "meaning": "bridegroom" - }, - { - "example": "女郎", - "reading": "ジョロウ", - "meaning": "prostitute (esp. Edo period)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "邑", - "forms": [ - "阝" - ], - "meaning": "town (阝 right)" - }, - "parts": [ - "艮", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/37070_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/090ce.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/90ce.gif", - "uri": "http://jisho.org/search/%E9%83%8E%23kanji" - }, - { - "query": "浪", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1508", - "strokeCount": 10, - "meaning": "wandering, waves, billows, reckless, unrestrained", - "kunyomi": [], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "浪", - "reading": "ロウ", - "meaning": "person who has spent X years after graduating high school attempting to get admitted to (a specific) university" - }, - { - "example": "浪人", - "reading": "ロウニン", - "meaning": "ronin, masterless samurai, high school graduate waiting for another chance to enter university after having failed the yearly entrance examination, person out of work, jobless person, wanderer, drifter" - }, - { - "example": "放浪", - "reading": "ホウロウ", - "meaning": "wandering" - }, - { - "example": "1浪", - "reading": "イチロウ", - "meaning": "failing college entrance exams and retaking them a year later" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "汁", - "艮" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28010_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06d6a.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6d6a.gif", - "uri": "http://jisho.org/search/%E6%B5%AA%23kanji" - }, - { - "query": "廊", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1598", - "strokeCount": 12, - "meaning": "corridor, hall, tower", - "kunyomi": [], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "廊", - "reading": "ロウ", - "meaning": "corridor, passage, hall" - }, - { - "example": "廊下", - "reading": "ロウカ", - "meaning": "corridor, hallway, passageway" - }, - { - "example": "回廊", - "reading": "カイロウ", - "meaning": "corridor, gallery, hallway, cloister (i.e. covered walk typically circling a building or garden, esp. in a palace or place of worship)" - }, - { - "example": "ポーランド回廊", - "reading": "ポーランドカイロウ", - "meaning": "Polish Corridor" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "广", - "meaning": "house on cliff" - }, - "parts": [ - "广", - "艮", - "邦" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24266_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/05eca.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/5eca.gif", - "uri": "http://jisho.org/search/%E5%BB%8A%23kanji" - }, - { - "query": "楼", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "2173", - "strokeCount": 13, - "meaning": "watchtower, lookout, high building", - "kunyomi": [ - "たかどの" - ], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "楼", - "reading": "ロウ", - "meaning": "tower, tall building, belvedere, turret, lookout, watchtower, brothel" - }, - { - "example": "楼閣", - "reading": "ロウカク", - "meaning": "multistoried building" - }, - { - "example": "鐘楼", - "reading": "ショウロウ", - "meaning": "belfry, bell tower" - }, - { - "example": "山水楼", - "reading": "サンスイロウ", - "meaning": "Sansuiro (name of an exclusive restaurant)" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "女", - "木", - "米" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/27004_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/0697c.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/697c.gif", - "uri": "http://jisho.org/search/%E6%A5%BC%23kanji" - }, - { - "query": "漏", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1298", - "strokeCount": 14, - "meaning": "leak, escape, time", - "kunyomi": [ - "も.る", - "も.れる", - "も.らす" - ], - "onyomi": [ - "ロウ" - ], - "onyomiExamples": [ - { - "example": "漏洩", - "reading": "ロウエイ", - "meaning": "leak (of secrets, information, etc.), disclosure, divulging, leak (of gas, liquid, etc.), leakage, escape (of gas), coming through (of light)" - }, - { - "example": "漏出", - "reading": "ロウシュツ", - "meaning": "leaking out, leak" - }, - { - "example": "遺漏", - "reading": "イロウ", - "meaning": "omission" - }, - { - "example": "早漏", - "reading": "ソウロウ", - "meaning": "premature ejaculation" - } - ], - "kunyomiExamples": [ - { - "example": "漏る", - "reading": "もる", - "meaning": "to leak, to run out" - }, - { - "example": "漏れる", - "reading": "もれる", - "meaning": "to leak out, to escape, to come through, to shine through, to filter out, to find expression, to give vent, to leak out, to be divulged, to be disclosed, to be omitted, to be left out, to be excluded, to be not included" - }, - { - "example": "漏らす", - "reading": "もらす", - "meaning": "to let leak, to reveal, to wet one's pants, to give utterance, to vent, to express, to omit, to leave out" - } - ], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "尸", - "汁", - "雨" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28431_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06f0f.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6f0f.gif", - "uri": "http://jisho.org/search/%E6%BC%8F%23kanji" - }, - { - "query": "籠", - "found": true, - "taughtIn": "junior high", - "strokeCount": 22, - "meaning": "basket, devote oneself, seclude oneself, cage, coop, implied", - "kunyomi": [ - "かご", - "こ.める", - "こも.る", - "こ.む" - ], - "onyomi": [ - "ロウ", - "ル" - ], - "onyomiExamples": [ - { - "example": "牢", - "reading": "ロウ", - "meaning": "prison, jail, gaol, firm, solid, strong" - }, - { - "example": "籠球", - "reading": "ロウキュウ", - "meaning": "basketball" - }, - { - "example": "蒸籠", - "reading": "セイロ", - "meaning": "bamboo steamer, steaming basket, wooden frame holder with reed base used to steam food over a pot, soba served on a small wickerwork tray, wickerwork tray (for serving soba)" - }, - { - "example": "灯籠", - "reading": "トウロウ", - "meaning": "garden lantern, hanging lantern" - } - ], - "kunyomiExamples": [ - { - "example": "籠", - "reading": "かご", - "meaning": "basket (shopping, etc.), hamper, cage" - }, - { - "example": "籠で水を汲む", - "reading": "かごでみずをくむ", - "meaning": "to bail out the ocean with a teaspoon, to scoop water with a basket" - }, - { - "example": "相合駕籠", - "reading": "あいあいかご", - "meaning": "two people riding in a palanquin together (esp. a man and a woman)" - }, - { - "example": "ほい駕籠", - "reading": "ほいかご", - "meaning": "crude palanquin, street palanquin" - }, - { - "example": "込める", - "reading": "こめる", - "meaning": "to load (a gun, etc.), to charge, to put into (e.g. emotion, effort), to include (e.g. tax in a sales price), to hang over, to shroud, to enshroud, to envelop, to screen" - }, - { - "example": "篭る", - "reading": "こもる", - "meaning": "to shut oneself in (e.g. one's room), to be confined in, to seclude oneself, to hide away, to stay inside (one's shell), to be filled with (emotion, enthusiasm, etc.), to fill the room (of a gas, smell, etc.), to be heavy with (e.g. smoke), to be stuffy, to be dense, to be muffled (e.g. voice), to hold (a castle, fortress, etc.), to confine oneself in a temple to pray" - }, - { - "example": "込む", - "reading": "こむ", - "meaning": "to be crowded, to be packed, to be complex, to go into, to put into, to remain (seated), to be plunged into (silence), to do thoroughly, to do intently, to continue in the same state" - } - ], - "radical": { - "symbol": "竹", - "forms": [ - "⺮" - ], - "meaning": "bamboo" - }, - "parts": [ - "乞", - "月", - "立", - "竹" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/31840_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/07c60.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/7c60.gif", - "uri": "http://jisho.org/search/%E7%B1%A0%23kanji" - }, - { - "query": "麓", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "2366", - "strokeCount": 19, - "meaning": "foot of a mountain", - "kunyomi": [ - "ふもと" - ], - "onyomi": [ - "ロク" - ], - "onyomiExamples": [ - { - "example": "山麓", - "reading": "サンロク", - "meaning": "foot of a mountain, base of a mountain" - }, - { - "example": "岳麓", - "reading": "ガクロク", - "meaning": "foot of Mt Fuji" - } - ], - "kunyomiExamples": [ - { - "example": "麓", - "reading": "ふもと", - "meaning": "foot (of a mountain or hill), bottom, base" - } - ], - "radical": { - "symbol": "鹿", - "meaning": "deer" - }, - "parts": [ - "广", - "木", - "比", - "鹿" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/40595_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/09e93.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/9e93.gif", - "uri": "http://jisho.org/search/%E9%BA%93%23kanji" - }, - { - "query": "賄", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "1282", - "strokeCount": 13, - "meaning": "bribe, board, supply, finance", - "kunyomi": [ - "まかな.う" - ], - "onyomi": [ - "ワイ" - ], - "onyomiExamples": [ - { - "example": "賄賂", - "reading": "ワイロ", - "meaning": "bribe, sweetener, douceur" - }, - { - "example": "斡旋収賄", - "reading": "アッセンシュウワイ", - "meaning": "influence peddling" - } - ], - "kunyomiExamples": [ - { - "example": "賄う", - "reading": "まかなう", - "meaning": "to supply (goods, money, etc.), to cover (costs), to pay, to finance, to maintain (e.g. a family), to give board, to provide meals" - } - ], - "radical": { - "symbol": "貝", - "meaning": "shell" - }, - "parts": [ - "ノ", - "ハ", - "一", - "月", - "目", - "貝" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/36036_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08cc4.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8cc4.gif", - "uri": "http://jisho.org/search/%E8%B3%84%23kanji" - }, - { - "query": "脇", - "found": true, - "taughtIn": "junior high", - "newspaperFrequencyRank": "1806", - "strokeCount": 10, - "meaning": "armpit, the other way, another place, flank, supporting role", - "kunyomi": [ - "わき", - "わけ" - ], - "onyomi": [ - "キョウ" - ], - "onyomiExamples": [ - { - "example": "脇侍", - "reading": "ワキジ", - "meaning": "flanking image (e.g. in a Buddha triad)" - }, - { - "example": "脇息", - "reading": "キョウソク", - "meaning": "armrest" - } - ], - "kunyomiExamples": [ - { - "example": "脇", - "reading": "わき", - "meaning": "armpit, under one's arm, side, flank, beside, close to, near, by, aside, to the side, away, out of the way, off-track, off-topic, deuteragonist, supporting role, second verse (in a linked series of poems)" - }, - { - "example": "脇見", - "reading": "わきみ", - "meaning": "looking from the side, looking aside" - }, - { - "example": "床脇", - "reading": "とこわき", - "meaning": "section of a room next to the alcove (where shelves are often placed)" - }, - { - "example": "口脇", - "reading": "くちわき", - "meaning": "edges of the mouth" - }, - { - "example": "関脇", - "reading": "せきわけ", - "meaning": "wrestler of the third highest rank" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "力", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33031_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08107.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8107.gif", - "uri": "http://jisho.org/search/%E8%84%87%23kanji" - }, - { - "query": "惑", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "777", - "strokeCount": 12, - "meaning": "beguile, delusion, perplexity", - "kunyomi": [ - "まど.う" - ], - "onyomi": [ - "ワク" - ], - "onyomiExamples": [ - { - "example": "惑", - "reading": "ワク", - "meaning": "klesha" - }, - { - "example": "惑星", - "reading": "ワクセイ", - "meaning": "planet" - }, - { - "example": "魅惑", - "reading": "ミワク", - "meaning": "attraction, fascination, lure, captivation, charm" - }, - { - "example": "不惑", - "reading": "フワク", - "meaning": "past forty, following right course" - } - ], - "kunyomiExamples": [ - { - "example": "惑う", - "reading": "まどう", - "meaning": "to get lost, to lose one's bearings, to be puzzled, to be perplexed, to be confused, to be at a loss, to be tempted, to be seduced, to be captivated" - } - ], - "radical": { - "symbol": "心", - "forms": [ - "忄", - "⺗" - ], - "meaning": "heart" - }, - "parts": [ - "口", - "心", - "戈" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/24785_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/060d1.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/60d1.gif", - "uri": "http://jisho.org/search/%E6%83%91%23kanji" - }, - { - "query": "枠", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N1", - "newspaperFrequencyRank": "922", - "strokeCount": 8, - "meaning": "frame, framework, spindle, spool, bounding-box, (kokuji)", - "kunyomi": [ - "わく" - ], - "onyomi": [], - "onyomiExamples": [], - "kunyomiExamples": [ - { - "example": "枠", - "reading": "わく", - "meaning": "frame, framework, border, box, limit, restriction, quota, category, bracket, class, (broadcasting) slot, spool (of thread), reel" - }, - { - "example": "枠外", - "reading": "わくがい", - "meaning": "(beyond the) limits, scope, boundary" - }, - { - "example": "型枠", - "reading": "かたわく", - "meaning": "mold, mould" - }, - { - "example": "鋼枠", - "reading": "こうわく", - "meaning": "steel formwork, steel sets" - } - ], - "radical": { - "symbol": "木", - "meaning": "tree" - }, - "parts": [ - "九", - "十", - "木" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/26528_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/067a0.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/67a0.gif", - "uri": "http://jisho.org/search/%E6%9E%A0%23kanji" - }, - { - "query": "湾", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "545", - "strokeCount": 12, - "meaning": "gulf, bay, inlet", - "kunyomi": [ - "いりえ" - ], - "onyomi": [ - "ワン" - ], - "onyomiExamples": [ - { - "example": "湾", - "reading": "ワン", - "meaning": "bay, gulf, inlet" - }, - { - "example": "湾岸", - "reading": "ワンガン", - "meaning": "gulf coast, bay coast" - }, - { - "example": "メキシコ湾", - "reading": "メキシコワン", - "meaning": "Gulf of Mexico" - }, - { - "example": "内湾", - "reading": "ナイワン", - "meaning": "enclosed bay, inlet, deep bay, basin" - } - ], - "kunyomiExamples": [], - "radical": { - "symbol": "水", - "forms": [ - "氵", - "氺" - ], - "meaning": "water" - }, - "parts": [ - "亠", - "弓", - "汁" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/28286_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/06e7e.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/6e7e.gif", - "uri": "http://jisho.org/search/%E6%B9%BE%23kanji" - }, - { - "query": "腕", - "found": true, - "taughtIn": "junior high", - "jlptLevel": "N2", - "newspaperFrequencyRank": "1163", - "strokeCount": 12, - "meaning": "arm, ability, talent", - "kunyomi": [ - "うで" - ], - "onyomi": [ - "ワン" - ], - "onyomiExamples": [ - { - "example": "腕力", - "reading": "ワンリョク", - "meaning": "physical strength, brute strength, arm strength" - }, - { - "example": "腕白", - "reading": "ワンパク", - "meaning": "naughty, mischievous, unruly" - }, - { - "example": "敏腕", - "reading": "ビンワン", - "meaning": "ability, capability, competence, skill" - }, - { - "example": "鉄腕", - "reading": "テツワン", - "meaning": "strong arm" - } - ], - "kunyomiExamples": [ - { - "example": "腕", - "reading": "うで", - "meaning": "arm, skill, efforts, ability" - }, - { - "example": "腕時計", - "reading": "うでどけい", - "meaning": "wristwatch, watch" - }, - { - "example": "細腕", - "reading": "ほそうで", - "meaning": "thin arm, slender arm, slender means, meager ability to earn a living" - }, - { - "example": "太い腕", - "reading": "ふというで", - "meaning": "big arm, brawny arm" - } - ], - "radical": { - "symbol": "肉", - "forms": [ - "⺼" - ], - "meaning": "meat" - }, - "parts": [ - "卩", - "夕", - "宀", - "月" - ], - "strokeOrderDiagramUri": "http://classic.jisho.org/static/images/stroke_diagrams/33109_frames.png", - "strokeOrderSvgUri": "http://d1w6u4xc3l95km.cloudfront.net/kanji-2015-03/08155.svg", - "strokeOrderGifUri": "https://raw.githubusercontent.com/mistval/kanji_images/master/gifs/8155.gif", - "uri": "http://jisho.org/search/%E8%85%95%23kanji" - } -] \ No newline at end of file diff --git a/lib/migrations/test.py b/lib/migrations/test.py deleted file mode 100644 index e4dcbad..0000000 --- a/lib/migrations/test.py +++ /dev/null @@ -1,133 +0,0 @@ -import sqlite3 -import json - -# returns id -def insert_radical(cursor, item) -> str: - if 'radical' in item: - dataId = cursor.execute( - 'INSERT OR IGNORE INTO Kanji_Radical(symbol, meaning) VALUES (?, ?)', - (item['radical']['symbol'], item['radical']['meaning']) - ) - if 'forms' in item['radical']: - for form in item['radical']['forms']: - cursor.execute( - 'INSERT OR IGNORE INTO Kanji_Radical_Forms(form, radical) VALUES (?, ?)', - (form, item['radical']['symbol']) - ) - return item['radical']['symbol'] - return None - -def insert_kanji(cursor, item): - cursor.execute( - """ - INSERT OR IGNORE INTO Kanji_Result( - kanji, - strokeCount, - meaning, - radical - ) - VALUES (?,?,?,?) - """, - ( - item['query'], - item['strokeCount'], - item['meaning'], - item['radical']['symbol'], - ) - ) - - for column in ['jlptLevel', 'newspaperFrequencyRank', 'taughtIn']: - if (column in item): - cursor.execute( - f'UPDATE Kanji_Result SET {column} = ? WHERE kanji = ?', - (item[column], item['query']) - ) - -def insert_yomi(cursor, item, on=True): - yomiName = 'Onyomi' if on else 'Kunyomi' - for yomi in item[yomiName.lower()]: - cursor.execute( - f""" - INSERT OR IGNORE INTO Kanji_{yomiName}(yomi) - VALUES (?) - """, - (yomi,) - ) - - cursor.execute( - f""" - INSERT OR IGNORE INTO Kanji_Result{yomiName}_XRef(yomi, kanji) - VALUES (?, ?) - """, - (yomi, item['query']) - ) - -def insert_yomi_examples(cursor, item, on=True): - yomiName = 'Onyomi' if on else 'Kunyomi' - for yomiExample in item[yomiName.lower() + 'Examples']: - cursor.execute( - f""" - INSERT OR IGNORE INTO Kanji_YomiExample(example, reading, meaning) - VALUES (?, ?, ?) - """, - (yomiExample['example'], yomiExample['reading'], yomiExample['meaning']) - ) - - cursor.execute( - f""" - INSERT OR IGNORE INTO Kanji_Result{yomiName}Example_XRef(exampleID, kanji) - VALUES (?, ?) - """, - (cursor.lastrowid, item['query']) - ) - -def insert_parts(cursor, item): - for part in item['parts']: - cursor.execute( - """ - INSERT OR IGNORE INTO Kanji_Part(part) - VALUES (?) - """, - (part,) - ) - - cursor.execute( - """ - INSERT OR IGNORE INTO Kanji_ResultPart_XRef(part, kanji) - VALUES (?, ?) - """, - (part, item['query']) - ) - -def insertYomiExamples(cursor, item, on=True): - yomiName = 'Onyomi' if on else 'Kunyomi' - for yomi in item[yomiName.lower()]: - cursor.execute( - f""" - INSERT OR IGNORE INTO Kanji_{yomiName}(yomi) - VALUES (?) - """, - (yomi,) - ) - - cursor.execute( - f""" - INSERT OR IGNORE INTO Kanji_Result{yomiName}_XRef(yomi, kanji) - VALUES (?, ?) - """, - (yomi, item['query']) - ) - -with sqlite3.connect("test.db") as connection: - cursor = connection.cursor() - for grade in range(1, 8): - with open(f'data/jisho/grade{grade}.json') as file: - data = json.loads(file.read()) - for item in data: - rad = insert_radical(cursor, item) - insert_kanji(cursor, item) - insert_yomi(cursor, item, on=True) - insert_yomi(cursor, item, on=False) - insert_yomi_examples(cursor, item, on=True) - insert_yomi_examples(cursor, item, on=False) - insert_parts(cursor, item) diff --git a/lib/migrations/tools/update_0002.dart b/lib/migrations/tools/update_0002.dart index d8198d1..c132b3b 100644 --- a/lib/migrations/tools/update_0002.dart +++ b/lib/migrations/tools/update_0002.dart @@ -1,8 +1,10 @@ +import 'dart:convert'; +import 'dart:io'; + import 'package:html/parser.dart'; import 'package:http/http.dart' as http; import 'package:unofficial_jisho_api/api.dart'; -// TODO: Clean up code and automate process. class Radical { final int id; @@ -24,11 +26,31 @@ class Radical { return '$id - ($symbol, $strokes${search_symbol != null ? ", $search_symbol" : ""})'; } - String get sql_insert => search_symbol == null - ? 'INSERT INTO Kanji_Radical (id, symbol, strokes, meaning) ' - "VALUES ($id, '$symbol', $strokes, '$meaning');" - : 'INSERT INTO Kanji_Radical (id, symbol, strokes, meaning, searchSymbol) ' - "VALUES ($id, '$symbol', $strokes, '$meaning', '$search_symbol');"; + String get sql_tuple => ' (' + '$id, ' + "'$symbol', " + '$strokes, ' + "'$meaning', " + "${search_symbol != null ? "'$search_symbol'" : 'NULL'}" + ')'; + + factory Radical.fromJson(Map json) { + return Radical( + id: json['id'] as int, + symbol: json['symbol'] as String, + strokes: json['strokes'] as int, + meaning: json['meaning'] as String, + search_symbol: json['search_symbol'] as String?, + ); + } + + Map toJson() => { + 'id': id, + 'symbol': symbol, + 'strokes': strokes, + 'meaning': meaning, + 'search_symbol': search_symbol, + }; } String hexToUnicode(String code) => @@ -72,7 +94,9 @@ Future> fetchEquivalentUCJKIdeographs() async { return result; } -Future main(List args) async { +final cacheFile = File('data/0002_radicals.json'); + +Future cacheRadicals() async { final Map equivalentSymbols = await fetchEquivalentUCJKIdeographs(); @@ -106,7 +130,7 @@ Future main(List args) async { final String radical = node.innerHtml; - // print(radical); + print('Caching: $radical'); KanjiResult? result; for (final item in [ @@ -130,9 +154,25 @@ Future main(List args) async { ); radicals.add(radicalData); - - print(radicalData.sql_insert); } assert(radicals.length == 252, '[ERROR] Missing radicals!'); + + final encoder = JsonEncoder.withIndent(' '); + cacheFile.writeAsStringSync(encoder.convert(radicals)); +} + +Future main(List args) async { + if (!cacheFile.existsSync()) { + await cacheRadicals(); + } + + List radicals = (jsonDecode(cacheFile.readAsStringSync()) as List).map((e) => Radical.fromJson(e)).toList(); + + File('0002_populate_radicals.sql').writeAsStringSync( + ''' +INSERT INTO Kanji_Radical(id, symbol, strokes, meaning, searchSymbol) VALUES +${radicals.map((r) => r.sql_tuple).join(',\n')}; +''', + ); } diff --git a/lib/migrations/tools/update_0003.dart b/lib/migrations/tools/update_0003.dart new file mode 100644 index 0000000..e9d961a --- /dev/null +++ b/lib/migrations/tools/update_0003.dart @@ -0,0 +1,28 @@ +import 'dart:io'; + +// TODO: Automate download of radkfile + +void main() { + final String content = File('data/radkfile_utf8').readAsStringSync(); + final Iterable blocks = + content.replaceAll(RegExp(r'^#.*$'), '').split(r'$').skip(2); + + final List tuples = []; + for (final block in blocks) { + final String radical = block[1]; + final List kanjiList = block + .replaceFirst(RegExp(r'.*\n'), '') + .split('') + ..removeWhere((e) => e == '' || e == '\n'); + + for (final kanji in kanjiList) { + tuples.add(" ('$radical', '$kanji')"); + } + } + + File('0003_populate_radkfile.sql').writeAsStringSync( + ''' +INSERT INTO RADKFILE(radical, kanji) VALUES +${tuples.join(',\n')};''', + ); +} diff --git a/lib/migrations/tools/update_0004.dart b/lib/migrations/tools/update_0004.dart new file mode 100644 index 0000000..d1a1239 --- /dev/null +++ b/lib/migrations/tools/update_0004.dart @@ -0,0 +1,213 @@ +// ignore_for_file: avoid_print + +import 'dart:convert'; +import 'dart:io'; + +import 'package:unofficial_jisho_api/api.dart'; + +Future cacheData(int i) async { + final File cacheFile = File('data/jisho/grade$i.json'); + final File kanjiFile = File('data/jouyou/grade$i.txt'); + final List kanji = [ + for (final k in kanjiFile.readAsStringSync().runes) String.fromCharCode(k) + ]; + + final List data = []; + + await Future.wait([ + for (int i = 0; i < kanji.length; i++) + Future.delayed(Duration(milliseconds: 300 * i), () async { + print('$i: ${kanji[i]}'); + final result = await searchForKanji(kanji[i]); + data.add(result.data!); + }) + ]); + + const JsonEncoder encoder = JsonEncoder.withIndent(' '); + cacheFile.writeAsStringSync(encoder.convert(data)); +} + +String quote(String input) => "'${input.replaceAll("'", "''")}'"; + +extension SQLInserts on KanjiResultData { + int? get jlptLevelNumber => + jlptLevel != null ? int.parse(jlptLevel![1]) : null; + + int? get taughtInNumber => taughtIn == null + ? null + : taughtIn == 'junior high' + ? 7 + : int.parse(taughtIn![6]); + + static String get kanjiResultCols => + '(kanji, strokeCount, meaning, radical, jlptLevel, newspaperFrequencyRank, taughtIn, isJouyou)'; + String get kanjiResultRow => + // ignore: prefer_interpolation_to_compose_strings + '("$kanji", $strokeCount, "$meaning", "${radical!.symbol}", ' + + ((jlptLevel != null) ? '$jlptLevelNumber, ' : 'NULL, ') + + ((newspaperFrequencyRank != null) + ? '$newspaperFrequencyRank, ' + : 'NULL, ') + + ((taughtIn != null) ? '$taughtInNumber, ' : 'NULL, ') + + 'true' + ')'; + + static String get yomiCols => '(yomi)'; + static String get partCols => '(part)'; + List get onyomiRows => onyomi.map((y) => '("$y")').toList(); + List get kunyomiRows => kunyomi.map((y) => '("$y")').toList(); + List get partsRows => kunyomi.map((p) => '("$p")').toList(); + + static String get yomiXRefCols => '(kanji, yomi)'; + static String get partXRefCols => '(kanji, part)'; + List get onyomiXRefRows => + onyomi.map((y) => "('$kanji', '$y')").toList(); + List get kunyomiXRefRows => + kunyomi.map((y) => "('$kanji', '$y')").toList(); + List get partsXRefRows => + kunyomi.map((p) => "('$kanji', '$p')").toList(); + + static String get yomiExampleCols => '(example, reading, meaning)'; + List get onyomiExamplesRows => onyomiExamples + .map( + (y) => + '(${quote(y.example)}, ${quote(y.reading)}, ${quote(y.meaning)})', + ) + .toList(); + List get kunyomiExamplesRows => kunyomiExamples + .map( + (y) => + '(${quote(y.example)}, ${quote(y.reading)}, ${quote(y.meaning)})', + ) + .toList(); + + static String get yomiExampleXRefCols => '(exampleID, kanji)'; + List onyomiExamplesXRefRows(int exampleID) => [ + for (int i = 0; i < onyomiExamples.length; i++) + "(${exampleID + i}, '$kanji')" + ]; + List kunyomiExamplesXRefRows(int exampleID) => [ + for (int i = 0; i < kunyomiExamples.length; i++) + "(${exampleID + i}, '$kanji')" + ]; +} + +int exampleIDXRefCounter = 1; + +List generateStatements(List kanji) { + final List statements = []; + + final List tableKanjiResult = []; + final List tableOnyomi = []; + final List tableKunyomi = []; + final List tablePart = []; + final List tableOnyomiExamples = []; + final List tableKunyomiExamples = []; + + final List tableOnyomiXRef = []; + final List tableKunyomiXRef = []; + final List tablePartXRef = []; + final List tableOnyomiExamplesXRef = []; + final List tableKunyomiExamplesXRef = []; + + for (final k in kanji) { + tableKanjiResult.add(k.kanjiResultRow); + tableOnyomi.addAll(k.onyomiRows); + tableKunyomi.addAll(k.kunyomiRows); + tablePart.addAll(k.partsRows); + tableOnyomiExamples.addAll(k.onyomiExamplesRows); + tableKunyomiExamples.addAll(k.kunyomiExamplesRows); + + tableOnyomiXRef.addAll(k.onyomiXRefRows); + tableKunyomiXRef.addAll(k.kunyomiXRefRows); + tablePartXRef.addAll(k.partsXRefRows); + } + + for (final k in kanji) { + final oxr = k.onyomiExamplesXRefRows(exampleIDXRefCounter); + exampleIDXRefCounter += oxr.length; + tableOnyomiExamplesXRef.addAll(oxr); + } + + for (final k in kanji) { + final kxr = k.kunyomiExamplesXRefRows(exampleIDXRefCounter); + exampleIDXRefCounter += kxr.length; + tableKunyomiExamplesXRef.addAll(kxr); + } + + void insertStatement({ + required String table, + required List values, + orIgnore = false, + }) => + statements.add( + 'INSERT${orIgnore ? ' OR IGNORE' : ''} INTO $table VALUES\n' + '${values.join(',\n')};\n', + ); + + insertStatement( + table: 'Kanji_Result${SQLInserts.kanjiResultCols}', + values: tableKanjiResult, + ); + + for (final isOnyomi in [true, false]) { + final String name = isOnyomi ? 'Onyomi' : 'Kunyomi'; + insertStatement( + table: 'Kanji_$name${SQLInserts.yomiCols}', + values: isOnyomi ? tableOnyomi : tableKunyomi, + orIgnore: true, + ); + + insertStatement( + table: 'Kanji_Result${name}_XRef${SQLInserts.yomiXRefCols}', + values: isOnyomi ? tableOnyomiXRef : tableKunyomiXRef, + ); + + insertStatement( + table: 'Kanji_YomiExample${SQLInserts.yomiExampleCols}', + values: isOnyomi ? tableOnyomiExamples : tableKunyomiExamples, + orIgnore: true, + ); + + insertStatement( + table: 'Kanji_Result${name}Example_XRef${SQLInserts.yomiExampleXRefCols}', + values: isOnyomi ? tableOnyomiExamplesXRef : tableKunyomiExamplesXRef, + ); + } + + insertStatement( + table: 'Kanji_Part${SQLInserts.partCols}', + values: tablePart, + orIgnore: true, + ); + + insertStatement( + table: 'Kanji_ResultPart_XRef${SQLInserts.partXRefCols}', + values: tablePartXRef, + ); + + return statements; +} + +Future main() async { + final dataDir = Directory('data/jisho'); + dataDir.createSync(); + + final List statements = []; + for (int i = 1; i <= 7; i++) { + final File cacheFile = File('data/jisho/grade$i.json'); + if (!cacheFile.existsSync()) { + await cacheData(i); + } + + final String content = cacheFile.readAsStringSync(); + final List kanji = (jsonDecode(content) as List) + .map((e) => KanjiResultData.fromJson(e)) + .toList(); + + statements.addAll(generateStatements(kanji)); + } + + File('0004_populate_jouyou_kanji.sql') + .writeAsStringSync(statements.join('\n')); +}