Function
uni_ccc
Canonical combining class.
Since v1.0
uint8_t uni_ccc(
unichar c)
Parameters 🔗
c | in | The input character. |
Return Value 🔗
The canonical combining class of c
.
Discussion 🔗
Return the Canonical_Combining_Class
property for the code point c
. The canonical combining class property is used during the Unicode normalization algorithm to sort combining characters.
Support for the canonical combining class property must be enabled in the JSON configuration file otherwise the function will always return zero.
{
"characterProperties": [
"Canonical_Combining_Class"
]
}