Japanese Large Number Formatter

Format large numbers using 万/億/兆 Japanese grouping units

Format a large integer using the Japanese myriad system, which advances every four digits: 万 (10,000), 億 (100 million), 兆 (1 trillion). Shows both the digit form (1億2345万) and full kanji numerals. Runs in your browser.

Why do Japanese units advance every four digits?

Japanese, like Chinese and Korean, uses a myriad system where each new unit is 10,000 times the last: 万 is 10,000, 億 is 100 million, and 兆 is one trillion. This differs from the Western system that groups every three digits.

Japanese groups large numbers every four digits, not every three, using the units 万, 億, and 兆. This tool converts an ordinary number into both the mixed digit form and full kanji numerals, applying the standard reading rules.

How it works

The number is split into 4-digit groups from the right and each non-zero group is tagged with its myriad unit:

万 = 10,000       (10^4)
億 = 100,000,000  (10^8)
兆 = 1,000,000,000,000 (10^12)
京 = 10^16

Within each group the digits use 千 百 十 and the kanji numerals 一-九, and a leading 一 is dropped before 十, 百, and 千. So 123456789 becomes the digit form 1億2345万6789 and the kanji form 一億二千三百四十五万六千七百八十九.

Example and notes

Entering 123456789 gives 1億2345万6789 and the full kanji reading above. The mixed digit form is what you will most often see in Japanese newspapers and financial reports, while the kanji form is used in formal writing. Everything is computed in your browser, so your input stays private.