I want to cite a url that contains cyrillic letters: wikipedia.org/wiki/Апории_Зенона
However it is displayed as
Is there any way to display it as https://ru.wikipedia.org/wiki/Апории_Зенона?
I am using LuaLaTeX with biblatex
MWE
\documentclass[12pt]{article}
\usepackage{polyglossia}
\setmainlanguage[babelshorthands=true]{russian}
\setotherlanguage{english}
\setmainfont{FreeSerif}
\setsansfont{FreeSans}
\setmonofont{FreeMono}
\usepackage{hyperref}
\usepackage[
backend = biber,%
style = numeric,%
sortlocale = en_US,%
language = auto,
]{biblatex}
\addbibresource{b.bib}
\begin{document}
\nocite{*}
text
\printbibliography
\end{document}
Bibliography
@online{zenon,
author = {{Зенон Элейский}},
title = {Апории Зенона},
url = {https://ru.wikipedia.org/wiki/Апории_Зенона}
}
