
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
is-unicode-supported
Advanced tools
The is-unicode-supported npm package is a simple utility that allows you to check if the environment where your Node.js application is running supports Unicode. This can be particularly useful when you want to ensure that Unicode characters are displayed correctly in the terminal or console.
Check Unicode support
This feature allows you to check if Unicode is supported in the current environment. The function returns a boolean value indicating the support status.
const isUnicodeSupported = require('is-unicode-supported');
if (isUnicodeSupported()) {
console.log('Unicode is supported!');
} else {
console.log('Unicode is not supported.');
}
The supports-color package is used to detect whether a terminal supports color. While it does not directly check for Unicode support, it is similar in the sense that it checks for terminal capabilities.
The has-unicode package is another utility that checks if the process's stdout stream is connected to a terminal that can display Unicode. It is similar to is-unicode-supported but may have different implementation details or checks.
Detect whether the terminal supports Unicode
This can be useful to decide whether to use Unicode characters or fallback ASCII characters in command-line output.
Note that the check is quite naive. It just assumes all non-Windows terminals support Unicode and hard-codes which Windows terminals that do support Unicode. However, I have been using this logic in some popular packages for years without problems.
npm install is-unicode-supported
import isUnicodeSupported from 'is-unicode-supported';
isUnicodeSupported();
//=> true
Returns a boolean
for whether the terminal supports Unicode.
FAQs
Detect whether the terminal supports Unicode
We found that is-unicode-supported demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.