ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / String functions
  • Avoid using CharactUnicode
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
CharactUnicode (Function)
In french: CaractUnicode
Returns the character corresponding to the specified Unicode code.
Example
MyCharacter is UNICODE string
MyCharacter = CharactUnicode(49)    // Returns "1"
MyCharacter = CharactUnicode(87)    // Returns "W"
 
Trace(Asc(Middle("読みます", 1, 1))) // Displays 35501
Trace(CharactUnicode(35501)) //
Syntax
<Result> = CharactUnicode(<Unicode code to convert>)
<Result>: Unicode string
Character corresponding to the specified Unicode code.
<Unicode code to convert>: Integer
Value to convert. A WLanguage error occurs if the value is invalid.
Remarks

Avoid using CharactUnicode

The following preset constants avoid the use of CharactUnicode:
ConstantValueFunction
CRCharact(13) + Charact(10)Carriage Return
ESCCharact(27)Esc key
SPCCharact(160)Non-breaking space
TABCharact(9)Tabulation
Business / UI classification: Neutral code
Component: wd290vm.dll
Minimum version required
  • Version 16
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help