System.JSON.Utils.TJsonTextUtils.ToCharAsUnicode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class procedure ToCharAsUnicode(C: Char; var Buffer: array of Char);

C++

__classmethod void __fastcall ToCharAsUnicode(System::WideChar C, System::WideChar *Buffer, const int Buffer_High);

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.JSON.Utils.pas
System.JSON.Utils.hpp
System.JSON.Utils TJsonTextUtils

Description

Fills the specified buffer with the Unicode escape sequence that matches the specified character.

For example, if C is a horizontal ellipsis (…), ToCharAsUnicode fills Buffer with "\u2026".

See Also