Difference between revisions of "MC-Basic:UTF$"

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "Read-Only" to "Read only")
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:UTF$}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 4: Line 5:
  
 
|SYNTAX=
 
|SYNTAX=
UTF$(''<number>'')
+
UTF$(<''number''>)
  
 
|AVAILABILITY=
 
|AVAILABILITY=
Available since version 4.5.10
+
Since Version 4.5.10
  
 
|DESCRIPTION=
 
|DESCRIPTION=
Line 13: Line 14:
  
 
|TYPE=
 
|TYPE=
''<return value>'': String<br>
+
<''return value''>: String<br>
''<number>'': Long
+
<''number''>: Long
  
 
|RANGE=
 
|RANGE=
''<number>'': 0 to MAXLONG
+
<''number''>: 0 to MAXLONG
  
 
|UNITS=
 
|UNITS=
Line 32: Line 33:
  
 
|EXAMPLE=
 
|EXAMPLE=
?UTF$(256)
+
?UTF$(256)<br>
 +
Ā
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:CHR$|CHR$]]
+
* [[MC-Basic:CHR$|CHR$]]
* [[Axystems:MC-Basic:UTFSTRING$|UTFSTRING$]]
+
* [[MC-Basic:UTFSTRING$|UTFSTRING$]]
  
[[Category:Axystems:MC-Basic:String_Manipulation|UTF$]]
+
[[Category:MC-Basic:String Manipulation|UTF$]]
 
}}
 
}}

Latest revision as of 10:06, 2 May 2017

Language: English  • 中文(简体)‎

This function returns a UTF-8 string corresponding to a given Unicode value.

Syntax

UTF$(<number>)

Availability

Since Version 4.5.10

Type

<return value>: String
<number>: Long

Range

<number>: 0 to MAXLONG

Scope

Configuration, Task or Terminal

Limitations

Read only

Examples

?UTF$(256)
Ā

See Also