I wish to write a pure-text square root symbol, like √. The purpose is to write an instruction as it is displayed on a simple calculator, i.e. something like √(2+3). I am aware of $\sqrt{}$, but I don't want to use this because with an empty argument, the square root-sign is too low compared to the surrounding text. I could fix the position of the symbol using something like $\sqrt{\color{white}{|}}$ (provided I have xcolor loaded) but the result isn't beautiful.
Is there a command to produce the √-symbol (such as we have \$ for $)? Apparently \√ doesn't exist.
Detexify suggests
$\surd$, which is exactly a math-mode square root sign without argument.\textsurd(provided the packagetextcomp) comes close.
I wonder if there is an exact version of √, i.e. as one can use in other text-editors.

$\surd$... – Werner Dec 08 '14 at 14:21$\sqrt{\mathstrut}$or$\sqrt{\vphantom{5}}$.... – Dec 08 '14 at 14:28\newcommand\textsqrtsymbol{\mbox{$\sqrt{\mathstrut}$}}where$\sqrt{\mathstrut}$can be replaced by whatever produces the symbol most to your liking. – A.Ellett Dec 08 '14 at 14:29