You can usually start writing before you're done reading the input. But if the number is very close to a power of ten, you might have to read more than half of the input before you can write the first digit of the output!
To see why, take a relatively small example. Suppose the number is 1060. The hex encoding for this is 50 hex digits. After reading the first 34 digits, you know this much:
9f4f2726179a224501d762422c946590d9................
The dots are the digits you haven't read yet.
At this point, you still can't write the first digit of the output, because the input could be anything from
9f4f2726179a224501d762422c946590d90000000000000000
to
9f4f2726179a224501d762422c946590d9ffffffffffffffff
And the former is decimal 999999999999999999999999999999999999999998847078495393153024, but the latter is 1000000000000000000000000000000000000000017293822569102704639. So you still don't know whether to write a 1 or a 9! Not until the 35th input digit can you start writing the output.
Generally, you'll have to read about three quarters of the input before writing the first output digit, in the worst case.