There is a similar application in the shortcuts below. However, I want the end parts of the slash to be deleted. So how can we create the fourth zero? Like \pmzerocomputer .
Thank you.
\documentclass{article}
\makeatletter
\newcommand*{\pmzerocomputer}{%
\nfss@text{%
\sbox0{0}%
\sbox2{/}% <--Be small slash. End parts of the slash to be deleted
\sbox4{%
\raise\dimexpr((\ht0-\dp0)-(\ht2-\dp2))/2\relax\copy2 %
}%
\ooalign{%
\hfill\copy4 \hfill\cr
\hfill0\hfill\cr
}%
\vphantom{0\copy4 }% correct overall height and depth of the symbol
}%
}
\makeatother
\usepackage{amstext}% for resizing the symbol in math
\begin{document}
\pmzerocomputer
\end{document}
Related1: Inserting slashed zero in non-OpenType supporting LaTeX
Related2: How to write "computer zero" (with slanted vertical line) in TeX?

