Inserting in any table in monetdb v11.39.5 inserts  in its place. Apparently the character is not shown well here. The character is a failed attempt at writing "€". It shows as \200 in Emacs and as a square with numbers in it in Eclipse and Firefox (0 0 in the top row and 8 0 in the bottom row). Inserting this character in a SQLite database set to UTF-8 encoding inserts exactly this character. To reproduce the problem:
create schema if not exists test;
create table if not exists test.test(c text);
INSERT INTO test.test(c) VALUES('');
select * from test.test;
I'm on Debian GNU/Linux 10 (buster). This character is valid UTF-8 according to https://onlineutf8tools.com/validate-utf8 and How to check whether a file is valid UTF-8?.
The output of xxd -a FILENAME with the character in FILENAME is 00000000: c280 .. when the file is saved with Emacs and 00000000: c280 0a ... when the file is saved with gedit.
echo $LANG prints fr_FR.UTF-8 on my computer
Thank you