print("Weekday (Abbreviated)", os.date("%a", os.time()))
print("Weekday (Full)", os.date("%A", os.time()))
print("Month (Abbreviated)", os.date("%b", os.time()))
print("Month (Full)", os.date("%B", os.time()))
print("Date and Time", os.date("%c", os.time()))
print("Day", os.date("%d", os.time()))
print("Hour (24 hours)", os.date("%H", os.time()))
print("Hour (12 hours)", os.date("%I", os.time()))
print("Minute", os.date("%M", os.time()))
print("Month", os.date("%m", os.time()))
print("AM or PM", os.date("%p", os.time()))
print("Second", os.date("%s", os.time()))
--print("Second    nil (Does not work)")
print("Weekday", os.date("%w", os.time()))
print("Date", os.date("%x", os.time()))
print("Time", os.date("%X", os.time()))
print("Full year", os.date("%Y", os.time()))
print("Two-digit year", os.date("%y", os.time()))
print("The character '%'", os.date("%%", os.time()))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: