---
title: "Non-English Locales · Nuxt OG Image · Nuxt SEO"
canonical_url: "https://nuxtseo.com/docs/og-image/v5/guides/non-english-locales"
last_updated: "2026-08-16T10:00:30.938Z"
meta:
  description: "How to use the Nuxt OG Image module with non-english locales."
  "og:description": "How to use the Nuxt OG Image module with non-english locales."
  "og:title": "Non-English Locales · Nuxt OG Image · Nuxt SEO"
---

Nuxt SEO on GitHub

You're viewing **OG Image v5** documentation. For the latest, [~~switch to v6~~](https://nuxtseo.com/docs/og-image/getting-started/introduction).

](https://nuxtseo.com/docs/og-image/v5/getting-started/introduction)

](https://nuxtseo.com/docs/og-image/v5/api/define-og-image)

](https://nuxtseo.com/docs/og-image/v5/releases/v5)

Switch to OG Image](https://nuxtseo.com/docs/og-image/getting-started/introduction)Switch to Nuxt SEO](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)Switch to Robots](https://nuxtseo.com/docs/robots/getting-started/introduction)Switch to Sitemap](https://nuxtseo.com/docs/sitemap/getting-started/introduction)Switch to Schema.org](https://nuxtseo.com/docs/schema-org/getting-started/introduction)Switch to Link Checker](https://nuxtseo.com/docs/link-checker/getting-started/introduction)Switch to SEO Utils](https://nuxtseo.com/docs/seo-utils/getting-started/introduction)Switch to Site Config](https://nuxtseo.com/docs/site-config/getting-started/introduction)Switch to Skew Protection](https://nuxtseo.com/docs/skew-protection/getting-started/introduction)Switch to AI Ready](https://nuxtseo.com/docs/ai-ready/getting-started/introduction)

**Core Concepts**

# **Non-English Locales**

To render Satori images correctly, the module provides the [**~~default font Inter~~**](https://nuxtseo.com/docs/og-image/guides/custom-fonts).

Inter does not support non-english character, so you will need to switch the font when rendering in different languages.

The [**~~Noto Typeface~~**](https://fonts.google.com/noto) from Google Fonts is a good option for this as they support a wide range of languages.

### Example: Chinese

```ts
export default defineNuxtConfig({
  ogImage: {
    fonts: [
      'Noto+Sans+SC:400'
    ]
  }
})
```

```vue
<script lang="ts" setup>
defineOgImageComponent('NuxtSeo', {
  title: '中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試',
})
</script>
```

**Was this page helpful?**

[**Fonts** Using custom fonts in your OG Images.](https://nuxtseo.com/docs/og-image/v5/guides/custom-fonts) [**Emojis** Use emojis in your OG Images.](https://nuxtseo.com/docs/og-image/v5/guides/emojis)