I assume you have something like this already?
=FormatNumber(ToNumber(Substr(“1110033123279”;3;5));"#####")
As for the math side of it, I have’t encountered this date format before but if it’s anything like Epoch it should be fairly easy. Do you know the math? I can probably write the variable if I know how it works.
EDIT; Actually the math doesn’t seem too complex, I managed to do it (I love a challenge) Although it seems quite difficult to get accurate values due to leap years (using the calculation I found at least) I suspect there are many calculation variations though…
I suspect that the string you are wanting to evaluate is too short, for instance the Julian Date for today is: 2456948.5, I’m not sure what part of your string to use though, 3x would be in the future and 03 would be a long time ago…
Here’s the variables I built, based on your number and this link (http://quasar.as.utexas.edu/BillInfo/JulianDatesG.html) though:
Q:
=FormatNumber(ToNumber(Substr("1110033123279";3;5));"#####")+0.5
Z:
=Round(ToNumber([Q]);0)
W:
=Round(([Z]-1867216.25)/36524.25;0)
X:
=[W]/4
A:
=[Z]+1+[W]-[X]
B:
=[A]+1524
C:
=Round(([B]-122.1)/365.25;0)
D:
=Round(365.25*[C];0)
E:
=Round(([B]-[D])/30.6001;0)
F:
=Round(30.6001*[E];0)
Day of Month:
=Round([B]-[D]-[F]+(ToNumber([Q])-[Z]);0)
Month:
=[E]-1
Year
=[C]-4715
Worth noting though, there’s some additonal logic that needs to we worked into some of those statements which I skipped over (as I knew your number was too short for anything)
So anyway, the output of all of that is 5th, August 4437 BC 
Cheers,
Thomas
Thomas Evans
(BOB member since 2013-10-17)