# is-fullwidth-code-point **Repository Path**: mirrors_addons/is-fullwidth-code-point ## Basic Information - **Project Name**: is-fullwidth-code-point - **Description**: Check if the character represented by a given Unicode code point is fullwidth - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-03 - **Last Updated**: 2025-12-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # is-fullwidth-code-point > Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) ## Install ```sh npm install is-fullwidth-code-point ``` ## Usage ```js import isFullwidthCodePoint from 'is-fullwidth-code-point'; isFullwidthCodePoint('谢'.codePointAt(0)); //=> true isFullwidthCodePoint('a'.codePointAt(0)); //=> false ``` ## API ### isFullwidthCodePoint(codePoint) #### codePoint Type: `number` The [code point](https://en.wikipedia.org/wiki/Code_point) of a character.