Skip to main content

UseDisplayLocale

Returns information about the current display language & region.

Example

Tsx
const {  bcp47Tag,  humanReadableLanguageAndLocale,  humanReadableLanguage,  isRTL,} = useDisplayLocale();console.log(bcp47Tag) // "en-GB"console.log(humanReadableLanguage) // "English"console.log(humanReadableLanguageAndLocale) // "British English"console.log(isRTL) // false
Signature
function useDisplayLocale(): void
Was this chapter helpful?
Report Issue
Edited Feb 2, 2026·Edit this page