I am using biblatex and I would like to replace the "url:" with "<" and ">" in my references section.
\usepackage[style=authoryear, backend=biber]{biblatex}
\addbibresource{mybib.bib}
\DeclareFieldFormat{url}{\bibstring{<}\url{#1}\bibstring{>}}
The \DeclareFieldFormat replacement appears to do what I want, but I cannot work out the correct way to insert the "<" and ">" in the replacement string.
How do I define less than and greater symbols in the \DeclareFieldFormat command?
