char32_t

From RAD Studio
Jump to: navigation, search

Go Up to Keywords, Alphabetical Listing Index


Category

C++ Specific Keywords, Type Specifiers

Syntax

char32_t identifier;

Description

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

See Also