# Unicode strings

Sidef uses UTF-8 encoding for pretty much everything, including source files, strings, stdout, stderr and stdin.

```ruby
# International class; name and street
 class 国際( なまえ, Straße ) {
 
    # Say who am I!
    method 言え {
        say "I am #{self.なまえ} from #{self.Straße}"
    }
}
 
 # all the people of the world!
 var 民族 = [
              国際( "高田　Friederich", "台湾" ),
              国際( "Smith Σωκράτης", "Cantù" ),
              国際( "Stanisław Lec", "południow" ),
           ]
 
民族.each { |garçon|
    garçon.言え
}
```

#### Output:

```
I am 高田　Friederich from 台湾
I am Smith Σωκράτης from Cantù
I am Stanisław Lec from południow
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://trizen.gitbook.io/sidef-lang/programming_tasks/u/unicode_strings.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
