How can I get the Unicode number of a given string ?
For example, Cyrillic Small Letter Er U+0440 stands for "р"
How can I get "U+0440" or "0440"?
====Technical information====
Unicode number: U+0440
HTML-code: р
var myString = "р"
for scalar in myString.unicodeScalars {
print("\(scalar.value) ") // print: 1008
}