How to get time in milliseconds/milliseconds timestamp in gdscript?

Silly me!
At the very end of the documentation, there is written:

Note: Unlike other methods that use integer timestamps, this method returns the timestamp as a float for sub-second precision.

Yes, this is exactly the solution!

To get milliseconds one must therefore simply multiply by 1000:

var current_timestamp = Time.get_unix_time_from_system()
print(current_timestamp)
var current_timestamp_in_milliseconds = current_timestamp*1000
print(current_timestamp_in_milliseconds)

Output:

Timestamp is:
1708369184.09893
Milliseconds are:
1708369184098.93

Hopefully this thread can help other internauts.

Thanks @FencerDevLog !

Marking as solved