# unityVersion

> The version of the Unity runtime used to play the content.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.6/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static string unityVersion { get; }
```

### Examples

```csharp
using UnityEngine;

public class Example : MonoBehaviour
{
    void Start()
    {
        print("Version of the runtime: " + Application.unityVersion);
    }
}
```
