**- 常用漢字**
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/Kanji"
WHERE contains(種別,"常用漢字")
group by Count
```

**Kanjis per processing**
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/Kanji"
group by processing

```

with english description complete
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/Kanji"
where english-meaning
group by processing

```

**Vocabulary**
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/Vocabulary"
group by tags

```
**Places**
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/Names-and-Places"
group by tags

```
**4 Kanji Words** 
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/四字熟語"
group by tags

```
**部首**
```dataview

TABLE
length(rows) AS Count
FROM "Slip Box/Japanese/部首"
group by tags

```

## Sources sites

https://www.kanjidatabase.com/index.php

- https://kakijun.com/c/5546.html
- https://www.syotai.net/?s=%E5%95%86
- https://kakijun.jp/page-ms/1119200.html
- https://kanjitisiki.com/syogako/syogaku3/092.html
- https://tangorin.com/kanji?search=一
- https://jisho.org/search/%E5%A3%8A%20%23kanji
- https://kanji.jitenon.jp/kanjij/4909

https://en.wikipedia.org/wiki/List_of_j%C5%8Dy%C5%8D_kanji
## Related

[[Japanese completing-correcting all kanjis]]
[[Japanese import Vocabulary List]]
[[Japanese Import 4-kanji-word List]]

---
Up:: [[Learning Japanese]]