I need to write a "subring", "underring", "combining ring below", "U+0325", whatever you call it, under a letter, in my bibtex document. Usually on Latex I use the package tipa and I just have to use \textsubring{} or \r*{}, but in my .bib file, it does not work anymore.
The article I want to cite is :
@article{joseph1982,
title = {The treatment of \textit{*C\textsubring{R}H-} and the Origin of \textit{CaRa-} in Celtic},
author = {Joseph, L.},
date = {1982},
journaltitle = {Ériu},
volume = {33},
pages = {31--57},
keywords = {celtic}
}
Normally I should get this :
I managed to insert the subring by adding \DeclareUnicodeCharacter{325}{\textsubring{}} in my preambule but it is not perfect since the subring is after the character :

Here is my full latex heading:
\documentclass{report}
\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[polutonikogreek,french,english]{babel}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{csquotes}
\usepackage[multiple]{footmisc}
\usepackage{tipa}
\DeclareUnicodeCharacter{325}{\textsubring{}}
\usepackage{supertabular}
\usepackage[
backend=biber,
sorting=nyt,
citestyle=authoryear,
bibstyle=authortitle,
style=authoryear-ibid
]{biblatex}
\addbibresource{Biblio.bib}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[C]{}
\fancyhead[R]{}
\fancyhead[L]{\leftmark}


Biblio.bibthat uses\textsubring? – Werner Dec 15 '21 at 23:30bibtexin the title, but in the code you loadbiblatexwithbiberback-end. – campa Dec 16 '21 at 13:31pdflatex. So inputtingU+0325will not work. – egreg Dec 17 '21 at 21:49