Your planes are equivalent to the linear system
$$\left[
\begin{array}{ccc}
1 & 2 & 3 \\
1 & -1 & 1 \\
\end{array}\right]
\left[
\begin{array}{c}
x \\ y \\ z \\
\end{array}\right]
=
\left[
\begin{array}{c}
1 \\ 1 \\
\end{array}\right]
$$
If the normal vectors are nonzero and are not parallel then you can always perform row operations so that $\left[\begin{array}{c}1\\0\\\end{array}\right]$ is in one column and $\left[\begin{array}{c}0 \\1\\\end{array}\right]$ is in another one. Then you can pick an arbitrary value for the variable corresponding to the third column and determine the corresponding values for the other two.
$$\left[
\begin{array}{ccc|c}
1 & 2 & 3 & 1\\
1 & -1 & 1 & 1\\
\end{array}\right]\\
\left[
\begin{array}{ccc|c}
1 & 2 & 3 & 1\\
0 & -3 & -2 & 0\\
\end{array}\right]\\
\left[\begin{array}{ccc|c}
1 & 0 & \frac53 & 1\\
0 & -3 & -2 & 0\\
\end{array}\right]\\
\left[\begin{array}{ccc|c}
1 & 0 & \frac53 & 1\\
0 & 1 & \frac23 & 0\\
\end{array}\right]\\
$$
Picking $z=0$ gives $(1,0,0)$. Picking $z=3$ gives $(-4,-2,3)$.