Welcome to the datetime to ticks (C#) online converter website.
With this (simple) tool you can convert datetime to ticks and ticks to datetime.


Format: dd/MM/yyyy HH:mm:ss

(00:00:00):
(23:59:59):

Just pick a date and a time using the icon or write your ticks to the input on the right.

C# code equivalent

{
    // Datetime to ticks
    long ticks = Datetime.Now.Ticks;
    // Ticks to datetime 
    Datetime dateFromTicks = new DateTime(ticks);
}