Skip to content

ICU Message Format Playground

Test ICU message syntax with live preview, multi-locale output, and instant error explanations.

Free i18n Tool

ICU Message

Edit your message using ICU syntax below

Valid ICU message

Variables

Adjust values to see live output changes

Multi-locale Preview

Live output across 4 locales using Intl.PluralRules

EnglishHello, World!
GermanHello, World!
JapaneseHello, World!
ArabicHello, World!

Code Snippet

import { useIntl } from "react-intl";

// In your messages file:
// { "myKey": "Hello, {name}!" }

function MyComponent() {
  const intl = useIntl();
  return (
    <span>
      {intl.formatMessage(
        { id: "myKey" },
        {
    name: "World"
  }
      )}
    </span>
  );
}

FAQ

Frequently asked questions

More tools

Free tools for the rest of your i18n workflow: locale data, ICU messages, file formats and hreflang.

Ready to ship globally?

Join hundreds of teams using Better I18N to deliver faster, context-aware translations.

Already shipping with Better I18N