Skip to content
JTK

Hiragana to Katakana Converter

Turn hiragana into katakana instantly, in your browser.

Paste hiragana above and the katakana appears as you type. Nothing is uploaded and nothing is installed — the conversion runs in your browser.

The two scripts are the same list of sounds

Hiragana and katakana are two ways of writing the same 46 syllables. あ and ア are both a; か and カ are both ka. Japanese uses both at once because the choice of script carries meaning rather than sound:

  • Hiragana writes native Japanese words and all the grammar — the endings, particles and connectives that hold a sentence together.
  • Katakana writes loanwords, foreign names, onomatopoeia, and the occasional word an author wants to stand out. コンピューター is konpyūtā, from "computer".

Converting between them changes how a word looks, not how it sounds.

Why the conversion is exact

The two syllabaries sit in parallel Unicode blocks, a fixed distance apart: hiragana runs from U+3041 and katakana from U+30A1, exactly 0x60 higher. So every hiragana character has one katakana counterpart and the conversion is arithmetic rather than a lookup table with judgement calls in it.

Three details that follow from that, and that a careless converter gets wrong:

  • Small kana and voiced marks are ordinary characters. っ → ッ, ゃゅょ → ャュョ, が → ガ, ぱ → パ. They are separate code points in the same run, so they convert like everything else.
  • The iteration marks sit outside the run. ゝ and ゞ pair with ヽ and ヾ, and are handled separately.
  • Four katakana have no hiragana form. ヷヸヹヺ exist only in katakana, so the reverse direction leaves them alone rather than producing an unassigned character.

The long vowel mark stays as it is

ー (U+30FC) is shared by both scripts, so it is carried across unchanged: らーめん becomes ラーメン. It is far more common in katakana, because that is where loanwords live and loanwords are full of long vowels, but it is not katakana-only.

That matters going the other way too. Converting ラーメン back gives らーめん — correct, and worth knowing if you expected らあめん.

Examples

HiraganaKatakanaWhat it shows
ひらがなヒラガナBasic syllables
がっこうガッコウVoiced mark and small tsu
きょうキョウSmall yo
らーめんラーメンThe long vowel mark carried across
私はねこ私ハネコKanji untouched, hiragana converted

When you would use this

  • Writing a loanword or a foreign name, which convention puts in katakana.
  • Reading a menu or a sign written in katakana when you know the word in hiragana.
  • Making study material — the same vocabulary list in both scripts.
  • Normalising text before comparing it, where the script should not count as a difference.

Frequently asked questions

How do I convert hiragana to katakana?

Paste or type the hiragana into the box above. The katakana appears as you type, and the switch above the boxes reverses the direction if you need to go the other way.

Is the conversion exact?

Yes. Hiragana and katakana are parallel Unicode blocks with a fixed distance between them, so every hiragana character has exactly one katakana counterpart. This is arithmetic, not interpretation.

What happens to kanji and Latin text?

Nothing. Only hiragana is changed, so you can run a whole mixed sentence through and only the hiragana moves.

Does it handle small kana and voiced marks?

Yes. っ becomes ッ, ゃゅょ become ャュョ, and が becomes ガ. The iteration marks ゝゞ become ヽヾ.

Why is the long vowel mark unchanged?

Because ー belongs to both scripts. らーめん becomes ラーメン, with the mark carried across rather than converted.

Keep exploring