A radical tour of the time namespace
Time in Chinese is structured data. There are no irregular month names, no Monday-through-Sunday word list to memorize, no AM/PM suffix rules. The calendar is a set of primitive types — 年, 月, 日 — and every date is a tuple assembled from them in strict order. The clock is another tuple: 时, 分. If you have ever sorted ISO-8601 strings lexicographically, you already know how Chinese thinks about time.
The ornament on top of this system is a handful of radicals. 日 (sun) marks everything about days and daylight; 月 (here the moon, not flesh) marks months and phases; 时 (hour) marks durations and moments. Learn the radicals, learn one numeric rule (biggest unit first, always), and the whole time vocabulary falls out as compositions.
// The time namespace. import { day, morning, evening, bright } from "日"; // sun module import { month, phase, bright } from "月"; // moon module (not flesh here) import { year, thisYear, nextYear } from "年"; // year primitive import { hour, when, era } from "时"; // hour module // Dates are tuples, always biggest-first: type Date = [year, month, day, hour, minute];
1. The radical map
Four primitives, the whole calendar and clock. Anchors jump to each section below.
| Radical | Pinyin | Namespace | Shows up in |
|---|---|---|---|
| 日 | rì | sun / day — daylight, brightness, time-of-day | 早, 晚, 明, 昨, 时, 星, 春, 晴 |
| 月 | yuè | moon / month — phases, periods (not flesh here!) | 月, 明, 期 |
| 年 | nián | year — the annual primitive | 今年, 去年, 明年, 新年, 年轻 |
| 时 | shí | hour / time — moments, durations, eras | 时间, 小时, 时候, 时代 |
日 — the sun module
Day interface: every method in it
either measures light or locates you in the daily cycle.
This is the densest radical in the time namespace. The same glyph names the sun, names a day, and shows up inside nearly every word for parts of the day, seasons, and weather.
| Char | Pinyin | Meaning | How to read it |
|---|---|---|---|
| 日 | rì | sun; day | The primitive. Used for dates (4月18日), weekdays (星期日), and "day" in compounds (生日 = birthday). |
| 早 | zǎo | early; morning | 日 + 十 (stylized marker). The sun rising above the line. 早上 = morning; 早 alone = "morning!" as a greeting. |
| 晚 | wǎn | late; evening | 日 + 免 (phonetic). The sun past its peak. 晚上 = evening; 晚安 = "evening-peace" = goodnight. |
| 明 | míng | bright; next (as in tomorrow) | 日 + 月. Two light sources = bright. Extended to 明天 (tomorrow — "the next bright day"). |
| 昨 | zuó | yesterday (bound form) | 日 + 乍 (phonetic). Only lives inside 昨天 and 昨日 — but that alone makes it an everyday character. |
| 时 | shí | hour; time | 日 + 寸 (inch, measure). A measured piece of the sun's journey. Detailed in §5. |
| 星 | xīng | star | 日 on top + 生 (be born). "Born from the sky." Lives in 星期 (week) — the block between two celestial reset points. |
| 春 | chūn | spring | Stylized grass-and-sprouts on top + 日. Sun plus sprouts = spring. Paired with 夏, 秋, 冬. |
| 晴 | qíng | sunny, clear | 日 + 青 (phonetic qīng). The weather word: 今天很晴 = "today is sunny." |
月 — the moon module
As a standalone word, 月 means "moon" and "month." As a component on the right side of a character (明, 期), it still reads as the moon. On the left or bottom, it is almost always the flesh radical — but the characters in this section all use the moon meaning.
| Char | Pinyin | Meaning | How to read it |
|---|---|---|---|
| 月 | yuè | moon; month | The primitive. Prefixed with a number: 一月 (January) through 十二月 (December). Compositional — see §7. |
| 明 | míng | bright | 日 + 月. Moon on the right — unambiguously the moon, not flesh. |
| 期 | qī | period, phase, term | 其 + 月. A "moon-period." Lives in 星期 (week), 学期 (semester), 过期 (expired), 日期 (date). |
年 — the year primitive
Unlike 日 and 月, 年 does not decorate many compounds. It prefers to stand alone and take modifiers on its left or right. Memorize a short list of year + modifier words and you own the decade.
| Word | Pinyin | Meaning | How to read it |
|---|---|---|---|
| 今年 | jīn nián | this year | 今 (now) + 年. Same 今 as in 今天 (today) and 今晚 (tonight). |
| 去年 | qù nián | last year | 去 (go, past) + 年. Literally "the year that went." |
| 明年 | míng nián | next year | 明 (bright / next) + 年. Same 明 as in 明天 — "the bright year to come." |
| 新年 | xīn nián | new year | 新 (new) + 年. 新年快乐 = "happy new year!" |
| 年轻 | nián qīng | young | 年 + 轻 (light, weight). Literally "light-year" — few years on you. Nothing to do with the physics unit. |
时 — the hour module
In modern Chinese, 时 rarely stands alone — it lives inside compounds. Four of them do all the heavy lifting:
| Word | Pinyin | Meaning | How to read it |
|---|---|---|---|
| 时间 | shí jiān | time (as a resource) | 时 + 间 (interval). 有时间 = "have time"; 没时间 = "no time." |
| 小时 | xiǎo shí | hour (duration) | 小 (small) + 时. A "small time" — one hour as a measured span. 两个小时 = two hours. |
| 时候 | shí hou | the time when; moment | 时 + 候 (wait). 什么时候 = "when?"; 我小的时候 = "when I was small." |
| 时代 | shí dài | era, age | 时 + 代 (generation). A historical unit. 互联网时代 = the internet age. |
6. Days of the week
Chinese does not name the days after planets or gods. It numbers them. Monday is day one, Tuesday is day two, on to Saturday. Sunday — the outlier — takes 日 or 天 instead of a number.
| Day | Hanzi | Pinyin | Literally |
|---|---|---|---|
| Monday | 星期一 | xīngqī yī | week-one |
| Tuesday | 星期二 | xīngqī èr | week-two |
| Wednesday | 星期三 | xīngqī sān | week-three |
| Thursday | 星期四 | xīngqī sì | week-four |
| Friday | 星期五 | xīngqī wǔ | week-five |
| Saturday | 星期六 | xīngqī liù | week-six |
| Sunday | 星期日 / 星期天 | xīngqī rì / xīngqī tiān | week-sun / week-day |
The prefix 星期 literally means "star-period." A colloquial alternative, 周 (zhōu, "cycle"), gives you 周一 through 周日 — same numbering, shorter word. Both are standard. Engineer's note: this is the cleanest design decision in the whole calendar. No Wednesdays to spell wrong.
7. Months and dates
Months are even simpler than days: number plus 月. Twelve entries, zero exceptions. 一月 (January), 二月 (February), ..., 十月 (October), 十一月 (November), 十二月 (December).
For dates, Chinese writes them in strict biggest-to-smallest order — the same order a sortable ISO string uses: 年 / 月 / 日.
// 2026年4月18日 — April 18, 2026 // Read literally: "2026-year, 4-month, 18-day" date = { year: 2026, month: 4, day: 18 }; // Spoken, same order: // 二零二六 年 四 月 十八 日 // èr líng èr liù nián sì yuè shí bā rì
In casual speech, 日 is often replaced by 号 (hào, "number") for the day: 四月十八号 = "April 18th." 日 stays for written and formal use; 号 dominates in conversation. Both are correct.
8. Telling time
The clock has four vocabulary items: 点 (diǎn, o'clock — literally "dot"), 分 (fēn, minute — literally "divide"), 半 (bàn, half), and 刻 (kè, quarter — literally "a carved notch").
| Time | Hanzi | Pinyin | Literally |
|---|---|---|---|
| 3:00 | 三点 | sān diǎn | three-dot |
| 3:30 | 三点半 | sān diǎn bàn | three-dot-half |
| 3:15 | 三点一刻 | sān diǎn yī kè | three-dot-one-quarter |
| 2:15 | 两点十五分 | liǎng diǎn shí wǔ fēn | two-dot-fifteen-minute |
| 2:00 | 两点 | liǎng diǎn | two-dot (note: 两, not 二!) |
AM / PM does not exist as a suffix. Chinese splits the day into named blocks that prefix the time instead: 早上 (zǎoshang, early morning), 上午 (shàngwǔ, AM), 中午 (zhōngwǔ, noon), 下午 (xiàwǔ, PM), 晚上 (wǎnshang, evening). So 2 PM is 下午两点 — literally "afternoon two-dot." The 上/下 that mean morning/afternoon are the same 上/下 you use for "on top of" and "under" — directions of the sun.
9. Relative days
Five deictic positions around today, all sharing the suffix 天 (tiān):
| Word | Pinyin | Meaning | Offset |
|---|---|---|---|
| 前天 | qián tiān | day before yesterday | -2 |
| 昨天 | zuó tiān | yesterday | -1 |
| 今天 | jīn tiān | today | 0 |
| 明天 | míng tiān | tomorrow | +1 |
| 后天 | hòu tiān | day after tomorrow | +2 |
The same deictic grid maps onto years: 前年, 去年, 今年, 明年, 后年. The only irregularity is that "yesterday" uses 昨 with 天 but 去 with 年.
10. Where time lives in a sentence
This is the one grammar rule to internalize. In Chinese, time expressions go before the verb, not after. English puts time adverbs at the end ("I get up at seven"); Chinese puts them right after the subject and before anything happens.
// Correct — time before the verb: // 我 七点 起床。 // wǒ qī diǎn qǐchuáng // "I get up at 7." I.at(7).getUp(); // Wrong — time after the verb: // 我 起床 七点。 ✗ ungrammatical // Full slot order: // [subject] [time] [place] [verb] [object] // 我 明天 在 家 吃 饭。 — "I will eat at home tomorrow."
11. Putting it together
A few compounds that fall out of the primitives above:
| Word | Pinyin | Meaning | Decomposition |
|---|---|---|---|
| 生日 | shēng rì | birthday | 生 (be born) + 日 (day). The "day of being born." |
| 日期 | rì qī | date (calendar) | 日 (day) + 期 (period). The formal word for a date on a form. |
| 周末 | zhōu mò | weekend | 周 (week) + 末 (end). |
| 平时 | píng shí | usually, normally | 平 (flat, ordinary) + 时. The "ordinary time." |
| 同时 | tóng shí | at the same time | 同 (same) + 时. Parallel to English "simultaneously." |
| 准时 | zhǔn shí | on time, punctual | 准 (accurate) + 时. Used for trains, meetings, people. |
| 年纪 | nián jì | age | 年 + 纪 (record). "The year-record." 多大年纪? = "how old?" (polite form). |
12. Sentence patterns
Five sentences that fall out of this vocabulary once you know where time sits. Time always before the verb; date units always biggest-first.
// 今天 是 四月 十八 号。 // jīntiān shì sì yuè shí bā hào // "Today is April 18th." (号 = colloquial for 日) today === "2026-04-18"; // 我 三点 有 课。 // wǒ sān diǎn yǒu kè // "I have class at 3." (time BEFORE 有) me.at(3).has(class_); // 星期一 我 上班。 // xīngqī yī wǒ shàngbān // "On Mondays I work." (day topicalized at the front) Mondays.forEach(() => me.work()); // 下午 两点 开会。 // xiàwǔ liǎng diǎn kāihuì // "There's a meeting at 2 PM." (no subject needed) schedule.at("14:00").meeting(); // 今年 我 二十 五 岁。 // jīnnián wǒ èr shí wǔ suì // "I'm 25 this year." (岁 = years-of-age) me.ageThisYear = 25;
13. Next steps
- Browse time & date vocabulary — filtered by tag
- Start a review session — lock in the 日 / 月 / 年 / 时 set
- See also: The Body — for the other meaning of 月
- Module 4: Composition — the full theory of radicals
The calendar and clock are the most compositional pieces of Chinese vocabulary you will ever meet. Twelve months, seven days, twenty-four hours — all built from number + unit. If you have written a date formatter, you already know the shape of this grammar.