1.Dd January 24, 2024 2.Dt SQLITE_UTF8 3 3.Os 4.Sh NAME 5.Nm SQLITE_UTF8 , 6.Nm SQLITE_UTF16LE , 7.Nm SQLITE_UTF16BE , 8.Nm SQLITE_UTF16 , 9.Nm SQLITE_ANY , 10.Nm SQLITE_UTF16_ALIGNED 11.Nd text encodings 12.Sh SYNOPSIS 13.In sqlite3.h 14.Fd #define SQLITE_UTF8 15.Fd #define SQLITE_UTF16LE 16.Fd #define SQLITE_UTF16BE 17.Fd #define SQLITE_UTF16 18.Fd #define SQLITE_ANY 19.Fd #define SQLITE_UTF16_ALIGNED 20.Sh DESCRIPTION 21These constant define integer codes that represent the various text 22encodings supported by SQLite. 23.Sh IMPLEMENTATION NOTES 24These declarations were extracted from the 25interface documentation at line 5500. 26.Bd -literal 27#define SQLITE_UTF8 1 /* IMP: R-37514-35566 */ 28#define SQLITE_UTF16LE 2 /* IMP: R-03371-37637 */ 29#define SQLITE_UTF16BE 3 /* IMP: R-51971-34154 */ 30#define SQLITE_UTF16 4 /* Use native byte order */ 31#define SQLITE_ANY 5 /* Deprecated */ 32#define SQLITE_UTF16_ALIGNED 8 /* sqlite3_create_collation only */ 33.Ed 34