\documentclass[margin=1mm]{standalone}
\usepackage{bbding}
\begin{document}
\Plus
\end{document}
Edit: To use in both text and math mode:
\documentclass{article}
\usepackage{bbding}
\usepackage{amstext}
\def\MPlus{{\ensuremath{\scriptscriptstyle \text{\Plus}}}}
\begin{document}
Text mode: 2\MPlus2
Math mode: $2\MPlus2$
\end{document}
BTW, without any package, why not two rules?
\documentclass{article}
\def\RPlus{\rule[0.165em]{.5em}{.165em}\hspace{-.33em}\rule[0em]{.165em}{.5em}\,}
\begin{document}
Text mode: 2\RPlus2\par
Math mode: $2\RPlus2$
\end{document}
Edit 2:
As Emil Jeřábek commented, the spacing in math mode can be improved using \mathbin{} ensuring that is the same that in other operators.
On the other hand, \Plus of bbding is a big symbol, and the symbol made with two rules was arbitrary set to .5em with no depth. If you want obtain a size and position similar to the normal `+, in the second case simply change the values for the rules.
For the \Plus of bbding package, one solution is use \raisebox{} and \scalebox{}. In the following MWE the custom symbol with huge font is overlapped with the normal + in red, to test the result easily:

\documentclass{article}
\usepackage{bbding}
\usepackage{amstext,graphicx,color}
\def\MPlus{\ensuremath{\mathbin{\raisebox{-.1em}{\scalebox{.67}{\Plus}}}}}
\def\RPlus{\ensuremath{\mathbin{\rule[.13em]{.66em}{.22em}\hspace{-.44em}\rule[-.08em]{.22em}{.66em}\,}}}
\begin{document}
\verb|\Plus|: $2\mathbin{\text{\Plus}}2+2$
\verb|\MPlus|: $2\MPlus2+2$
\verb|\RPlus|: $2\RPlus2+2$
\Huge
$2 \MPlus\color{red}+ 2$
$2 \MPlus\color{red}\hspace{-1em}+ 2$
\end{document}
Edit: for the sake of completeness, another solution using the drm font:
\documentclass{article}
\usepackage[symbolsonly]{drm}
\begin{document}
${\text{\textgreekcross}}3$
\end{document}
\oplusor\boxplus? – Ilmari Karonen May 31 '14 at 00:05