You’re looking for BLOB.
From the webpage:
BLOB – The value is a blob of data, stored exactly as it was input.
Here’s an example of making a table with two columns – an id and some data, which is a BLOB:
CREATE TABLE t1 (id INTEGER PRIMARY KEY, data BLOB);