Difference between revisions of "ATOH()"

From Lianjapedia
Jump to: navigation, search
 
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Function to convert an ASCII character or characters to a hexadecimal string  
 
Function to convert an ASCII character or characters to a hexadecimal string  
 
  
 
==Syntax==
 
==Syntax==
 
ATOH(<expC>)
 
ATOH(<expC>)
 
  
 
==See Also==
 
==See Also==
 
[[ASC()]], [[ASCII Chart]], [[CHR()]], [[CTRL()]], [[HTOA()]], [[STR()]], [[TYPE()]]
 
[[ASC()]], [[ASCII Chart]], [[CHR()]], [[CTRL()]], [[HTOA()]], [[STR()]], [[TYPE()]]
 
  
 
==Description==
 
==Description==
 
The ATOH() function returns the hexadecimal string equivalent of the ASCII character or characters in <expC>.
 
The ATOH() function returns the hexadecimal string equivalent of the ASCII character or characters in <expC>.
 
  
 
==Example==
 
==Example==
Line 20: Line 16:
 
52
 
52
  
? atoh("Recital")
+
? atoh("Lianja")
 
5265636974616C
 
5265636974616C
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Expressions and Type Conversion]]
+
[[Category:Formatting Functions]]
[[Category:Expressions and Type Conversion Functions]]
+

Latest revision as of 07:52, 4 February 2013

Purpose

Function to convert an ASCII character or characters to a hexadecimal string

Syntax

ATOH(<expC>)

See Also

ASC(), ASCII Chart, CHR(), CTRL(), HTOA(), STR(), TYPE()

Description

The ATOH() function returns the hexadecimal string equivalent of the ASCII character or characters in <expC>.

Example

? atoh("R")
52
 
? atoh("Lianja")
5265636974616C