char16_t

From RAD Studio
Jump to: navigation, search

Go Up to Keywords, Alphabetical Listing Index


Category

C++ Specific Keywords, Type Specifiers

Syntax

char16_t identifier;

Description

In C++ programs, char16_t is a fundamental data type that can represent a 16-bit character type. This type could be used for UTF-16 characters. You can create a char16_t type with u'<character>', which is a literal for a single char16_t character.

See Also