PHONETIC Function

Excel Functions › Text

All Excel versions DBCS languages

The Excel PHONETIC function extracts the furigana — phonetic reading guides — attached to Japanese text in a cell. When you type kanji with the Japanese IME, Excel quietly stores the katakana reading you typed alongside the characters; PHONETIC pulls that hidden reading out, which is how Japanese spreadsheets sort name lists correctly. The crucial catch: the reading exists only for text typed into Excel. Pasted or imported text carries no phonetic data, so PHONETIC just hands the original text back.


Quick answer: to show the reading of the Japanese name in A2:
=PHONETIC(A2) // kanji in, katakana reading out
If A2 was typed via the Japanese IME you get its furigana (e.g. 東京 → トウキョウ). If A2 was pasted in, you get 東京 back unchanged.

Syntax

=PHONETIC(reference)
ArgumentDescription
referenceRequiredA cell or range containing text with stored phonetic information. For a range, the readings are concatenated in order.

Available in: all Excel versions, but it only does real work when East Asian language support is active and the text was entered with an IME (Japanese, and to a lesser extent other East Asian input methods). On Western-language systems — or for any pasted/imported text — it returns the text itself.

Extracting furigana readings

Each kanji entry below was typed with the Japanese IME, so Excel stored the katakana reading the typist used. PHONETIC retrieves it:

AB
1Kanji (typed via Japanese IME)=PHONETIC(A2)
2東京トウキョウ
3大阪オオサカ
4山田ヤマダ
=PHONETIC(A2) // returns the stored furigana for one cell

The classic use is a sortable reading column next to a Japanese name list — kanji don’t sort phonetically, but their furigana do:

=PHONETIC(B2) // helper column; sort the table by this column instead

To view or fix the stored reading, select the cell and use Home › Phonetic Guide (フリガナ) › Edit. PHONETIC reports whatever is stored there — including any typos made at entry time.

Try it: interactive PHONETIC demo

Live demo

Pick a Japanese word and how it got into the cell. Watch what PHONETIC can — and cannot — return.

Errors & common pitfalls

Pitfall: imported text has no phonetic data. This is the number-one surprise. Furigana are captured at typing time by the IME. Text pasted from the web, loaded from CSV, or produced by a formula carries none — PHONETIC simply returns the original characters. There is no formula that can reconstruct the reading; it must be re-typed or added via Home › Phonetic Guide.

Pitfall: it works on references only. =PHONETIC("東京") is invalid — a literal string has nowhere to store furigana. Point the function at a cell.

Pitfall: the reading reflects how it was typed. If the typist entered an unusual reading to reach the right kanji, PHONETIC reports that reading. Audit name lists with Home › Phonetic Guide › Show to display furigana above the cells.

Pitfall: expecting it to romanise or translate. PHONETIC outputs kana readings, not rōmaji and not English. On a system with no East Asian input it has nothing to extract and is effectively a no-op.

Practice workbook

📊
Download the free PHONETIC practice workbook
Every example on this page, ready to open in Excel — plus practice challenges with answers on a separate tab. No sign-up required.

Frequently asked questions

Why does PHONETIC just return my original text?
Because the cell has no stored phonetic information. Furigana are recorded only when text is typed through an IME (typically Japanese). Pasted, imported, or formula-generated text has none, so PHONETIC falls back to returning the text itself. Re-type the entries or add readings manually via Home › Phonetic Guide.
How do I sort a Japanese name list in reading order?
Add a helper column of =PHONETIC(A2) and sort by it. Kanji sort by character code, which is meaningless for names; the furigana column sorts in proper kana order. Excel’s Sort dialog can also use furigana directly — the helper column just makes it visible and auditable.
Can I change whether PHONETIC returns hiragana or katakana?
Yes — select the source cells, open Home › Phonetic Guide › Settings, and choose hiragana, full-width katakana, or half-width katakana. PHONETIC’s output follows that per-cell setting; the default is full-width katakana.
Does PHONETIC work outside Japanese?
It’s designed around Japanese furigana. Chinese and Korean IMEs don’t store readings the same way, and on Western-language systems there is nothing to extract — the function exists everywhere but returns the input text. If you just need to clean or convert width of East Asian text, see ASC and DBCS.

Master functions like this in one day

This page covers one function. Our Excel Formulas and Functions class covers the 30 that matter most — live, hands-on, taught by professionals in Dallas–Fort Worth, Houston, Austin, Oklahoma City, Denver, or online.

See the Formulas & Functions Class

Related functions: ASC · DBCS · LENB · TEXT · CLEAN