Special symbols with sudo in bash

This will not work:

sudo echo 1 > /proc/sys/net/ip_forward

otherwise use:
echo 1 > sudo tee /proc/sys/net/ip_forward

because > occurs first by priority and sudo at the end