Well do this:
VARIABLENAME=$(date -d @133986838)
and then
export VARIABLENAME
or in Bash, do directly:
export VARIABLENAME=$(date -d @133986838)
If you want to format, say, in the usual ISO format:
export ISODATE=$(date -d @133986838 +"%Y-%m-%d %H:%M:%S")
EPOCHDATE=133986838
export ISODATE=$(date -d @$EPOCHDATE +"%Y-%m-%d %H:%M:%S")
+ man date.
: $() - . . , $() , . , .