Lots of curves can have this property. Here's a simple parameterized family of curves that do what you want:
$$y = 100 \left ( \frac{x}{100} \right )^n$$
Where $n$ is a parameter ranging from $0$ (exclusive) to $+ \infty$, and $x$ is your value, from $0$ to $100$.
For $n = 1$, you just get a straight line (least curvy). Otherwise, the closer $n$ is to $0$, the more "curvy" it is and increases quickly with small values of $x$, then slows down, and for $n > 1$ it's the opposite.
Note that "curviness" is not a linear relationship of $n$, but more an inverse relationship. For instance, $0.05$ is really curvy, but $1.05$ is almost flat - to obtain the same amount of curviness in both directions, you would use $\frac{1}{0.05} = 20$.
As you can see, it always starts at $0$ when $x = 0$, and ends at $100$ when $x = 100$.
Examples:
$$n = 0.1$$

$$n = 0.5$$

$$n = 1$$

$$n = 5$$

This can be generalized a lot, feel free to build on it if you need to tweak it.