Javatpoint Logo
Javatpoint Logo

Dart Runes

As we discussed earlier, Dart String is a sequence of characters, letters, numbers, and unique characters. It is the sequence of UTF - 16 Unicode characters where Dart Runes are the sequence UTF - 32 Unicode code points. It is a UTF-32 string which is used to print the special symbol. For example - The theta (Θ) symbol is signified by using the corresponding Unicode equivalent \u0398; here '\u' refers to Unicode, and the numbers are in the hexadecimal. Sometimes the hex digits are the more than 4 digits then it should be placed in curly brackets ({}). Let's understand it by the following example.

Example -

Output:

♥
Θ

The Dart provides the dart: core library which has the Dart Runes. The String code unit can be retrieved in the following three methods.

  • Using String.codeUnitAt() Method
  • Using String.codeUnits property
  • Using String.runes property

String.codeUnitAt() Method

We can access the character's code unit in the given string by using the codeUnitAt() method. It accepts the index position as an argument and returns the 16-bit UTF-16 code unit at the passed index position of the string. The syntax is the given below.

Syntax -

Output:

Welcome to JavaTpoint
74

Explanation -

In the above code, the variable str holds string value "JavaTpoint". We called the codeuUnitAt() function and passed index position. It returned the code unit of 0th index character.

String.codeUnits Property

The codeUnits property returns UTF-16 code units for given string in the form of a list. The syntax is given below.

Syntax -

Let's have a look at following example -

Example -

Output:

Welcome to JavaTpoint
[74, 97, 118, 97, 84, 112, 111, 105, 110, 116]

Explanation -

The codeUnits returned the list of the code unit corresponding to the given character.

String.runes Property

The runes property is used to iterate the given string though the UTF-16 code unit. The Syntax is given below.

Syntax -

Consider the following example.

Example -

Output:

J
a
v
a
T
p
o
i
n
t

Next TopicDart Enumeration





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA