Since this is a curve. You can choose three points and connect them.
(A) to [out=angle1,in=angle2] (B);
where A and B are points and angle1 and angle2 control the way curved line enters and leaves a point.

This is the code
\documentclass[border={10}]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\coordinate (A) at (0,0);
\coordinate (B) at (0,-1);
\coordinate (C) at (1,0);
\draw[very thick] (A) to [out=225,in=180,looseness=1.5] (B);
\draw[very thick] (B) to [out=0,in=270] (C);
\end{tikzpicture}
\end{document}

Edit:
Regarding the in and out, I will show you the way the curved line leaves A point and the rest will be clear. Regarding looseness, it curves the line more. Try to change it to see its effect.

Optional:
This is the code for the above picture
\documentclass[border={10}]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
[%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Circ/.style={circle,fill=blue,thick,
inner sep=0pt,minimum size=1mm}
]%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\coordinate (A) at (0,0);
\coordinate (B) at (0,-1);
\coordinate (C) at (1,0);
\draw[very thick] (A) to [out=225,in=180,looseness=1.5] (B);
\draw[very thick] (B) to [out=0,in=270] (C);
\draw[red] (-.8,0) -- (1.5,0);
\draw[red] ( 0,.5) -- (0,-1.3);
\node [Circ,label={[xshift=-5mm]30:A}] at (A) {};
\node [Circ,label={[xshift=-5mm,yshift=-5mm]30:B}] at (B) {};
\node [Circ,label={[xshift=-5mm]30:C}] at (C) {};
\draw [green] (.1,0) arc (0:225:.1) node[xshift=-2.5mm,yshift=.15mm] {\tiny out} ;
\end{tikzpicture}
\end{document}
http://math.stackexchange.com/questions/1037222/calculating-control-points-of-cubic-b%C3%A9zier-curve
– William 'Ike' Eisenhauer Dec 12 '15 at 19:56