[Tex/LaTex] Package inputenc Error: Unicode char ⁠ (U+2060)(inputenc) not set up for use with LaTeX

frenchunicode

To write French in my Latex documents, I've added "\usepackage[utf8]{inputenc}" to the preamble.

This statement prints the following error in different parts of the log file:

Package inputenc Error: Unicode char ⁠ (U+2060)
(inputenc) not set up for use with LaTeX.
 ...ci2002semantic}. ConQo \cite{Braun2008}⁠

Best Answer

A slightly odd character to have in a tex source, but U+2060 is WORD JOINER which is normally taken as \nolinebreak so add

\DeclareUnicodeCharacter{2060}{\nolinebreak}

to your preamble if removing the character is not an option.