Runnin pdflatex and biber in a loop on
\documentclass{article}
\pagestyle{empty}
\usepackage[backend=biber]{biblatex}
\begin{filecontents}[overwrite]{mwe.bib}
@article{Test,
author = {{The spacefactor of the period in author is \the\sfcode`\..}},
title = {The spacefactor of the period in title is \the\sfcode`\..},
journal = {The spacefactor of the period in journal is \the\sfcode`\..}
}
\end{filecontents}
\addbibresource{mwe.bib}
\begin{document}
The spacefactor of the period is \the\sfcode`\..
\cite{Test}
\printbibliography
\end{document}
yields
The spacefactor of the period is 3000. [1]
**References **
[1] The spacefactor of the period in author is 1006. “The spacefactor of the period in title is 1006.” In: The spacefactor of the period in journal is 1006. ().
Any rationale on why the space factor changes to 1006?