Welcome to the datetime to ticks (C#) online converter website.
With this (simple) tool you can convert datetime to ticks and ticks to datetime.
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);
}