Notes & Productivity

ISO Timestamp

Create the current date and time in ISO 8601 format.

OfficialOn-device

Download action

What ISO Timestamp does

Create the current date and time in ISO 8601 format. It runs locally and handles the selected text without contacting a service.

CategoryNotes & Productivity
Action typeJavaScript
Default resultCopy the result
InternetNot required

Action and outcome

ISO Timestamp example
ActionOutcome
ISO TimestampSelected text: nowThe current ISO 8601 timestamp.

Use ISO Timestamp

Follow these steps to create the current date and time in ISO 8601 format with ActionClip.

  1. Select the text you want to use.
  2. Choose ISO Timestamp from ActionClip.
  3. Review the extracted result, then copy it where you need it.

Requirements and privacy

  • Before you start: No setup required.
  • Your selected text: Runs locally in ActionClip’s JavaScript sandbox. Selected text does not leave your Mac.

Action script

The script below is included so you can inspect how the action works before downloading it.

JavaScript definition
function run(selected_text) {
  return new Date().toISOString();
}