Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      char8_t

      From cppreference.com
      <c‎ |string‎ |multibyte
       
       
       
       
      Defined in header<uchar.h>
      typedefunsignedchar char8_t;
      (since C23)

      char8_t is an unsigned integer type used for UTF-8 and is the same type asunsignedchar.

      [edit]Example

      Run this code
      #include <stdio.h>#include <uchar.h> int main(void){    char8_t str[]= u8"zß水🍌";// or "z\u00df\u6c34\U0001f34c"size_t str_sz=sizeof str;// sizeof *str == 1 by definitionprintf("%zu UTF-8 code units: [ ", str_sz);for(size_t n=0; n< str_sz;++n)printf("%02X ", str[n]);printf("]\n");}

      Possible output:

      11 UTF-8 code units: [ 7A C3 9F E6 B0 B4 F0 9F 8D 8C 00 ]

      [edit]References

      • C23 standard (ISO/IEC 9899:2024):
      • 7.30 Unicode utilities <uchar.h> (p: 410)

      [edit]See also

      C++ documentation forFundamental types
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/string/multibyte/char8_t&oldid=179241"

      [8]ページ先頭

      ©2009-2025 Movatter.jp