I have this answer... Insert chapter Number inside a symbol and a block of text too
And it successfully includes a symbol behind every chapter number. However, I wish I could include this symbol... with the chapter number centered inside the circle...
Or at least just the circle... 
Is there a way to substitute the standard symbol?
This is the MWE provided in the answer of the post mentioned before:
\documentclass[14pt,twoside]{memoir}
\usepackage{lipsum,pgfornament}
\chapterstyle{thatcher}
\renewcommand{\printchaptername}{%
\centering
\begin{tikzpicture}[every node/.style={inner sep=0pt}]
\node[anchor=south] (image) {\pgfornament[symmetry=h,scale=4]{172}};
\node at (image.center) {\chapnumfont\thechapter};
\end{tikzpicture}%
}
\begin{document}
\chapter{Dedicaion}
\lipsum [2]
\end{document}


